2006-03-26 00:31:20 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006 The Regents of The University of Michigan
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met: redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer;
|
|
|
|
* redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution;
|
|
|
|
* neither the name of the copyright holders nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2006-06-01 01:26:56 +02:00
|
|
|
*
|
|
|
|
* Authors: Ali Saidi
|
2006-03-26 00:31:20 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2006-08-15 01:25:07 +02:00
|
|
|
* @file
|
|
|
|
* Definition of a bus object.
|
2006-03-26 00:31:20 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2006-07-06 20:41:01 +02:00
|
|
|
#include "base/misc.hh"
|
2006-04-12 01:35:30 +02:00
|
|
|
#include "base/trace.hh"
|
|
|
|
#include "mem/bus.hh"
|
2006-03-26 00:31:20 +01:00
|
|
|
#include "sim/builder.hh"
|
|
|
|
|
2006-05-26 19:48:35 +02:00
|
|
|
Port *
|
2006-06-14 05:19:28 +02:00
|
|
|
Bus::getPort(const std::string &if_name, int idx)
|
2006-05-26 19:48:35 +02:00
|
|
|
{
|
2006-11-02 21:20:37 +01:00
|
|
|
if (if_name == "default") {
|
2006-07-06 20:41:01 +02:00
|
|
|
if (defaultPort == NULL) {
|
|
|
|
defaultPort = new BusPort(csprintf("%s-default",name()), this,
|
2006-11-02 21:20:37 +01:00
|
|
|
defaultId);
|
2006-07-06 20:41:01 +02:00
|
|
|
return defaultPort;
|
|
|
|
} else
|
|
|
|
fatal("Default port already set\n");
|
2006-11-02 21:20:37 +01:00
|
|
|
}
|
2006-07-06 20:41:01 +02:00
|
|
|
|
2006-05-26 19:48:35 +02:00
|
|
|
// if_name ignored? forced to be empty?
|
|
|
|
int id = interfaces.size();
|
|
|
|
BusPort *bp = new BusPort(csprintf("%s-p%d", name(), id), this, id);
|
|
|
|
interfaces.push_back(bp);
|
|
|
|
return bp;
|
|
|
|
}
|
|
|
|
|
2006-07-06 20:41:01 +02:00
|
|
|
/** Get the ranges of anyone other buses that we are connected to. */
|
2006-04-28 21:37:48 +02:00
|
|
|
void
|
|
|
|
Bus::init()
|
|
|
|
{
|
2006-10-11 04:10:08 +02:00
|
|
|
std::vector<BusPort*>::iterator intIter;
|
2006-07-06 20:41:01 +02:00
|
|
|
|
2006-04-28 21:37:48 +02:00
|
|
|
for (intIter = interfaces.begin(); intIter != interfaces.end(); intIter++)
|
|
|
|
(*intIter)->sendStatusChange(Port::RangeChange);
|
|
|
|
}
|
|
|
|
|
2006-10-08 20:08:58 +02:00
|
|
|
Bus::BusFreeEvent::BusFreeEvent(Bus *_bus) : Event(&mainEventQueue), bus(_bus)
|
2006-10-10 23:24:03 +02:00
|
|
|
{}
|
2006-10-08 20:08:58 +02:00
|
|
|
|
|
|
|
void Bus::BusFreeEvent::process()
|
|
|
|
{
|
2006-10-10 23:24:03 +02:00
|
|
|
bus->recvRetry(-1);
|
2006-10-08 20:08:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const char * Bus::BusFreeEvent::description()
|
|
|
|
{
|
|
|
|
return "bus became available";
|
|
|
|
}
|
|
|
|
|
2006-10-11 05:28:33 +02:00
|
|
|
void Bus::occupyBus(PacketPtr pkt)
|
2006-03-26 00:31:20 +01:00
|
|
|
{
|
2006-10-10 05:24:21 +02:00
|
|
|
//Bring tickNextIdle up to the present tick
|
|
|
|
//There is some potential ambiguity where a cycle starts, which might make
|
|
|
|
//a difference when devices are acting right around a cycle boundary. Using
|
|
|
|
//a < allows things which happen exactly on a cycle boundary to take up only
|
|
|
|
//the following cycle. Anthing that happens later will have to "wait" for
|
|
|
|
//the end of that cycle, and then start using the bus after that.
|
|
|
|
while (tickNextIdle < curTick)
|
|
|
|
tickNextIdle += clock;
|
|
|
|
|
|
|
|
// The packet will be sent. Figure out how long it occupies the bus, and
|
|
|
|
// how much of that time is for the first "word", aka bus width.
|
2006-10-10 00:12:45 +02:00
|
|
|
int numCycles = 0;
|
|
|
|
// Requests need one cycle to send an address
|
|
|
|
if (pkt->isRequest())
|
|
|
|
numCycles++;
|
|
|
|
else if (pkt->isResponse() || pkt->hasData()) {
|
|
|
|
// If a packet has data, it needs ceil(size/width) cycles to send it
|
|
|
|
// We're using the "adding instead of dividing" trick again here
|
|
|
|
if (pkt->hasData()) {
|
|
|
|
int dataSize = pkt->getSize();
|
|
|
|
for (int transmitted = 0; transmitted < dataSize;
|
|
|
|
transmitted += width) {
|
|
|
|
numCycles++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// If the packet didn't have data, it must have been a response.
|
|
|
|
// Those use the bus for one cycle to send their data.
|
|
|
|
numCycles++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-10-10 05:24:21 +02:00
|
|
|
// The first word will be delivered after the current tick, the delivery
|
|
|
|
// of the address if any, and one bus cycle to deliver the data
|
|
|
|
pkt->firstWordTime =
|
|
|
|
tickNextIdle +
|
|
|
|
pkt->isRequest() ? clock : 0 +
|
|
|
|
clock;
|
|
|
|
|
|
|
|
//Advance it numCycles bus cycles.
|
|
|
|
//XXX Should this use the repeated addition trick as well?
|
|
|
|
tickNextIdle += (numCycles * clock);
|
|
|
|
if (!busIdle.scheduled()) {
|
|
|
|
busIdle.schedule(tickNextIdle);
|
|
|
|
} else {
|
|
|
|
busIdle.reschedule(tickNextIdle);
|
|
|
|
}
|
|
|
|
DPRINTF(Bus, "The bus is now occupied from tick %d to %d\n",
|
|
|
|
curTick, tickNextIdle);
|
|
|
|
|
|
|
|
// The bus will become idle once the current packet is delivered.
|
|
|
|
pkt->finishTime = tickNextIdle;
|
2006-10-11 05:28:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Function called by the port when the bus is receiving a Timing
|
|
|
|
* transaction.*/
|
|
|
|
bool
|
2006-10-20 09:10:12 +02:00
|
|
|
Bus::recvTiming(PacketPtr pkt)
|
2006-10-11 05:28:33 +02:00
|
|
|
{
|
|
|
|
Port *port;
|
|
|
|
DPRINTF(Bus, "recvTiming: packet src %d dest %d addr 0x%x cmd %s\n",
|
|
|
|
pkt->getSrc(), pkt->getDest(), pkt->getAddr(), pkt->cmdString());
|
|
|
|
|
2006-10-12 02:54:06 +02:00
|
|
|
BusPort *pktPort;
|
|
|
|
if (pkt->getSrc() == defaultId)
|
|
|
|
pktPort = defaultPort;
|
|
|
|
else pktPort = interfaces[pkt->getSrc()];
|
2006-10-11 05:28:33 +02:00
|
|
|
|
|
|
|
// If the bus is busy, or other devices are in line ahead of the current
|
|
|
|
// one, put this device on the retry list.
|
|
|
|
if (tickNextIdle > curTick ||
|
|
|
|
(retryList.size() && (!inRetry || pktPort != retryList.front()))) {
|
|
|
|
addToRetryList(pktPort);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
short dest = pkt->getDest();
|
|
|
|
if (dest == Packet::Broadcast) {
|
2006-11-14 07:12:52 +01:00
|
|
|
port = findPort(pkt->getAddr(), pkt->getSrc());
|
2006-11-14 23:15:05 +01:00
|
|
|
if (timingSnoop(pkt, port ? port : interfaces[pkt->getSrc()])) {
|
2006-10-20 08:34:59 +02:00
|
|
|
bool success;
|
|
|
|
|
2006-10-11 05:28:33 +02:00
|
|
|
pkt->flags |= SNOOP_COMMIT;
|
2006-11-14 23:15:05 +01:00
|
|
|
success = timingSnoop(pkt, port ? port : interfaces[pkt->getSrc()]);
|
2006-10-11 05:28:33 +02:00
|
|
|
assert(success);
|
2006-10-20 08:34:59 +02:00
|
|
|
|
2006-10-11 05:28:33 +02:00
|
|
|
if (pkt->flags & SATISFIED) {
|
|
|
|
//Cache-Cache transfer occuring
|
|
|
|
if (inRetry) {
|
|
|
|
retryList.front()->onRetryList(false);
|
|
|
|
retryList.pop_front();
|
|
|
|
inRetry = false;
|
|
|
|
}
|
|
|
|
occupyBus(pkt);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
//Snoop didn't succeed
|
2006-10-12 01:25:48 +02:00
|
|
|
DPRINTF(Bus, "Adding a retry to RETRY list %i\n", pktPort);
|
2006-10-11 05:28:33 +02:00
|
|
|
addToRetryList(pktPort);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
assert(dest >= 0 && dest < interfaces.size());
|
|
|
|
assert(dest != pkt->getSrc()); // catch infinite loops
|
|
|
|
port = interfaces[dest];
|
|
|
|
}
|
|
|
|
|
|
|
|
occupyBus(pkt);
|
2006-10-10 00:12:45 +02:00
|
|
|
|
2006-11-14 23:15:05 +01:00
|
|
|
if (port) {
|
|
|
|
if (port->sendTiming(pkt)) {
|
|
|
|
// Packet was successfully sent. Return true.
|
|
|
|
// Also take care of retries
|
|
|
|
if (inRetry) {
|
|
|
|
DPRINTF(Bus, "Remove retry from list %i\n", retryList.front());
|
|
|
|
retryList.front()->onRetryList(false);
|
|
|
|
retryList.pop_front();
|
|
|
|
inRetry = false;
|
|
|
|
}
|
|
|
|
return true;
|
2006-10-09 00:44:49 +02:00
|
|
|
}
|
2006-11-14 23:15:05 +01:00
|
|
|
|
|
|
|
// Packet not successfully sent. Leave or put it on the retry list.
|
|
|
|
DPRINTF(Bus, "Adding a retry to RETRY list %i\n", pktPort);
|
|
|
|
addToRetryList(pktPort);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
//Forwarding up from responder, just return true;
|
2006-05-31 00:57:42 +02:00
|
|
|
return true;
|
|
|
|
}
|
2006-03-26 00:31:20 +01:00
|
|
|
}
|
|
|
|
|
2006-05-31 00:57:42 +02:00
|
|
|
void
|
|
|
|
Bus::recvRetry(int id)
|
|
|
|
{
|
2006-10-11 04:50:36 +02:00
|
|
|
DPRINTF(Bus, "Received a retry\n");
|
2006-10-11 06:54:47 +02:00
|
|
|
// If there's anything waiting, and the bus isn't busy...
|
|
|
|
if (retryList.size() && curTick >= tickNextIdle) {
|
2006-10-10 23:24:03 +02:00
|
|
|
//retryingPort = retryList.front();
|
|
|
|
inRetry = true;
|
2006-10-11 04:50:36 +02:00
|
|
|
DPRINTF(Bus, "Sending a retry\n");
|
2006-10-10 23:24:03 +02:00
|
|
|
retryList.front()->sendRetry();
|
|
|
|
// If inRetry is still true, sendTiming wasn't called
|
|
|
|
if (inRetry)
|
2006-10-11 06:26:21 +02:00
|
|
|
{
|
|
|
|
retryList.front()->onRetryList(false);
|
|
|
|
retryList.pop_front();
|
|
|
|
inRetry = false;
|
|
|
|
|
|
|
|
//Bring tickNextIdle up to the present
|
|
|
|
while (tickNextIdle < curTick)
|
|
|
|
tickNextIdle += clock;
|
|
|
|
|
|
|
|
//Burn a cycle for the missed grant.
|
|
|
|
tickNextIdle += clock;
|
|
|
|
|
|
|
|
if (!busIdle.scheduled()) {
|
|
|
|
busIdle.schedule(tickNextIdle);
|
|
|
|
} else {
|
|
|
|
busIdle.reschedule(tickNextIdle);
|
|
|
|
}
|
|
|
|
}
|
2006-05-31 00:57:42 +02:00
|
|
|
}
|
2006-11-07 20:25:54 +01:00
|
|
|
//If we weren't able to drain before, we might be able to now.
|
2006-11-09 17:33:44 +01:00
|
|
|
if (drainEvent && retryList.size() == 0 && curTick >= tickNextIdle) {
|
2006-11-07 20:25:54 +01:00
|
|
|
drainEvent->process();
|
2006-11-09 17:33:44 +01:00
|
|
|
// Clear the drain event once we're done with it.
|
|
|
|
drainEvent = NULL;
|
|
|
|
}
|
2006-05-31 00:57:42 +02:00
|
|
|
}
|
|
|
|
|
2006-03-26 00:31:20 +01:00
|
|
|
Port *
|
|
|
|
Bus::findPort(Addr addr, int id)
|
|
|
|
{
|
|
|
|
/* An interval tree would be a better way to do this. --ali. */
|
|
|
|
int dest_id = -1;
|
2006-07-06 20:41:01 +02:00
|
|
|
AddrRangeIter iter;
|
2006-12-15 07:49:41 +01:00
|
|
|
range_map<Addr,int>::iterator i;
|
2006-03-26 00:31:20 +01:00
|
|
|
|
2006-12-15 07:49:41 +01:00
|
|
|
i = portMap.find(RangeSize(addr,1));
|
|
|
|
if (i != portMap.end())
|
|
|
|
dest_id = i->second;
|
2006-07-06 20:41:01 +02:00
|
|
|
|
|
|
|
// Check if this matches the default range
|
|
|
|
if (dest_id == -1) {
|
|
|
|
for (iter = defaultRange.begin(); iter != defaultRange.end(); iter++) {
|
|
|
|
if (*iter == addr) {
|
2006-08-28 18:55:13 +02:00
|
|
|
DPRINTF(Bus, " found addr %#llx on default\n", addr);
|
2006-07-06 20:41:01 +02:00
|
|
|
return defaultPort;
|
|
|
|
}
|
|
|
|
}
|
2006-11-02 21:20:37 +01:00
|
|
|
|
|
|
|
if (responderSet) {
|
|
|
|
panic("Unable to find destination for addr (user set default "
|
|
|
|
"responder): %#llx", addr);
|
|
|
|
} else {
|
|
|
|
DPRINTF(Bus, "Unable to find destination for addr: %#llx, will use "
|
|
|
|
"default port", addr);
|
|
|
|
|
|
|
|
return defaultPort;
|
|
|
|
}
|
2006-07-06 20:41:01 +02:00
|
|
|
}
|
|
|
|
|
2006-04-12 01:35:30 +02:00
|
|
|
|
2006-03-26 00:31:20 +01:00
|
|
|
// we shouldn't be sending this back to where it came from
|
2006-11-23 02:20:38 +01:00
|
|
|
// do the snoop access and then we should terminate
|
2006-11-14 01:56:34 +01:00
|
|
|
// the cyclical call.
|
|
|
|
if (dest_id == id)
|
|
|
|
return 0;
|
2006-03-26 00:31:20 +01:00
|
|
|
|
|
|
|
return interfaces[dest_id];
|
|
|
|
}
|
|
|
|
|
2006-08-22 22:08:18 +02:00
|
|
|
std::vector<int>
|
|
|
|
Bus::findSnoopPorts(Addr addr, int id)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
AddrRangeIter iter;
|
|
|
|
std::vector<int> ports;
|
|
|
|
|
|
|
|
while (i < portSnoopList.size())
|
|
|
|
{
|
|
|
|
if (portSnoopList[i].range == addr && portSnoopList[i].portId != id) {
|
|
|
|
//Careful to not overlap ranges
|
|
|
|
//or snoop will be called more than once on the port
|
2006-11-14 03:33:01 +01:00
|
|
|
|
|
|
|
//@todo Fix this hack because ranges are overlapping
|
|
|
|
//need to make sure we dont't create overlapping ranges
|
|
|
|
bool hack_overlap = false;
|
|
|
|
int size = ports.size();
|
|
|
|
for (int j=0; j < size; j++) {
|
|
|
|
if (ports[j] == portSnoopList[i].portId)
|
|
|
|
hack_overlap = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!hack_overlap)
|
|
|
|
ports.push_back(portSnoopList[i].portId);
|
2006-10-11 04:50:36 +02:00
|
|
|
// DPRINTF(Bus, " found snoop addr %#llx on device%d\n", addr,
|
|
|
|
// portSnoopList[i].portId);
|
2006-08-22 22:08:18 +02:00
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
return ports;
|
|
|
|
}
|
|
|
|
|
2006-10-12 00:28:33 +02:00
|
|
|
Tick
|
2006-11-14 07:38:42 +01:00
|
|
|
Bus::atomicSnoop(PacketPtr pkt, Port *responder)
|
2006-08-22 22:08:18 +02:00
|
|
|
{
|
|
|
|
std::vector<int> ports = findSnoopPorts(pkt->getAddr(), pkt->getSrc());
|
2006-10-12 00:28:33 +02:00
|
|
|
Tick response_time = 0;
|
2006-08-22 22:08:18 +02:00
|
|
|
|
|
|
|
while (!ports.empty())
|
|
|
|
{
|
2006-11-14 07:38:42 +01:00
|
|
|
if (interfaces[ports.back()] != responder) {
|
|
|
|
Tick response = interfaces[ports.back()]->sendAtomic(pkt);
|
|
|
|
if (response) {
|
|
|
|
assert(!response_time); //Multiple responders
|
|
|
|
response_time = response;
|
|
|
|
}
|
2006-10-12 00:28:33 +02:00
|
|
|
}
|
2006-08-22 22:08:18 +02:00
|
|
|
ports.pop_back();
|
|
|
|
}
|
2006-10-12 00:28:33 +02:00
|
|
|
return response_time;
|
2006-08-22 22:08:18 +02:00
|
|
|
}
|
|
|
|
|
2006-10-09 02:30:42 +02:00
|
|
|
void
|
2006-11-14 07:38:42 +01:00
|
|
|
Bus::functionalSnoop(PacketPtr pkt, Port *responder)
|
2006-10-09 02:30:42 +02:00
|
|
|
{
|
|
|
|
std::vector<int> ports = findSnoopPorts(pkt->getAddr(), pkt->getSrc());
|
|
|
|
|
2006-11-14 03:33:01 +01:00
|
|
|
//The packet may be changed by another bus on snoops, restore the id after each
|
|
|
|
int id = pkt->getSrc();
|
2006-10-12 21:02:25 +02:00
|
|
|
while (!ports.empty() && pkt->result != Packet::Success)
|
2006-10-09 02:30:42 +02:00
|
|
|
{
|
2006-11-14 07:38:42 +01:00
|
|
|
if (interfaces[ports.back()] != responder)
|
|
|
|
interfaces[ports.back()]->sendFunctional(pkt);
|
2006-10-09 02:30:42 +02:00
|
|
|
ports.pop_back();
|
2006-11-14 03:33:01 +01:00
|
|
|
pkt->setSrc(id);
|
2006-10-09 02:30:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-22 22:08:18 +02:00
|
|
|
bool
|
2006-11-14 07:12:52 +01:00
|
|
|
Bus::timingSnoop(PacketPtr pkt, Port* responder)
|
2006-08-22 22:08:18 +02:00
|
|
|
{
|
|
|
|
std::vector<int> ports = findSnoopPorts(pkt->getAddr(), pkt->getSrc());
|
|
|
|
bool success = true;
|
|
|
|
|
|
|
|
while (!ports.empty() && success)
|
|
|
|
{
|
2006-11-14 07:12:52 +01:00
|
|
|
if (interfaces[ports.back()] != responder) //Don't call if responder also, once will do
|
|
|
|
success = interfaces[ports.back()]->sendTiming(pkt);
|
2006-08-22 22:08:18 +02:00
|
|
|
ports.pop_back();
|
|
|
|
}
|
|
|
|
|
2006-10-09 00:48:03 +02:00
|
|
|
return success;
|
2006-08-22 22:08:18 +02:00
|
|
|
}
|
|
|
|
|
2006-10-09 00:48:03 +02:00
|
|
|
|
2006-05-26 20:17:33 +02:00
|
|
|
/** Function called by the port when the bus is receiving a Atomic
|
2006-03-26 00:31:20 +01:00
|
|
|
* transaction.*/
|
|
|
|
Tick
|
2006-10-20 09:10:12 +02:00
|
|
|
Bus::recvAtomic(PacketPtr pkt)
|
2006-03-26 00:31:20 +01:00
|
|
|
{
|
2006-05-26 20:17:33 +02:00
|
|
|
DPRINTF(Bus, "recvAtomic: packet src %d dest %d addr 0x%x cmd %s\n",
|
|
|
|
pkt->getSrc(), pkt->getDest(), pkt->getAddr(), pkt->cmdString());
|
|
|
|
assert(pkt->getDest() == Packet::Broadcast);
|
2006-11-14 07:12:52 +01:00
|
|
|
pkt->flags |= SNOOP_COMMIT;
|
2006-11-09 17:37:26 +01:00
|
|
|
|
|
|
|
// Assume one bus cycle in order to get through. This may have
|
|
|
|
// some clock skew issues yet again...
|
|
|
|
pkt->finishTime = curTick + clock;
|
2006-11-14 07:12:52 +01:00
|
|
|
|
2006-11-14 07:38:42 +01:00
|
|
|
Port *port = findPort(pkt->getAddr(), pkt->getSrc());
|
2006-11-14 23:15:05 +01:00
|
|
|
Tick snoopTime = atomicSnoop(pkt, port ? port : interfaces[pkt->getSrc()]);
|
2006-11-14 07:12:52 +01:00
|
|
|
|
2006-10-12 00:28:33 +02:00
|
|
|
if (snoopTime)
|
|
|
|
return snoopTime; //Snoop satisfies it
|
2006-11-14 23:15:05 +01:00
|
|
|
else if (port)
|
2006-11-14 07:38:42 +01:00
|
|
|
return port->sendAtomic(pkt);
|
2006-11-14 23:15:05 +01:00
|
|
|
else
|
|
|
|
return 0;
|
2006-03-26 00:31:20 +01:00
|
|
|
}
|
|
|
|
|
2006-05-26 20:17:33 +02:00
|
|
|
/** Function called by the port when the bus is receiving a Functional
|
2006-03-26 00:31:20 +01:00
|
|
|
* transaction.*/
|
|
|
|
void
|
2006-10-20 09:10:12 +02:00
|
|
|
Bus::recvFunctional(PacketPtr pkt)
|
2006-03-26 00:31:20 +01:00
|
|
|
{
|
2006-05-26 20:17:33 +02:00
|
|
|
DPRINTF(Bus, "recvFunctional: packet src %d dest %d addr 0x%x cmd %s\n",
|
|
|
|
pkt->getSrc(), pkt->getDest(), pkt->getAddr(), pkt->cmdString());
|
|
|
|
assert(pkt->getDest() == Packet::Broadcast);
|
2006-11-14 07:12:52 +01:00
|
|
|
pkt->flags |= SNOOP_COMMIT;
|
|
|
|
|
2006-11-14 07:38:42 +01:00
|
|
|
Port* port = findPort(pkt->getAddr(), pkt->getSrc());
|
|
|
|
functionalSnoop(pkt, port ? port : interfaces[pkt->getSrc()]);
|
2006-10-12 21:02:25 +02:00
|
|
|
|
|
|
|
// If the snooping found what we were looking for, we're done.
|
2006-11-14 07:38:42 +01:00
|
|
|
if (pkt->result != Packet::Success && port) {
|
|
|
|
port->sendFunctional(pkt);
|
2006-11-14 01:56:34 +01:00
|
|
|
}
|
2006-03-26 00:31:20 +01:00
|
|
|
}
|
|
|
|
|
2006-05-26 20:17:33 +02:00
|
|
|
/** Function called by the port when the bus is receiving a status change.*/
|
2006-03-26 00:31:20 +01:00
|
|
|
void
|
|
|
|
Bus::recvStatusChange(Port::Status status, int id)
|
|
|
|
{
|
2006-07-06 20:41:01 +02:00
|
|
|
AddrRangeList ranges;
|
|
|
|
AddrRangeList snoops;
|
|
|
|
int x;
|
|
|
|
AddrRangeIter iter;
|
|
|
|
|
2006-04-07 22:26:22 +02:00
|
|
|
assert(status == Port::RangeChange &&
|
2006-03-26 00:31:20 +01:00
|
|
|
"The other statuses need to be implemented.");
|
2006-04-07 22:26:22 +02:00
|
|
|
|
2006-05-26 20:24:46 +02:00
|
|
|
DPRINTF(BusAddrRanges, "received RangeChange from device id %d\n", id);
|
2006-05-26 20:17:33 +02:00
|
|
|
|
2006-07-06 20:41:01 +02:00
|
|
|
if (id == defaultId) {
|
|
|
|
defaultRange.clear();
|
2006-11-02 21:20:37 +01:00
|
|
|
// Only try to update these ranges if the user set a default responder.
|
|
|
|
if (responderSet) {
|
|
|
|
defaultPort->getPeerAddressRanges(ranges, snoops);
|
|
|
|
assert(snoops.size() == 0);
|
|
|
|
for(iter = ranges.begin(); iter != ranges.end(); iter++) {
|
|
|
|
defaultRange.push_back(*iter);
|
|
|
|
DPRINTF(BusAddrRanges, "Adding range %#llx - %#llx for default range\n",
|
|
|
|
iter->start, iter->end);
|
|
|
|
}
|
2006-07-06 20:41:01 +02:00
|
|
|
}
|
|
|
|
} else {
|
2006-04-20 23:14:30 +02:00
|
|
|
|
2006-10-12 02:54:06 +02:00
|
|
|
assert((id < interfaces.size() && id >= 0) || id == defaultId);
|
2006-07-06 20:41:01 +02:00
|
|
|
Port *port = interfaces[id];
|
2006-12-15 07:49:41 +01:00
|
|
|
range_map<Addr,int>::iterator portIter;
|
2006-08-22 22:08:18 +02:00
|
|
|
std::vector<DevMap>::iterator snoopIter;
|
2006-07-06 20:41:01 +02:00
|
|
|
|
|
|
|
// Clean out any previously existent ids
|
2006-12-15 07:49:41 +01:00
|
|
|
for (portIter = portMap.begin(); portIter != portMap.end(); ) {
|
|
|
|
if (portIter->second == id)
|
|
|
|
portMap.erase(portIter++);
|
2006-07-06 20:41:01 +02:00
|
|
|
else
|
|
|
|
portIter++;
|
|
|
|
}
|
2006-04-06 06:51:46 +02:00
|
|
|
|
2006-08-22 22:08:18 +02:00
|
|
|
for (snoopIter = portSnoopList.begin(); snoopIter != portSnoopList.end(); ) {
|
|
|
|
if (snoopIter->portId == id)
|
|
|
|
snoopIter = portSnoopList.erase(snoopIter);
|
|
|
|
else
|
|
|
|
snoopIter++;
|
|
|
|
}
|
|
|
|
|
2006-07-06 20:41:01 +02:00
|
|
|
port->getPeerAddressRanges(ranges, snoops);
|
2006-03-26 00:31:20 +01:00
|
|
|
|
2006-08-22 22:08:18 +02:00
|
|
|
for(iter = snoops.begin(); iter != snoops.end(); iter++) {
|
|
|
|
DevMap dm;
|
|
|
|
dm.portId = id;
|
|
|
|
dm.range = *iter;
|
|
|
|
|
2006-11-14 03:33:01 +01:00
|
|
|
//@todo, make sure we don't overlap ranges
|
2006-08-28 18:55:13 +02:00
|
|
|
DPRINTF(BusAddrRanges, "Adding snoop range %#llx - %#llx for id %d\n",
|
2006-08-22 22:08:18 +02:00
|
|
|
dm.range.start, dm.range.end, id);
|
|
|
|
portSnoopList.push_back(dm);
|
|
|
|
}
|
|
|
|
|
2006-07-06 20:41:01 +02:00
|
|
|
for(iter = ranges.begin(); iter != ranges.end(); iter++) {
|
2006-08-28 18:55:13 +02:00
|
|
|
DPRINTF(BusAddrRanges, "Adding range %#llx - %#llx for id %d\n",
|
2006-12-15 07:49:41 +01:00
|
|
|
iter->start, iter->end, id);
|
|
|
|
if (portMap.insert(*iter, id) == portMap.end())
|
|
|
|
panic("Two devices with same range\n");
|
|
|
|
|
2006-07-06 20:41:01 +02:00
|
|
|
}
|
2006-04-20 23:14:30 +02:00
|
|
|
}
|
2006-12-15 07:49:41 +01:00
|
|
|
DPRINTF(MMU, "port list has %d entries\n", portMap.size());
|
2006-04-28 21:37:48 +02:00
|
|
|
|
|
|
|
// tell all our peers that our address range has changed.
|
|
|
|
// Don't tell the device that caused this change, it already knows
|
|
|
|
for (x = 0; x < interfaces.size(); x++)
|
|
|
|
if (x != id)
|
|
|
|
interfaces[x]->sendStatusChange(Port::RangeChange);
|
2006-07-06 20:41:01 +02:00
|
|
|
|
|
|
|
if (id != defaultId && defaultPort)
|
|
|
|
defaultPort->sendStatusChange(Port::RangeChange);
|
2006-03-26 00:31:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-04-28 21:37:48 +02:00
|
|
|
Bus::addressRanges(AddrRangeList &resp, AddrRangeList &snoop, int id)
|
2006-03-26 00:31:20 +01:00
|
|
|
{
|
2006-12-15 07:49:41 +01:00
|
|
|
std::vector<DevMap>::iterator snoopIter;
|
|
|
|
range_map<Addr,int>::iterator portIter;
|
2006-07-06 20:41:01 +02:00
|
|
|
AddrRangeIter dflt_iter;
|
|
|
|
bool subset;
|
2006-04-28 21:37:48 +02:00
|
|
|
|
|
|
|
resp.clear();
|
|
|
|
snoop.clear();
|
|
|
|
|
2006-05-26 20:24:46 +02:00
|
|
|
DPRINTF(BusAddrRanges, "received address range request, returning:\n");
|
2006-07-06 20:41:01 +02:00
|
|
|
|
|
|
|
for (dflt_iter = defaultRange.begin(); dflt_iter != defaultRange.end();
|
|
|
|
dflt_iter++) {
|
|
|
|
resp.push_back(*dflt_iter);
|
2006-11-14 01:56:34 +01:00
|
|
|
DPRINTF(BusAddrRanges, " -- Dflt: %#llx : %#llx\n",dflt_iter->start,
|
2006-07-06 20:41:01 +02:00
|
|
|
dflt_iter->end);
|
|
|
|
}
|
2006-12-15 07:49:41 +01:00
|
|
|
for (portIter = portMap.begin(); portIter != portMap.end(); portIter++) {
|
2006-07-06 20:41:01 +02:00
|
|
|
subset = false;
|
|
|
|
for (dflt_iter = defaultRange.begin(); dflt_iter != defaultRange.end();
|
|
|
|
dflt_iter++) {
|
2006-12-15 07:49:41 +01:00
|
|
|
if ((portIter->first.start < dflt_iter->start &&
|
|
|
|
portIter->first.end >= dflt_iter->start) ||
|
|
|
|
(portIter->first.start < dflt_iter->end &&
|
|
|
|
portIter->first.end >= dflt_iter->end))
|
2006-07-06 20:41:01 +02:00
|
|
|
fatal("Devices can not set ranges that itersect the default set\
|
|
|
|
but are not a subset of the default set.\n");
|
2006-12-15 07:49:41 +01:00
|
|
|
if (portIter->first.start >= dflt_iter->start &&
|
|
|
|
portIter->first.end <= dflt_iter->end) {
|
2006-07-06 20:41:01 +02:00
|
|
|
subset = true;
|
2006-08-28 18:55:13 +02:00
|
|
|
DPRINTF(BusAddrRanges, " -- %#llx : %#llx is a SUBSET\n",
|
2006-12-15 07:49:41 +01:00
|
|
|
portIter->first.start, portIter->first.end);
|
2006-07-06 20:41:01 +02:00
|
|
|
}
|
|
|
|
}
|
2006-12-15 07:49:41 +01:00
|
|
|
if (portIter->second != id && !subset) {
|
|
|
|
resp.push_back(portIter->first);
|
2006-08-28 18:55:13 +02:00
|
|
|
DPRINTF(BusAddrRanges, " -- %#llx : %#llx\n",
|
2006-12-15 07:49:41 +01:00
|
|
|
portIter->first.start, portIter->first.end);
|
2006-11-14 01:56:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-15 07:49:41 +01:00
|
|
|
for (snoopIter = portSnoopList.begin();
|
|
|
|
snoopIter != portSnoopList.end(); snoopIter++)
|
2006-11-14 01:56:34 +01:00
|
|
|
{
|
2006-12-15 07:49:41 +01:00
|
|
|
if (snoopIter->portId != id) {
|
|
|
|
snoop.push_back(snoopIter->range);
|
2006-11-14 01:56:34 +01:00
|
|
|
DPRINTF(BusAddrRanges, " -- Snoop: %#llx : %#llx\n",
|
2006-12-15 07:49:41 +01:00
|
|
|
snoopIter->range.start, snoopIter->range.end);
|
2006-11-14 03:33:01 +01:00
|
|
|
//@todo We need to properly insert snoop ranges
|
|
|
|
//not overlapping the ranges (multiple)
|
2006-04-28 21:37:48 +02:00
|
|
|
}
|
|
|
|
}
|
2006-03-26 00:31:20 +01:00
|
|
|
}
|
|
|
|
|
2006-11-02 01:00:49 +01:00
|
|
|
unsigned int
|
|
|
|
Bus::drain(Event * de)
|
|
|
|
{
|
|
|
|
//We should check that we're not "doing" anything, and that noone is
|
|
|
|
//waiting. We might be idle but have someone waiting if the device we
|
|
|
|
//contacted for a retry didn't actually retry.
|
|
|
|
if (curTick >= tickNextIdle && retryList.size() == 0) {
|
2006-11-07 20:25:54 +01:00
|
|
|
return 0;
|
|
|
|
} else {
|
2006-11-02 01:00:49 +01:00
|
|
|
drainEvent = de;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-26 00:31:20 +01:00
|
|
|
BEGIN_DECLARE_SIM_OBJECT_PARAMS(Bus)
|
|
|
|
|
|
|
|
Param<int> bus_id;
|
2006-10-05 22:26:16 +02:00
|
|
|
Param<int> clock;
|
|
|
|
Param<int> width;
|
2006-11-02 21:20:37 +01:00
|
|
|
Param<bool> responder_set;
|
2006-03-26 00:31:20 +01:00
|
|
|
|
|
|
|
END_DECLARE_SIM_OBJECT_PARAMS(Bus)
|
|
|
|
|
|
|
|
BEGIN_INIT_SIM_OBJECT_PARAMS(Bus)
|
2006-10-05 22:26:16 +02:00
|
|
|
INIT_PARAM(bus_id, "a globally unique bus id"),
|
|
|
|
INIT_PARAM(clock, "bus clock speed"),
|
2006-11-02 21:20:37 +01:00
|
|
|
INIT_PARAM(width, "width of the bus (bits)"),
|
|
|
|
INIT_PARAM(responder_set, "Is a default responder set by the user")
|
2006-04-28 21:37:48 +02:00
|
|
|
END_INIT_SIM_OBJECT_PARAMS(Bus)
|
2006-03-26 00:31:20 +01:00
|
|
|
|
|
|
|
CREATE_SIM_OBJECT(Bus)
|
|
|
|
{
|
2006-11-02 21:20:37 +01:00
|
|
|
return new Bus(getInstanceName(), bus_id, clock, width, responder_set);
|
2006-03-26 00:31:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
REGISTER_SIM_OBJECT("Bus", Bus)
|