os/kernelhwsrv/kernel/eka/include/d32ethernet.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\d32ethernet.h
sl@0
    15
// User side class definition for using ethernet support
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
/**
sl@0
    20
 @file d32ethernet.h
sl@0
    21
 @publishedPartner
sl@0
    22
 @released
sl@0
    23
*/
sl@0
    24
sl@0
    25
#ifndef __D32ETHERNET_H__
sl@0
    26
#define __D32ETHERNET_H__
sl@0
    27
#include <e32cmn.h>
sl@0
    28
#include <e32ver.h>
sl@0
    29
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_external The External Intarface to the Ethernet support
sl@0
    36
 * @ingroup enet
sl@0
    37
 * @{
sl@0
    38
 */
sl@0
    39
// Ethernet Specific Error Codes
sl@0
    40
/** Transmit out of memory error */
sl@0
    41
const TInt KErrTxOutOfMemory = (-302);
sl@0
    42
/** General Transmit Error */
sl@0
    43
const TInt KErrTxError       = (-303);
sl@0
    44
/** Trying to send a frame that is too big */
sl@0
    45
const TInt KErrTxFrameToBig  = (-304);
sl@0
    46
/** General Recieve Error */
sl@0
    47
const TInt KErrRxError       = (-305);
sl@0
    48
sl@0
    49
// Card configuration - speed settings.
sl@0
    50
/** Ethernet speed unknown */
sl@0
    51
const TUint8 KEthSpeedUnknown=0x00;
sl@0
    52
/** Ethernet speed autosensing */
sl@0
    53
const TUint8 KEthSpeedAuto=0x01;
sl@0
    54
/** Ethernet speed 10Mbits */
sl@0
    55
const TUint8 KEthSpeed10BaseT=0x02;
sl@0
    56
/** Ethernet speed 100Mbits */
sl@0
    57
const TUint8 KEthSpeed100BaseTX=0x03;
sl@0
    58
sl@0
    59
// Card configuration - duplex settings.
sl@0
    60
/** Ethernet duplex setting unknown */
sl@0
    61
const TUint8 KEthDuplexUnknown=0x00;
sl@0
    62
/** Ethernet duplex setting automatic */
sl@0
    63
const TUint8 KEthDuplexAuto=0x01;
sl@0
    64
/** Ethernet full duplex */
sl@0
    65
const TUint8 KEthDuplexFull=0x02;
sl@0
    66
/** Ethernet helf duplex */
sl@0
    67
const TUint8 KEthDuplexHalf=0x03;
sl@0
    68
sl@0
    69
// Default Ethernet Address
sl@0
    70
const TUint8 KDefEtherAddByte0=0x30; // MSB
sl@0
    71
const TUint8 KDefEtherAddByte1=0x32;
sl@0
    72
const TUint8 KDefEtherAddByte2=0x33;
sl@0
    73
const TUint8 KDefEtherAddByte3=0x34;
sl@0
    74
const TUint8 KDefEtherAddByte4=0x35;
sl@0
    75
const TUint8 KDefEtherAddByte5=0x36; // LSB
sl@0
    76
sl@0
    77
/** Ethernet address length */
sl@0
    78
const TUint KEthernetAddressLength=6;
sl@0
    79
sl@0
    80
/**
sl@0
    81
 * The ethernet configuration class
sl@0
    82
 */
sl@0
    83
class TEthernetConfigV01
sl@0
    84
    {
sl@0
    85
    public:
sl@0
    86
    /**
sl@0
    87
     * The speed 
sl@0
    88
     */
sl@0
    89
    TUint8 iEthSpeed;
sl@0
    90
    /**
sl@0
    91
     * The duplex setting
sl@0
    92
     */
sl@0
    93
    TUint8 iEthDuplex;
sl@0
    94
    /** 
sl@0
    95
     * The MAC address
sl@0
    96
     */
sl@0
    97
    TUint8 iEthAddress[KEthernetAddressLength];
sl@0
    98
    };
sl@0
    99
typedef TPckgBuf<TEthernetConfigV01> TEthernetConfig;
sl@0
   100
sl@0
   101
/**
sl@0
   102
 * The ethernet capibility class
sl@0
   103
 */
sl@0
   104
class TEthernetCapsV01
sl@0
   105
    {
sl@0
   106
    public:
sl@0
   107
sl@0
   108
    };
sl@0
   109
typedef TPckgBuf<TEthernetCapsV01> TEthernetCaps;
sl@0
   110
sl@0
   111
/**
sl@0
   112
 * The Ethernet device capibility class
sl@0
   113
 */
sl@0
   114
class TCapsDevEthernetV01
sl@0
   115
    {
sl@0
   116
    public:
sl@0
   117
    /**
sl@0
   118
     * The device version
sl@0
   119
     */
sl@0
   120
    TVersion version;
sl@0
   121
    };
sl@0
   122
sl@0
   123
    
sl@0
   124
#ifdef ETH_CHIP_IO_ENABLED
sl@0
   125
enum TMemSpace 
sl@0
   126
    {
sl@0
   127
    BGE_SPACE_CFG =  0,       /* PCI config space */
sl@0
   128
    BGE_SPACE_REG = 1,       /* PCI memory space */
sl@0
   129
    BGE_SPACE_NIC =  2,       /* on-chip memory   */
sl@0
   130
    BGE_SPACE_MII =  3,       /* PHY's MII registers  */
sl@0
   131
    BGE_SPACE_BGE =  4,       /* driver's soft state  */
sl@0
   132
    BGE_SPACE_TXDESC = 5,       /* TX descriptors   */
sl@0
   133
    BGE_SPACE_TXBUFF = 6,       /* TX buffers       */
sl@0
   134
    BGE_SPACE_RXDESC = 7,       /* RX descriptors   */
sl@0
   135
    BGE_SPACE_RXBUFF = 8,       /* RX buffers       */
sl@0
   136
    BGE_SPACE_STATUS = 9,       /* status block     */
sl@0
   137
    BGE_SPACE_STATISTICS = 10,      /* statistics block */
sl@0
   138
    BGE_SPACE_SEEPROM =  11,      /* SEEPROM (if fitted)  */
sl@0
   139
    BGE_SPACE_FLASH = 12      /* FLASH (if fitted)    */
sl@0
   140
    };
sl@0
   141
sl@0
   142
struct TChipIOInfo
sl@0
   143
    {
sl@0
   144
    TUint32 iSize; /* in bytes: 1,2,4,8    */
sl@0
   145
    TUint32 iSpace; /* See #defines below   */
sl@0
   146
    TUint32 iOffset;
sl@0
   147
    TUint32 iData; /* output for peek  */
sl@0
   148
    TUint32 iCnt; /* number of contigues items to be dumped*/
sl@0
   149
    };   
sl@0
   150
#endif 
sl@0
   151
sl@0
   152
sl@0
   153
/**
sl@0
   154
@publishedPartner
sl@0
   155
@released
sl@0
   156
sl@0
   157
The externally visible interface
sl@0
   158
*/
sl@0
   159
class RBusDevEthernet : public RBusLogicalChannel 
sl@0
   160
    {
sl@0
   161
    public:
sl@0
   162
	
sl@0
   163
	enum TVer {EMajorVersionNumber=1,EMinorVersionNumber=0,EBuildVersionNumber=KE32BuildVersionNumber};
sl@0
   164
sl@0
   165
    /**
sl@0
   166
     * Asyncorus requests
sl@0
   167
     */
sl@0
   168
    enum TRequest
sl@0
   169
	{
sl@0
   170
	ERequestRead=0x0,         /**< Read request */
sl@0
   171
        ERequestReadCancel=0x1,   /**< Cancel read request */
sl@0
   172
	ERequestWrite=0x1,        /**< Write request */
sl@0
   173
        ERequestWriteCancel=0x2   /**< Cancel write request */
sl@0
   174
#ifdef ETH_CHIP_IO_ENABLED
sl@0
   175
    ,EChipDiagIOCtrl=0x3
sl@0
   176
#endif
sl@0
   177
	};
sl@0
   178
sl@0
   179
    /**
sl@0
   180
     * Control requests
sl@0
   181
     */
sl@0
   182
    enum TControl
sl@0
   183
	{
sl@0
   184
	EControlConfig,    /**< Get the current configuration */
sl@0
   185
        EControlSetConfig, /**< Set the current configuration */
sl@0
   186
        EControlSetMac,    /**< Set the MAC address */
sl@0
   187
        EControlCaps       /**< Get ethernet capibilites */
sl@0
   188
	};
sl@0
   189
sl@0
   190
    public:
sl@0
   191
#ifndef __KLIB_H__
sl@0
   192
    /**
sl@0
   193
     * Open a channel
sl@0
   194
     * @param aUnit The channel number to open
sl@0
   195
     */
sl@0
   196
    inline TInt Open(TInt aUnit);
sl@0
   197
    /**
sl@0
   198
     * Get the ethernet version
sl@0
   199
     * @return The version
sl@0
   200
     */
sl@0
   201
    inline TVersion VersionRequired() const;
sl@0
   202
    /**
sl@0
   203
     * Read from the channel
sl@0
   204
     * @param aStatus The callback status 
sl@0
   205
     * @param aDes Buffer to be filled in
sl@0
   206
     */
sl@0
   207
    inline void Read(TRequestStatus &aStatus,TDes8 &aDes);
sl@0
   208
    /**
sl@0
   209
     * Read from the channel
sl@0
   210
     * @param aStatus The callback status 
sl@0
   211
     * @param aDes Buffer to be filled in
sl@0
   212
     * @param aLength The maximun length frame to read
sl@0
   213
     */
sl@0
   214
    inline void Read(TRequestStatus &aStatus,TDes8 &aDes,TInt aLength);
sl@0
   215
    /**
sl@0
   216
     * Cancel a pending read request
sl@0
   217
     */
sl@0
   218
    inline void ReadCancel();
sl@0
   219
sl@0
   220
    /**
sl@0
   221
     * Write to the channel
sl@0
   222
     * @param aStatus The callback status 
sl@0
   223
     * @param aDes Buffer containing the frame to be sent
sl@0
   224
     */
sl@0
   225
    inline void Write(TRequestStatus &aStatus,const TDesC8 &aDes);
sl@0
   226
    /**
sl@0
   227
     * Write to the channel
sl@0
   228
     * @param aStatus The callback status 
sl@0
   229
     * @param aDes Buffer containing the frame to be sent
sl@0
   230
     * @param aLength The length of the frame to send
sl@0
   231
     */
sl@0
   232
    inline void Write(TRequestStatus &aStatus,const TDesC8 &aDes,TInt aLength);
sl@0
   233
    /**
sl@0
   234
     * Cancel a pending write request
sl@0
   235
     */
sl@0
   236
    inline void WriteCancel();
sl@0
   237
sl@0
   238
    /**
sl@0
   239
     * Get the channels configuration
sl@0
   240
     * @param aConfig Buffer that will contain an configuration object
sl@0
   241
     */
sl@0
   242
    inline void Config(TDes8 &aConfig);
sl@0
   243
    /**
sl@0
   244
     * Set the channels configuration
sl@0
   245
     * @param aConfig Buffer containing an configuration object
sl@0
   246
     */
sl@0
   247
    inline TInt SetConfig(const TDesC8 &aConfig);
sl@0
   248
    /**
sl@0
   249
     * Set the channels MAC address
sl@0
   250
     * @param aConfig Buffer containing an configuration object with the MAC 
sl@0
   251
     * address set
sl@0
   252
     */
sl@0
   253
    inline TInt SetMAC(const TDesC8 &aConfig);
sl@0
   254
sl@0
   255
    /**
sl@0
   256
     * Request the channels capabilities
sl@0
   257
     * @param aCaps Buffer to contain the capibilites object
sl@0
   258
     */
sl@0
   259
    inline void Caps(TDes8 &aCaps);
sl@0
   260
    
sl@0
   261
#ifdef ETH_CHIP_IO_ENABLED    
sl@0
   262
    inline void ChipIOCtrl(TRequestStatus &aStatus,TPckgBuf<TChipIOInfo> &aDes);
sl@0
   263
#endif
sl@0
   264
    #endif
sl@0
   265
    };
sl@0
   266
sl@0
   267
/** @} */ // End of external interface
sl@0
   268
#include <d32ethernet.inl>
sl@0
   269
sl@0
   270
#endif