gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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  * Authors: Ali Saidi
41  * Steve Reinhardt
42  * Andreas Hansson
43  */
44 
51 #ifndef __MEM_BRIDGE_HH__
52 #define __MEM_BRIDGE_HH__
53 
54 #include <deque>
55 
56 #include "base/types.hh"
57 #include "mem/mem_object.hh"
58 #include "params/Bridge.hh"
59 
73 class Bridge : public MemObject
74 {
75  protected:
76 
82  {
83 
84  public:
85 
86  const Tick tick;
87  const PacketPtr pkt;
88 
89  DeferredPacket(PacketPtr _pkt, Tick _tick) : tick(_tick), pkt(_pkt)
90  { }
91  };
92 
93  // Forward declaration to allow the slave port to have a pointer
94  class BridgeMasterPort;
95 
102  class BridgeSlavePort : public SlavePort
103  {
104 
105  private:
106 
109 
114 
116  const Cycles delay;
117 
120 
128 
130  unsigned int outstandingResponses;
131 
133  bool retryReq;
134 
136  unsigned int respQueueLimit;
137 
142  std::unique_ptr<Packet> pendingDelete;
143 
149  bool respQueueFull() const;
150 
156  void trySendTiming();
157 
161 
162  public:
163 
174  BridgeSlavePort(const std::string& _name, Bridge& _bridge,
176  int _resp_limit, std::vector<AddrRange> _ranges);
177 
185  void schedTimingResp(PacketPtr pkt, Tick when);
186 
192  void retryStalledReq();
193 
194  protected:
195 
198  bool recvTimingReq(PacketPtr pkt);
199 
202  void recvRespRetry();
203 
207 
210  void recvFunctional(PacketPtr pkt);
211 
215  };
216 
217 
224  {
225 
226  private:
227 
230 
235 
237  const Cycles delay;
238 
246 
248  const unsigned int reqQueueLimit;
249 
255  void trySendTiming();
256 
260 
261  public:
262 
272  BridgeMasterPort(const std::string& _name, Bridge& _bridge,
274  int _req_limit);
275 
281  bool reqQueueFull() const;
282 
290  void schedTimingReq(PacketPtr pkt, Tick when);
291 
300  bool checkFunctional(PacketPtr pkt);
301 
302  protected:
303 
306  bool recvTimingResp(PacketPtr pkt);
307 
310  void recvReqRetry();
311  };
312 
315 
318 
319  public:
320 
321  virtual BaseMasterPort& getMasterPort(const std::string& if_name,
322  PortID idx = InvalidPortID);
323  virtual BaseSlavePort& getSlavePort(const std::string& if_name,
324  PortID idx = InvalidPortID);
325 
326  virtual void init();
327 
328  typedef BridgeParams Params;
329 
330  Bridge(Params *p);
331 };
332 
333 #endif //__MEM_BRIDGE_HH__
A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
Definition: port.hh:167
bool retryReq
If we should send a retry when space becomes available.
Definition: bridge.hh:133
Bridge & bridge
The bridge to which this port belongs.
Definition: bridge.hh:229
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:83
BridgeSlavePort(const std::string &_name, Bridge &_bridge, BridgeMasterPort &_masterPort, Cycles _delay, int _resp_limit, std::vector< AddrRange > _ranges)
Constructor for the BridgeSlavePort.
Definition: bridge.cc:57
const PortID InvalidPortID
Definition: types.hh:182
const Cycles delay
Minimum request delay though this bridge.
Definition: bridge.hh:116
unsigned int outstandingResponses
Counter to track the outstanding responses.
Definition: bridge.hh:130
Tick recvAtomic(PacketPtr pkt)
When receiving a Atomic requestfrom the peer port, pass it to the bridge.
Definition: bridge.cc:348
EventWrapper< BridgeSlavePort,&BridgeSlavePort::trySendTiming > sendEvent
Send event for the response queue.
Definition: bridge.hh:160
virtual void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: bridge.cc:108
virtual BaseMasterPort & getMasterPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a master port with a given name and index.
Definition: bridge.cc:88
MemObject declaration.
const AddrRangeList ranges
Address ranges to pass through the bridge.
Definition: bridge.hh:119
void recvRespRetry()
When receiving a retry request from the peer port, pass it to the bridge.
Definition: bridge.cc:342
const PacketPtr pkt
Definition: bridge.hh:87
A SlavePort is a specialisation of a port.
Definition: port.hh:331
BridgeParams Params
Definition: bridge.hh:328
MasterPort * _masterPort
Definition: port.hh:338
EventWrapper< BridgeMasterPort,&BridgeMasterPort::trySendTiming > sendEvent
Send event for the request queue.
Definition: bridge.hh:259
A BaseSlavePort is a protocol-agnostic slave port, responsible only for the structural connection to ...
Definition: port.hh:139
bool recvTimingResp(PacketPtr pkt)
When receiving a timing request from the peer port, pass it to the bridge.
Definition: bridge.cc:131
SlavePort * _slavePort
Definition: port.hh:174
void recvReqRetry()
When receiving a retry request from the peer port, pass it to the bridge.
Definition: bridge.cc:336
std::deque< DeferredPacket > transmitList
Request packet queue.
Definition: bridge.hh:245
BridgeMasterPort & masterPort
Master port on the other side of the bridge.
Definition: bridge.hh:113
uint64_t Tick
Tick count type.
Definition: types.hh:63
BridgeMasterPort masterPort
Master port of the bridge.
Definition: bridge.hh:317
BridgeSlavePort slavePort
Slave port of the bridge.
Definition: bridge.hh:314
bool respQueueFull() const
Is this side blocked from accepting new response packets.
Definition: bridge.cc:119
void retryStalledReq()
Retry any stalled request that we have failed to accept at an earlier point in time.
Definition: bridge.cc:213
bool recvTimingReq(PacketPtr pkt)
When receiving a timing request from the peer port, pass it to the bridge.
Definition: bridge.cc:153
BridgeMasterPort(const std::string &_name, Bridge &_bridge, BridgeSlavePort &_slavePort, Cycles _delay, int _req_limit)
Constructor for the BridgeMasterPort.
Definition: bridge.cc:69
bool reqQueueFull() const
Is this side blocked from accepting new request packets.
Definition: bridge.cc:125
std::deque< DeferredPacket > transmitList
Response packet queue.
Definition: bridge.hh:127
const unsigned int reqQueueLimit
Max queue size for request packets.
Definition: bridge.hh:248
A deferred packet stores a packet along with its scheduled transmission time.
Definition: bridge.hh:81
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:245
The port on the side that receives requests and sends responses.
Definition: bridge.hh:102
const Tick tick
Definition: bridge.hh:86
Bridge(Params *p)
Definition: bridge.cc:78
STL deque class.
Definition: stl.hh:47
bool checkFunctional(PacketPtr pkt)
Check a functional request against the packets in our request queue.
Definition: bridge.cc:381
The MemObject class extends the ClockedObject with accessor functions to get its master and slave por...
Definition: mem_object.hh:60
A BaseMasterPort is a protocol-agnostic master port, responsible only for the structural connection t...
Definition: port.hh:115
void schedTimingReq(PacketPtr pkt, Tick when)
Queue a request packet to be sent out later and also schedule a send if necessary.
Definition: bridge.cc:223
void trySendTiming()
Handle send event, scheduled when the packet at the head of the response queue is ready to transmit (...
Definition: bridge.cc:292
AddrRangeList getAddrRanges() const
When receiving a address range request the peer port, pass it to the bridge.
Definition: bridge.cc:398
unsigned int respQueueLimit
Max queue size for reserved responses.
Definition: bridge.hh:136
A bridge is used to interface two different crossbars (or in general a memory-mapped master and slave...
Definition: bridge.hh:73
void trySendTiming()
Handle send event, scheduled when the packet at the head of the outbound queue is ready to transmit (...
Definition: bridge.cc:254
Port on the side that forwards requests and receives responses.
Definition: bridge.hh:223
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:181
void schedTimingResp(PacketPtr pkt, Tick when)
Queue a response packet to be sent out later and also schedule a send if necessary.
Definition: bridge.cc:240
BridgeSlavePort & slavePort
The slave port on the other side of the bridge.
Definition: bridge.hh:234
DeferredPacket(PacketPtr _pkt, Tick _tick)
Definition: bridge.hh:89
const Cycles delay
Minimum delay though this bridge.
Definition: bridge.hh:237
virtual BaseSlavePort & getSlavePort(const std::string &if_name, PortID idx=InvalidPortID)
Get a slave port with a given name and index.
Definition: bridge.cc:98
Bitfield< 0 > p
Bridge & bridge
The bridge to which this port belongs.
Definition: bridge.hh:108
void recvFunctional(PacketPtr pkt)
When receiving a Functional request from the peer port, pass it to the bridge.
Definition: bridge.cc:357
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:142

Generated on Fri Jun 9 2017 13:03:48 for gem5 by doxygen 1.8.6