gem5  v20.0.0.3
bridge.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011-2013 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) 2006 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 
47 #ifndef __MEM_BRIDGE_HH__
48 #define __MEM_BRIDGE_HH__
49 
50 #include <deque>
51 
52 #include "base/types.hh"
53 #include "mem/port.hh"
54 #include "params/Bridge.hh"
55 #include "sim/clocked_object.hh"
56 
70 class Bridge : public ClockedObject
71 {
72  protected:
73 
79  {
80 
81  public:
82 
83  const Tick tick;
84  const PacketPtr pkt;
85 
86  DeferredPacket(PacketPtr _pkt, Tick _tick) : tick(_tick), pkt(_pkt)
87  { }
88  };
89 
90  // Forward declaration to allow the slave port to have a pointer
91  class BridgeMasterPort;
92 
99  class BridgeSlavePort : public SlavePort
100  {
101 
102  private:
103 
106 
111 
113  const Cycles delay;
114 
117 
125 
127  unsigned int outstandingResponses;
128 
130  bool retryReq;
131 
133  unsigned int respQueueLimit;
134 
139  std::unique_ptr<Packet> pendingDelete;
140 
146  bool respQueueFull() const;
147 
153  void trySendTiming();
154 
157 
158  public:
159 
170  BridgeSlavePort(const std::string& _name, Bridge& _bridge,
171  BridgeMasterPort& _masterPort, Cycles _delay,
172  int _resp_limit, std::vector<AddrRange> _ranges);
173 
181  void schedTimingResp(PacketPtr pkt, Tick when);
182 
188  void retryStalledReq();
189 
190  protected:
191 
194  bool recvTimingReq(PacketPtr pkt);
195 
198  void recvRespRetry();
199 
202  Tick recvAtomic(PacketPtr pkt);
203 
206  void recvFunctional(PacketPtr pkt);
207 
210  AddrRangeList getAddrRanges() const;
211  };
212 
213 
220  {
221 
222  private:
223 
226 
231 
233  const Cycles delay;
234 
242 
244  const unsigned int reqQueueLimit;
245 
251  void trySendTiming();
252 
255 
256  public:
257 
267  BridgeMasterPort(const std::string& _name, Bridge& _bridge,
268  BridgeSlavePort& _slavePort, Cycles _delay,
269  int _req_limit);
270 
276  bool reqQueueFull() const;
277 
285  void schedTimingReq(PacketPtr pkt, Tick when);
286 
295  bool trySatisfyFunctional(PacketPtr pkt);
296 
297  protected:
298 
301  bool recvTimingResp(PacketPtr pkt);
302 
305  void recvReqRetry();
306  };
307 
310 
313 
314  public:
315 
316  Port &getPort(const std::string &if_name,
317  PortID idx=InvalidPortID) override;
318 
319  void init() override;
320 
321  typedef BridgeParams Params;
322 
323  Bridge(Params *p);
324 };
325 
326 #endif //__MEM_BRIDGE_HH__
A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
Definition: port.hh:71
Ports are used to interface objects to each other.
Definition: port.hh:56
bool retryReq
If we should send a retry when space becomes available.
Definition: bridge.hh:130
Bridge & bridge
The bridge to which this port belongs.
Definition: bridge.hh:225
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:81
const PortID InvalidPortID
Definition: types.hh:236
const Cycles delay
Minimum request delay though this bridge.
Definition: bridge.hh:113
unsigned int outstandingResponses
Counter to track the outstanding responses.
Definition: bridge.hh:127
const AddrRangeList ranges
Address ranges to pass through the bridge.
Definition: bridge.hh:116
const PacketPtr pkt
Definition: bridge.hh:84
A SlavePort is a specialisation of a port.
Definition: port.hh:254
BridgeParams Params
Definition: bridge.hh:321
std::deque< DeferredPacket > transmitList
Request packet queue.
Definition: bridge.hh:241
BridgeMasterPort & masterPort
Master port on the other side of the bridge.
Definition: bridge.hh:110
uint64_t Tick
Tick count type.
Definition: types.hh:61
BridgeMasterPort masterPort
Master port of the bridge.
Definition: bridge.hh:312
BridgeSlavePort slavePort
Slave port of the bridge.
Definition: bridge.hh:309
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: bridge.cc:97
ClockedObject declaration and implementation.
EventFunctionWrapper sendEvent
Send event for the request queue.
Definition: bridge.hh:254
std::deque< DeferredPacket > transmitList
Response packet queue.
Definition: bridge.hh:124
Port Object Declaration.
const unsigned int reqQueueLimit
Max queue size for request packets.
Definition: bridge.hh:244
A deferred packet stores a packet along with its scheduled transmission time.
Definition: bridge.hh:78
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
The port on the side that receives requests and sends responses.
Definition: bridge.hh:99
const Tick tick
Definition: bridge.hh:83
Bridge(Params *p)
Definition: bridge.cc:75
STL deque class.
Definition: stl.hh:44
EventFunctionWrapper sendEvent
Send event for the response queue.
Definition: bridge.hh:156
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Definition: bridge.cc:85
unsigned int respQueueLimit
Max queue size for reserved responses.
Definition: bridge.hh:133
A bridge is used to interface two different crossbars (or in general a memory-mapped master and slave...
Definition: bridge.hh:70
Port on the side that forwards requests and receives responses.
Definition: bridge.hh:219
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:235
BridgeSlavePort & slavePort
The slave port on the other side of the bridge.
Definition: bridge.hh:230
DeferredPacket(PacketPtr _pkt, Tick _tick)
Definition: bridge.hh:86
const Cycles delay
Minimum delay though this bridge.
Definition: bridge.hh:233
Bitfield< 0 > p
Bridge & bridge
The bridge to which this port belongs.
Definition: bridge.hh:105
std::unique_ptr< Packet > pendingDelete
Upstream caches need this packet until true is returned, so hold it for deletion until a subsequent c...
Definition: bridge.hh:139

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