gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
coherent_xbar.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011-2015, 2017, 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_COHERENT_XBAR_HH__
52 #define __MEM_COHERENT_XBAR_HH__
53 
54 #include <unordered_map>
55 #include <unordered_set>
56 
57 #include "mem/snoop_filter.hh"
58 #include "mem/xbar.hh"
59 #include "params/CoherentXBar.hh"
60 
72 class CoherentXBar : public BaseXBar
73 {
74 
75  protected:
76 
84 
91  {
92 
93  private:
94 
97 
100 
101  public:
102 
103  CoherentXBarSlavePort(const std::string &_name,
104  CoherentXBar &_xbar, PortID _id)
105  : QueuedSlavePort(_name, &_xbar, queue, _id), xbar(_xbar),
106  queue(_xbar, *this)
107  { }
108 
109  protected:
110 
111  bool
112  recvTimingReq(PacketPtr pkt) override
113  {
114  return xbar.recvTimingReq(pkt, id);
115  }
116 
117  bool
119  {
120  return xbar.recvTimingSnoopResp(pkt, id);
121  }
122 
123  Tick
124  recvAtomic(PacketPtr pkt) override
125  {
126  return xbar.recvAtomicBackdoor(pkt, id);
127  }
128 
129  Tick
130  recvAtomicBackdoor(PacketPtr pkt, MemBackdoorPtr &backdoor) override
131  {
132  return xbar.recvAtomicBackdoor(pkt, id, &backdoor);
133  }
134 
135  void
136  recvFunctional(PacketPtr pkt) override
137  {
138  xbar.recvFunctional(pkt, id);
139  }
140 
142  getAddrRanges() const override
143  {
144  return xbar.getAddrRanges();
145  }
146 
147  };
148 
155  {
156  private:
159 
160  public:
161 
162  CoherentXBarMasterPort(const std::string &_name,
163  CoherentXBar &_xbar, PortID _id)
164  : MasterPort(_name, &_xbar, _id), xbar(_xbar)
165  { }
166 
167  protected:
168 
175  bool isSnooping() const override { return true; }
176 
177  bool
178  recvTimingResp(PacketPtr pkt) override
179  {
180  return xbar.recvTimingResp(pkt, id);
181  }
182 
183  void
185  {
186  return xbar.recvTimingSnoopReq(pkt, id);
187  }
188 
189  Tick
191  {
192  return xbar.recvAtomicSnoop(pkt, id);
193  }
194 
195  void
197  {
198  xbar.recvFunctionalSnoop(pkt, id);
199  }
200 
201  void recvRangeChange() override { xbar.recvRangeChange(id); }
202  void recvReqRetry() override { xbar.recvReqRetry(id); }
203 
204  };
205 
211  class SnoopRespPort : public MasterPort
212  {
213 
214  private:
215 
218 
219  public:
220 
225  MasterPort(slave_port.name() + ".snoopRespPort", &_xbar),
226  slavePort(slave_port) { }
227 
232  void
233  sendRetryResp() override
234  {
235  // forward it as a snoop response retry
236  slavePort.sendRetrySnoopResp();
237  }
238 
239  void
240  recvReqRetry() override
241  {
242  panic("SnoopRespPort should never see retry");
243  }
244 
245  bool
246  recvTimingResp(PacketPtr pkt) override
247  {
248  panic("SnoopRespPort should never see timing response");
249  }
250 
251  };
252 
254 
256 
262  std::unordered_set<RequestPtr> outstandingSnoop;
263 
269  std::unordered_map<PacketId, PacketPtr> outstandingCMO;
270 
276 
280 
283 
285  const unsigned int maxOutstandingSnoopCheck;
286 
288  const unsigned int maxRoutingTableSizeCheck;
289 
291  const bool pointOfCoherency;
292 
294  const bool pointOfUnification;
295 
300  std::unique_ptr<Packet> pendingDelete;
301 
302  bool recvTimingReq(PacketPtr pkt, PortID slave_port_id);
303  bool recvTimingResp(PacketPtr pkt, PortID master_port_id);
304  void recvTimingSnoopReq(PacketPtr pkt, PortID master_port_id);
305  bool recvTimingSnoopResp(PacketPtr pkt, PortID slave_port_id);
306  void recvReqRetry(PortID master_port_id);
307 
316  void
317  forwardTiming(PacketPtr pkt, PortID exclude_slave_port_id)
318  {
319  forwardTiming(pkt, exclude_slave_port_id, snoopPorts);
320  }
321 
331  void forwardTiming(PacketPtr pkt, PortID exclude_slave_port_id,
332  const std::vector<QueuedSlavePort*>& dests);
333 
334  Tick recvAtomicBackdoor(PacketPtr pkt, PortID slave_port_id,
335  MemBackdoorPtr *backdoor=nullptr);
336  Tick recvAtomicSnoop(PacketPtr pkt, PortID master_port_id);
337 
349  forwardAtomic(PacketPtr pkt, PortID exclude_slave_port_id)
350  {
351  return forwardAtomic(pkt, exclude_slave_port_id, InvalidPortID,
352  snoopPorts);
353  }
354 
368  PortID exclude_slave_port_id,
369  PortID source_master_port_id,
371  dests);
372 
375  void recvFunctional(PacketPtr pkt, PortID slave_port_id);
376 
379  void recvFunctionalSnoop(PacketPtr pkt, PortID master_port_id);
380 
389  void forwardFunctional(PacketPtr pkt, PortID exclude_slave_port_id);
390 
395  bool sinkPacket(const PacketPtr pkt) const;
396 
401  bool forwardPacket(const PacketPtr pkt);
402 
414  bool
415  isDestination(const PacketPtr pkt) const
416  {
417  return (pkt->req->isToPOC() && pointOfCoherency) ||
418  (pkt->req->isToPOU() && pointOfUnification);
419  }
420 
424 
425  public:
426 
427  virtual void init();
428 
429  CoherentXBar(const CoherentXBarParams *p);
430 
431  virtual ~CoherentXBar();
432 
433  virtual void regStats();
434 };
435 
436 #endif //__MEM_COHERENT_XBAR_HH__
A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
Definition: port.hh:75
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:167
virtual ~CoherentXBar()
std::vector< SnoopRespLayer * > snoopLayers
SnoopRespPort(QueuedSlavePort &slave_port, CoherentXBar &_xbar)
Create a snoop response port that mirrors a given slave port.
bool isSnooping() const override
Determine if this port should be considered a snooper.
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:83
std::vector< RespLayer * > respLayers
const PortID InvalidPortID
Definition: types.hh:238
STL pair class.
Definition: stl.hh:61
Tick recvAtomicBackdoor(PacketPtr pkt, MemBackdoorPtr &backdoor) override
Receive an atomic request packet from the peer, and optionally provide a backdoor to the data being a...
const unsigned int maxOutstandingSnoopCheck
Maximum number of outstading snoops sanity check.
std::unique_ptr< Packet > pendingDelete
Upstream caches need this packet until true is returned, so hold it for deletion until a subsequent c...
void recvReqRetry(PortID master_port_id)
Stats::Distribution snoopFanout
AddrRangeList getAddrRanges() const override
Get a list of the non-overlapping address ranges the owner is responsible for.
Internal class to bridge between an incoming snoop response from a slave port and forwarding it throu...
Tick recvAtomic(PacketPtr pkt) override
Receive an atomic request packet from the peer.
Definition: system.hh:77
AddrRangeList getAddrRanges() const
Return the address ranges the crossbar is responsible for.
Definition: xbar.cc:522
Definition of a snoop filter.
A queued port is a port that has an infinite queue for outgoing packets and thus decouples the module...
Definition: qport.hh:60
std::vector< ReqLayer * > reqLayers
Declare the layers of this crossbar, one vector for requests, one for responses, and one for snoop re...
Stats::Scalar snoopTraffic
const Cycles snoopResponseLatency
Cycles of snoop response latency.
System * system
Keep a pointer to the system to be allow to querying memory system properties.
Declaration of the coherent crossbar slave port type, one will be instantiated for each of the master...
std::unordered_set< RequestPtr > outstandingSnoop
Store the outstanding requests that we are expecting snoop responses from so we can determine which s...
void sendRetrySnoopResp()
Send a retry to the master port that previously attempted a sendTimingSnoopResp to this slave port an...
Definition: port.hh:390
CoherentXBar & xbar
A reference to the crossbar to which this port belongs.
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2508
bool sinkPacket(const PacketPtr pkt) const
Determine if the crossbar should sink the packet, as opposed to forwarding it, or responding...
STL vector class.
Definition: stl.hh:40
void recvFunctionalSnoop(PacketPtr pkt, PortID master_port_id)
Function called by the port when the crossbar is recieving a functional snoop transaction.
CoherentXBar & xbar
A reference to the crossbar to which this port belongs.
bool recvTimingReq(PacketPtr pkt, PortID slave_port_id)
CoherentXBarMasterPort(const std::string &_name, CoherentXBar &_xbar, PortID _id)
The base crossbar contains the common elements of the non-coherent and coherent crossbar.
Definition: xbar.hh:73
RequestPtr req
A pointer to the original request.
Definition: packet.hh:327
void recvReqRetry() override
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
RespPacketQueue queue
A normal packet queue used to store responses.
uint64_t Tick
Tick count type.
Definition: types.hh:63
void recvRangeChange() override
Called to receive an address range change from the peer slave port.
bool isDestination(const PacketPtr pkt) const
Determine if the packet&#39;s destination is the memory below.
A simple distribution stat.
Definition: statistics.hh:2592
void recvTimingSnoopReq(PacketPtr pkt, PortID master_port_id)
const unsigned int maxRoutingTableSizeCheck
Maximum routing table size sanity check.
void recvFunctionalSnoop(PacketPtr pkt) override
Receive a functional snoop request packet from the peer.
CoherentXBar(const CoherentXBarParams *p)
SnoopFilter * snoopFilter
A snoop filter that tracks cache line residency and can restrict the broadcast needed for probes...
bool recvTimingReq(PacketPtr pkt) override
Receive a timing request from the peer.
bool recvTimingResp(PacketPtr pkt) override
Receive a timing response from the peer.
bool recvTimingResp(PacketPtr pkt, PortID master_port_id)
void forwardTiming(PacketPtr pkt, PortID exclude_slave_port_id)
Forward a timing packet to our snoopers, potentially excluding one of the connected coherent masters ...
A coherent crossbar connects a number of (potentially) snooping masters and slaves, and routes the request and response packets based on the address, and also forwards all requests to the snoopers and deals with the snoop responses.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:255
QueuedSlavePort & slavePort
The port which we mirror internally.
void recvTimingSnoopReq(PacketPtr pkt) override
Receive a timing snoop request from the peer.
Tick recvAtomicSnoop(PacketPtr pkt, PortID master_port_id)
std::vector< SnoopRespPort * > snoopRespPorts
Stats::Scalar snoops
void sendRetryResp() override
Override the sending of retries and pass them on through the mirrored slave port. ...
bool recvTimingSnoopResp(PacketPtr pkt) override
Receive a timing snoop response from the peer.
CoherentXBarSlavePort(const std::string &_name, CoherentXBar &_xbar, PortID _id)
const std::string name() const
Return port name (for DPRINTF).
Definition: port.hh:106
void forwardFunctional(PacketPtr pkt, PortID exclude_slave_port_id)
Forward a functional packet to our snoopers, potentially excluding one of the connected coherent mast...
std::pair< MemCmd, Tick > forwardAtomic(PacketPtr pkt, PortID exclude_slave_port_id)
Forward an atomic packet to our snoopers, potentially excluding one of the connected coherent masters...
bool recvTimingResp(PacketPtr pkt) override
Receive a timing response from the peer.
virtual void regStats()
Callback to set stat parameters.
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:237
bool forwardPacket(const PacketPtr pkt)
Determine if the crossbar should forward the packet, as opposed to responding to it.
const bool pointOfCoherency
Is this crossbar the point of coherency?
void recvReqRetry() override
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
void recvFunctional(PacketPtr pkt) override
Receive a functional request packet from the peer.
bool recvTimingSnoopResp(PacketPtr pkt, PortID slave_port_id)
This snoop filter keeps track of which connected port has a particular line of data.
Definition: snoop_filter.hh:88
Bitfield< 0 > p
const bool pointOfUnification
Is this crossbar the point of unification?
std::unordered_map< PacketId, PacketPtr > outstandingCMO
Store the outstanding cache maintenance that we are expecting snoop responses from so we can determin...
Declaration of an abstract crossbar base class.
virtual void recvRangeChange(PortID master_port_id)
Function called by the port when the crossbar is recieving a range change.
Definition: xbar.cc:362
Declaration of the coherent crossbar master port type, one will be instantiated for each of the slave...
Tick recvAtomicBackdoor(PacketPtr pkt, PortID slave_port_id, MemBackdoorPtr *backdoor=nullptr)
void recvFunctional(PacketPtr pkt, PortID slave_port_id)
Function called by the port when the crossbar is recieving a Functional transaction.
virtual void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
Tick recvAtomicSnoop(PacketPtr pkt) override
Receive an atomic snoop request packet from our peer.
std::vector< QueuedSlavePort * > snoopPorts

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