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\pbus.h
26 #include <kernel/kpower.h>
29 #define __ENABLE_SIMULATED_MEDIA_CHANGE // Enables simulation of media change events using ControlIO
32 /********************************************
33 * Peripheral Bus Definitions
34 ********************************************/
37 Defines the maximum number of media change objects.
41 const TInt KMaxMediaChanges=4;
46 Defines the maximum number of power supply unit (PSU) objects.
50 const TInt KMaxPBusVccs=4;
56 Defines the state of the media, i.e. whether the media door is
59 A value of this type is returned by DMediaChangeBase::MediaState().
61 @see DMediaChangeBase::MediaState()
65 Indicates that the media door is open.
70 Indicates that the media door is closed.
77 enum TPBusType {EPBusTypeNone,EPBusTypePcCard,EPBusTypeMultiMedia,EPBusTypeUSB};
89 EPBusPowerUpPending=5,
92 typedef void (*TPBusCallBackFn)(TAny* aPtr, TInt aReason, TAny* a1, TAny* a2);
93 typedef void (*TPBusIsr)(TAny* aPtr, TInt anId);
96 class TPBusCallBack : public SDblQueLink
102 EPBusCustomNotification=1, // Make this the last value
105 IMPORT_C TPBusCallBack();
106 IMPORT_C TPBusCallBack(TPBusCallBackFn aFunction, TAny* aPtr);
107 IMPORT_C TPBusCallBack(TPBusIsr anIsr, TAny* aPtr, TUint anIntMask);
109 inline void NotifyPBusStateChange(TInt aState, TInt anError);
110 inline void NotifyCustom(TInt aParam, TInt anError);
111 inline void Isr(TInt anId);
113 inline TInt PowerUp();
114 inline TInt PBusState();
115 inline TDfcQue* DfcQ();
117 IMPORT_C void SetSocket(TInt aSocket);
118 IMPORT_C void Remove();
120 DPBusSocket* iSocket;
121 TPBusCallBackFn iFunction;
129 class DMediaChangeBase : public DBase
131 Abstract Base class to handle the insertion and removal of removable media.
133 This class is intended for derivation at the media and variant layers,
134 which handles the media/variant specific functionality such as interrupt detection,
135 and passes notifications of media change to the peripheral bus socket layers.
144 IMPORT_C DMediaChangeBase(TInt aMediaChangeNum);
145 IMPORT_C virtual TInt Create();
147 IMPORT_C void DoorOpenService();
148 IMPORT_C void DoorClosedService();
149 void MediaChangeEvent(TBool aDoorOpened);
150 void AcknowledgeEvent(TBool aDoorOpened);
151 static void DoorOpenDfcFn(TAny* aPtr);
154 * Implemented at the media and variant layers.
155 * Forces a media change, performs actions as if a door open has occurred.
156 * Used for powering down and restarting media.
158 * @see DMediaChangeBase::DoDoorOpen()
160 IMPORT_C virtual void ForceMediaChange()=0;
163 * Called by DMediaChangeBase::AcknowledgeEvent when the door is opened.
164 * Implemented at the media and variant layer, DoDoorOpen is invoked
165 * in response to the variant calling ::DoDoorOpenService upon detection of
168 * @see DMediaChangeBase::DoorOpenService()
169 * @see DMediaChangeBase::DoDoorClosed()
171 IMPORT_C virtual void DoDoorOpen()=0;
174 * Called by DMediaChangeBase::AcknowledgeEvent when the door is closed.
175 * Implemented at the media and variant layer, DoDoorClosed is invoked
176 * in response to the variant calling ::DoorOpenService upon detection of
177 * a door closed event.
179 * @see DMediaChangeBase::DoorOpenService()
180 * @see DMediaChangeBase::DoDoorOpen()
182 IMPORT_C virtual void DoDoorClosed()=0;
185 * Returns the current state of the door.
186 * Implemented at the variant layer to provide information as to the state of the door.
188 * @return TMediaState enumeration describing the state of door (EDoorOpen, EDoorClosed)
190 IMPORT_C virtual TMediaState MediaState()=0;
192 /** Unique media change ID, identification scheme is defined by derived classes*/
193 TInt iMediaChangeNum;
195 /** Count of media events yet to be acknowledged.*/
198 /** Door Open DFC queue.*/
206 Defines the required state of the PSU.
208 A value of this type is passed to DPBusPsuBase::DoSetState().
210 @see DPBusPsuBase::DoSetState()
214 Indicates that the PSU is to be turned off.
219 Indicates that the PSU is to be turned on in current
222 Some power supplies can be turned on in a mode that only
223 supplies a limited amount of current to the device.
224 A faulty device drawing excessive current would cause
225 the PSU output voltage to fall, and would be detected
226 by the PSU's voltage checking mechanism. After a brief
227 checking period in current limit mode, the PSU is
228 subsequently turned fully on.
230 For PSU's that don't support current limit mode, this is
231 treated in the same way as EPsuOnFull.
236 Indicates that the PSU is to be turned fully on.
244 enum TPBusPsuStatus {EPsuStatOff,EPsuStatOn,EPsuStatError};
249 const TInt KPBusPsuTickInterval=1000000; // Units 1uS
255 A bit value that is set into the TPBusPsuInfo::iVoltCheckInterval member to
256 indicate that the checking of the PSU voltage level can be performed when
257 the power supply is first turned on.
259 const TUint KPsuChkWhileOn=0x00000001;
265 A bit value that is set into the TPBusPsuInfo::iVoltCheckInterval member to
266 indicate that the checking of the PSU voltage level can be performed
267 periodically when the power supply is on.
269 const TUint KPsuChkOnPwrUp=0x00000002;
275 Defines the methods that can be used by the platform hardware for checking
276 the VCC voltage while on.
278 enum TPsuVoltChkMethod {
280 Indicates a simple good/bad check method normally using
281 a comparator arrangement.
300 Encapsulates power supply information.
302 An object of this type is passed to concrete implementations of
303 DPBusPsuBase::PsuInfo(), which are required to fill
304 the data members of the object.
310 Indicates the voltage level, or range of voltages supported .
312 The voltage level, or range of voltages is reported as a bit mask
313 in the same format as defined for the OCR register.
315 If the PSU supports voltage adjustment, rather than a single fixed value,
316 then bit31 should be set to indicate this fact
317 as well as setting the appropriate bits to indicate the adjustable voltage
320 TUint iVoltageSupported;
323 The maximum current (in microAmps) that the PSU is able to supply.
325 TInt iMaxCurrentInMicroAmps;
328 Indicates whether the platform hardware has support for checking whether
329 the voltage level of the PSU is within its expected voltage limit while turned on.
331 Such a mechanism could detect when a faulty card is drawing excessive current.
333 Set one or both of the bits KPsuChkWhileOn and KPsuChkOnPwrUp,
334 if there is support for voltage checking.
335 Set neither bit if there is no support for voltage checking.
340 TUint iVoltCheckInterval;
343 Indicates the method used by the platform hardware for checking
344 the VCC voltage while on.
346 The method used is identified using the values of
347 the TPsuVoltChkMethod enum.
349 @see TPsuVoltChkMethod
350 @see DPBusPsuBase::DoCheckVoltage()
352 TPsuVoltChkMethod iVoltCheckMethod;
355 Bus not locked timeout period, in seconds, when no clients are registered.
357 Set to 0 to disable the not locked timer.
359 TInt iNotLockedTimeOut;
362 Bus inactivity timeout period, in seconds, when clients are registered.
364 Set to 0 to disable the inactivity timer.
366 TInt iInactivityTimeOut;
370 typedef void (*PsuPwrDownCheckFn)(TAny*);
372 Perherpial bus base class to control the power supply.
374 This class is intended for derivation at both the media driver and variant layer,
375 which respectively handle the media/variant specific functionality of the power supply.
382 class DPBusPsuBase : public DBase
385 /** Currently not in use. */
387 /** Currently not in use.*/
388 ENormalAndRestorable,
389 /** Currently not in use.*/
391 /** Currently not in use.*/
392 EQuickAndNotRestorable
395 DPBusPsuBase(TInt aPsuNum, TInt aMediaChangeNum);
396 IMPORT_C TInt SetState(TPBusPsuState aState);
397 TPBusPsuStatus Status();
398 TInt CheckVoltage(TUint aCheckStatus);
402 IMPORT_C virtual TInt DoCreate();
403 IMPORT_C virtual void DoTickService();
404 IMPORT_C virtual TBool IsLocked();
406 IMPORT_C virtual void DoSetState(TPBusPsuState aState)=0;
409 Base abstract method.
410 Checks the voltage level of the PSU is as expected.
411 The result is returned by a call to DPBusPsuBase::ReceiveVoltageCheckResult(),
412 passing either KErrNone, KErrGeneral to indicate the pass/fail state or
413 KErrNotReady if the voltage check isn't complete.
415 Provided at the variant layer.
417 IMPORT_C virtual void DoCheckVoltage()=0;
420 Fills in the supplied TPBusPsuInfo object with the characteristics of the platform.
421 Provided at the variant layer.
423 @param anInfo A reference to a TPBusPsuInfo to be filled in with the PSU characteristics.
425 IMPORT_C virtual void PsuInfo(TPBusPsuInfo &anInfo)=0;
427 IMPORT_C virtual void ReceiveVoltageCheckResult(TInt anError);
429 inline TUint VoltageSupported();
430 inline void SetCurrLimited();
431 inline TBool IsOff();
432 inline TInt MaxCurrentInMicroAmps();
433 inline void ResetInactivityTimer();
436 static void DoPwrDownCheck(TAny* aPtr);
438 /** Unique power supply unit identification number.*/
441 /** Currently not in use. */
442 TInt iMediaChangeNum;
445 Indicates the method used by the platform hardware for checking
446 the VCC voltage while on.
448 The method used is identified using the values of
449 the TPsuVoltChkMethod enum.
451 @see TPsuVoltChkMethod
452 @see DPBusPsuBase::DoCheckVoltage()
454 TPsuVoltChkMethod iVoltCheckMethod;
460 TPBusPsuState iState;
462 /** PSU current is limited to a safe level. */
465 /** PSU Tick Timer */
469 Indicates the voltage level, or range of voltages supported .
471 The voltage level, or range of voltages is reported as a bit mask
472 in the same format as defined for the OCR register.
474 If the PSU supports voltage adjustment, rather than a single fixed value,
475 then bit31 should be set to indicate this fact
476 as well as setting the appropriate bits to indicate the adjustable voltage
479 TUint iVoltageSupported;
481 /** The maximum current (in microAmps) that the PSU is able to supply. */
482 TInt iMaxCurrentInMicroAmps;
485 Indicates whether the platform hardware has support for checking whether
486 the voltage level of the PSU is within its expected voltage limit while turned on.
488 Such a mechanism could detect when a faulty card is drawing excessive current.
490 Set one or both of the bits KPsuChkWhileOn and KPsuChkOnPwrUp,
491 if there is support for voltage checking.
492 Set neither bit if there is no support for voltage checking.
497 TUint iVoltCheckInterval;
499 /** Bus inactivity counter. */
500 TInt iInactivityCount;
502 /** Bus not locked counter. */
503 TInt iNotLockedCount;
505 /** Bus inactivity timeout period, in seconds, when clients are registered. */
506 TInt iInactivityTimeout;
508 /** Bus not locked timeout period, in seconds, when no clients are registered. */
509 TInt iNotLockedTimeout;
511 /** DPBusSocket which the PSU powers. */
512 DPBusSocket* iSocket; // for the moment assume a PSU only powers one socket
515 DFC to handle PSU Tick.
516 @see DPBusPsuBase::DoTickService()
521 /** Power Down Function to be utilised, default is PwrDownCheck */
522 PsuPwrDownCheckFn iPwrDownCheckFn;
528 NONSHARABLE_CLASS(DPBusPowerHandler) : public DPowerHandler
531 DPBusPowerHandler(DPBusSocket* aSocket);
532 public: // from DPowerHandler
533 // signals from manager to client
535 void PowerDown(TPowerState);
537 DPBusSocket* iSocket;
540 /** Abstract base class for a PBUS socket.
541 DPBusSocket derived class object oversees the power supply and media change functionality with the socket.
543 NONSHARABLE_CLASS(DPBusSocket) : public DBase
547 Panic codes to handle the invalid powerup and powerdown state of the PBUS.
553 Indicates the invalid door close state.
555 EDoorCloseInvalidState=0,
558 Indicates the invalid powerup state of PBUS, considered as invalid if iState is other than TPBusState while powering up.
560 EPowerUpInvalidState=1,
562 /** Indicates invalid handler state corresponding to powerup event */
563 EPowerUpInvalidHandlerState=2,
565 /** Invalid return code corresponding to powerup event */
566 EPowerUpInvalidReturnCode=3,
569 Indicates the invalid powerdown state of the media device,
570 considered as invalid if iState is other than TPBusState while powering down.
572 EEmergencyPowerDownInvalidState=4,
575 Indicates the invalid powerup state of the media device,
576 considered as invalid if iState is not in (EPBusCardAbsent,EPBusOff and EPBusPowerUpPending) while on transition from standby.
578 EMcPowerUpInvalidState=5,
582 The purpose of this enumeration is to handle the postponed events corresponding to media change and power down event.
586 /** Handles the postponed media change event */
589 /** Handles the postponed power down event */
594 Enumeration for handling debug functionality.
596 enum TPBusDebugFunction
598 /** Media state used for simulation purposes */
603 PBUS simulated media states.
605 enum TPBusSimulateMediaState
608 EPeriphBusMediaNormal=0,
610 /** Simulated door open */
611 EPeriphBusDoorOpen=1,
613 /** Simulated door close with media absent */
614 EPeriphBusMediaRemoved=2,
616 /** Simulated door close with media present */
617 EPeriphBusMediaPresent=3,
619 /** Simulate two consecutive door open interrupts */
620 EPeriphBusMediaDoubleDoorOpen=4
624 DPBusSocket(TInt aSocketNumber);
625 IMPORT_C static DPBusSocket* SocketFromId(TInt anId);
626 IMPORT_C static void Panic(DPBusSocket::TPanic aPanic);
628 virtual TInt Create(const TDesC* aName);
632 Initiates a power up sequence on the stack. This method should be implemented by the derived class.
633 The implementation should call PowerUpSequenceComplete() to notify the status on completion of power up sequence.
635 @see DMMCSocket::InitiatePowerUpSequence()
636 @see DMMCStack::PowerUpStack()
638 virtual void InitiatePowerUpSequence()=0;
641 Indicates the presence of a card. This method should be implemented by the derived class.
642 The implementation should use variant specific implementation of CardDetect() method to detect the card presence.
644 @return ETrue if a card is present, else EFalse
645 @see DMMCStack::CardDetect()
647 virtual TBool CardIsPresent()=0;
650 Resets the socket. This method should be implemented by the derived class.
651 The implementation should cancel powerup timer and DFC queue if any of this request is outstanding,
652 Power down the stack.
654 @see DMMCSocket::Reset1()
656 virtual void Reset1()=0;
659 Resets the socket on media change event.This method should be implemented by the derived class.
660 The implementation should remove any allocated memory following a media change event.
663 virtual void Reset2()=0;
666 inline TDfcQue* DfcQ();
667 inline TMediaState MediaState();
669 IMPORT_C void Add(TPBusCallBack* aCallBack);
670 IMPORT_C TInt PowerUp();
671 IMPORT_C void ForceMediaChange();
672 IMPORT_C TInt InCritical();
673 IMPORT_C void EndInCritical();
674 IMPORT_C void DeltaCurrentConsumption(TInt aDelta);
675 IMPORT_C void PowerUpSequenceComplete(TInt anError);
676 void PsuFault(TInt anError);
678 void ResetSocket(TBool aFullReset);
679 void ChangeState(TInt aState, TInt anError);
680 void MediaChangeEvent(TBool aDoorOpened);
681 void DoorOpenEvent();
682 void DoorCloseEvent();
686 IMPORT_C void PowerDownComplete();
687 IMPORT_C void RequestAsyncPowerDown();
688 IMPORT_C virtual TInt ControlIO(TInt aFunction, TAny* aParam1, TAny* aParam2);
696 Current socket number.
704 Current state of Peripheral bus controller.
709 Counter to keep track of postponed events.
713 Current postponed events.
716 TUint16 iPostponedEvents;
718 Current simulated state of the Media.
719 @see TPBusSimulateMediaState
721 TUint16 iSimulatedMediaState;
723 The call back functions queue.
728 Pointer to DPBusPowerController object.
729 @see DPBusPowerHandler
731 DPBusPowerHandler* iPowerHandler;
734 Holds media change number.
735 @see MediaChangeFromSocket
737 TInt iMediaChangeNumber;
740 Pointer to DMediaChangeBase object.
741 @see DMediaChangeBase
743 DMediaChangeBase* iMediaChange;
746 Holds the state of media door.
747 Updated when there is change in media event corresponing to Door open.
748 @see DMediaChangeBase::DoorOpenService()
754 Pointer to DPBusPsuBase object.
760 Indicates the device is in standby state (i.e. Sets to ETrue when the device is in standby state).
765 DFC to handle media change events like (DoorOpen,DoorClose).
766 @see DMediaChangeBase::AcknowledgeEvent
769 TDfc iMediaChangeDfc;
772 DFC to handle powering up of the device.
778 DFC to handle powerdown state of the device.
785 DFC to handle PSU Tick.
786 @see DPBusPsuBase::DoTickService()
792 The DFC queue used for driver functions.
798 Used when there is request for power down of the device from client.
800 TInt iRequestPowerDownCount;
803 GLREF_D DMediaChangeBase* TheMediaChanges[KMaxMediaChanges];
804 GLREF_D DPBusSocket* TheSockets[KMaxPBusSockets];
805 GLREF_D DPBusPsuBase* TheVccs[KMaxPBusVccs];
806 GLREF_D DPBusPsuBase* TheVccCores[KMaxPBusVccs];
808 #include <drivers/pbus.inl>