41 #include "debug/Ethernet.hh" 42 #include "debug/EthernetData.hh" 46 #include "params/EtherBus.hh" 52 :
SimObject(p), ticksPerByte(p->speed), loopback(p->loopback),
53 event([this]{
txDone(); },
"ethernet bus completion"),
61 devlist_t::iterator
i =
devlist.begin();
62 devlist_t::iterator end =
devlist.end();
64 DPRINTF(Ethernet,
"ethernet packet received: length=%d\n",
packet->length);
85 panic(
"Etherbus doesn't work\n");
92 DPRINTF(Ethernet,
"ethernet packet not sent, bus busy\n",
curTick());
96 DPRINTF(Ethernet,
"ethernet packet sent: length=%d\n", pkt->length);
97 DDUMP(EthernetData, pkt->data, pkt->length);
101 int delay = (int)ceil(((
double)pkt->simLength *
ticksPerByte) + 1.0);
102 DPRINTF(Ethernet,
"scheduling packet: delay=%d, (rate=%f)\n",
103 delay, ticksPerByte);
110 EtherBusParams::create()
#define panic(...)
This implements a cprintf based panic() function.
Ports are used to interface objects to each other.
EventFunctionWrapper event
#define DDUMP(x, data, count)
EtherBus(const Params *p)
Overload hash function for BasicBlockRange type.
bool send(EtherInt *sender, EthPacketPtr &packet)
Tick curTick()
The current simulated tick.
void dump(EthPacketPtr &pkt)
std::shared_ptr< EthPacketData > EthPacketPtr
void schedule(Event &event, Tick when)
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
virtual void sendDone()=0
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Abstract superclass for simulation objects.