gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
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  * Authors: Ron Dreslinski
41  * Ali Saidi
42  * Andreas Hansson
43  * William Wang
44  */
45 
51 #ifndef __MEM_XBAR_HH__
52 #define __MEM_XBAR_HH__
53 
54 #include <deque>
55 #include <unordered_map>
56 
57 #include "base/addr_range_map.hh"
58 #include "base/types.hh"
59 #include "mem/qport.hh"
60 #include "params/BaseXBar.hh"
61 #include "sim/clocked_object.hh"
62 #include "sim/stats.hh"
63 
73 class BaseXBar : public ClockedObject
74 {
75 
76  protected:
77 
92  template <typename SrcType, typename DstType>
93  class Layer : public Drainable, public Stats::Group
94  {
95 
96  public:
97 
106  Layer(DstType& _port, BaseXBar& _xbar, const std::string& _name);
107 
117  DrainState drain() override;
118 
119  const std::string name() const { return _name; }
120 
121 
132  bool tryTiming(SrcType* src_port);
133 
141  void succeededTiming(Tick busy_time);
142 
152  void failedTiming(SrcType* src_port, Tick busy_time);
153 
154  void occupyLayer(Tick until);
155 
160  void retryWaiting();
161 
167  void recvRetry();
168 
169  protected:
170 
177  virtual void sendRetry(SrcType* retry_port) = 0;
178 
179  private:
180 
182  DstType& port;
183 
186 
187  std::string _name;
188 
205  enum State { IDLE, BUSY, RETRY };
206 
208 
214 
219  SrcType* waitingForPeer;
220 
226  void releaseLayer();
228 
236 
237  };
238 
239  class ReqLayer : public Layer<SlavePort, MasterPort>
240  {
241  public:
249  ReqLayer(MasterPort& _port, BaseXBar& _xbar, const std::string& _name) :
250  Layer(_port, _xbar, _name)
251  {}
252 
253  protected:
254  void
255  sendRetry(SlavePort* retry_port) override
256  {
257  retry_port->sendRetryReq();
258  }
259  };
260 
261  class RespLayer : public Layer<MasterPort, SlavePort>
262  {
263  public:
271  RespLayer(SlavePort& _port, BaseXBar& _xbar,
272  const std::string& _name) :
273  Layer(_port, _xbar, _name)
274  {}
275 
276  protected:
277  void
278  sendRetry(MasterPort* retry_port) override
279  {
280  retry_port->sendRetryResp();
281  }
282  };
283 
284  class SnoopRespLayer : public Layer<SlavePort, MasterPort>
285  {
286  public:
295  const std::string& _name) :
296  Layer(_port, _xbar, _name)
297  {}
298 
299  protected:
300 
301  void
302  sendRetry(SlavePort* retry_port) override
303  {
304  retry_port->sendRetrySnoopResp();
305  }
306  };
307 
316  const uint32_t width;
317 
319 
326  std::unordered_map<RequestPtr, PortID> routeTo;
327 
330 
332 
339  virtual void recvRangeChange(PortID master_port_id);
340 
348  PortID findPort(AddrRange addr_range);
349 
356 
366  void calcPacketTiming(PacketPtr pkt, Tick header_delay);
367 
376 
380 
383 
388  const bool useDefaultRange;
389 
390  BaseXBar(const BaseXBarParams *p);
391 
404 
405  public:
406 
407  virtual ~BaseXBar();
408 
410  Port &getPort(const std::string &if_name,
411  PortID idx=InvalidPortID) override;
412 
413  void regStats() override;
414 };
415 
416 #endif //__MEM_XBAR_HH__
A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
Definition: port.hh:75
State
We declare an enum to track the state of the layer.
Definition: xbar.hh:205
const std::string name() const
Definition: xbar.hh:119
RespLayer(SlavePort &_port, BaseXBar &_xbar, const std::string &_name)
Create a response layer and give it a name.
Definition: xbar.hh:271
Ports are used to interface objects to each other.
Definition: port.hh:60
void sendRetry(SlavePort *retry_port) override
Sending the actual retry, in a manner specific to the individual layers.
Definition: xbar.hh:255
void recvRetry()
Handle a retry from a neighbouring module.
Definition: xbar.cc:305
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:83
const PortID InvalidPortID
Definition: types.hh:238
DrainState
Object drain/handover states.
Definition: drain.hh:71
Stats::Formula utilization
Definition: xbar.hh:235
PortID defaultPortID
Port that handles requests that don&#39;t match any of the interfaces.
Definition: xbar.hh:382
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:326
const Cycles responseLatency
Definition: xbar.hh:314
virtual void regStats()
Callback to set stat parameters.
Definition: group.cc:66
AddrRangeList getAddrRanges() const
Return the address ranges the crossbar is responsible for.
Definition: xbar.cc:522
A vector of scalar stats.
Definition: statistics.hh:2550
A SlavePort is a specialisation of a port.
Definition: port.hh:258
virtual void sendRetryResp()
Send a retry to the slave port that previously attempted a sendTimingResp to this master port and fai...
Definition: port.hh:463
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:374
AddrRangeMap< PortID, 3 > portMap
Definition: xbar.hh:318
void sendRetrySnoopResp()
Send a retry to the master port that previously attempted a sendTimingSnoopResp to this slave port an...
Definition: port.hh:390
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2508
SnoopRespLayer(MasterPort &_port, BaseXBar &_xbar, const std::string &_name)
Create a snoop response layer and give it a name.
Definition: xbar.hh:294
The base crossbar contains the common elements of the non-coherent and coherent crossbar.
Definition: xbar.hh:73
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:212
Interface for objects that might require draining before checkpointing.
Definition: drain.hh:223
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
Definition: addr_range.hh:72
AddrRangeList xbarRanges
all contigous ranges seen by this crossbar
Definition: xbar.hh:329
A layer is an internal crossbar arbitration point with its own flow control.
Definition: xbar.hh:93
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:302
virtual ~BaseXBar()
Definition: xbar.cc:77
const uint32_t width
the width of the xbar in bytes
Definition: xbar.hh:316
uint64_t Tick
Tick count type.
Definition: types.hh:63
Stats::Vector transDist
Stats for transaction distribution and data passing through the crossbar.
Definition: xbar.hh:401
BaseXBar(const BaseXBarParams *p)
Definition: xbar.cc:58
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:249
ClockedObject declaration and implementation.
std::string _name
Definition: xbar.hh:187
void calcPacketTiming(PacketPtr pkt, Tick header_delay)
Calculate the timing parameters for the packet.
Definition: xbar.cc:103
DstType & port
The destination port this layer converges at.
Definition: xbar.hh:182
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:87
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
EventFunctionWrapper releaseEvent
Definition: xbar.hh:227
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:213
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:224
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:255
const Cycles frontendLatency
Cycles of front-end pipeline including the delay to accept the request and to decode the address...
Definition: xbar.hh:312
Statistics container.
Definition: group.hh:85
bool gotAllAddrRanges
Definition: xbar.hh:375
STL deque class.
Definition: stl.hh:47
A formula for statistics that is calculated when printed.
Definition: statistics.hh:3012
std::vector< MasterPort * > masterPorts
Definition: xbar.hh:379
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:185
std::vector< QueuedSlavePort * > slavePorts
The master and slave ports of the crossbar.
Definition: xbar.hh:378
void occupyLayer(Tick until)
Definition: xbar.cc:160
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:246
void sendRetryReq()
Send a retry to the master port that previously attempted a sendTimingReq to this slave port and fail...
Definition: port.hh:380
DrainState drain() override
Drain according to the normal semantics, so that the crossbar can tell the layer to drain...
Definition: xbar.cc:583
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:329
Layer(DstType &_port, BaseXBar &_xbar, const std::string &_name)
Create a layer and give it a name.
Definition: xbar.cc:141
bool tryTiming(SrcType *src_port)
Determine if the layer accepts a packet from a specific port.
Definition: xbar.cc:181
void sendRetry(MasterPort *retry_port) override
Sending the actual retry, in a manner specific to the individual layers.
Definition: xbar.hh:278
Stats::Scalar occupancy
Stats for occupancy and utilization.
Definition: xbar.hh:234
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:237
const Cycles forwardLatency
Definition: xbar.hh:313
A 2-Dimensional vecto of scalar stats.
Definition: statistics.hh:2578
AddrRange defaultRange
Definition: xbar.hh:331
Bitfield< 0 > p
Stats::Vector2d pktSize
Definition: xbar.hh:403
SrcType * waitingForPeer
Track who is waiting for the retry when receiving it from a peer.
Definition: xbar.hh:219
const bool useDefaultRange
If true, use address range provided by default device.
Definition: xbar.hh:388
void retryWaiting()
Send a retry to the port at the head of waitingForLayer.
Definition: xbar.cc:270
virtual void recvRangeChange(PortID master_port_id)
Function called by the port when the crossbar is recieving a range change.
Definition: xbar.cc:362
Stats::Vector2d pktCount
Definition: xbar.hh:402
State state
Definition: xbar.hh:207

Generated on Fri Feb 28 2020 16:27:02 for gem5 by doxygen 1.8.13