gem5 v24.1.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
etherlink.hh
Go to the documentation of this file.
1/*
2 * Copyright (c) 2015 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Copyright (c) 2002-2005 The Regents of The University of Michigan
15 * All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are
19 * met: redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer;
21 * redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution;
24 * neither the name of the copyright holders nor the names of its
25 * contributors may be used to endorse or promote products derived from
26 * this software without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 */
40
41/* @file
42 * Device module for modelling a fixed bandwidth full duplex ethernet link
43 */
44
45#ifndef __DEV_NET_ETHERLINK_HH__
46#define __DEV_NET_ETHERLINK_HH__
47
48#include <queue>
49#include <utility>
50
51#include "base/random.hh"
52#include "base/types.hh"
53#include "dev/net/etherint.hh"
54#include "dev/net/etherpkt.hh"
55#include "params/EtherLink.hh"
56#include "sim/eventq.hh"
57#include "sim/sim_object.hh"
58
59namespace gem5
60{
61
62class EtherDump;
63class Checkpoint;
64/*
65 * Model for a fixed bandwidth full duplex ethernet link
66 */
67class EtherLink : public SimObject
68{
69 protected:
70 class Interface;
71
72 /*
73 * Model for a single uni-directional link
74 */
75 class Link
76 {
77 protected:
78 const std::string objName;
79
81 const int number;
82
85
86 const double ticksPerByte;
90
92
93 protected:
94 /*
95 * Transfer is complete
96 */
98 void txDone();
100
107
108 void processTxQueue();
110
112
113 public:
114 Link(const std::string &name, EtherLink *p, int num,
115 double rate, Tick delay, Tick delay_var, EtherDump *dump);
116 ~Link() {}
117
118 const std::string name() const { return objName; }
119
120 bool busy() const { return (bool)packet; }
122
123 void setTxInt(Interface *i) { assert(!txint); txint = i; }
124 void setRxInt(Interface *i) { assert(!rxint); rxint = i; }
125
126 void serialize(const std::string &base, CheckpointOut &cp) const;
127 void unserialize(const std::string &base, CheckpointIn &cp);
128 };
129
130 /*
131 * Interface at each end of the link
132 */
133 class Interface : public EtherInt
134 {
135 private:
137
138 public:
139 Interface(const std::string &name, Link *txlink, Link *rxlink);
140 bool recvPacket(EthPacketPtr packet) { return txlink->transmit(packet); }
141 void sendDone() { peer->sendDone(); }
142 bool isBusy() { return txlink->busy(); }
143 };
144
147
148 public:
149 using Params = EtherLinkParams;
150 EtherLink(const Params &p);
151 virtual ~EtherLink();
152
153 Port &getPort(const std::string &if_name,
154 PortID idx=InvalidPortID) override;
155
156 void serialize(CheckpointOut &cp) const override;
157 void unserialize(CheckpointIn &cp) override;
158
159};
160
161} // namespace gem5
162
163#endif // __DEV_NET_ETHERLINK_HH__
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,...
virtual void sendDone()=0
EtherInt * peer
Definition etherint.hh:54
const std::string & name() const
Return port name (for DPRINTF).
Definition etherint.hh:62
Ports are used to interface objects to each other.
Definition port.hh:62
std::shared_ptr< Random > RandomPtr
Definition random.hh:65
static RandomPtr genRandom()
Definition random.hh:68
Abstract superclass for simulation objects.
STL deque class.
Definition stl.hh:44
Bitfield< 7 > i
Definition misc_types.hh:67
Bitfield< 0 > p
Bitfield< 51, 12 > base
Definition pagetable.hh:141
Copyright (c) 2024 Arm Limited All rights reserved.
Definition binary32.hh:36
const PortID InvalidPortID
Definition types.hh:246
std::ostream CheckpointOut
Definition serialize.hh:66
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition types.hh:245
uint64_t Tick
Tick count type.
Definition types.hh:58
std::shared_ptr< EthPacketData > EthPacketPtr
Definition etherpkt.hh:90

Generated on Mon Jan 13 2025 04:28:34 for gem5 by doxygen 1.9.8