simple_mem.cc (10509:d5554f97c451) simple_mem.cc (10694:1a6785e37d81)
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

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

120 // if we are busy with a read or write, remember that we have to
121 // retry
122 if (isBusy) {
123 retryReq = true;
124 return false;
125 }
126
127 // @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

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

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

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

--- 160 unchanged lines hidden ---