xbar.cc revision 9549
112855Sgabeblack@google.com/*
212855Sgabeblack@google.com * Copyright (c) 2011-2013 ARM Limited
312855Sgabeblack@google.com * All rights reserved
412855Sgabeblack@google.com *
512855Sgabeblack@google.com * The license below extends only to copyright in the software and shall
612855Sgabeblack@google.com * not be construed as granting a license to any other intellectual
712855Sgabeblack@google.com * property including but not limited to intellectual property relating
812855Sgabeblack@google.com * to a hardware implementation of the functionality of the software
912855Sgabeblack@google.com * licensed hereunder.  You may use the software subject to the license
1012855Sgabeblack@google.com * terms below provided that you ensure that this notice is replicated
1112855Sgabeblack@google.com * unmodified and in its entirety in all distributions of the software,
1212855Sgabeblack@google.com * modified or unmodified, in source code or in binary form.
1312855Sgabeblack@google.com *
1412855Sgabeblack@google.com * Copyright (c) 2006 The Regents of The University of Michigan
1512855Sgabeblack@google.com * All rights reserved.
1612855Sgabeblack@google.com *
1712855Sgabeblack@google.com * Redistribution and use in source and binary forms, with or without
1812855Sgabeblack@google.com * modification, are permitted provided that the following conditions are
1912855Sgabeblack@google.com * met: redistributions of source code must retain the above copyright
2012855Sgabeblack@google.com * notice, this list of conditions and the following disclaimer;
2112855Sgabeblack@google.com * redistributions in binary form must reproduce the above copyright
2212855Sgabeblack@google.com * notice, this list of conditions and the following disclaimer in the
2312855Sgabeblack@google.com * documentation and/or other materials provided with the distribution;
2412855Sgabeblack@google.com * neither the name of the copyright holders nor the names of its
2512855Sgabeblack@google.com * contributors may be used to endorse or promote products derived from
2612855Sgabeblack@google.com * this software without specific prior written permission.
2712855Sgabeblack@google.com *
2812855Sgabeblack@google.com * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2912855Sgabeblack@google.com * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
3012855Sgabeblack@google.com * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
3112855Sgabeblack@google.com * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
3212855Sgabeblack@google.com * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
3312855Sgabeblack@google.com * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
3412855Sgabeblack@google.com * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
3512855Sgabeblack@google.com * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
3612855Sgabeblack@google.com * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3712855Sgabeblack@google.com * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3812855Sgabeblack@google.com * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3912855Sgabeblack@google.com *
4012855Sgabeblack@google.com * Authors: Ali Saidi
4112855Sgabeblack@google.com *          Andreas Hansson
4212855Sgabeblack@google.com *          William Wang
4312855Sgabeblack@google.com */
4412855Sgabeblack@google.com
4512855Sgabeblack@google.com/**
4612855Sgabeblack@google.com * @file
4712855Sgabeblack@google.com * Definition of a bus object.
4812855Sgabeblack@google.com */
4912855Sgabeblack@google.com
5012855Sgabeblack@google.com#include "base/misc.hh"
5112855Sgabeblack@google.com#include "base/trace.hh"
5212855Sgabeblack@google.com#include "debug/Bus.hh"
5312855Sgabeblack@google.com#include "debug/BusAddrRanges.hh"
5412855Sgabeblack@google.com#include "debug/Drain.hh"
5512855Sgabeblack@google.com#include "mem/bus.hh"
5612855Sgabeblack@google.com
5712855Sgabeblack@google.comBaseBus::BaseBus(const BaseBusParams *p)
5812855Sgabeblack@google.com    : MemObject(p),
5912855Sgabeblack@google.com      headerCycles(p->header_cycles), width(p->width),
6012855Sgabeblack@google.com      gotAddrRanges(p->port_default_connection_count +
6112855Sgabeblack@google.com                          p->port_master_connection_count, false),
6212855Sgabeblack@google.com      gotAllAddrRanges(false), defaultPortID(InvalidPortID),
6312855Sgabeblack@google.com      useDefaultRange(p->use_default_range),
6412855Sgabeblack@google.com      blockSize(p->block_size)
6512855Sgabeblack@google.com{}
6612855Sgabeblack@google.com
6712855Sgabeblack@google.comBaseBus::~BaseBus()
6812855Sgabeblack@google.com{
6912855Sgabeblack@google.com    for (MasterPortIter m = masterPorts.begin(); m != masterPorts.end();
7012855Sgabeblack@google.com         ++m) {
7112855Sgabeblack@google.com        delete *m;
7212855Sgabeblack@google.com    }
7312855Sgabeblack@google.com
7412855Sgabeblack@google.com    for (SlavePortIter s = slavePorts.begin(); s != slavePorts.end();
7512855Sgabeblack@google.com         ++s) {
7612855Sgabeblack@google.com        delete *s;
7712855Sgabeblack@google.com    }
7812855Sgabeblack@google.com}
7912855Sgabeblack@google.com
8012855Sgabeblack@google.comvoid
8112855Sgabeblack@google.comBaseBus::init()
8212855Sgabeblack@google.com{
8312855Sgabeblack@google.com    // determine the maximum peer block size, look at both the
8412855Sgabeblack@google.com    // connected master and slave modules
8512855Sgabeblack@google.com    uint32_t peer_block_size = 0;
8612855Sgabeblack@google.com
8712855Sgabeblack@google.com    for (MasterPortConstIter m = masterPorts.begin(); m != masterPorts.end();
8812855Sgabeblack@google.com         ++m) {
8912855Sgabeblack@google.com        peer_block_size = std::max((*m)->peerBlockSize(), peer_block_size);
9012855Sgabeblack@google.com    }
9112855Sgabeblack@google.com
9212855Sgabeblack@google.com    for (SlavePortConstIter s = slavePorts.begin(); s != slavePorts.end();
9312855Sgabeblack@google.com         ++s) {
9412855Sgabeblack@google.com        peer_block_size = std::max((*s)->peerBlockSize(), peer_block_size);
9512855Sgabeblack@google.com    }
9612855Sgabeblack@google.com
9712855Sgabeblack@google.com    // if the peers do not have a block size, use the default value
9812855Sgabeblack@google.com    // set through the bus parameters
9912855Sgabeblack@google.com    if (peer_block_size != 0)
10012855Sgabeblack@google.com        blockSize = peer_block_size;
10112855Sgabeblack@google.com
10212855Sgabeblack@google.com    // check if the block size is a value known to work
10312855Sgabeblack@google.com    if (!(blockSize == 16 || blockSize == 32 || blockSize == 64 ||
10412855Sgabeblack@google.com          blockSize == 128))
105        warn_once("Block size is neither 16, 32, 64 or 128 bytes.\n");
106}
107
108BaseMasterPort &
109BaseBus::getMasterPort(const std::string &if_name, PortID idx)
110{
111    if (if_name == "master" && idx < masterPorts.size()) {
112        // the master port index translates directly to the vector position
113        return *masterPorts[idx];
114    } else  if (if_name == "default") {
115        return *masterPorts[defaultPortID];
116    } else {
117        return MemObject::getMasterPort(if_name, idx);
118    }
119}
120
121BaseSlavePort &
122BaseBus::getSlavePort(const std::string &if_name, PortID idx)
123{
124    if (if_name == "slave" && idx < slavePorts.size()) {
125        // the slave port index translates directly to the vector position
126        return *slavePorts[idx];
127    } else {
128        return MemObject::getSlavePort(if_name, idx);
129    }
130}
131
132void
133BaseBus::calcPacketTiming(PacketPtr pkt)
134{
135    // the bus will be called at a time that is not necessarily
136    // coinciding with its own clock, so start by determining how long
137    // until the next clock edge (could be zero)
138    Tick offset = nextCycle() - curTick();
139
140    // determine how many cycles are needed to send the data
141    unsigned dataCycles = pkt->hasData() ? divCeil(pkt->getSize(), width) : 0;
142
143    // before setting the bus delay fields of the packet, ensure that
144    // the delay from any previous bus has been accounted for
145    if (pkt->busFirstWordDelay != 0 || pkt->busLastWordDelay != 0)
146        panic("Packet %s already has bus delay (%d, %d) that should be "
147              "accounted for.\n", pkt->cmdString(), pkt->busFirstWordDelay,
148              pkt->busLastWordDelay);
149
150    // The first word will be delivered on the cycle after the header.
151    pkt->busFirstWordDelay = (headerCycles + 1) * clockPeriod() + offset;
152
153    // Note that currently busLastWordDelay can be smaller than
154    // busFirstWordDelay if the packet has no data
155    pkt->busLastWordDelay = (headerCycles + dataCycles) * clockPeriod() +
156        offset;
157}
158
159template <typename PortClass>
160BaseBus::Layer<PortClass>::Layer(BaseBus& _bus, const std::string& _name) :
161    Drainable(),
162    bus(_bus), _name(_name), state(IDLE), drainManager(NULL),
163    releaseEvent(this)
164{
165}
166
167template <typename PortClass>
168void BaseBus::Layer<PortClass>::occupyLayer(Tick until)
169{
170    // ensure the state is busy or in retry and never idle at this
171    // point, as the bus should transition from idle as soon as it has
172    // decided to forward the packet to prevent any follow-on calls to
173    // sendTiming seeing an unoccupied bus
174    assert(state != IDLE);
175
176    // note that we do not change the bus state here, if we are going
177    // from idle to busy it is handled by tryTiming, and if we
178    // are in retry we should remain in retry such that
179    // succeededTiming still sees the accurate state
180
181    // until should never be 0 as express snoops never occupy the bus
182    assert(until != 0);
183    bus.schedule(releaseEvent, until);
184
185    DPRINTF(BaseBus, "The bus is now busy from tick %d to %d\n",
186            curTick(), until);
187}
188
189template <typename PortClass>
190bool
191BaseBus::Layer<PortClass>::tryTiming(PortClass* port)
192{
193    // first we see if the bus is busy, next we check if we are in a
194    // retry with a port other than the current one
195    if (state == BUSY || (state == RETRY && port != retryList.front())) {
196        // put the port at the end of the retry list
197        retryList.push_back(port);
198        return false;
199    }
200
201    // update the state which is shared for request, response and
202    // snoop responses, if we were idle we are now busy, if we are in
203    // a retry, then do not change
204    if (state == IDLE)
205        state = BUSY;
206
207    return true;
208}
209
210template <typename PortClass>
211void
212BaseBus::Layer<PortClass>::succeededTiming(Tick busy_time)
213{
214    // if a retrying port succeeded, also take it off the retry list
215    if (state == RETRY) {
216        DPRINTF(BaseBus, "Remove retry from list %s\n",
217                retryList.front()->name());
218        retryList.pop_front();
219        state = BUSY;
220    }
221
222    // we should either have gone from idle to busy in the
223    // tryTiming test, or just gone from a retry to busy
224    assert(state == BUSY);
225
226    // occupy the bus accordingly
227    occupyLayer(busy_time);
228}
229
230template <typename PortClass>
231void
232BaseBus::Layer<PortClass>::failedTiming(PortClass* port, Tick busy_time)
233{
234    // if we are not in a retry, i.e. busy (but never idle), or we are
235    // in a retry but not for the current port, then add the port at
236    // the end of the retry list
237    if (state != RETRY || port != retryList.front()) {
238        retryList.push_back(port);
239    }
240
241    // even if we retried the current one and did not succeed,
242    // we are no longer retrying but instead busy
243    state = BUSY;
244
245    // occupy the bus accordingly
246    occupyLayer(busy_time);
247}
248
249template <typename PortClass>
250void
251BaseBus::Layer<PortClass>::releaseLayer()
252{
253    // releasing the bus means we should now be idle
254    assert(state == BUSY);
255    assert(!releaseEvent.scheduled());
256
257    // update the state
258    state = IDLE;
259
260    // bus is now idle, so if someone is waiting we can retry
261    if (!retryList.empty()) {
262        // note that we block (return false on recvTiming) both
263        // because the bus is busy and because the destination is
264        // busy, and in the latter case the bus may be released before
265        // we see a retry from the destination
266        retryWaiting();
267    } else if (drainManager) {
268        DPRINTF(Drain, "Bus done draining, signaling drain manager\n");
269        //If we weren't able to drain before, do it now.
270        drainManager->signalDrainDone();
271        // Clear the drain event once we're done with it.
272        drainManager = NULL;
273    }
274}
275
276template <typename PortClass>
277void
278BaseBus::Layer<PortClass>::retryWaiting()
279{
280    // this should never be called with an empty retry list
281    assert(!retryList.empty());
282
283    // we always go to retrying from idle
284    assert(state == IDLE);
285
286    // update the state which is shared for request, response and
287    // snoop responses
288    state = RETRY;
289
290    // note that we might have blocked on the receiving port being
291    // busy (rather than the bus itself) and now call retry before the
292    // destination called retry on the bus
293    retryList.front()->sendRetry();
294
295    // If the bus is still in the retry state, sendTiming wasn't
296    // called in zero time (e.g. the cache does this)
297    if (state == RETRY) {
298        retryList.pop_front();
299
300        //Burn a cycle for the missed grant.
301
302        // update the state which is shared for request, response and
303        // snoop responses
304        state = BUSY;
305
306        // occupy the bus layer until the next cycle ends
307        occupyLayer(bus.clockEdge(Cycles(1)));
308    }
309}
310
311template <typename PortClass>
312void
313BaseBus::Layer<PortClass>::recvRetry()
314{
315    // we got a retry from a peer that we tried to send something to
316    // and failed, but we sent it on the account of someone else, and
317    // that source port should be on our retry list, however if the
318    // bus layer is released before this happens and the retry (from
319    // the bus point of view) is successful then this no longer holds
320    // and we could in fact have an empty retry list
321    if (retryList.empty())
322        return;
323
324    // if the bus layer is idle
325    if (state == IDLE) {
326        // note that we do not care who told us to retry at the moment, we
327        // merely let the first one on the retry list go
328        retryWaiting();
329    }
330}
331
332PortID
333BaseBus::findPort(Addr addr)
334{
335    // we should never see any address lookups before we've got the
336    // ranges of all connected slave modules
337    assert(gotAllAddrRanges);
338
339    // Check the cache
340    PortID dest_id = checkPortCache(addr);
341    if (dest_id != InvalidPortID)
342        return dest_id;
343
344    // Check the address map interval tree
345    PortMapConstIter i = portMap.find(addr);
346    if (i != portMap.end()) {
347        dest_id = i->second;
348        updatePortCache(dest_id, i->first);
349        return dest_id;
350    }
351
352    // Check if this matches the default range
353    if (useDefaultRange) {
354        if (defaultRange.contains(addr)) {
355            DPRINTF(BusAddrRanges, "  found addr %#llx on default\n",
356                    addr);
357            return defaultPortID;
358        }
359    } else if (defaultPortID != InvalidPortID) {
360        DPRINTF(BusAddrRanges, "Unable to find destination for addr %#llx, "
361                "will use default port\n", addr);
362        return defaultPortID;
363    }
364
365    // we should use the range for the default port and it did not
366    // match, or the default port is not set
367    fatal("Unable to find destination for addr %#llx on bus %s\n", addr,
368          name());
369}
370
371/** Function called by the port when the bus is receiving a range change.*/
372void
373BaseBus::recvRangeChange(PortID master_port_id)
374{
375    DPRINTF(BusAddrRanges, "Received range change from slave port %s\n",
376            masterPorts[master_port_id]->getSlavePort().name());
377
378    // remember that we got a range from this master port and thus the
379    // connected slave module
380    gotAddrRanges[master_port_id] = true;
381
382    // update the global flag
383    if (!gotAllAddrRanges) {
384        // take a logical AND of all the ports and see if we got
385        // ranges from everyone
386        gotAllAddrRanges = true;
387        std::vector<bool>::const_iterator r = gotAddrRanges.begin();
388        while (gotAllAddrRanges &&  r != gotAddrRanges.end()) {
389            gotAllAddrRanges &= *r++;
390        }
391        if (gotAllAddrRanges)
392            DPRINTF(BusAddrRanges, "Got address ranges from all slaves\n");
393    }
394
395    // note that we could get the range from the default port at any
396    // point in time, and we cannot assume that the default range is
397    // set before the other ones are, so we do additional checks once
398    // all ranges are provided
399    if (master_port_id == defaultPortID) {
400        // only update if we are indeed checking ranges for the
401        // default port since the port might not have a valid range
402        // otherwise
403        if (useDefaultRange) {
404            AddrRangeList ranges = masterPorts[master_port_id]->getAddrRanges();
405
406            if (ranges.size() != 1)
407                fatal("Bus %s may only have a single default range",
408                      name());
409
410            defaultRange = ranges.front();
411        }
412    } else {
413        // the ports are allowed to update their address ranges
414        // dynamically, so remove any existing entries
415        if (gotAddrRanges[master_port_id]) {
416            for (PortMapIter p = portMap.begin(); p != portMap.end(); ) {
417                if (p->second == master_port_id)
418                    // erasing invalidates the iterator, so advance it
419                    // before the deletion takes place
420                    portMap.erase(p++);
421                else
422                    p++;
423            }
424        }
425
426        AddrRangeList ranges = masterPorts[master_port_id]->getAddrRanges();
427
428        for (AddrRangeConstIter r = ranges.begin(); r != ranges.end(); ++r) {
429            DPRINTF(BusAddrRanges, "Adding range %s for id %d\n",
430                    r->to_string(), master_port_id);
431            if (portMap.insert(*r, master_port_id) == portMap.end()) {
432                PortID conflict_id = portMap.find(*r)->second;
433                fatal("%s has two ports with same range:\n\t%s\n\t%s\n",
434                      name(),
435                      masterPorts[master_port_id]->getSlavePort().name(),
436                      masterPorts[conflict_id]->getSlavePort().name());
437            }
438        }
439    }
440
441    // if we have received ranges from all our neighbouring slave
442    // modules, go ahead and tell our connected master modules in
443    // turn, this effectively assumes a tree structure of the system
444    if (gotAllAddrRanges) {
445        // also check that no range partially overlaps with the
446        // default range, this has to be done after all ranges are set
447        // as there are no guarantees for when the default range is
448        // update with respect to the other ones
449        if (useDefaultRange) {
450            for (PortID port_id = 0; port_id < masterPorts.size(); ++port_id) {
451                if (port_id == defaultPortID) {
452                    if (!gotAddrRanges[port_id])
453                        fatal("Bus %s uses default range, but none provided",
454                              name());
455                } else {
456                    AddrRangeList ranges =
457                        masterPorts[port_id]->getAddrRanges();
458
459                    for (AddrRangeConstIter r = ranges.begin();
460                         r != ranges.end(); ++r) {
461                        // see if the new range is partially
462                        // overlapping the default range
463                        if (r->intersects(defaultRange) &&
464                            !r->isSubset(defaultRange))
465                            fatal("Range %s intersects the " \
466                                  "default range of %s but is not a " \
467                                  "subset\n", r->to_string(), name());
468                    }
469                }
470            }
471        }
472
473        // tell all our neighbouring master ports that our address
474        // ranges have changed
475        for (SlavePortConstIter s = slavePorts.begin(); s != slavePorts.end();
476             ++s)
477            (*s)->sendRangeChange();
478    }
479
480    clearPortCache();
481}
482
483AddrRangeList
484BaseBus::getAddrRanges() const
485{
486    // we should never be asked without first having sent a range
487    // change, and the latter is only done once we have all the ranges
488    // of the connected devices
489    assert(gotAllAddrRanges);
490
491    // at the moment, this never happens, as there are no cycles in
492    // the range queries and no devices on the master side of a bus
493    // (CPU, cache, bridge etc) actually care about the ranges of the
494    // ports they are connected to
495
496    DPRINTF(BusAddrRanges, "Received address range request, returning:\n");
497
498    // start out with the default range
499    AddrRangeList ranges;
500    if (useDefaultRange) {
501        ranges.push_back(defaultRange);
502        DPRINTF(BusAddrRanges, "  -- Default %s\n", defaultRange.to_string());
503    }
504
505    // add any range that is not a subset of the default range
506    for (PortMapConstIter p = portMap.begin(); p != portMap.end(); ++p) {
507        if (useDefaultRange && p->first.isSubset(defaultRange)) {
508            DPRINTF(BusAddrRanges, "  -- %s is a subset of default\n",
509                    p->first.to_string());
510        } else {
511            ranges.push_back(p->first);
512            DPRINTF(BusAddrRanges, "  -- %s\n", p->first.to_string());
513        }
514    }
515
516    return ranges;
517}
518
519unsigned
520BaseBus::deviceBlockSize() const
521{
522    return blockSize;
523}
524
525template <typename PortClass>
526unsigned int
527BaseBus::Layer<PortClass>::drain(DrainManager *dm)
528{
529    //We should check that we're not "doing" anything, and that noone is
530    //waiting. We might be idle but have someone waiting if the device we
531    //contacted for a retry didn't actually retry.
532    if (!retryList.empty() || state != IDLE) {
533        DPRINTF(Drain, "Bus not drained\n");
534        drainManager = dm;
535        return 1;
536    }
537    return 0;
538}
539
540/**
541 * Bus layer template instantiations. Could be removed with _impl.hh
542 * file, but since there are only two given options (MasterPort and
543 * SlavePort) it seems a bit excessive at this point.
544 */
545template class BaseBus::Layer<SlavePort>;
546template class BaseBus::Layer<MasterPort>;
547