simple_mem.cc (10372:0a810481d511) simple_mem.cc (10405:7a618c07e663)
1/*
2 * Copyright (c) 2010-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

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

117 // if we are busy with a read or write, remember that we have to
118 // retry
119 if (isBusy) {
120 retryReq = true;
121 return false;
122 }
123
124 // @todo someone should pay for this
1/*
2 * Copyright (c) 2010-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

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

117 // if we are busy with a read or write, remember that we have to
118 // retry
119 if (isBusy) {
120 retryReq = true;
121 return false;
122 }
123
124 // @todo someone should pay for this
125 pkt->busFirstWordDelay = pkt->busLastWordDelay = 0;
125 pkt->firstWordDelay = pkt->lastWordDelay = 0;
126
127 // update the release time according to the bandwidth limit, and
128 // do so with respect to the time it takes to finish this request
129 // rather than long term as it is the short term data rate that is
130 // limited for any real memory
131
132 // only look at reads and writes when determining if we are busy,
133 // and for how long, as it is not clear what to regulate for the

--- 158 unchanged lines hidden ---
126
127 // update the release time according to the bandwidth limit, and
128 // do so with respect to the time it takes to finish this request
129 // rather than long term as it is the short term data rate that is
130 // limited for any real memory
131
132 // only look at reads and writes when determining if we are busy,
133 // and for how long, as it is not clear what to regulate for the

--- 158 unchanged lines hidden ---