external_slave.cc (10478:7135f938ff28) external_slave.cc (10559:62f5f7363197)
1/*
2 * Copyright (c) 2012-2014 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

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

68
69 /** Received a new request while processing a first. Need to ask for
70 * a retry after completing this packet */
71 bool mustRetry;
72
73 StubSlavePort(const std::string &name_,
74 ExternalSlave &owner_) :
75 ExternalSlave::Port(name_, owner_),
1/*
2 * Copyright (c) 2012-2014 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

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

68
69 /** Received a new request while processing a first. Need to ask for
70 * a retry after completing this packet */
71 bool mustRetry;
72
73 StubSlavePort(const std::string &name_,
74 ExternalSlave &owner_) :
75 ExternalSlave::Port(name_, owner_),
76 responseEvent(*this), responsePacket(NULL)
76 responseEvent(*this), responsePacket(NULL), mustRetry(false)
77 { }
78
79 Tick recvAtomic(PacketPtr packet);
80 void recvFunctional(PacketPtr packet);
81 bool recvTimingReq(PacketPtr packet);
82 bool recvTimingSnoopResp(PacketPtr packet);
83 void recvRetry();
84 void recvFunctionalSnoop(PacketPtr packet);

--- 168 unchanged lines hidden ---
77 { }
78
79 Tick recvAtomic(PacketPtr packet);
80 void recvFunctional(PacketPtr packet);
81 bool recvTimingReq(PacketPtr packet);
82 bool recvTimingSnoopResp(PacketPtr packet);
83 void recvRetry();
84 void recvFunctionalSnoop(PacketPtr packet);

--- 168 unchanged lines hidden ---