os/kernelhwsrv/kernel/eka/include/drivers/sdcard.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) 1999-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
// SD-specific extensions of generic MMC classes adhering to SD Physical layer simplified spec v2.0
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @internalComponent
sl@0
    21
*/
sl@0
    22
sl@0
    23
#ifndef __SDCARD_H__
sl@0
    24
#define __SDCARD_H__
sl@0
    25
sl@0
    26
#include <drivers/mmc.h>
sl@0
    27
sl@0
    28
class DSDStack;
sl@0
    29
sl@0
    30
enum TSDSessionTypeEnum
sl@0
    31
	{
sl@0
    32
	// empty.
sl@0
    33
	};
sl@0
    34
sl@0
    35
const TUint KSDMinCustomSession = KMMCMinCustomSession + 1024;
sl@0
    36
sl@0
    37
const TUint32 KSDBusWidth1				 = 0x00;	
sl@0
    38
const TUint32 KSDBusWidth4				 = 0x02;
sl@0
    39
const TUint32 KSDStatusBlockLength		 = 0x40;
sl@0
    40
sl@0
    41
const TUint32 KSDSCRLength				 = 0x08;
sl@0
    42
const TUint32 KSDSwitchFuncLength		 = 0x40;
sl@0
    43
const TUint32 KSDCheckFunctionHighSpeed	 = 0x00FFFF01;
sl@0
    44
const TUint32 KSDSwitchFunctionHighSpeed = 0x80FFFF01;
sl@0
    45
sl@0
    46
const TUint32 KSDCardIsSDCard			 = KBit16;	// KMMCardFirstCustomFlag
sl@0
    47
const TUint32 KSDCardFirstCustomFlag	 = KBit24;
sl@0
    48
sl@0
    49
const TUint   KSDDTClk25MHz				 = 25000; //25000KHz
sl@0
    50
const TUint   KSDDTClk50MHz				 = 50000; //50000KHz
sl@0
    51
sl@0
    52
class TSDCSD : public TCSD
sl@0
    53
	{
sl@0
    54
public:
sl@0
    55
	inline TSDCSD(const TCSD& aCSD);
sl@0
    56
sl@0
    57
	inline TBool SDEraseBlkEn() const;
sl@0
    58
	inline TBool SDSectorSize() const;
sl@0
    59
	inline TBool SDWPGrpSize() const;
sl@0
    60
	};
sl@0
    61
sl@0
    62
class TSDCard : public TMMCard
sl@0
    63
	{
sl@0
    64
public:
sl@0
    65
	TSDCard();
sl@0
    66
	inline TBool IsSDCard() const;
sl@0
    67
	inline TUint32 ProtectedAreaSize() const;
sl@0
    68
	inline void SetProtectedAreaSize(TUint32 aPAS);
sl@0
    69
	inline TUint8 GetAUSize() const;
sl@0
    70
	inline void SetAUSize(TUint8 aAU);
sl@0
    71
	inline TInt DeviceSize() const;
sl@0
    72
	virtual TUint32 PreferredWriteGroupLength() const;
sl@0
    73
	virtual TInt GetFormatInfo(TLDFormatInfo& aFormatInfo) const;
sl@0
    74
	virtual TUint32 MinEraseSectorSize() const;
sl@0
    75
	virtual TUint32 EraseSectorSize() const;
sl@0
    76
	virtual TInt GetEraseInfo(TMMCEraseInfo& anEraseInfo) const;
sl@0
    77
	virtual TInt MaxReadBlLen() const;
sl@0
    78
	virtual TInt MaxWriteBlLen() const;
sl@0
    79
	virtual TInt64 DeviceSize64() const;
sl@0
    80
	enum {KPARootDirEndUnknown = 0};
sl@0
    81
	inline TUint32 PARootDirEnd() const;
sl@0
    82
	inline void SetPARootDirEnd(TUint32 aPARootDirEnd);
sl@0
    83
	virtual TUint MaxTranSpeedInKilohertz() const;
sl@0
    84
private:
sl@0
    85
	TUint32 iProtectedAreaSize;
sl@0
    86
	TUint32 iPARootDirEnd;
sl@0
    87
	TUint8	iAUSize;
sl@0
    88
	TUint8 iPad[3];
sl@0
    89
	TUint32 iSpare[4];
sl@0
    90
	};
sl@0
    91
sl@0
    92
class TSDCardArray : public TMMCardArray
sl@0
    93
	{
sl@0
    94
public:
sl@0
    95
	inline TSDCardArray(DSDStack* aOwningStack);
sl@0
    96
	IMPORT_C virtual TInt AllocCards();
sl@0
    97
sl@0
    98
	inline TSDCard& Card(TUint aCardNumber) const;
sl@0
    99
	inline TSDCard& NewCard(TUint aCardNumber) const;
sl@0
   100
	void AddCardSDMode(TUint aCardNumber,const TUint8* aCID,TRCA* aNewRCA);
sl@0
   101
	TInt StoreRCAIfUnique(TUint aCardNumber,TRCA& anRCA);
sl@0
   102
	IMPORT_C virtual void DeclareCardAsGone(TUint aCardNumber);
sl@0
   103
	};
sl@0
   104
sl@0
   105
enum TSDAppCmd
sl@0
   106
	{
sl@0
   107
	ESDACmdSetBusWidth = 6,
sl@0
   108
	ESDACmdSDStatus = 13,
sl@0
   109
	ESDACmdSendNumWrBlocks = 22,
sl@0
   110
	ESDACmdSetWrBlkEraseCount = 23,
sl@0
   111
	ESDACmdSDAppOpCond = 41,
sl@0
   112
	ESDACmdSetClrCardDetect = 42,
sl@0
   113
	ESDACmdSendSCR = 51
sl@0
   114
	};
sl@0
   115
sl@0
   116
enum TSDSpecificCmd
sl@0
   117
	{
sl@0
   118
	ESDCmdSendRelativeAddress = 3,
sl@0
   119
	ESDCmdSwitchFunction = 6,
sl@0
   120
	ESDCmdSendIfCond = 8
sl@0
   121
	};
sl@0
   122
sl@0
   123
class DSDSession : public DMMCSession
sl@0
   124
	{
sl@0
   125
public:
sl@0
   126
	inline DSDSession(const TMMCCallBack& aCallBack);
sl@0
   127
sl@0
   128
	static void FillAppCommandDesc(TMMCCommandDesc& aDesc, TSDAppCmd aCmd);
sl@0
   129
	static void FillAppCommandDesc(TMMCCommandDesc& aDesc, TSDAppCmd aCmd, TMMCArgument aArg);
sl@0
   130
sl@0
   131
	static void FillSdSpecificCommandDesc(TMMCCommandDesc& aDesc, TSDSpecificCmd aCmd);
sl@0
   132
	static void FillSdSpecificCommandDesc(TMMCCommandDesc& aDesc, TSDSpecificCmd aCmd, TMMCArgument aArg);
sl@0
   133
sl@0
   134
protected:
sl@0
   135
	// not implemented.  No SD specific macros
sl@0
   136
//	virtual TMMCSMSTFunc GetMacro(TInt aSessNum) const;
sl@0
   137
sl@0
   138
private:
sl@0
   139
	static void FillAppCommandDesc(TMMCCommandDesc& aDesc);
sl@0
   140
	static void FillSdSpecificCommandDesc(TMMCCommandDesc& aDesc);
sl@0
   141
	};
sl@0
   142
sl@0
   143
const TInt KSDMaxMBWRetries = 1;
sl@0
   144
const TUint32 KSDACMD22BlockLen = 4;
sl@0
   145
class DSDStack : public DMMCStack
sl@0
   146
	{
sl@0
   147
public:
sl@0
   148
	inline DSDStack(TInt aBus, DMMCSocket* aSocket);
sl@0
   149
	
sl@0
   150
	IMPORT_C virtual TInt Init();
sl@0
   151
	IMPORT_C virtual TMMCErr AcquireStackSM();
sl@0
   152
	IMPORT_C virtual TMMCErr CIMReadWriteBlocksSM();
sl@0
   153
	IMPORT_C virtual DMMCSession* AllocSession(const TMMCCallBack& aCallBack) const;
sl@0
   154
sl@0
   155
	virtual void AddressCard(TInt aCardNumber) = 0;
sl@0
   156
sl@0
   157
	inline TSDCardArray& CardArray() const;
sl@0
   158
sl@0
   159
protected:
sl@0
   160
	IMPORT_C virtual TMMCErr InitStackAfterUnlockSM();
sl@0
   161
sl@0
   162
	static TMMCErr InitialiseMemoryCardSMST(TAny* aStackP);
sl@0
   163
	TMMCErr InitialiseMemoryCardSM();
sl@0
   164
sl@0
   165
	static TMMCErr ConfigureMemoryCardSMST(TAny* aStackP);
sl@0
   166
	TMMCErr ConfigureMemoryCardSM();
sl@0
   167
sl@0
   168
	static TMMCErr CIMReadWriteMemoryBlocksSMST(TAny* aStackP);
sl@0
   169
sl@0
   170
	static TMMCErr BaseModifyCardCapabilitySMST(TAny* aStackP);
sl@0
   171
    IMPORT_C virtual TMMCErr ModifyCardCapabilitySM();
sl@0
   172
sl@0
   173
	static TMMCErr SwitchToHighSpeedModeSMST(TAny* aStackP);
sl@0
   174
    TMMCErr SwitchToHighSpeedModeSM();
sl@0
   175
sl@0
   176
private:
sl@0
   177
	TInt iSpare;
sl@0
   178
	enum TSDCardType {ESDCardTypeUnknown, ESDCardTypeIsMMC, ESDCardTypeIsSD};
sl@0
   179
	TSDCardType iCxCardType; 			// Used when detecting whether an SD Memory card is present.
sl@0
   180
	TUint8 iACMD22[KSDACMD22BlockLen];
sl@0
   181
sl@0
   182
private:
sl@0
   183
    //
sl@0
   184
    // Dummy functions to maintain binary compatibility
sl@0
   185
    IMPORT_C virtual void Dummy1();
sl@0
   186
    IMPORT_C virtual void Dummy2();
sl@0
   187
    IMPORT_C virtual void Dummy3();
sl@0
   188
    IMPORT_C virtual void Dummy4();
sl@0
   189
    //
sl@0
   190
    // Reserved members to maintain binary compatibility
sl@0
   191
    TInt iReserved[68];
sl@0
   192
	};
sl@0
   193
sl@0
   194
#include <drivers/sdcard.inl>
sl@0
   195
sl@0
   196
#endif	// #ifndef __SDCARD_H__