simple_mem.cc (9453:0694ba392248) simple_mem.cc (9549:95a536fae9ac)
1/*
2 * Copyright (c) 2010-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

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

116
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
1/*
2 * Copyright (c) 2010-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

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

116
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;
126
124 // update the release time according to the bandwidth limit, and
125 // do so with respect to the time it takes to finish this request
126 // rather than long term as it is the short term data rate that is
127 // limited for any real memory
128
129 // only look at reads and writes when determining if we are busy,
130 // and for how long, as it is not clear what to regulate for the
131 // other types of commands

--- 110 unchanged lines hidden ---
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
134 // other types of commands

--- 110 unchanged lines hidden ---