Update contrib.
1 // Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Generic MMC controller types and standard classes for MMC manipulation
15 // This controller follows MMC spec V2.1
24 #if !defined(__MMC_H__)
27 #include <drivers/pbus.h>
30 // MMC Card maximum system settings
32 const TInt KMaxMmcSockets = KMaxPBusSockets;
34 // Forward type declarations
45 class TMMCCommandDesc;
47 class TMMCStackConfig;
50 class TMMCStateMachine;
54 class TMMCMachineInfo;
56 class TMMCPasswordStore;
58 class TMMCMachineInfoV4;
59 typedef TPckg<TMMCMachineInfoV4> TMMCMachineInfoV4Pckg;
61 enum TMMCAppCommand {EMMCNormalCmd,EMMCApplicationCmd};
69 Represents the MultiMediaCard error code bit set.
71 MultiMediaCard error codes are defined as bit masks, mainly for use with
72 the state machine where the error trap mask may be used.
73 The function DMMCSession::EpocErrorCode() converts these error bit values
74 into standard Symbian OS error values.
77 @see KMMCErrResponseTimeOut
78 @see KMMCErrDataTimeOut
79 @see KMMCErrBusyTimeOut
80 @see KMMCErrBusTimeOut
81 @see KMMCErrTooManyCards
82 @see KMMCErrResponseCRC
84 @see KMMCErrCommandCRC
87 @see KMMCErrBrokenLock
90 @see KMMCErrStackNotReady
91 @see KMMCErrNotSupported
93 @see KMMCErrBusInconsistent
95 @see KMMCErrInitContext
97 @see KMMCErrSingleBlock
100 @see KMMCErrAlreadyExists
105 typedef TUint32 TMMCErr;
107 // MMC Enums and inline functions
116 Defines a set of symbols corresponding to the MultiMediaCard bus commands.
118 A command is one of the parameter values inserted into a TMMCCommandDesc object.
119 The commands themselves are defined by the MultiMediaCard specification.
126 CMD0; reset all cards to idle state.
132 CMD1; all cards in the idle state send their operating conditions.
138 CMD2; all cards send their CID number.
144 CMD3; assign relative address to a card.
146 ECmdSetRelativeAddr =3,
150 CMD4; program the DSR register of all cards.
156 CMD5; toggle device between Sleep and Awake states.
170 CMD7; toggle a card between standby and transfer state, or between
171 programming and disconnected state.
173 The card is selected by its RCA and deselected by any other address.
179 CMD8; addressed card sends its extended CSD.
182 ECmdSendExtendedCSD =8,
186 CMD9; addressed card sends its CSD.
192 CMD10; addressed card sends its CID.
198 CMD11; read data stream from the card starting at the given address until
199 an ECmdStopTransmission follows.
201 @see ECmdStopTransmission
203 ECmdReadDatUntilStop =11,
207 CMD12; force the card to stop transmission.
209 ECmdStopTransmission =12,
213 CMD13; addressed card sends its status register.
219 CMD14; BUSTEST_R - Reads the reversed bus testing data pattern from the card.
228 CMD15; set the card to the inactive state.
230 ECmdGoInactiveState =15,
234 CMD16; set the block length for all following block commands.
240 CMD17; read a single data block from the card.
242 ECmdReadSingleBlock =17,
246 CMD18; continuously transfer data blocks from the card until interrupted
247 by ECmdStopTransmission.
249 @see ECmdStopTransmission
251 ECmdReadMultipleBlock =18,
255 CMD19; BUSTEST_W - Sends a test data pattern to the card to determine the bus characteristics
264 CMD20; write data stream from the host starting at the given address
265 until interrupted by ECmdStopTransmission.
267 @see ECmdStopTransmission
269 ECmdWriteDatUntilStop =20,
273 CMD21; reserved for future use.
279 CMD22; reserved for future use.
285 CMD23; define the number of blocks to be transferred in the following
286 multiple block read or write command.
288 ECmdSetBlockCount =23,
292 CMD24; write a single block to the card.
298 CMD25; continuously transfer data blocks to the card until interrupted
299 by ECmdStopTransmission.
301 @see ECmdStopTransmission
303 ECmdWriteMultipleBlock =25,
307 CMD26; programming of the CID.
309 This is issued once per card, and is normally reserved for
316 CMD27; programming of the programmable bits of the CSD.
322 CMD28; set the write protect bit of the addressed group, if the card has
323 write protection features.
325 ECmdSetWriteProt =28,
329 CMD29; clear the write protect bit of the addressed group, if the card has
330 write protection features.
332 ECmdClearWriteProt =29,
336 CMD30; ask the card to send the status of the write protect bit, if
337 the card has write protection features.
339 ECmdSendWriteProt =30,
343 CMD31; reserved for future use.
349 CMD32; set the address of the first sector of the erase group.
351 ECmdTagSectorStart =32,
355 CMD33; set the address of the last sector in a continuous range within
356 the selected erase group, or the address of a single sector to be
359 ECmdTagSectorEnd =33,
363 CMD34; remove one previously selected sector from the erase selection.
369 CMD35; set the the address of the first erase group within a continuous
370 range to be selected for erase.
372 ECmdTagEraseGroupStart =35,
376 CMD36; set the address of the last erase group within a continuous range
377 to be selected for erase.
379 ECmdTagEraseGroupEnd =36,
383 CMD37; removes one previously selected erase group from the erase selection.
385 ECmdUntagEraseGroup =37,
389 CMD38; erase all previously selected sectors.
395 CMD39; read and write 8 bit (register) data fields.
401 CMD40; set the system into interrupt mode.
407 CMD41; reserved for future use.
413 CMD42; set/reset the password or lock/unlock the card.
419 CMD43; reserved for future use.
425 CMD44; reserved for future use.
431 CMD45; reserved for future use.
437 CMD46; reserved for future use.
443 CMD47; reserved for future use.
449 CMD48; reserved for future use.
455 CMD49; reserved for future use.
461 CMD50; reserved for future use.
467 CMD51; reserved for future use.
473 CMD52; reserved for future use.
479 CMD53; reserved for future use.
485 CMD54; reserved for future use.
491 CMD55; indicate to the card that the next command is an application
492 specific command rather than a standard command.
498 CMD56; transfer a data block to the card, or get a data block from the card,
499 for general purpose/application specific commands.
505 CMD57; reserved for future use.
511 CMD58; reserved for future use.
517 CMD59; reserved for future use.
523 CMD60; reserved for future use.
529 CMD61; reserved for future use.
535 CMD62; reserved for future use.
541 CMD63; reserved for future use.
546 enum TMMCCommandTypeEnum
548 ECmdTypeUK, // UnKnown command type
549 ECmdTypeBC, // Broadcast Command
550 ECmdTypeBCR, // Broadcast Command with Response
551 ECmdTypeAC, // Addressed Command
552 ECmdTypeACS, // Addressed Command to a Selected card
553 ECmdTypeADTCS, // Addressed Data Transfer Command to a Selected card
554 ECmdTypeADC // Addressed Direct Command to a Selected card
557 enum TMMCResponseTypeEnum
561 ERespTypeR1, // 32 bits Status
562 ERespTypeR1B, // 32 bits Status with possible busy signal
563 ERespTypeR2, // 128 bits CID or CSD register
564 ERespTypeR3, // 32 bits OCR register
565 ERespTypeR4, // 32 bits Fast I/O
566 ERespTypeR5, // 32 bits IRQ
568 ERespTypeR7 // not currently defined for MMC
576 Defines the set of media types for a MultiMediaCard.
578 enum TMMCMediaTypeEnum
599 A card type that is neither read only, writable nor I/O.
605 A card type that is not supported.
607 EMultiMediaNotSupported
610 enum TMMCSessionTypeEnum
627 ECIMInitStackAfterUnlock =15,
632 const TUint KMMCMaxSessionTypeNumber = 18;
633 const TUint KMMCMinCustomSession = 1024;
635 const TUint KMMCCmdDirDirBitPosition= KBit0; //fixed - dont change it
636 const TUint KMMCCmdDirIndBitPosition= (KBit5-KBit0); //fixed - dont change it
637 const TUint KMMCCmdDirWBitArgument= KBit5;
638 const TUint KMMCCmdDirNegate= KBit6;
639 const TUint KMMCCmdDirWBitDirect= KBit7;
641 const TUint KMMCCmdReliableWrite = KBit31;
648 An enum whose values specify the data transfer direction.
655 EDirRead = KMMCCmdDirWBitDirect,
656 EDirWrite = KMMCCmdDirWBitDirect|KMMCCmdDirDirBitPosition,
657 EDirWBit0 = KMMCCmdDirWBitArgument + 0,
658 EDirRBit0 = (KMMCCmdDirWBitArgument|KMMCCmdDirNegate) + 0
668 An enum whose values specify the width of the data bus
670 This enum is used by the DMMCStack::SetBusWidth() and TMMCMachineInfo.iMaxBusWidth.
677 EBusWidthInvalid = KMaxTUint32
684 const TUint8 KMMCLockUnlockErase = KBit3; // In first byte of CMD42 data block
690 const TUint8 KMMCLockUnlockLockUnlock = KBit2;
696 const TUint8 KMMCLockUnlockClrPwd = KBit1;
702 const TUint8 KMMCLockUnlockSetPwd = KBit0;
711 A utility class that contains convenience functions to handle conversion
712 to and from big-endian format.
717 static inline TUint32 BigEndian32(const TUint8*);
718 static inline void BigEndian4Bytes(TUint8* aPtr, TUint32 aVal);
722 // Generic MMC layer constants
724 const TInt KMaxMMCStacks=1; // Number of separate MMC buses
725 const TUint KMaxMMCardsPerStack=4; // Limits the number of cards in each stack
727 const TUint KBroadcastToAllCards=0xFFFFFFFF;
729 // MMC Spec related constants
731 const TUint KMMCMaxResponseLength=16; // in bytes
732 const TUint KMMCCIDLength=16;
733 const TUint KMMCCSDLength=16;
734 const TUint KMMCExtendedCSDLength=512;
735 const TUint KMMCBusClockFOD=400; // Identification clock in kiloherz
736 const TUint KMMCCommandMask = 63; // Size of TMMCCommandEnum enumerator
738 // Command Classes Bit Set
744 const TUint32 KMMCCmdClassNone= 0;
750 const TUint32 KMMCCmdClassBasic= KBit0;
756 const TUint32 KMMCCmdClassStreamRead= KBit1;
762 const TUint32 KMMCCmdClassBlockRead= KBit2;
768 const TUint32 KMMCCmdClassStreamWrite= KBit3;
774 const TUint32 KMMCCmdClassBlockWrite= KBit4;
780 const TUint32 KMMCCmdClassErase= KBit5;
786 const TUint32 KMMCCmdClassWriteProtection=KBit6;
792 const TUint32 KMMCCmdClassLockCard= KBit7;
798 const TUint32 KMMCCmdClassApplication= KBit8;
804 const TUint32 KMMCCmdClassIOMode= KBit9;
810 const TUint32 KMMCCmdClassReserved10= KBit10;
811 const TUint32 KMMCCmdClassSwitch= KBit10;
817 const TUint32 KMMCCmdClassReserved11= KBit11;
819 // Specific MMC implementation constants
821 const TUint KMaxMMCMachineStackDepth=20; // TMMCStateMachine stack depth
822 const TUint KMaxMMCCommandStackDepth=9; // Session TMMCCommandDesc stack depth
823 const TUint KMMCIdleCommandsAtRestart=2; // Number of CMD0s to be issued at initialisation
824 const TUint KMMCMaxJobsInStackWorkSet=8; // Number of sessions simultaneously served
825 const TUint KMMCPollGapInMilliseconds=40;
826 const TUint KMMCMaxPollAttempts=5; // 40*5 = 200ms
827 const TUint KMMCRetryGapInMilliseconds=10;
828 const TUint KMMCMaxTimeOutRetries=1;
829 const TUint KMMCMaxCRCRetries=1;
830 const TUint16 KMMCMaxUnlockRetries=4;
831 const TUint16 KMMCMaxAutoUnlockRetries=25;
832 const TUint KMMCMaxGlobalRetries=1;
833 const TUint16 KMMCSpecOpCondBusyTimeout=100 ; //MMC/SD Standard OCR timeout 1 second
834 const TUint16 KMMCMaxOpCondBusyTimeout=150; // 10*150 = 1500ms
835 const TUint KMMCLowVoltagePowerUpTimeoutInMilliseconds=2; // 1ms + 74 400KHz clock cycles
836 const TUint KMMCUnlockRetryGapInMilliseconds = 200; // Unlock retry gap
838 // DMMCStack Modes Bit Set
839 const TUint32 KMMCModeEnableClientConfig = KBit0; // Merge with session iConfig
840 const TUint32 KMMCModeEnableTimeOutRetry = KBit1; // Auto retry on response time-outs
841 const TUint32 KMMCModeTimeOutRetryGap = KBit2; // Force timer delay between retries
842 const TUint32 KMMCModeEnableCRCRetry = KBit3; // Command or response CRC errors
843 const TUint32 KMMCModeCRCRetryGap = KBit4;
844 const TUint32 KMMCModeDataCRCRetry = KBit5; // Repeat data transaction from the last valid position
845 const TUint32 KMMCModeEnableUnlockRetry = KBit6; // Resend CMD42 for unreliable cards
846 const TUint32 KMMCModeEnablePreemption = KBit7; // Allow sessions to share the MMC bus
847 const TUint32 KMMCModePreemptOnBusy = KBit8; // Release bus control if busy
848 const TUint32 KMMCModePreemptOnRetry = KBit9; // Release bus control before timeout/crc retries
849 const TUint32 KMMCModePreemptInGaps = KBit10; // Preempt whenever gap timer is invoked
850 const TUint32 KMMCModeEnqueIfLocked = KBit11; // Enque session if DMMCStack is locked
851 const TUint32 KMMCModeCardControlled = KBit12; // Use Session CardP to get RCAs etc.
852 const TUint32 KMMCModeCompleteInStackDFC = KBit13; // Run DMMCStack in DFC when completing
853 const TUint32 KMMCModeEnableBusyPoll = KBit14; // Enables mechanism recovering from busy timeouts
854 const TUint32 KMMCModeBusyPollGap = KBit15;
855 const TUint32 KMMCModeEnableRetries = KBit16; // This mode removed disables all retries/polls
856 const TUint32 KMMCModeMask = KBit17 - KBit0;
858 // The following modes are effective for MasterConfig only
859 const TUint32 KMMCModeClientPollAttempts = KBit20;
860 const TUint32 KMMCModeClientTimeOutRetries = KBit21;
861 const TUint32 KMMCModeClientCRCRetries = KBit22;
862 const TUint32 KMMCModeClientUnlockRetries = KBit23;
863 const TUint32 KMMCModeClientBusClock = KBit24;
864 const TUint32 KMMCModeClientClockIn = KBit25;
865 const TUint32 KMMCModeClientClockOut = KBit26;
866 const TUint32 KMMCModeClientResponseTimeOut = KBit27;
867 const TUint32 KMMCModeClientDataTimeOut = KBit28;
868 const TUint32 KMMCModeClientBusyTimeOut = KBit29;
869 const TUint32 KMMCModeClientiOpCondBusyTimeout = KBit30;
870 const TUint32 KMMCModeClientMask = KBit31 - KBit20;
872 // The following modes cannot be enabled by a client if disabled in MasterConfig
873 const TUint32 KMMCModeMasterOverrides=
874 KMMCModeEnableClientConfig |
875 KMMCModeEnablePreemption |
876 KMMCModeEnqueIfLocked |
879 // The following modes are always effective, even if the ClientConfig is disabled
880 const TUint32 KMMCModeClientOverrides=
881 KMMCModeEnableClientConfig |
882 KMMCModeCardControlled;
885 // The default MasterConfig modes
886 const TUint32 KMMCModeDefault= KMMCModeEnableClientConfig |
887 KMMCModeEnableRetries |
888 KMMCModeEnableTimeOutRetry |
889 KMMCModeTimeOutRetryGap |
890 KMMCModeEnableCRCRetry |
891 KMMCModeCRCRetryGap |
892 KMMCModeDataCRCRetry |
893 KMMCModeEnableUnlockRetry |
894 KMMCModeEnablePreemption |
895 KMMCModePreemptInGaps |
896 KMMCModeEnqueIfLocked |
897 KMMCModeCardControlled |
901 // MMC Error Code Bit Set
907 A MultiMediaCard error code.
913 const TUint32 KMMCErrNone=0;
920 A MultiMediaCard error code.
922 Timed out waiting for a response from the card after issuing a command.
926 const TUint32 KMMCErrResponseTimeOut=KBit0;
933 A MultiMediaCard error code.
935 Timed out waiting for a data block to be received during a data read command.
939 const TUint32 KMMCErrDataTimeOut= KBit1;
946 A MultiMediaCard error code.
948 Timed out waiting for a data block to be requested during a data write command.
952 const TUint32 KMMCErrBusyTimeOut= KBit2;
959 A MultiMediaCard error code.
961 Timed out during the CIM_UPDATE_ACQ macro waiting for a card to power up.
962 Cards that are still powering up return busy in response to a SEND_OP_COND command.
966 const TUint32 KMMCErrBusTimeOut= KBit3;
973 A MultiMediaCard error code.
975 The host has detected more cards in a stack that it can handle, or it has
976 detected more cards than it was expecting, for example, more cards than physical slots.
980 const TUint32 KMMCErrTooManyCards= KBit4;
987 A MultiMediaCard error code.
989 The host has detected a CRC error in a response received from a card.
993 const TUint32 KMMCErrResponseCRC= KBit5;
1000 A MultiMediaCard error code.
1002 The host has detected a CRC error in a data block received from a card.
1006 const TUint32 KMMCErrDataCRC= KBit6;
1013 A MultiMediaCard error code.
1015 The card has detected a CRC error in a command received from the host.
1019 const TUint32 KMMCErrCommandCRC= KBit7;
1026 A MultiMediaCard error code.
1028 An R1 response was received from the card with one or more of the error flags
1029 set in the card status field.
1033 const TUint32 KMMCErrStatus= KBit8;
1040 A MultiMediaCard error code.
1042 A session was submitted without first being set-up with a card object,
1043 or was set-up with a card object that is no longer present.
1047 const TUint32 KMMCErrNoCard= KBit9;
1054 A MultiMediaCard error code.
1056 The session had the stack locked but the MultiMediaCard controller had
1057 to override the lock to perform some other bus activity.
1061 const TUint32 KMMCErrBrokenLock= KBit10;
1068 A MultiMediaCard error code.
1070 The card was powered down.
1074 const TUint32 KMMCErrPowerDown= KBit11;
1081 A MultiMediaCard error code.
1083 The session was stopped.
1087 const TUint32 KMMCErrAbort= KBit12;
1094 A MultiMediaCard error code.
1096 The stack has not yet been initialised.
1100 const TUint32 KMMCErrStackNotReady= KBit13;
1107 A MultiMediaCard error code.
1109 The session requested a service or feature that is not supported.
1113 const TUint32 KMMCErrNotSupported= KBit14;
1120 A MultiMediaCard error code.
1122 Indicates a general hardware related error.
1126 const TUint32 KMMCErrHardware= KBit15;
1133 A MultiMediaCard error code.
1135 An unexpected or inconsistent bus state has been detected.
1139 const TUint32 KMMCErrBusInconsistent=KBit16;
1144 // SM control error codes
1150 A MultiMediaCard error code.
1152 This is used interally by the MultiMediaCard controller.
1156 const TUint32 KMMCErrBypass= KBit17;
1163 A MultiMediaCard error code.
1165 This is used internally by the MultiMediaCard controller in the process
1166 of re-initialising a card to recover from an inconsistent bus state.
1170 const TUint32 KMMCErrInitContext= KBit18;
1177 A MultiMediaCard error code.
1179 Indicates a bad argument.
1183 const TUint32 KMMCErrArgument= KBit19;
1190 A MultiMediaCard error code.
1192 A multiple block operation was requested, but the length specified was
1193 less than that of a block.
1197 const TUint32 KMMCErrSingleBlock= KBit20;
1204 const TUint32 KMMCErrUpdPswd= KBit21;
1209 // General error codes
1215 A MultiMediaCard error code.
1221 const TUint32 KMMCErrLocked= KBit22;
1228 A MultiMediaCard error code.
1230 Indicates a general 'not found' type error.
1234 const TUint32 KMMCErrNotFound= KBit23;
1241 An MultiMediaCard error code:
1243 Indicates a general already 'exists type' error.
1247 const TUint32 KMMCErrAlreadyExists= KBit24;
1254 An MultiMediaCard error code:
1256 Indicates an unspecified error.
1260 const TUint32 KMMCErrGeneral= KBit25;
1267 A bitmask of all MultiMediaCard error codes.
1269 const TUint32 KMMCErrAll = (KBit26 - KBit0);
1275 A subset of MultiMediaCard error codes.
1277 const TUint32 KMMCErrBasic = (KMMCErrAll & ~(
1280 KMMCErrInitContext |
1282 KMMCErrSingleBlock |
1285 KMMCErrAlreadyExists|
1288 // DMMC Stack and Session control bits
1291 const TUint32 KMMCStackStateRunning= KBit0; // Stack scheduler active
1292 const TUint32 KMMCStackStateWaitingToLock= KBit1; //
1293 const TUint32 KMMCStackStateLocked= KBit2; //
1294 const TUint32 KMMCStackStateWaitingDFC= KBit3;
1295 const TUint32 KMMCStackStateInitInProgress= KBit4;
1296 const TUint32 KMMCStackStateReScheduled= KBit5;
1297 const TUint32 KMMCStackStateJobChooser= KBit6;
1298 const TUint32 KMMCStackStateDoDeselect= KBit7;
1299 const TUint32 KMMCStackStateBusInconsistent=KBit8;
1300 const TUint32 KMMCStackStateInitPending= KBit9;
1301 const TUint32 KMMCStackStateCardRemoved= KBit10;
1302 const TUint32 KMMCStackStateSleepinProgress=KBit11;
1303 const TUint32 KMMCStackStateSleep= KBit12;
1304 const TUint32 KMMCStackStateYielding= KBit13;
1306 // Session Blocking bits definition
1312 A bit, which when set in a call to DMMCStack::BlockCurrentSession(), indicates
1313 that the current session is to be blocked, awaiting an event that is to
1314 be handled at the platform specific level.
1316 For example, the session may be waiting for:
1318 - a response following a command
1319 - an interrupt indicating that data transfer is required
1320 - a platform specific layer specific timer.
1322 @see DMMCStack::BlockCurrentSession()
1324 const TUint32 KMMCBlockOnASSPFunction= KBit0;
1326 const TUint32 KMMCBlockOnPollTimer = KBit1;
1327 const TUint32 KMMCBlockOnRetryTimer = KBit2;
1328 const TUint32 KMMCBlockOnNoRun = KBit3;
1329 const TUint32 KMMCBlockOnDoor = KBit4;
1330 const TUint32 KMMCBlockOnWaitToLock = KBit5;
1331 const TUint32 KMMCBlockOnCardInUse = KBit6;
1332 const TUint32 KMMCBlockOnPgmTimer = KBit7;
1333 const TUint32 KMMCBlockOnInterrupt = KBit8;
1334 const TUint32 KMMCBlockOnDataTransfer = KBit9;
1335 const TUint32 KMMCBlockOnMoreData = KBit10;
1336 const TUint32 KMMCBlockOnYielding = KBit11; // Yielding to other commands
1338 const TUint32 KMMCBlockOnAsynchMask = KMMCBlockOnASSPFunction |
1339 KMMCBlockOnPollTimer |
1340 KMMCBlockOnRetryTimer |
1341 KMMCBlockOnPgmTimer |
1342 KMMCBlockOnInterrupt |
1343 KMMCBlockOnDataTransfer |
1344 KMMCBlockOnMoreData;
1346 const TUint32 KMMCBlockOnGapTimersMask = KMMCBlockOnPollTimer |
1347 KMMCBlockOnRetryTimer |
1348 KMMCBlockOnPgmTimer;
1350 // Session State bits definition
1351 const TUint32 KMMCSessStateEngaged = KBit0; // Processed by DMMCStack
1352 const TUint32 KMMCSessStateInProgress = KBit1; // No longer safe to restart
1353 const TUint32 KMMCSessStateCritical = KBit2; // Re-initialise the stack if aborted
1354 const TUint32 KMMCSessStateSafeInGaps = KBit3;
1355 const TUint32 KMMCSessStateDoReSchedule= KBit4;
1361 A bit that when set into DMMCSession::iState before calling
1362 DMMCStack::UnBlockCurrentSession(), causes a DFC to be queued in order
1363 to resume the state machine at some later stage.
1365 const TUint32 KMMCSessStateDoDFC = KBit5;
1366 const TUint32 KMMCSessStateBlockOnDoor = KBit6;
1367 const TUint32 KMMCSessStateCardIsGone = KBit7;
1368 const TUint32 KMMCSessStateASSPEngaged = KBit8;
1369 const TUint32 KMMCSessStateAllowDirectCommands = KBit9; // Allow Direct Commands (Using CMD) during Data Transfer
1380 inline TCID() {} // Default constructor
1381 inline TCID(const TUint8*);
1382 inline TCID& operator=(const TCID&);
1383 inline TCID& operator=(const TUint8*);
1384 inline TBool operator==(const TCID&) const;
1385 inline TBool operator==(const TUint8*) const;
1386 inline void Copy(TUint8*) const; // Copies big endian 16 bytes CID
1387 inline TUint8 At(TUint anIndex) const; // Byte from CID at anIndex
1389 TUint8 iData[KMMCCIDLength]; // Big endian 128 bit bitfield representing CID
1402 inline TCSD() {memclr(this, sizeof(*this));} // Default constructor
1403 inline TCSD(const TUint8*);
1404 inline TCSD& operator=(const TCSD&);
1405 inline TCSD& operator=(const TUint8*);
1406 inline void Copy(TUint8*) const; // Copies big endian 16 bytes CSD
1407 inline TUint8 At(TUint anIndex) const; // Byte from CSD at anIndex
1409 inline TUint CSDStructure() const;
1410 inline TUint SpecVers() const;
1411 inline TUint Reserved120() const;
1412 inline TUint TAAC() const;
1413 inline TUint NSAC() const;
1414 inline TUint TranSpeed() const;
1415 inline TUint CCC() const;
1416 inline TUint ReadBlLen() const;
1417 inline TBool ReadBlPartial() const;
1418 inline TBool WriteBlkMisalign() const;
1419 inline TBool ReadBlkMisalign() const;
1420 inline TBool DSRImp() const;
1421 inline TUint Reserved74() const;
1422 inline TUint CSize() const;
1423 inline TUint VDDRCurrMin() const;
1424 inline TUint VDDRCurrMax() const;
1425 inline TUint VDDWCurrMin() const;
1426 inline TUint VDDWCurrMax() const;
1427 inline TUint CSizeMult() const;
1428 inline TUint EraseGrpSize() const;
1429 inline TUint EraseGrpMult() const;
1430 inline TUint WPGrpSize() const;
1431 inline TBool WPGrpEnable() const;
1432 inline TUint DefaultECC() const;
1433 inline TUint R2WFactor() const;
1434 inline TUint WriteBlLen() const;
1435 inline TBool WriteBlPartial() const;
1436 inline TUint Reserved16() const;
1437 inline TBool FileFormatGrp() const;
1438 inline TBool Copy() const;
1439 inline TBool PermWriteProtect() const;
1440 inline TBool TmpWriteProtect() const;
1441 inline TUint FileFormat() const;
1442 inline TUint ECC() const;
1443 inline TUint CRC() const;
1445 IMPORT_C TUint DeviceSize() const; // Uses functions above to calculate device capacity
1446 IMPORT_C TMMCMediaTypeEnum MediaType() const;
1447 IMPORT_C TUint ReadBlockLength() const; // Read Block Length in bytes
1448 IMPORT_C TUint WriteBlockLength() const;// Write Block Length in bytes
1449 IMPORT_C TUint EraseSectorSize() const; // Erase sector size (default 512 bytes)
1450 IMPORT_C TUint EraseGroupSize() const; // Erase group size (default 16*<sector size> bytes)
1451 IMPORT_C TUint MinReadCurrentInMilliamps() const;
1452 IMPORT_C TUint MinWriteCurrentInMilliamps() const;
1453 IMPORT_C TUint MaxReadCurrentInMilliamps() const;
1454 IMPORT_C TUint MaxWriteCurrentInMilliamps() const;
1455 IMPORT_C TUint MaxTranSpeedInKilohertz() const;
1457 IMPORT_C TUint CSDField(const TUint& aTopBit, const TUint& aBottomBit) const; /**< @internalComponent */
1458 TUint8 iData[KMMCCSDLength]; /**< @internalComponent */ // Big endian 128 bit bitfield representing CSD
1464 Extended CSD register class.
1465 For more information about this register, see the MultimediaCard System
1466 Specification, Version 4.1+
1474 An enum used by TExtendedCSD::GetWriteArg() to construct a TMMCArgument object.
1475 The value chosen defines how the register or command set is to be modified.
1477 enum TExtCSDAccessBits
1479 /** Change the card's command set */
1481 /** Set the specified bits */
1483 /** Clear the specified bits */
1485 /** Write the specified byte */
1489 This enum defines various field offsets into the Modes Segment (i.e.
1490 the writable part) of the Extended CSD register.
1492 enum TExtCSDModesFieldIndex
1494 /** Offset of the CMD_SET field */
1496 /** Offset of the CMD_SET_REV field */
1497 ECmdSetRevIndex = 189,
1498 /** Offset of the POWER_CLASS field */
1499 EPowerClassIndex = 187,
1500 /** Offset of the HS_TIMING field */
1501 EHighSpeedInterfaceTimingIndex = 185,
1502 /** Offset of the BUS_WIDTH field */
1503 EBusWidthModeIndex = 183,
1504 /** Offset of the BOOT_CONFIG field */
1505 EBootConfigIndex = 179,
1506 /** Offset of the BOOT_BUS_WIDTH field */
1507 EBootBusWidthIndex = 177,
1508 /** Offset of the ERASE_GROUP_DEF field */
1509 EEraseGroupDefIndex = 175
1513 This enum defines various field offsets into the Properties Segment (i.e.
1514 the read-only part) of the Extended CSD register.
1516 enum TExtCSDPropertiesFieldIndex
1518 /** Offset of the EXT_CSD_REV field */
1519 EExtendedCSDRevIndex = 192,
1520 /** Offset of the CARD_TYPE field */
1521 ECardTypeIndex = 196,
1522 /** Offset of the ACC_SIZE field */
1523 EAccessSizeIndex = 225,
1524 /** Offset of the HC_ERASE_GRP_SIZE field */
1525 EHighCapacityEraseGroupSizeIndex = 224
1528 /** This enum defines the bus width encoding used by the BUS_WIDTH field */
1529 enum TExtCSDBusWidths
1531 EExtCsdBusWidth1 = 0x00,
1532 EExtCsdBusWidth4 = 0x01,
1533 EExtCsdBusWidth8 = 0x02
1537 This enum defines the different MMCV4.x card types available as defined
1538 in the CARD_TYPE field
1542 EHighSpeedCard26Mhz = 0x01,
1543 EHighSpeedCard52Mhz = 0x02
1547 This enum defines the boot config encoding used by the BOOT_CONFIG field
1549 enum TExtCSDBootConfig
1551 ESelectUserArea = 0x00,
1552 ESelectBootPartition1 = 0x01,
1553 ESelectBootPartition2 = 0x02,
1554 EEnableBootPartition1forBoot = 0x08,
1555 EEnableBootPartition2forBoot = 0x10,
1556 EEnableUserAreaforBoot = 0x38,
1557 EEnableBootAck = 0x40
1561 This enum defines the Boot Bus Width encoding used by the BOOT_BUS_WIDTH field
1563 enum TExtCSDBootBusWidth
1565 EBootBusWidth1Bit = 0x00,
1566 EBootBusWidth4Bit = 0x01,
1567 EBootBusWidth8Bit = 0x02,
1568 EResetBusWidthafterBoot = 0x08
1572 This enum defines the Erase Group Definition encoding
1573 used by the ERASE_GROUP_DEF field
1575 enum TExtCSDEraseGroupDef
1578 EEraseGrpDefEnableOldSizes = 0x00,
1579 EEraseGrpDefEnableHighCapSizes = 0x01
1583 /** Default constructor */
1584 inline TExtendedCSD();
1587 @param aPtr a byte buffer containing the contents of the register
1589 inline TExtendedCSD(const TUint8* aPtr);
1592 @param aCSD a reference to another instance of the same class
1594 inline TExtendedCSD& operator=(const TExtendedCSD& aCSD);
1597 @param aPtr a byte buffer containing the contents of the register
1599 inline TExtendedCSD& operator=(const TUint8* aPtr);
1601 /** Returns the byte at a particular offset into the register
1602 @param anIndex the offset into the register
1604 inline TUint8 At(TUint anIndex) const;
1606 /** returns a pointer to the raw data */
1607 inline TUint8* Ptr();
1610 Constructs and then returns a TMMCArgument which can be used to
1611 write to the register using the SWITCH command (CMD6)
1612 @param aAccess specifies how the register or command set is to be modified.
1613 @param aIndex the offset into the register
1614 @param aValue the value to write to the field in the register
1615 @param aCmdSet The command set to write. Valid if aAccess = ECmdSet
1617 inline static TMMCArgument GetWriteArg(TExtCSDAccessBits aAccess, TExtCSDModesFieldIndex aIndex, TUint aValue, TUint aCmdSet);
1619 /** returns the contents of the CMD_SET field */
1620 inline TUint SupportedCmdSet() const;
1622 /** returns the contents of the SEC_COUNT field */
1623 inline TUint SectorCount() const;
1625 /** returns the contents of the MIN_PERF_W_8_52 field */
1626 inline TUint MinPerfWrite8Bit52Mhz() const;
1628 /** returns the contents of the MIN_PERF_R_8_52 field */
1629 inline TUint MinPerfRead8Bit52Mhz() const;
1631 /** returns the contents of the MIN_PERF_W_8_26_4_52 field */
1632 inline TUint MinPerfWrite8Bit26Mhz_4Bit52Mhz() const;
1634 /** returns the contents of the MIN_PERF_R_8_26_4_52 field */
1635 inline TUint MinPerfRead8Bit26Mhz_4Bit52Mhz() const;
1637 /** returns the contents of the MIN_PERF_W_4_26 field */
1638 inline TUint MinPerfWrite4Bit26Mhz() const;
1640 /** returns the contents of the MIN_PERF_R_4_26 field */
1641 inline TUint MinPerfRead4Bit26Mhz() const;
1643 /** returns the contents of the PWR_CL_26_360 field */
1644 inline TUint PowerClass26Mhz360V() const;
1646 /** returns the contents of the PWR_CL_52_360 field */
1647 inline TUint PowerClass52Mhz360V() const;
1649 /** returns the contents of the PWR_CL_26_195 field */
1650 inline TUint PowerClass26Mhz195V() const;
1652 /** returns the contents of the PWR_CL_52_195 field */
1653 inline TUint PowerClass52Mhz195V() const;
1655 /** returns the contents of the CARD_TYPE field */
1656 inline TUint CardType() const;
1658 /** returns the contents of the CSD_STRUCTURE field */
1659 inline TUint CSDStructureVer() const;
1661 /** returns the contents of the EXT_CSD_REV field */
1662 inline TUint ExtendedCSDRev() const;
1664 /** returns the contents of the CMD_SET field */
1665 inline TUint CmdSet() const;
1667 /** returns the contents of the CMD_SET_REV field */
1668 inline TUint CmdSetRev() const;
1670 /** returns the contents of the POWER_CLASS field */
1671 inline TUint PowerClass() const;
1673 /** returns the contents of the HS_TIMING field */
1674 inline TUint HighSpeedTiming() const;
1676 /** returns the contents of the BUS_WIDTH field */
1677 inline TUint BusWidthMode() const;
1679 /** returns the contents of the BOOT_CONFIG field */
1680 inline TUint BootConfig() const;
1682 /** returns the contents of the BOOT_BUS_WIDTH field */
1683 inline TUint BootBusWidth() const;
1685 /** returns the contents of the ERASE_GROUP_DEF field */
1686 inline TUint EraseGroupDef() const;
1688 /** returns the contents of the ACC_SIZE field */
1689 inline TUint AccessSize() const;
1691 /** returns the contents of the HC_ERASE_GRP_SIZE field */
1692 inline TUint HighCapacityEraseGroupSize() const;
1694 /** returns the contents of the BOOT_INFO field */
1695 inline TUint BootInfo() const;
1697 /** returns the contents of the BOOT_SIZE_MUTLI field */
1698 inline TUint BootSizeMultiple() const;
1700 /** returns the contents of the ERASE_TIMEOUT_MULT field */
1701 inline TUint EraseTimeoutMultiple() const;
1703 /** returns the contents of the REL_WR_SEC_C field */
1704 inline TUint ReliableWriteSector() const;
1706 /** returns the contents of the HC_WP_GRP_SIZE field */
1707 inline TUint HighCapacityWriteProtectGroupSize() const;
1709 /** returns the contents of the S_C_VCC field */
1710 inline TUint SleepCurrentVcc() const;
1712 /** returns the contents of the S_C_VCCQ field */
1713 inline TUint SleepCurrentVccQ() const;
1715 /** returns the contents of the S_A_TIMEOUT field */
1716 inline TUint SleepAwakeTimeout() const;
1720 @internalComponent little endian 512 byte field representing extended CSD
1722 TUint8 iData[KMMCExtendedCSDLength];
1726 // 32 bit MMC card status field (response R1)
1728 const TUint32 KMMCStatAppCmd= KBit5;
1729 const TUint32 KMMCStatSwitchError= KBit7;
1730 const TUint32 KMMCStatReadyForData= KBit8;
1731 const TUint32 KMMCStatCurrentStateMask= (KBit13-KBit9);
1732 const TUint32 KMMCStatEraseReset= KBit13;
1733 const TUint32 KMMCStatCardECCDisabled= KBit14;
1734 const TUint32 KMMCStatWPEraseSkip= KBit15;
1735 const TUint32 KMMCStatErrCSDOverwrite= KBit16;
1736 const TUint32 KMMCStatErrOverrun= KBit17;
1737 const TUint32 KMMCStatErrUnderrun= KBit18;
1738 const TUint32 KMMCStatErrUnknown= KBit19;
1739 const TUint32 KMMCStatErrCCError= KBit20;
1740 const TUint32 KMMCStatErrCardECCFailed= KBit21;
1741 const TUint32 KMMCStatErrIllegalCommand=KBit22;
1742 const TUint32 KMMCStatErrComCRCError= KBit23;
1743 const TUint32 KMMCStatErrLockUnlock= KBit24;
1744 const TUint32 KMMCStatCardIsLocked= KBit25;
1745 const TUint32 KMMCStatErrWPViolation= KBit26;
1746 const TUint32 KMMCStatErrEraseParam= KBit27;
1747 const TUint32 KMMCStatErrEraseSeqError= KBit28;
1748 const TUint32 KMMCStatErrBlockLenError= KBit29;
1749 const TUint32 KMMCStatErrAddressError= KBit30;
1750 const TUint32 KMMCStatErrOutOfRange= KBit31;
1752 const TUint32 KMMCStatErrorMask= KMMCStatErrOutOfRange |
1753 KMMCStatErrAddressError |
1754 KMMCStatErrBlockLenError|
1755 KMMCStatErrEraseSeqError|
1756 KMMCStatErrEraseParam |
1757 KMMCStatErrWPViolation |
1758 KMMCStatErrLockUnlock |
1759 KMMCStatErrCardECCFailed|
1760 KMMCStatErrCCError |
1761 KMMCStatErrUnknown |
1762 KMMCStatErrUnderrun |
1763 KMMCStatErrOverrun |
1764 KMMCStatErrCSDOverwrite;
1767 const TUint32 KMMCStatClearByReadMask= KMMCStatErrOutOfRange |
1768 KMMCStatErrAddressError |
1769 KMMCStatErrBlockLenError|
1770 KMMCStatErrEraseSeqError|
1771 KMMCStatErrEraseParam |
1772 KMMCStatErrWPViolation |
1773 KMMCStatErrLockUnlock |
1774 KMMCStatErrCardECCFailed|
1775 KMMCStatErrCCError |
1776 KMMCStatErrUnknown |
1777 KMMCStatErrUnderrun |
1778 KMMCStatErrOverrun |
1779 KMMCStatErrCSDOverwrite |
1780 KMMCStatWPEraseSkip |
1781 KMMCStatEraseReset |
1784 enum TMMCardStateEnum
1787 ECardStateReady = (1 << 9),
1788 ECardStateIdent = (2 << 9),
1789 ECardStateStby = (3 << 9),
1790 ECardStateTran = (4 << 9),
1791 ECardStateData = (5 << 9),
1792 ECardStateRcv = (6 << 9),
1793 ECardStatePrg = (7 << 9),
1794 ECardStateDis = (8 << 9),
1795 ECardStateBtst = (9 << 9),
1796 ECardStateSlp = (10 << 9)
1802 This class can be used to get the MMC card state machine and response status.
1803 For the details of MMC card state machine and command response refer to MMC card specification.
1812 * Default constructor.
1814 inline TMMCStatus() {}
1815 inline TMMCStatus(const TUint8*);
1816 inline TMMCStatus(const TUint32&);
1817 inline operator TUint32() const;
1818 inline TUint32 Error() const;
1819 inline TMMCardStateEnum State() const;
1820 inline void UpdateState(TMMCardStateEnum aState);
1822 TUint32 iData; // 32 bit bitfield representing status register
1827 const TUint32 KMMCOCRBusy = KBit31; // OCR Busy Bit (Response R3)
1828 const TUint32 KMMCOCRAccessModeHCS = KBit30; // OCR Access Mode + SD HCS Bit (Response R3)
1829 const TUint32 KMMCOCRLowVoltage = KBit7; // 1.65 - 1.95 volt support
1830 const TUint32 KMMCOCRAccessModeMask = KBit30 | KBit29; // OCR Access Mode : [00 : Byte], [10 : Block]
1835 Defines the bit value that can be used in TPBusPsuInfo::iVoltageSupported
1836 to indicate that the MultiMediaCard PSU supports voltage adjustment.
1841 #define KMMCAdjustableOpVoltage KMMCOCRBusy // Use same bit to flag ASSP PSU supports voltage adjustment.
1853 inline TMMCArgument();
1854 inline TMMCArgument(const TUint32&);
1855 inline TMMCArgument(TRCA);
1856 inline TMMCArgument(TDSR);
1857 inline operator TUint32() const;
1858 inline void SetRCA(TRCA);
1860 TUint32 iData; // 32 bit bitfield representing the argument
1866 MMC RCA (Relative Card Address) class
1871 inline TRCA(TUint16);
1873 inline TRCA(TMMCArgument);
1874 inline operator TUint16() const;
1876 TUint16 iData; // 16 bit bitfield representing MultiMedia Card's RCA
1882 MMC DSR (Driver Stage Register) class
1887 inline TDSR(TUint16);
1888 inline operator TUint16() const;
1890 TUint16 iData; // 16 bit bitfield representing MultiMedia Card's DSR
1894 // Card specific information and context
1900 const TUint32 KMMCardHasPassword= KBit0;
1906 const TUint32 KMMCardIsWriteProtected= KBit1;
1912 const TUint32 KMMCardIsLockable= KBit2;
1913 const TUint32 KMMCardIsHighCapacity= KBit3;
1914 const TUint32 KMMCardIsHighSpeed= KBit4;
1916 const TUint32 KMMCardMMCFlagMask= 0x0000ffff;
1918 const TUint32 KMMCardFirstCustomFlag= KBit16;
1919 const TUint32 KMMCardCustomFlagMask= 0xffff0000;
1921 const TUint32 KMMCardHighCapBlockSize= 512;
1922 const TUint32 KMMCardHighCapBlockSizeLog2= 9;
1924 NONSHARABLE_CLASS(TMMCard)
1930 inline TBool IsHighCapacity() const;
1932 /** @publishedPartner
1936 /** @publishedPartner
1938 inline TBool IsPresent() const;
1940 /** @publishedPartner
1942 IMPORT_C TBool IsReady() const;
1944 /** @publishedPartner
1946 IMPORT_C TBool IsLocked() const;
1948 /** @publishedPartner
1950 inline TMMCMediaTypeEnum MediaType() const;
1952 /** @publishedPartner
1954 inline TUint DeviceSize() const;
1956 /** @publishedPartner
1958 inline const TCID& CID() const;
1960 /** @publishedPartner
1962 inline const TCSD& CSD() const;
1964 /** @publishedPartner
1966 inline const TExtendedCSD& ExtendedCSD() const;
1968 /** @publishedPartner
1970 inline TRCA RCA() const;
1972 /** @publishedPartner
1974 inline TBool HasPassword() const;
1976 /** @publishedPartner
1978 inline TBool IsWriteProtected() const; // Always EFalse in MMC build
1980 /** @publishedPartner
1982 inline TInt BusWidth() const;
1984 /** @publishedPartner
1986 inline void SetBusWidth(TInt aBusWidth);
1988 /** @internalTechnology */
1989 inline void SetHighSpeedClock(TUint32 aHighSpeedClock);
1991 /** @internalTechnology */
1992 inline TUint32 HighSpeedClock() const;
1994 /** @publishedPartner
1996 virtual TUint32 PreferredWriteGroupLength() const;
1998 /** @publishedPartner
2000 virtual TInt GetFormatInfo(TLDFormatInfo& aFormatInfo) const;
2002 /** @publishedPartner
2004 virtual TUint32 MinEraseSectorSize() const;
2006 /** @publishedPartner
2008 virtual TUint32 EraseSectorSize() const;
2010 virtual TUint MaxTranSpeedInKilohertz() const;
2012 virtual TInt GetEraseInfo(TMMCEraseInfo& anEraseInfo) const;
2014 /** @publishedPartner
2017 Returns the maximum block length supported by the card encoded as a logarithm.
2018 This may be less than the READ_BL_LEN field in the CSD
2019 register depending on the type of card and it's capacity.
2021 virtual TInt MaxReadBlLen() const;
2023 /** @publishedPartner
2026 Returns the maximum write block length supported by the card encoded as a logarithm.
2027 This may be less than the WRITE_BL_LEN field in the CSD
2028 register depending on the type of card and it's capacity.
2030 virtual TInt MaxWriteBlLen() const;
2032 /** @publishedPartner
2034 virtual TInt64 DeviceSize64() const;
2037 inline TInt Number() const;
2040 TMMCStatus iStatus; // last card's status
2041 TUint32 iSetBlockLen; // current block length set for the card
2042 TMMCCommandEnum iLastCommand; // Last Command code issued for the card
2046 DMMCSession* iUsingSessionP; // session which has this card attached
2048 TExtendedCSD iExtendedCSD;
2050 TUint32 iHighSpeedClock;
2053 friend class DMMCStack;
2054 friend class TMMCardArray;
2059 MMC card array class
2063 inline TMMCardArray(DMMCStack* anOwningStack);
2065 /** @publishedPartner
2067 IMPORT_C virtual TInt AllocCards();
2069 void InitNewCardScan();
2071 /** @publishedPartner
2073 IMPORT_C void AddNewCard(const TUint8* aCID,TRCA* aNewRCA);
2075 inline TUint NewCardCount();
2076 inline TInt CardsPresent();
2077 inline TMMCard* NewCardP(TUint aNewCardNumber);
2078 inline TMMCard* CardP(TUint aCardNumber);
2079 inline TMMCard& Card(TUint aCardNumber);
2080 inline TMMCard& NewCard(TUint aCardNumber);
2081 TInt MergeCards(TBool aFirstPass);
2082 void UpdateAcquisitions(TUint* aMaxClock);
2084 /** @internalTechnology */
2085 TInt CardIndex(const TMMCard* aCard);
2087 /** @publishedPartner
2089 IMPORT_C virtual void DeclareCardAsGone(TUint aCardNumber);
2091 protected: // initialized by AllocCards()
2092 void MoveCardAndLockRCA(TMMCard& aSrc,TMMCard& aDest,TInt aDestIndex);
2093 DMMCStack* iOwningStack;
2095 TUint iNewCardsCount;
2096 TMMCard* iCards[KMaxMMCardsPerStack];
2097 TMMCard* iNewCards[KMaxMMCardsPerStack];
2100 // MMC Command descriptor
2102 const TUint32 KMMCCmdFlagBytesValid= KBit0; // iBytesDone has a valid data
2103 const TUint32 KMMCCmdFlagTransStopped= KBit1; // CMD12 has been successfully issued
2104 const TUint32 KMMCCmdFlagStatusReceived=KBit2; // Raised by ASSP layer, cleared by ExecCommandSM()
2105 const TUint32 KMMCCmdFlagExecTopBusy= KBit3; // ExecCommandSM() flag
2106 const TUint32 KMMCCmdFlagExecSelBusy= KBit4; // ExecCommandSM() flag
2107 const TUint32 KMMCCmdFlagBlockAddress= KBit5; // Block addressing mode
2108 const TUint32 KMMCCmdFlagDMARamValid= KBit6; // Memory is DMA'able flag
2109 const TUint32 KMMCCmdFlagDoubleBuffer= KBit7; // The current DT command is double-buffered
2110 const TUint32 KMMCCmdFlagPhysAddr= KBit8; // Address is a physical address
2111 const TUint32 KMMCCmdFlagReliableWrite= KBit9; // Current command is Reliable Write
2113 const TUint32 KMMCCmdFlagASSPFlags= KMMCCmdFlagBytesValid |
2114 KMMCCmdFlagTransStopped |
2115 KMMCCmdFlagStatusReceived;
2121 The MultiMediaCard command specification.
2126 class TMMCCommandSpec
2130 The command class as defined by the MultiMediaCard System Specification.
2132 TUint32 iCommandClass;
2135 The command type as defined by the MultiMediaCard System Specification.
2137 TMMCCommandTypeEnum iCommandType;
2140 The data transfer direction.
2142 TMMCCmdDirEnum iDirection;
2145 ETrue indicates more than one data block is to be tranferred.
2147 TBool iMultipleBlocks;
2150 ETrue indicates use standard stop transmission mode.
2152 TBool iUseStopTransmission; // CMD12 has to be used in the end
2155 The expected response type.
2159 - if this is EResponseTypeNone, then no response is expected.
2160 - if this is ERespTypeR2, then a long (128-bit) response is expected.
2161 - for all other types, a standard (32-bit) response is expected.
2163 TMMCResponseTypeEnum iResponseType;
2166 Expected response length (currently 4 or 16 bytes).
2168 TUint iResponseLength;
2171 class TMMCIdxCommandSpec
2173 MMC Index command spec class
2178 TMMCCommandSpec iSpec;
2185 MMC command description.
2187 When issuing an individual command over the bus, the MultiMediaCard
2188 controller uses an object of this type to specify the parameters
2189 for the command, and to receive back any response.
2191 Commands are issued by passing an object of this type to
2192 the DMMCStack::IssueMMCCommandSM() function, which is implemented by
2193 the platform specific layer.
2198 class TMMCCommandDesc
2201 IMPORT_C TInt Direction() const; // returns -1/0/+1 for read/none/write
2203 inline TBool IsBlockCmd() const;
2204 inline TUint32 NumBlocks() const;
2205 inline TInt64 Arg64() const;
2206 inline TBool IsDoubleBuffered() const;
2207 inline TUint32 BufferLength() const;
2208 inline TUint32 BlockLength() const;
2209 inline TBool IsPhysicalAddress() const;
2210 TBool AdjustForBlockOrByteAccess(const DMMCSession& aSession);
2212 void Dump(TUint8* aResponseP, TMMCErr aErr);
2223 This can be written directly to the MMC controller hardware.
2225 TMMCCommandEnum iCommand;
2228 The argument to be supplied with the command.
2230 This can be written directly to the MMC controller hardware.
2232 TMMCArgument iArgument;
2235 The total length of the data to be tranferred.
2237 TUint32 iTotalLength;
2240 A pointer to the location from where the data is to be read, or written.
2242 TUint8* iDataMemoryP;
2245 The block length to be used in a data transaction.
2247 TUint32 iBlockLength;
2250 The MultiMediaCard command specification.
2252 TMMCCommandSpec iSpec;
2255 The number of bytes transferred since the last time the card was selected.
2262 TUint iPollAttempts; // Retry counters
2267 TUint iTimeOutRetries;
2277 TUint16 iUnlockRetries;
2282 TUint16 iOpCondBusyTimeout; // Units of 10mS
2287 TUint iCustomRetries;
2292 TUint32 iExecNotHandle; // error codes to not handle in ExecCommandSM()
2295 The area into which the command response is put.
2297 This is in big-endian format.
2299 TUint8 iResponse[KMMCMaxResponseLength];
2306 MMC bus configuration.
2308 An object of this type is passed to the Variant implementation
2309 of DMMCStack::SetBusConfigDefaults(), which should fill the public data
2310 members with appropriate information and values.
2319 The hardware interface clock, in KHz.
2325 The bus clock when clocking in data, in KHz.
2331 The bus clock when clocking out data, in KHz.
2337 The response timeout value, in uS.
2339 TUint iResponseTimeOut;
2343 The data timeout value, in uS.
2349 The busy timeout value, in uS.
2355 class TMMCStackConfig
2360 Holds the stack configuration settings on behalf of a session.
2362 Each DMMCSession object contains the public member DMMCSession::iConfig - an instance of the TMMCStackConfig class.
2363 By changing these settings, the client can override the master (i.e. default) stack configuration settings.
2365 However, these changes only remain in effect for the period that the session remains the current session.
2366 In this way, the client is able to change the settings employed by the Controller (e.g. bus clock, enable retries,
2367 change time-out values, restore defaults etc) while it performs that client's request.
2369 The client would generally set-up the stack configuration it requires prior to submitting the session.
2373 inline TMMCStackConfig();
2374 inline void SetMode(TUint32 aMask);
2375 inline void RemoveMode(TUint32 aMask);
2376 inline void UseDefault(TUint32 aMask);
2377 inline void SetPollAttempts(TUint aData);
2378 inline void SetTimeOutRetries(TUint aData);
2379 inline void SetCRCRetries(TUint aData);
2380 inline void SetBusClockInKhz(TUint aParam); // In kilohertz
2381 inline void SetTicksClockIn(TUint aParam); // Number of clock ticks in ClockIn phase
2382 inline void SetTicksClockOut(TUint aParam); // Number of clock ticks in ClockOut phase
2383 inline void SetResponseTimeOutInTicks(TUint aParam); // Timeout in bus clock ticks
2384 inline void SetDataTimeOutInMcs(TUint aParam); // in microseconds
2385 inline void SetBusyTimeOutInMcs(TUint aParam); // in microseconds
2386 inline void SetOpCondBusyTimeout(TUint16 aData); // Units of 10mS
2387 inline TInt OpCondBusyTimeout();
2388 TUint iPollAttempts;
2391 TUint32 iUpdateMask;
2392 TUint32 iClientMask;
2393 TUint iTimeOutRetries;
2395 TUint16 iUnlockRetries;
2396 TUint16 iOpCondBusyTimeout; // Units of 10mS
2397 TMMCBusConfig iBusConfig;
2398 friend class DMMCStack;
2408 inline TMMCRCAPool();
2410 inline void LockRCA(TRCA);
2411 inline void UnlockRCA(TRCA);
2412 inline void ReleaseUnlocked();
2426 inline TBool IsEmpty() const;
2428 inline void SetMarker(); // Sets Marker into Point position
2429 inline void AdvanceMarker(); // Moves Marker one position forward
2430 inline void Point(); // Sets Point into Marker position
2431 TBool Point(DMMCSession* aSessP); // Finds aSessP and sets Point to it
2432 void Add(DMMCSession* aSessP); // Inserts aSessP before the Marker; Point moves to Marker
2433 void Add(TMMCSessRing& aRing);
2434 DMMCSession* Remove(); // Removes at Point; Point moves forward
2435 void Remove(DMMCSession* aSessP); // Points aSessP first, then remove()
2436 inline TUint Size() const;
2437 inline operator DMMCSession*() const;
2438 DMMCSession* operator++(TInt); // returns Point and moves it forward; stops at Marker
2440 DMMCSession* iPMark;
2441 DMMCSession* iPoint;
2442 DMMCSession* iPrevP;
2448 // DMMCStack State Machine Functions are supported by TMMCStateMachine class
2450 // The structure of state machine functions is assumed to be as follows
2452 // TMMCErr DMMCStack::FunctionNameSMST( TAny* aPtr )
2453 // { return( STATIC_CAST(DMMCStack*,aPtr)->FunctionNameSM() ); }
2455 // TMMCErr DMMCStack::FunctionNameSM()
2457 // enum states {EStBegin=0, ..., EStEnd };
2458 // DMMCSession& s = Session();
2459 // TMMCStateMachine& m = Machine();
2460 // const TMMCErr err = m.SetExitCode( 0 );
2464 // switch(m.State())
2474 // case EStEnd: break;
2475 // default: Panic(...);
2482 // State Machine remembers the next state number and function name and goes there as soon
2483 // as the control is returned to the session. To release the control and wait for the next
2484 // re-entrance (which will happen immediately if the session is not blocked or, as soon as
2485 // an asynchronous event removes the blocking condition), a state machine function has to
2486 // return( 0 ); Returning non-zero exit code will result in the session being completed with
2487 // that error code unless a caller state machine function has explicitly intercepted such
2488 // an error with m.SetTraps( TMMCErr aMask ).
2490 // To make a state machine function code more readable, the following macros are provided:
2492 // SMF_NEXTS(nexts) - set the next state to "nexts"
2493 // SMF_CALL(func) - invoke SM function "func", then go to the next state
2494 // SMF_CALLWAIT(func) - the same as above, but sleep at the entry point
2495 // SMF_CALLMYS(nexts,retst) - invoke current SM function at "nexts" entry point
2496 // SMF_CALLMEWR(retst) - invoke me right here with return state retst
2497 // SMF_INVOKES(func,nexts) - invoke SM function "func", then go to the state "nexts"
2498 // SMF_INVOKEWAITS(func,nexts) - the same as above, but sleep at the entry point
2499 // SMF_WAIT - sleep at the next state
2500 // SMF_WAITS(nexts) - set next state to "nexts", then sleep
2501 // SMF_RETURN(value) - return an error to the caller SM function
2502 // SMF_EXIT - return to the caller SM function
2503 // SMF_EXITWAIT - the same as above, but sleep at the exit point
2504 // SMF_JUMP(func) - transfer the control to SM function "func"
2505 // SMF_JUMPWAIT(func) - the same as above, but sleep at the entry point
2506 // SMF_GOTONEXTS - goto the next state
2507 // SMF_GOTOS(nexts) - set the next state to "nexts", then go to it
2508 // SMF_STATE(sname) - declare the state name "sname"
2509 // SMF_BPOINT(sname) - declare the state "sname" and sleep here if blocked statically
2516 Declares the start of a state machine case switch statement.
2518 The macro assumes that the first state defined by the state machine
2519 function is EStBegin.
2523 - the code generates an opening curly brace that must be matched by
2524 a closing curly brace. Typically, this is provided by the SMF_STATE or
2530 #define SMF_BEGIN TMMCStateMachine& m=Machine();const TMMCErr err=m.SetExitCode(0);\
2531 for(;;){switch(m.State()){case EStBegin:{if(err) (void)0;
2537 Declares the end of a state machine case switch statement.
2539 The macro assumes that the last state defined by the state machine
2544 - the code generated assumes that there are earlier calls to SMF_BEGIN,
2545 and zero or more calls to SMF_STATE.
2550 #define SMF_END }case EStEnd:break;default:DMMCSocket::Panic(DMMCSocket::EMMCMachineState);}break;}\
2558 Sets the next state when the current state machine
2559 function is re-entered.
2561 @param nexts The next state to be entered in the current state machine.
2563 #define SMF_NEXTS(nexts) m.SetState(nexts);
2570 Pushes a state machine entry onto the stack, specifying the child state machine
2571 function to be invoked.
2573 The child function will be entered at state 0 (EStBegin), when the state machine
2576 Control returns from this state machine function after completion of
2577 all functions coded by this macro.
2579 @param func The child state machine function to be invoked.
2581 #define SMF_CALL(func) return(m.Push(func));
2588 Pushes a state machine entry onto the stack, specifying the child state machine
2589 function to be invoked.
2591 The state machine is blocked before entry to the child function, but when
2592 it becomes unblocked, the child function will be entered at state 0 (EStBegin)
2593 when the state machine is next dispatched.
2595 Control returns from this state machine function after completion of
2596 all functions coded by this macro.
2598 @param func The child state machine function to be invoked.
2600 #define SMF_CALLWAIT(func) return(m.Push(func,ETrue));
2607 Sets the next state for the current state machine function - control will
2608 flow to this state on completion of all functions coded by this macro.
2610 The macro also pushes a state machine entry onto the stack, specifying
2611 the CURRENT state machine function as the child state machine function to be
2612 invoked, and sets the state in which this child state machine function will
2613 be entered, when it gains control.
2617 - the child function is the same as the parent function.
2618 - the state machine is blocked on return from the current state machine function.
2620 @param nexts The state in which the child state machine function will
2622 @param retst The next state for the current state machine function.
2624 #define SMF_CALLMYS(nexts,retst) {m.SetState(retst);m.PushMe();m.SetState(nexts);continue;}
2631 Sets the next state for the current state machine function - control flows to
2632 the next instruction on completion of all functions coded by this macro.
2634 The macro also pushes a state machine entry onto the stack, specifying
2635 the CURRENT state machine function as the child state machine function to be
2636 invoked. The child function will be entered at state 0 (EStBegin), when the state machine
2641 - the child function is the same as the parent function.
2642 - the state machine is blocked on return from the current state machine function.
2644 @param retst The next state for the current state machine function.
2646 #define SMF_CALLMEWR(retst) {m.SetState(retst);m.PushMe();}
2653 Sets the next state for the current state machine function.
2655 The macro also pushes a state machine entry onto the stack, specifying
2656 the child state machine function to be
2657 invoked. The child function will be entered at state 0 (EStBegin), when the state machine
2660 Control returns from the current state machine function after completion of
2661 all functions coded by this macro.
2663 @param func The child state machine function to be invoked.
2664 @param nexts The next state for the current state machine function.
2666 #define SMF_INVOKES(func,nexts) {m.SetState(nexts);return(m.Push(func));}
2673 Sets the next state for the current state machine function.
2675 The macro also pushes a state machine entry onto the stack, specifying
2676 the child state machine function to be
2677 invoked. The child function will be entered at state 0 (EStBegin), when the state machine
2680 Control returns from the current state machine function after completion of
2681 all functions coded by this macro.
2685 - the state machine is blocked on return from the current state machine function.
2687 @param func The child state machine function to be invoked.
2688 @param nexts The next state for the current state machine function.
2690 #define SMF_INVOKEWAITS(func,nexts) {m.SetState(nexts);return(m.Push(func,ETrue));}
2697 Returns from the current state machine function, and the state machine then blocks (waits).
2699 #define SMF_WAIT return(0);
2706 Sets the next state for the current state machine function; control then returns
2707 from the current state machine function, and the state machine blocks (waits).
2709 @param nexts The next state for the current state machine function.
2711 #define SMF_WAITS(nexts) return(m.SetState(nexts));
2718 Returns the specified error value to the calling (parent) state machine function.
2720 @param value The error value to be returned.
2722 #define SMF_RETURN(value) {m.Pop();return(value);}
2729 Returns to the calling state machine function.
2731 #define SMF_EXIT break;
2738 Returns to the calling state machine function, and the state machine blocks (waits).
2740 #define SMF_EXITWAIT return(m.Pop(ETrue));
2747 Transfers control to the specified state machine function.
2751 - this function is executed at the same stack entry level as the current state machine function.
2753 @param func The state machine function to which control is to be transferred.
2755 #define SMF_JUMP(func) return(m.Jump(func));
2762 Transfers control to the specified state machine function, and waits
2765 @param func The state machine function to which control is to be transferred.
2767 #define SMF_JUMPWAIT(func) return(m.Jump(func,ETrue));
2774 Goes to the next state.
2776 #define SMF_GOTONEXTS continue;
2783 Sets the next state and then goes to that state.
2785 @param nexts The next state.
2787 #define SMF_GOTOS(nexts) {m.SetState(nexts);continue;}
2794 Declares the name of a state.
2796 This is used to generate a case statement based on the state name.
2798 @param sname The state name.
2800 #define SMF_STATE(sname) }case sname:{
2807 Declares the name of a state, and sleeps here
2808 if blocked statically.
2810 @param sname The state name.
2812 #define SMF_BPOINT(sname) }case sname: if(StaticBlocks()) return(m.SetState(sname));{
2817 class TMMCStateMachine
2819 The MultiMediaCard state machine.
2826 inline void Setup(TMMCErr (*anEntry)(TAny*), TAny* aContextP);
2827 IMPORT_C void Reset();
2828 IMPORT_C TMMCErr Dispatch();
2829 inline TMMCErr ExitCode();
2830 inline TMMCErr SetExitCode(TMMCErr aCode);
2831 inline TUint State();
2832 inline TMMCErr SetState(TUint aState);
2833 inline void SuppressSuspension();
2834 inline void SetTraps(TMMCErr aMask);
2835 inline void ResetTraps();
2836 inline void Abort();
2837 inline TMMCErr Pop(TBool aSuspend=EFalse);
2838 inline TMMCErr PushMe();
2839 IMPORT_C TMMCErr Push(TMMCErr (*anEntry)(TAny*), TBool aSuspend=EFalse);
2840 IMPORT_C TMMCErr Jump(TMMCErr (*anEntry)(TAny*), TBool aSuspend=EFalse);
2842 class TMMCMachineStackEntry
2845 TMMCErr (*iFunction)(TAny*);
2854 TMMCMachineStackEntry iStack[KMaxMMCMachineStackDepth];
2859 This class is used to notify the request completion as a callback function for the clients of DMMCSession.
2860 The callback function will be called on session completion.
2861 Callback function is used to indicate Asynchronous Completion.
2869 inline TMMCCallBack();
2870 inline TMMCCallBack(void (*aFunction)(TAny* aPtr));
2871 inline TMMCCallBack(void (*aFunction)(TAny* aPtr), TAny* aPtr);
2872 inline void CallBack() const;
2875 A pointer to the callback function.
2877 void (*iFunction)(TAny* aPtr);
2880 A pointer that is passed to the callback function when
2881 the callback function is called.
2886 // DMMCStack serves an incoming queue of session requests.
2887 // Each queue element is represented by an instance of the following class
2889 typedef TMMCErr (*TMMCSMSTFunc)(TAny*);
2891 class DMMCSession : public DBase
2893 Provides the main interface between the client and the MMC Socket, allowing commands and responses
2894 to be processed asynchronously on the stack.
2896 Each client creates it own instance of this class. It is then able to make MultiMediaCard requests
2897 on the selected stack by configuring the DMMCSession object with relevant information for the request
2898 and then submitting (or engaging) this session object.
2900 The session is used to pass commands either to the entire stack (a broadcast command), or to individual
2901 cards in the stack. The class contains functions for initiating macro functions as laid down by the
2902 MultiMediaCard Association (MMCA) as well as lower level functions allowing a client to control the
2903 stack in a more explicit manner.
2905 All requests on the MultiMediaCard stack which involve bus activity are inherently asynchronous. When
2906 creating a DMMCSession object, a client supplies a call-back function as part of the constructor.
2907 Once a client has engaged a session on the stack, it is informed of the completion of the request by
2908 the Controller calling this call-back function.
2915 IMPORT_C virtual ~DMMCSession();
2916 IMPORT_C DMMCSession(const TMMCCallBack& aCallBack);
2918 // Object initialisation
2919 inline void SetStack(DMMCStack* aStackP);
2920 IMPORT_C void SetCard(TMMCard* aCardP);
2922 // Control macros setup
2923 inline void SetupCIMUpdateAcq();
2924 inline void SetupCIMInitStack();
2925 inline void SetupCIMCheckStack();
2926 inline void SetupCIMSetupCard();
2927 inline void SetupCIMLockStack();
2928 inline void SetupCIMInitStackAfterUnlock();
2929 inline void SetupCIMAutoUnlock();
2931 // Data transfer macros setup
2932 IMPORT_C void SetupCIMReadBlock(TMMCArgument aDevAddr, TUint32 aLength, TUint8* aMemoryP);
2933 IMPORT_C void SetupCIMWriteBlock(TMMCArgument aDevAddr, TUint32 aLength, TUint8* aMemoryP);
2934 IMPORT_C void SetupCIMReadMBlock(TMMCArgument aDevAddr, TUint32 aLength, TUint8* aMemoryP, TUint32 aBlkLen);
2935 IMPORT_C void SetupCIMWriteMBlock(TMMCArgument aDevAddr, TUint32 aLength, TUint8* aMemoryP, TUint32 aBlkLen);
2936 IMPORT_C void SetupCIMEraseSector(TMMCArgument aDevAddr, TUint32 aLength);
2937 IMPORT_C void SetupCIMEraseGroup(TMMCArgument aDevAddr, TUint32 aLength);
2938 IMPORT_C void SetupCIMReadIO(TUint8 aRegAddr, TUint32 aLength, TUint8* aMemoryP);
2939 IMPORT_C void SetupCIMWriteIO(TUint8 aRegAddr, TUint32 aLength, TUint8* aMemoryP);
2940 IMPORT_C void SetupCIMLockUnlock(TUint32 aLength, TUint8* aMemoryP);
2942 // Data transfer macros setup (block mode)
2943 inline void SetupCIMReadBlock(TMMCArgument aBlockAddr, TUint8* aMemoryP, TUint32 aBlocks = 1);
2944 inline void SetupCIMWriteBlock(TMMCArgument aBlockAddr, TUint8* aMemoryP, TUint32 aBlocks = 1);
2945 inline void SetupCIMEraseMSector(TMMCArgument aBlockAddr, TUint32 aBlocks = 1);
2946 inline void SetupCIMEraseMGroup(TMMCArgument aBlockAddr, TUint32 aBlocks = 1);
2948 // Raw commands (must be used in the locked bus state only)
2949 // Known commands with or without (with a default) argument
2950 IMPORT_C void SetupCommand(TMMCCommandEnum aCommand, TMMCArgument anArgument=0);
2952 // Generic unknown command with unknown response type
2953 IMPORT_C void SetupRSCommand(TMMCCommandEnum aCommand, TMMCArgument anArgument,
2954 TUint32 aResponseLength, TMMCCommandTypeEnum aCommandType=ECmdTypeUK,
2955 TMMCResponseTypeEnum aResponseType=ERespTypeUnknown,
2956 TUint32 aCommandClass=KMMCCmdClassNone);
2958 // Generic data transfer command
2959 IMPORT_C void SetupDTCommand(TMMCCommandEnum aCommand, TMMCArgument anArgument,
2960 TUint32 aTotalLength, TUint8* aMemoryAddress, TUint32 aBlockLength=0,
2961 TBool aStopTransmission=EFalse, TMMCCmdDirEnum aDir=EDirNone,
2962 TUint32 aCommandClass=KMMCCmdClassNone);
2964 IMPORT_C TInt Engage(); // Enque session for execution
2965 inline void UnlockStack(); // Unlock the bus
2966 inline void Stop(); // Signal session to complete (stop and complete)
2967 inline void Abort(); // Abort only (no completion)
2970 IMPORT_C TInt EpocErrorCode() const; // Derived from MMCExitCode and LastStatus
2971 inline TMMCSessionTypeEnum SessionID() const;
2972 inline DMMCStack* StackP() const; // DMMCStack serving this session
2973 inline TMMCard* CardP() const; // The current card pointer
2974 inline TBool IsEngaged() const; // Session is being served by DMMCStack
2975 inline TMMCErr MMCExitCode() const; // MMC specific error code returned by DMMCStack
2976 inline TMMCStatus LastStatus() const; // Last R1 response received from the card
2977 inline TUint32 BytesTransferred() const;// The actual amount of data transferred in this session
2978 inline TUint8* ResponseP(); // Current command response (&iCommand[iCmdSP].iResponse)
2979 inline TUint32 EffectiveModes() const; // Modes which DMMCStack will consider as effective
2981 inline void ResetCommandStack();
2983 void SetupCIMControl(TInt aSessNum);
2985 IMPORT_C virtual TMMCSMSTFunc GetMacro(TInt aSessNum) const;
2986 inline void Block(TUint32 aFlag);
2987 inline void UnBlock(TUint32 aFlag, TMMCErr anExitCode);
2990 static void PollTimerCallBack(TAny* aSessP);
2991 static void RetryTimerCallBack(TAny* aSessP);
2992 static void ProgramTimerCallBack(TAny* aSessP);
2994 inline void SwapMe();
2995 void SynchBlock(TUint32 aFlag);
2996 void SynchUnBlock(TUint32 aFlag);
2998 static const TMMCCommandSpec& FindCommandSpec(const TMMCIdxCommandSpec aSpecs[], TInt aIdx);
2999 IMPORT_C void FillCommandDesc();
3000 IMPORT_C void FillCommandDesc(TMMCCommandEnum aCommand);
3001 IMPORT_C void FillCommandDesc(TMMCCommandEnum aCommand, TMMCArgument anArgument);
3002 IMPORT_C void FillCommandArgs(TMMCArgument anArgument, TUint32 aLength, TUint8* aMemoryP, TUint32 aBlkLen);
3003 inline TMMCCommandDesc& Command(); // The current command descriptor
3005 inline void PushCommandStack();
3006 inline void PopCommandStack();
3008 // Methods for double-buffered data transfer:
3009 inline TBool RequestMoreData();
3010 inline void EnableDoubleBuffering(TUint32 aNumBlocks); /**< @internalTechnology */
3011 inline void SetDataTransferCallback(TMMCCallBack& aCallback); /**< @internalTechnology */
3012 inline void MoreDataAvailable(TUint32 aNumBlocks, TUint8* aMemoryP, TInt aError); /**< @internalTechnology */
3015 The last R1 response.
3017 TMMCStatus iLastStatus;
3020 A pointer to the card object.
3022 TMMCard* iCardP; // Pointer to Card Info object
3023 IMPORT_C TRCA CardRCA(); // Checks that card is still ready - otherwise returns 0
3024 TMMCSessionTypeEnum iSessionID;
3026 DMMCSession* iLinkP; //
3028 TMMCCallBack iCallBack; // Where to report the completion
3030 DMMCStack* iStackP; // Pointer to Stack Controller
3031 TCID iCID; // Card ID to ensure we are still talking to the same card
3032 TUint32 iBytesTransferred; // The actual amount of data transferred in this session
3033 TMMCErr iMMCExitCode; // State Machine exit code (MMC specific)
3036 Session state flags (synchronous).
3040 TUint iInitContext; // Stack Initialiser pass number
3041 TUint iGlobalRetries; // Global retry counter
3043 // Asynchronous flags analysed by scheduler
3044 TBool volatile iDoAbort; // Marks the session for abort
3045 TBool volatile iDoStop; // Stop the session as soon as it's safe
3046 TBool volatile iDoComplete; // Completion callback is now to be invoked
3047 TBool iBrokenLock; // Stack lock is broken by force major
3049 TUint32 iBlockOn; // blocking reasons
3050 TInt iCmdSP; // Current Command stack index
3052 TMMCCommandDesc iCommand[KMaxMMCCommandStackDepth]; // Command stack
3054 TMMCCallBack iDataTransferCallback; // A callback function, used to request more data when performing double-buffering
3056 TUint32 iSpare[22]; // Spare data (stolen from iCommand)
3058 TMMCStateMachine iMachine; // State Machine context
3062 NTimer iProgramTimer;
3065 TMMCStackConfig iConfig; // Client configuration parameters
3066 friend class DMMCStack;
3067 friend class TMMCSessRing;
3068 friend class TMMCardArray;
3072 class DMMCStack : public DBase
3074 This object controls access to the MultiMediaCard stack.
3075 The DMMCSocket owns an instance of this class for the MultiMediaCard stack that it manages.
3082 /** extension interfaces Ids */
3085 KInterfaceMachineInfo,
3086 KInterfaceSwitchToLowVoltageSM,
3087 KInterfaceSetBusWidth,
3088 KInterfaceDemandPagingInfo,
3089 KInterfaceCancelSession,
3090 KInterfaceDoWakeUpSM
3093 /** generic interface */
3097 virtual TInt Function() = 0;
3101 Demand paging support
3102 @see KInterfaceDemandPagingInfo
3104 class TDemandPagingInfo
3107 const TInt* iPagingDriveList;
3112 TBool iWriteProtected;
3117 * An optional interface implemented by the PSL for returning demand-paging information.
3118 * @see KInterfaceDemandPagingInfo
3120 class MDemandPagingInfo
3123 virtual TInt DemandPagingInfo(TDemandPagingInfo& aInfo) = 0;
3127 * An optional interface State machine implemented by the PSL for handling asynchronous VccCore powerup
3128 * @see KInterfaceDoWakeUpSM
3133 virtual TMMCErr DoWakeUpSM()=0;
3138 IMPORT_C DMMCStack(TInt aBus, DMMCSocket* aSocket);
3139 IMPORT_C virtual TInt Init();
3142 inline void ReportPowerUp();
3143 inline void ReportPowerDown();
3144 inline void Reset(); // Discard all requests and clear up
3145 inline void CompleteAll(TMMCErr aCode); // Complete all operations with an error
3146 inline void CancelSession(DMMCSession* aSession);
3148 IMPORT_C void PowerUpStack();
3149 IMPORT_C void PowerDownStack();
3151 IMPORT_C TInt Stop(TMMCard* aCardP);
3154 inline TUint MaxCardsInStack() const;
3155 inline TMMCard* CardP(TUint aCardNumber);
3156 inline DMMCSocket* MMCSocket() const;
3157 inline TMMCPasswordStore* PasswordStore() const;
3158 inline TBool InitStackInProgress() const;
3159 inline TBool HasSessionsQueued() const;
3160 inline TBool HasCardsPresent();
3161 inline void BufferInfo(TUint8*& aBuf, TInt& aBufLen, TInt& aMinorBufLen);
3162 inline TInt DemandPagingInfo(TDemandPagingInfo& aInfo);
3163 inline TBool StackRunning() const;
3169 Defines the period for the poll timer.
3171 The poll timer is used by the generic layer for platforms
3172 that do not provide an interrupt to indicate
3173 when programming mode is finished.
3175 @return The poll timer period, in milliseconds.
3177 virtual TInt ProgramPeriodInMilliSeconds() const =0;
3181 * Calculates the minimum range that must be read off a card, an optimisation that takes advantage
3182 * of the partial read feature found on some cards. It takes the logical range that the media driver
3183 * wants to read from the card, and increases it to take into account factors such as FIFO width and
3184 * minimum DMA transfer size.
3185 * @param aCard A pointer to the MMC Card
3186 * @param aStart The required start position
3187 * @param aEnd The required end position
3188 * @param aPhysStart The adjusted start position
3189 * @param aPhysEnd The adjusted end position
3191 virtual void AdjustPartialRead(const TMMCard* aCard, TUint32 aStart, TUint32 aEnd, TUint32* aPhysStart, TUint32* aPhysEnd) const =0;
3194 * Returns the details of the buffer allocated by the socket for data transfer operations. The buffer
3195 * is allocated and configured at the variant layer to allow , for example, contiguous pages to be
3196 * allocated for DMA transfers.
3197 * @param aMDBuf A pointer to the allocated buffer
3198 * @param aMDBufLen The length of the allocated buffer
3200 virtual void GetBufferInfo(TUint8** aMDBuf, TInt* aMDBufLen) =0;
3203 * Gets the platform specific configuration information.
3204 * @see TMMCMachineInfo
3206 virtual void MachineInfo(TMMCMachineInfo& aMachineInfo) =0;
3209 * Creates the session object
3211 IMPORT_C virtual DMMCSession* AllocSession(const TMMCCallBack& aCallBack) const;
3214 // Platform layer service
3215 inline TMMCBusConfig& BusConfig();
3216 inline TMMCBusConfig& MasterBusConfig();
3217 inline DMMCSession& Session(); // Current session
3218 inline TMMCCommandDesc& Command(); // Current command descriptor of current session
3219 inline TMMCStateMachine& Machine(); // State machine of current session
3220 inline void BlockCurrentSession(TUint32 aFlag);
3221 inline void UnBlockCurrentSession(TUint32 aFlag, TMMCErr anExitCode);
3222 inline void ReportInconsistentBusState();
3223 inline void ReportASSPEngaged();
3224 inline void ReportASSPDisengaged();
3225 inline TRCA CurrentSessCardRCA(); // Checks that card is still ready - otherwise returns 0
3226 inline void CurrentSessPushCmdStack();
3227 inline void CurrentSessPopCmdStack();
3228 inline void CurrentSessFillCmdDesc(TMMCCommandEnum aCommand);
3229 inline void CurrentSessFillCmdDesc(TMMCCommandEnum aCommand,TMMCArgument anArgument);
3230 inline void CurrentSessFillCmdArgs(TMMCArgument anArgument,TUint32 aLength,TUint8* aMemoryP,TUint32 aBlkLen);
3231 inline TRCA SelectedCard() const;
3232 inline void YieldStack(TMMCCommandTypeEnum aCommand);
3234 void DoSetClock(TUint32 aClock);
3235 void DoSetBusWidth(TUint32 aBusWidth);
3236 TBusWidth BusWidthEncoding(TInt aBusWidth) const;
3237 TUint MaxTranSpeedInKilohertz(const TMMCard& aCard) const;
3239 // Stack service provided by platform/variant layer.
3242 * Returns the default master settings for the platform.
3243 * @param aConfig A TMMCBusConfig reference to be filled in with the default settings.
3244 * @param aClock The requested clock frequency (may be ignored if the hardware cannot support it).
3246 virtual void SetBusConfigDefaults(TMMCBusConfig& aConfig, TUint aClock)=0;
3249 * Switches from identification mode of operation to data transfer mode operation.
3251 * Note that at this point the clock information in iBusConfig will not have been updated
3252 * to the new data transfer rate. This function should generally just switch from open drain
3253 * to push-pull bus mode - with the clock rate being changed at the start of IssueMMCCommandSM,
3254 * where iBusConfig will be valid.
3256 virtual void InitClockOff()=0;
3259 * Stop all activities on the host stack.
3261 * This will generally perform the same operations as for ASSPDisengage() but this will additionally
3262 * turn off the clock to the hardware interface and release any requested power requirements made on
3263 * the power model. (That is release any power requirements made as part of the InitClockOnSM() function).
3265 * Called from the platform independent layer when it is required to immediately cancel any PSL asynchronous
3266 * activity because the current session has been aborted.
3268 * This function should normally include a call to ReportAsspDisengaged() at the end, to report to the PIL
3269 * that the PSL level resources have been disengaged.
3271 virtual void ASSPReset()=0;
3274 * Called each time a session which has engaged PSL resources has completed or has been aborted.
3276 * This should disable any activities which were required to perform the session just completed/aborted.
3277 * It shouldn't however turn off the clock to the hardware interface (which will be turned off instead
3278 * by the inactivity timer). This typically disables DMA and interface interrupts and forces the hardware
3279 * interface into idle.
3281 * This function should normally include a call to ReportAsspDisengaged() at the end, to report to the PIL
3282 * that the PSL level resources have been disengaged.
3284 virtual void ASSPDisengage()=0;
3287 * Called as part of the bus power down sequence. It stops all activities on the host stack, turns off the clock
3288 * to the hardware interface and releases any requested power requirements made on the power model
3289 * (i.e. very often a straight call of ASSPReset()).
3291 * This shouldn't turn off the MMC PSU as this will be performed immediately afterwards by the PSU class.
3293 virtual void DoPowerDown()=0;
3295 IMPORT_C virtual TBool CardDetect(TUint aCardNumber);
3296 IMPORT_C virtual TBool WriteProtected(TUint aCardNumber);
3298 // State Machine functions implemented in platform layer.
3301 * Called as a child function at the start of the CIM_UPDATE_ACQ macro state machine.
3303 * It should perform the necessary PSL level actions associated with powering up the bus. This includes
3304 * turning on the MMC PSU. However, the hardware interface clock should not be turned on as part of this function.
3306 * If the Controller has to request power resources from the power model (e.g a fast system clock required all the
3307 * time the bus is powered) then this state machine function can be used to asynchronously wait for this resource
3308 * to become available.
3310 * Upon completion, DMMCStack::ReportPowerUp() should be called.
3312 * @return KMMCErrNone if completed successfully or standard TMMCErr code otherwise
3314 virtual TMMCErr DoPowerUpSM()=0;
3317 * Turns on the clock to the hardware interface.
3319 * This state machine function is called as a child function as part of the CIM_UPDATE_ACQ macro state machine.
3321 * It is implemented as a state machine function since it may be necessary to include a short delay after the
3322 * clock has been turned on to allow it to stabilise, or in some cases it may be necessary to wait for a power
3323 * resource to become available.
3325 * This function should normally include a call to ReportAsspEngaged() at the start, to report to the PIL that the PSL
3326 * level resources have been engaged.
3328 * @return KMMCErrNone if completed successfully or standard TMMCErr code otherwise
3330 virtual TMMCErr InitClockOnSM()=0;
3333 * Executes a single command over the bus.
3335 * The input parameters are passed via the current command descriptor on the session's command stack
3336 * (TMMCCommandDesc class), which specifies the type of command, response type, arguments etc..
3338 * @return KMMCErrNone if completed successfully or standard TMMCErr code otherwise
3340 IMPORT_C virtual TMMCErr IssueMMCCommandSM()=0;
3342 TBool StaticBlocks();
3345 * Indicates that the PSL should change the bus width.
3346 * Must be implemented by the Platform Specific Layer if MMCV4 4/8-bit bus mode is required
3348 IMPORT_C virtual void SetBusWidth(TUint32 aBusWidth);
3351 * Retrieves a TMMCMachineInfoV4 from the PSL
3352 * Must be implemented by the Platform Specific Layer if MMCV4 support is required
3355 IMPORT_C virtual void MachineInfo(TDes8& aMachineInfo);
3359 * Switches the MMC bus to low voltage mode
3361 TMMCErr SwitchToLowVoltageSM();
3367 void Add(DMMCSession* aSessP);
3368 void Abort(DMMCSession* aSessP);
3369 void Stop(DMMCSession* aSessP);
3370 void UnlockStack(DMMCSession* aSessP);
3371 void MarkComplete(DMMCSession* aSessP, TMMCErr anExitCode);
3373 // Stack control and operations support
3374 // Scheduler and its supplementary functions
3375 enum TMMCStackSchedStateEnum
3382 void Scheduler(volatile TBool& aFlag);
3384 TMMCStackSchedStateEnum SchedGetOnDFC();
3385 void SchedSetContext(DMMCSession* aSessP);
3386 void SchedDoAbort(DMMCSession* aSessP);
3387 TMMCStackSchedStateEnum SchedResolveStatBlocks(DMMCSession* aSessP);
3388 TMMCStackSchedStateEnum SchedGroundDown(DMMCSession* aSessP, TMMCErr aReason);
3389 TMMCStackSchedStateEnum SchedEnqueStackSession(TMMCSessionTypeEnum aSessID);
3390 void SchedGrabEntries();
3391 void SchedDisengage();
3392 TBool SchedAllowDirectCommands(DMMCSession* aSessP);
3393 TBool SchedYielding(DMMCSession* aSessP);
3394 inline TMMCStackSchedStateEnum SchedAbortPass();
3395 inline TMMCStackSchedStateEnum SchedCompletionPass();
3396 inline TMMCStackSchedStateEnum SchedInitStack();
3397 inline TMMCStackSchedStateEnum SchedSleepStack();
3398 inline TBool SchedPreemptable();
3399 inline TMMCStackSchedStateEnum SchedSession();
3400 inline TMMCStackSchedStateEnum SchedChooseJob();
3402 // Miscellaneous SM function service
3404 void MergeConfig(DMMCSession* aSessP);
3406 inline void DeselectsToIssue(TUint aNumber);
3408 // Static Completion routines.
3409 static void StackDFC(TAny* aStackP);
3410 static void StackSessionCBST(TAny* aStackP);
3411 TInt StackSessionCB();
3412 static void AutoUnlockCBST(TAny *aStackP);
3413 TInt AutoUnlockCB();
3416 IMPORT_C void Block(DMMCSession* aSessP, TUint32 aFlag);
3417 IMPORT_C void UnBlock(DMMCSession* aSessP, TUint32 aFlag, TMMCErr anExitCode);
3420 // State machines. The adapter functions just call the non-static versions.
3421 // Top-level state machines.
3422 static TMMCErr NakedSessionSMST(TAny* aStackP); // ECIMNakedSession
3423 inline TMMCErr NakedSessionSM();
3424 static TMMCErr CIMUpdateAcqSMST(TAny* aStackP); // ECIMUpdateAcq
3425 TMMCErr CIMUpdateAcqSM();
3426 static TMMCErr CIMInitStackSMST(TAny* aStackP); // ECIMInitStack
3427 inline TMMCErr CIMInitStackSM();
3428 static TMMCErr CIMCheckStackSMST(TAny* aStackP); // ECIMCheckStack
3429 inline TMMCErr CIMCheckStackSM();
3430 static TMMCErr CIMSetupCardSMST(TAny* aStackP); // ECIMSetupCard
3431 inline TMMCErr CIMSetupCardSM();
3432 IMPORT_C static TMMCErr CIMReadWriteBlocksSMST(TAny* aStackP); // ECIMReadBlock, ECIMWriteBlock, ECIMReadMBlock, ECIMWriteMBlock
3433 IMPORT_C virtual TMMCErr CIMReadWriteBlocksSM();
3434 static TMMCErr CIMEraseSMST(TAny* aStackP); // ECIMEraseSector, ECIMEraseGroup
3435 inline TMMCErr CIMEraseSM();
3436 static TMMCErr CIMReadWriteIOSMST(TAny* aStackP); // ECIMReadIO, ECIMWriteIO
3437 inline TMMCErr CIMReadWriteIOSM();
3438 static TMMCErr CIMLockUnlockSMST(TAny *aStackP); // ECIMLockUnlock
3439 inline TMMCErr CIMLockUnlockSM();
3440 static TMMCErr NoSessionSMST(TAny* aStackP); // ECIMLockStack
3441 inline TMMCErr NoSessionSM();
3442 static TMMCErr AcquireStackSMST(TAny* aStackP);
3443 IMPORT_C virtual TMMCErr AcquireStackSM();
3444 static TMMCErr CheckStackSMST(TAny* aStackP); // ECIMCheckStack
3445 inline TMMCErr CheckStackSM();
3446 static TMMCErr CheckLockStatusSMST(TAny* aStackP);
3447 inline TMMCErr CheckLockStatusSM();
3448 static TMMCErr ModifyCardCapabilitySMST(TAny* aStackP);
3449 IMPORT_C virtual TMMCErr ModifyCardCapabilitySM();
3450 static TMMCErr BaseModifyCardCapabilitySMST(TAny* aStackP);
3451 static TMMCErr DoPowerUpSMST(TAny* aStackP);
3452 static TMMCErr InitClockOnSMST(TAny* aStackP);
3453 IMPORT_C static TMMCErr IssueMMCCommandSMST(TAny* aStackP);
3455 static TMMCErr CIMAutoUnlockSMST(TAny* aStackP);
3456 inline TMMCErr CIMAutoUnlockSM();
3458 static TMMCErr InitStackAfterUnlockSMST(TAny* aStackP); // ECIMInitStackAfterUnlock
3459 IMPORT_C virtual TMMCErr InitStackAfterUnlockSM();
3461 static TMMCErr InitCurrentCardAfterUnlockSMST(TAny* aStackP);
3463 static TMMCErr AttachCardSMST(TAny* aStackP);
3464 inline TMMCErr AttachCardSM();
3465 static TMMCErr ExecCommandSMST(TAny* aStackP);
3466 inline TMMCErr ExecCommandSM();
3467 static TMMCErr IssueCommandCheckResponseSMST(TAny* aStackP);
3468 inline TMMCErr IssueCommandCheckResponseSM();
3469 static TMMCErr PollGapTimerSMST(TAny* aStackP);
3470 inline TMMCErr PollGapTimerSM();
3471 static TMMCErr RetryGapTimerSMST(TAny* aStackP);
3472 inline TMMCErr RetryGapTimerSM();
3473 static TMMCErr ProgramTimerSMST(TAny *aStackP);
3474 inline TMMCErr ProgramTimerSM();
3475 static TMMCErr GoIdleSMST(TAny* aStackP);
3476 inline TMMCErr GoIdleSM();
3478 static TMMCErr SwitchToLowVoltageSMST(TAny* aStackP);
3480 static TMMCErr DoWakeUpSMST(TAny* aStackP);
3484 static TMMCErr ConfigureHighSpeedSMST(TAny* aStackP);
3485 inline TMMCErr ConfigureHighSpeedSM();
3487 static TMMCErr DetermineBusWidthAndClockSMST(TAny* aStackP);
3488 inline TMMCErr DetermineBusWidthAndClockSM();
3490 static TMMCErr ExecSwitchCommandST(TAny* aStackP);
3491 inline TMMCErr ExecSwitchCommand();
3493 static TMMCErr ExecSleepCommandSMST(TAny* aStackP);
3494 inline TMMCErr ExecSleepCommandSM();
3496 static TMMCErr ExecAwakeCommandSMST(TAny* aStackP);
3497 inline TMMCErr ExecAwakeCommandSM();
3499 static TMMCErr LowVoltagePowerupTimerSMST(TAny *aStackP);
3500 TMMCErr LowVoltagePowerupTimerSM();
3502 static TMMCErr ExecBusTestSMST(TAny* aStackP);
3503 inline TMMCErr ExecBusTestSM();
3505 enum TBusWidthAndClock
3507 E1Bit20Mhz = 0x0000,
3509 E4Bits26Mhz = 0x0001,
3510 E4Bits52Mhz = 0x0002,
3512 E8Bits26Mhz = 0x0004,
3513 E8Bits52Mhz = 0x0008,
3515 enum TBusWidthAndClockMasks
3517 E4BitMask = E4Bits26Mhz | E4Bits52Mhz,
3518 E8BitMask = E8Bits26Mhz | E8Bits52Mhz,
3519 E26MhzMask = E4Bits26Mhz | E8Bits26Mhz,
3520 E52MhzMask = E4Bits52Mhz | E8Bits52Mhz
3523 void DetermineBusWidthAndClock(const TMMCard& aCard, TBool aLowVoltage, TUint& aPowerClass, TBusWidthAndClock& aBusWidthAndClock);
3524 TUint GetPowerClass(const TMMCard& aCard, TBusWidthAndClock aWidthAndClock, TBool aLowVoltage);
3527 // ----------- Data Members -------------
3530 // Synchronous status, data structures and control info.
3531 TUint32 iStackState;
3532 TUint iInitContext; // Stack Initialiser pass number
3533 DMMCSession* iLockingSessionP;
3534 TMMCSessRing iWorkSet;
3535 TMMCSessRing iReadyQueue;
3536 TMMCSessRing iEntryQueue;
3539 DMMCSocket* iSocket;
3540 DMMCSession* iStackSession;
3541 DMMCSession iAutoUnlockSession;
3542 TInt iAutoUnlockIndex; // index into iCards
3549 TBool volatile iSleep;
3550 DThread* iNotifierThread;
3551 TRequestStatus* iNotifierReqStat;
3552 enum TInitState {EISPending, EISDone};
3553 TInitState iInitState;
3555 // Stack and Scheduler control
3556 // Asynchronous sheduler attention flags
3557 TBool volatile iAttention; // There are ready sessions
3558 TBool volatile iAbortReq; // There are sessions marked for abort
3559 TBool volatile iCompReq; // There are sessions to complete
3560 TBool volatile iInitialise; // Enforce InitStack (after enforced PowerDown)
3561 TBool volatile iUpdate; // Enque InitStack into iWorkSet
3562 // Other asynchronous flags
3563 TBool volatile iPoweredUp;
3564 TBool volatile iDFCRunning;
3565 TBool volatile iAbortAll;
3566 TMMCErr volatile iCompleteAllExitCode;
3570 DMMCSession* iSessionP;
3576 // Stack data structures and Session/StateMachine miscellaneous
3577 TUint iDeselectsToIssue;
3578 TInt iCxDeselectCount;
3579 TUint8 iCMD42CmdByte;
3580 TMediaPassword iMPTgt;
3582 IMPORT_C TUint32 EffectiveModes(const TMMCStackConfig& aClientConfig);
3583 TUint32 iCurrentOpRange;
3585 TInt iCxPollRetryCount;
3586 TMMCStackConfig iConfig;
3587 TUint iMaxCardsInStack;
3588 TMMCRCAPool iRCAPool;
3589 TMMCardArray* iCardArray;
3590 TMMCStackConfig iMasterConfig;
3591 friend class DMMCSocket;
3592 friend class DMMCSession;
3593 friend class TMMCardArray;
3597 // Dummy functions to maintain binary compatibility
3598 IMPORT_C virtual void Dummy1();
3602 Gets an interface from a derived class
3603 replaces reserved virtual Dummy4()
3605 IMPORT_C virtual void GetInterface(TInterfaceId aInterfaceId, MInterface*& aInterfacePtr);
3608 TBusWidthAndClock iBusWidthAndClock;
3609 TInt iSelectedCardIndex;
3611 // Reserved members to maintain binary compatibility
3613 TBool iMultiplexedBus; // ETrue if cards are individually selectable. EFalse if stacked on a common bus.
3615 TMMCCommandTypeEnum iYieldCommandType;
3619 // Pointer to protected utility class which allows class to grow while maintining BC
3620 // replaces fourth element of iReserved[]
3629 class TMMCMachineInfo
3631 Platform-specific configuration information for the
3632 MultiMediaCard stack.
3634 An object of this type is passed to the Variant implementation
3635 of DMMCStack::MachineInfo(), which should fill the public data
3636 members with appropriate information and values.
3644 enum THardwareConfig
3647 Set this bit in iFlags if hardware supports SPI mode (not currently supported - set this bit to zero)
3649 ESupportsSPIMode = 0x01,
3652 Set this bit in iFlags if the PSL is enabled for double-buffered data transfers
3654 ESupportsDoubleBuffering = 0x02,
3657 Set this bit in iFlags if the PSL supports response type R7
3662 Set this bit in iFlags if the hardware DMA controller utilises 8-Bit Addressing
3664 EDma8BitAddressing = 0x08,
3667 Set this bit in iFlags if the hardware DMA controller utilises 16-Bit Addressing
3669 EDma16BitAddressing = 0x10,
3672 Set this bit in iFlags if the hardware DMA controller utilises 32-Bit Addressing
3674 EDma32BitAddressing = 0x20,
3677 Set this bit in iFlags if the hardware DMA controller utilises 64-Bit Addressing
3679 EDma64BitAddressing = 0x40,
3682 Set this in iFlags if the hardware supports DMA and can cope with being given a physical address.
3683 This also sets the ESupportsDoubleBuffering flag, physical addressing is dependent on
3684 doublebuffering functionality.
3685 @see ESupportsDoubleBuffering
3686 @see KMMCCmdFlagPhysAddr flag
3688 ESupportsDMA = 0x082,
3691 Set this in iFlags if the hardware is unable to perform data transfers of more than 256K
3692 - Transfers greater than 256K will be split into multiple transactions.
3694 EMaxTransferLength_256K = 0x100,
3697 Set this in iFlags if the hardware is unable to perform data transfers of more than 512K
3698 - Transfers greater than 512K will be split into multiple transactions.
3700 EMaxTransferLength_512K = 0x200,
3703 Set this in iFlags if the hardware is unable to perform data transfers of more than 1M
3704 - Transfers greater than 1M will be split into multiple transactions.
3706 EMaxTransferLength_1M = 0x300,
3709 Set this in iFlags if the hardware is unable to perform data transfers of more than 2M
3710 - Transfers greater than 2M will be split into multiple transactions.
3712 EMaxTransferLength_2M = 0x400,
3715 Set this in iFlags if the hardware is unable to perform data transfers of more than 4M
3716 - Transfers greater than 4M will be split into multiple transactions.
3718 EMaxTransferLength_4M = 0x500,
3721 Set this in iFlags if the hardware is unable to perform data transfers of more than 8M
3722 - Transfers greater than 8M will be split into multiple transactions.
3724 EMaxTransferLength_8M = 0x600,
3727 Set this in iFlags if the hardware is unable to perform data transfers of more than 16M
3728 - Transfers greater than 16M will be split into multiple transactions.
3730 EMaxTransferLength_16M = 0x700,
3733 The card in slot 1 is internal, i.e. not removable
3735 ESlot1Internal = 0x0800,
3738 The card in slot 2 is internal, i.e. not removable
3740 ESlot2Internal = 0x1000,
3745 The total number of MultiMediaCard slots for this stack.
3747 Be aware that this refers to the stack, and NOT to the platform;
3748 a platform can have multiple stacks.
3755 Set this value to zero.
3757 TInt iTotalMediaChanges;
3762 Set this value to zero.
3764 TInt iTotalPrimarySupplies;
3769 Indicates whether the SPI protocol is being used or not.
3771 SPI not currently supported; set this to EFalse.
3773 TBool iSPIMode; // SPI mode not yet supported
3775 Hardware configuration flags
3781 The number of the first peripheral bus slot claimed by the
3782 MultiMediaCard controller.
3784 Symbian OS supports 4, so set this to a value in the range 0-3.
3786 TInt iBaseBusNumber;
3792 typedef TPckg<TMMCMachineInfo> TMMCardMachineInfoPckg;
3795 Platform-specific configuration information for the
3796 MultiMediaCard stack. Contains information pertinent to
3797 MMC specification version 4.0/4.1
3799 An object of this type is passed to the Variant implementation
3800 of DMMCStack::MachineInfo(), which should fill the public data
3801 members with appropriate information and values.
3805 class TMMCMachineInfoV4 : public TMMCMachineInfo
3808 inline TMMCMachineInfoV4() {memclr(this, sizeof(*this));}
3811 The version of the structure returned by the PSL in a call to DMMStack::MachineInfo()
3812 The fields defined in TMMCMachineInfoV4 are only valid if the version is EVersion4 or higher
3814 enum TVersion {EVersion3, EVersion4};
3818 The maximum bus width supported.
3820 TBusWidth iMaxBusWidth;
3823 Maximum clock frequency supported,
3824 N.B. if the controller's maximum clock rate is only slightly less than one of the
3825 "high-speed" clock frequencies defined in MMC spec 4.0 (i.e 26 Mhz and 52 Mhz), then
3826 it can still report that it is supported and then run at the slightly lower clock rate.
3828 enum THighSpeedClocks {EClockSpeed26Mhz = 26, EClockSpeed52Mhz = 52};
3829 TUint iMaxClockSpeedInMhz;
3832 The power class supported for 3.6V (high voltage).
3833 This is a 4-bit value encoded in the same way as the POWER_CLASS field in the EXT_CSD
3834 register. i.e. 0=100mA, 1=120mA, ... 10=450mA.
3835 See MMC sepcification version 4.1, EXT_CSD register.
3837 enum THiVoltagePowerClasses {EHi100mA, EHi120mA, EHi150mA, EHi180mA, EHi200mA, EHi220mA, EHi250mA, EHi300mA, EHi350mA, EHi400mA, EHi450mA };
3838 TUint iHighVoltagePowerClass;
3841 The power class supported for 1.95V (low voltage).
3842 This is a 4-bit value encoded in the same way as the POWER_CLASS field in the EXT_CSD
3843 register. i.e. 0=65mA, 1=70mA, ... 10=250mA.
3844 See MMC sepcification version 4.1, EXT_CSD register.
3846 enum TLoVoltagePowerClasses {ELo065mA, ELo070mA, ELo080mA, ELo090mA, ELo100mA, ELo120mA, ELo140mA, ELo160mA, ELo180mA, ELo200mA, ELo250mA };
3847 TUint iLowVoltagePowerClass;
3851 class DMMCPsu : public DPBusPsuBase
3853 DPBusPsuBase derived abstract class to control the MMC socket's power supply.
3855 This class is intended for derivation at the variant layer, which handles the
3856 variant specific functionality of the power supply.
3863 IMPORT_C DMMCPsu(TInt aPsuNum, TInt aMediaChangedNum);
3865 // Re-declaring virtual and pure-virtual interface defined in DPBusPsuBase for clarity...
3867 IMPORT_C virtual TInt DoCreate();
3870 * Controls the power supply.
3871 * Implemented by the variant, directly controls the power to the MMC stack.
3872 * @param aState A TPBusPsuState enumeration specifying the required state
3873 * (EPsuOnFull, EPsuOff, EPsuOnCurLimit)
3875 virtual void DoSetState(TPBusPsuState aState)=0;
3878 * Checks the PSU's voltage.
3879 * Implemented by the variant, uses a mechanism such as a comparator to check
3880 * the PSU's voltage level. Upon reciept of the voltage level (the process may
3881 * be asynchronous), the variant calls ReceiveVoltageCheckResult() with KErrNone
3882 * if the voltage is OK, KErrGeneral if there is a problem, or KErrNotReady if the
3883 * hardware has not yet powered up.
3885 virtual void DoCheckVoltage()=0;
3888 * Fills in the supplied TPBusPsuInfo object with the characteristics of the platform.
3889 * Provided at the variant layer.
3890 * @param anInfo A reference to a TPBusPsuInfo to be filled in with the PSU characteristics.
3892 virtual void PsuInfo(TPBusPsuInfo &anInfo)=0;
3894 inline void SetVoltage(TUint32 aVoltage);
3896 static void SleepCheck(TAny* aPtr);
3900 * The current voltage setting, in OCR register format
3902 TUint32 iVoltageSetting;
3905 class DMMCMediaChange : public DMediaChangeBase
3907 DMediaChangeBase derived abstract class to handle the isertion and removal of removable media.
3909 This class is intended for derivation at the variant layer, which handles the variant specific
3910 functionality such as interrupt detection, and calls functions of the DMediaChangeBase class
3911 to pass notifications of media change to the socket layers.
3918 IMPORT_C DMMCMediaChange(TInt aMediaChangeNum);
3920 // Re-declaring virtual and pure-virtual interface defined in DMediaChangeBase for clarity...
3922 IMPORT_C virtual TInt Create();
3925 * Forces a media change, executing the same actions as if a door open has occurred.
3928 virtual void ForceMediaChange()=0;
3931 * Called by DMediaChangeBase when the door is opened.
3932 * Implemented at the variant layer, DoDoorOpen is invoked in response to the variant
3933 * calling ::DoDoorOpenService upon detection of a door open event.
3934 * DoDoorOpen may queue a debounce timer which masks further events until it expires.
3937 virtual void DoDoorOpen()=0;
3940 * Called by DMediaChangeBase when the door is closed.
3941 * Implemented at the variant layer, DoDoorClosed is invoked in response to the variant
3942 * calling ::DoorOpenService upon detection of a door closed event.
3943 * Systems without a door should perform this sequence when the debounce timer has
3944 * expired after a door open event has been detected.
3947 virtual void DoDoorClosed()=0;
3950 * Returns the current state of the door.
3951 * Implemented at the variant layer to provide information as to the state of the door.
3952 * @return TMediaState enumeration descibing the state of door (EDoorOpen, EDoorClosed).
3954 virtual TMediaState MediaState() = 0;
3958 /*===========================================================================*/
3959 /* CLASS : DMMCEmbeddedMediaChange */
3960 /*===========================================================================*/
3961 NONSHARABLE_CLASS(DMMCEmbeddedMediaChange) : public DMMCMediaChange
3963 * This class looks after the processing to be carried out when the media door
3964 * is opened or closed. It may be queried without the interrupt being enabled.
3969 DMMCEmbeddedMediaChange(TInt aMediaChangeNum) : DMMCMediaChange(aMediaChangeNum){};
3971 /// Directly calls the media change event
3972 virtual void ForceMediaChange() {return;};
3974 /// Handle media door open (called on media door open interrupt).
3975 virtual void DoDoorOpen() {return;};
3977 /// Handle media door closing (called on media door open interrupt).
3978 virtual void DoDoorClosed() {return;};
3980 /// Return status of media changed signal.
3981 virtual TMediaState MediaState() {return EDoorClosed;};
3992 TBuf8<KMMCCIDLength> iCID;
3993 TMediaPassword iPWD;
3994 enum TState {EStPending, EStValid, EStInvalid};
3998 NONSHARABLE_CLASS(TMMCPasswordStore) : public TPasswordStore
4004 TMMCPasswordStore();
4008 TInt ReadPasswordData(TDes8 &aBuf);
4009 TInt WritePasswordData(TDesC8 &aBuf);
4010 TInt PasswordStoreLengthInBytes();
4013 TMapping *FindMappingInStore(const TCID &aCID);
4014 TInt InsertMapping(const TCID &aCID, const TMediaPassword &aPWD, TMapping::TState aState);
4015 IMPORT_C TBool IsMappingIncorrect(const TCID& aCID, const TMediaPassword& aPWD);
4017 static TInt CompareCID(const TMapping& aLeft, const TMapping& aRight);
4018 TIdentityRelation<TMapping> iIdentityRelation;
4021 RArray<TMapping> *iStore;
4023 friend class DMMCSocket;
4026 class DMMCSocket : public DPBusSocket
4028 This DPBusSocket derived object oversees the power supplies
4029 and media change functionality of DMMCStack Objects. A socket
4030 directly corresponds to a single stack, which may support multiple cards.
4037 IMPORT_C DMMCSocket(TInt aSocketNumber, TMMCPasswordStore* aPasswordStore);
4039 // Functions inherited from DPBusSocket
4040 virtual TInt Init();
4041 virtual void InitiatePowerUpSequence();
4042 virtual TBool CardIsPresent();
4043 virtual void Reset1();
4044 virtual void Reset2();
4046 TInt TotalSupportedCards();
4048 // MMC specific functions
4049 inline DMMCStack* Stack(TInt aBus);
4050 inline void ResetInactivity(TInt aBus);
4051 inline const TMMCMachineInfo& MachineInfo() const;
4053 virtual void AdjustPartialRead(const TMMCard* aCard, TUint32 aStart, TUint32 aEnd, TUint32* aPhysStart, TUint32* aPhysEnd) const;
4054 virtual void GetBufferInfo(TUint8** aMDBuf, TInt* aMDBufLen);
4055 virtual TInt PrepareStore(TInt aBus, TInt aFunc, TLocalDrivePasswordData &aData);
4057 inline TBool SupportsDoubleBuffering();
4058 inline TUint32 MaxDataTransferLength();
4059 inline TUint32 DmaAlignment();
4062 // MMC specific functions
4063 virtual void GetMachineInfo();
4066 // Password Store Control Functions
4067 TInt PasswordControlStart(const TCID &aCID, const TMediaPassword *aPWD);
4068 void PasswordControlEnd(DMMCSession *aSessP, TInt aResult);
4069 TBool RefreshStore();
4072 TMMCMachineInfo iMachineInfo;
4073 TMMCPasswordStore* iPasswordStore;
4080 TUint32 iReserved[4];
4085 EMMCMachineStack =0,
4086 EMMCMachineState =1,
4087 EMMCSessRingNoSession =2,
4088 EMMCStackSessionEngaged =3,
4089 EMMCInitStackBlocked =4,
4091 EMMCCommandStack =6,
4093 EMMCEraseSessionID =8,
4095 EMMCSessionNoPswdCard =10,
4096 EMMCSessionPswdCmd =11,
4097 EMMCSessionBadSessionID =12,
4098 EMMCSetBusWidthNotImplemented =13,
4099 EMMCInvalidNumberOfCardSlots =14,
4100 EMMCBadBusWidth =15,
4101 EMMCInvalidDBCommand =16,
4102 EMMCInvalidDBBlockLength =17,
4103 EMMCUnblockingInWrongContext =18,
4104 EMMCInvalidCardNumber =19,
4105 EMMCNotInDfcContext =20,
4107 IMPORT_C static void Panic(TMMCPanic aPanic);
4108 friend class DMMCStack;
4109 friend class DMMCSession;
4110 friend class DMMCMediaChange;
4113 const TUint32 KMMCEraseClassCmdsSupported= KBit0;
4114 const TUint32 KMMCEraseGroupCmdsSupported= KBit1;
4115 NONSHARABLE_CLASS(TMMCEraseInfo)
4118 inline TBool EraseClassCmdsSupported() const;
4119 inline TBool EraseGroupCmdsSupported() const;
4121 TUint32 iEraseFlags;
4122 TUint32 iPreferredEraseUnitSize;
4123 TUint32 iMinEraseSectorSize;
4126 #include <drivers/mmc.inl>