os/kernelhwsrv/kernel/eka/include/drivers/mmc.inl
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
//
sl@0
    15
// WARNING: This file contains some APIs which are internal and are subject
sl@0
    16
//          to change without noticed. Such APIs should therefore not be used
sl@0
    17
//          outside the Kernel and Hardware Services package.
sl@0
    18
//
sl@0
    19
sl@0
    20
/**
sl@0
    21
 
sl@0
    22
 A static function that takes the 4 bytes that are stored in a memory location
sl@0
    23
 in ascending address order, and returns them as a 32-bit unsigned integer
sl@0
    24
 in big-endian format.
sl@0
    25
 
sl@0
    26
 @param aPtr A pointer to the memory location containing the 4 bytes to be stored.
sl@0
    27
 
sl@0
    28
 @return A 32 bit unsigned integer containing the 4 bytes in big-endian format.
sl@0
    29
*/
sl@0
    30
inline TUint32 TMMC::BigEndian32(const TUint8* aPtr)
sl@0
    31
	{return( (aPtr[0]<<24) | (aPtr[1]<<16) | (aPtr[2]<<8) | (aPtr[3]) );}
sl@0
    32
sl@0
    33
sl@0
    34
sl@0
    35
sl@0
    36
/**
sl@0
    37
A static function that takes the specified 32-bit unsigned integer, assumed to
sl@0
    38
be in big-endian format, and stores this into the specified memory location.
sl@0
    39
sl@0
    40
@param aPtr A pointer to a 4 byte memory location which is to contain
sl@0
    41
            the unsigned integer.
sl@0
    42
@param aVal A 32 bit unsigned integer in big-endian format.
sl@0
    43
*/
sl@0
    44
inline void TMMC::BigEndian4Bytes(TUint8* aPtr, TUint32 aVal)
sl@0
    45
	{
sl@0
    46
	aPtr[0] = (TUint8)(aVal >> 24);
sl@0
    47
	aPtr[1] = (TUint8)(aVal >> 16);
sl@0
    48
	aPtr[2] = (TUint8)(aVal >> 8);
sl@0
    49
	aPtr[3] = (TUint8)aVal;
sl@0
    50
	}
sl@0
    51
sl@0
    52
sl@0
    53
sl@0
    54
sl@0
    55
//	--------  class TCID  --------
sl@0
    56
sl@0
    57
inline TCID::TCID(const TUint8* aPtr)
sl@0
    58
	{memcpy(&iData[0], aPtr, KMMCCIDLength);}
sl@0
    59
sl@0
    60
inline TCID& TCID::operator=(const TCID& aCID)
sl@0
    61
	{memcpy(&iData[0], &aCID.iData[0], KMMCCIDLength); return(*this);}
sl@0
    62
sl@0
    63
inline TCID& TCID::operator=(const TUint8* aPtr)
sl@0
    64
	{memcpy(&iData[0], aPtr, KMMCCIDLength); return(*this);}
sl@0
    65
sl@0
    66
inline TBool TCID::operator==(const TCID& aCID) const
sl@0
    67
	{return(memcompare(&iData[0],KMMCCIDLength,&aCID.iData[0],KMMCCIDLength)==0);}
sl@0
    68
sl@0
    69
inline TBool TCID::operator==(const TUint8* aPtr) const
sl@0
    70
	{return(memcompare(&iData[0],KMMCCIDLength,aPtr,KMMCCIDLength)==0);}
sl@0
    71
sl@0
    72
inline void TCID::Copy(TUint8* aPtr) const
sl@0
    73
	{memcpy(aPtr, &iData[0], KMMCCIDLength);}
sl@0
    74
sl@0
    75
inline TUint8 TCID::At(TUint anIndex) const
sl@0
    76
	{return(iData[KMMCCIDLength-1-anIndex]);}
sl@0
    77
sl@0
    78
//	--------  class TCSD  --------
sl@0
    79
sl@0
    80
inline TCSD::TCSD(const TUint8* aPtr)
sl@0
    81
	{memcpy(&iData[0], aPtr, KMMCCSDLength);}
sl@0
    82
sl@0
    83
inline TCSD& TCSD::operator=(const TCSD& aCSD)
sl@0
    84
	{memcpy(&iData[0], &aCSD.iData[0], KMMCCSDLength); return(*this);}
sl@0
    85
sl@0
    86
inline TCSD& TCSD::operator=(const TUint8* aPtr)
sl@0
    87
	{memcpy(&iData[0], aPtr, KMMCCSDLength); return(*this);}
sl@0
    88
sl@0
    89
inline void TCSD::Copy(TUint8* aPtr) const
sl@0
    90
	{memcpy(aPtr, &iData[0], KMMCCSDLength);}
sl@0
    91
sl@0
    92
inline TUint8 TCSD::At(TUint anIndex) const		// anIndex byte in little-endian format
sl@0
    93
	{return(iData[KMMCCSDLength-1-anIndex]);}
sl@0
    94
sl@0
    95
// Raw field accessors.  Encoded values such as memory capacity are calulated in
sl@0
    96
// non-inline functions defined in ps_mmc.cpp.
sl@0
    97
sl@0
    98
inline TUint TCSD::CSDStructure() const		{return( CSDField(127,126) );}
sl@0
    99
inline TUint TCSD::SpecVers() const		{return( CSDField(125,122) );}
sl@0
   100
inline TUint TCSD::Reserved120() const		{return( CSDField(121,120) );}
sl@0
   101
inline TUint TCSD::TAAC() const			{return( CSDField(119,112) );}
sl@0
   102
inline TUint TCSD::NSAC() const			{return( CSDField(111,104) );}
sl@0
   103
inline TUint TCSD::TranSpeed() const		{return( CSDField(103,96) );}
sl@0
   104
inline TUint TCSD::CCC() const			{return( CSDField(95,84) );}
sl@0
   105
inline TUint TCSD::ReadBlLen() const		{return( CSDField(83,80) );}
sl@0
   106
inline TBool TCSD::ReadBlPartial() const	{return( CSDField(79,79) );}
sl@0
   107
inline TBool TCSD::WriteBlkMisalign() const	{return( CSDField(78,78) );}
sl@0
   108
inline TBool TCSD::ReadBlkMisalign() const	{return( CSDField(77,77) );}
sl@0
   109
inline TBool TCSD::DSRImp() const		{return( CSDField(76,76) );}
sl@0
   110
inline TUint TCSD::Reserved74() const		{return( CSDField(75,74) );}
sl@0
   111
inline TUint TCSD::CSize() const		{return( CSDField(73,62) );}
sl@0
   112
inline TUint TCSD::VDDRCurrMin() const		{return( CSDField(61,59) );}
sl@0
   113
inline TUint TCSD::VDDRCurrMax() const		{return( CSDField(58,56) );}
sl@0
   114
inline TUint TCSD::VDDWCurrMin() const		{return( CSDField(55,53) );}
sl@0
   115
inline TUint TCSD::VDDWCurrMax() const		{return( CSDField(52,50) );}
sl@0
   116
inline TUint TCSD::CSizeMult() const		{return( CSDField(49,47) );}
sl@0
   117
sl@0
   118
inline TUint TCSD::EraseGrpSize() const		{return( CSDField(46,42) );}
sl@0
   119
inline TUint TCSD::EraseGrpMult() const		{return( CSDField(41,37) );}
sl@0
   120
inline TUint TCSD::WPGrpSize() const		{return( CSDField(36,32) );}
sl@0
   121
sl@0
   122
inline TBool TCSD::WPGrpEnable() const		{return( CSDField(31,31) );}
sl@0
   123
inline TUint TCSD::DefaultECC() const		{return( CSDField(30,29) );}
sl@0
   124
inline TUint TCSD::R2WFactor() const		{return( CSDField(28,26) );}
sl@0
   125
inline TUint TCSD::WriteBlLen() const		{return( CSDField(25,22) );}
sl@0
   126
inline TBool TCSD::WriteBlPartial() const	{return( CSDField(21,21) );}
sl@0
   127
inline TUint TCSD::Reserved16() const		{return( CSDField(20,16) );}
sl@0
   128
inline TBool TCSD::FileFormatGrp() const	{return( CSDField(15,15) );}
sl@0
   129
inline TBool TCSD::Copy() const			{return( CSDField(14,14) );}
sl@0
   130
inline TBool TCSD::PermWriteProtect() const	{return( CSDField(13,13) );}
sl@0
   131
inline TBool TCSD::TmpWriteProtect() const	{return( CSDField(12,12) );}
sl@0
   132
inline TUint TCSD::FileFormat() const		{return( CSDField(11,10) );}
sl@0
   133
inline TUint TCSD::ECC() const			{return( CSDField(9,8) );}
sl@0
   134
inline TUint TCSD::CRC() const			{return( CSDField(7,1) );}
sl@0
   135
sl@0
   136
//	--------  class TExtendedCSD  --------
sl@0
   137
sl@0
   138
inline TExtendedCSD::TExtendedCSD()	// Default constructor
sl@0
   139
	{}				
sl@0
   140
sl@0
   141
inline TExtendedCSD::TExtendedCSD(const TUint8* aPtr)
sl@0
   142
	{memcpy(&iData[0], aPtr, KMMCExtendedCSDLength);}
sl@0
   143
sl@0
   144
inline TExtendedCSD& TExtendedCSD::operator=(const TExtendedCSD& aCSD)
sl@0
   145
	{memcpy(&iData[0], &aCSD.iData[0], KMMCExtendedCSDLength); return(*this);}
sl@0
   146
sl@0
   147
inline TExtendedCSD& TExtendedCSD::operator=(const TUint8* aPtr)
sl@0
   148
	{memcpy(&iData[0], aPtr, KMMCExtendedCSDLength); return(*this);}
sl@0
   149
sl@0
   150
inline TMMCArgument TExtendedCSD::GetWriteArg(TExtCSDAccessBits aAccess, TExtCSDModesFieldIndex aIndex, TUint aValue, TUint aCmdSet)
sl@0
   151
	{return TMMCArgument((aAccess << 24) | (aIndex << 16) | (aValue << 8) | (aCmdSet));}
sl@0
   152
sl@0
   153
inline TUint8* TExtendedCSD::Ptr() {return &iData[0];}
sl@0
   154
sl@0
   155
// Raw field accessors.  
sl@0
   156
// "Properties Segment" of Extended CSD - i.e. read-only fields
sl@0
   157
inline TUint TExtendedCSD::SupportedCmdSet() const {return iData[504];}
sl@0
   158
inline TUint TExtendedCSD::SectorCount() const {return(iData[212] | ((TUint)iData[213] << 8) | ((TUint)iData[214] << 16) | ((TUint)iData[215] << 24));}
sl@0
   159
inline TUint TExtendedCSD::MinPerfWrite8Bit52Mhz() const {return iData[210];}
sl@0
   160
inline TUint TExtendedCSD::MinPerfRead8Bit52Mhz() const {return iData[209];}
sl@0
   161
inline TUint TExtendedCSD::MinPerfWrite8Bit26Mhz_4Bit52Mhz() const {return iData[208];}
sl@0
   162
inline TUint TExtendedCSD::MinPerfRead8Bit26Mhz_4Bit52Mhz() const {return iData[207];}
sl@0
   163
inline TUint TExtendedCSD::MinPerfWrite4Bit26Mhz() const {return iData[206];}
sl@0
   164
inline TUint TExtendedCSD::MinPerfRead4Bit26Mhz() const {return iData[205];}
sl@0
   165
inline TUint TExtendedCSD::PowerClass26Mhz360V() const {return iData[203];}
sl@0
   166
inline TUint TExtendedCSD::PowerClass52Mhz360V() const {return iData[202];}
sl@0
   167
inline TUint TExtendedCSD::PowerClass26Mhz195V() const {return iData[201];}
sl@0
   168
inline TUint TExtendedCSD::PowerClass52Mhz195V() const {return iData[200];}
sl@0
   169
inline TUint TExtendedCSD::CardType() const {return iData[196];}
sl@0
   170
inline TUint TExtendedCSD::CSDStructureVer() const {return iData[194];}
sl@0
   171
inline TUint TExtendedCSD::ExtendedCSDRev() const {return iData[EExtendedCSDRevIndex];}
sl@0
   172
inline TUint TExtendedCSD::AccessSize() const {return iData[EAccessSizeIndex];}
sl@0
   173
inline TUint TExtendedCSD::HighCapacityEraseGroupSize() const {return iData[EHighCapacityEraseGroupSizeIndex];}
sl@0
   174
inline TUint TExtendedCSD::BootInfo() const {return iData[228];}
sl@0
   175
inline TUint TExtendedCSD::BootSizeMultiple() const {return iData[226];}
sl@0
   176
inline TUint TExtendedCSD::EraseTimeoutMultiple() const {return iData[223];}
sl@0
   177
inline TUint TExtendedCSD::ReliableWriteSector() const {return iData[222];}
sl@0
   178
inline TUint TExtendedCSD::HighCapacityWriteProtectGroupSize() const {return iData[221];}
sl@0
   179
inline TUint TExtendedCSD::SleepCurrentVcc() const {return iData[220];}
sl@0
   180
inline TUint TExtendedCSD::SleepCurrentVccQ() const {return iData[219];}
sl@0
   181
inline TUint TExtendedCSD::SleepAwakeTimeout() const {return iData[217];}
sl@0
   182
sl@0
   183
// "Modes Segment" of Extended CSD - i.e. modifiable fields
sl@0
   184
inline TUint TExtendedCSD::CmdSet() const {return iData[ECmdSetIndex];}
sl@0
   185
inline TUint TExtendedCSD::CmdSetRev() const {return iData[ECmdSetRevIndex];}
sl@0
   186
inline TUint TExtendedCSD::PowerClass() const {return iData[EPowerClassIndex];}
sl@0
   187
inline TUint TExtendedCSD::HighSpeedTiming() const {return iData[EHighSpeedInterfaceTimingIndex];}
sl@0
   188
inline TUint TExtendedCSD::BusWidthMode() const {return iData[EBusWidthModeIndex];}
sl@0
   189
inline TUint TExtendedCSD::BootConfig() const {return iData[EBootConfigIndex];}
sl@0
   190
inline TUint TExtendedCSD::BootBusWidth() const {return iData[EBootBusWidthIndex];}
sl@0
   191
inline TUint TExtendedCSD::EraseGroupDef() const {return iData[EEraseGroupDefIndex];}
sl@0
   192
sl@0
   193
//	--------  class TMMCStatus  --------
sl@0
   194
 /**
sl@0
   195
 * Constructor for TMMCStatus.
sl@0
   196
 * @param aPtr	A pointer to the memory location containing the 4 bytes to be stored. 
sl@0
   197
 				The 4 bytes corresponds to MMC card response. Refer to the MMC card specification for the possible values of response.
sl@0
   198
 */
sl@0
   199
inline TMMCStatus::TMMCStatus(const TUint8* aPtr) : iData(TMMC::BigEndian32(aPtr)) {}
sl@0
   200
sl@0
   201
/**
sl@0
   202
 * constructs the TMMCStatus object with value corresponding to MMC status register.
sl@0
   203
 * @param aData	Value corresponding to MMC status register.
sl@0
   204
 */
sl@0
   205
inline TMMCStatus::TMMCStatus(const TUint32& aData) : iData(aData) {}
sl@0
   206
sl@0
   207
/**
sl@0
   208
 * Gets the bitfield(32 bits) representing the MMC status register.
sl@0
   209
 * @return Value corresponding to MMC status register.
sl@0
   210
 */
sl@0
   211
inline TMMCStatus::operator TUint32() const {return(iData);}
sl@0
   212
sl@0
   213
/**
sl@0
   214
 * Gets the error status.
sl@0
   215
 * For the possible values, refer to the MMC card R1 Response. 
sl@0
   216
 * @see DMMCStack
sl@0
   217
 * @return MMC card error status.
sl@0
   218
 */
sl@0
   219
inline TUint32 TMMCStatus::Error() const { return(iData & KMMCStatErrorMask); }
sl@0
   220
sl@0
   221
/**
sl@0
   222
 * Gets the MMC card's current state machine.
sl@0
   223
 * For the possible values of the state machine, refer to the MMC card specification.
sl@0
   224
 * @return The current state of the state machine.
sl@0
   225
 */
sl@0
   226
inline TMMCardStateEnum TMMCStatus::State() const
sl@0
   227
	{ return((TMMCardStateEnum)(iData & KMMCStatCurrentStateMask)); }
sl@0
   228
sl@0
   229
/**
sl@0
   230
 * Replace the MMC card's current state with supplied value
sl@0
   231
 * @param aState The new MMC card State
sl@0
   232
 */
sl@0
   233
inline void TMMCStatus::UpdateState(TMMCardStateEnum aState)
sl@0
   234
	{ 
sl@0
   235
	iData &= ~KMMCStatCurrentStateMask;
sl@0
   236
	iData |= aState;
sl@0
   237
	}
sl@0
   238
sl@0
   239
sl@0
   240
//	--------  class TMMCArgument  --------
sl@0
   241
sl@0
   242
inline TMMCArgument::TMMCArgument()
sl@0
   243
/**
sl@0
   244
 * Default constructor
sl@0
   245
 * Initialises the argument to zero.
sl@0
   246
 */
sl@0
   247
	{}
sl@0
   248
sl@0
   249
inline TMMCArgument::TMMCArgument(const TUint32& aData)
sl@0
   250
 : iData(aData)
sl@0
   251
/**
sl@0
   252
 * Constructs a TMMCArgument with a 32-bit parameter.
sl@0
   253
 * @param aData The 32-bit parameter.
sl@0
   254
 */
sl@0
   255
	{}
sl@0
   256
sl@0
   257
inline TMMCArgument::TMMCArgument(TRCA anRCA) : iData(TUint(anRCA)<<16)
sl@0
   258
/**
sl@0
   259
 * Constructs a TMMCArgument with a Relative Card Address (RCA).
sl@0
   260
 * @param anRCA The RCA.
sl@0
   261
 */
sl@0
   262
	{}
sl@0
   263
inline TMMCArgument::TMMCArgument(TDSR aDSR) : iData(TUint(aDSR)<<16)
sl@0
   264
/**
sl@0
   265
 * Constructs a TMMCArgument with a Driver Stage Register (DSR).
sl@0
   266
 * @param aDSR The DSR.
sl@0
   267
 */
sl@0
   268
	{}
sl@0
   269
sl@0
   270
inline TMMCArgument::operator TUint32() const 
sl@0
   271
/**
sl@0
   272
 * Converts the TMMCArgument to it's raw 32-bit representation.
sl@0
   273
 * @return Raw 32-bit argument data
sl@0
   274
 */
sl@0
   275
	{return(iData);}
sl@0
   276
sl@0
   277
inline void TMMCArgument::SetRCA(TRCA anRCA)	
sl@0
   278
/**
sl@0
   279
 * Sets the Relative Card Address
sl@0
   280
 * @param anRCA The RCA.
sl@0
   281
 */
sl@0
   282
	{iData=(iData&0xFFFF)|(TUint(anRCA)<<16);}
sl@0
   283
sl@0
   284
//	--------  class TRCA  --------
sl@0
   285
sl@0
   286
inline TRCA::TRCA(TUint16 aData) : iData(aData)
sl@0
   287
/**
sl@0
   288
 * Constructs a TRCA with a 16-bit RCA.
sl@0
   289
 * @param aData The 16-bit RCA.
sl@0
   290
 */
sl@0
   291
	{}
sl@0
   292
sl@0
   293
inline TRCA::TRCA(TInt aData) : iData(static_cast<TUint16>(aData))
sl@0
   294
/**
sl@0
   295
 * Constructs a TRCA with a parameter of type TInt.
sl@0
   296
 * @param aData The TInt parameter.
sl@0
   297
 */
sl@0
   298
	{}
sl@0
   299
sl@0
   300
inline TRCA::TRCA(TMMCArgument aData)
sl@0
   301
/**
sl@0
   302
 * Constructs a TRCA with a TMMCArgument containing a RCA.
sl@0
   303
 * @param aData The argument containing the RCA.
sl@0
   304
 */
sl@0
   305
	{iData=(TUint16)((TUint32(aData)>>16)&0xFFFF);}
sl@0
   306
sl@0
   307
inline TRCA::operator TUint16() const
sl@0
   308
/**
sl@0
   309
 * Converts the TRCA to it's raw 16-bit representation.
sl@0
   310
 * @return Raw 16-bit RCA
sl@0
   311
 */
sl@0
   312
	{return(iData);}
sl@0
   313
sl@0
   314
//	--------  class TDSR  --------
sl@0
   315
sl@0
   316
inline TDSR::TDSR()
sl@0
   317
/**
sl@0
   318
 * Default constructor.
sl@0
   319
 * Initialises the DRS to zero
sl@0
   320
 */
sl@0
   321
	{}
sl@0
   322
sl@0
   323
inline TDSR::TDSR(TUint16 aData) : iData(aData)
sl@0
   324
/**
sl@0
   325
 * Constructs a TDSR with a 16-bit DSR.
sl@0
   326
 * @param aData The 16-bit DSR.
sl@0
   327
 */
sl@0
   328
	{}
sl@0
   329
sl@0
   330
inline TDSR::operator TUint16() const 
sl@0
   331
/**
sl@0
   332
 * Converts the TDSR to it's raw 16-bit representation.
sl@0
   333
 * @return Raw 16-bit DSR
sl@0
   334
 */
sl@0
   335
	{return(iData);}
sl@0
   336
sl@0
   337
sl@0
   338
//	--------  class TMMCard  --------
sl@0
   339
inline TBool TMMCard::IsHighCapacity() const	{ return (iFlags & KMMCardIsHighCapacity) != 0; }
sl@0
   340
sl@0
   341
inline TBool TMMCard::IsPresent() const
sl@0
   342
//
sl@0
   343
// If the card is present, its index shows the card number + 1
sl@0
   344
//
sl@0
   345
	{return( iIndex != 0 );}
sl@0
   346
sl@0
   347
inline TInt TMMCard::Number() const						{return( iIndex - 1 );}
sl@0
   348
inline TMMCMediaTypeEnum TMMCard::MediaType() const		{return(iCSD.MediaType());}
sl@0
   349
inline const TCID& TMMCard::CID() const					{return(iCID);}
sl@0
   350
inline const TCSD& TMMCard::CSD() const					{return(iCSD);}
sl@0
   351
inline const TExtendedCSD& TMMCard::ExtendedCSD() const	{return(iExtendedCSD);}
sl@0
   352
inline TRCA TMMCard::RCA() const						{return(iRCA);}
sl@0
   353
inline TBool TMMCard::HasPassword() const				{return(iFlags&KMMCardHasPassword);}
sl@0
   354
inline TBool TMMCard::IsWriteProtected() const			{return(iFlags&KMMCardIsWriteProtected);}
sl@0
   355
sl@0
   356
inline TUint TMMCard::DeviceSize() const
sl@0
   357
	{
sl@0
   358
	TInt64 capacity = DeviceSize64();
sl@0
   359
	return(capacity > KMaxTInt ? KMaxTInt : I64LOW(capacity));
sl@0
   360
	}
sl@0
   361
sl@0
   362
/** 
sl@0
   363
Gets the bus width setting for this card.
sl@0
   364
Note returned value may differ from current host controller bus width setting. 
sl@0
   365
returns 1, 4 or 8
sl@0
   366
*/
sl@0
   367
inline TInt TMMCard::BusWidth() const					
sl@0
   368
	{return iBusWidth;}
sl@0
   369
sl@0
   370
/**
sl@0
   371
Sets the bus width setting for this card. 
sl@0
   372
Note this buswidth will not be applied to the host controller and is only used for recording.
sl@0
   373
sl@0
   374
@param aBusWidth the bus width to set - valid values are 1, 4 or 8
sl@0
   375
*/
sl@0
   376
inline void TMMCard::SetBusWidth(TInt aBusWidth)
sl@0
   377
	{iBusWidth=aBusWidth;}
sl@0
   378
sl@0
   379
inline void TMMCard::SetHighSpeedClock(TUint32 aHighSpeedClock)
sl@0
   380
	{iHighSpeedClock = aHighSpeedClock;}
sl@0
   381
inline TUint32 TMMCard::HighSpeedClock() const
sl@0
   382
	{return iHighSpeedClock;}
sl@0
   383
sl@0
   384
//	--------  class TMMCardArray  --------
sl@0
   385
sl@0
   386
inline TMMCardArray::TMMCardArray(DMMCStack* anOwningStack) 
sl@0
   387
	{iOwningStack=anOwningStack;}
sl@0
   388
inline TUint TMMCardArray::NewCardCount()
sl@0
   389
	{return(iNewCardsCount);}
sl@0
   390
inline TInt TMMCardArray::CardsPresent()
sl@0
   391
	{return(iCardsPresent);}
sl@0
   392
inline TMMCard* TMMCardArray::NewCardP(TUint aNewCardNumber)
sl@0
   393
	{return(iNewCards[aNewCardNumber]);}
sl@0
   394
inline TMMCard* TMMCardArray::CardP(TUint aCardNumber)
sl@0
   395
	{return(iCards[aCardNumber]);}
sl@0
   396
inline TMMCard& TMMCardArray::NewCard(TUint aCardNumber)
sl@0
   397
	{return *iNewCards[aCardNumber];}
sl@0
   398
inline TMMCard& TMMCardArray::Card(TUint aCardNumber)
sl@0
   399
	{return *iCards[aCardNumber];}
sl@0
   400
sl@0
   401
//	--------  class TMMCCommandDesc  --------
sl@0
   402
sl@0
   403
inline TBool TMMCCommandDesc::IsBlockCmd() const
sl@0
   404
	{ return ((iFlags & KMMCCmdFlagBlockAddress) != 0); }
sl@0
   405
sl@0
   406
inline TUint32 TMMCCommandDesc::NumBlocks() const
sl@0
   407
	{ return iTotalLength / BlockLength(); }
sl@0
   408
sl@0
   409
inline TInt64 TMMCCommandDesc::Arg64() const	
sl@0
   410
	{ return IsBlockCmd()? ((TInt64)(TUint32)iArgument) << KMMCardHighCapBlockSizeLog2 : (TInt64)(TUint32)iArgument; }
sl@0
   411
sl@0
   412
inline TBool TMMCCommandDesc::IsDoubleBuffered() const
sl@0
   413
	{ return ((iFlags & KMMCCmdFlagDoubleBuffer) != 0); }
sl@0
   414
sl@0
   415
inline TBool TMMCCommandDesc::IsPhysicalAddress() const
sl@0
   416
	{ return ((iFlags & KMMCCmdFlagPhysAddr) != 0); }
sl@0
   417
sl@0
   418
/**
sl@0
   419
Returns the buffer length in bytes. If the current request is double-buffered,
sl@0
   420
this returns the amount of data available in the currently active buffer.
sl@0
   421
If the command is not double-buffered, the total amount of data to be transferred is returned.
sl@0
   422
sl@0
   423
@return Buffer length in bytes
sl@0
   424
*/
sl@0
   425
inline TUint32 TMMCCommandDesc::BufferLength() const
sl@0
   426
	{ return (IsDoubleBuffered() ? (iBlockLength >> 16) << KMMCardHighCapBlockSizeLog2 : iTotalLength); }
sl@0
   427
sl@0
   428
inline TUint32 TMMCCommandDesc::BlockLength() const
sl@0
   429
	{ return (IsDoubleBuffered() ? (iBlockLength & 0x0000FFFF) : iBlockLength); }
sl@0
   430
sl@0
   431
//	--------  class TMMCStackConfig  --------
sl@0
   432
sl@0
   433
inline TMMCStackConfig::TMMCStackConfig() : iUpdateMask(0), iClientMask(0)
sl@0
   434
/**
sl@0
   435
 * Constructor for a TMMCStackConfig object.
sl@0
   436
 */
sl@0
   437
	{}
sl@0
   438
sl@0
   439
inline void TMMCStackConfig::SetMode(TUint32 aMask)
sl@0
   440
/**
sl@0
   441
 * Enable a single mode or a set of modes.
sl@0
   442
 * Enabled modes should be considered by the Controller as effective. However, client mode 
sl@0
   443
 * settings may be overridden by master settings.
sl@0
   444
 * @param aMask The mode(s) to be set.
sl@0
   445
 */
sl@0
   446
	{iModes |= aMask; iUpdateMask |= aMask;}
sl@0
   447
sl@0
   448
inline void TMMCStackConfig::RemoveMode(TUint32 aMask)
sl@0
   449
/**
sl@0
   450
 * Disable a single mode or a set of modes.
sl@0
   451
 * Disabled modes should be considered by the Controller as not in effect. However, client mode
sl@0
   452
 * settings may be overridden by master settings.
sl@0
   453
 * @param aMask The mode(s) to be removed.
sl@0
   454
 */
sl@0
   455
	{iModes &= ~aMask; iUpdateMask |= aMask;}
sl@0
   456
sl@0
   457
inline void TMMCStackConfig::UseDefault(TUint32 aMask)
sl@0
   458
/**
sl@0
   459
 * Restore a single mode or a set of modes to the default setting setting for the platform.
sl@0
   460
 * @param aMask The mode(s) to be restored.
sl@0
   461
 */
sl@0
   462
	{iUpdateMask &= ~aMask; iClientMask &= ~aMask;}
sl@0
   463
sl@0
   464
inline void TMMCStackConfig::SetPollAttempts(TUint aData)
sl@0
   465
/** 
sl@0
   466
 * Set the number of attempts the Controller is allowed to make to recover on busy timeout during writes to the card.
sl@0
   467
 * The default setting for this is KMMCMaxPollAttempts (i.e. 5).
sl@0
   468
 * @param aData The number of attempts to make to recover on busy timeout during write
sl@0
   469
 */
sl@0
   470
	{iPollAttempts=aData; iClientMask |= KMMCModeClientPollAttempts; }
sl@0
   471
sl@0
   472
inline void TMMCStackConfig::SetOpCondBusyTimeout(TUint16 aData)
sl@0
   473
/**
sl@0
   474
 * Set the number of attempts the Controller is allowed to make to recover on busy timeout
sl@0
   475
 * while waiting for a card which is slow to power up during stack initialisation. The default setting 
sl@0
   476
 * for this is KMMCMaxOpCondBusyTimeout (i.e. 100).
sl@0
   477
 * @param aData The number of attempts to make to recover on busy timeout during power up
sl@0
   478
*/
sl@0
   479
	{iOpCondBusyTimeout=aData; iClientMask |= KMMCModeClientiOpCondBusyTimeout; }
sl@0
   480
	
sl@0
   481
inline TInt TMMCStackConfig::OpCondBusyTimeout()
sl@0
   482
/**
sl@0
   483
 * Return the number of attempts the Controller is allowed to make to recover on busy timeout
sl@0
   484
 * while waiting for a card which is slow to power up during stack initialisation.
sl@0
   485
 * @return The number of attempts to make to recover on busy timeout
sl@0
   486
*/
sl@0
   487
	{return((TInt)iOpCondBusyTimeout);}
sl@0
   488
	
sl@0
   489
inline void TMMCStackConfig::SetTimeOutRetries(TUint aData)
sl@0
   490
/** 
sl@0
   491
 * Set the number of auto reties the Controller is allowed to make on command response time-out or data 
sl@0
   492
 * block receive timeout situations. The default setting for this is KMMCMaxTimeOutRetries (i.e. 1).
sl@0
   493
 * @param aData The number of auto reties to make on command response time-out or data block receive timeout condition.
sl@0
   494
 */
sl@0
   495
	{iTimeOutRetries=aData; iClientMask |= KMMCModeClientTimeOutRetries; }
sl@0
   496
sl@0
   497
inline void TMMCStackConfig::SetCRCRetries(TUint aData)
sl@0
   498
/** 
sl@0
   499
 * Set the number of auto reties the Controller is allowed to make on CRC error situations. 
sl@0
   500
 * The default setting for this is KMMCMaxCRCRetries (i.e. 1).
sl@0
   501
 * @param aData The number of auto reties to make on a CRC error condition.
sl@0
   502
 */
sl@0
   503
	{iCRCRetries=aData; iClientMask |= KMMCModeClientCRCRetries; }
sl@0
   504
sl@0
   505
inline void TMMCStackConfig::SetBusClockInKhz(TUint aData)
sl@0
   506
/** 
sl@0
   507
 * Set the bus clock speed in kilohertz.
sl@0
   508
 * The default master setting for this depends on the platform (set in DMMCStack::SetBusConfigDefaults).
sl@0
   509
 * @param aData The bus clock speed in kilohertz
sl@0
   510
 */
sl@0
   511
	{iBusConfig.iBusClock=aData; iClientMask |= KMMCModeClientBusClock; }
sl@0
   512
sl@0
   513
inline void TMMCStackConfig::SetTicksClockIn(TUint aData)
sl@0
   514
/** 
sl@0
   515
 * Set the number of clock ticks in the ClockIn phase to be used. 
sl@0
   516
 * The default master setting for this depends on the platform (set in DMMCStack::SetBusConfigDefaults).
sl@0
   517
 * @param aData The number of clock ticks in the ClockIn phase
sl@0
   518
 */
sl@0
   519
	{iBusConfig.iClockIn=aData; iClientMask |= KMMCModeClientClockIn; }
sl@0
   520
sl@0
   521
inline void TMMCStackConfig::SetTicksClockOut(TUint aData)
sl@0
   522
/** 
sl@0
   523
 * Set the number of clock ticks in the ClockOut phase to be used. 
sl@0
   524
 * The default master setting for this depends on the platform (set in DMMCStack::SetBusConfigDefaults).
sl@0
   525
 * @param aData The number of clock ticks in the ClockOut phase
sl@0
   526
 */
sl@0
   527
	{iBusConfig.iClockOut=aData; iClientMask |= KMMCModeClientClockOut; }
sl@0
   528
sl@0
   529
inline void TMMCStackConfig::SetResponseTimeOutInTicks(TUint aData)
sl@0
   530
/** 
sl@0
   531
 * Set the response timeout value to be used (in bus clock ticks). 
sl@0
   532
 * If a command response is not received within this period then the Controller will either retry or return an error. 
sl@0
   533
 * The default master setting for this depends on the platform (set in DMMCStack::SetBusConfigDefaults).
sl@0
   534
 * @param aData The response timeout in bus clock ticks
sl@0
   535
 */
sl@0
   536
	{iBusConfig.iResponseTimeOut=aData; iClientMask |= KMMCModeClientResponseTimeOut; }
sl@0
   537
sl@0
   538
inline void TMMCStackConfig::SetDataTimeOutInMcs(TUint aData)
sl@0
   539
/** 
sl@0
   540
 * Set the data timeout value to be used (in microseconds).
sl@0
   541
 * If an expected data block is not received from the card within this period then the Controller will 
sl@0
   542
 * either retry or return an error.
sl@0
   543
 * The default master setting for this depends on the platform (set in DMMCStack::SetBusConfigDefaults).
sl@0
   544
 * @param aData The data timeout in microseconds
sl@0
   545
 */
sl@0
   546
	{iBusConfig.iDataTimeOut=aData; iClientMask |= KMMCModeClientDataTimeOut; }
sl@0
   547
sl@0
   548
inline void TMMCStackConfig::SetBusyTimeOutInMcs(TUint aData)
sl@0
   549
/** 
sl@0
   550
 * Set the busy timeout value to be used (in microseconds).
sl@0
   551
 * If a data block is not requested by the card within this period then the Controller will either retry 
sl@0
   552
 * or return an error. 
sl@0
   553
 * The default master setting for this depends on the platform (set in DMMCStack::SetBusConfigDefaults).
sl@0
   554
 * @param aData The busy timeout in microseconds
sl@0
   555
 */
sl@0
   556
	{iBusConfig.iBusyTimeOut=aData; iClientMask |= KMMCModeClientBusyTimeOut; }
sl@0
   557
sl@0
   558
sl@0
   559
//	--------  class TMMCRCAPool  --------
sl@0
   560
sl@0
   561
inline TMMCRCAPool::TMMCRCAPool() : iLocked(0) {}
sl@0
   562
inline void TMMCRCAPool::LockRCA(TRCA anRCA)	{iLocked |= (1 << (((TUint(anRCA) / 257) - 1) & 31));}
sl@0
   563
inline void TMMCRCAPool::UnlockRCA(TRCA anRCA)	{iLocked &= ~(1 << (((TUint(anRCA) / 257) - 1) & 31));}
sl@0
   564
inline void TMMCRCAPool::ReleaseUnlocked()	{iPool = 0;}
sl@0
   565
sl@0
   566
sl@0
   567
//	--------  class TMMCSessRing  --------
sl@0
   568
sl@0
   569
inline TBool TMMCSessRing::IsEmpty() const	{return(iSize==0);}
sl@0
   570
inline void TMMCSessRing::SetMarker()		{iPMark=iPrevP;}
sl@0
   571
inline void TMMCSessRing::AdvanceMarker()	{if(iPMark != NULL) iPMark=iPMark->iLinkP;}
sl@0
   572
inline void TMMCSessRing::Point()			{iPoint=((iPrevP=iPMark)==NULL)? NULL : iPMark->iLinkP;}
sl@0
   573
inline TUint TMMCSessRing::Size() const				{return(iSize);}
sl@0
   574
inline TMMCSessRing::operator DMMCSession*() const	{return(iPoint);}
sl@0
   575
sl@0
   576
sl@0
   577
//	--------  class TMMCStateMachine  --------
sl@0
   578
sl@0
   579
sl@0
   580
/**
sl@0
   581
Gets the current MultiMediCard error code.
sl@0
   582
sl@0
   583
@return The current MultiMediCard error code.
sl@0
   584
*/
sl@0
   585
inline TMMCErr TMMCStateMachine::ExitCode()				{ return(iExitCode); }
sl@0
   586
sl@0
   587
sl@0
   588
sl@0
   589
sl@0
   590
/**
sl@0
   591
Gets the current MultiMediCard error code, and sets a new error code.
sl@0
   592
sl@0
   593
@param aCode The new error code value to be set.
sl@0
   594
sl@0
   595
@return The current MultiMediCard error code.
sl@0
   596
*/
sl@0
   597
inline TMMCErr TMMCStateMachine::SetExitCode(TMMCErr aCode) { return __e32_atomic_swp_ord32(&iExitCode, aCode); }
sl@0
   598
sl@0
   599
sl@0
   600
sl@0
   601
sl@0
   602
/**
sl@0
   603
Gets the current state of the state machine.
sl@0
   604
sl@0
   605
Note that this is the state of the current state entry within
sl@0
   606
the state machine stack.
sl@0
   607
sl@0
   608
@return The current state of the state machine.
sl@0
   609
*/
sl@0
   610
inline TUint TMMCStateMachine::State()					{ return(iStack[iSP].iState); }
sl@0
   611
sl@0
   612
sl@0
   613
sl@0
   614
sl@0
   615
/**
sl@0
   616
Sets the state of the state machine.
sl@0
   617
sl@0
   618
Note that this sets the state of the current state entry within
sl@0
   619
the state machine stack.
sl@0
   620
sl@0
   621
@param aState The state to be set.
sl@0
   622
sl@0
   623
@return KMMCErrNone
sl@0
   624
*/
sl@0
   625
inline TMMCErr TMMCStateMachine::SetState(TUint aState)	{ iStack[iSP].iState=aState; return(0); }
sl@0
   626
sl@0
   627
sl@0
   628
sl@0
   629
sl@0
   630
/**
sl@0
   631
Prevents the state machine from blocking.
sl@0
   632
*/
sl@0
   633
inline void TMMCStateMachine::SuppressSuspension()		{ iSuspend = EFalse; }
sl@0
   634
sl@0
   635
sl@0
   636
sl@0
   637
sl@0
   638
/**
sl@0
   639
Sets the trap mask for the current state machine entry.
sl@0
   640
sl@0
   641
This defines the set of errors that the state machine function
sl@0
   642
wants to trap.
sl@0
   643
sl@0
   644
@param aMask The set of error values. This is a set of TMMCErr bits.
sl@0
   645
sl@0
   646
@see TMMCErr
sl@0
   647
*/
sl@0
   648
inline void TMMCStateMachine::SetTraps(TMMCErr aMask)	{ iStack[iSP].iTrapMask=aMask; }
sl@0
   649
sl@0
   650
sl@0
   651
sl@0
   652
sl@0
   653
/**
sl@0
   654
Clears the trap mask.
sl@0
   655
sl@0
   656
@see TMMCStateMachine::SetTraps()
sl@0
   657
*/
sl@0
   658
inline void TMMCStateMachine::ResetTraps()				{ iStack[iSP].iTrapMask=0; }
sl@0
   659
sl@0
   660
sl@0
   661
sl@0
   662
sl@0
   663
/**
sl@0
   664
Aborts the session.
sl@0
   665
*/
sl@0
   666
inline void TMMCStateMachine::Abort()					{ iAbort=ETrue; }
sl@0
   667
sl@0
   668
sl@0
   669
sl@0
   670
sl@0
   671
/**
sl@0
   672
Initialises the state machine.
sl@0
   673
sl@0
   674
The function sets up the state machine function for the first state entry on
sl@0
   675
the state machine stack.
sl@0
   676
sl@0
   677
It also sets up the context. In practice, the context is a pointer to
sl@0
   678
the DMMCStack stack object, i.e. the object representing the MultiMediaCard
sl@0
   679
stack. The pointer is passed to the state machine functions when they
sl@0
   680
are dispatched.
sl@0
   681
sl@0
   682
@param anEntry   The state machine function for the first state machine entry.
sl@0
   683
@param aContextP A pointer to the context. 
sl@0
   684
*/
sl@0
   685
inline void TMMCStateMachine::Setup(TMMCErr (*anEntry)(TAny*), TAny* aContextP)
sl@0
   686
	{iContextP = aContextP; iStack[0].iFunction = anEntry; Reset();}
sl@0
   687
sl@0
   688
sl@0
   689
sl@0
   690
sl@0
   691
/**
sl@0
   692
Pops the current state entry off the state machine stack.
sl@0
   693
sl@0
   694
@param aSuspend Indicates whether the state machine is to block;
sl@0
   695
                specify ETrue to block, EFalse not to block.
sl@0
   696
sl@0
   697
@return KMMCErrNone.
sl@0
   698
*/	
sl@0
   699
inline TMMCErr TMMCStateMachine::Pop(TBool aSuspend)
sl@0
   700
	{iSP--; if(!aSuspend) iSuspend = EFalse; return( 0 );}
sl@0
   701
sl@0
   702
sl@0
   703
sl@0
   704
sl@0
   705
/**
sl@0
   706
Pushes the next state entry onto the stack, specifying the current state
sl@0
   707
function as the child function that is to be run, and requests the state
sl@0
   708
machine to block.
sl@0
   709
sl@0
   710
@return A MultiMediaCard error code returned from a call to TMMCStateMachine::Push().
sl@0
   711
*/
sl@0
   712
inline TMMCErr TMMCStateMachine::PushMe()				{return(Push(iStack[iSP].iFunction,ETrue));}
sl@0
   713
sl@0
   714
sl@0
   715
//	--------  class DMMCSession  --------
sl@0
   716
sl@0
   717
inline void DMMCSession::SetStack(DMMCStack* aStackP)
sl@0
   718
/**
sl@0
   719
 * Assign a stack to the session. 
sl@0
   720
 *
sl@0
   721
 * If  an attempt is made to engage the session before a stack has been assigned to it 
sl@0
   722
 * then the request will fail straight away. It is possible to change the stack controller 
sl@0
   723
 * assigned to the session as long as this is not attempted while the session is engaged.
sl@0
   724
 *
sl@0
   725
 * @param aStackP A pointer to the stack to be assigned to the session
sl@0
   726
 */
sl@0
   727
	{iStackP = aStackP;}
sl@0
   728
sl@0
   729
inline void DMMCSession::SetupCIMUpdateAcq()			
sl@0
   730
/**
sl@0
   731
 * Set up the session to perform the CIM_UPDATE_ACQ macro as outlined by the MMCA.
sl@0
   732
 * 
sl@0
   733
 * Having set-up the session for this operation, the client must then engage the session 
sl@0
   734
 * before the operation can commence. The CIM_UPDATE_ACQ macro starts an identification 
sl@0
   735
 * cycle of a card stack. New cards are initialised but old cards keep their configuration. 
sl@0
   736
 * The process ends with all compatible cards being moved to their stand-by state.
sl@0
   737
 */
sl@0
   738
	{iSessionID = ECIMUpdateAcq;}
sl@0
   739
sl@0
   740
inline void DMMCSession::SetupCIMInitStack()
sl@0
   741
/**
sl@0
   742
 * Set up the session to perform the CIM_INIT_STACK macro as outlined by the MMCA.
sl@0
   743
 *
sl@0
   744
 * Having set-up the session for this operation, the client must then engage the session 
sl@0
   745
 * before the operation can commence. The CIM_UPDATE_ACQ macro sends all cards to the idle 
sl@0
   746
 * state and then executes the update acquisition sequence.
sl@0
   747
 */
sl@0
   748
	{iSessionID = ECIMInitStack;}
sl@0
   749
sl@0
   750
inline void DMMCSession::SetupCIMCheckStack()			
sl@0
   751
/**
sl@0
   752
 * Set up the session to perform the CIM_CHECK_STACK macro as outlined by the MMCA.
sl@0
   753
 *
sl@0
   754
 * Having set-up the session for this operation, the client must then engage the session 
sl@0
   755
 * before the operation can commence. The CIM_CHECK_STACK macro attempts to read the CSD 
sl@0
   756
 * of each active card in the stack, updating the data held by the stack controller for each card.
sl@0
   757
 */
sl@0
   758
	{iSessionID = ECIMCheckStack;}
sl@0
   759
sl@0
   760
inline void DMMCSession::SetupCIMSetupCard()			
sl@0
   761
/**
sl@0
   762
 * Set up the session to perform the CIM_SETUP_CARD macro as outlined by the MMCA.
sl@0
   763
 *
sl@0
   764
 * Having set-up the session for this operation, the client must then engage the session 
sl@0
   765
 * before the operation can commence. The CIM_SETUP_CARD macro selects a particular card 
sl@0
   766
 * for data transfer and reads back its CSD.
sl@0
   767
 */
sl@0
   768
	{iSessionID = ECIMSetupCard;}
sl@0
   769
sl@0
   770
inline void DMMCSession::SetupCIMLockStack()			
sl@0
   771
/**
sl@0
   772
 * Set up the session to lock the stack for this session only (so that only this session 
sl@0
   773
 * can be engaged upon it). This prevents any other sessions from being engaged upon it. 
sl@0
   774
 *
sl@0
   775
 * Having set-up the session for this operation, the client must then engage this session before 
sl@0
   776
 * the stack becomes locked. In fact, no card bus activity results when this session is engaged. 
sl@0
   777
 * However, because it may take some time for the Controller to be able to lock the stack for this 
sl@0
   778
 * session, the mechanism for locking the stack still involves submitting a session.
sl@0
   779
 * When issuing a series of application specific commands, the client will want to lock the stack, 
sl@0
   780
 * preventing any other client from generating bus activity during this period. This is accomplished 
sl@0
   781
 * by issuing this function  and then engaging that session. If successful, the stack will be locked 
sl@0
   782
 * until the DMMCSession::UnlockStack() function is issued.
sl@0
   783
 */
sl@0
   784
	{iSessionID = ECIMLockStack;}
sl@0
   785
sl@0
   786
inline void DMMCSession::UnlockStack()	
sl@0
   787
/**
sl@0
   788
 * Unlock this session as the locking session for the stack, the stack having previously been locked 
sl@0
   789
 * to this session using the DMMCSession. 
sl@0
   790
 */
sl@0
   791
	{if(iStackP != NULL) iStackP->UnlockStack(this);}
sl@0
   792
sl@0
   793
inline void DMMCSession::SetupCIMInitStackAfterUnlock()
sl@0
   794
/**
sl@0
   795
 * Set up the session to perform the second stage of initialisation after unlocking of the card
sl@0
   796
 *
sl@0
   797
 * This is provided to allow types of cards (particularly SD cards) to access the SD_STATUS and
sl@0
   798
 * associated registers during initialisation, which are only available once the card is unlocked. 
sl@0
   799
 */
sl@0
   800
	{
sl@0
   801
	iCardP = NULL;
sl@0
   802
	iSessionID = ECIMInitStackAfterUnlock;
sl@0
   803
	}
sl@0
   804
sl@0
   805
inline void DMMCSession::SetupCIMAutoUnlock()
sl@0
   806
/**
sl@0
   807
 * Set up the session to perform auto-unlocking of the card
sl@0
   808
 */
sl@0
   809
	{iSessionID = ECIMAutoUnlock;}
sl@0
   810
sl@0
   811
inline void DMMCSession::Stop()			
sl@0
   812
/**
sl@0
   813
 * Signal the session to complete immediately with KErrAbort
sl@0
   814
 * (i.e. the session end call-back function will be called).
sl@0
   815
 */
sl@0
   816
	{if(iStackP != NULL) iStackP->Stop(this);}
sl@0
   817
sl@0
   818
inline void DMMCSession::Abort()		
sl@0
   819
/**
sl@0
   820
 * Signal the session to abort immediately with no completion
sl@0
   821
 * (i.e. the session end call-back function will not be called).
sl@0
   822
 */
sl@0
   823
	{if(iStackP != NULL) iStackP->Abort(this);}
sl@0
   824
sl@0
   825
inline TMMCSessionTypeEnum DMMCSession::SessionID() const	
sl@0
   826
/**
sl@0
   827
 * Returns the current session type for this session.
sl@0
   828
 * 
sl@0
   829
 * @return A TMMCSessionTypeEnum describing the sesion type
sl@0
   830
 */
sl@0
   831
	{return(iSessionID);}
sl@0
   832
sl@0
   833
inline DMMCStack* DMMCSession::StackP() const	
sl@0
   834
/**
sl@0
   835
 * Returns the DMMCStack object serving this session.
sl@0
   836
 *
sl@0
   837
 * @return A pointer to the DMMCStack object serving this session.
sl@0
   838
 */
sl@0
   839
	{return(iStackP);}
sl@0
   840
sl@0
   841
inline TMMCard* DMMCSession::CardP() const
sl@0
   842
/**
sl@0
   843
 * Returns a pointer to the TMMCard object which this session is set to use.
sl@0
   844
 *
sl@0
   845
 * @return A pointer to the TMMCard object which this session is set to use.
sl@0
   846
 */
sl@0
   847
	{return(iCardP);}
sl@0
   848
sl@0
   849
inline TBool DMMCSession::IsEngaged() const		
sl@0
   850
/**
sl@0
   851
 * Return ETrue if this session is currently queued on the DMMCStack object serving this session.
sl@0
   852
 *
sl@0
   853
 * @return ETrue if this session is currently queued, otherwise EFalse
sl@0
   854
 */
sl@0
   855
	{return((iState & KMMCSessStateEngaged) != 0);}
sl@0
   856
sl@0
   857
inline TMMCErr DMMCSession::MMCExitCode() const			
sl@0
   858
/**
sl@0
   859
 * Returns the last MMC specific error code returned to this session.
sl@0
   860
 *
sl@0
   861
 * @return a TMMCErr describing the MMC specific error code
sl@0
   862
 */
sl@0
   863
	{return(iMMCExitCode);}
sl@0
   864
sl@0
   865
inline TMMCStatus DMMCSession::LastStatus() const		
sl@0
   866
/**
sl@0
   867
 * Returns the last status information from the card (i.e. the last R1 response received from the card).
sl@0
   868
 *
sl@0
   869
 * @return a TMMCStatus describing the status information
sl@0
   870
 */
sl@0
   871
	{return(iLastStatus);}
sl@0
   872
sl@0
   873
inline TUint32 DMMCSession::BytesTransferred() const	
sl@0
   874
/**
sl@0
   875
 * Returns the total number of bytes transferred in this session.
sl@0
   876
 *
sl@0
   877
 * @return the total number of bytes transferred in this session.
sl@0
   878
 */
sl@0
   879
	{return(iBytesTransferred);}
sl@0
   880
sl@0
   881
inline TUint8* DMMCSession::ResponseP()			
sl@0
   882
/**
sl@0
   883
 * Returns a pointer to a buffer containing the last command response received in this session. 
sl@0
   884
 *
sl@0
   885
 * @return a buffer with format TUint8[KMMCMaxResponseLength] (where KMMCMaxResponseLength = 16).
sl@0
   886
 */
sl@0
   887
	{return(&iCommand[iCmdSP].iResponse[0]);}
sl@0
   888
sl@0
   889
inline TUint32 DMMCSession::EffectiveModes() const
sl@0
   890
/**
sl@0
   891
 * Returns the modes which the DMMCStack object serving this session will consider as effective. 
sl@0
   892
 *
sl@0
   893
 * @return the modes which the DMMCStack object serving this session will consider as effective
sl@0
   894
 */
sl@0
   895
	{if(iStackP != NULL) return(iStackP->EffectiveModes(iConfig)); return(0);}
sl@0
   896
sl@0
   897
inline void DMMCSession::Block(TUint32 aFlag)
sl@0
   898
	{iStackP->Block(this, aFlag);}
sl@0
   899
sl@0
   900
inline void DMMCSession::UnBlock(TUint32 aFlag, TMMCErr anExitCode)
sl@0
   901
	{iStackP->UnBlock(this, aFlag, anExitCode);}
sl@0
   902
sl@0
   903
inline void DMMCSession::SwapMe()
sl@0
   904
	{iState |= KMMCSessStateDoReSchedule;}
sl@0
   905
sl@0
   906
inline void DMMCSession::ResetCommandStack()
sl@0
   907
/**
sl@0
   908
 * Resets the command stack, setting the stack pointer to zero.
sl@0
   909
 */
sl@0
   910
	{iCmdSP = 0;}
sl@0
   911
sl@0
   912
/**
sl@0
   913
Increments the command stack pointer.
sl@0
   914
sl@0
   915
@panic PBUS-MMC 6 if the stack pointer lies outside the bounds of the stack.
sl@0
   916
*/
sl@0
   917
inline void DMMCSession::PushCommandStack()
sl@0
   918
	{
sl@0
   919
	__ASSERT_ALWAYS(TUint(++iCmdSP)<KMaxMMCCommandStackDepth,
sl@0
   920
		DMMCSocket::Panic(DMMCSocket::EMMCCommandStack));
sl@0
   921
	}
sl@0
   922
sl@0
   923
/**
sl@0
   924
Decrements the command stack pointer.
sl@0
   925
 
sl@0
   926
@panic PBUS-MMC 6 if the stack pointer lies outside the bounds of the stack.
sl@0
   927
*/
sl@0
   928
inline void DMMCSession::PopCommandStack()
sl@0
   929
	{
sl@0
   930
	__ASSERT_ALWAYS(--iCmdSP>=0,
sl@0
   931
		DMMCSocket::Panic(DMMCSocket::EMMCCommandStack));
sl@0
   932
	}
sl@0
   933
sl@0
   934
inline TMMCCommandDesc& DMMCSession::Command()
sl@0
   935
/**
sl@0
   936
 * Returns the current command, as referred to by the stack pointer.
sl@0
   937
 * @return A TMMCCommandDesc reference, containing the current command.
sl@0
   938
 */
sl@0
   939
	{return(iCommand[iCmdSP]);}
sl@0
   940
sl@0
   941
sl@0
   942
//
sl@0
   943
// Data transfer macros setup (block mode)
sl@0
   944
//
sl@0
   945
sl@0
   946
inline void DMMCSession::SetupCIMReadBlock(TMMCArgument aBlockAddr, TUint8* aMemoryP, TUint32 aBlocks)
sl@0
   947
/**
sl@0
   948
 * Sets the session up to perform the CIM_READ_BLOCK macro as outlined by the MMCA. 
sl@0
   949
 * Having set-up the session for this operation, the client must then engage the session before the operation can commence. 
sl@0
   950
 * The CIM_READ_BLOCK macro reads a single block from the card. It starts by setting the block length (CMD16) to 512 Bytes. 
sl@0
   951
 * It then reads 'aBlocks' blocks of data from the card at offset 'aBlockAddr' on the card into system memory starting at 
sl@0
   952
 * address 'aMemoryP'.
sl@0
   953
 *
sl@0
   954
 * @param aBlockAddr Contains offset (in blocks) to the block to be read from the card
sl@0
   955
 * @param aMemoryP host destination address
sl@0
   956
 * @param aBlocks The number of blocks to read from the card
sl@0
   957
 */
sl@0
   958
	{
sl@0
   959
	ResetCommandStack();
sl@0
   960
	FillCommandArgs(aBlockAddr, aBlocks << KMMCardHighCapBlockSizeLog2, aMemoryP, KMMCardHighCapBlockSize);
sl@0
   961
	Command().iFlags |= KMMCCmdFlagBlockAddress;
sl@0
   962
	iSessionID = (aBlocks > 1)? ECIMReadMBlock : ECIMReadBlock;
sl@0
   963
	}
sl@0
   964
	
sl@0
   965
inline void DMMCSession::SetupCIMWriteBlock(TMMCArgument aBlockAddr, TUint8* aMemoryP, TUint32 aBlocks)
sl@0
   966
/**
sl@0
   967
 * Set up the session to perform the CIM_WRITE_BLOCK macro as outlined by the MMCA.
sl@0
   968
 * Having set-up the session for this operation, the client must then engage the session before the operation can commence. 
sl@0
   969
 * The CIM_WRITE_BLOCK macro writes a single block to the card. It starts by setting the block length (CMD16) to 512 Bytes.
sl@0
   970
 * It then writes 'aBlocks' block of data to the card at offset 'aBlockAddr' on the card reading from system memory starting 
sl@0
   971
 * at address 'aMemoryP'.
sl@0
   972
 *
sl@0
   973
 * @param aBlockAddr Contains offset to the block (in blocks) to be written on the card
sl@0
   974
 * @param aMemoryP Host source address
sl@0
   975
 * @param aBlocks The number of blocks to write to the card
sl@0
   976
 */
sl@0
   977
	{
sl@0
   978
	ResetCommandStack();
sl@0
   979
	FillCommandArgs(aBlockAddr, aBlocks << KMMCardHighCapBlockSizeLog2, aMemoryP, KMMCardHighCapBlockSize);
sl@0
   980
	Command().iFlags |= KMMCCmdFlagBlockAddress;
sl@0
   981
	iSessionID = (aBlocks > 1)? ECIMWriteMBlock : ECIMWriteBlock;
sl@0
   982
	}
sl@0
   983
sl@0
   984
inline void DMMCSession::SetupCIMEraseMSector(TMMCArgument aBlockAddr, TUint32 aBlocks)
sl@0
   985
/**
sl@0
   986
 * Set up the session to perform the CIM_ERASE_SECTOR macro broadly as outlined by the MMCA. 
sl@0
   987
 * However, the macro only performs a sector erase of a contiguous area and doesn't support the un-tagging of particular sectors 
sl@0
   988
 * within the initial tagged area. Having set-up the session for this operation, the client must then engage the session before 
sl@0
   989
 * the operation can commence. 
sl@0
   990
 *
sl@0
   991
 * The CIM_ERASE_SECTOR macro erases a range of sectors on the card starting at offset (in blocks) 'aBlockAddr' on the card and ending at offset 
sl@0
   992
 * 'aBlockAddr'+'aBlocks' (in blocks). The entire area specified must lie within a single erase group. (The erase group size can be read from the CSD).
sl@0
   993
 * The tag sector start command (CMD32) is first issued setting the address of the first sector to be erased. 
sl@0
   994
 * This is followed by the tag sector end command (CMD33) setting the address of the last sector to be erased. Now that the erase 
sl@0
   995
 * sectors are tagged, the erase command (CMD38) is sent followed by a send status command (CMD13) to read any additional status 
sl@0
   996
 * information from the card.
sl@0
   997
 *
sl@0
   998
 * @param aBlockAddr Contains offset (in blocks) to the first block to be erased
sl@0
   999
 * @param aBlocks Total number of blocks to erase
sl@0
  1000
 */
sl@0
  1001
	{
sl@0
  1002
	ResetCommandStack();
sl@0
  1003
	FillCommandArgs(aBlockAddr, aBlocks << KMMCardHighCapBlockSizeLog2, NULL, 0);
sl@0
  1004
	Command().iFlags |= KMMCCmdFlagBlockAddress;
sl@0
  1005
	iSessionID = ECIMEraseSector;
sl@0
  1006
	}
sl@0
  1007
sl@0
  1008
inline void DMMCSession::SetupCIMEraseMGroup(TMMCArgument aBlockAddr, TUint32 aBlocks)
sl@0
  1009
/**
sl@0
  1010
 * Set up the session to perform the CIM_ERASE_GROUP macro broadly as outlined by the MMCA. 
sl@0
  1011
 * However, the macro only performs an erase group erase of a contiguous area and doesn't support the un-tagging of particular 
sl@0
  1012
 * erase groups within the initial tagged area. Having set-up the session for this operation, the client must then engage the 
sl@0
  1013
 * session before the operation can commence. 
sl@0
  1014
 *
sl@0
  1015
 * The CIM_ERASE_GROUP macro erases a range of erase groups on the card starting at offset (in blocks) 'aDevAddr' on the card and ending at 
sl@0
  1016
 * offset 'aBlockAddr'+'aBlocks' (in blocks). The tag ease group start command (CMD35) is first issued setting 
sl@0
  1017
 * the address of the first erase group to be erased. This is followed by the tag erase group end command (CMD36) setting the 
sl@0
  1018
 * address of the last erase group to be erased. Now that the erase groups are tagged, the erase command (CMD38) is sent followed 
sl@0
  1019
 * by a send status command (CMD13) to read any additional status information from the card.
sl@0
  1020
 *
sl@0
  1021
 * @param aBlockAddr Contains offset (in blocks) to the first block to be erased
sl@0
  1022
 * @param aBlocks Total number of blocks to erase
sl@0
  1023
 */
sl@0
  1024
	{
sl@0
  1025
	ResetCommandStack();
sl@0
  1026
	FillCommandArgs(aBlockAddr, aBlocks << KMMCardHighCapBlockSizeLog2, NULL, 0);
sl@0
  1027
	Command().iFlags |= KMMCCmdFlagBlockAddress;
sl@0
  1028
	iSessionID = ECIMEraseGroup;
sl@0
  1029
	}
sl@0
  1030
sl@0
  1031
inline void DMMCSession::EnableDoubleBuffering(TUint32 aNumBlocks)
sl@0
  1032
/**
sl@0
  1033
 * When called before a data transfer operation is engaged, specifies that the data 
sl@0
  1034
 * transfer operation is to be double-buffered.
sl@0
  1035
 *
sl@0
  1036
 * @param aNumBlocks The number of blocks to transfer per double-buffer transfer.
sl@0
  1037
 *
sl@0
  1038
 * @internalTechnology
sl@0
  1039
 */
sl@0
  1040
	{
sl@0
  1041
	__KTRACE_OPT(KPBUS1, Kern::Printf("++ DMMCSession::EnableDoubleBuffering(%d Blocks)", aNumBlocks))
sl@0
  1042
	
sl@0
  1043
	//__ASSERT_ALWAYS(iSessionID == ECIMWriteMBlock || iSessionID == ECIMReadMBlock, DMMCSocket::Panic(DMMCSocket::EMMCInvalidDBCommand));
sl@0
  1044
sl@0
  1045
	Command().iBlockLength &= 0x0000FFFF;
sl@0
  1046
	Command().iBlockLength |= aNumBlocks << 16;
sl@0
  1047
	Command().iFlags       |= KMMCCmdFlagDoubleBuffer;
sl@0
  1048
	}
sl@0
  1049
sl@0
  1050
inline void DMMCSession::SetDataTransferCallback(TMMCCallBack& aCallback)
sl@0
  1051
/**
sl@0
  1052
 * Registers the data transfer callback function to be called when more data is required by the PSL,
sl@0
  1053
 * typically while the hardware is busy performing a DMA transfer.
sl@0
  1054
 *
sl@0
  1055
 * @param aCallback The callback function.
sl@0
  1056
 *
sl@0
  1057
 * @internalTechnology
sl@0
  1058
 */
sl@0
  1059
	{
sl@0
  1060
	__KTRACE_OPT(KPBUS1, Kern::Printf("++ DMMCSession::SetDataTransferCallback"));
sl@0
  1061
sl@0
  1062
	iDataTransferCallback = aCallback;
sl@0
  1063
	}
sl@0
  1064
sl@0
  1065
inline void DMMCSession::MoreDataAvailable(TUint32 aNumBlocks, TUint8* aMemoryP, TInt aError)
sl@0
  1066
/**
sl@0
  1067
 * Called by the MMC Media Driver after copying data from the client thread to indicate to the
sl@0
  1068
 * PSL that data is available in the next data buffer.  Should be called at the end of the
sl@0
  1069
 * data transfer callback function, at which point the stack will be unblocked enabling the
sl@0
  1070
 * next data transfer to take place.
sl@0
  1071
 *
sl@0
  1072
 * @param aNumBlocks The number of blocks available in the buffer.
sl@0
  1073
 * @param aMemoryP   A pointer to the host memory containing the next blocks of data.
sl@0
  1074
 * @param aError     The result of the data callback.
sl@0
  1075
 *
sl@0
  1076
 * @internalTechnology
sl@0
  1077
 */
sl@0
  1078
	{
sl@0
  1079
	__KTRACE_OPT(KPBUS1, Kern::Printf("++ DMMCSession::MoreDataAvailable(%d blocks, %08x, %d)", aNumBlocks, aMemoryP, aError));
sl@0
  1080
	
sl@0
  1081
	Command().iDataMemoryP = aMemoryP;
sl@0
  1082
	EnableDoubleBuffering(aNumBlocks);
sl@0
  1083
sl@0
  1084
	iStackP->UnBlock(this, KMMCBlockOnMoreData, aError == KErrNone ? KMMCErrNone : KMMCErrGeneral);
sl@0
  1085
	}
sl@0
  1086
sl@0
  1087
inline TBool DMMCSession::RequestMoreData()
sl@0
  1088
/**
sl@0
  1089
 * Called by the PSL to request the next blocks of data to be transferred from the media driver
sl@0
  1090
 * to the PSL. This would typically be called while the hardware is busy transferring the current
sl@0
  1091
 * block of data, allowing the media driver to copy data from the client in parallel.
sl@0
  1092
 *
sl@0
  1093
 * This method will set the state machine to block on KMMCBlockOnMoreData, so the PSL must block
sl@0
  1094
 * the state machine using an SMF_WAITS (or equivalent). When the Media Driver has populated the
sl@0
  1095
 * next buffer, the current command descriptor will be updated and the state machine unblocked.
sl@0
  1096
 *
sl@0
  1097
 * @return ETrue if all conditions are met to perform double-buffering (ie - command is enabled
sl@0
  1098
 *				 for double-buffering and the last transfer has not already been satisfied). If
sl@0
  1099
 *				 successful, upon exit the state machine will be blocked with the KMMCBlockOnMOreData
sl@0
  1100
 *				 condition and the Media Driver's data transfer callback invoked.
sl@0
  1101
 *
sl@0
  1102
 *
sl@0
  1103
 */
sl@0
  1104
	{
sl@0
  1105
	__KTRACE_OPT(KPBUS1, Kern::Printf("++ DMMCSession::RequestMoreData()"));
sl@0
  1106
	
sl@0
  1107
	if(Command().IsDoubleBuffered() && (Command().iBytesDone + Command().BufferLength() < Command().iTotalLength))
sl@0
  1108
		{
sl@0
  1109
		iStackP->Block(this, KMMCBlockOnMoreData);
sl@0
  1110
		iDataTransferCallback.CallBack();
sl@0
  1111
		return(ETrue);
sl@0
  1112
		}
sl@0
  1113
sl@0
  1114
	return(EFalse);
sl@0
  1115
	}
sl@0
  1116
sl@0
  1117
sl@0
  1118
//	--------  class DMMCSocket  --------
sl@0
  1119
sl@0
  1120
inline TBool DMMCSocket::SupportsDoubleBuffering()
sl@0
  1121
/**
sl@0
  1122
 * @return ETrue If the PSL supports double buffering, as specified by the 
sl@0
  1123
 *		   PSL by setting the ESupportsDoubleBuffering flag in ::MachineInfo.
sl@0
  1124
 *
sl@0
  1125
 * @internalTechnology
sl@0
  1126
 */
sl@0
  1127
	{
sl@0
  1128
	return ((iMachineInfo.iFlags & TMMCMachineInfo::ESupportsDoubleBuffering) ? (TBool)ETrue : (TBool)EFalse);
sl@0
  1129
	}
sl@0
  1130
sl@0
  1131
inline TUint32 DMMCSocket::MaxDataTransferLength()
sl@0
  1132
/**
sl@0
  1133
 * @return The maximum length that the PSL supports in a single data transfer.
sl@0
  1134
 *		   Returns Zero if the PSL has no limitation on the maximum length of data transfer.
sl@0
  1135
 *
sl@0
  1136
 * @internalTechnology
sl@0
  1137
 */
sl@0
  1138
	{
sl@0
  1139
    	TUint32 r = (iMachineInfo.iFlags & TMMCMachineInfo::EMaxTransferLength_16M) >> 8;
sl@0
  1140
	if (r)
sl@0
  1141
        	r = 0x20000 << r; 
sl@0
  1142
    
sl@0
  1143
	return r;
sl@0
  1144
	}
sl@0
  1145
sl@0
  1146
inline TUint32 DMMCSocket::DmaAlignment()
sl@0
  1147
/**
sl@0
  1148
 * @return Byte alignment required by the DMA Controller.
sl@0
  1149
 * 		   e.g. 16 Bit addressing scheme equates to 2 byte alignment.
sl@0
  1150
 * 
sl@0
  1151
 * @internalTechnology
sl@0
  1152
 */
sl@0
  1153
	{
sl@0
  1154
	const TUint32 DmaAddrMsk =	TMMCMachineInfo::EDma8BitAddressing |
sl@0
  1155
								TMMCMachineInfo::EDma16BitAddressing |
sl@0
  1156
								TMMCMachineInfo::EDma32BitAddressing |
sl@0
  1157
								TMMCMachineInfo::EDma64BitAddressing;
sl@0
  1158
	return ((iMachineInfo.iFlags & DmaAddrMsk) >> 3);
sl@0
  1159
	}
sl@0
  1160
sl@0
  1161
//	--------  class DMMCStack  --------
sl@0
  1162
sl@0
  1163
inline void DMMCStack::ReportPowerUp()
sl@0
  1164
/** 
sl@0
  1165
 * Called by the variant layer to indicate that a
sl@0
  1166
 * power up operation has successfully completed.
sl@0
  1167
 */
sl@0
  1168
	{iPoweredUp = ETrue;}
sl@0
  1169
sl@0
  1170
inline void DMMCStack::ReportPowerDown()
sl@0
  1171
/** 
sl@0
  1172
 * Indicates that that power down operation has successfully completed.
sl@0
  1173
 * Following power down, the stack enters a state pending the next power up operation.
sl@0
  1174
 */
sl@0
  1175
	{iPoweredUp = EFalse; iStackState |= KMMCStackStateInitPending;}
sl@0
  1176
sl@0
  1177
inline void DMMCStack::Reset()
sl@0
  1178
/** 
sl@0
  1179
 * Resets the stack by aborting all current requests.
sl@0
  1180
 */
sl@0
  1181
	{iAbortAll = ETrue; Scheduler(iAbortReq);}
sl@0
  1182
sl@0
  1183
inline void DMMCStack::CompleteAll(TMMCErr aCode)
sl@0
  1184
/** 
sl@0
  1185
 * Stops and dequeues all sessions queued on this stack (including those queued by other clients). 
sl@0
  1186
 * Each of the sessions affected will complete immediately with error code 'aCode' (i.e. the session 
sl@0
  1187
 * end call-back function will be called).
sl@0
  1188
 * @param aCode The MMC error code to be returned.
sl@0
  1189
 */
sl@0
  1190
	{iCompleteAllExitCode = aCode; Scheduler(iCompReq);}
sl@0
  1191
sl@0
  1192
inline TUint DMMCStack::MaxCardsInStack() const
sl@0
  1193
/** 
sl@0
  1194
 * Returns the maximum number of MultiMediaCards which could ever be present in this stack. 
sl@0
  1195
 * i.e. the total number of  physical card slots associated with this stack on this platform.
sl@0
  1196
 * (This is initialised from the DMMCSocket::TotalSupportedCards)
sl@0
  1197
 * @return The number of supported cards.
sl@0
  1198
 */
sl@0
  1199
	{return( iMaxCardsInStack );}
sl@0
  1200
												
sl@0
  1201
inline TMMCard* DMMCStack::CardP(TUint aCardNumber)
sl@0
  1202
/** 
sl@0
  1203
 * Returns a pointer to the specified card.
sl@0
  1204
 * @param aCardNumber The card number.
sl@0
  1205
 * @return A pointer to the specified card.
sl@0
  1206
 */
sl@0
  1207
	{return( (aCardNumber<iMaxCardsInStack) ? (iCardArray->CardP(aCardNumber)) : NULL );}
sl@0
  1208
sl@0
  1209
inline DMMCSocket* DMMCStack::MMCSocket() const
sl@0
  1210
/** 
sl@0
  1211
 * Returns a pointer to associated socket object.
sl@0
  1212
 * @return A pointer to the associated socket.
sl@0
  1213
 */
sl@0
  1214
	{return( iSocket );}
sl@0
  1215
sl@0
  1216
inline TMMCPasswordStore* DMMCStack::PasswordStore() const
sl@0
  1217
/** 
sl@0
  1218
 * Returns a pointer to the associated password store.
sl@0
  1219
 * @return A pointer to the associated password store.
sl@0
  1220
 */
sl@0
  1221
	{return( iSocket->iPasswordStore );}
sl@0
  1222
sl@0
  1223
inline TBool DMMCStack::InitStackInProgress() const
sl@0
  1224
/**
sl@0
  1225
 * Reports the initialisation state of the stack (i.e is the CIM_INIT_STACK macro in progress).
sl@0
  1226
 * @return ETrue if the stack is being initialised, EFalse otherwise.
sl@0
  1227
 */
sl@0
  1228
	{return( (iStackState & KMMCStackStateInitInProgress) != 0 );}
sl@0
  1229
sl@0
  1230
inline TBool DMMCStack::HasSessionsQueued() const
sl@0
  1231
/**
sl@0
  1232
 * Reports if any of the session queues have submitted session engaged.
sl@0
  1233
 * @return ETrue if there are any sessions engaged on this stack, EFalse otherwise.
sl@0
  1234
 */
sl@0
  1235
	{return((iWorkSet.Size()!=0) || (iReadyQueue.Size()!=0) || (iEntryQueue.Size()!=0));}
sl@0
  1236
sl@0
  1237
inline TBool DMMCStack::HasCardsPresent()
sl@0
  1238
/**
sl@0
  1239
 * Reports if any cards are present on the stack
sl@0
  1240
 * @return ETrue if there are any sessions engaged on this stack, EFalse otherwise.
sl@0
  1241
 */
sl@0
  1242
	{
sl@0
  1243
	for (TUint i=0 ; i<iMaxCardsInStack ; i++)
sl@0
  1244
		if (CardDetect(i)) return(ETrue);
sl@0
  1245
	return(EFalse);
sl@0
  1246
	}
sl@0
  1247
sl@0
  1248
inline TBool DMMCStack::StackRunning() const
sl@0
  1249
/**
sl@0
  1250
 * Reports whether the stack is currently running (i.e. running in another context from the caller)
sl@0
  1251
 * @return ETrue if the stack is currently running
sl@0
  1252
 */
sl@0
  1253
	{return( (iStackState & KMMCStackStateRunning) != 0 );}
sl@0
  1254
sl@0
  1255
inline void DMMCStack::BufferInfo(TUint8*& aBuf, TInt& aBufLen, TInt& aMinorBufLen)
sl@0
  1256
/**
sl@0
  1257
 * Calls the variant-layer function GetBufferInfo() to retrieve the DMA-capable buffer start and length
sl@0
  1258
 * and then calculates the minor buffer length (which is situated at the start) - 
sl@0
  1259
 * this is the maximum of a sector size (512 bytes) and the biggest block size of
sl@0
  1260
 * any card in the stack.
sl@0
  1261
sl@0
  1262
 * @param aBuf A pointer to the allocated buffer
sl@0
  1263
 * @param aBufLen The length of the allocated buffer
sl@0
  1264
 * @param aMinorBufLen The length of the minor buffer
sl@0
  1265
 */
sl@0
  1266
	{
sl@0
  1267
	aBuf = iPSLBuf;
sl@0
  1268
	aBufLen = iPSLBufLen;
sl@0
  1269
	aMinorBufLen = iMinorBufLen;
sl@0
  1270
	}
sl@0
  1271
sl@0
  1272
sl@0
  1273
inline TInt DMMCStack::DemandPagingInfo(TDemandPagingInfo& aInfo)
sl@0
  1274
	{
sl@0
  1275
	MDemandPagingInfo* demandPagingInterface = NULL;
sl@0
  1276
	GetInterface(KInterfaceDemandPagingInfo, (MInterface*&) demandPagingInterface);
sl@0
  1277
	if (demandPagingInterface)
sl@0
  1278
		return demandPagingInterface->DemandPagingInfo(aInfo);
sl@0
  1279
	else
sl@0
  1280
		return KErrNotSupported;
sl@0
  1281
	}
sl@0
  1282
sl@0
  1283
sl@0
  1284
inline void DMMCStack::CancelSession(DMMCSession* aSession)
sl@0
  1285
	{
sl@0
  1286
	GetInterface(KInterfaceCancelSession, (MInterface*&) aSession);
sl@0
  1287
	}
sl@0
  1288
sl@0
  1289
inline TRCA DMMCStack::SelectedCard() const
sl@0
  1290
/**
sl@0
  1291
 * Returns the Relative Card Address (RCA) of the currently selected card
sl@0
  1292
 * @return A TRCA object containing the Relative Card Address.
sl@0
  1293
 */
sl@0
  1294
	{
sl@0
  1295
	return iSelectedCard;
sl@0
  1296
	}
sl@0
  1297
sl@0
  1298
inline TMMCStateMachine& DMMCStack::Machine()
sl@0
  1299
/**
sl@0
  1300
 * Returns the current sessions MMC State Machine object.
sl@0
  1301
 * @return A TMMCStateMachine reference to the current sessions State Machine object.
sl@0
  1302
 */
sl@0
  1303
	{return( iSessionP->iMachine );}
sl@0
  1304
sl@0
  1305
inline TMMCBusConfig& DMMCStack::BusConfig()
sl@0
  1306
/**
sl@0
  1307
 * Returns the current bus configuration.
sl@0
  1308
 * @return A TMMCBusConfig reference describing current sessions bus configuration.
sl@0
  1309
 */
sl@0
  1310
	{return( iConfig.iBusConfig );}
sl@0
  1311
sl@0
  1312
inline TMMCBusConfig& DMMCStack::MasterBusConfig()
sl@0
  1313
/**
sl@0
  1314
 * Returns the master bus configuration.
sl@0
  1315
 * @return A TMMCBusConfig reference describing the master bus configuration.
sl@0
  1316
 */
sl@0
  1317
	{return( iMasterConfig.iBusConfig );}
sl@0
  1318
sl@0
  1319
inline TMMCCommandDesc& DMMCStack::Command()
sl@0
  1320
/**
sl@0
  1321
 * Returns the current sessions command description.
sl@0
  1322
 * @return A TMMCCommandDesc reference describing current sessions command.
sl@0
  1323
 */
sl@0
  1324
	{return( iSessionP->Command() );}
sl@0
  1325
sl@0
  1326
inline DMMCSession& DMMCStack::Session()
sl@0
  1327
/**
sl@0
  1328
 * Returns the current session object.
sl@0
  1329
 * @return A reference to the current DMMCSession object.
sl@0
  1330
 */
sl@0
  1331
	{return(*iSessionP);}
sl@0
  1332
sl@0
  1333
inline void DMMCStack::BlockCurrentSession(TUint32 aFlag)
sl@0
  1334
/**
sl@0
  1335
 * Indicates that the current session is to be blocked (ie - waiting on an asynchronous response such as interrupt).
sl@0
  1336
 * The state machine will only unblock when an unblock request with the matching argument is called.  
sl@0
  1337
 * In the PSL level of the Controller you should always use KMMCBlockOnASSPFunction as the argument.
sl@0
  1338
 * @param aFlag Bitmask describing the reason for blocking.
sl@0
  1339
 */
sl@0
  1340
	{Block(iSessionP,aFlag);}
sl@0
  1341
sl@0
  1342
inline void DMMCStack::UnBlockCurrentSession(TUint32 aFlag, TMMCErr anExitCode)
sl@0
  1343
/**
sl@0
  1344
 * Indicates that the current session is to be unblocked (ie - an a asynchronous operation has completed).
sl@0
  1345
 * The state machine will only unblock when an unblock request with the matching argument is called.  
sl@0
  1346
 * @param aFlag Bitmask describing the reason for unblocking.
sl@0
  1347
 * @param anExitCode KMMCErrNone if successful, otherwise a standard TMMCErr code.
sl@0
  1348
 */
sl@0
  1349
	{UnBlock(iSessionP,aFlag,anExitCode);}
sl@0
  1350
sl@0
  1351
inline void DMMCStack::ReportInconsistentBusState()
sl@0
  1352
/**
sl@0
  1353
 * Indicates that something has gone wrong, so the stack needs re-initialising.
sl@0
  1354
 */
sl@0
  1355
	{iStackState |= KMMCStackStateBusInconsistent;}
sl@0
  1356
sl@0
  1357
inline void DMMCStack::ReportASSPEngaged()
sl@0
  1358
/**
sl@0
  1359
 * Called by the PSL to indicate that a session has been engaged.
sl@0
  1360
 */
sl@0
  1361
	{iSessionP->iState |= KMMCSessStateASSPEngaged;}
sl@0
  1362
sl@0
  1363
inline void DMMCStack::ReportASSPDisengaged()
sl@0
  1364
/**
sl@0
  1365
 * Called by the PSL to indicate that a session has completed or has been aborted.
sl@0
  1366
 */
sl@0
  1367
	{iSessionP->iState &= ~KMMCSessStateASSPEngaged;}
sl@0
  1368
sl@0
  1369
inline TRCA DMMCStack::CurrentSessCardRCA()
sl@0
  1370
/**
sl@0
  1371
 * Returns the Relative Card Address (RCA) in use by the current session.
sl@0
  1372
 * @return A TRCA object containing the Relative Card Address.
sl@0
  1373
 */
sl@0
  1374
	{return(iSessionP->CardRCA());}
sl@0
  1375
sl@0
  1376
sl@0
  1377
inline TMMCErr DMMCStack::BaseModifyCardCapabilitySMST( TAny* aStackP )
sl@0
  1378
	{ return( static_cast<DMMCStack *>(aStackP)->DMMCStack::ModifyCardCapabilitySM() ); }
sl@0
  1379
sl@0
  1380
inline TMMCErr DMMCStack::InitCurrentCardAfterUnlockSMST( TAny* aStackP )
sl@0
  1381
	{ return( static_cast<DMMCStack *>(aStackP)->DMMCStack::InitStackAfterUnlockSM() ); }
sl@0
  1382
sl@0
  1383
/**
sl@0
  1384
Increments the current session's command stack pointer.
sl@0
  1385
 
sl@0
  1386
@see DMMCSession::PushCommandStack()
sl@0
  1387
*/
sl@0
  1388
inline void DMMCStack::CurrentSessPushCmdStack()
sl@0
  1389
	{iSessionP->PushCommandStack();}
sl@0
  1390
sl@0
  1391
sl@0
  1392
sl@0
  1393
/**
sl@0
  1394
Decrements the current session's command stack pointer.
sl@0
  1395
 
sl@0
  1396
@see DMMCSession::PopCommandStack()
sl@0
  1397
*/
sl@0
  1398
inline void DMMCStack::CurrentSessPopCmdStack()
sl@0
  1399
	{iSessionP->PopCommandStack();}
sl@0
  1400
sl@0
  1401
/**
sl@0
  1402
Allows the stack to yield to another command temporarily, for one loop of the scheduler only.
sl@0
  1403
 
sl@0
  1404
@param aCommandType The command type to yield to.
sl@0
  1405
*/
sl@0
  1406
inline void DMMCStack::YieldStack(TMMCCommandTypeEnum aCommandType)
sl@0
  1407
	{
sl@0
  1408
	BlockCurrentSession(KMMCBlockOnYielding);
sl@0
  1409
	iYieldCommandType = aCommandType;
sl@0
  1410
	iStackState |= KMMCStackStateYielding;
sl@0
  1411
	}
sl@0
  1412
sl@0
  1413
sl@0
  1414
inline void DMMCStack::CurrentSessFillCmdDesc(TMMCCommandEnum aCommand)
sl@0
  1415
/**
sl@0
  1416
 * Initialises the current sessions command according to whether it is a normal
sl@0
  1417
 * or an application command.
sl@0
  1418
 * @param aCommand Contains the command.
sl@0
  1419
 */
sl@0
  1420
	{iSessionP->FillCommandDesc(aCommand);}
sl@0
  1421
sl@0
  1422
inline void DMMCStack::CurrentSessFillCmdDesc(TMMCCommandEnum aCommand,TMMCArgument anArgument)
sl@0
  1423
/**
sl@0
  1424
 * Initialises the current sessions command with an argument according to whether
sl@0
  1425
 * it is a normal or an application command.
sl@0
  1426
 * @param aCommand Contains the command.
sl@0
  1427
 * @param anArgument Specifies the argument.
sl@0
  1428
 */
sl@0
  1429
	{iSessionP->FillCommandDesc(aCommand,anArgument);}
sl@0
  1430
sl@0
  1431
inline void DMMCStack::CurrentSessFillCmdArgs(TMMCArgument anArgument,TUint32 aLength,TUint8* aMemoryP,TUint32 aBlkLen)
sl@0
  1432
/**
sl@0
  1433
 * Initialises the current sessions command arguments with the specified parameters
sl@0
  1434
 * It is necessary to have set the command arguments with this command prior
sl@0
  1435
 * to engaging a read/write macro or command.
sl@0
  1436
 * @param anArgument Command specific argument.
sl@0
  1437
 * @param aLength aLength Total number of bytes to read/write.
sl@0
  1438
 * @param aMemoryP Host source/destination address
sl@0
  1439
 * @param aBlkLen Block length
sl@0
  1440
 */
sl@0
  1441
	{iSessionP->FillCommandArgs(anArgument,aLength,aMemoryP,aBlkLen);}
sl@0
  1442
sl@0
  1443
inline void DMMCStack::DeselectsToIssue(TUint aNumber)
sl@0
  1444
/**
sl@0
  1445
 * Specifies how many deselects to issue during deselection.
sl@0
  1446
 * @param aNumber The number of deselects to issue.
sl@0
  1447
 */
sl@0
  1448
	{iDeselectsToIssue = aNumber; iStackState |= KMMCStackStateDoDeselect;}
sl@0
  1449
sl@0
  1450
//	--------  class DMMCController  --------
sl@0
  1451
sl@0
  1452
inline DMMCStack* DMMCSocket::Stack(TInt aBus)
sl@0
  1453
/**
sl@0
  1454
 * Returns a pointer to the DMMCStack object corresponding to the specified MMC card.
sl@0
  1455
 * @param aBus The MMC card number.
sl@0
  1456
 * @return A pointer to the DMMCStack object corresponding to the specified card.
sl@0
  1457
 */
sl@0
  1458
	{return( ((TInt)aBus < iMachineInfo.iTotalSockets) ? iStack : NULL );}
sl@0
  1459
sl@0
  1460
inline void DMMCSocket::ResetInactivity(TInt /*aBus*/)
sl@0
  1461
/**
sl@0
  1462
 * Resets the sockets PSU inactivity timer.
sl@0
  1463
 * Commonly used to prevent reset due to inactivity 
sl@0
  1464
 * while waiting for a response from the card.
sl@0
  1465
 * @param aBus Unused
sl@0
  1466
 */
sl@0
  1467
	{
sl@0
  1468
	iVcc->ResetInactivityTimer();
sl@0
  1469
	if (iVccCore)
sl@0
  1470
		iVccCore->ResetInactivityTimer();
sl@0
  1471
	}
sl@0
  1472
sl@0
  1473
inline const TMMCMachineInfo& DMMCSocket::MachineInfo() const
sl@0
  1474
/**
sl@0
  1475
 * Returns a reference to the MachineInfo retrieved from the PSL
sl@0
  1476
 * @return a reference to the MachineInfo
sl@0
  1477
 */
sl@0
  1478
	{return iMachineInfo;}
sl@0
  1479
sl@0
  1480
//	--------  class TMMCPsu  --------
sl@0
  1481
sl@0
  1482
inline void DMMCPsu::SetVoltage(TUint32 aVoltage)
sl@0
  1483
/**
sl@0
  1484
 * Specifies the voltage setting to be used when the stack is next powered up.
sl@0
  1485
 * @param aVoltage The required voltage setting, in OCR register format.
sl@0
  1486
 */
sl@0
  1487
	{iVoltageSetting=aVoltage;}
sl@0
  1488
sl@0
  1489
//	--------  Class TMMCCallBack --------
sl@0
  1490
/**
sl@0
  1491
 * Default constructor. Initializes the pointer to the callback function to NULL.
sl@0
  1492
 * @see iFunction
sl@0
  1493
 */
sl@0
  1494
inline TMMCCallBack::TMMCCallBack()
sl@0
  1495
	{iFunction=NULL;}
sl@0
  1496
sl@0
  1497
/**
sl@0
  1498
 * Constructs the TMMCCallBack object with the specified callback function.
sl@0
  1499
 * @param aFunction	Callback notification function. 
sl@0
  1500
 */
sl@0
  1501
inline TMMCCallBack::TMMCCallBack(void (*aFunction)(TAny *aPtr))
sl@0
  1502
	: iFunction(aFunction),iPtr(NULL)
sl@0
  1503
	{}
sl@0
  1504
/**
sl@0
  1505
 * Constructs the TMMCCallBack object with the specified callback function and a pointer to any object.
sl@0
  1506
 * @param aFunction	Callback notification function.
sl@0
  1507
 * @param aPtr	Pointer to any data.
sl@0
  1508
 */
sl@0
  1509
inline TMMCCallBack::TMMCCallBack(void (*aFunction)(TAny *aPtr),TAny *aPtr)
sl@0
  1510
	: iFunction(aFunction),iPtr(aPtr)
sl@0
  1511
	{}
sl@0
  1512
/**
sl@0
  1513
 * Calls the registered callback function. 
sl@0
  1514
 */
sl@0
  1515
inline void TMMCCallBack::CallBack() const
sl@0
  1516
	{ if(iFunction) (*iFunction)(iPtr); }
sl@0
  1517
sl@0
  1518
//	--------  class TMMCEraseInfo  --------
sl@0
  1519
sl@0
  1520
inline TBool TMMCEraseInfo::EraseClassCmdsSupported() const
sl@0
  1521
/**
sl@0
  1522
 * Returns ETrue if Erase Class commands are supported.
sl@0
  1523
 * @return ETrue if Erase Class commands are supported.
sl@0
  1524
 */
sl@0
  1525
	{return(iEraseFlags&KMMCEraseClassCmdsSupported);}
sl@0
  1526
sl@0
  1527
inline TBool TMMCEraseInfo::EraseGroupCmdsSupported() const
sl@0
  1528
/**
sl@0
  1529
 * Returns ETrue if Erase Group commands are supported.
sl@0
  1530
 * @return ETrue if Erase Group commands are supported.
sl@0
  1531
 */
sl@0
  1532
	{return(iEraseFlags&KMMCEraseGroupCmdsSupported);}