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.inl
16 // WARNING: This file contains some APIs which are internal and are subject
17 // to change without noticed. Such APIs should therefore not be used
18 // outside the Kernel and Hardware Services package.
21 // Class TPBusCallBack
22 inline void TPBusCallBack::NotifyPBusStateChange(TInt aState, TInt anError)
23 { if (iFunction) (*iFunction)(iPtr,EPBusStateChange,(TAny*)aState,(TAny*)anError); }
24 inline void TPBusCallBack::NotifyCustom(TInt aParam, TInt anError)
25 { if (iFunction) (*iFunction)(iPtr,EPBusCustomNotification,(TAny*)aParam,(TAny*)anError); }
26 inline void TPBusCallBack::Isr(TInt anId)
27 { if (iIntMask&(1<<anId)) (*iIsr)(iPtr,anId); }
28 inline TInt TPBusCallBack::PowerUp()
29 { return iSocket->PowerUp(); }
30 inline TInt TPBusCallBack::PBusState()
31 { return iSocket->State(); }
32 inline TDfcQue* TPBusCallBack::DfcQ()
33 { return iSocket->DfcQ(); }
34 inline void TPBusCallBack::Add()
35 { iSocket->Add(this); }
39 Checks whether the PSU is off.
41 The PSU is off when it is in the EPsuOff state.
45 @return ETrue PSU state is EPsuOff, EFalse otherwise
47 inline TBool DPBusPsuBase::IsOff()
48 {return(iState==EPsuOff);}
51 Limits the PSU current to a safe level.
53 inline void DPBusPsuBase::SetCurrLimited()
57 Resets inactivity and not-locked counts.
59 inline void DPBusPsuBase::ResetInactivityTimer()
60 {iInactivityCount=0; iNotLockedCount=0;}
63 Gets the voltage level, or range of supported voltage levels.
65 @return The voltage level, or range of voltages supported.
67 @see TPBusPsuInfo::iVoltageSupported
69 inline TUint DPBusPsuBase::VoltageSupported()
70 {return(iVoltageSupported);}
73 Gets the maximum current (in microAmps) that the PSU is able to supply.
75 @return Maximum current (in microAmps).
77 @see TPBusPsuInfo::iMaxCurrentInMicroAmps
79 inline TInt DPBusPsuBase::MaxCurrentInMicroAmps()
80 {return(iMaxCurrentInMicroAmps);}
86 Gets the current PBUS state.
87 @return Current PBus state.
90 inline TInt DPBusSocket::State()
93 This function returns the address of DPBusSocket::iDfcQ queue.
94 @return Address of DPBusSocket::iDfcQ
97 inline TDfcQue* DPBusSocket::DfcQ()
101 Gets media state as EDoorOpen if the media door is open, EDoorClosed if the media door is closed.
102 @return TMediaState enumeration describing the state of door (EDoorOpen, EDoorClosed)
105 inline TMediaState DPBusSocket::MediaState()
106 { return iMediaChange->MediaState(); }