os/kernelhwsrv/kernel/eka/include/drivers/pbus.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// e32\include\drivers\pbus.inl
sl@0
    15
// 
sl@0
    16
// WARNING: This file contains some APIs which are internal and are subject
sl@0
    17
//          to change without noticed. Such APIs should therefore not be used
sl@0
    18
//          outside the Kernel and Hardware Services package.
sl@0
    19
//
sl@0
    20
sl@0
    21
// Class TPBusCallBack
sl@0
    22
inline void TPBusCallBack::NotifyPBusStateChange(TInt aState, TInt anError)
sl@0
    23
	{ if (iFunction) (*iFunction)(iPtr,EPBusStateChange,(TAny*)aState,(TAny*)anError); }
sl@0
    24
inline void TPBusCallBack::NotifyCustom(TInt aParam, TInt anError)
sl@0
    25
	{ if (iFunction) (*iFunction)(iPtr,EPBusCustomNotification,(TAny*)aParam,(TAny*)anError); }
sl@0
    26
inline void TPBusCallBack::Isr(TInt anId)
sl@0
    27
	{ if (iIntMask&(1<<anId)) (*iIsr)(iPtr,anId); }
sl@0
    28
inline TInt TPBusCallBack::PowerUp()
sl@0
    29
	{ return iSocket->PowerUp(); }
sl@0
    30
inline TInt TPBusCallBack::PBusState()
sl@0
    31
	{ return iSocket->State(); }
sl@0
    32
inline TDfcQue* TPBusCallBack::DfcQ()
sl@0
    33
	{ return iSocket->DfcQ(); }
sl@0
    34
inline void TPBusCallBack::Add()
sl@0
    35
	{ iSocket->Add(this); }
sl@0
    36
sl@0
    37
// Class DPBusPsuBase
sl@0
    38
/**
sl@0
    39
Checks whether the PSU is off.
sl@0
    40
sl@0
    41
The PSU is off when it is in the EPsuOff state.
sl@0
    42
sl@0
    43
@see EPsuOff
sl@0
    44
sl@0
    45
@return ETrue PSU state is EPsuOff, EFalse otherwise
sl@0
    46
*/
sl@0
    47
inline TBool DPBusPsuBase::IsOff() 
sl@0
    48
	{return(iState==EPsuOff);}
sl@0
    49
	
sl@0
    50
/**
sl@0
    51
Limits the PSU current to a safe level.
sl@0
    52
*/
sl@0
    53
inline void DPBusPsuBase::SetCurrLimited()
sl@0
    54
	{iCurrLimited=ETrue;}
sl@0
    55
	
sl@0
    56
/**
sl@0
    57
Resets inactivity and not-locked counts.
sl@0
    58
*/
sl@0
    59
inline void DPBusPsuBase::ResetInactivityTimer()
sl@0
    60
	{iInactivityCount=0; iNotLockedCount=0;}
sl@0
    61
	
sl@0
    62
/**
sl@0
    63
Gets the voltage level, or range of supported voltage levels.
sl@0
    64
sl@0
    65
@return The voltage level, or range of voltages supported.
sl@0
    66
sl@0
    67
@see TPBusPsuInfo::iVoltageSupported
sl@0
    68
*/	
sl@0
    69
inline TUint DPBusPsuBase::VoltageSupported()
sl@0
    70
	{return(iVoltageSupported);}
sl@0
    71
	
sl@0
    72
/**
sl@0
    73
Gets the maximum current (in microAmps) that the PSU is able to supply.
sl@0
    74
sl@0
    75
@return Maximum current (in microAmps).
sl@0
    76
sl@0
    77
@see TPBusPsuInfo::iMaxCurrentInMicroAmps
sl@0
    78
*/	
sl@0
    79
inline TInt DPBusPsuBase::MaxCurrentInMicroAmps()
sl@0
    80
	{return(iMaxCurrentInMicroAmps);}
sl@0
    81
sl@0
    82
sl@0
    83
// class DPBusSocket
sl@0
    84
sl@0
    85
/**
sl@0
    86
  Gets the current PBUS state. 
sl@0
    87
  @return Current PBus state.
sl@0
    88
  @see TPBusState
sl@0
    89
  */
sl@0
    90
inline TInt DPBusSocket::State()
sl@0
    91
	{ return iState; }
sl@0
    92
/**
sl@0
    93
  This function returns the address of DPBusSocket::iDfcQ queue. 
sl@0
    94
  @return Address of DPBusSocket::iDfcQ
sl@0
    95
  @see TDfcQue
sl@0
    96
  */
sl@0
    97
inline TDfcQue* DPBusSocket::DfcQ()
sl@0
    98
	{ return &iDfcQ; }
sl@0
    99
sl@0
   100
/**
sl@0
   101
  Gets media state as EDoorOpen if the media door is open, EDoorClosed if the media door is closed.
sl@0
   102
  @return TMediaState enumeration describing the state of door (EDoorOpen, EDoorClosed)
sl@0
   103
  @see TMediaState
sl@0
   104
  */
sl@0
   105
inline TMediaState DPBusSocket::MediaState()
sl@0
   106
	{ return iMediaChange->MediaState(); }
sl@0
   107
sl@0
   108