gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
ns_gige.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2004-2005 The Regents of The University of Michigan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
34 #ifndef __DEV_NET_NS_GIGE_HH__
35 #define __DEV_NET_NS_GIGE_HH__
36 
37 #include "base/inet.hh"
38 #include "dev/io_device.hh"
39 #include "dev/net/etherdevice.hh"
40 #include "dev/net/etherint.hh"
41 #include "dev/net/etherpkt.hh"
42 #include "dev/net/ns_gige_reg.h"
43 #include "dev/net/pktfifo.hh"
44 #include "params/NSGigE.hh"
45 #include "sim/eventq.hh"
46 
47 // Hash filtering constants
48 const uint16_t FHASH_ADDR = 0x100;
49 const uint16_t FHASH_SIZE = 0x100;
50 
51 // EEPROM constants
52 const uint8_t EEPROM_READ = 0x2;
53 const uint8_t EEPROM_SIZE = 64; // Size in words of NSC93C46 EEPROM
54 const uint8_t EEPROM_PMATCH2_ADDR = 0xA; // EEPROM Address of PMATCH word 2
55 const uint8_t EEPROM_PMATCH1_ADDR = 0xB; // EEPROM Address of PMATCH word 1
56 const uint8_t EEPROM_PMATCH0_ADDR = 0xC; // EEPROM Address of PMATCH word 0
57 
61 struct dp_regs {
62  uint32_t command;
63  uint32_t config;
64  uint32_t mear;
65  uint32_t ptscr;
66  uint32_t isr;
67  uint32_t imr;
68  uint32_t ier;
69  uint32_t ihr;
70  uint32_t txdp;
71  uint32_t txdp_hi;
72  uint32_t txcfg;
73  uint32_t gpior;
74  uint32_t rxdp;
75  uint32_t rxdp_hi;
76  uint32_t rxcfg;
77  uint32_t pqcr;
78  uint32_t wcsr;
79  uint32_t pcr;
80  uint32_t rfcr;
81  uint32_t rfdr;
82  uint32_t brar;
83  uint32_t brdr;
84  uint32_t srr;
85  uint32_t mibc;
86  uint32_t vrcr;
87  uint32_t vtcr;
88  uint32_t vdr;
89  uint32_t ccsr;
90  uint32_t tbicr;
91  uint32_t tbisr;
92  uint32_t tanar;
93  uint32_t tanlpar;
94  uint32_t taner;
95  uint32_t tesr;
96 };
97 
98 struct dp_rom {
103  uint8_t perfectMatch[ETH_ADDR_LEN];
104 
109  uint8_t filterHash[FHASH_SIZE];
110 };
111 
112 class NSGigEInt;
113 class Packet;
114 
118 class NSGigE : public EtherDevBase
119 {
120  public:
122  enum TxState
123  {
130  txAdvance
131  };
132 
134  enum RxState
135  {
142  rxAdvance
143  };
144 
145  enum DmaState
146  {
151  dmaWriteWaiting
152  };
153 
156  {
160  eepromRead
161  };
162 
163  protected:
167 
169  bool ioEnable;
170 
171  /*** BASIC STRUCTURES FOR TX/RX ***/
172  /* Data FIFOs */
175 
179  uint8_t *txPacketBufPtr;
180  uint8_t *rxPacketBufPtr;
181  uint32_t txXferLen;
182  uint32_t rxXferLen;
183  bool rxDmaFree;
184  bool txDmaFree;
185 
191 
192  /* tx State Machine */
194  bool txEnable;
195 
197  bool CTDD;
199  bool txHalt;
203  uint32_t txDescCnt;
205 
208  bool rxEnable;
209 
211  bool CRDD;
213  uint32_t rxPktBytes;
215  bool rxHalt;
219  uint32_t rxDescCnt;
221 
223 
226  bool eepromClk;
227  uint8_t eepromBitsToRx;
228  uint8_t eepromOpcode;
229  uint8_t eepromAddress;
230  uint16_t eepromData;
231 
232  protected:
235 
238 
239  void *rxDmaData;
241  int rxDmaLen;
242  bool doRxDmaRead();
243  bool doRxDmaWrite();
244 
245  void *txDmaData;
247  int txDmaLen;
248  bool doTxDmaRead();
249  bool doTxDmaWrite();
250 
251  void rxDmaReadDone();
253 
254  void rxDmaWriteDone();
256 
257  void txDmaReadDone();
259 
260  void txDmaWriteDone();
262 
265 
266  protected:
269 
270  void txReset();
271  void rxReset();
272  void regsReset();
273 
274  void rxKick();
277 
278  void txKick();
281 
282  void eepromKick();
283 
287  void transmit();
289  {
290  transmit();
291  if (txState == txFifoBlock)
292  txKick();
293  }
295 
296  void txDump() const;
297  void rxDump() const;
298 
303  bool rxFilter(const EthPacketPtr &packet);
308  bool acceptArp;
310 
314  void devIntrPost(uint32_t interrupts);
315  void devIntrClear(uint32_t interrupts);
316  void devIntrChangeMask();
317 
321  void cpuIntrPost(Tick when);
322  void cpuInterrupt();
323  void cpuIntrClear();
324 
327 
328  public:
329  typedef NSGigEParams Params;
330  const Params *params() const {
331  return dynamic_cast<const Params *>(_params);
332  }
333 
334  NSGigE(Params *params);
335  ~NSGigE();
336 
337  Port &getPort(const std::string &if_name,
338  PortID idx=InvalidPortID) override;
339 
340  Tick writeConfig(PacketPtr pkt) override;
341 
342  Tick read(PacketPtr pkt) override;
343  Tick write(PacketPtr pkt) override;
344 
345  bool cpuIntrPending() const;
346  void cpuIntrAck() { cpuIntrClear(); }
347 
348  bool recvPacket(EthPacketPtr packet);
349  void transferDone();
350 
351  void serialize(CheckpointOut &cp) const override;
352  void unserialize(CheckpointIn &cp) override;
353 
354  void drainResume() override;
355 };
356 
357 /*
358  * Ethernet Interface for an Ethernet Device
359  */
360 class NSGigEInt : public EtherInt
361 {
362  private:
364 
365  public:
366  NSGigEInt(const std::string &name, NSGigE *d)
367  : EtherInt(name), dev(d)
368  { }
369 
370  virtual bool recvPacket(EthPacketPtr pkt) { return dev->recvPacket(pkt); }
371  virtual void sendDone() { dev->transferDone(); }
372 };
373 
374 #endif // __DEV_NET_NS_GIGE_HH__
Ports are used to interface objects to each other.
Definition: port.hh:56
Tick txDelay
Definition: ns_gige.hh:267
bool cpuPendingIntr
Definition: ns_gige.hh:320
EventFunctionWrapper txDmaReadEvent
Definition: ns_gige.hh:258
Addr rxDmaAddr
Definition: ns_gige.hh:240
const uint8_t EEPROM_READ
Definition: ns_gige.hh:52
const std::string & name()
Definition: trace.cc:50
bool rxEnable
Definition: ns_gige.hh:208
Addr rxFragPtr
ptr to the next byte in current fragment
Definition: ns_gige.hh:217
const PortID InvalidPortID
Definition: types.hh:236
uint32_t mibc
Definition: ns_gige.hh:85
bool eepromClk
Definition: ns_gige.hh:226
Dummy class to keep the Python class hierarchy in sync with the C++ object hierarchy.
Definition: etherdevice.hh:124
uint8_t * txPacketBufPtr
Definition: ns_gige.hh:179
Tick intrDelay
Definition: ns_gige.hh:318
DmaState txDmaState
Definition: ns_gige.hh:204
dp_regs regs
device register file
Definition: ns_gige.hh:165
uint32_t tbisr
Definition: ns_gige.hh:91
EEPROMState
EEPROM State Machine States.
Definition: ns_gige.hh:155
EventFunctionWrapper rxDmaWriteEvent
Definition: ns_gige.hh:255
TxState txState
Definition: ns_gige.hh:193
const uint8_t EEPROM_PMATCH2_ADDR
Definition: ns_gige.hh:54
bool acceptBroadcast
Definition: ns_gige.hh:304
const Params * params() const
Definition: ns_gige.hh:330
uint32_t tesr
Definition: ns_gige.hh:95
EventFunctionWrapper txDmaWriteEvent
Definition: ns_gige.hh:261
uint32_t command
Definition: ns_gige.hh:62
TxState
Transmit State Machine states.
Definition: ns_gige.hh:122
PacketFifo txFifo
Definition: ns_gige.hh:173
bool acceptPerfect
Definition: ns_gige.hh:307
EEPROMState eepromState
EEPROM State Machine.
Definition: ns_gige.hh:225
NSGigEInt * interface
Definition: ns_gige.hh:326
uint32_t ptscr
Definition: ns_gige.hh:65
Definition: cprintf.cc:40
ns_desc64 rxDesc64
Definition: ns_gige.hh:190
const uint16_t FHASH_SIZE
Definition: ns_gige.hh:49
ns_desc64 txDesc64
Definition: ns_gige.hh:189
bool txHalt
halt the tx state machine after next packet
Definition: ns_gige.hh:199
uint32_t rxDescCnt
count of bytes remaining in the current descriptor
Definition: ns_gige.hh:219
EventFunctionWrapper rxDmaReadEvent
Definition: ns_gige.hh:252
uint32_t rxdp
Definition: ns_gige.hh:74
NSGigEInt(const std::string &name, NSGigE *d)
Definition: ns_gige.hh:366
Tick dmaReadFactor
Definition: ns_gige.hh:236
DmaState rxDmaState
Definition: ns_gige.hh:220
bool extstsEnable
Definition: ns_gige.hh:222
bool rxDmaFree
Definition: ns_gige.hh:183
uint8_t eepromAddress
Definition: ns_gige.hh:229
Tick intrTick
Definition: ns_gige.hh:319
uint32_t wcsr
Definition: ns_gige.hh:78
bool dmaDescFree
Definition: ns_gige.hh:263
void transferDone()
Definition: ns_gige.cc:1893
uint8_t eepromBitsToRx
Definition: ns_gige.hh:227
dp_rom rom
Definition: ns_gige.hh:166
Addr txFragPtr
ptr to the next byte in the current fragment
Definition: ns_gige.hh:201
uint32_t ccsr
Definition: ns_gige.hh:89
uint32_t brdr
Definition: ns_gige.hh:83
int txDmaLen
Definition: ns_gige.hh:247
ns_desc32 txDesc32
DescCaches.
Definition: ns_gige.hh:187
uint32_t txdp
Definition: ns_gige.hh:70
EthPacketPtr rxPacket
Definition: ns_gige.hh:178
Tick rxDelay
Definition: ns_gige.hh:268
const uint8_t EEPROM_PMATCH0_ADDR
Definition: ns_gige.hh:56
DmaState
Definition: ns_gige.hh:145
bool acceptUnicast
Definition: ns_gige.hh:306
PacketFifo rxFifo
Definition: ns_gige.hh:174
uint32_t ihr
Definition: ns_gige.hh:69
uint32_t txcfg
Definition: ns_gige.hh:72
uint64_t Tick
Tick count type.
Definition: types.hh:61
void * rxDmaData
Definition: ns_gige.hh:239
const uint8_t EEPROM_SIZE
Definition: ns_gige.hh:53
uint32_t rxdp_hi
Definition: ns_gige.hh:75
const uint8_t EEPROM_PMATCH1_ADDR
Definition: ns_gige.hh:55
uint32_t gpior
Definition: ns_gige.hh:73
Bitfield< 9 > d
Tick rxKickTick
Definition: ns_gige.hh:275
uint32_t rfdr
Definition: ns_gige.hh:81
uint32_t tanlpar
Definition: ns_gige.hh:93
Addr txDmaAddr
Definition: ns_gige.hh:246
uint32_t rfcr
Definition: ns_gige.hh:80
bool dmaDataFree
Definition: ns_gige.hh:264
void serialize(const ThreadContext &tc, CheckpointOut &cp)
Thread context serialization helpers.
bool CTDD
Current Transmit Descriptor Done.
Definition: ns_gige.hh:197
bool acceptMulticast
Definition: ns_gige.hh:305
NSGigE * dev
Definition: ns_gige.hh:363
bool acceptArp
Definition: ns_gige.hh:308
NSGigEParams Params
Definition: ns_gige.hh:329
std::shared_ptr< EthPacketData > EthPacketPtr
Definition: etherpkt.hh:87
uint32_t config
Definition: ns_gige.hh:63
bool multicastHashEnable
Definition: ns_gige.hh:309
uint32_t pqcr
Definition: ns_gige.hh:77
uint32_t srr
Definition: ns_gige.hh:84
void * txDmaData
Definition: ns_gige.hh:245
Ethernet device registers.
Definition: ns_gige.hh:61
bool ioEnable
pci settings
Definition: ns_gige.hh:169
int rxDmaLen
Definition: ns_gige.hh:241
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
const uint16_t FHASH_ADDR
Definition: ns_gige.hh:48
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
Base Ethernet Device declaration.
RxState
Receive State Machine States.
Definition: ns_gige.hh:134
Ethernet device register definitions for the National Semiconductor DP83820 Ethernet controller...
EventFunctionWrapper * intrEvent
Definition: ns_gige.hh:325
bool rxHalt
halt the rx state machine after current packet
Definition: ns_gige.hh:215
EventFunctionWrapper rxKickEvent
Definition: ns_gige.hh:276
uint32_t vrcr
Definition: ns_gige.hh:86
EthPacketPtr txPacket
various helper vars
Definition: ns_gige.hh:177
ns_desc32 rxDesc32
Definition: ns_gige.hh:188
uint32_t vdr
Definition: ns_gige.hh:88
EventFunctionWrapper txKickEvent
Definition: ns_gige.hh:280
uint32_t rxcfg
Definition: ns_gige.hh:76
uint32_t vtcr
Definition: ns_gige.hh:87
std::ostream CheckpointOut
Definition: serialize.hh:63
uint32_t brar
Definition: ns_gige.hh:82
uint16_t eepromData
Definition: ns_gige.hh:230
uint32_t tbicr
Definition: ns_gige.hh:90
EventFunctionWrapper txEvent
Definition: ns_gige.hh:294
bool txEnable
Definition: ns_gige.hh:194
uint32_t txXferLen
Definition: ns_gige.hh:181
void cpuIntrAck()
Definition: ns_gige.hh:346
uint32_t txDescCnt
count of bytes remaining in the current descriptor
Definition: ns_gige.hh:203
Tick dmaWriteDelay
Definition: ns_gige.hh:234
uint8_t eepromOpcode
Definition: ns_gige.hh:228
uint32_t tanar
Definition: ns_gige.hh:92
uint32_t isr
Definition: ns_gige.hh:66
void unserialize(ThreadContext &tc, CheckpointIn &cp)
uint32_t pcr
Definition: ns_gige.hh:79
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:235
bool rxFilterEnable
receive address filter
Definition: ns_gige.hh:302
RxState rxState
rx State Machine
Definition: ns_gige.hh:207
NS DP83820 Ethernet device model.
Definition: ns_gige.hh:118
uint32_t imr
Definition: ns_gige.hh:67
Tick dmaReadDelay
Definition: ns_gige.hh:233
bool CRDD
Current Receive Descriptor Done.
Definition: ns_gige.hh:211
bool txDmaFree
Definition: ns_gige.hh:184
uint8_t * rxPacketBufPtr
Definition: ns_gige.hh:180
void txEventTransmit()
Definition: ns_gige.hh:288
uint32_t taner
Definition: ns_gige.hh:94
uint32_t txdp_hi
Definition: ns_gige.hh:71
virtual bool recvPacket(EthPacketPtr pkt)
Definition: ns_gige.hh:370
uint32_t mear
Definition: ns_gige.hh:64
uint32_t ier
Definition: ns_gige.hh:68
uint32_t rxPktBytes
num of bytes in the current packet being drained from rxDataFifo
Definition: ns_gige.hh:213
uint32_t rxXferLen
Definition: ns_gige.hh:182
virtual void sendDone()
Definition: ns_gige.hh:371
Tick txKickTick
Definition: ns_gige.hh:279
Tick dmaWriteFactor
Definition: ns_gige.hh:237
bool recvPacket(EthPacketPtr packet)
Definition: ns_gige.cc:1949

Generated on Thu May 28 2020 16:21:33 for gem5 by doxygen 1.8.13