os/kernelhwsrv/kernel/eka/include/drivers/comm.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1995-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.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @internalComponent
sl@0
    21
*/
sl@0
    22
sl@0
    23
#ifndef __M32COMM_H__
sl@0
    24
#define __M32COMM_H__
sl@0
    25
#include <platform.h>
sl@0
    26
#include <kernel/kpower.h>
sl@0
    27
#include <d32comm.h>
sl@0
    28
#include <e32ver.h>
sl@0
    29
//
sl@0
    30
const TInt KCommsMajorVersionNumber=1;
sl@0
    31
const TInt KCommsMinorVersionNumber=1;
sl@0
    32
const TInt KCommsBuildVersionNumber=KE32BuildVersionNumber;
sl@0
    33
//
sl@0
    34
const TInt KDefaultRxBufferSize=0x800;
sl@0
    35
const TInt KTxBufferSize=0x400;
sl@0
    36
const TInt KMaxHighWaterMark=0x080;
sl@0
    37
//
sl@0
    38
/**
sl@0
    39
	@publishedPartner
sl@0
    40
	@released
sl@0
    41
*/
sl@0
    42
const TUint KReceiveIsrParityError=0x10000000;
sl@0
    43
sl@0
    44
/**
sl@0
    45
	@publishedPartner
sl@0
    46
	@released
sl@0
    47
*/
sl@0
    48
const TUint KReceiveIsrFrameError=0x20000000;
sl@0
    49
sl@0
    50
/**
sl@0
    51
	@publishedPartner
sl@0
    52
	@released
sl@0
    53
*/
sl@0
    54
const TUint KReceiveIsrOverrunError=0x40000000;
sl@0
    55
sl@0
    56
/**
sl@0
    57
	@publishedPartner
sl@0
    58
	@released
sl@0
    59
*/
sl@0
    60
const TUint KReceiveIsrBreakError=0x80000000;
sl@0
    61
sl@0
    62
const TUint KReceiveIsrMaskError=0xF0000000;
sl@0
    63
//
sl@0
    64
const TInt KTxNoChar=-1;
sl@0
    65
//
sl@0
    66
const TUint KReceiveIsrTermChar=0x80000000;
sl@0
    67
const TUint KReceiveIsrMaskComplete=0xf0000000;
sl@0
    68
const TUint KReceiveIsrShift=24;
sl@0
    69
const TUint KReceiveIsrShiftedMask=0x0f;
sl@0
    70
sl@0
    71
/**
sl@0
    72
	@publishedPartner
sl@0
    73
	@released
sl@0
    74
*/
sl@0
    75
const TUint KDTEInputSignals=(KSignalCTS|KSignalDSR|KSignalDCD|KSignalRNG);
sl@0
    76
sl@0
    77
/**
sl@0
    78
	@publishedPartner
sl@0
    79
	@released
sl@0
    80
	
sl@0
    81
	An enumeration listing the stopping modes supported by this driver, to be passed to the Stop function.
sl@0
    82
*/
sl@0
    83
enum TStopMode 
sl@0
    84
	{
sl@0
    85
	/**
sl@0
    86
	Stopping due to normal operational reasons.
sl@0
    87
	*/
sl@0
    88
	EStopNormal,
sl@0
    89
	/**
sl@0
    90
	Stopping due to system power down.
sl@0
    91
	*/
sl@0
    92
	EStopPwrDown,
sl@0
    93
	/**
sl@0
    94
	Emergency stop. Deprecated.
sl@0
    95
	*/
sl@0
    96
	EStopEmergency
sl@0
    97
	};
sl@0
    98
	
sl@0
    99
	 
sl@0
   100
class DChannelComm;
sl@0
   101
sl@0
   102
/**
sl@0
   103
	@publishedPartner
sl@0
   104
	@released
sl@0
   105
	
sl@0
   106
	An abstract class for a serial comm PDD.
sl@0
   107
*/
sl@0
   108
class DComm : public DBase
sl@0
   109
	{
sl@0
   110
public:
sl@0
   111
	/**
sl@0
   112
	Starts receiving characters.
sl@0
   113
	@return KErrNone if successful; otherwise one of the other system wide error codes.
sl@0
   114
	*/
sl@0
   115
	virtual TInt Start() =0;
sl@0
   116
	
sl@0
   117
	/**
sl@0
   118
	Stops receiving characters.
sl@0
   119
	@param aMode The stopping reason as one of TStopMode.
sl@0
   120
	@see TStopMode
sl@0
   121
 	*/
sl@0
   122
	virtual void Stop(TStopMode aMode) =0;
sl@0
   123
	
sl@0
   124
	/**
sl@0
   125
	Starts or stop the uart breaking.
sl@0
   126
	@param aState ETrue to enable break signal(LCR) and EFalse disable break signal(LCR).
sl@0
   127
	*/
sl@0
   128
	virtual void Break(TBool aState) =0;
sl@0
   129
	
sl@0
   130
	/**
sl@0
   131
	Starts transmitting characters.
sl@0
   132
	*/
sl@0
   133
	virtual void EnableTransmit() =0;
sl@0
   134
	
sl@0
   135
	/**
sl@0
   136
	Read and translate the modem control lines.
sl@0
   137
	@return State changes. 
sl@0
   138
			For Example:
sl@0
   139
			RTS, DSR, RI, Carrier Detect.
sl@0
   140
	*/
sl@0
   141
	virtual TUint Signals() const =0;
sl@0
   142
	
sl@0
   143
	/**
sl@0
   144
	Set signals.
sl@0
   145
	@param aSetMask   A bit mask for those modem control signals which are to be asserted.
sl@0
   146
	@param aClearMask A bit mask for those modem control signals which are to be de-asserted.
sl@0
   147
					  Each bit in the bit masks above corresponds to a modem control signal. 
sl@0
   148
					  Bits are defined as one of:
sl@0
   149
					  KSignalCTS
sl@0
   150
					  KSignalDSR
sl@0
   151
					  KSignalDCD
sl@0
   152
					  KSignalRNG
sl@0
   153
					  KSignalRTS
sl@0
   154
					  KSignalDTR
sl@0
   155
					  KSignalBreak
sl@0
   156
	
sl@0
   157
	*/
sl@0
   158
	virtual void SetSignals(TUint aSetMask,TUint aClearMask) =0;
sl@0
   159
	
sl@0
   160
	/**
sl@0
   161
	Validates a new configuration.
sl@0
   162
	@param  aConfig Const reference to the comms configuration structure; to hold the configuration settings for serial comm port.
sl@0
   163
	@return KErrNone if successful; otherwise one of the other system wide error codes.
sl@0
   164
	@see TCommConfigV01
sl@0
   165
	*/
sl@0
   166
	virtual TInt ValidateConfig(const TCommConfigV01 &aConfig) const =0;
sl@0
   167
	
sl@0
   168
	/**
sl@0
   169
	Configures the hardware device. This is device specific API, that provides functionality to configure the uart.
sl@0
   170
	@param aConfig configuration settings for the device.
sl@0
   171
	@see TCommConfigV01
sl@0
   172
	*/
sl@0
   173
	virtual void Configure(TCommConfigV01 &aConfig) =0;
sl@0
   174
	
sl@0
   175
	/**
sl@0
   176
	Gets the capabilities of the comm PDD.
sl@0
   177
	@param aCaps On return this descriptor should have been filled with capabilities. 
sl@0
   178
	*/
sl@0
   179
	virtual void Caps(TDes8 &aCaps) const =0;
sl@0
   180
	
sl@0
   181
	/**
sl@0
   182
	Checks the configuration.
sl@0
   183
	@param aConfig A reference to the structure TCommConfigV01 with configuration to check.
sl@0
   184
	@see TCommConfigV01
sl@0
   185
	*/
sl@0
   186
	virtual void CheckConfig(TCommConfigV01& aConfig)=0;
sl@0
   187
	
sl@0
   188
	/**
sl@0
   189
	Disable all IRQs.
sl@0
   190
	@return The state of the interrupts before disable, which is used to restore the interrupt state.
sl@0
   191
	*/
sl@0
   192
	virtual TInt DisableIrqs()=0;
sl@0
   193
	
sl@0
   194
	/**
sl@0
   195
	Restore IRQs to the passed level.
sl@0
   196
	@param  aIrq The level to restore the IRQs to.
sl@0
   197
	*/
sl@0
   198
	virtual void RestoreIrqs(TInt aIrq)=0;
sl@0
   199
	
sl@0
   200
	/**
sl@0
   201
	Returns a pointer to the DFC queue that should be used by the comm LDD.
sl@0
   202
	@param 	aUnit Unit for which the DfcQ is retrieved.
sl@0
   203
	@return A Pointer to the DFC queue that should be used by the USB LDD.
sl@0
   204
	@see TDfcQue
sl@0
   205
	*/
sl@0
   206
	virtual TDfcQue* DfcQ(TInt aUnit)=0;
sl@0
   207
	
sl@0
   208
	/**
sl@0
   209
	Checks power status.
sl@0
   210
	@return ETrue if status is good, EFalse otherwise.
sl@0
   211
	*/
sl@0
   212
	inline TBool PowerGood();
sl@0
   213
	inline void SetCurrent(TInt aCurrent);
sl@0
   214
	inline void ReceiveIsr(TUint* aChar, TInt aCount, TInt aXonXoff);
sl@0
   215
	inline TInt TransmitIsr();
sl@0
   216
	inline void CheckTxBuffer();
sl@0
   217
	inline void StateIsr(TUint aSignals);
sl@0
   218
	inline TBool Transmitting();
sl@0
   219
public:
sl@0
   220
	/**
sl@0
   221
	Pointer to the logical channel object which is derived from DLogicChannel.
sl@0
   222
	*/
sl@0
   223
	DChannelComm *iLdd;
sl@0
   224
	/**
sl@0
   225
	A Boolean flag to indicate when transmission is in progress [ETrue=(Trasnmission in progress)].
sl@0
   226
	*/
sl@0
   227
	TBool iTransmitting;
sl@0
   228
	};
sl@0
   229
sl@0
   230
/**
sl@0
   231
@internalComponent
sl@0
   232
*/
sl@0
   233
class DDeviceComm : public DLogicalDevice
sl@0
   234
	{
sl@0
   235
public:
sl@0
   236
	DDeviceComm();
sl@0
   237
	virtual TInt Install();
sl@0
   238
	virtual void GetCaps(TDes8 &aDes) const;
sl@0
   239
	virtual TInt Create(DLogicalChannelBase*& aChannel);
sl@0
   240
	};
sl@0
   241
sl@0
   242
sl@0
   243
//
sl@0
   244
// TClientSingleBufferRequest
sl@0
   245
//
sl@0
   246
class TClientSingleBufferRequest
sl@0
   247
{
sl@0
   248
public:
sl@0
   249
	TClientSingleBufferRequest() 
sl@0
   250
		{
sl@0
   251
		Reset();
sl@0
   252
		}
sl@0
   253
	~TClientSingleBufferRequest() 
sl@0
   254
		{
sl@0
   255
		if (iBufReq)
sl@0
   256
			Kern::DestroyClientBufferRequest(iBufReq);
sl@0
   257
		Reset();
sl@0
   258
		}
sl@0
   259
	void Reset()
sl@0
   260
		{
sl@0
   261
		iBufReq = NULL;
sl@0
   262
		iBuf = NULL;
sl@0
   263
		iLen = 0;
sl@0
   264
		}
sl@0
   265
	TInt Create()
sl@0
   266
		{
sl@0
   267
		if (iBufReq)
sl@0
   268
			return KErrNone;
sl@0
   269
		TInt r = Kern::CreateClientBufferRequest(iBufReq, 1, TClientBufferRequest::EPinVirtual);
sl@0
   270
		return r;
sl@0
   271
		}
sl@0
   272
	TInt Setup(TRequestStatus* aStatus, TAny* aDes, TInt aLen=0) 
sl@0
   273
		{
sl@0
   274
		TInt r = iBufReq->Setup(iBuf, aStatus, aDes);
sl@0
   275
		if (r == KErrNone)
sl@0
   276
			iLen = aLen;
sl@0
   277
		return r;
sl@0
   278
		}
sl@0
   279
	TInt SetupFromPtr(TRequestStatus* aStatus, TLinAddr aPtr, TInt aLen) 
sl@0
   280
		{
sl@0
   281
		TInt r = iBufReq->Setup(iBuf, aStatus, aPtr, aLen);
sl@0
   282
		iLen = aLen;
sl@0
   283
		return r;
sl@0
   284
		}
sl@0
   285
	void Complete(DThread* aClient, TInt aReason) 
sl@0
   286
		{
sl@0
   287
		if (iBufReq)
sl@0
   288
			{
sl@0
   289
			iBuf = NULL;
sl@0
   290
			Kern::QueueBufferRequestComplete(aClient, iBufReq, aReason);
sl@0
   291
			}
sl@0
   292
		}
sl@0
   293
	TClientBufferRequest* iBufReq;
sl@0
   294
	TClientBuffer* iBuf;
sl@0
   295
	TInt iLen;
sl@0
   296
};
sl@0
   297
sl@0
   298
class DCommPowerHandler;
sl@0
   299
/**
sl@0
   300
@internalComponent
sl@0
   301
*/
sl@0
   302
class DChannelComm : public DLogicalChannel
sl@0
   303
	{
sl@0
   304
public:
sl@0
   305
	enum TState {EOpen,EActive,EClosed};
sl@0
   306
	enum TRequest {ERx=1, ETx=2, ESigChg=4, EBreak=8, EAll=0xff};
sl@0
   307
sl@0
   308
	DChannelComm();
sl@0
   309
	~DChannelComm();
sl@0
   310
	virtual void ReceiveIsr(TUint* aChar, TInt aCount, TInt aXonXoff);
sl@0
   311
	virtual void CheckTxBuffer();
sl@0
   312
	virtual void StateIsr(TUint aSignals);
sl@0
   313
	virtual TInt TransmitIsr();
sl@0
   314
	virtual TInt RequestUserHandle(DThread* aThread, TOwnerType aType);
sl@0
   315
sl@0
   316
	/**	@publishedPartner
sl@0
   317
		@released */
sl@0
   318
	virtual void UpdateSignals(TUint aSignals);
sl@0
   319
	inline void SetStatus(TState aStatus);
sl@0
   320
	virtual TInt SendMsg(TMessageBase* aMsg);
sl@0
   321
protected:
sl@0
   322
	virtual TInt DoCreate(TInt aUnit, const TDesC8* anInfo, const TVersion& aVer);
sl@0
   323
	virtual void HandleMsg(TMessageBase* aMsg);
sl@0
   324
	void DoCancel(TInt aMask);
sl@0
   325
	TInt DoControl(TInt aId, TAny* a1, TAny* a2);
sl@0
   326
	void DoRequest(TInt aId, TAny* a1, TAny* a2);
sl@0
   327
	void DoPowerUp();
sl@0
   328
	void Start();
sl@0
   329
	TInt Shutdown();
sl@0
   330
	void BreakOn();
sl@0
   331
	void BreakOff();
sl@0
   332
	void AssertFlowControl();
sl@0
   333
	void ReleaseFlowControl();
sl@0
   334
	TInt SetRxBufferSize(TInt aSize);
sl@0
   335
	void ResetBuffers(TBool aResetTx);
sl@0
   336
	void DoDrainRxBuffer(TInt aEndIndex);
sl@0
   337
	void DoFillTxBuffer();
sl@0
   338
	void DoCompleteRx();
sl@0
   339
	void DoCompleteTx();
sl@0
   340
	void Complete(TInt aMask, TInt aReason);
sl@0
   341
	inline void DrainRxBuffer()	{ iRxDrainDfc.Add(); }
sl@0
   342
	inline void RxComplete();
sl@0
   343
	inline void TxComplete();
sl@0
   344
protected:
sl@0
   345
	inline void EnableTransmit();
sl@0
   346
	inline TInt IsLineFail(TUint aFailSignals);
sl@0
   347
	inline TInt PddStart();
sl@0
   348
	inline void Stop(TStopMode aMode);
sl@0
   349
	inline void PddBreak(TBool aState);
sl@0
   350
	inline TUint Signals() const;
sl@0
   351
	inline void SetSignals(TUint aSetMask,TUint aClearMask);
sl@0
   352
	inline TInt ValidateConfig(const TCommConfigV01 &aConfig) const;
sl@0
   353
	inline void PddConfigure(TCommConfigV01 &aConfig);
sl@0
   354
	inline void PddCaps(TDes8 &aCaps) const;
sl@0
   355
	inline void PddCheckConfig(TCommConfigV01& aConfig);
sl@0
   356
	inline TBool Transmitting();
sl@0
   357
private:
sl@0
   358
	static void PowerUpDfc(TAny* aPtr);
sl@0
   359
	static void PowerDownDfc(TAny* aPtr);
sl@0
   360
	static void DrainRxDfc(TAny* aPtr);
sl@0
   361
	static void FillTxDfc(TAny* aPtr);
sl@0
   362
	static void CompleteRxDfc(TAny* aPtr);
sl@0
   363
	static void CompleteTxDfc(TAny* aPtr);
sl@0
   364
	static void TimerDfcFn(TAny* aPtr);
sl@0
   365
	static void SigNotifyDfc(TAny* aPtr);
sl@0
   366
	void TimerDfc();
sl@0
   367
	static void MsCallBack(TAny* aPtr);
sl@0
   368
	inline TBool IsTerminator(TUint8 aChar);
sl@0
   369
	inline void SetTerminator(TUint8 aChar);
sl@0
   370
	inline TInt RxCount();
sl@0
   371
	inline TInt TxCount();
sl@0
   372
	inline TBool AreAnyPending() const;
sl@0
   373
	void InitiateRead(TInt aLength);
sl@0
   374
	void InitiateWrite();
sl@0
   375
	void DoSigNotify();
sl@0
   376
	void UpdateAndProcessSignals();
sl@0
   377
sl@0
   378
	
sl@0
   379
	TUint FailSignals(TUint aHandshake);
sl@0
   380
	TUint HoldSignals(TUint aHandshake);
sl@0
   381
	TUint FlowControlSignals(TUint aHandshake);
sl@0
   382
	TUint AutoSignals(TUint aHandshake);
sl@0
   383
	TInt SetConfig(TCommConfigV01& aConfig);
sl@0
   384
	void CheckOutputHeld();
sl@0
   385
	void RestartDelayedTransmission();
sl@0
   386
sl@0
   387
	static void FinishBreak(TAny* aSelf); // Called when timer indicating break should finish expires
sl@0
   388
	void QueueFinishBreakDfc();	// Called to queue dfc to finish break
sl@0
   389
	static void FinishBreakDfc(TAny* aSelf); // Dfc called to finish break
sl@0
   390
	void FinishBreakImplementation(TInt aError); // Actual implementation to finish break
sl@0
   391
sl@0
   392
public:
sl@0
   393
	// Port configuration
sl@0
   394
	TCommConfigV01 iConfig;
sl@0
   395
sl@0
   396
	/**	@publishedPartner
sl@0
   397
		@released */
sl@0
   398
	TUint iRxXonChar;
sl@0
   399
sl@0
   400
	/**	@publishedPartner
sl@0
   401
		@released */
sl@0
   402
	TUint iRxXoffChar;
sl@0
   403
sl@0
   404
	TInt TurnaroundSet(TUint aNewTurnaroundMilliSeconds);
sl@0
   405
	TBool TurnaroundStopTimer();
sl@0
   406
	TInt TurnaroundClear();
sl@0
   407
	TInt RestartTurnaroundTimer();
sl@0
   408
	static void TurnaroundStartDfc(TAny* aSelf);
sl@0
   409
	void TurnaroundStartDfcImplementation(TBool inIsr);
sl@0
   410
	static void TurnaroundTimeout(TAny* aSelf);
sl@0
   411
	void TurnaroundTimeoutImplementation();
sl@0
   412
sl@0
   413
	// General items
sl@0
   414
	DThread* iClient;
sl@0
   415
	DCommPowerHandler* iPowerHandler;
sl@0
   416
	TDfc iPowerUpDfc;
sl@0
   417
	TDfc iPowerDownDfc;
sl@0
   418
	TState iStatus;
sl@0
   419
	TDfc iRxDrainDfc;
sl@0
   420
	TDfc iRxCompleteDfc;
sl@0
   421
	TDfc iTxFillDfc;
sl@0
   422
	TDfc iTxCompleteDfc;
sl@0
   423
	TDfc iTimerDfc;
sl@0
   424
	TDfc iSigNotifyDfc;
sl@0
   425
	TUint iFlags;				//
sl@0
   426
	TUint iSignals;				// State of handshake lines
sl@0
   427
	TUint iFailSignals;			// 1 bit means line low causes line fail error
sl@0
   428
	TUint iHoldSignals;			// 1 bit means line low halts TX
sl@0
   429
	TUint iFlowControlSignals;	// 1 bit means signal is used for RX flow control
sl@0
   430
	TUint iAutoSignals;			// 1 bit means signal is high when channel is open
sl@0
   431
	TUint8 iTerminatorMask[32];	// 1 bit means character is a terminator
sl@0
   432
	TUint8 iStandby;			// ETrue means the machine is transiting to/from standby
sl@0
   433
	TUint8 iMsgHeld;			// ETrue means a message has been held up waiting the end of from standby transition 
sl@0
   434
sl@0
   435
	// Min Turnaround time between Rx and Tx
sl@0
   436
	TUint		iTurnaroundMicroSeconds;		// delay after a receive before transmission in us
sl@0
   437
	TUint		iTurnaroundMinMilliSeconds;		// delay after a receive before transmission in ms
sl@0
   438
	TUint       iTurnaroundTimerStartTime;      // stores the start time of the turnaround timer.
sl@0
   439
	TUint8      iTurnaroundTimerStartTimeValid; // stores turnaround timer status 0 after boot, 1 if the timestamp is valid, and 2 if invalid
sl@0
   440
	TUint8		iTurnaroundTimerRunning;		// a receive has started the timer
sl@0
   441
	TUint8		iTurnaroundTransmitDelayed;		// a transmission is held until time elapses after a receive
sl@0
   442
	TUint8		iSpare;
sl@0
   443
	NTimer	iTurnaroundTimer;				// used to delay transmission after a receive
sl@0
   444
	TDfc		iTurnaroundDfc;					// used in interrupt space, to trigger a call in user space
sl@0
   445
sl@0
   446
	// RX buffer related items
sl@0
   447
	TUint8 *iRxCharBuf;			// stores received characters
sl@0
   448
	TInt iRxBufSize;			// Size of the LDD receive buffer. 
sl@0
   449
	TUint8 *iRxErrorBuf;		// stores received character error status
sl@0
   450
	volatile TInt iRxPutIndex;	// Index for next RX char to be stored
sl@0
   451
	TInt iRxGetIndex;			// Index for next RX char to be retrieved
sl@0
   452
	TInt iFlowControlLowerThreshold;	// release flow control threshold
sl@0
   453
	TInt iFlowControlUpperThreshold;	// assert flow control threshold
sl@0
   454
	TInt iRxDrainThreshold;				// drain rx buffer before completion threshold
sl@0
   455
	TInt iRxBufCompleteIndex;	// One after last char to be forwarded due to completion
sl@0
   456
	TBool iInputHeld;			// TRUE if we have asserted flow control
sl@0
   457
sl@0
   458
	// RX client related items
sl@0
   459
	TClientSingleBufferRequest iRxBufReq;
sl@0
   460
	TInt iRxDesPos;				// pos of next char to be stored in client descriptor
sl@0
   461
	TUint8 iRxOutstanding;		// TRUE if a client read is outstanding
sl@0
   462
	TUint8 iNotifyData;			// TRUE if data available notifier outstanding
sl@0
   463
	TInt iRxError;
sl@0
   464
	NTimer iTimer;				// timer for ReadOneOrMore
sl@0
   465
	TInt iTimeout;				// timeout period for ReadOneOrMore
sl@0
   466
	TInt iRxOneOrMore;
sl@0
   467
sl@0
   468
	// TX buffer related items
sl@0
   469
	TUint8 *iTxBuffer;			// stores characters awaiting transmission
sl@0
   470
	TInt iTxPutIndex;			// Index for next TX char to be stored
sl@0
   471
	volatile TInt iTxGetIndex;	// Index for next TX char to be output
sl@0
   472
	TInt iTxBufSize;
sl@0
   473
	TInt iTxFillThreshold;		// fill tx buffer threshold
sl@0
   474
	TInt iOutputHeld;			// bits set if peer has asserted flow control
sl@0
   475
	TInt iJamChar;				// character to jam into TX output stream
sl@0
   476
sl@0
   477
	// TX client related items
sl@0
   478
	TClientSingleBufferRequest iTxBufReq;
sl@0
   479
	TInt iTxDesPos;				// pos of next char to be fetched from client descriptor
sl@0
   480
	TBool iTxOutstanding;		// TRUE if a client write is outstanding
sl@0
   481
	TInt iTxError;
sl@0
   482
sl@0
   483
	// Signal change notification
sl@0
   484
	TUint iNotifiedSignals;
sl@0
   485
	TUint iSigNotifyMask;
sl@0
   486
	TClientDataRequest<TUint>* iSignalsReq;
sl@0
   487
sl@0
   488
	// hackery
sl@0
   489
	TVirtualPinObject* iPinObjSetConfig;
sl@0
   490
	TInt iReceived;
sl@0
   491
	
sl@0
   492
	// Break related items
sl@0
   493
	TInt		 iBreakTimeMicroSeconds;
sl@0
   494
	TTickLink iBreakTimer; // Used to time how long the break should last for
sl@0
   495
	TDfc		 iBreakDfc;	
sl@0
   496
	TClientRequest* iBreakStatus;
sl@0
   497
	TBool		iBreakDelayedTx;
sl@0
   498
	TBool		iTurnaroundBreakDelayed;
sl@0
   499
sl@0
   500
	TSpinLock iLock;
sl@0
   501
	};
sl@0
   502
sl@0
   503
/**
sl@0
   504
@internalComponent
sl@0
   505
*/
sl@0
   506
class DCommPowerHandler : public DPowerHandler
sl@0
   507
	{
sl@0
   508
public: // from DPOwerHandler
sl@0
   509
	void PowerUp();
sl@0
   510
	void PowerDown(TPowerState);
sl@0
   511
public:
sl@0
   512
	DCommPowerHandler(DChannelComm* aChannel);
sl@0
   513
public:
sl@0
   514
	DChannelComm* iChannel;
sl@0
   515
	};
sl@0
   516
sl@0
   517
#include <drivers/comm.inl>
sl@0
   518
sl@0
   519
#endif