bridge.hh (9180:ee8d7a51651d) bridge.hh (9235:5aa4896ed55a)
1/*
2 * Copyright (c) 2011-2012 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

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

188 * @param _bridge the structural owner
189 * @param _masterPort the master port on the other side of the bridge
190 * @param _delay the delay in cycles from receiving to sending
191 * @param _resp_limit the size of the response queue
192 * @param _ranges a number of address ranges to forward
193 */
194 BridgeSlavePort(const std::string& _name, Bridge& _bridge,
195 BridgeMasterPort& _masterPort, Cycles _delay,
1/*
2 * Copyright (c) 2011-2012 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

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

188 * @param _bridge the structural owner
189 * @param _masterPort the master port on the other side of the bridge
190 * @param _delay the delay in cycles from receiving to sending
191 * @param _resp_limit the size of the response queue
192 * @param _ranges a number of address ranges to forward
193 */
194 BridgeSlavePort(const std::string& _name, Bridge& _bridge,
195 BridgeMasterPort& _masterPort, Cycles _delay,
196 int _resp_limit, std::vector<Range<Addr> > _ranges);
196 int _resp_limit, std::vector<AddrRange> _ranges);
197
198 /**
199 * Queue a response packet to be sent out later and also schedule
200 * a send if necessary.
201 *
202 * @param pkt a response to send out after a delay
203 * @param when tick when response packet should be sent
204 */

--- 148 unchanged lines hidden ---
197
198 /**
199 * Queue a response packet to be sent out later and also schedule
200 * a send if necessary.
201 *
202 * @param pkt a response to send out after a delay
203 * @param when tick when response packet should be sent
204 */

--- 148 unchanged lines hidden ---