gem5  v20.0.0.3
xbar.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011-2015, 2018-2019 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 
46 #ifndef __MEM_XBAR_HH__
47 #define __MEM_XBAR_HH__
48 
49 #include <deque>
50 #include <unordered_map>
51 
52 #include "base/addr_range_map.hh"
53 #include "base/types.hh"
54 #include "mem/qport.hh"
55 #include "params/BaseXBar.hh"
56 #include "sim/clocked_object.hh"
57 #include "sim/stats.hh"
58 
68 class BaseXBar : public ClockedObject
69 {
70 
71  protected:
72 
87  template <typename SrcType, typename DstType>
88  class Layer : public Drainable, public Stats::Group
89  {
90 
91  public:
92 
101  Layer(DstType& _port, BaseXBar& _xbar, const std::string& _name);
102 
112  DrainState drain() override;
113 
114  const std::string name() const { return _name; }
115 
116 
127  bool tryTiming(SrcType* src_port);
128 
136  void succeededTiming(Tick busy_time);
137 
147  void failedTiming(SrcType* src_port, Tick busy_time);
148 
149  void occupyLayer(Tick until);
150 
155  void retryWaiting();
156 
162  void recvRetry();
163 
164  protected:
165 
172  virtual void sendRetry(SrcType* retry_port) = 0;
173 
174  private:
175 
177  DstType& port;
178 
181 
182  std::string _name;
183 
200  enum State { IDLE, BUSY, RETRY };
201 
203 
209 
214  SrcType* waitingForPeer;
215 
221  void releaseLayer();
223 
231 
232  };
233 
234  class ReqLayer : public Layer<SlavePort, MasterPort>
235  {
236  public:
244  ReqLayer(MasterPort& _port, BaseXBar& _xbar, const std::string& _name) :
245  Layer(_port, _xbar, _name)
246  {}
247 
248  protected:
249  void
250  sendRetry(SlavePort* retry_port) override
251  {
252  retry_port->sendRetryReq();
253  }
254  };
255 
256  class RespLayer : public Layer<MasterPort, SlavePort>
257  {
258  public:
266  RespLayer(SlavePort& _port, BaseXBar& _xbar,
267  const std::string& _name) :
268  Layer(_port, _xbar, _name)
269  {}
270 
271  protected:
272  void
273  sendRetry(MasterPort* retry_port) override
274  {
275  retry_port->sendRetryResp();
276  }
277  };
278 
279  class SnoopRespLayer : public Layer<SlavePort, MasterPort>
280  {
281  public:
290  const std::string& _name) :
291  Layer(_port, _xbar, _name)
292  {}
293 
294  protected:
295 
296  void
297  sendRetry(SlavePort* retry_port) override
298  {
299  retry_port->sendRetrySnoopResp();
300  }
301  };
302 
311  const uint32_t width;
312 
314 
321  std::unordered_map<RequestPtr, PortID> routeTo;
322 
325 
327 
334  virtual void recvRangeChange(PortID master_port_id);
335 
343  PortID findPort(AddrRange addr_range);
344 
351 
361  void calcPacketTiming(PacketPtr pkt, Tick header_delay);
362 
371 
375 
378 
383  const bool useDefaultRange;
384 
385  BaseXBar(const BaseXBarParams *p);
386 
399 
400  public:
401 
402  virtual ~BaseXBar();
403 
405  Port &getPort(const std::string &if_name,
406  PortID idx=InvalidPortID) override;
407 
408  void regStats() override;
409 };
410 
411 #endif //__MEM_XBAR_HH__
A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
Definition: port.hh:71
State
We declare an enum to track the state of the layer.
Definition: xbar.hh:200
const std::string name() const
Definition: xbar.hh:114
RespLayer(SlavePort &_port, BaseXBar &_xbar, const std::string &_name)
Create a response layer and give it a name.
Definition: xbar.hh:266
Ports are used to interface objects to each other.
Definition: port.hh:56
void sendRetry(SlavePort *retry_port) override
Sending the actual retry, in a manner specific to the individual layers.
Definition: xbar.hh:250
void recvRetry()
Handle a retry from a neighbouring module.
Definition: xbar.cc:301
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:81
const PortID InvalidPortID
Definition: types.hh:236
Stats::Formula utilization
Definition: xbar.hh:230
PortID defaultPortID
Port that handles requests that don&#39;t match any of the interfaces.
Definition: xbar.hh:377
std::unordered_map< RequestPtr, PortID > routeTo
Remember where request packets came from so that we can route responses to the appropriate port...
Definition: xbar.hh:321
const Cycles responseLatency
Definition: xbar.hh:309
AddrRangeList getAddrRanges() const
Return the address ranges the crossbar is responsible for.
Definition: xbar.cc:518
A vector of scalar stats.
Definition: statistics.hh:2547
A SlavePort is a specialisation of a port.
Definition: port.hh:254
virtual void sendRetryResp()
Send a retry to the slave port that previously attempted a sendTimingResp to this master port and fai...
Definition: port.hh:459
std::vector< bool > gotAddrRanges
Remember for each of the master ports of the crossbar if we got an address range from the connected s...
Definition: xbar.hh:369
AddrRangeMap< PortID, 3 > portMap
Definition: xbar.hh:313
void sendRetrySnoopResp()
Send a retry to the master port that previously attempted a sendTimingSnoopResp to this slave port an...
Definition: port.hh:386
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
DrainState
Object drain/handover states.
Definition: drain.hh:71
SnoopRespLayer(MasterPort &_port, BaseXBar &_xbar, const std::string &_name)
Create a snoop response layer and give it a name.
Definition: xbar.hh:289
The base crossbar contains the common elements of the non-coherent and coherent crossbar.
Definition: xbar.hh:68
void succeededTiming(Tick busy_time)
Deal with a destination port accepting a packet by potentially removing the source port from the retr...
Definition: xbar.cc:208
Interface for objects that might require draining before checkpointing.
Definition: drain.hh:239
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
Definition: addr_range.hh:68
AddrRangeList xbarRanges
all contigous ranges seen by this crossbar
Definition: xbar.hh:324
A layer is an internal crossbar arbitration point with its own flow control.
Definition: xbar.hh:88
Declaration of the queued port.
void sendRetry(SlavePort *retry_port) override
Sending the actual retry, in a manner specific to the individual layers.
Definition: xbar.hh:297
virtual ~BaseXBar()
Definition: xbar.cc:73
const uint32_t width
the width of the xbar in bytes
Definition: xbar.hh:311
uint64_t Tick
Tick count type.
Definition: types.hh:61
Stats::Vector transDist
Stats for transaction distribution and data passing through the crossbar.
Definition: xbar.hh:396
BaseXBar(const BaseXBarParams *p)
Definition: xbar.cc:54
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
ReqLayer(MasterPort &_port, BaseXBar &_xbar, const std::string &_name)
Create a request layer and give it a name.
Definition: xbar.hh:244
ClockedObject declaration and implementation.
std::string _name
Definition: xbar.hh:182
void calcPacketTiming(PacketPtr pkt, Tick header_delay)
Calculate the timing parameters for the packet.
Definition: xbar.cc:99
DstType & port
The destination port this layer converges at.
Definition: xbar.hh:177
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
A function used to return the port associated with this object.
Definition: xbar.cc:83
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
EventFunctionWrapper releaseEvent
Definition: xbar.hh:222
std::deque< SrcType * > waitingForLayer
A deque of ports that retry should be called on because the original send was delayed due to a busy l...
Definition: xbar.hh:208
void failedTiming(SrcType *src_port, Tick busy_time)
Deal with a destination port not accepting a packet by potentially adding the source port to the retr...
Definition: xbar.cc:220
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
const Cycles frontendLatency
Cycles of front-end pipeline including the delay to accept the request and to decode the address...
Definition: xbar.hh:307
Statistics container.
Definition: group.hh:83
bool gotAllAddrRanges
Definition: xbar.hh:370
STL deque class.
Definition: stl.hh:44
A formula for statistics that is calculated when printed.
Definition: statistics.hh:3009
std::vector< MasterPort * > masterPorts
Definition: xbar.hh:374
virtual void sendRetry(SrcType *retry_port)=0
Sending the actual retry, in a manner specific to the individual layers.
BaseXBar & xbar
The crossbar this layer is a part of.
Definition: xbar.hh:180
std::vector< QueuedSlavePort * > slavePorts
The master and slave ports of the crossbar.
Definition: xbar.hh:373
void occupyLayer(Tick until)
Definition: xbar.cc:156
void releaseLayer()
Release the layer after being occupied and return to an idle state where we proceed to send a retry t...
Definition: xbar.cc:242
void sendRetryReq()
Send a retry to the master port that previously attempted a sendTimingReq to this slave port and fail...
Definition: port.hh:376
DrainState drain() override
Drain according to the normal semantics, so that the crossbar can tell the layer to drain...
Definition: xbar.cc:579
PortID findPort(AddrRange addr_range)
Find which port connected to this crossbar (if any) should be given a packet with this address range...
Definition: xbar.cc:325
Layer(DstType &_port, BaseXBar &_xbar, const std::string &_name)
Create a layer and give it a name.
Definition: xbar.cc:137
bool tryTiming(SrcType *src_port)
Determine if the layer accepts a packet from a specific port.
Definition: xbar.cc:177
void sendRetry(MasterPort *retry_port) override
Sending the actual retry, in a manner specific to the individual layers.
Definition: xbar.hh:273
Stats::Scalar occupancy
Stats for occupancy and utilization.
Definition: xbar.hh:229
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:235
const Cycles forwardLatency
Definition: xbar.hh:308
A 2-Dimensional vecto of scalar stats.
Definition: statistics.hh:2575
virtual void regStats()
Callback to set stat parameters.
Definition: group.cc:64
AddrRange defaultRange
Definition: xbar.hh:326
Bitfield< 0 > p
Stats::Vector2d pktSize
Definition: xbar.hh:398
SrcType * waitingForPeer
Track who is waiting for the retry when receiving it from a peer.
Definition: xbar.hh:214
const bool useDefaultRange
If true, use address range provided by default device.
Definition: xbar.hh:383
void retryWaiting()
Send a retry to the port at the head of waitingForLayer.
Definition: xbar.cc:266
virtual void recvRangeChange(PortID master_port_id)
Function called by the port when the crossbar is recieving a range change.
Definition: xbar.cc:358
Stats::Vector2d pktCount
Definition: xbar.hh:397
State state
Definition: xbar.hh:202

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