Go to the documentation of this file.
43 #include "debug/EthernetAll.hh"
47 #include "params/NSGigE.hh"
52 using std::make_shared;
91 using namespace networking;
99 txFifo(
p.tx_fifo_size), rxFifo(
p.rx_fifo_size),
100 txPacket(0), rxPacket(0), txPacketBufPtr(NULL), rxPacketBufPtr(NULL),
101 txXferLen(0), rxXferLen(0), rxDmaFree(false), txDmaFree(false),
102 txState(txIdle), txEnable(false), CTDD(false), txHalt(false),
103 txFragPtr(0), txDescCnt(0), txDmaState(dmaIdle), rxState(rxIdle),
104 rxEnable(false), CRDD(false), rxPktBytes(0), rxHalt(false),
105 rxFragPtr(0), rxDescCnt(0), rxDmaState(dmaIdle), extstsEnable(false),
106 eepromState(eepromStart), eepromClk(false), eepromBitsToRx(0),
107 eepromOpcode(0), eepromAddress(0), eepromData(0),
108 dmaReadDelay(
p.dma_read_delay), dmaWriteDelay(
p.dma_write_delay),
109 dmaReadFactor(
p.dma_read_factor), dmaWriteFactor(
p.dma_write_factor),
110 rxDmaData(NULL), rxDmaAddr(0), rxDmaLen(0),
111 txDmaData(NULL), txDmaAddr(0), txDmaLen(0),
113 rxDmaWriteEvent([
this]{ rxDmaWriteDone(); },
name()),
114 txDmaReadEvent([
this]{ txDmaReadDone(); },
name()),
115 txDmaWriteEvent([
this]{ txDmaWriteDone(); },
name()),
116 dmaDescFree(
p.dma_desc_free), dmaDataFree(
p.dma_data_free),
117 txDelay(
p.tx_delay), rxDelay(
p.rx_delay),
119 rxKickEvent([
this]{ rxKick(); },
name()),
121 txKickEvent([
this]{ txKick(); },
name()),
122 txEvent([
this]{ txEventTransmit(); },
name()),
123 rxFilterEnable(
p.rx_filter),
124 acceptBroadcast(
false), acceptMulticast(
false), acceptUnicast(
false),
125 acceptPerfect(
false), acceptArp(
false), multicastHashEnable(
false),
126 intrDelay(
p.intr_delay), intrTick(0), cpuPendingIntr(
false),
127 intrEvent(0), interface(0)
131 interface = new NSGigEInt(
name() + ".int0", this);
134 memcpy(&rom.perfectMatch,
p.hardware_address.bytes(), ETH_ADDR_LEN);
136 memset(&rxDesc32, 0,
sizeof(rxDesc32));
137 memset(&txDesc32, 0,
sizeof(txDesc32));
138 memset(&rxDesc64, 0,
sizeof(rxDesc64));
139 memset(&txDesc64, 0,
sizeof(txDesc64));
157 panic(
"Device specific PCI config space not implemented!\n");
177 if (if_name ==
"interface")
193 DPRINTF(EthernetPIO,
"read da=%#x pa=%#x size=%d\n",
200 panic(
"Accessing reserved register");
201 }
else if (daddr >
RESERVED && daddr <= 0x3FC) {
207 pkt->
setLE<uint32_t>(0);
210 }
else if (daddr > 0x3FC)
211 panic(
"Something is messed up!\n");
213 assert(pkt->
getSize() ==
sizeof(uint32_t));
214 uint32_t &
reg = *pkt->
getPtr<uint32_t>();
326 panic(
"unaligned read from filter hash table!");
333 panic(
"reading RFDR for something other than pattern"
334 " matching or hashing! %#x\n", rfaddr);
398 panic(
"reading unimplemented register: addr=%#x", daddr);
401 DPRINTF(EthernetPIO,
"read from %#x: data=%d data=%#x\n",
414 DPRINTF(EthernetPIO,
"write da=%#x pa=%#x size=%d\n",
418 panic(
"Accessing reserved register");
419 }
else if (daddr >
RESERVED && daddr <= 0x3FC) {
421 }
else if (daddr > 0x3FC)
422 panic(
"Something is messed up!\n");
424 if (pkt->
getSize() ==
sizeof(uint32_t)) {
425 uint32_t
reg = pkt->
getLE<uint32_t>();
487 panic(
"CFGR_AUTO_1000 not implemented!\n");
490 panic(
"CFGR_PCI64_DET is read only register!\n");
534 panic(
"ISR is a read only register!\n");
619 panic(
"Unicast hash filtering not used by drivers!\n");
622 panic(
"RFCR_ULM not implemented!\n");
648 panic(
"unaligned write to filter hash table!");
652 = (uint8_t)(
reg >> 8);
655 panic(
"writing RFDR for something other than pattern matching "
656 "or hashing! %#x\n", rfaddr);
665 panic(
"the driver never uses BRDR, something is wrong!\n");
668 panic(
"SRR is read only register!\n");
671 panic(
"the driver never uses MIBC, something is wrong!\n");
682 panic(
"the driver never uses VDR, something is wrong!\n");
692 panic(
"TBICR_MR_LOOPBACK never used, something wrong!\n");
702 panic(
"TBISR is read only register!\n");
713 panic(
"this should only be written to by the fake phy!\n");
716 panic(
"TANER is read only register!\n");
723 panic(
"invalid register access daddr=%#x", daddr);
726 panic(
"Invalid Request Size");
736 panic(
"Cannot set a reserved interrupt");
739 warn(
"interrupt not implemented %#x\n", interrupts);
772 "interrupt written to ISR: intr=%#x isr=%#x imr=%#x\n",
793 panic(
"Cannot clear a reserved interrupt");
824 "interrupt cleared from ISR: intr=%x isr=%x imr=%x\n",
834 DPRINTF(EthernetIntr,
"interrupt mask changed: isr=%x imr=%x masked=%x\n",
858 DPRINTF(EthernetIntr,
"don't need to schedule event...intrTick=%d\n",
868 DPRINTF(EthernetIntr,
"going to schedule an interrupt for intrTick=%d\n",
892 "would send an interrupt now, but there's already pending\n");
897 DPRINTF(EthernetIntr,
"posting interrupt\n");
917 DPRINTF(EthernetIntr,
"clearing interrupt\n");
929 DPRINTF(Ethernet,
"transmit reset\n");
943 DPRINTF(Ethernet,
"receive reset\n");
998 DPRINTF(EthernetDMA,
"rx dma read paddr=%#x len=%d\n",
1028 DPRINTF(EthernetDMA,
"rx dma write paddr=%#x len=%d\n",
1045 "receive kick rxState=%s (rxBuf.size=%d) %d-bit\n",
1054 DPRINTF(EthernetSM,
"receive kick exiting, can't run till %d\n",
1089 DPRINTF(EthernetSM,
"Receive Disabled! Nothing to do.\n");
1134 DPRINTF(EthernetDesc,
"rxDesc: addr=%08x read descriptor\n",
1137 "rxDesc: link=%#x bufptr=%#x cmdsts=%08x extsts=%08x\n",
1138 link, bufptr, cmdsts, extsts);
1161 DPRINTF(EthernetSM,
"****processing receive of new packet****\n");
1169 if (debug::Ethernet) {
1172 DPRINTF(Ethernet,
"ID is %d\n",
ip->id());
1176 "Src Port=%d, Dest Port=%d, Seq=%d, Ack=%d\n",
1211 DPRINTF(EthernetSM,
"done with receiving packet\n");
1216 cmdsts &= 0xffff0000;
1224 DPRINTF(EthernetCksum,
"Rx IP Checksum Error\n");
1233 DPRINTF(EthernetCksum,
"Rx TCP Checksum Error\n");
1240 if (
cksum(udp) != 0) {
1241 DPRINTF(EthernetCksum,
"Rx UDP Checksum Error\n");
1256 "rxDesc: addr=%08x writeback cmdsts extsts\n",
1259 "rxDesc: link=%#x bufptr=%#x cmdsts=%08x extsts=%08x\n",
1260 link, bufptr, cmdsts, extsts);
1305 DPRINTF(EthernetSM,
"Halting the RX state machine\n");
1336 panic(
"Invalid rxState!");
1339 DPRINTF(EthernetSM,
"entering next rxState=%s\n",
1347 DPRINTF(EthernetSM,
"rx state machine exited rxState=%s\n",
1358 DPRINTF(Ethernet,
"nothing to transmit\n");
1362 DPRINTF(Ethernet,
"Attempt Pkt Transmit: txFifo length=%d\n",
1366 if (debug::Ethernet) {
1369 DPRINTF(Ethernet,
"ID is %d\n",
ip->id());
1373 "Src Port=%d, Dest Port=%d, Seq=%d, Ack=%d\n",
1385 DPRINTF(Ethernet,
"Successful Xmit! now txFifoAvail is %d\n",
1400 DPRINTF(Ethernet,
"reschedule transmit\n");
1425 DPRINTF(EthernetDMA,
"tx dma read paddr=%#x len=%d\n",
1455 DPRINTF(EthernetDMA,
"tx dma write paddr=%#x len=%d\n",
1471 DPRINTF(EthernetSM,
"transmit kick txState=%s %d-bit\n",
1480 DPRINTF(EthernetSM,
"transmit kick exiting, can't run till %d\n",
1506 DPRINTF(EthernetSM,
"Transmit disabled. Nothing to do.\n");
1552 DPRINTF(EthernetDesc,
"txDesc: addr=%08x read descriptor\n",
1555 "txDesc: link=%#x bufptr=%#x cmdsts=%#08x extsts=%#08x\n",
1556 link, bufptr, cmdsts, extsts);
1571 DPRINTF(EthernetSM,
"****starting the tx of a new packet****\n");
1572 txPacket = make_shared<EthPacketData>(16384);
1577 DPRINTF(EthernetSM,
"the txDescCnt == 0, done with descriptor\n");
1579 DPRINTF(EthernetSM,
"there are more descriptors to come\n");
1599 DPRINTF(EthernetSM,
"This packet is done, let's wrap it up\n");
1611 warn_once(
"UDPPKT set, but not UDP!\n");
1620 warn_once(
"TCPPKT set, but not UDP!\n");
1639 panic(
"transmit packet too large, %s > 1514\n",
1664 "txDesc writeback: cmdsts=%08x extsts=%08x\n",
1687 DPRINTF(EthernetSM,
"halting TX state machine\n");
1697 DPRINTF(EthernetSM,
"this descriptor isn't done yet\n");
1746 DPRINTF(EthernetSM,
"halting TX state machine\n");
1776 panic(
"invalid state");
1779 DPRINTF(EthernetSM,
"entering next txState=%s\n",
1787 DPRINTF(EthernetSM,
"tx state machine exited txState=%s\n",
1822 panic(
"only EEPROM reads are implemented!");
1840 panic(
"EEPROM read access out of range!");
1863 panic(
"FreeBSD driver only uses EEPROM to read PMATCH!");
1890 panic(
"invalid EEPROM state");
1899 DPRINTF(Ethernet,
"transfer complete: txFifo empty...nothing to do\n");
1903 DPRINTF(Ethernet,
"transfer complete: data in txFifo...schedule xmit\n");
1944 DPRINTF(Ethernet,
"rxFilter drop\n");
1945 DDUMP(EthernetData, packet->data, packet->length);
1957 DPRINTF(Ethernet,
"Receiving packet from wire, rxFifoAvail=%d\n",
1961 DPRINTF(Ethernet,
"receive disabled...packet dropped\n");
1967 "receive packet filtering disabled . . . packet dropped\n");
1972 DPRINTF(Ethernet,
"packet filtered...dropped\n");
1982 "packet won't fit in receive buffer...pkt ID %d dropped\n",
2080 bool txPacketExists =
txPacket !=
nullptr;
2082 if (txPacketExists) {
2085 txPacket->serialize(
"txPacket", cp);
2090 bool rxPacketExists =
rxPacket !=
nullptr;
2092 if (rxPacketExists) {
2093 rxPacket->serialize(
"rxPacket", cp);
2183 Tick intrEventTick = 0;
2245 bool txPacketExists;
2247 if (txPacketExists) {
2248 txPacket = make_shared<EthPacketData>(16384);
2249 txPacket->unserialize(
"txPacket", cp);
2250 uint32_t txPktBufPtr;
2256 bool rxPacketExists;
2259 if (rxPacketExists) {
2260 rxPacket = make_shared<EthPacketData>();
2261 rxPacket->unserialize(
"rxPacket", cp);
2262 uint32_t rxPktBufPtr;
2365 if (intrEventTick) {
Tick curTick()
The universal simulation clock.
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Dummy class to keep the Python class hierarchy in sync with the C++ object hierarchy.
bool rxFilter(const EthPacketPtr &packet)
Tick when() const
Get the time that the event is scheduled.
statistics::Scalar totalSwi
const uint8_t EEPROM_PMATCH0_ADDR
const uint16_t FHASH_ADDR
uint8_t filterHash[FHASH_SIZE]
for hash table memory.
PCIConfig config
The current config space.
Tick writeConfig(PacketPtr pkt) override
This is to write to the PCI general configuration registers.
#define UNSERIALIZE_SCALAR(scalar)
Addr txFragPtr
ptr to the next byte in the current fragment
statistics::Scalar postedRxOrn
DrainState drainState() const
Return the current drain state of an object.
void serialize(CheckpointOut &cp) const override
Serialize this object to the given output stream.
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
statistics::Scalar totalRxDesc
statistics::Scalar descDmaWrBytes
const uint8_t EEPROM_SIZE
void unserialize(CheckpointIn &cp) override
Reconstruct the state of this object from a checkpoint.
uint16_t cksum(const IpPtr &ptr)
Addr rxFragPtr
ptr to the next byte in current fragment
RxState
Receive State Machine States.
bool rxFilterEnable
receive address filter
TxState
Transmit State Machine states.
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
bool sendPacket(EthPacketPtr packet)
dp_regs regs
device register file
statistics::Scalar postedRxOk
void dmaRead(Addr addr, int size, Event *event, uint8_t *data, uint32_t sid, uint32_t ssid, Tick delay=0)
void schedule(Event &event, Tick when)
statistics::Scalar postedRxDesc
void drainResume() override
Resume execution after a successful drain.
void makeAtomicResponse()
statistics::Scalar txUdpChecksums
const EthAddr & dst() const
statistics::Scalar totalTxIdle
statistics::Scalar totalTxDesc
statistics::Scalar postedTxDesc
#define PCI_DEVICE_SPECIFIC
EventFunctionWrapper txKickEvent
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
uint32_t txDescCnt
count of bytes remaining in the current descriptor
statistics::Scalar txPackets
EthPacketPtr txPacket
various helper vars
statistics::Scalar postedInterrupts
const uint16_t FHASH_SIZE
Cycles is a wrapper class for representing cycle counts, i.e.
statistics::Scalar descDmaWrites
void unserialize(const std::string &base, CheckpointIn &cp)
statistics::Scalar txTcpChecksums
virtual Tick writeConfig(PacketPtr pkt)
Write to the PCI config space data that is stored locally.
statistics::Scalar totalRxOrn
EventFunctionWrapper rxKickEvent
const char * NsDmaState[]
virtual std::string name() const
std::shared_ptr< EthPacketData > EthPacketPtr
RxState rxState
rx State Machine
const Params & params() const
statistics::Scalar totalRxIdle
uint8_t perfectMatch[ETH_ADDR_LEN]
for perfect match memory.
statistics::Scalar totalRxOk
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
gem5::EtherDevice::EtherDeviceStats etherDeviceStats
bool recvPacket(EthPacketPtr packet)
uint64_t Tick
Tick count type.
bool CTDD
Current Transmit Descriptor Done.
statistics::Scalar rxIpChecksums
ns_desc32 txDesc32
DescCaches.
const uint8_t EEPROM_PMATCH1_ADDR
void reschedule(Event &event, Tick when, bool always=false)
void dmaWrite(Addr addr, int size, Event *event, uint8_t *data, uint32_t sid, uint32_t ssid, Tick delay=0)
statistics::Scalar rxUdpChecksums
EventFunctionWrapper rxDmaWriteEvent
#define SERIALIZE_ARRAY(member, size)
EEPROMState eepromState
EEPROM State Machine.
bool push(EthPacketPtr ptr)
statistics::Scalar rxBytes
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
EventFunctionWrapper txDmaReadEvent
const std::string & name()
#define SERIALIZE_SCALAR(scalar)
bool CRDD
Current Receive Descriptor Done.
#define DDUMP(x, data, count)
DPRINTF is a debugging trace facility that allows one to selectively enable tracing statements.
Tick clockEdge(Cycles cycles=Cycles(0)) const
Determine the tick when a cycle begins, by default the current one, but the argument also enables the...
EventFunctionWrapper * intrEvent
statistics::Scalar descDmaReads
void transmit()
Retransmit event.
virtual Tick readConfig(PacketPtr pkt)
Read from the PCI config space data that is stored locally.
const uint8_t EEPROM_PMATCH2_ADDR
virtual void drainResume()
Resume execution after a successful drain.
statistics::Scalar postedTxOk
Ports are used to interface objects to each other.
bool ioEnable
pci settings
#define UNSERIALIZE_ARRAY(member, size)
EventFunctionWrapper txEvent
void devIntrPost(uint32_t interrupts)
Interrupt management.
statistics::Scalar rxPackets
statistics::Scalar postedTxIdle
void eepromKick()
Advance the EEPROM state machine Called on rising edge of EEPROM clock bit in MEAR.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
statistics::Scalar postedSwi
statistics::Scalar txBytes
unsigned reserve(unsigned len=0)
void serialize(CheckpointOut &cp) const override
Serialize an object.
EEPROMState
EEPROM State Machine States.
statistics::Scalar rxTcpChecksums
Tick read(PacketPtr pkt) override
This reads the device registers, which are detailed in the NS83820 spec sheet.
T getLE() const
Get the data in the packet byte swapped from little endian to host endian.
EventFunctionWrapper txDmaWriteEvent
statistics::Scalar totalTxOk
bool cpuIntrPending() const
std::ostream CheckpointOut
void squash()
Squash the current event.
void setLE(T v)
Set the value in the data pointer to v as little endian.
void cpuIntrPost(Tick when)
@ Running
Running normally.
const char * NsRxStateStrings[]
uint32_t rxPktBytes
num of bytes in the current packet being drained from rxDataFifo
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
statistics::Scalar postedRxIdle
statistics::Scalar droppedPackets
NSGigE(const Params ¶ms)
const uint8_t EEPROM_READ
const char * NsTxStateStrings[]
EventFunctionWrapper rxDmaReadEvent
statistics::Scalar descDmaRdBytes
void devIntrClear(uint32_t interrupts)
statistics::Scalar txIpChecksums
bool scheduled() const
Determine if the current event is scheduled.
uint32_t rxDescCnt
count of bytes remaining in the current descriptor
void serialize(const std::string &base, CheckpointOut &cp) const
Serialization stuff.
#define panic(...)
This implements a cprintf based panic() function.
T * getPtr()
get a pointer to the data ptr.
Generated on Wed Jul 13 2022 10:39:20 for gem5 by doxygen 1.8.17