os/kernelhwsrv/kernel/eka/include/drivers/nanddevice.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) 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\include\drivers\NandDevice.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __NAND_DEVICE_H__
sl@0
    19
#define __NAND_DEVICE_H__
sl@0
    20
sl@0
    21
sl@0
    22
/**
sl@0
    23
This enum contains an entry for every manufacturer ID of NAND flash which
sl@0
    24
Symbian OS currently supports.
sl@0
    25
@publishedPartner
sl@0
    26
@released
sl@0
    27
*/
sl@0
    28
enum TManufacturerId
sl@0
    29
	{
sl@0
    30
	ESamsungId = 0xEC
sl@0
    31
	};
sl@0
    32
sl@0
    33
/**
sl@0
    34
This enum specifies characterisitics exhibited by NAND devices.
sl@0
    35
@publishedPartner
sl@0
    36
@released
sl@0
    37
*/
sl@0
    38
enum TDeviceFlags
sl@0
    39
	{
sl@0
    40
	ELargeBlock = 0x01,
sl@0
    41
	ECycle5Dev = 0x02,
sl@0
    42
	EDataIoWidth16 = 0x04		// i/o width is 16 bits wide
sl@0
    43
	};
sl@0
    44
sl@0
    45
/**
sl@0
    46
Container for storing all of the information about a particular
sl@0
    47
type of NAND flash device.
sl@0
    48
@publishedPartner
sl@0
    49
@released
sl@0
    50
*/
sl@0
    51
struct TNandDeviceInfo
sl@0
    52
	{ 
sl@0
    53
	TManufacturerId     iManufacturerCode;
sl@0
    54
	TUint8				iDeviceCode;
sl@0
    55
	TUint32				iNumBlocks;			// no. of erase blocks in a device
sl@0
    56
	TUint32				iNumSectorsPerBlock;// no. of sectors in an erase block
sl@0
    57
	TUint32				iNumBytesMain;		// size of a main array for one sector
sl@0
    58
	TUint32				iNumBytesSpare;		// size of a spare array for one sector
sl@0
    59
    TUint8				iSectorShift;		// shift value for a sector
sl@0
    60
    TUint8				iBlockShift;		// shift value for a block	
sl@0
    61
	TUint16				iBlksInRsv;			// number of blocks in reservoir
sl@0
    62
    TUint8				iBadPos;			// BadBlock Information Position in spare block
sl@0
    63
	TUint8				iLsnPos;			// Lsn position in spare array
sl@0
    64
	TUint8				iECCPos;			// ECC position in spare array
sl@0
    65
	TDeviceFlags		iFlags;
sl@0
    66
	};
sl@0
    67
sl@0
    68
#endif