bridge.hh (8711:c7e14f52c682) bridge.hh (8713:2f1a3e335255)
1/*
1/*
2 * Copyright (c) 2011 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 *
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright

--- 12 unchanged lines hidden (view full) ---

22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Ali Saidi
29 * Steve Reinhardt
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

--- 12 unchanged lines hidden (view full) ---

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
30 */
31
32/**
33 * @file
43 */
44
45/**
46 * @file
34 * Declaration of a simple bus bridge object with no buffering
47 * Declaration of a memory-mapped bus bridge that connects a master
48 * and a slave through a request and response queue.
35 */
36
37#ifndef __MEM_BRIDGE_HH__
38#define __MEM_BRIDGE_HH__
39
40#include <list>
41#include <queue>
42#include <string>
43
44#include "base/fast_alloc.hh"
45#include "base/types.hh"
46#include "mem/mem_object.hh"
47#include "mem/packet.hh"
48#include "mem/port.hh"
49#include "params/Bridge.hh"
50#include "sim/eventq.hh"
51
49 */
50
51#ifndef __MEM_BRIDGE_HH__
52#define __MEM_BRIDGE_HH__
53
54#include <list>
55#include <queue>
56#include <string>
57
58#include "base/fast_alloc.hh"
59#include "base/types.hh"
60#include "mem/mem_object.hh"
61#include "mem/packet.hh"
62#include "mem/port.hh"
63#include "params/Bridge.hh"
64#include "sim/eventq.hh"
65
66/**
67 * A bridge is used to interface two different busses (or in general a
68 * memory-mapped master and slave), with buffering for requests and
69 * responses. The bridge has a fixed delay for packets passing through
70 * it and responds to a fixed set of address ranges.
71 *
72 * The bridge comprises a slave port and a master port, that buffer
73 * outgoing responses and requests respectively. Buffer space is
74 * reserved when a request arrives, also reserving response space
75 * before forwarding the request. An incoming request is always
76 * accepted (recvTiming returns true), but is potentially NACKed if
77 * there is no request space or response space.
78 */
52class Bridge : public MemObject
53{
54 protected:
79class Bridge : public MemObject
80{
81 protected:
55 /** Declaration of the buses port type, one will be instantiated for each
56 of the interfaces connecting to the bus. */
57 class BridgePort : public Port
82
83 /**
84 * A packet buffer stores packets along with their sender state
85 * and scheduled time for transmission.
86 */
87 class PacketBuffer : public Packet::SenderState, public FastAlloc {
88
89 public:
90 Tick ready;
91 PacketPtr pkt;
92 bool nackedHere;
93 Packet::SenderState *origSenderState;
94 short origSrc;
95 bool expectResponse;
96
97 PacketBuffer(PacketPtr _pkt, Tick t, bool nack = false)
98 : ready(t), pkt(_pkt), nackedHere(nack),
99 origSenderState(_pkt->senderState),
100 origSrc(nack ? _pkt->getDest() : _pkt->getSrc() ),
101 expectResponse(_pkt->needsResponse() && !nack)
102
103 {
104 if (!pkt->isResponse() && !nack)
105 pkt->senderState = this;
106 }
107
108 void fixResponse(PacketPtr pkt)
109 {
110 assert(pkt->senderState == this);
111 pkt->setDest(origSrc);
112 pkt->senderState = origSenderState;
113 }
114 };
115
116 // Forward declaration to allow the slave port to have a pointer
117 class BridgeMasterPort;
118
119 /**
120 * The port on the side that receives requests and sends
121 * responses. The slave port has a set of address ranges that it
122 * is responsible for. The slave port also has a buffer for the
123 * responses not yet sent.
124 */
125 class BridgeSlavePort : public Port
58 {
126 {
127
128 private:
129
59 /** A pointer to the bridge to which this port belongs. */
60 Bridge *bridge;
61
62 /**
130 /** A pointer to the bridge to which this port belongs. */
131 Bridge *bridge;
132
133 /**
63 * Pointer to the port on the other side of the bridge
134 * Pointer to the master port on the other side of the bridge
64 * (connected to the other bus).
65 */
135 * (connected to the other bus).
136 */
66 BridgePort *otherPort;
137 BridgeMasterPort* masterPort;
67
138
68 /** Minimum delay though this bridge. */
139 /** Minimum request delay though this bridge. */
69 Tick delay;
70
140 Tick delay;
141
71 /** Min delay to respond to a nack. */
142 /** Min delay to respond with a nack. */
72 Tick nackDelay;
73
143 Tick nackDelay;
144
74 /** Pass ranges from one side of the bridge to the other? */
75 std::vector<Range<Addr> > filterRanges;
145 /** Address ranges to pass through the bridge */
146 AddrRangeList ranges;
76
147
77 class PacketBuffer : public Packet::SenderState, public FastAlloc {
148 /**
149 * Response packet queue. Response packets are held in this
150 * queue for a specified delay to model the processing delay
151 * of the bridge.
152 */
153 std::list<PacketBuffer*> responseQueue;
78
154
79 public:
80 Tick ready;
81 PacketPtr pkt;
82 bool nackedHere;
83 Packet::SenderState *origSenderState;
84 short origSrc;
85 bool expectResponse;
155 /** Counter to track the outstanding responses. */
156 unsigned int outstandingResponses;
86
157
87 PacketBuffer(PacketPtr _pkt, Tick t, bool nack = false)
88 : ready(t), pkt(_pkt), nackedHere(nack),
89 origSenderState(_pkt->senderState),
90 origSrc(nack ? _pkt->getDest() : _pkt->getSrc() ),
91 expectResponse(_pkt->needsResponse() && !nack)
158 /** If we're waiting for a retry to happen. */
159 bool inRetry;
92
160
93 {
94 if (!pkt->isResponse() && !nack)
95 pkt->senderState = this;
96 }
161 /** Max queue size for reserved responses. */
162 unsigned int respQueueLimit;
97
163
98 void fixResponse(PacketPtr pkt)
99 {
100 assert(pkt->senderState == this);
101 pkt->setDest(origSrc);
102 pkt->senderState = origSenderState;
103 }
104 };
164 /**
165 * Is this side blocked from accepting new response packets.
166 *
167 * @return true if the reserved space has reached the set limit
168 */
169 bool respQueueFull();
105
106 /**
170
171 /**
107 * Outbound packet queue. Packets are held in this queue for a
108 * specified delay to model the processing delay of the
109 * bridge.
172 * Turn the request packet into a NACK response and put it in
173 * the response queue and schedule its transmission.
174 *
175 * @param pkt the request packet to NACK
110 */
176 */
111 std::list<PacketBuffer*> sendQueue;
177 void nackRequest(PacketPtr pkt);
112
178
113 int outstandingResponses;
114 int queuedRequests;
179 /**
180 * Handle send event, scheduled when the packet at the head of
181 * the response queue is ready to transmit (for timing
182 * accesses only).
183 */
184 void trySend();
115
185
116 /** If we're waiting for a retry to happen.*/
117 bool inRetry;
186 /**
187 * Private class for scheduling sending of responses from the
188 * response queue.
189 */
190 class SendEvent : public Event
191 {
192 BridgeSlavePort *port;
118
193
119 /** Max queue size for outbound packets */
120 int reqQueueLimit;
194 public:
195 SendEvent(BridgeSlavePort *p) : port(p) {}
196 virtual void process() { port->trySend(); }
197 virtual const char *description() const { return "bridge send"; }
198 };
121
199
122 /** Max queue size for reserved responses. */
123 int respQueueLimit;
200 /** Send event for the response queue. */
201 SendEvent sendEvent;
124
202
203 public:
204
125 /**
205 /**
126 * Is this side blocked from accepting outbound packets?
206 * Constructor for the BridgeSlavePort.
207 *
208 * @param _name the port name including the owner
209 * @param _bridge the structural owner
210 * @param _masterPort the master port on the other side of the bridge
211 * @param _delay the delay from seeing a response to sending it
212 * @param _nack_delay the delay from a NACK to sending the response
213 * @param _resp_limit the size of the response queue
214 * @param _ranges a number of address ranges to forward
127 */
215 */
128 bool respQueueFull();
129 bool reqQueueFull();
216 BridgeSlavePort(const std::string &_name, Bridge *_bridge,
217 BridgeMasterPort* _masterPort, int _delay,
218 int _nack_delay, int _resp_limit,
219 std::vector<Range<Addr> > _ranges);
130
220
221 /**
222 * Queue a response packet to be sent out later and also schedule
223 * a send if necessary.
224 *
225 * @param pkt a response to send out after a delay
226 */
131 void queueForSendTiming(PacketPtr pkt);
132
227 void queueForSendTiming(PacketPtr pkt);
228
133 void finishSend(PacketBuffer *buf);
229 protected:
134
230
135 void nackRequest(PacketPtr pkt);
231 /** When receiving a timing request from the peer port,
232 pass it to the bridge. */
233 virtual bool recvTiming(PacketPtr pkt);
136
234
235 /** When receiving a retry request from the peer port,
236 pass it to the bridge. */
237 virtual void recvRetry();
238
239 /** When receiving a Atomic requestfrom the peer port,
240 pass it to the bridge. */
241 virtual Tick recvAtomic(PacketPtr pkt);
242
243 /** When receiving a Functional request from the peer port,
244 pass it to the bridge. */
245 virtual void recvFunctional(PacketPtr pkt);
246
137 /**
247 /**
248 * When receiving a range change on the slave side do nothing.
249 */
250 virtual void recvRangeChange();
251
252 /** When receiving a address range request the peer port,
253 pass it to the bridge. */
254 virtual AddrRangeList getAddrRanges();
255 };
256
257
258 /**
259 * Port on the side that forwards requests and receives
260 * responses. The master port has a buffer for the requests not
261 * yet sent.
262 */
263 class BridgeMasterPort : public Port
264 {
265
266 private:
267
268 /** A pointer to the bridge to which this port belongs. */
269 Bridge* bridge;
270
271 /**
272 * Pointer to the slave port on the other side of the bridge
273 * (connected to the other bus).
274 */
275 BridgeSlavePort* slavePort;
276
277 /** Minimum delay though this bridge. */
278 Tick delay;
279
280 /**
281 * Request packet queue. Request packets are held in this
282 * queue for a specified delay to model the processing delay
283 * of the bridge.
284 */
285 std::list<PacketBuffer*> requestQueue;
286
287 /** If we're waiting for a retry to happen. */
288 bool inRetry;
289
290 /** Max queue size for request packets */
291 unsigned int reqQueueLimit;
292
293 /**
138 * Handle send event, scheduled when the packet at the head of
139 * the outbound queue is ready to transmit (for timing
140 * accesses only).
141 */
142 void trySend();
143
294 * Handle send event, scheduled when the packet at the head of
295 * the outbound queue is ready to transmit (for timing
296 * accesses only).
297 */
298 void trySend();
299
300 /**
301 * Private class for scheduling sending of requests from the
302 * request queue.
303 */
144 class SendEvent : public Event
145 {
304 class SendEvent : public Event
305 {
146 BridgePort *port;
306 BridgeMasterPort *port;
147
148 public:
307
308 public:
149 SendEvent(BridgePort *p) : port(p) {}
309 SendEvent(BridgeMasterPort *p) : port(p) {}
150 virtual void process() { port->trySend(); }
151 virtual const char *description() const { return "bridge send"; }
152 };
153
310 virtual void process() { port->trySend(); }
311 virtual const char *description() const { return "bridge send"; }
312 };
313
314 /** Send event for the request queue. */
154 SendEvent sendEvent;
155
156 public:
315 SendEvent sendEvent;
316
317 public:
157 /** Constructor for the BusPort.*/
158 BridgePort(const std::string &_name, Bridge *_bridge,
159 BridgePort *_otherPort, int _delay, int _nack_delay,
160 int _req_limit, int _resp_limit,
161 std::vector<Range<Addr> > filter_ranges);
162
318
319 /**
320 * Constructor for the BridgeMasterPort.
321 *
322 * @param _name the port name including the owner
323 * @param _bridge the structural owner
324 * @param _slavePort the slave port on the other side of the bridge
325 * @param _delay the delay from seeing a request to sending it
326 * @param _req_limit the size of the request queue
327 */
328 BridgeMasterPort(const std::string &_name, Bridge *_bridge,
329 BridgeSlavePort* _slavePort, int _delay,
330 int _req_limit);
331
332 /**
333 * Is this side blocked from accepting new request packets.
334 *
335 * @return true if the occupied space has reached the set limit
336 */
337 bool reqQueueFull();
338
339 /**
340 * Queue a request packet to be sent out later and also schedule
341 * a send if necessary.
342 *
343 * @param pkt a request to send out after a delay
344 */
345 void queueForSendTiming(PacketPtr pkt);
346
347 /**
348 * Check a functional request against the packets in our
349 * request queue.
350 *
351 * @param pkt packet to check against
352 *
353 * @return true if we find a match
354 */
355 bool checkFunctional(PacketPtr pkt);
356
163 protected:
164
165 /** When receiving a timing request from the peer port,
166 pass it to the bridge. */
167 virtual bool recvTiming(PacketPtr pkt);
168
169 /** When receiving a retry request from the peer port,
170 pass it to the bridge. */

--- 6 unchanged lines hidden (view full) ---

177 /** When receiving a Functional request from the peer port,
178 pass it to the bridge. */
179 virtual void recvFunctional(PacketPtr pkt);
180
181 /**
182 * When receiving a range change, pass it through the bridge.
183 */
184 virtual void recvRangeChange();
357 protected:
358
359 /** When receiving a timing request from the peer port,
360 pass it to the bridge. */
361 virtual bool recvTiming(PacketPtr pkt);
362
363 /** When receiving a retry request from the peer port,
364 pass it to the bridge. */

--- 6 unchanged lines hidden (view full) ---

371 /** When receiving a Functional request from the peer port,
372 pass it to the bridge. */
373 virtual void recvFunctional(PacketPtr pkt);
374
375 /**
376 * When receiving a range change, pass it through the bridge.
377 */
378 virtual void recvRangeChange();
185
186 /** When receiving a address range request the peer port,
187 pass it to the bridge. */
188 virtual AddrRangeList getAddrRanges();
189 };
190
379 };
380
191 BridgePort portA, portB;
381 /** Slave port of the bridge. */
382 BridgeSlavePort slavePort;
192
383
384 /** Master port of the bridge. */
385 BridgeMasterPort masterPort;
386
193 /** If this bridge should acknowledge writes. */
194 bool ackWrites;
195
196 public:
197 typedef BridgeParams Params;
198
199 protected:
200 Params *_params;

--- 13 unchanged lines hidden ---
387 /** If this bridge should acknowledge writes. */
388 bool ackWrites;
389
390 public:
391 typedef BridgeParams Params;
392
393 protected:
394 Params *_params;

--- 13 unchanged lines hidden ---