SimObjects: Clean up handling of C++ namespaces.
[gem5.git] / src / dev / ns_gige.hh
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 * Authors: Nathan Binkert
29 * Lisa Hsu
30 */
31
32 /** @file
33 * Device module for modelling the National Semiconductor
34 * DP83820 ethernet controller
35 */
36
37 #ifndef __DEV_NS_GIGE_HH__
38 #define __DEV_NS_GIGE_HH__
39
40 #include "base/inet.hh"
41 #include "dev/etherdevice.hh"
42 #include "dev/etherint.hh"
43 #include "dev/etherpkt.hh"
44 #include "dev/io_device.hh"
45 #include "dev/ns_gige_reg.h"
46 #include "dev/pktfifo.hh"
47 #include "params/NSGigE.hh"
48 #include "sim/eventq.hh"
49
50 // Hash filtering constants
51 const uint16_t FHASH_ADDR = 0x100;
52 const uint16_t FHASH_SIZE = 0x100;
53
54 // EEPROM constants
55 const uint8_t EEPROM_READ = 0x2;
56 const uint8_t EEPROM_SIZE = 64; // Size in words of NSC93C46 EEPROM
57 const uint8_t EEPROM_PMATCH2_ADDR = 0xA; // EEPROM Address of PMATCH word 2
58 const uint8_t EEPROM_PMATCH1_ADDR = 0xB; // EEPROM Address of PMATCH word 1
59 const uint8_t EEPROM_PMATCH0_ADDR = 0xC; // EEPROM Address of PMATCH word 0
60
61 /**
62 * Ethernet device registers
63 */
64 struct dp_regs {
65 uint32_t command;
66 uint32_t config;
67 uint32_t mear;
68 uint32_t ptscr;
69 uint32_t isr;
70 uint32_t imr;
71 uint32_t ier;
72 uint32_t ihr;
73 uint32_t txdp;
74 uint32_t txdp_hi;
75 uint32_t txcfg;
76 uint32_t gpior;
77 uint32_t rxdp;
78 uint32_t rxdp_hi;
79 uint32_t rxcfg;
80 uint32_t pqcr;
81 uint32_t wcsr;
82 uint32_t pcr;
83 uint32_t rfcr;
84 uint32_t rfdr;
85 uint32_t brar;
86 uint32_t brdr;
87 uint32_t srr;
88 uint32_t mibc;
89 uint32_t vrcr;
90 uint32_t vtcr;
91 uint32_t vdr;
92 uint32_t ccsr;
93 uint32_t tbicr;
94 uint32_t tbisr;
95 uint32_t tanar;
96 uint32_t tanlpar;
97 uint32_t taner;
98 uint32_t tesr;
99 };
100
101 struct dp_rom {
102 /**
103 * for perfect match memory.
104 * the linux driver doesn't use any other ROM
105 */
106 uint8_t perfectMatch[ETH_ADDR_LEN];
107
108 /**
109 * for hash table memory.
110 * used by the freebsd driver
111 */
112 uint8_t filterHash[FHASH_SIZE];
113 };
114
115 class NSGigEInt;
116 class Packet;
117
118 /**
119 * NS DP83820 Ethernet device model
120 */
121 class NSGigE : public EtherDevice
122 {
123 public:
124 /** Transmit State Machine states */
125 enum TxState
126 {
127 txIdle,
128 txDescRefr,
129 txDescRead,
130 txFifoBlock,
131 txFragRead,
132 txDescWrite,
133 txAdvance
134 };
135
136 /** Receive State Machine States */
137 enum RxState
138 {
139 rxIdle,
140 rxDescRefr,
141 rxDescRead,
142 rxFifoBlock,
143 rxFragWrite,
144 rxDescWrite,
145 rxAdvance
146 };
147
148 enum DmaState
149 {
150 dmaIdle,
151 dmaReading,
152 dmaWriting,
153 dmaReadWaiting,
154 dmaWriteWaiting
155 };
156
157 /** EEPROM State Machine States */
158 enum EEPROMState
159 {
160 eepromStart,
161 eepromGetOpcode,
162 eepromGetAddress,
163 eepromRead
164 };
165
166 protected:
167 /** device register file */
168 dp_regs regs;
169 dp_rom rom;
170
171 /** pci settings */
172 bool ioEnable;
173 #if 0
174 bool memEnable;
175 bool bmEnable;
176 #endif
177
178 /*** BASIC STRUCTURES FOR TX/RX ***/
179 /* Data FIFOs */
180 PacketFifo txFifo;
181 PacketFifo rxFifo;
182
183 /** various helper vars */
184 EthPacketPtr txPacket;
185 EthPacketPtr rxPacket;
186 uint8_t *txPacketBufPtr;
187 uint8_t *rxPacketBufPtr;
188 uint32_t txXferLen;
189 uint32_t rxXferLen;
190 bool rxDmaFree;
191 bool txDmaFree;
192
193 /** DescCaches */
194 ns_desc32 txDesc32;
195 ns_desc32 rxDesc32;
196 ns_desc64 txDesc64;
197 ns_desc64 rxDesc64;
198
199 /* state machine cycle time */
200 Tick clock;
201 inline Tick ticks(int numCycles) const { return numCycles * clock; }
202
203 /* tx State Machine */
204 TxState txState;
205 bool txEnable;
206
207 /** Current Transmit Descriptor Done */
208 bool CTDD;
209 /** halt the tx state machine after next packet */
210 bool txHalt;
211 /** ptr to the next byte in the current fragment */
212 Addr txFragPtr;
213 /** count of bytes remaining in the current descriptor */
214 uint32_t txDescCnt;
215 DmaState txDmaState;
216
217 /** rx State Machine */
218 RxState rxState;
219 bool rxEnable;
220
221 /** Current Receive Descriptor Done */
222 bool CRDD;
223 /** num of bytes in the current packet being drained from rxDataFifo */
224 uint32_t rxPktBytes;
225 /** halt the rx state machine after current packet */
226 bool rxHalt;
227 /** ptr to the next byte in current fragment */
228 Addr rxFragPtr;
229 /** count of bytes remaining in the current descriptor */
230 uint32_t rxDescCnt;
231 DmaState rxDmaState;
232
233 bool extstsEnable;
234
235 /** EEPROM State Machine */
236 EEPROMState eepromState;
237 bool eepromClk;
238 uint8_t eepromBitsToRx;
239 uint8_t eepromOpcode;
240 uint8_t eepromAddress;
241 uint16_t eepromData;
242
243 protected:
244 Tick dmaReadDelay;
245 Tick dmaWriteDelay;
246
247 Tick dmaReadFactor;
248 Tick dmaWriteFactor;
249
250 void *rxDmaData;
251 Addr rxDmaAddr;
252 int rxDmaLen;
253 bool doRxDmaRead();
254 bool doRxDmaWrite();
255
256 void *txDmaData;
257 Addr txDmaAddr;
258 int txDmaLen;
259 bool doTxDmaRead();
260 bool doTxDmaWrite();
261
262 void rxDmaReadDone();
263 friend class EventWrapper<NSGigE, &NSGigE::rxDmaReadDone>;
264 EventWrapper<NSGigE, &NSGigE::rxDmaReadDone> rxDmaReadEvent;
265
266 void rxDmaWriteDone();
267 friend class EventWrapper<NSGigE, &NSGigE::rxDmaWriteDone>;
268 EventWrapper<NSGigE, &NSGigE::rxDmaWriteDone> rxDmaWriteEvent;
269
270 void txDmaReadDone();
271 friend class EventWrapper<NSGigE, &NSGigE::txDmaReadDone>;
272 EventWrapper<NSGigE, &NSGigE::txDmaReadDone> txDmaReadEvent;
273
274 void txDmaWriteDone();
275 friend class EventWrapper<NSGigE, &NSGigE::txDmaWriteDone>;
276 EventWrapper<NSGigE, &NSGigE::txDmaWriteDone> txDmaWriteEvent;
277
278 bool dmaDescFree;
279 bool dmaDataFree;
280
281 protected:
282 Tick txDelay;
283 Tick rxDelay;
284
285 void txReset();
286 void rxReset();
287 void regsReset();
288
289 void rxKick();
290 Tick rxKickTick;
291 typedef EventWrapper<NSGigE, &NSGigE::rxKick> RxKickEvent;
292 friend void RxKickEvent::process();
293 RxKickEvent rxKickEvent;
294
295 void txKick();
296 Tick txKickTick;
297 typedef EventWrapper<NSGigE, &NSGigE::txKick> TxKickEvent;
298 friend void TxKickEvent::process();
299 TxKickEvent txKickEvent;
300
301 void eepromKick();
302
303 /**
304 * Retransmit event
305 */
306 void transmit();
307 void txEventTransmit()
308 {
309 transmit();
310 if (txState == txFifoBlock)
311 txKick();
312 }
313 typedef EventWrapper<NSGigE, &NSGigE::txEventTransmit> TxEvent;
314 friend void TxEvent::process();
315 TxEvent txEvent;
316
317 void txDump() const;
318 void rxDump() const;
319
320 /**
321 * receive address filter
322 */
323 bool rxFilterEnable;
324 bool rxFilter(const EthPacketPtr &packet);
325 bool acceptBroadcast;
326 bool acceptMulticast;
327 bool acceptUnicast;
328 bool acceptPerfect;
329 bool acceptArp;
330 bool multicastHashEnable;
331
332 /**
333 * Interrupt management
334 */
335 void devIntrPost(uint32_t interrupts);
336 void devIntrClear(uint32_t interrupts);
337 void devIntrChangeMask();
338
339 Tick intrDelay;
340 Tick intrTick;
341 bool cpuPendingIntr;
342 void cpuIntrPost(Tick when);
343 void cpuInterrupt();
344 void cpuIntrClear();
345
346 typedef EventWrapper<NSGigE, &NSGigE::cpuInterrupt> IntrEvent;
347 friend void IntrEvent::process();
348 IntrEvent *intrEvent;
349 NSGigEInt *interface;
350
351 public:
352 typedef NSGigEParams Params;
353 const Params *params() const { return (const Params *)_params; }
354 NSGigE(Params *params);
355 ~NSGigE();
356
357 virtual EtherInt *getEthPort(const std::string &if_name, int idx);
358
359 virtual Tick writeConfig(PacketPtr pkt);
360
361 virtual Tick read(PacketPtr pkt);
362 virtual Tick write(PacketPtr pkt);
363
364 bool cpuIntrPending() const;
365 void cpuIntrAck() { cpuIntrClear(); }
366
367 bool recvPacket(EthPacketPtr packet);
368 void transferDone();
369
370 virtual void serialize(std::ostream &os);
371 virtual void unserialize(Checkpoint *cp, const std::string &section);
372
373 virtual void resume();
374 };
375
376 /*
377 * Ethernet Interface for an Ethernet Device
378 */
379 class NSGigEInt : public EtherInt
380 {
381 private:
382 NSGigE *dev;
383
384 public:
385 NSGigEInt(const std::string &name, NSGigE *d)
386 : EtherInt(name), dev(d)
387 { }
388
389 virtual bool recvPacket(EthPacketPtr pkt) { return dev->recvPacket(pkt); }
390 virtual void sendDone() { dev->transferDone(); }
391 };
392
393 #endif // __DEV_NS_GIGE_HH__