Update contrib.
1 // Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32\include\drivers\flash_media.h
23 #ifndef __FLASH_MEDIA_H__
24 #define __FLASH_MEDIA_H__
25 #include <drivers/locmedia.h>
28 GLREF_C TDfcQue FlashDfcQ;
37 Base class for the LFFS media driver.
39 The class provides an implementation for the generic layer of
40 the LFFS media driver.
41 Code that is specifc to a flash device is implemented as a class
44 class DMediaDriverFlash : public DMediaDriver
48 Defines a set of values that are passed to Complete()
49 informing the generic layer about the type of request
50 that is being completed.
54 Indicates that a read request is being completed.
59 Indicates that a write request is being completed.
64 Indicates that an erase request is being completed.
69 Creates an instance of the LFFS media driver.
71 Although declared in this class, this function is not implemented by
72 Symbian OS, but must be implemented by the port.
74 It should return an instance of the class derived from DMediaDriverFlash.
75 The following is an example taken from the Lubbock reference platform:
77 DMediaDriverFlash* DMediaDriverFlash::New(TInt aMediaId)
79 return new DMediaDriverFlashLA(aMediaId);
83 @param aMediaId The unique media ID specifed when the media driver was registered.
84 This value is just propagated through.
86 @return An instance of a class derived from DMediaDriverFlash
88 static DMediaDriverFlash* New(TInt aMediaId);
90 DMediaDriverFlash(TInt aMediaId);
92 // replacing pure virtual
94 virtual TInt Request(TLocDrvRequest& aRequest);
96 virtual TInt PartitionInfo(TPartitionInfo& anInfo);
98 virtual void NotifyPowerDown();
100 virtual void NotifyEmergencyPowerDown();
103 // pure virtual - FLASH device specific stuff
106 Called by the generic layer of the LFFS media driver, and implemented by
107 the specific layer to perform any initialisation required by
110 @return KErrNone, if successful; otherwise one of the other system
113 virtual TInt Initialise()=0;
118 Called by the generic layer of the LFFS media driver, and implemented by
119 the specific layer to get the size of the flash erase block.
121 @return The size of the flash erase block, in bytes.
123 virtual TUint32 EraseBlockSize()=0;
128 Called by the generic layer of the LFFS media driver, and implemented by
129 the specific layer to get the total size of the flash.
131 @return The total size of the flash, in bytes.
133 virtual TUint32 TotalSize()=0;
138 Called by the generic layer of the LFFS media driver, and implemented by
139 the specific layer to start a read request.
141 The information for the request is in iReadReq.
143 If the read operation cannot be started immediately, then this function
144 should return KMediaDriverDeferRequest; this asks the generic layer
145 to defer the request and re-start it later. A read request might be
146 deferred, for example, if there is a write or an erase operation
149 Note that this an asynchronous request, i.e. it starts the operation;
150 the driver must call:
152 Complete(EReqRead, result);
154 when the operation is complete, where result is KErrNone if sucessful, or
155 one of the system-wide error codes, otherwise.
157 @return KErrNone, if the request has been sucessfully initiated;
158 KErrNotSupported, if the request cannot be handled by the device;
159 KMediaDriverDeferRequest, if the request cannot be handled
160 immediately because of an outstanding request
163 @see DMediaDriverFlash::Complete()
165 virtual TInt DoRead()=0;
170 Called by the generic layer of the LFFS media driver, and implemented by
171 the specific layer to start a write request.
173 The information for the request is in iWriteReq.
175 If the write operation cannot be started immediately, then this function
176 should return KMediaDriverDeferRequest; this asks the generic layer
177 to defer the request and re-start it later. A write request might be
178 deferred, for example, if there is a read or an erase operation
181 Note that this an asynchronous request, i.e. it starts the operation;
182 the driver must call:
184 Complete(EReqWrite, result);
186 when the operation is complete, where result is KErrNone if sucessful, or
187 one of the system-wide error codes, otherwise.
189 @return KErrNone, if the request has been sucessfully initiated;
190 KErrNotSupported, if the request cannot be handled by the device;
191 KMediaDriverDeferRequest, if the request cannot be handled
192 immediately because of an outstanding request
195 @see DMediaDriverFlash::Complete()
197 virtual TInt DoWrite()=0;
202 Called by the generic layer of the LFFS media driver, and implemented by
203 the specific layer to start a block erase request.
205 The information for the request is in iEraseReq.
207 If the erase operation cannot be started immediately, then this function
208 should return KMediaDriverDeferRequest; this asks the generic layer
209 to defer the request and re-start it later. An erase request might be
210 deferred, for example, if there is a read or a write operation
213 Note that this an asynchronous request, i.e. it starts the operation;
214 the driver must call:
216 Complete(EReqErase, result);
218 when the operation is complete, where result is KErrNone if sucessful, or
219 one of the system-wide error codes, otherwise.
221 @return KErrNone, if the request has been sucessfully initiated;
222 KErrNotSupported, if the request cannot be handled by the device;
223 KMediaDriverDeferRequest, if the request cannot be handled
224 immediately because of an outstanding request
227 @see DMediaDriverFlash::Complete()
229 virtual TInt DoErase()=0;
231 TInt DoCreate(TInt aMediaId);
233 virtual TInt Caps(TLocalDriveCapsV2& aCaps);
235 void Complete(TInt aRequest, TInt aResult);
240 Location for request information.
242 An array of three entries to contain request information for read,
243 write and erase requests respectively.
245 NB Do not access this array directly; instead use the macro definitions:
246 iReadReq, iWriteReq and iEraseReq. These ensure that you access the correct
247 TLocDrvRequest items within the array.
254 TLocDrvRequest* iRequests[3];
261 Read request information for LFFS media drivers.
264 @see DMediaDriverFlash
265 @see DMediaDriverFlash::iRequests
267 #define iReadReq iRequests[EReqRead]
273 Write request information for LFFS media drivers.
276 @see DMediaDriverFlash
277 @see DMediaDriverFlash::iRequests
279 #define iWriteReq iRequests[EReqWrite]
285 Erase request information for LFFS media drivers.
288 @see DMediaDriverFlash
289 @see DMediaDriverFlash::iRequests
291 #define iEraseReq iRequests[EReqErase]