Update contrib.
1 // Copyright (c) 1998-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 // e32\include\drivers\mmccd_ifc.h
15 // Factory class for creating platform-specific MMC Drivers
25 #ifndef __MMCCD_IFC_H__
26 #define __MMCCD_IFC_H__
28 #include <drivers/mmc.h>
29 #include <drivers/locmedia.h>
35 The factory class for creating platform specific MultiMediaCard objects.
37 The class defines the interface that must be implemented by a derived class.
39 class TMMCardControllerInterface
42 IMPORT_C TInt Create();
46 Creates a platform specific socket object.
48 The function is called from TMMCardControllerInterface::Create(), and
49 an implementation must be provided by the platform specific layer in
52 @param aSocketNum The socket number.
53 @param aPasswordStore A pointer to the password store.
55 @return A pointer to the new socket object.
59 virtual DMMCSocket* NewSocket(TInt aSocketNum, TMMCPasswordStore* aPasswordStore)=0;
63 Creates a platform specific stack object.
65 The function is called from TMMCardControllerInterface::Create(), and
66 an implementation must be provided by the platform specific layer in
69 @param aSocketNum The socket number.
70 @param aSocket A pointer to the socket object.
72 @return A pointer to the new stack object.
76 virtual DMMCStack* NewStack(TInt aSocketNum, DMMCSocket* aSocket)=0;
80 Creates a platform specific media change object.
82 The function is called from TMMCardControllerInterface::Create(), and
83 an implementation must be provided by the platform specific layer in
86 @param aMcId The media change number.
88 @return A pointer to the new media change object.
93 virtual DMMCMediaChange* NewMediaChange(TInt aMcId)=0;
97 Creates a platform specific power supply unit object.
99 The function is called from TMMCardControllerInterface::Create(), and
100 an implementation must be provided by the platform specific layer in
103 @param aVccNum The power supply unit number
104 @param aMcId The associated media change number.
106 @return A pointer to the new power supply unit object.
112 virtual DMMCPsu* NewVcc(TInt aVccNum, TInt aMcId)=0;
115 Creates a platform specific VccCore power supply unit object.
117 The function is called from TMMCardControllerInterface::Create(), and
118 an implementation can be provided by the platform specific layer in
121 @param aVccQNum The power supply unit number (must match paired Vcc unit number).
122 @param aMcId The associated media change number.
124 @return A pointer to the new power supply unit object.
130 virtual inline DMMCPsu* NewVccCore(TInt aVccCoreNum, TInt aMcId);
134 Performs platform specific initialisation.
136 The function is called from TMMCardControllerInterface::Create(), and
137 an implementation must be provided by the platform specific layer in
140 @return KErrNone to indicate that initialisation has completed
141 successfully, otherwise one of the other system-wide error codes
142 to indicate initialisation failure.
146 virtual TInt Init()=0;
150 Indicates whether the peripheral bus socket, as identified by the specified
151 peripheral bus socket number, is designated as a MultiMediaCard socket on
154 If the socket is designated as a MultiMediaCard socket, then the function
155 must also provide the media information for that socket.
157 The function is called from TMMCardControllerInterface::Create(), and
158 an implementation must be provided by the platform specific layer in
161 @param aSocket The peripheral bus socket number.
162 @param aMediaDeviceInfo The media information for that socket, if
163 the socket is designated as a MultiMediaCard
166 @return True, if the socket is designated as a MultiMediaCard socket;
171 virtual TBool IsMMCSocket(TInt aSocket,SMediaDeviceInfo& aMediaDeviceInfo)=0;
175 Reports which media change object is to be associated with the specified
176 peripheral bus socket number.
178 The function is called from TMMCardControllerInterface::Create(), and
179 an implementation must be provided by the platform specific layer in
182 @param aSocket The socket number
184 @return The media change number.
187 @see NewMediaChange()
189 virtual TInt MediaChangeID(TInt aSocket)=0;
193 Reports which power supply unit (PSU) object is to be associated with
194 the specified peripheral bus socket number.
196 The function is called from TMMCardControllerInterface::Create(), and
197 an implementation must be provided by the platform specific layer in
200 @param aSocket The socket number.
202 @return The power supply unit number.
207 virtual TInt VccID(TInt aSocket)=0;
213 * Performs registration of the media devices on the current socket
216 IMPORT_C virtual TInt RegisterMediaDevices(TInt aSocket);
220 DMMCPsu* TMMCardControllerInterface::NewVccCore(TInt /*aVccCoreNum*/, TInt /*aMcId*/)
222 * Default implementation.
223 * Only eMMC v4.3+ media supports a seperate supply for VccCore.