gem5  v20.1.0.0
dist_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  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 /* @file
39  * Device module for a full duplex ethernet link for dist gem5 simulations.
40  *
41  * See comments in dev/net/dist_iface.hh for a generic description of dist
42  * gem5 simulations.
43  *
44  * This class is meant to be a drop in replacement for the EtherLink class for
45  * dist gem5 runs.
46  *
47  */
48 #ifndef __DEV_DIST_ETHERLINK_HH__
49 #define __DEV_DIST_ETHERLINK_HH__
50 
51 #include <iostream>
52 
53 #include "dev/net/etherlink.hh"
54 #include "params/DistEtherLink.hh"
55 
56 class DistIface;
57 class EthPacketData;
58 
62 class DistEtherLink : public SimObject
63 {
64  protected:
65  class LocalIface;
66 
73  class Link : public Serializable
74  {
75  protected:
76  std::string objName;
83 
84  public:
85  Link(const std::string &name, DistEtherLink *p,
86  EtherDump *d, Event *e) :
87  objName(name), parent(p), localIface(nullptr), dump(d),
88  distIface(nullptr), event(e) {}
89 
90  ~Link() {}
91 
92  const std::string name() const { return objName; }
93  bool busy() const { return (bool)packet; }
95 
96  void serialize(CheckpointOut &cp) const override;
97  void unserialize(CheckpointIn &cp) override;
98  };
99 
103  class TxLink : public Link
104  {
105  protected:
109  double ticksPerByte;
114 
118  void txDone();
120 
121  public:
122  TxLink(const std::string &name, DistEtherLink *p,
123  double invBW, Tick delay_var, EtherDump *d) :
124  Link(name, p, d, &doneEvent), ticksPerByte(invBW),
125  delayVar(delay_var), doneEvent([this]{ txDone(); }, name) {}
126  ~TxLink() {}
127 
132  void setDistInt(DistIface *m) { assert(!distIface); distIface=m; }
133 
140  };
141 
145  class RxLink : public Link
146  {
147  protected:
148 
153 
157  void rxDone();
159 
160  public:
161 
162  RxLink(const std::string &name, DistEtherLink *p,
163  Tick delay, EtherDump *d) :
164  Link(name, p, d, &_doneEvent), linkDelay(delay),
165  _doneEvent([this]{ rxDone(); }, name) {}
166  ~RxLink() {}
167 
171  void setDistInt(DistIface *m);
175  const EventFunctionWrapper *doneEvent() const { return &_doneEvent; }
176  };
177 
181  class LocalIface : public EtherInt
182  {
183  private:
185 
186  public:
187  LocalIface(const std::string &name, TxLink *tx, RxLink *rx,
188  DistIface *m);
189 
190  bool recvPacket(EthPacketPtr pkt) { return txLink->transmit(pkt); }
191  void sendDone() { peer->sendDone(); }
192  bool isBusy() { return txLink->busy(); }
193  };
194 
195 
196  protected:
210 
212 
213  public:
214  typedef DistEtherLinkParams Params;
215  DistEtherLink(const Params *p);
216  ~DistEtherLink();
217 
218  const Params *
219  params() const
220  {
221  return dynamic_cast<const Params *>(_params);
222  }
223 
224  Port &getPort(const std::string &if_name,
225  PortID idx=InvalidPortID) override;
226 
227  virtual void init() override;
228  virtual void startup() override;
229 
230  void serialize(CheckpointOut &cp) const override;
231  void unserialize(CheckpointIn &cp) override;
232 };
233 
234 #endif // __DEV_DIST_ETHERLINK_HH__
EtherInt::sendDone
virtual void sendDone()=0
DistIface
The interface class to talk to peer gem5 processes.
Definition: dist_iface.hh:99
InvalidPortID
const PortID InvalidPortID
Definition: types.hh:238
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
EtherInt
Definition: etherint.hh:47
Serializable
Basic support for object serialization.
Definition: serialize.hh:172
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:63
PortID
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:237
EventFunctionWrapper
Definition: eventq.hh:1101
cp
Definition: cprintf.cc:40
Event
Definition: eventq.hh:246
EthPacketData
Definition: etherpkt.hh:46
ArmISA::d
Bitfield< 9 > d
Definition: miscregs_types.hh:60
Port
Ports are used to interface objects to each other.
Definition: port.hh:56
ArmISA::e
Bitfield< 9 > e
Definition: miscregs_types.hh:61
EthPacketPtr
std::shared_ptr< EthPacketData > EthPacketPtr
Definition: etherpkt.hh:87
EtherInt::name
const std::string & name() const
Return port name (for DPRINTF).
Definition: etherint.hh:59
SimObject::_params
const SimObjectParams * _params
Cached copy of the object parameters.
Definition: sim_object.hh:110
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:63
EtherDump
Definition: etherdump.hh:45
EtherInt::peer
EtherInt * peer
Definition: etherint.hh:51
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
CheckpointIn
Definition: serialize.hh:67
ArmISA::m
Bitfield< 0 > m
Definition: miscregs_types.hh:389
SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:92

Generated on Wed Sep 30 2020 14:02:11 for gem5 by doxygen 1.8.17