kernel/eka/include/drivers/pbus.inl
author Tom Cosgrove <tom.cosgrove@nokia.com>
Fri, 28 May 2010 16:29:07 +0100
changeset 30 8aab599e3476
parent 0 a41df078684a
permissions -rw-r--r--
Fix for bug 2283 (RVCT 4.0 support is missing from PDK 3.0.h) Have multiple extension sections in the bld.inf, one for each version of the compiler. The RVCT version building the tools will build the runtime libraries for its version, but make sure we extract all the other versions from zip archives. Also add the archive for RVCT4.

// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of the License "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// e32\include\drivers\pbus.inl
// 
// WARNING: This file contains some APIs which are internal and are subject
//          to change without noticed. Such APIs should therefore not be used
//          outside the Kernel and Hardware Services package.
//

// Class TPBusCallBack
inline void TPBusCallBack::NotifyPBusStateChange(TInt aState, TInt anError)
	{ if (iFunction) (*iFunction)(iPtr,EPBusStateChange,(TAny*)aState,(TAny*)anError); }
inline void TPBusCallBack::NotifyCustom(TInt aParam, TInt anError)
	{ if (iFunction) (*iFunction)(iPtr,EPBusCustomNotification,(TAny*)aParam,(TAny*)anError); }
inline void TPBusCallBack::Isr(TInt anId)
	{ if (iIntMask&(1<<anId)) (*iIsr)(iPtr,anId); }
inline TInt TPBusCallBack::PowerUp()
	{ return iSocket->PowerUp(); }
inline TInt TPBusCallBack::PBusState()
	{ return iSocket->State(); }
inline TDfcQue* TPBusCallBack::DfcQ()
	{ return iSocket->DfcQ(); }
inline void TPBusCallBack::Add()
	{ iSocket->Add(this); }

// Class DPBusPsuBase
/**
Checks whether the PSU is off.

The PSU is off when it is in the EPsuOff state.

@see EPsuOff

@return ETrue PSU state is EPsuOff, EFalse otherwise
*/
inline TBool DPBusPsuBase::IsOff() 
	{return(iState==EPsuOff);}
	
/**
Limits the PSU current to a safe level.
*/
inline void DPBusPsuBase::SetCurrLimited()
	{iCurrLimited=ETrue;}
	
/**
Resets inactivity and not-locked counts.
*/
inline void DPBusPsuBase::ResetInactivityTimer()
	{iInactivityCount=0; iNotLockedCount=0;}
	
/**
Gets the voltage level, or range of supported voltage levels.

@return The voltage level, or range of voltages supported.

@see TPBusPsuInfo::iVoltageSupported
*/	
inline TUint DPBusPsuBase::VoltageSupported()
	{return(iVoltageSupported);}
	
/**
Gets the maximum current (in microAmps) that the PSU is able to supply.

@return Maximum current (in microAmps).

@see TPBusPsuInfo::iMaxCurrentInMicroAmps
*/	
inline TInt DPBusPsuBase::MaxCurrentInMicroAmps()
	{return(iMaxCurrentInMicroAmps);}


// class DPBusSocket

/**
  Gets the current PBUS state. 
  @return Current PBus state.
  @see TPBusState
  */
inline TInt DPBusSocket::State()
	{ return iState; }
/**
  This function returns the address of DPBusSocket::iDfcQ queue. 
  @return Address of DPBusSocket::iDfcQ
  @see TDfcQue
  */
inline TDfcQue* DPBusSocket::DfcQ()
	{ return &iDfcQ; }

/**
  Gets media state as EDoorOpen if the media door is open, EDoorClosed if the media door is closed.
  @return TMediaState enumeration describing the state of door (EDoorOpen, EDoorClosed)
  @see TMediaState
  */
inline TMediaState DPBusSocket::MediaState()
	{ return iMediaChange->MediaState(); }