gem5  v20.0.0.3
sinic.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2004-2005 The Regents of The University of Michigan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #ifndef __DEV_NET_SINIC_HH__
30 #define __DEV_NET_SINIC_HH__
31 
32 #include "base/inet.hh"
33 #include "base/statistics.hh"
34 #include "dev/io_device.hh"
35 #include "dev/net/etherdevice.hh"
36 #include "dev/net/etherint.hh"
37 #include "dev/net/etherpkt.hh"
38 #include "dev/net/pktfifo.hh"
39 #include "dev/net/sinicreg.hh"
40 #include "dev/pci/device.hh"
41 #include "params/Sinic.hh"
42 #include "sim/eventq.hh"
43 
44 namespace Sinic {
45 
46 class Interface;
47 class Base : public EtherDevBase
48 {
49  protected:
50  bool rxEnable;
51  bool txEnable;
52 
53  protected:
58  void cpuIntrPost(Tick when);
59  void cpuInterrupt();
60  void cpuIntrClear();
61 
64 
65  bool cpuIntrPending() const;
66  void cpuIntrAck() { cpuIntrClear(); }
67 
71  public:
72  void serialize(CheckpointOut &cp) const override;
73  void unserialize(CheckpointIn &cp) override;
74 
78  public:
79  typedef SinicParams Params;
80  const Params *params() const { return (const Params *)_params; }
81  Base(const Params *p);
82 };
83 
84 class Device : public Base
85 {
86  protected:
88  enum RxState {
93  rxCopyDone
94  };
95 
97  enum TxState {
102  txCopyDone
103  };
104 
106  struct {
107  uint32_t Config; // 0x00
108  uint32_t Command; // 0x04
109  uint32_t IntrStatus; // 0x08
110  uint32_t IntrMask; // 0x0c
111  uint32_t RxMaxCopy; // 0x10
112  uint32_t TxMaxCopy; // 0x14
113  uint32_t ZeroCopySize; // 0x18
114  uint32_t ZeroCopyMark; // 0x1c
115  uint32_t VirtualCount; // 0x20
116  uint32_t RxMaxIntr; // 0x24
117  uint32_t RxFifoSize; // 0x28
118  uint32_t TxFifoSize; // 0x2c
119  uint32_t RxFifoLow; // 0x30
120  uint32_t TxFifoLow; // 0x34
121  uint32_t RxFifoHigh; // 0x38
122  uint32_t TxFifoHigh; // 0x3c
123  uint64_t RxData; // 0x40
124  uint64_t RxDone; // 0x48
125  uint64_t RxWait; // 0x50
126  uint64_t TxData; // 0x58
127  uint64_t TxDone; // 0x60
128  uint64_t TxWait; // 0x68
129  uint64_t HwAddr; // 0x70
130  uint64_t RxStatus; // 0x78
131  } regs;
132 
133  struct VirtualReg {
134  uint64_t RxData;
135  uint64_t RxDone;
136  uint64_t TxData;
137  uint64_t TxDone;
138 
140  unsigned rxPacketOffset;
141  unsigned rxPacketBytes;
142  uint64_t rxDoneData;
143 
146 
148  : RxData(0), RxDone(0), TxData(0), TxDone(0),
149  rxPacketOffset(0), rxPacketBytes(0), rxDoneData(0)
150  { }
151  };
156  VirtualRegs virtualRegs;
157  VirtualList rxList;
158  VirtualList rxBusy;
159  int rxActive;
160  VirtualList txList;
161 
165 
166  uint8_t &regData8(Addr daddr) { return *((uint8_t *)&regs + daddr); }
167  uint32_t &regData32(Addr daddr) { return *(uint32_t *)&regData8(daddr); }
168  uint64_t &regData64(Addr daddr) { return *(uint64_t *)&regData8(daddr); }
169 
170  protected:
174  bool rxEmpty;
175  bool rxLow;
177  uint8_t *rxDmaData;
178  unsigned rxDmaLen;
179 
182  bool txFull;
187  uint8_t *txDmaData;
188  int txDmaLen;
189 
190  protected:
191  void reset();
192 
193  void rxKick();
195 
196  void txKick();
198 
202  void transmit();
204  {
205  transmit();
206  if (txState == txFifoBlock)
207  txKick();
208  }
210 
211  void txDump() const;
212  void rxDump() const;
213 
217  bool rxFilter(const EthPacketPtr &packet);
218 
222  void changeConfig(uint32_t newconfig);
223  void command(uint32_t command);
224 
228  public:
229  bool recvPacket(EthPacketPtr packet);
230  void transferDone();
231  Port &getPort(const std::string &if_name,
232  PortID idx=InvalidPortID) override;
233 
237  protected:
238  void rxDmaDone();
240 
241  void txDmaDone();
243 
248 
252  protected:
253  void devIntrPost(uint32_t interrupts);
254  void devIntrClear(uint32_t interrupts = Regs::Intr_All);
255  void devIntrChangeMask(uint32_t newmask);
256 
260  public:
261  Tick read(PacketPtr pkt) override;
262  Tick write(PacketPtr pkt) override;
263  virtual void drainResume() override;
264 
265  void prepareIO(ContextID cpu, int index);
266  void prepareRead(ContextID cpu, int index);
267  void prepareWrite(ContextID cpu, int index);
268  // Fault iprRead(Addr daddr, ContextID cpu, uint64_t &result);
269 
273  private:
278 
280 
281  public:
282  void regStats() override;
283  void resetStats() override;
284 
288  public:
289  void serialize(CheckpointOut &cp) const override;
290  void unserialize(CheckpointIn &cp) override;
291 
292  public:
293  Device(const Params *p);
294  ~Device();
295 };
296 
297 /*
298  * Ethernet Interface for an Ethernet Device
299  */
300 class Interface : public EtherInt
301 {
302  private:
304 
305  public:
306  Interface(const std::string &name, Device *d)
307  : EtherInt(name), dev(d)
308  { }
309 
310  virtual bool recvPacket(EthPacketPtr pkt) { return dev->recvPacket(pkt); }
311  virtual void sendDone() { dev->transferDone(); }
312 };
313 
314 } // namespace Sinic
315 
316 #endif // __DEV_NET_SINIC_HH__
uint32_t RxFifoHigh
Definition: sinic.hh:121
uint64_t TxDone
Definition: sinic.hh:127
Tick dmaReadFactor
Definition: sinic.hh:245
Ports are used to interface objects to each other.
Definition: port.hh:56
Base(const Params *p)
Definition: sinic.cc:74
int txPacketOffset
Definition: sinic.hh:184
Bitfield< 30, 0 > index
uint32_t VirtualCount
Definition: sinic.hh:115
Counter rxUnique
Definition: sinic.hh:154
virtual void sendDone()
Definition: sinic.hh:311
virtual void resetStats()
Callback to reset stats.
Definition: group.cc:82
void transferDone()
Definition: sinic.cc:1127
virtual void drainResume()
Resume execution after a successful drain.
Definition: drain.hh:277
PacketFifo::iterator rxFifoPtr
Definition: sinic.hh:173
const PortID InvalidPortID
Definition: types.hh:236
uint32_t TxFifoSize
Definition: sinic.hh:118
Dummy class to keep the Python class hierarchy in sync with the C++ object hierarchy.
Definition: etherdevice.hh:124
EventFunctionWrapper txEvent
Definition: sinic.hh:209
TxState
Transmit State Machine states.
Definition: sinic.hh:97
RxState rxState
Definition: sinic.hh:171
uint8_t * txDmaData
Definition: sinic.hh:187
uint8_t * rxDmaData
Definition: sinic.hh:177
SinicParams Params
Construction/Destruction/Parameters.
Definition: sinic.hh:79
Counter txUnique
Definition: sinic.hh:155
virtual Tick read(PacketPtr pkt)=0
Pure virtual function that the device must implement.
int rxDirtyCount
Definition: sinic.hh:164
int rxMappedCount
Definition: sinic.hh:163
uint64_t TxWait
Definition: sinic.hh:128
void cpuIntrPost(Tick when)
Definition: sinic.cc:477
Tick dmaWriteDelay
Definition: sinic.hh:246
uint64_t RxWait
Definition: sinic.hh:125
const Params * params() const
Definition: sinic.hh:80
unsigned rxDmaLen
Definition: sinic.hh:178
void reset()
Definition: statistics.cc:569
std::list< unsigned > VirtualList
Definition: sinic.hh:153
EventFunctionWrapper rxDmaEvent
Definition: sinic.hh:239
PacketFifo txFifo
Definition: sinic.hh:181
Addr rxDmaAddr
Definition: sinic.hh:176
int _maxVnicDistance
Definition: sinic.hh:279
virtual bool recvPacket(EthPacketPtr pkt)
Definition: sinic.hh:310
uint32_t TxMaxCopy
Definition: sinic.hh:112
uint32_t RxMaxIntr
Definition: sinic.hh:116
Definition: cprintf.cc:40
Stats::Scalar maxVnicDistance
Definition: sinic.hh:276
uint32_t IntrStatus
Definition: sinic.hh:109
Declaration of Statistics objects.
uint32_t Command
Definition: sinic.hh:108
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
uint64_t RxData
Definition: sinic.hh:123
bool rxEnable
Definition: sinic.hh:50
bool txFull
Definition: sinic.hh:182
uint32_t ZeroCopyMark
Definition: sinic.hh:114
Tick rxKickTick
Definition: sinic.hh:194
EventFunctionWrapper * intrEvent
Definition: sinic.hh:62
EthPacketPtr txPacket
Definition: sinic.hh:183
void serialize(CheckpointOut &cp) const override
Serialization stuff.
Definition: sinic.cc:1204
bool txEnable
Definition: sinic.hh:51
VirtualRegs virtualRegs
Definition: sinic.hh:156
uint64_t HwAddr
Definition: sinic.hh:129
uint64_t & regData64(Addr daddr)
Definition: sinic.hh:168
virtual Tick write(PacketPtr pkt)=0
Pure virtual function that the device must implement.
Definition: sinic.cc:49
void regStats()
Callback to set stat parameters.
Definition: etherdevice.cc:34
DmaDeviceParams Params
Definition: dma_device.hh:171
uint64_t Tick
Tick count type.
Definition: types.hh:61
bool cpuPendingIntr
Definition: sinic.hh:57
Stats::Scalar numVnicDistance
Definition: sinic.hh:275
uint32_t TxFifoHigh
Definition: sinic.hh:122
uint64_t RxStatus
Definition: sinic.hh:130
Bitfield< 9 > d
uint32_t Config
Definition: sinic.hh:107
Addr txDmaAddr
Definition: sinic.hh:186
Stats::Formula avgVnicDistance
Definition: sinic.hh:277
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: sinic.cc:1225
Interface(const std::string &name, Device *d)
Definition: sinic.hh:306
std::shared_ptr< EthPacketData > EthPacketPtr
Definition: etherpkt.hh:87
Device * dev
Definition: sinic.hh:303
VirtualList rxList
Definition: sinic.hh:157
PacketFifo rxFifo
Definition: sinic.hh:172
int txDmaLen
Definition: sinic.hh:188
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Definition: dma_device.cc:277
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
int64_t Counter
Statistics counter type.
Definition: types.hh:56
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
bool recvPacket(EthPacketPtr packet)
device ethernet interface
Definition: sinic.cc:1151
uint8_t & regData8(Addr daddr)
Definition: sinic.hh:166
Interface * interface
Definition: sinic.hh:63
void cpuIntrAck()
Definition: sinic.hh:66
Base Ethernet Device declaration.
bool cpuIntrPending() const
Definition: sinic.cc:561
Stats::Scalar totalVnicDistance
Statistics.
Definition: sinic.hh:274
A formula for statistics that is calculated when printed.
Definition: statistics.hh:3009
uint32_t ZeroCopySize
Definition: sinic.hh:113
uint32_t & regData32(Addr daddr)
Definition: sinic.hh:167
virtual const std::string name() const
Definition: sim_object.hh:129
Tick dmaReadDelay
Definition: sinic.hh:244
bool rxLow
Definition: sinic.hh:175
uint32_t RxMaxCopy
Definition: sinic.hh:111
void txEventTransmit()
Definition: sinic.hh:203
std::ostream CheckpointOut
Definition: serialize.hh:63
uint32_t RxFifoSize
Definition: sinic.hh:117
fifo_list::iterator iterator
Definition: pktfifo.hh:81
Tick intrDelay
Definition: sinic.hh:54
uint64_t RxDone
Definition: sinic.hh:124
const SimObjectParams * _params
Cached copy of the object parameters.
Definition: sim_object.hh:111
bool rxEmpty
Definition: sinic.hh:174
int rxBusyCount
Definition: sinic.hh:162
VirtualList txList
Definition: sinic.hh:160
Tick txKickTick
Definition: sinic.hh:197
PacketFifo::iterator rxIndex
Definition: sinic.hh:139
Tick dmaWriteFactor
Definition: sinic.hh:247
Tick intrTick
Definition: sinic.hh:55
int txPacketBytes
Definition: sinic.hh:185
EventFunctionWrapper txDmaEvent
Definition: sinic.hh:242
RxState
Receive State Machine States.
Definition: sinic.hh:88
void cpuInterrupt()
Definition: sinic.cc:519
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:235
std::vector< VirtualReg > VirtualRegs
Definition: sinic.hh:152
void cpuIntrClear()
Definition: sinic.cc:542
uint64_t TxData
Definition: sinic.hh:126
VirtualList rxBusy
Definition: sinic.hh:158
TxState txState
Definition: sinic.hh:180
uint32_t IntrMask
Definition: sinic.hh:110
Bitfield< 0 > p
uint32_t TxFifoLow
Definition: sinic.hh:120
int ContextID
Globally unique thread context ID.
Definition: types.hh:229
bool cpuIntrEnable
Definition: sinic.hh:56
int rxActive
Definition: sinic.hh:159
uint32_t RxFifoLow
Definition: sinic.hh:119

Generated on Fri Jul 3 2020 15:53:02 for gem5 by doxygen 1.8.13