os/kernelhwsrv/kernel/eka/include/drivers/ethernet.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of the License "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description:
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
// Ethernet.h
sl@0
    18
//
sl@0
    19
//
sl@0
    20
/** @file ethernet.h
sl@0
    21
Base classes for implementating ethernet support (Kernel-side only)
sl@0
    22
@internalComponent
sl@0
    23
*/
sl@0
    24
sl@0
    25
#ifndef __ETHERNET_H__
sl@0
    26
#define __ETHERNET_H__
sl@0
    27
#include <platform.h>
sl@0
    28
#include <d32ethernet.h>
sl@0
    29
#include <e32ver.h>
sl@0
    30
sl@0
    31
/** @addtogroup enet Ethernet Drivers
sl@0
    32
 *  Kernel Ethernet Support
sl@0
    33
 */
sl@0
    34
sl@0
    35
/** @addtogroup enet_ldd Driver LDD's
sl@0
    36
 * @ingroup enet
sl@0
    37
 */
sl@0
    38
sl@0
    39
const TInt KEthernetMajorVersionNumber = 1;
sl@0
    40
const TInt KEthernetMinorVersionNumber = 0;
sl@0
    41
const TInt KEthernetBuildVersionNumber = KE32BuildVersionNumber;
sl@0
    42
sl@0
    43
/**
sl@0
    44
	@publishedPartner
sl@0
    45
	@released
sl@0
    46
*/
sl@0
    47
const TInt KTxWorkBudgetLimit  = 10;
sl@0
    48
sl@0
    49
// Card Rx constants.
sl@0
    50
const TInt KNumRXBuffers       = 40;
sl@0
    51
/**
sl@0
    52
	@publishedPartner
sl@0
    53
	@released
sl@0
    54
*/
sl@0
    55
const TInt KIRQWorkBudgetLimit = 4;
sl@0
    56
/**
sl@0
    57
	@publishedPartner
sl@0
    58
	@released
sl@0
    59
*/
sl@0
    60
const TInt KRxWorkBudgetLimit  = 6;
sl@0
    61
sl@0
    62
/**
sl@0
    63
	@publishedPartner
sl@0
    64
	@released
sl@0
    65
*/
sl@0
    66
const TInt KMaxEthernetPacket = 1518;
sl@0
    67
/**
sl@0
    68
	@publishedPartner
sl@0
    69
	@released
sl@0
    70
*/
sl@0
    71
const TUint16 CRC_LEN = 4;
sl@0
    72
sl@0
    73
/** @addtogroup enet_pdd Driver PDD's
sl@0
    74
 * @ingroup enet
sl@0
    75
 * @{
sl@0
    76
 */
sl@0
    77
sl@0
    78
/**
sl@0
    79
    Different Stop Modes
sl@0
    80
	@publishedPartner
sl@0
    81
	@released
sl@0
    82
 */
sl@0
    83
enum TStopMode 
sl@0
    84
    {
sl@0
    85
    EStopNormal,    /**< Finish sending and then stop */
sl@0
    86
    EStopEmergency  /**< Just stop now */
sl@0
    87
    };
sl@0
    88
sl@0
    89
sl@0
    90
class DChannelEthernet;
sl@0
    91
sl@0
    92
sl@0
    93
/**
sl@0
    94
	Ethernet driver base class
sl@0
    95
	The base class for an ethernet driver that doesn't support power control
sl@0
    96
	@publishedPartner
sl@0
    97
	@released
sl@0
    98
*/
sl@0
    99
class DEthernet : public DBase
sl@0
   100
    {
sl@0
   101
    public:
sl@0
   102
    /**
sl@0
   103
     * Start receiving frames
sl@0
   104
     * @return KErrNone if driver started
sl@0
   105
     */
sl@0
   106
    virtual TInt Start() =0;
sl@0
   107
    /**
sl@0
   108
     * Stop receiving frames
sl@0
   109
     * @param aMode The stop mode
sl@0
   110
     */
sl@0
   111
    virtual void Stop(TStopMode aMode) =0;
sl@0
   112
sl@0
   113
    /**
sl@0
   114
     * Validate a new config
sl@0
   115
     * Validates a new configuration should be called before Configure
sl@0
   116
     * @param aConfig is the configuration to be validated
sl@0
   117
     * @return ETrue or EFalse if the Configuration is allowed
sl@0
   118
     * @see Configure()
sl@0
   119
     */
sl@0
   120
    virtual TInt ValidateConfig(const TEthernetConfigV01 &aConfig) const =0;
sl@0
   121
    /**
sl@0
   122
     * Configure the device
sl@0
   123
     * Reconfigure the device using the new configuration supplied.
sl@0
   124
     * This should not change the MAC address.
sl@0
   125
     * @param aConfig The new configuration
sl@0
   126
     * @see ValidateConfig()
sl@0
   127
     * @see MacConfigure()
sl@0
   128
     */
sl@0
   129
    virtual TInt Configure(TEthernetConfigV01 &aConfig) =0;
sl@0
   130
    /**
sl@0
   131
     * Change the MAC address
sl@0
   132
     * Attempt to change the MAC address of the device
sl@0
   133
     * @param aConfig A Configuration containing the new MAC
sl@0
   134
     * @see Configure()
sl@0
   135
     */
sl@0
   136
    virtual void MacConfigure(TEthernetConfigV01 &aConfig) =0;
sl@0
   137
    /**
sl@0
   138
     * Get the current config from the chip
sl@0
   139
     * This returns the current configuration of the chip with the folling fields
sl@0
   140
     * The Transmit Speed
sl@0
   141
     * The Duplex Setting
sl@0
   142
     * The MAC address
sl@0
   143
     * @param aConfig is a TEthernetConfigV01 referance that will be filled in
sl@0
   144
     */
sl@0
   145
    virtual void GetConfig(TEthernetConfigV01 &aConfig) const =0;
sl@0
   146
    /**
sl@0
   147
     * Check a configuration
sl@0
   148
     * @param aConfig	a reference to the structure TEthernetConfigV01 with configuration to check
sl@0
   149
     */
sl@0
   150
    virtual void CheckConfig(TEthernetConfigV01& aConfig)=0;
sl@0
   151
sl@0
   152
    /**
sl@0
   153
     * Querie the device's capibilitys
sl@0
   154
     * @param aCaps To be filled in with the capibilites
sl@0
   155
     */
sl@0
   156
    virtual void Caps(TDes8 &aCaps) const =0;
sl@0
   157
sl@0
   158
    /**
sl@0
   159
     * Transmit data
sl@0
   160
     * @param aBuffer referance to the data to be sent
sl@0
   161
     * @return KErrNone if the data has been sent
sl@0
   162
     */
sl@0
   163
    virtual TInt Send(TBuf8<KMaxEthernetPacket+32> &aBuffer) =0;
sl@0
   164
    /**
sl@0
   165
     * Retrieve data from the device
sl@0
   166
     * Pull the received data out of the device and into the supplied buffer. 
sl@0
   167
     * Need to be told if the buffer is OK to use as if it not we could dump 
sl@0
   168
     * the waiting frame in order to clear the interrupt if necessory.
sl@0
   169
     * @param aBuffer Referance to the buffer to be used to store the data in
sl@0
   170
     * @param okToUse Bool to indicate if the buffer is usable
sl@0
   171
     * @return KErrNone if the buffer has been filled.
sl@0
   172
     */
sl@0
   173
    virtual TInt ReceiveFrame(TBuf8<KMaxEthernetPacket+32> &aBuffer, 
sl@0
   174
                              TBool okToUse) =0;
sl@0
   175
sl@0
   176
    /**
sl@0
   177
     * Disables all IRQ's
sl@0
   178
     * @return The IRQ level before it was changed
sl@0
   179
     * @see RestoreIrqs()
sl@0
   180
     */
sl@0
   181
    virtual TInt DisableIrqs()=0;
sl@0
   182
    /**
sl@0
   183
     * Restore the IRQ's to the supplied level
sl@0
   184
     * @param aIrq The level to set the irqs to.
sl@0
   185
     * @see DisableIrqs()
sl@0
   186
     */
sl@0
   187
    virtual void RestoreIrqs(TInt aIrq)=0;
sl@0
   188
    /**
sl@0
   189
     * Return the DFC Queue that this device should use
sl@0
   190
     * @param aUnit The Channel number
sl@0
   191
     * @return Then DFC Queue to use
sl@0
   192
     */
sl@0
   193
    virtual TDfcQue* DfcQ(TInt aUnit)=0;
sl@0
   194
    /**
sl@0
   195
     * The Receive Isr for the device
sl@0
   196
     */
sl@0
   197
    inline void ReceiveIsr();
sl@0
   198
    
sl@0
   199
#ifdef ETH_CHIP_IO_ENABLED
sl@0
   200
    virtual TInt BgeChipIOCtrl(TPckgBuf<TChipIOInfo> &aIOData)=0;
sl@0
   201
#endif
sl@0
   202
    /**
sl@0
   203
     * A pointer to the logical device drivers channel that owns this device
sl@0
   204
     */
sl@0
   205
    DChannelEthernet * iLdd ;
sl@0
   206
    };
sl@0
   207
sl@0
   208
/** @} */ // End of pdd group
sl@0
   209
sl@0
   210
/**
sl@0
   211
 * @addtogroup enet_ldd_nopm_nopccard Ethernet LDD Not PCMCIA and No Power Managment
sl@0
   212
 * @ingroup enet_ldd
sl@0
   213
 * @ingroup enet_misa
sl@0
   214
 * @ingroup enet_wins
sl@0
   215
 * @{
sl@0
   216
 */
sl@0
   217
sl@0
   218
/**
sl@0
   219
	Ethernet logical device
sl@0
   220
	The class representing the ethernet logical device
sl@0
   221
	@internalComponent
sl@0
   222
*/
sl@0
   223
class DDeviceEthernet : public DLogicalDevice
sl@0
   224
    {
sl@0
   225
    public:
sl@0
   226
    /**
sl@0
   227
     * The constructor
sl@0
   228
     */
sl@0
   229
    DDeviceEthernet();
sl@0
   230
    /**
sl@0
   231
     * Install the device
sl@0
   232
     */
sl@0
   233
    virtual TInt Install();
sl@0
   234
    /**
sl@0
   235
     * Get the Capabilites of the device
sl@0
   236
     * @param aDes descriptor that will contain the returned capibilites
sl@0
   237
     */
sl@0
   238
    virtual void GetCaps(TDes8 &aDes) const;
sl@0
   239
    /**
sl@0
   240
     * Create a logical channel to the device
sl@0
   241
     */
sl@0
   242
    virtual TInt Create(DLogicalChannelBase*& aChannel);
sl@0
   243
    };
sl@0
   244
sl@0
   245
sl@0
   246
/**
sl@0
   247
	Stores the Tx and RX buffers for use in a ethernet logical channel
sl@0
   248
	@internalComponent
sl@0
   249
 */
sl@0
   250
class DChannelEthernetFIFO 
sl@0
   251
    {
sl@0
   252
    public:
sl@0
   253
    /**
sl@0
   254
     * The TX Buffer
sl@0
   255
     */
sl@0
   256
    TBuf8<KMaxEthernetPacket+32> iTxBuf;
sl@0
   257
sl@0
   258
    /**
sl@0
   259
     * The constructor
sl@0
   260
     */
sl@0
   261
    DChannelEthernetFIFO();
sl@0
   262
    /**
sl@0
   263
     * The destructor
sl@0
   264
     */
sl@0
   265
    ~DChannelEthernetFIFO();
sl@0
   266
    /**
sl@0
   267
     * Get a empty receive buffer
sl@0
   268
     * @return NULL or a pointer to the free buffer
sl@0
   269
     */
sl@0
   270
    TBuf8<KMaxEthernetPacket+32> * GetFree();
sl@0
   271
    /**
sl@0
   272
     * Get the next full buffer
sl@0
   273
     * @return NULL or a pointer to the full buffer
sl@0
   274
     */ 
sl@0
   275
    TBuf8<KMaxEthernetPacket+32> * GetNext();
sl@0
   276
    /**
sl@0
   277
     * Move on to the next full buffer
sl@0
   278
     */
sl@0
   279
    void SetNext();
sl@0
   280
sl@0
   281
    private:
sl@0
   282
    /**
sl@0
   283
     * The array of receive buffers
sl@0
   284
     */
sl@0
   285
    TBuf8<KMaxEthernetPacket+32> iRxBuf[KNumRXBuffers];
sl@0
   286
    /**
sl@0
   287
     * Index into the array of the next full buffer
sl@0
   288
     */
sl@0
   289
    TInt iRxQueIterNext;
sl@0
   290
    /**
sl@0
   291
     * Index into the array of the next empty buffer
sl@0
   292
     */
sl@0
   293
    TInt iRxQueIterFree;
sl@0
   294
    /**
sl@0
   295
     * Count of the number of empty buffers
sl@0
   296
     */
sl@0
   297
    TInt iNumFree;
sl@0
   298
    };
sl@0
   299
sl@0
   300
/**
sl@0
   301
	The logical channel for ethernet devices
sl@0
   302
	The basic ethernet logical channel that doesn't support
sl@0
   303
	power control or PCCard ethernet devices
sl@0
   304
	@internalComponent
sl@0
   305
 */
sl@0
   306
class DChannelEthernet : public DLogicalChannel
sl@0
   307
    {
sl@0
   308
    public:
sl@0
   309
    /**
sl@0
   310
     * The state of the logical channel
sl@0
   311
     */
sl@0
   312
    enum TState 
sl@0
   313
        {
sl@0
   314
        EOpen,    /**< The channel is open */
sl@0
   315
        EActive,  /**< The channel is open and busy */
sl@0
   316
        EClosed   /**< The channel is closed */
sl@0
   317
        };
sl@0
   318
sl@0
   319
    /**
sl@0
   320
     * Requests that can be made on the channel
sl@0
   321
     */
sl@0
   322
    enum TRequest 
sl@0
   323
        {
sl@0
   324
        ERx=1,      /**< Receive a frame */
sl@0
   325
        ETx=2,      /**< Transmit a frame */
sl@0
   326
        EAll=0xff   /**< Complete/cancel all outstanding requests */
sl@0
   327
        };
sl@0
   328
sl@0
   329
    /**
sl@0
   330
     * The constructor 
sl@0
   331
     */
sl@0
   332
    DChannelEthernet();
sl@0
   333
    /**
sl@0
   334
     * The destructor
sl@0
   335
     */
sl@0
   336
    ~DChannelEthernet();
sl@0
   337
sl@0
   338
    /**
sl@0
   339
     * The ISR function for the channel
sl@0
   340
     * This is called by the pycical channels ISR when data is received
sl@0
   341
     * It passes a empty buffer to the PDD for it to store the frame in
sl@0
   342
     */
sl@0
   343
    virtual void ReceiveIsr();
sl@0
   344
sl@0
   345
    protected:
sl@0
   346
    /**
sl@0
   347
     * Create a logical ethernet channel
sl@0
   348
     * @param aUnit The channel number to create
sl@0
   349
     * @param anInfo not used, can be NULL
sl@0
   350
     * @param aVer The minimun driver version allowed
sl@0
   351
     * @return KErrNone if channel created
sl@0
   352
     */
sl@0
   353
    virtual TInt DoCreate(TInt aUnit, const TDesC8* anInfo, const TVersion& aVer);
sl@0
   354
    /**
sl@0
   355
     * Handle a message from the channels user
sl@0
   356
     * @param aMsg The message to handle
sl@0
   357
     */
sl@0
   358
    virtual void HandleMsg(TMessageBase* aMsg);
sl@0
   359
    /**
sl@0
   360
     * Cancel an outstanding request
sl@0
   361
     * @param aMask A mask containing the requests to be canceled
sl@0
   362
     */
sl@0
   363
    void DoCancel(TInt aMask);
sl@0
   364
    /**
sl@0
   365
     * Preform a control operation on the channel
sl@0
   366
     * Control operations are:
sl@0
   367
     * - Get the current configuration
sl@0
   368
     * - Configure the channel
sl@0
   369
     * - Set the MAC address for the channel
sl@0
   370
     * - Get the capibilities of the channel
sl@0
   371
     * @param aId The operation to preform
sl@0
   372
     * @param a1 The data to use with the operation
sl@0
   373
     * @param a2 can be NULL - not used
sl@0
   374
     * @return KErrNone if operation done
sl@0
   375
     */
sl@0
   376
    TInt DoControl(TInt aId, TAny* a1, TAny* a2);
sl@0
   377
    /**
sl@0
   378
     * Preform an asynchros operation on the channel
sl@0
   379
     * Operations are:
sl@0
   380
     * - Read data from the channel
sl@0
   381
     * - Write data to the channel
sl@0
   382
     * @param aId The operation to perform
sl@0
   383
     * @param aStatus The status object to use when complete
sl@0
   384
     * @param a1 The data to use
sl@0
   385
     * @param a2 The length of the data to use
sl@0
   386
     * @return KErrNone if operation started ok
sl@0
   387
     * @see Complete()
sl@0
   388
     */
sl@0
   389
    TInt DoRequest(TInt aId, TRequestStatus* aStatus, TAny* a1, TAny* a2);
sl@0
   390
sl@0
   391
	//Override sendMsg to copy clients memory in client context for WDP.
sl@0
   392
	virtual TInt SendMsg(TMessageBase* aMsg);
sl@0
   393
sl@0
   394
	TInt SendControl(TMessageBase* aMsg);
sl@0
   395
sl@0
   396
	TInt SendRequest(TMessageBase* aMsg);
sl@0
   397
sl@0
   398
    /**
sl@0
   399
     * Start the channel receiving
sl@0
   400
     */
sl@0
   401
    void Start();
sl@0
   402
    /**
sl@0
   403
     * Shutdown the channel
sl@0
   404
     */
sl@0
   405
    void Shutdown();
sl@0
   406
sl@0
   407
    /**
sl@0
   408
     * Complete an RX request
sl@0
   409
     * Is run as the RX DFC and reads a buffer from the receive FIFO into
sl@0
   410
     * the users buffer
sl@0
   411
     */
sl@0
   412
    void DoCompleteRx();
sl@0
   413
    /** 
sl@0
   414
     * Completes an outstanding request
sl@0
   415
     * @param aMask Specifies what request to complete
sl@0
   416
     * @param aReason The reason the request is complete
sl@0
   417
     * @see DoRequest()
sl@0
   418
     */
sl@0
   419
    void Complete(TInt aMask, TInt aReason);
sl@0
   420
sl@0
   421
    /**
sl@0
   422
     * Disables all IRQ's
sl@0
   423
     * @return The IRQ level before it was changed
sl@0
   424
     * @see RestoreIrqs()
sl@0
   425
     */
sl@0
   426
    inline TInt DisableIrqs();
sl@0
   427
    /**
sl@0
   428
     * Restore the IRQ's to the supplied level
sl@0
   429
     * @param aIrq The level to set the irqs to.
sl@0
   430
     * @see DisableIrqs()
sl@0
   431
     */
sl@0
   432
    inline void RestoreIrqs(TInt aIrq);
sl@0
   433
sl@0
   434
    /**
sl@0
   435
     * Calls the PDD's start method
sl@0
   436
     * @return KErrNone if the PDD started ok
sl@0
   437
     */
sl@0
   438
    inline TInt PddStart();
sl@0
   439
    /**
sl@0
   440
     * Calls the PDD's Validate method
sl@0
   441
     * @param aConfig The configuration to be validated
sl@0
   442
     * @return KErrNone if config is valid
sl@0
   443
     */
sl@0
   444
    inline TInt ValidateConfig(const TEthernetConfigV01 &aConfig) const;
sl@0
   445
    /**
sl@0
   446
     * Calls the PDD's Configure method
sl@0
   447
     * Should call Validate first
sl@0
   448
     * Will not change the MAC address
sl@0
   449
     * @param aConfig The new configuration
sl@0
   450
     * @see ValidateConfig()
sl@0
   451
     */
sl@0
   452
    inline void PddConfigure(TEthernetConfigV01 &aConfig);
sl@0
   453
    /**
sl@0
   454
     * Calls the PDD's MacConfigure method
sl@0
   455
     * Will not change anything but the MAC address
sl@0
   456
     * @param aConfig A configuration containing the new MAC address
sl@0
   457
     */
sl@0
   458
    inline void MacConfigure(TEthernetConfigV01 &aConfig);
sl@0
   459
    /**
sl@0
   460
     * Calls the PDD's ChheckConfig Method
sl@0
   461
     * @param aConfig The config to check
sl@0
   462
     */
sl@0
   463
    inline void PddCheckConfig(TEthernetConfigV01 &aConfig);
sl@0
   464
sl@0
   465
    /**
sl@0
   466
     * Calls the PDD's get capibilities method
sl@0
   467
     * @param aCaps Filled in with the PDD capibilites on return
sl@0
   468
     */
sl@0
   469
    inline void PddCaps(TDes8 &aCaps) const;
sl@0
   470
sl@0
   471
    /**
sl@0
   472
     * Sends data using the PDD
sl@0
   473
     * @param aBuffer A referance to a buffer to be sent
sl@0
   474
     * @return KErrNone if buffer sent
sl@0
   475
     */
sl@0
   476
    inline TInt PddSend(TBuf8<KMaxEthernetPacket+32> &aBuffer);
sl@0
   477
    /**
sl@0
   478
     * Receive a frame from the PDD
sl@0
   479
     * @param aBuffer A referance to the buffer that the frame is to be put in
sl@0
   480
     * @param okToUse Flag to say if the buffer is valid
sl@0
   481
     * @return KErrNone if the buffer now contains a frame
sl@0
   482
     */
sl@0
   483
    inline TInt PddReceive(TBuf8<KMaxEthernetPacket+32> &aBuffer, TBool okToUse);
sl@0
   484
sl@0
   485
    private:
sl@0
   486
    /**
sl@0
   487
     * The DFC called by the kernel
sl@0
   488
     * @param aPtr A pointer to the channel object
sl@0
   489
     */
sl@0
   490
    static void CompleteRxDfc(TAny* aPtr);
sl@0
   491
sl@0
   492
    /**
sl@0
   493
     * Start a read request
sl@0
   494
     * @param aRxDes The buffer to be filled with data
sl@0
   495
     * @param aLength The max size frame that can fit in the buffer
sl@0
   496
     */
sl@0
   497
    void InitiateRead(TAny* aRxDes, TInt aLength);
sl@0
   498
    /**
sl@0
   499
     * Start a write request
sl@0
   500
     * @param aTxDes The buffer containing the frame to be sent
sl@0
   501
     * @param aLength The length of the frame to be sent
sl@0
   502
     */
sl@0
   503
    void InitiateWrite(TAny* aTxDes, TInt aLength);
sl@0
   504
    /**
sl@0
   505
     * Validates and set a new configuration
sl@0
   506
     * @param c The configuration to try
sl@0
   507
     * @return KErrNone if new configuration set
sl@0
   508
     */
sl@0
   509
    TInt SetConfig(TEthernetConfigV01& c);
sl@0
   510
    /**
sl@0
   511
     * Validates and sets a new MAC address
sl@0
   512
     * @param c The configuration containing the MAC to be set
sl@0
   513
     * @return KErrNone if the MAC is set ok
sl@0
   514
     */
sl@0
   515
    TInt SetMAC(TEthernetConfigV01& c);
sl@0
   516
sl@0
   517
    /**
sl@0
   518
     * The current channel configuration
sl@0
   519
     */
sl@0
   520
    TEthernetConfigV01 iConfig;
sl@0
   521
sl@0
   522
    /**
sl@0
   523
     * Pointer to the client thread
sl@0
   524
     */
sl@0
   525
    DThread* iClient;
sl@0
   526
sl@0
   527
    /**
sl@0
   528
     * Current state of the LDD
sl@0
   529
     */
sl@0
   530
    TState iStatus;
sl@0
   531
sl@0
   532
    /**
sl@0
   533
     * The receive complete DFC
sl@0
   534
     */
sl@0
   535
    TDfc iRxCompleteDfc;
sl@0
   536
    
sl@0
   537
    /**
sl@0
   538
     * Records if the channel is being shutdown
sl@0
   539
     */
sl@0
   540
    TBool iShutdown;			// ETrue means device is being closed
sl@0
   541
sl@0
   542
    /**
sl@0
   543
     * The length of the clients buffer
sl@0
   544
     */
sl@0
   545
    TInt iRxLength;
sl@0
   546
sl@0
   547
    /**
sl@0
   548
     * The TX and RX buffers
sl@0
   549
     */
sl@0
   550
    DChannelEthernetFIFO iFIFO;
sl@0
   551
sl@0
   552
	//Read request to store user request status for WDP
sl@0
   553
	TClientBufferRequest* iReadRequest;
sl@0
   554
	//Read buffer to pin client buffer in client context for WDP
sl@0
   555
	TClientBuffer* iClientReadBuffer;
sl@0
   556
sl@0
   557
	//Write request to store user request status for WDP
sl@0
   558
	TClientRequest* iWriteRequest;
sl@0
   559
sl@0
   560
#ifdef ETH_CHIP_IO_ENABLED
sl@0
   561
	TPckgBuf<TChipIOInfo> iChipInfo;
sl@0
   562
#endif
sl@0
   563
    };
sl@0
   564
/** @} */
sl@0
   565
sl@0
   566
#include <drivers/ethernet.inl>
sl@0
   567
sl@0
   568
#endif