os/kernelhwsrv/kernel/eka/include/drivers/crashflash.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) 2006-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/crashflash.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_H__
sl@0
    22
#define __CRASH_FLASH_H__
sl@0
    23
sl@0
    24
#include <e32def.h>
sl@0
    25
#include <e32ver.h>
sl@0
    26
#include <e32cmn.h>
sl@0
    27
sl@0
    28
///////////////////////////////////////////////////////////////////////////////
sl@0
    29
//	Crash log is stored in flash in the format:
sl@0
    30
//		Crash log size (TUint), i.e. bytes stored in crash log crash sector
sl@0
    31
//		Crash log signature (string KCrashLogSignature)
sl@0
    32
//		Uncompressed log size (TUint), if log is compressed
sl@0
    33
//		Flags (TUint8) - bits 0-3 indicate log data format, bit 4 set when log 
sl@0
    34
//						had to be truncated.
sl@0
    35
//		If nand implementation, some white space is inserted to fill up
sl@0
    36
//  	the whole of the signature block/sector
sl@0
    37
//		Actual log data in specified format
sl@0
    38
//*******WARNING*******: Crash log header each field must start/end on 4 byte 
sl@0
    39
//						boundary, otherwise NOR flash implementations will hang
sl@0
    40
///////////////////////////////////////////////////////////////////////////////
sl@0
    41
sl@0
    42
/** Maximum size of a crash log.
sl@0
    43
 * @internalTechnology
sl@0
    44
 */
sl@0
    45
const TUint KMaxCrashLogSize = 0x00100000;// 1Meg of crashflash
sl@0
    46
sl@0
    47
/** The size in bytes of the Crash Log Signature
sl@0
    48
 * @internalTechnology
sl@0
    49
 */
sl@0
    50
const TUint KCrashLogSignatureBytes = 20;
sl@0
    51
sl@0
    52
/** The size in bytes of the total size of the crash log (including itself and
sl@0
    53
 * the crash log signature)
sl@0
    54
 * @internalTechnology
sl@0
    55
 */
sl@0
    56
const TUint KCrashLogSizeFieldBytes = 4;
sl@0
    57
sl@0
    58
/* The crash log signature.
sl@0
    59
 * @internalTechnology
sl@0
    60
 */
sl@0
    61
_LIT8(KCrashLogSignature, "Symbian Crash Logger");
sl@0
    62
sl@0
    63
/** The size in bytes of the total size of the crash log once it has been uncompressed
sl@0
    64
 * @internalTechnology
sl@0
    65
 */
sl@0
    66
const TUint KCrashLogUncompSizeFieldBytes = 4;
sl@0
    67
sl@0
    68
/** The flags to indicate to the crash reader the data format of the log and if 
sl@0
    69
 *	it was truncated or not.  16 MSBs used to indicate the offset of the start of the
sl@0
    70
 *	log data from the signature, required for NAND flash implementations where signarture
sl@0
    71
 *	occupyies a whole flash sector/page filling unused space with white space
sl@0
    72
 * @internalTechnology
sl@0
    73
 */
sl@0
    74
const TUint KCrashLogFlagsFieldBytes = 4;
sl@0
    75
sl@0
    76
const TUint8 KCrashLogFlagUncompr = 0x0;/** No compression performed on log */
sl@0
    77
const TUint8 KCrashLogFlagGzip = 0x1; 	/** Log compressed using Gzip compatible output*/
sl@0
    78
const TUint8 KCrashLogFlagTypeBits = 4; /** No. of bits for the type*/
sl@0
    79
sl@0
    80
const TUint8 KCrashLogFlagTruncated = 0x10; /** The log had to be truncated*/
sl@0
    81
sl@0
    82
const TUint32 KCrashLogFlagOffShift = 16; /**place offset in 16 MSBs of flags field*/
sl@0
    83
sl@0
    84
/** Total size of the crash log header in bytes.  Must be less than the size of a 
sl@0
    85
 *	single NAND flash sector/page for current crashflashnand implementations
sl@0
    86
 *	@internalTechnology
sl@0
    87
 */
sl@0
    88
#ifndef _CRASHLOG_COMPR
sl@0
    89
const TUint KCrashLogHeaderSize = KCrashLogSignatureBytes + KCrashLogSizeFieldBytes;
sl@0
    90
#else
sl@0
    91
const TUint KCrashLogHeaderSize = KCrashLogSignatureBytes + KCrashLogSizeFieldBytes + 
sl@0
    92
									KCrashLogUncompSizeFieldBytes + KCrashLogFlagsFieldBytes;
sl@0
    93
#endif //_CRASHLOG_COMPR
sl@0
    94
sl@0
    95
sl@0
    96
/** The string to output when the log had to be truncated
sl@0
    97
 *	@internalTechnology
sl@0
    98
 */
sl@0
    99
_LIT8(KCrashLogTruncated,"\r\nLog truncated due to end of crash log partition");
sl@0
   100
sl@0
   101
/** Abstract class defining interface to all CrashFlash classes.  This is used
sl@0
   102
 * by the CrashLogger to log to a specific type of flash.
sl@0
   103
 *@internalTechnology
sl@0
   104
 */
sl@0
   105
class CrashFlash
sl@0
   106
    {
sl@0
   107
public:
sl@0
   108
	/** Called first.  Should initialise underlying crash flash device to the
sl@0
   109
	 * state that it can read, write, and erase.
sl@0
   110
	 * @return KErrNone if successful.  Else, a system wide error code.
sl@0
   111
	 */
sl@0
   112
	virtual TInt Initialise()=0;
sl@0
   113
sl@0
   114
	/** Called second.  Allows underlying implementation to set any flags
sl@0
   115
	 * required to indicate that a transaction has started.
sl@0
   116
	 */
sl@0
   117
	virtual void StartTransaction()=0;
sl@0
   118
sl@0
   119
	/** Called third.  Performs the operations necessary to erase a block of
sl@0
   120
	 * flash large enough to store a log of KMaxCrashLogSize.
sl@0
   121
	 */
sl@0
   122
	virtual void EraseLogArea()=0;
sl@0
   123
sl@0
   124
	/** Called last.  Commits any buffered data and sets the flag for the
sl@0
   125
	 * underlying crash flash device indicating that the transaction finished
sl@0
   126
	 * succesfully.
sl@0
   127
	 */
sl@0
   128
	virtual void EndTransaction()=0;
sl@0
   129
sl@0
   130
	/** Writes aDes to the underlying crash flash device.  The underlying 
sl@0
   131
	 * implementation may buffer as required.
sl@0
   132
	 */
sl@0
   133
	virtual void Write(const TDesC8& aDes)=0;
sl@0
   134
sl@0
   135
	/** Writes aDes to the signature section of the underlying cras flash device.
sl@0
   136
	 * The descriptor should include both the signature and the length written.
sl@0
   137
	 */
sl@0
   138
	virtual void WriteSignature(const TDesC8& aDes)=0;
sl@0
   139
sl@0
   140
	/** Reads the next aDes.Length() characters and places them in aDes starting
sl@0
   141
	 * from aDes[0].  The read position is modifiable using SetReadPos().  The
sl@0
   142
	 * underlying implementation may buffer as required.
sl@0
   143
	 */
sl@0
   144
	virtual void Read(TDes8& aDes)=0;
sl@0
   145
sl@0
   146
	/** Sets the internal state such that the next read will take place at
sl@0
   147
	 * aPos bytes from the base address.
sl@0
   148
	 */
sl@0
   149
	virtual void SetReadPos(TUint aPos) = 0;
sl@0
   150
	
sl@0
   151
	/** Sets the internal state of the write position
sl@0
   152
	* aPos bytes from the base address.
sl@0
   153
	*/
sl@0
   154
	virtual void SetWritePos(const TUint aPos) = 0;
sl@0
   155
sl@0
   156
	/** Returns the number of bytes written to the flash.  This is used by
sl@0
   157
	 * reading programs to figure out how much to read back.
sl@0
   158
	 * @return The current total number of bytes written to flash.
sl@0
   159
	 */
sl@0
   160
	virtual TUint BytesWritten()=0;
sl@0
   161
	
sl@0
   162
	/**
sl@0
   163
	 * Erases the data in a given flash block
sl@0
   164
	 * @param aBlock The block to be erased
sl@0
   165
	 */
sl@0
   166
	virtual void EraseFlashBlock(const TUint aBlock) = 0;
sl@0
   167
	
sl@0
   168
#ifdef _CRASHLOG_COMPR
sl@0
   169
	/** Get the amount of space availiable for crash log data only.
sl@0
   170
		Not including the space required to output the signature message
sl@0
   171
		@return The number of bytes allocated to the crash log data
sl@0
   172
	*/
sl@0
   173
	virtual TUint GetOutputLimit(void)=0;
sl@0
   174
	
sl@0
   175
	/** Get the offset from the end of the signature to the log data, if any.
sl@0
   176
		@return The number of bytes after the signature that the log data starts
sl@0
   177
	*/
sl@0
   178
	virtual TUint GetLogOffset(void)=0;
sl@0
   179
#endif
sl@0
   180
	
sl@0
   181
	};
sl@0
   182
sl@0
   183
#endif