os/kernelhwsrv/kernel/eka/include/drivers/comm.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) 1996-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\comm.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
/**
sl@0
    22
 @file
sl@0
    23
 @internalComponent
sl@0
    24
 
sl@0
    25
 This function informs the power model about the electrical current requirements.
sl@0
    26
 @param aCurrent The required electrical current.
sl@0
    27
 @publishedPartner
sl@0
    28
 @deprecated
sl@0
    29
*/
sl@0
    30
inline void DComm::SetCurrent(TInt aCurrent)
sl@0
    31
	{ iLdd->iPowerHandler->SetCurrentConsumption(aCurrent); }
sl@0
    32
sl@0
    33
/**
sl@0
    34
Handles the received character block from the ISR.
sl@0
    35
@param aChar points to received characters.
sl@0
    36
@param aCount number of characters received.
sl@0
    37
@param aXonXoff =1 if XON received, -1 if XOFF received, 0 if neither.
sl@0
    38
@publishedPartner
sl@0
    39
@released
sl@0
    40
*/
sl@0
    41
inline void DComm::ReceiveIsr(TUint* aChar, TInt aCount, TInt aXonXoff)
sl@0
    42
	{ iLdd->ReceiveIsr(aChar,aCount,aXonXoff); }
sl@0
    43
sl@0
    44
/**
sl@0
    45
Fetches the next character to be transmitted in an ISR.
sl@0
    46
@return The character to be transmitted.
sl@0
    47
@publishedPartner
sl@0
    48
@released
sl@0
    49
*/
sl@0
    50
inline TInt DComm::TransmitIsr()
sl@0
    51
	{ return iLdd->TransmitIsr(); }
sl@0
    52
sl@0
    53
/**
sl@0
    54
Checks the progress of transmission against the transmit buffer in the LDD.
sl@0
    55
@publishedPartner
sl@0
    56
@released
sl@0
    57
*/
sl@0
    58
inline void DComm::CheckTxBuffer()
sl@0
    59
	{ iLdd->CheckTxBuffer(); }
sl@0
    60
sl@0
    61
/**
sl@0
    62
Handles a state change in an ISR.
sl@0
    63
@param aSignals State change communicated by the ISR.
sl@0
    64
				For Example: CTS, DSR, DCD, RNG
sl@0
    65
@publishedPartner
sl@0
    66
@released
sl@0
    67
*/
sl@0
    68
inline void DComm::StateIsr(TUint aSignals)
sl@0
    69
	{ iLdd->StateIsr(aSignals); }
sl@0
    70
sl@0
    71
/**
sl@0
    72
Checks the status of transmission.
sl@0
    73
@return ETrue if it transmitting chars, EFalse otherwise.
sl@0
    74
@publishedPartner
sl@0
    75
@released
sl@0
    76
*/
sl@0
    77
inline TBool DComm::Transmitting()
sl@0
    78
	{ return iTransmitting; }
sl@0
    79
sl@0
    80
sl@0
    81
inline TBool DChannelComm::AreAnyPending() const
sl@0
    82
// Return TRUE if any requests are pending.
sl@0
    83
	{ 
sl@0
    84
	return (iRxBufReq.iBuf || iTxBufReq.iBuf);
sl@0
    85
	}
sl@0
    86
sl@0
    87
inline TBool DChannelComm::IsTerminator(TUint8 aChar)
sl@0
    88
	{ return (iTerminatorMask[aChar>>3]&(1<<(aChar&7))); }
sl@0
    89
sl@0
    90
inline void DChannelComm::SetTerminator(TUint8 aChar)
sl@0
    91
	{ iTerminatorMask[aChar>>3] |= (1<<(aChar&7)); }
sl@0
    92
sl@0
    93
inline TInt DChannelComm::RxCount()
sl@0
    94
	{ TInt r=iRxPutIndex-iRxGetIndex; return(r>=0 ? r : r+iRxBufSize); }
sl@0
    95
sl@0
    96
inline TInt DChannelComm::TxCount()
sl@0
    97
	{ TInt r=iTxPutIndex-iTxGetIndex; return(r>=0 ? r : r+iTxBufSize); }
sl@0
    98
sl@0
    99
inline void DChannelComm::EnableTransmit()
sl@0
   100
	{ ((DComm*)iPdd)->EnableTransmit(); }
sl@0
   101
sl@0
   102
inline TInt DChannelComm::IsLineFail(TUint aFailSignals)
sl@0
   103
    { return(~iSignals & aFailSignals); }
sl@0
   104
sl@0
   105
inline void DChannelComm::SetStatus(TState aStatus)
sl@0
   106
	{ iStatus=aStatus; }
sl@0
   107
sl@0
   108
inline TInt DChannelComm::PddStart()
sl@0
   109
	{ return ((DComm*)iPdd)->Start(); }
sl@0
   110
sl@0
   111
inline void DChannelComm::Stop(TStopMode aMode)
sl@0
   112
	{ ((DComm*)iPdd)->Stop(aMode); }
sl@0
   113
sl@0
   114
inline void DChannelComm::PddBreak(TBool aState)
sl@0
   115
	{ ((DComm*)iPdd)->Break(aState); }
sl@0
   116
sl@0
   117
inline TUint DChannelComm::Signals() const
sl@0
   118
	{ return ((DComm*)iPdd)->Signals(); }
sl@0
   119
sl@0
   120
inline void DChannelComm::SetSignals(TUint aSetMask,TUint aClearMask)
sl@0
   121
	{ ((DComm*)iPdd)->SetSignals(aSetMask,aClearMask); }
sl@0
   122
sl@0
   123
inline TInt DChannelComm::ValidateConfig(const TCommConfigV01 &aConfig) const
sl@0
   124
	{ return ((DComm*)iPdd)->ValidateConfig(aConfig); }
sl@0
   125
sl@0
   126
inline void DChannelComm::PddConfigure(TCommConfigV01 &aConfig)
sl@0
   127
	{ ((DComm*)iPdd)->Configure(aConfig); }
sl@0
   128
sl@0
   129
inline void DChannelComm::PddCaps(TDes8 &aCaps) const
sl@0
   130
	{ ((DComm*)iPdd)->Caps(aCaps); }
sl@0
   131
sl@0
   132
inline void DChannelComm::PddCheckConfig(TCommConfigV01& aConfig)
sl@0
   133
	{ ((DComm*)iPdd)->CheckConfig(aConfig); }
sl@0
   134
sl@0
   135
inline TBool DChannelComm::Transmitting()
sl@0
   136
	{ return ((DComm*)iPdd)->iTransmitting; }
sl@0
   137