Update contrib.
1 // Copyright (c) 2004-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\crashflashnand.h
16 // WARNING: This file contains some APIs which are internal and are subject
17 // to change without notice. Such APIs should therefore not be used
18 // outside the Kernel and Hardware Services package.
21 #ifndef __CRASHFLASHNAND_H__
22 #define __CRASHFLASHNAND_H__
23 #include <crashflash.h>
29 The maximum number of bytes in a nand flash main array
32 const TUint KCFNandMaxBytesMain = 512;
35 An implementation of the CrashFlash interface for nand flash.
38 class CrashFlashNand : public CrashFlash
42 virtual TInt Initialise();
43 virtual void StartTransaction();
44 virtual void EndTransaction();
45 virtual void Write(const TDesC8& aDes);
46 virtual void WriteSignature(const TDesC8& aDes);
47 virtual void Read(TDes8& aDes);
48 virtual void SetReadPos(TUint aPos);
49 virtual void SetWritePos(const TUint aPos);
50 virtual void EraseLogArea();
51 virtual void EraseFlashBlock(const TUint aBlock);
52 virtual TUint BytesWritten();
53 #ifdef _CRASHLOG_COMPR
54 virtual TUint GetOutputLimit(void);
55 virtual TUint GetLogOffset(void);
61 virtual TInt GetDeviceId(TUint8& aDeviceId, TUint8& aManufacturerId)=0;
64 virtual TInt DeviceRead(const TUint aPageAddress, TAny* aBuf, const TUint aLength)=0;
67 virtual TInt DeviceWrite(const TUint aPageAddress, TAny* aBuf, const TUint aLength)=0;
70 virtual TInt DeviceErase(const TUint aBlockAddress)=0;
74 TUint iNumPagesPerBlock;
83 TUint iNumReservoirBlocks;
94 virtual TInt VariantInitialise()=0;
97 TInt InitialiseFlashParameters(const TUint8 aDevId, const TUint8 aManId);
98 TInt ReadPib(TPib& aPib, TPibExtension& aPibExtension, TUint& aLastGoodBlock);
99 TInt ParsePib(TPib& aPib, TPibExtension& aPibExt);
107 TUint iCrashLogStartBlock;
108 TUint iNumCrashLogBlocks;
110 TUint iWriteBufIndex;
112 TUint iWritePageIndex;
113 TUint iReadPageIndex;
116 TUint8 iWriteBuf[KCFNandMaxBytesMain];
117 TUint8 iReadBuf[KCFNandMaxBytesMain];