os/kernelhwsrv/kernel/eka/include/drivers/flash_media.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// e32\include\drivers\flash_media.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @internalComponent
sl@0
    21
*/
sl@0
    22
sl@0
    23
#ifndef __FLASH_MEDIA_H__
sl@0
    24
#define __FLASH_MEDIA_H__
sl@0
    25
#include <drivers/locmedia.h>
sl@0
    26
#include <platform.h>
sl@0
    27
sl@0
    28
GLREF_C TDfcQue FlashDfcQ;
sl@0
    29
sl@0
    30
sl@0
    31
sl@0
    32
sl@0
    33
/** 
sl@0
    34
@publishedPartner
sl@0
    35
@released
sl@0
    36
sl@0
    37
Base class for the LFFS media driver.
sl@0
    38
sl@0
    39
The class provides an implementation for the generic layer of
sl@0
    40
the LFFS media driver.
sl@0
    41
Code that is specifc to a flash device is implemented as a class
sl@0
    42
derived from this.
sl@0
    43
*/
sl@0
    44
class DMediaDriverFlash : public DMediaDriver
sl@0
    45
	{
sl@0
    46
public:
sl@0
    47
    /**
sl@0
    48
    Defines a set of values that are passed to Complete()
sl@0
    49
    informing the generic layer about the type of request
sl@0
    50
    that is being completed.
sl@0
    51
    */
sl@0
    52
	enum TRequest {
sl@0
    53
	               /**
sl@0
    54
	               Indicates that a read request is being completed.
sl@0
    55
	               */
sl@0
    56
	               EReqRead=0,
sl@0
    57
           	       
sl@0
    58
           	       /**
sl@0
    59
	               Indicates that a write request is being completed.
sl@0
    60
	               */
sl@0
    61
	               EReqWrite=1,
sl@0
    62
	               
sl@0
    63
           	       /**
sl@0
    64
	               Indicates that an erase request is being completed.
sl@0
    65
	               */
sl@0
    66
	               EReqErase=2};
sl@0
    67
public:
sl@0
    68
    /**
sl@0
    69
    Creates an instance of the LFFS media driver.
sl@0
    70
    
sl@0
    71
    Although declared in this class, this function is not implemented by
sl@0
    72
    Symbian OS, but must be implemented by the port.
sl@0
    73
    
sl@0
    74
    It should return an instance of the class derived from DMediaDriverFlash.
sl@0
    75
    The following is an example taken from the Lubbock reference platform:
sl@0
    76
    @code
sl@0
    77
    DMediaDriverFlash* DMediaDriverFlash::New(TInt aMediaId)
sl@0
    78
    {
sl@0
    79
    return new DMediaDriverFlashLA(aMediaId);
sl@0
    80
    }
sl@0
    81
    @endcode
sl@0
    82
    
sl@0
    83
    @param  aMediaId The unique media ID specifed when the media driver was registered.
sl@0
    84
                     This value is just propagated through.
sl@0
    85
    
sl@0
    86
    @return An instance of a class derived from DMediaDriverFlash
sl@0
    87
    */
sl@0
    88
	static DMediaDriverFlash* New(TInt aMediaId);
sl@0
    89
	
sl@0
    90
	DMediaDriverFlash(TInt aMediaId);
sl@0
    91
public:
sl@0
    92
	// replacing pure virtual
sl@0
    93
       
sl@0
    94
	virtual TInt Request(TLocDrvRequest& aRequest);
sl@0
    95
sl@0
    96
	virtual TInt PartitionInfo(TPartitionInfo& anInfo);
sl@0
    97
    
sl@0
    98
	virtual void NotifyPowerDown();
sl@0
    99
sl@0
   100
	virtual void NotifyEmergencyPowerDown();
sl@0
   101
sl@0
   102
public:
sl@0
   103
	// pure virtual - FLASH device specific stuff
sl@0
   104
sl@0
   105
    /** 
sl@0
   106
    Called by the generic layer of the LFFS media driver, and implemented by
sl@0
   107
    the specific layer to perform any initialisation required by
sl@0
   108
    the specific layer.
sl@0
   109
    
sl@0
   110
    @return KErrNone, if successful; otherwise one of the other system
sl@0
   111
            wide error codes.
sl@0
   112
    */
sl@0
   113
	virtual TInt Initialise()=0;
sl@0
   114
sl@0
   115
sl@0
   116
sl@0
   117
    /** 
sl@0
   118
    Called by the generic layer of the LFFS media driver, and implemented by
sl@0
   119
    the specific layer to get the size of the flash erase block.
sl@0
   120
    
sl@0
   121
    @return The size of the flash erase block, in bytes.
sl@0
   122
    */
sl@0
   123
	virtual TUint32 EraseBlockSize()=0;
sl@0
   124
sl@0
   125
sl@0
   126
sl@0
   127
    /** 
sl@0
   128
    Called by the generic layer of the LFFS media driver, and implemented by
sl@0
   129
    the specific layer to get the total size of the flash.
sl@0
   130
sl@0
   131
    @return The total size of the flash, in bytes.
sl@0
   132
    */
sl@0
   133
	virtual TUint32 TotalSize()=0;
sl@0
   134
sl@0
   135
sl@0
   136
sl@0
   137
    /** 
sl@0
   138
    Called by the generic layer of the LFFS media driver, and implemented by
sl@0
   139
    the specific layer to start a read request.
sl@0
   140
    
sl@0
   141
    The information for the request is in iReadReq.
sl@0
   142
    
sl@0
   143
    If the read operation cannot be started immediately, then this function
sl@0
   144
    should return KMediaDriverDeferRequest; this asks the generic layer
sl@0
   145
    to defer the request and re-start it later. A read request might be
sl@0
   146
    deferred, for example, if there is a write or an erase operation
sl@0
   147
    already in progress.
sl@0
   148
    
sl@0
   149
    Note that this an asynchronous request, i.e. it starts the operation;
sl@0
   150
    the driver must call:
sl@0
   151
    @code
sl@0
   152
    Complete(EReqRead, result);
sl@0
   153
    @endcode
sl@0
   154
    when the operation is complete, where result is KErrNone if sucessful, or
sl@0
   155
    one of the system-wide error codes, otherwise.
sl@0
   156
sl@0
   157
    @return KErrNone, if the request has been sucessfully initiated;
sl@0
   158
            KErrNotSupported, if the request cannot be handled by the device;
sl@0
   159
            KMediaDriverDeferRequest, if the request cannot be handled
sl@0
   160
            immediately because of an outstanding request
sl@0
   161
sl@0
   162
    @see iReadReq
sl@0
   163
    @see DMediaDriverFlash::Complete()
sl@0
   164
    */
sl@0
   165
	virtual TInt DoRead()=0;
sl@0
   166
sl@0
   167
sl@0
   168
sl@0
   169
    /** 
sl@0
   170
    Called by the generic layer of the LFFS media driver, and implemented by
sl@0
   171
    the specific layer to start a write request.
sl@0
   172
sl@0
   173
    The information for the request is in iWriteReq.
sl@0
   174
    
sl@0
   175
    If the write operation cannot be started immediately, then this function
sl@0
   176
    should return KMediaDriverDeferRequest; this asks the generic layer
sl@0
   177
    to defer the request and re-start it later. A write request might be
sl@0
   178
    deferred, for example, if there is a read or an erase operation
sl@0
   179
    already in progress.
sl@0
   180
    
sl@0
   181
    Note that this an asynchronous request, i.e. it starts the operation;
sl@0
   182
    the driver must call:
sl@0
   183
    @code
sl@0
   184
    Complete(EReqWrite, result);
sl@0
   185
    @endcode
sl@0
   186
    when the operation is complete, where result is KErrNone if sucessful, or
sl@0
   187
    one of the system-wide error codes, otherwise.
sl@0
   188
sl@0
   189
    @return KErrNone, if the request has been sucessfully initiated;
sl@0
   190
            KErrNotSupported, if the request cannot be handled by the device;
sl@0
   191
            KMediaDriverDeferRequest, if the request cannot be handled
sl@0
   192
            immediately because of an outstanding request
sl@0
   193
sl@0
   194
    @see iWriteReq
sl@0
   195
    @see DMediaDriverFlash::Complete()
sl@0
   196
    */
sl@0
   197
	virtual TInt DoWrite()=0;
sl@0
   198
    
sl@0
   199
    
sl@0
   200
    
sl@0
   201
    /** 
sl@0
   202
    Called by the generic layer of the LFFS media driver, and implemented by
sl@0
   203
    the specific layer to start a block erase request.
sl@0
   204
sl@0
   205
    The information for the request is in iEraseReq.
sl@0
   206
    
sl@0
   207
    If the erase operation cannot be started immediately, then this function
sl@0
   208
    should return KMediaDriverDeferRequest; this asks the generic layer
sl@0
   209
    to defer the request and re-start it later. An erase request might be
sl@0
   210
    deferred, for example, if there is a read or a write operation
sl@0
   211
    already in progress.
sl@0
   212
    
sl@0
   213
    Note that this an asynchronous request, i.e. it starts the operation;
sl@0
   214
    the driver must call:
sl@0
   215
    @code
sl@0
   216
    Complete(EReqErase, result);
sl@0
   217
    @endcode
sl@0
   218
    when the operation is complete, where result is KErrNone if sucessful, or
sl@0
   219
    one of the system-wide error codes, otherwise.
sl@0
   220
sl@0
   221
    @return KErrNone, if the request has been sucessfully initiated;
sl@0
   222
            KErrNotSupported, if the request cannot be handled by the device;
sl@0
   223
            KMediaDriverDeferRequest, if the request cannot be handled
sl@0
   224
            immediately because of an outstanding request
sl@0
   225
sl@0
   226
    @see iEraseReq
sl@0
   227
    @see DMediaDriverFlash::Complete()
sl@0
   228
    */
sl@0
   229
	virtual TInt DoErase()=0;
sl@0
   230
public:
sl@0
   231
	TInt DoCreate(TInt aMediaId);
sl@0
   232
sl@0
   233
	virtual TInt Caps(TLocalDriveCapsV2& aCaps);
sl@0
   234
sl@0
   235
	void Complete(TInt aRequest, TInt aResult);
sl@0
   236
public:
sl@0
   237
sl@0
   238
sl@0
   239
    /**
sl@0
   240
    Location for request information.
sl@0
   241
    
sl@0
   242
    An array of three entries to contain request information for read,
sl@0
   243
    write and erase requests respectively.
sl@0
   244
    
sl@0
   245
    NB Do not access this array directly; instead use the macro definitions:
sl@0
   246
    iReadReq, iWriteReq and iEraseReq. These ensure that you access the correct
sl@0
   247
    TLocDrvRequest items within the array.
sl@0
   248
    
sl@0
   249
    @see iReadReq
sl@0
   250
    @see iWriteReq
sl@0
   251
    @see iEraseReq
sl@0
   252
    @see TLocDrvRequest
sl@0
   253
    */
sl@0
   254
	TLocDrvRequest* iRequests[3];
sl@0
   255
	};
sl@0
   256
  
sl@0
   257
  
sl@0
   258
  
sl@0
   259
  
sl@0
   260
/** 
sl@0
   261
Read request information for LFFS media drivers.
sl@0
   262
sl@0
   263
@see TLocDrvRequest
sl@0
   264
@see DMediaDriverFlash
sl@0
   265
@see DMediaDriverFlash::iRequests
sl@0
   266
*/
sl@0
   267
#define iReadReq	iRequests[EReqRead]
sl@0
   268
sl@0
   269
sl@0
   270
sl@0
   271
sl@0
   272
/** 
sl@0
   273
Write request information for LFFS media drivers.
sl@0
   274
sl@0
   275
@see TLocDrvRequest
sl@0
   276
@see DMediaDriverFlash
sl@0
   277
@see DMediaDriverFlash::iRequests
sl@0
   278
*/
sl@0
   279
#define iWriteReq	iRequests[EReqWrite]
sl@0
   280
sl@0
   281
sl@0
   282
sl@0
   283
sl@0
   284
/** 
sl@0
   285
Erase request information for LFFS media drivers.
sl@0
   286
sl@0
   287
@see TLocDrvRequest
sl@0
   288
@see DMediaDriverFlash
sl@0
   289
@see DMediaDriverFlash::iRequests
sl@0
   290
*/
sl@0
   291
#define iEraseReq	iRequests[EReqErase]
sl@0
   292
sl@0
   293
sl@0
   294
sl@0
   295
#endif