sl@0
|
1 |
// Copyright (c) 2004-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\drivers\crashflash\crashflashnor.h
|
sl@0
|
15 |
//
|
sl@0
|
16 |
// WARNING: This file contains some APIs which are internal and are subject
|
sl@0
|
17 |
// to change without notice. Such APIs should therefore not be used
|
sl@0
|
18 |
// outside the Kernel and Hardware Services package.
|
sl@0
|
19 |
//
|
sl@0
|
20 |
|
sl@0
|
21 |
#ifndef __CRASH_FLASH_NOR_H__
|
sl@0
|
22 |
#define __CRASH_FLASH_NOR_H__
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifndef EPOC32
|
sl@0
|
25 |
|
sl@0
|
26 |
#include <crashflash.h>
|
sl@0
|
27 |
#include <kernel/kernel.h>
|
sl@0
|
28 |
|
sl@0
|
29 |
/* @file
|
sl@0
|
30 |
@internalTechnology
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
|
sl@0
|
33 |
/* The generic crash flash nor support allows for a 32, 16, or 8 bit interface
|
sl@0
|
34 |
* to the nor flash chip. One of the following should be defined in the
|
sl@0
|
35 |
* variant's mmp file.
|
sl@0
|
36 |
*/
|
sl@0
|
37 |
#ifdef TCFI_4BYTE_WORD
|
sl@0
|
38 |
typedef TUint32 TCFIWord;
|
sl@0
|
39 |
#elif defined(TCFI_2BYTE_WORD)
|
sl@0
|
40 |
typedef TUint16 TCFIWord;
|
sl@0
|
41 |
#elif defined(TCFI_1BYTE_WORD)
|
sl@0
|
42 |
typedef TUint8 TCFIWord;
|
sl@0
|
43 |
#else
|
sl@0
|
44 |
#error One of TCFI_4BYTE_WORD, TCFI_2BYTE_WORD, or TCFI_1BYTE_WORD must be defined.
|
sl@0
|
45 |
#endif
|
sl@0
|
46 |
|
sl@0
|
47 |
/**
|
sl@0
|
48 |
An implmentation of the CrashFlash interface for nor flash.
|
sl@0
|
49 |
@internalTechnology
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
class CrashFlashNor : public CrashFlash
|
sl@0
|
52 |
{
|
sl@0
|
53 |
public:
|
sl@0
|
54 |
TInt Initialise();
|
sl@0
|
55 |
void StartTransaction();
|
sl@0
|
56 |
void EndTransaction();
|
sl@0
|
57 |
void Write(const TDesC8& aDes);
|
sl@0
|
58 |
void WriteSignature(const TDesC8& aDes);
|
sl@0
|
59 |
void Read(TDes8& aDes);
|
sl@0
|
60 |
void SetReadPos(TUint aPos);
|
sl@0
|
61 |
void SetWritePos(const TUint aPos);
|
sl@0
|
62 |
void EraseLogArea();
|
sl@0
|
63 |
TUint BytesWritten();
|
sl@0
|
64 |
void EraseFlashBlock(TUint aBlock);
|
sl@0
|
65 |
#ifdef _CRASHLOG_COMPR
|
sl@0
|
66 |
TUint GetOutputLimit();
|
sl@0
|
67 |
TUint GetLogOffset();
|
sl@0
|
68 |
#endif
|
sl@0
|
69 |
protected:
|
sl@0
|
70 |
/** @publishedPartner
|
sl@0
|
71 |
@released */
|
sl@0
|
72 |
virtual TInt VariantInitialise()=0;
|
sl@0
|
73 |
/** @publishedPartner
|
sl@0
|
74 |
@released */
|
sl@0
|
75 |
virtual void DoWrite(TCFIWord aWord)=0;
|
sl@0
|
76 |
/** @publishedPartner
|
sl@0
|
77 |
@released */
|
sl@0
|
78 |
virtual TCFIWord DoRead()=0;
|
sl@0
|
79 |
/** @publishedPartner
|
sl@0
|
80 |
@released */
|
sl@0
|
81 |
virtual void DoEraseBlock(TUint aBlock)=0;
|
sl@0
|
82 |
private:
|
sl@0
|
83 |
TCFIWord iWriteBuf;
|
sl@0
|
84 |
TCFIWord iReadBuf;
|
sl@0
|
85 |
TUint iWriteBufBytes;
|
sl@0
|
86 |
TUint iReadBufBytes;
|
sl@0
|
87 |
protected:
|
sl@0
|
88 |
/** @publishedPartner
|
sl@0
|
89 |
@released */
|
sl@0
|
90 |
TUint iEraseBlockSize;
|
sl@0
|
91 |
/** @publishedPartner
|
sl@0
|
92 |
@released */
|
sl@0
|
93 |
TUint iWritePos;
|
sl@0
|
94 |
/** @publishedPartner
|
sl@0
|
95 |
@released */
|
sl@0
|
96 |
TUint iReadPos;
|
sl@0
|
97 |
private:
|
sl@0
|
98 |
TUint iWriteTotal;
|
sl@0
|
99 |
};
|
sl@0
|
100 |
|
sl@0
|
101 |
#endif
|
sl@0
|
102 |
|
sl@0
|
103 |
#endif
|