Merge zizzer:/bk/linux
[gem5.git] / dev / ns_gige.hh
1 /*
2 * Copyright (c) 2003 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
29 /* @file
30 * Device module for modelling the National Semiconductor
31 * DP83820 ethernet controller
32 */
33
34 #ifndef __NS_GIGE_HH__
35 #define __NS_GIGE_HH__
36
37 //#include "base/range.hh"
38 #include "dev/etherint.hh"
39 #include "dev/etherpkt.hh"
40 #include "sim/eventq.hh"
41 #include "dev/ns_gige_reg.h"
42 #include "base/statistics.hh"
43 #include "dev/pcidev.hh"
44 #include "dev/tsunami.hh"
45 #include "dev/io_device.hh"
46 #include "mem/bus/bus.hh"
47
48 /** defined by the NS83820 data sheet */
49 #define MAX_TX_FIFO_SIZE 8192
50 #define MAX_RX_FIFO_SIZE 32768
51
52 /** length of ethernet address in bytes */
53 #define EADDR_LEN 6
54
55 /**
56 * Ethernet device registers
57 */
58 struct dp_regs {
59 uint32_t command;
60 uint32_t config;
61 uint32_t mear;
62 uint32_t ptscr;
63 uint32_t isr;
64 uint32_t imr;
65 uint32_t ier;
66 uint32_t ihr;
67 uint32_t txdp;
68 uint32_t txdp_hi;
69 uint32_t txcfg;
70 uint32_t gpior;
71 uint32_t rxdp;
72 uint32_t rxdp_hi;
73 uint32_t rxcfg;
74 uint32_t pqcr;
75 uint32_t wcsr;
76 uint32_t pcr;
77 uint32_t rfcr;
78 uint32_t rfdr;
79 uint32_t srr;
80 uint32_t mibc;
81 uint32_t vrcr;
82 uint32_t vtcr;
83 uint32_t vdr;
84 uint32_t ccsr;
85 uint32_t tbicr;
86 uint32_t tbisr;
87 uint32_t tanar;
88 uint32_t tanlpar;
89 uint32_t taner;
90 uint32_t tesr;
91 };
92
93 struct dp_rom {
94 /** for perfect match memory. the linux driver doesn't use any other ROM */
95 uint8_t perfectMatch[EADDR_LEN];
96 };
97
98 class IntrControl;
99 class NSGigEInt;
100 class PhysicalMemory;
101 class BaseInterface;
102 class HierParams;
103 class Bus;
104 class PciConfigAll;
105
106 /**
107 * NS DP82830 Ethernet device model
108 */
109 class NSGigE : public PciDev
110 {
111 public:
112 /** Transmit State Machine states */
113 enum TxState
114 {
115 txIdle,
116 txDescRefr,
117 txDescRead,
118 txFifoBlock,
119 txFragRead,
120 txDescWrite,
121 txAdvance
122 };
123
124 /** Receive State Machine States */
125 enum RxState
126 {
127 rxIdle,
128 rxDescRefr,
129 rxDescRead,
130 rxFifoBlock,
131 rxFragWrite,
132 rxDescWrite,
133 rxAdvance
134 };
135
136 enum DmaState
137 {
138 dmaIdle,
139 dmaReading,
140 dmaWriting,
141 dmaReadWaiting,
142 dmaWriteWaiting
143 };
144
145 private:
146 /** pointer to the chipset */
147 Tsunami *tsunami;
148
149 private:
150 Addr addr;
151 static const Addr size = sizeof(dp_regs);
152
153 protected:
154 typedef std::deque<PacketPtr> pktbuf_t;
155 typedef pktbuf_t::iterator pktiter_t;
156
157 /** device register file */
158 dp_regs regs;
159 dp_rom rom;
160
161 /*** BASIC STRUCTURES FOR TX/RX ***/
162 /* Data FIFOs */
163 pktbuf_t txFifo;
164 pktbuf_t rxFifo;
165
166 /** various helper vars */
167 uint8_t *txPacketBufPtr;
168 uint8_t *rxPacketBufPtr;
169 uint32_t txXferLen;
170 uint32_t rxXferLen;
171 uint32_t txPktXmitted;
172 bool rxDmaFree;
173 bool txDmaFree;
174 PacketPtr txPacket;
175 PacketPtr rxPacket;
176
177 /** DescCaches */
178 ns_desc txDescCache;
179 ns_desc rxDescCache;
180
181 /* tx State Machine */
182 TxState txState;
183 /** Current Transmit Descriptor Done */
184 bool CTDD;
185 /** amt of data in the txDataFifo in bytes (logical) */
186 uint32_t txFifoCnt;
187 /** current amt of free space in txDataFifo in bytes */
188 uint32_t txFifoAvail;
189 /** halt the tx state machine after next packet */
190 bool txHalt;
191 /** ptr to the next byte in the current fragment */
192 Addr txFragPtr;
193 /** count of bytes remaining in the current descriptor */
194 uint32_t txDescCnt;
195 DmaState txDmaState;
196
197 /** rx State Machine */
198 RxState rxState;
199 /** Current Receive Descriptor Done */
200 bool CRDD;
201 /** num of bytes in the current packet being drained from rxDataFifo */
202 uint32_t rxPktBytes;
203 /** number of bytes in the rxFifo */
204 uint32_t rxFifoCnt;
205 /** halt the rx state machine after current packet */
206 bool rxHalt;
207 /** ptr to the next byte in current fragment */
208 Addr rxFragPtr;
209 /** count of bytes remaining in the current descriptor */
210 uint32_t rxDescCnt;
211 DmaState rxDmaState;
212
213 bool extstsEnable;
214
215 protected:
216 Tick dmaReadDelay;
217 Tick dmaWriteDelay;
218
219 Tick dmaReadFactor;
220 Tick dmaWriteFactor;
221
222 void *rxDmaData;
223 Addr rxDmaAddr;
224 int rxDmaLen;
225 bool doRxDmaRead();
226 bool doRxDmaWrite();
227 void rxDmaReadCopy();
228 void rxDmaWriteCopy();
229
230 void *txDmaData;
231 Addr txDmaAddr;
232 int txDmaLen;
233 bool doTxDmaRead();
234 bool doTxDmaWrite();
235 void txDmaReadCopy();
236 void txDmaWriteCopy();
237
238 void rxDmaReadDone();
239 friend class EventWrapper<NSGigE, &NSGigE::rxDmaReadDone>;
240 EventWrapper<NSGigE, &NSGigE::rxDmaReadDone> rxDmaReadEvent;
241
242 void rxDmaWriteDone();
243 friend class EventWrapper<NSGigE, &NSGigE::rxDmaWriteDone>;
244 EventWrapper<NSGigE, &NSGigE::rxDmaWriteDone> rxDmaWriteEvent;
245
246 void txDmaReadDone();
247 friend class EventWrapper<NSGigE, &NSGigE::txDmaReadDone>;
248 EventWrapper<NSGigE, &NSGigE::txDmaReadDone> txDmaReadEvent;
249
250 void txDmaWriteDone();
251 friend class EventWrapper<NSGigE, &NSGigE::txDmaWriteDone>;
252 EventWrapper<NSGigE, &NSGigE::txDmaWriteDone> txDmaWriteEvent;
253
254 bool dmaDescFree;
255 bool dmaDataFree;
256
257
258 protected:
259 Tick txDelay;
260 Tick rxDelay;
261
262 void txReset();
263 void rxReset();
264 void regsReset() {
265 memset(&regs, 0, sizeof(regs));
266 regs.config = 0x80000000;
267 regs.mear = 0x12;
268 regs.isr = 0x00608000;
269 regs.txcfg = 0x120;
270 regs.rxcfg = 0x4;
271 regs.srr = 0x0103;
272 regs.mibc = 0x2;
273 regs.vdr = 0x81;
274 regs.tesr = 0xc000;
275 }
276
277 void rxKick();
278 Tick rxKickTick;
279 typedef EventWrapper<NSGigE, &NSGigE::rxKick> RxKickEvent;
280 friend class RxKickEvent;
281
282 void txKick();
283 Tick txKickTick;
284 typedef EventWrapper<NSGigE, &NSGigE::txKick> TxKickEvent;
285 friend class TxKickEvent;
286
287 /**
288 * Retransmit event
289 */
290 void transmit();
291 typedef EventWrapper<NSGigE, &NSGigE::transmit> TxEvent;
292 friend class TxEvent;
293 TxEvent txEvent;
294
295 void txDump() const;
296 void rxDump() const;
297
298 /**
299 * receive address filter
300 */
301 bool rxFilterEnable;
302 bool rxFilter(PacketPtr packet);
303 bool acceptBroadcast;
304 bool acceptMulticast;
305 bool acceptUnicast;
306 bool acceptPerfect;
307 bool acceptArp;
308
309 PhysicalMemory *physmem;
310
311 /**
312 * Interrupt management
313 */
314 IntrControl *intctrl;
315 void devIntrPost(uint32_t interrupts);
316 void devIntrClear(uint32_t interrupts);
317 void devIntrChangeMask();
318
319 Tick intrDelay;
320 Tick intrTick;
321 bool cpuPendingIntr;
322 void cpuIntrPost(Tick when);
323 void cpuInterrupt();
324 void cpuIntrClear();
325
326 typedef EventWrapper<NSGigE, &NSGigE::cpuInterrupt> IntrEvent;
327 friend class IntrEvent;
328 IntrEvent *intrEvent;
329
330 /**
331 * Hardware checksum support
332 */
333 bool udpChecksum(PacketPtr packet, bool gen);
334 bool tcpChecksum(PacketPtr packet, bool gen);
335 bool ipChecksum(PacketPtr packet, bool gen);
336 uint16_t checksumCalc(uint16_t *pseudo, uint16_t *buf, uint32_t len);
337
338 NSGigEInt *interface;
339
340 public:
341 NSGigE(const std::string &name, IntrControl *i, Tick intr_delay,
342 PhysicalMemory *pmem, Tick tx_delay, Tick rx_delay,
343 MemoryController *mmu, HierParams *hier, Bus *header_bus,
344 Bus *payload_bus, Tick pio_latency, bool dma_desc_free,
345 bool dma_data_free, Tick dma_read_delay, Tick dma_write_delay,
346 Tick dma_read_factor, Tick dma_write_factor, PciConfigAll *cf,
347 PciConfigData *cd, Tsunami *t, uint32_t bus, uint32_t dev,
348 uint32_t func, bool rx_filter, const int eaddr[6], Addr addr);
349 ~NSGigE();
350
351 virtual void WriteConfig(int offset, int size, uint32_t data);
352 virtual void ReadConfig(int offset, int size, uint8_t *data);
353
354 virtual Fault read(MemReqPtr &req, uint8_t *data);
355 virtual Fault write(MemReqPtr &req, const uint8_t *data);
356
357 bool cpuIntrPending() const;
358 void cpuIntrAck() { cpuIntrClear(); }
359
360 bool recvPacket(PacketPtr packet);
361 void transferDone();
362
363 void setInterface(NSGigEInt *i) { assert(!interface); interface = i; }
364
365 virtual void serialize(std::ostream &os);
366 virtual void unserialize(Checkpoint *cp, const std::string &section);
367
368 public:
369 void regStats();
370
371 private:
372 Stats::Scalar<> txBytes;
373 Stats::Scalar<> rxBytes;
374 Stats::Scalar<> txPackets;
375 Stats::Scalar<> rxPackets;
376 Stats::Formula txBandwidth;
377 Stats::Formula rxBandwidth;
378 Stats::Formula txPacketRate;
379 Stats::Formula rxPacketRate;
380
381 private:
382 Tick pioLatency;
383
384 public:
385 Tick cacheAccess(MemReqPtr &req);
386 };
387
388 /*
389 * Ethernet Interface for an Ethernet Device
390 */
391 class NSGigEInt : public EtherInt
392 {
393 private:
394 NSGigE *dev;
395
396 public:
397 NSGigEInt(const std::string &name, NSGigE *d)
398 : EtherInt(name), dev(d) { dev->setInterface(this); }
399
400 virtual bool recvPacket(PacketPtr &pkt) { return dev->recvPacket(pkt); }
401 virtual void sendDone() { dev->transferDone(); }
402 };
403
404 #endif // __NS_GIGE_HH__