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\pccd_ifc.h
24 #ifndef __PCCD_IFC_H__
25 #define __PCCD_IFC_H__
27 #include <drivers/locmedia.h>
31 #define __PCCD_MACHINE_CODED__
33 const TInt KMemConfigByteAccess=1;
38 static DPcCardSocket* NewSocket(TInt aSocketNum);
39 static DPcCardMediaChange* NewMediaChange(TInt aMcId);
40 static DPcCardVcc* NewVcc(TInt aVccNum, TInt aMcId);
41 static DPccdChunkBase* NewChunk(TPccdMemType aType);
45 A base class that defines a Pc Card controller interface.
50 class TPcCardControllerInterface
54 Allocate any resources. Only done once on kernel initialization so don't worry about cleanup if it fails.
56 @return KErrNone if successful in allocating memory for the Pc Card. otherwise return KErrNoMemory.
58 IMPORT_C TInt Create();
61 Gets the physical address of Pc Card memory.
63 @param aCard A Pc Card whose physical address to be returned.
65 @param aType Memory type of the Pc Card whose physical address to be returned.
67 @return Physical address of Pc Card for the given memory type.
71 virtual TUint32 MemPhysicalAddress(TInt aCard,TPccdMemType aType)=0;
73 Sets the Pc Card controller h/w.
75 Initialise the Pc Card Controller h/w.
77 @return KErrNone if Pc Card contorller h/w is initialised.
79 virtual TInt Init()=0;
81 Gets the current settings for the Pc Card.
83 @param aCard A Pc Card whose signals to be indicated.
85 @param anInd Has current settings for the PC Card indicator signals into 'anInd' for the specified aCard.
87 @return KErrNone if successful.
89 @see TSocketIndicators.
91 virtual TInt Indicators(TInt aCard,TSocketIndicators &anInd)=0;
93 Enables the Pc Card Interface.
95 @param aCard A Pc Card whose interface to be enabled.
97 virtual void InterfaceOn(TInt aCard)=0;
99 Disables the Pc Card Interface.
101 @param aCard A PC Card whose interface to be disabled.
103 virtual void InterfaceOff(TInt aCard)=0;
105 To Apply/remove h/w reset.
107 @param aCard A Pc Card which has to be h/w reseted.
109 @param anAssert To make the h/w reset guarented.
111 virtual void CardReset(TInt aCard,TBool anAssert)=0;
113 Gets Pc Card Rdy/Bsy status.
115 @param aCard Pc Card whose status to be returned.
117 @return True if the card is ready.
119 virtual TBool CardReady(TInt aCard)=0;
121 Configure memory configuration options.
123 @param aCard Pc Card whose memory to be configured.
125 @param aMemType Type of memory to be configured.
127 @param aSpeed Access speed of the memory involved.
129 @param aWaitSig This WaitSig should never checked since repeated accesses to MECR seem to crash the system
132 @param aFlag To modify the memory configuration attributes by ORing with memory chunk setup flags pKPccdBusWidth32 and KPccdDisableWaitStateCntrl ,
134 @return KErrNone if successful, KErrNotSupported if unsuccessful.
138 @see TPccdAccessSpeed.
140 virtual TInt MemConfig(TInt aCard,TPccdMemType aMemType,TPccdAccessSpeed aSpeed,TBool aWaitSig,TUint aFlag)=0;
142 Gets the information of the socket.
144 @param aSocket Socket whose information to be retrieved.
146 @param anInfo Gets the socket information in anInfo.
148 @see TPcCardSocketInfo.
150 virtual void SocketInfo(TSocket aSocket,TPcCardSocketInfo& anInfo)=0;
152 Checks the specified socket contains a card (and the media door for the socket is closed).
154 @param anInfo Has the socket information.
156 @param aCard Socket for which a card presence is checked.
158 @return True if the socket contians a card (and the media door for the socket is closed).
160 virtual TBool CardIsPresent(TInt aCard)=0;
162 Gets the changed state of the specified media (ex,removed,inserted..)
164 @param aMediaChangeId stores the state of the specified media change
166 @return Mediastate when change to media takes place.
170 virtual TMediaState MediaState(TInt aMediaChangeId)=0;
173 Sets Vcc information for the Pc Card.
175 @param aPsu Power supply unit value supplied for the Pc Card.
177 @param aninfo Object of TPBusPsuInfo type passed to store the PSU information.
181 virtual void VccInfo(TInt aPsu,TPBusPsuInfo &aninfo)=0;
183 Sets Pc Card Vcc power supply OFF.
185 @param aPsu Power supply unit for the Pc Card.
187 virtual void VccOff(TInt aPsu)=0;
189 Sets Pc Card Vcc power supply ON.
191 @param aPsu Power supply unit for the Pc Card.
193 @param aVoltageSetting A voltage to power on Pc Card which is defined in enum TPccdSocketVcc.
197 virtual void VccOnFull(TInt aPsu,TPccdSocketVcc aVoltageSetting)=0;
199 Sets Pc Card Vcc power supply ON with current limit.
201 @param aPsu Power supply unit for the Pc Card.
203 @param aVoltageSetting A voltage of current limt to power on Pc Card which is defined in enum TPccdSocketVcc.
207 virtual void VccOnCurrentLimit(TInt aPsu,TPccdSocketVcc aVoltageSetting)=0;
209 Sets Pc Card Vcc level (normally ADC reading). Return KErrNotReady if the voltage check isn't complete.
211 @param aPsu Power supply unit for the Pc Card.
213 virtual TInt VccInMilliVolts(TInt aPsu)=0;
215 Gets Pc Card Vcc voltage status.
217 An alternative to using ADC, when voltage checking is performed using a comparator arrangement.
219 @param aPsu Power supply unit for the Pc Card.
221 @return KErrNone if successful, KErrGeneral if failed.
223 virtual TInt VccVoltCheck(TInt aPsu)=0;
226 Gets a interrupt Id for Pc card.
228 @param aCard Pc Card to which interrupts Id is requested.
230 @return InterruptId of the Pc Card.
232 virtual TInt IntIdIReq(TInt aCard)=0;
234 Gets ready interrupt Id when ready signal is asserted on Pc Card.
236 @param aCard Pc Card which is interrupted through a ready signal.
238 @return Ready interrupt Id for the Pc Card.
240 virtual TInt IntIdRdyC(TInt aCard)=0;
242 Gets interrupt status Id when status of Pc Card changes.
244 @param aCard Pc Card which is interrupted through a change in state.
246 @return Interrupt status Id, for the Pc Card.
248 virtual TInt IntIdStsC(TInt aCard)=0;
250 Gets Mediachange interrupt Id when media changes, i,e when media door is Opend/Closed.
252 @param aMediaChangeId An media chagne Id which tells whether media door is closed / Opened.
254 @return Media change interrupt id, when a change in media takes place.
256 virtual TInt IntIdMediaChange(TInt aMediaChangeId)=0;
258 Acknowledge the media change interrupt.
260 @param aMediaChangeId An media change Id which tells whether a door is closed / Opened.
262 virtual void ClearMediaChange(TInt aMediaChangeId)=0;
263 // machine configuration
265 @param aSocket the socket ID.
267 @param aMediaDeviceInfo , Media information of the scoket which has to be checked.
269 @return True if Pc Card is present in the secified socket.
271 virtual TBool IsPcCardSocket(TInt aSocket,SMediaDeviceInfo& aMediaDeviceInfo)=0;
273 Gets information about from which socket does the media change took place.
275 @param aSocket the socket ID.
277 @return socket from which socket does the media change took place.
279 virtual TInt MediaChangeFromSocket(TInt aSocket)=0;
281 Gets from which socket does the Vcc signal is generated.
283 @param aSocket the socket ID.
285 @return socket Id from which Vcc signal is generated.
287 virtual TInt VccFromSocket(TInt aSocket)=0;
290 GLREF_D TPcCardControllerInterface* ThePccdCntrlInterface;