37 #include "debug/EthernetAll.hh" 45 for (
int i = 0;
i < p->port_interface_connection_count; ++
i) {
46 std::string interfaceName =
csprintf(
"%s.interface%d",
name(),
i);
47 Interface *
interface = new Interface(interfaceName, this,
48 p->output_buffer_size, p->delay,
49 p->delay_var, p->fabric_speed, i);
65 if (if_name ==
"interface") {
79 fifo.emplace_hint(fifo.end(), ptr,
curTick(), senderId);
83 DPRINTF(Ethernet,
"Fifo is full. Drop packet: len=%d\n",
84 std::prev(fifo.end())->packet->length);
86 _size -= std::prev(fifo.end())->packet->length;
87 fifo.erase(std::prev(fifo.end()));
91 warn(
"EtherSwitch: Packet length (%d) exceeds the maximum storage " 92 "capacity of port fifo (%d)", ptr->length, _maxsize);
99 if (!empty() && fifo.begin()->packet == ptr) {
111 assert(_size >= fifo.begin()->packet->length);
113 _size -= fifo.begin()->packet->length;
114 fifo.erase(fifo.begin());
126 uint64_t outputBufferSize,
Tick delay,
127 Tick delay_var,
double rate,
unsigned id)
128 :
EtherInt(name), ticksPerByte(rate), switchDelay(delay),
129 delayVar(delay_var), interfaceId(id), parent(etherSwitch),
130 outputFifo(name +
".outputFifo", outputBufferSize),
149 DPRINTF(Ethernet,
"sending packet from MAC %x on port " 150 "%s to MAC %x on port %s\n", uint64_t(srcMacAddr),
151 this->
name(), uint64_t(destMacAddr), receiver->
name());
185 DPRINTF(Ethernet,
"output port busy...retry later\n");
216 DPRINTF(Ethernet,
"no entry in forwaring table for MAC: " 217 "%x\n", uint64_t(destMacAddr));
229 DPRINTF(Ethernet,
"found entry for MAC address %x on port %s\n",
230 uint64_t(destMacAddr), it->second.interface->name());
231 return it->second.interface;
244 DPRINTF(Ethernet,
"adding forwarding table entry for MAC " 245 " address %x on port %s\n", uint64_t(srcMacAddr),
249 forwardingTableEntry.lastUseTime =
curTick();
251 forwardingTableEntry));
253 it->second.lastUseTime =
curTick();
261 it->serializeSection(cp, it->name());
269 it->unserializeSection(cp, it->name());
279 if (event_scheduled) {
289 bool event_scheduled;
292 if (event_scheduled) {
303 packet->serialize(
"packet", cp);
311 packet = make_shared<EthPacketData>(16384);
312 packet->unserialize(
"packet", cp);
321 int fifosize = fifo.size();
326 for (
const auto &entry : fifo)
327 entry.serializeSection(cp,
csprintf(
"entry%d", i++));
339 for (
int i = 0;
i < fifosize; ++
i) {
350 EtherSwitchParams::create()
void serialize(CheckpointOut &cp) const override
Serialize an object.
const std::string & name() const
Return port name (for DPRINTF).
Ports are used to interface objects to each other.
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
bool recvPacket(EthPacketPtr packet)
When a packet is received from a device, route it through an (several) output queue(s) ...
Interface(const std::string &name, EtherSwitch *_etherSwitch, uint64_t outputBufferSize, Tick delay, Tick delay_var, double rate, unsigned id)
Model for an Ethernet switch port.
Overload hash function for BasicBlockRange type.
std::vector< Interface * > interfaces
std::map< uint64_t, SwitchTableEntry > forwardingTable
void serializeSection(CheckpointOut &cp, const char *name) const
Serialize an object into a new section.
EventFunctionWrapper txEvent
std::enable_if< std::is_integral< T >::value, T >::type random()
Use the SFINAE idiom to choose an implementation based on whether the type is integral or floating po...
PortFifo outputFifo
output fifo at each interface
#define UNSERIALIZE_SCALAR(scalar)
void learnSenderAddr(Net::EthAddr srcMacAddr, Interface *sender)
Tick curTick()
The current simulated tick.
Interface * lookupDestPort(Net::EthAddr destAddr)
virtual Port & getPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a port with a given name and index.
std::string csprintf(const char *format, const Args &...args)
uint64_t Tick
Tick count type.
void unserialize(CheckpointIn &cp)
Unserialize an object.
void serialize(CheckpointOut &cp) const
Serialize an object.
std::shared_ptr< EthPacketData > EthPacketPtr
void schedule(Event &event, Tick when)
void unserialize(CheckpointIn &cp) override
Unserialize an object.
void reschedule(Event &event, Tick when, bool always=false)
bool push(EthPacketPtr ptr, unsigned senderId)
Push a packet into the fifo and sort the packets with same recv tick by port id.
const unsigned interfaceId
EtherSwitch(const Params *p)
const double ticksPerByte
#define SERIALIZE_SCALAR(scalar)
bool scheduled() const
Determine if the current event is scheduled.
bool sendPacket(EthPacketPtr packet)
virtual const std::string name() const
std::ostream CheckpointOut
void unserialize(CheckpointIn &cp)
Unserialize an object.
void enqueue(EthPacketPtr packet, unsigned senderId)
enqueue packet to the outputFifo
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
void serialize(CheckpointOut &cp) const
Serialization stuff.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
void serialize(CheckpointOut &cp) const
Serialize an object.
Tick when() const
Get the time that the event is scheduled.
Abstract superclass for simulation objects.
void unserialize(CheckpointIn &cp)
Unserialize an object.
void unserializeSection(CheckpointIn &cp, const char *name)
Unserialize an a child object.