bridge.hh (8949:3fa1ee293096) bridge.hh (8975:7f36d4436074)
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

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

225 * @param pkt a response to send out after a delay
226 */
227 void queueForSendTiming(PacketPtr pkt);
228
229 protected:
230
231 /** When receiving a timing request from the peer port,
232 pass it to the bridge. */
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

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

225 * @param pkt a response to send out after a delay
226 */
227 void queueForSendTiming(PacketPtr pkt);
228
229 protected:
230
231 /** When receiving a timing request from the peer port,
232 pass it to the bridge. */
233 virtual bool recvTiming(PacketPtr pkt);
233 virtual bool recvTimingReq(PacketPtr pkt);
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);

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

348 * @return true if we find a match
349 */
350 bool checkFunctional(PacketPtr pkt);
351
352 protected:
353
354 /** When receiving a timing request from the peer port,
355 pass it to the bridge. */
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);

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

348 * @return true if we find a match
349 */
350 bool checkFunctional(PacketPtr pkt);
351
352 protected:
353
354 /** When receiving a timing request from the peer port,
355 pass it to the bridge. */
356 virtual bool recvTiming(PacketPtr pkt);
356 virtual bool recvTimingResp(PacketPtr pkt);
357
358 /** When receiving a retry request from the peer port,
359 pass it to the bridge. */
360 virtual void recvRetry();
361 };
362
363 /** Slave port of the bridge. */
364 BridgeSlavePort slavePort;

--- 26 unchanged lines hidden ---
357
358 /** When receiving a retry request from the peer port,
359 pass it to the bridge. */
360 virtual void recvRetry();
361 };
362
363 /** Slave port of the bridge. */
364 BridgeSlavePort slavePort;

--- 26 unchanged lines hidden ---