2006-01-31 18:12:49 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2002-2005 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: Ron Dreslinski
|
2006-06-18 00:40:40 +02:00
|
|
|
* Ali Saidi
|
2006-01-31 18:12:49 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2006-08-15 01:25:07 +02:00
|
|
|
* @file
|
|
|
|
* Declaration of a bus object.
|
2006-01-31 18:12:49 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __MEM_BUS_HH__
|
|
|
|
#define __MEM_BUS_HH__
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <list>
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
|
|
|
#include "base/range.hh"
|
|
|
|
#include "mem/mem_object.hh"
|
|
|
|
#include "mem/packet.hh"
|
2006-01-31 20:15:33 +01:00
|
|
|
#include "mem/port.hh"
|
|
|
|
#include "mem/request.hh"
|
2006-10-08 20:08:58 +02:00
|
|
|
#include "sim/eventq.hh"
|
2006-01-31 18:12:49 +01:00
|
|
|
|
|
|
|
class Bus : public MemObject
|
|
|
|
{
|
2006-04-28 21:37:48 +02:00
|
|
|
/** a globally unique id for this bus. */
|
|
|
|
int busId;
|
2006-10-05 22:26:16 +02:00
|
|
|
/** the clock speed for the bus */
|
|
|
|
int clock;
|
2006-10-09 00:44:49 +02:00
|
|
|
/** the width of the bus in bytes */
|
2006-10-05 22:26:16 +02:00
|
|
|
int width;
|
2006-10-08 20:08:58 +02:00
|
|
|
/** the next tick at which the bus will be idle */
|
|
|
|
Tick tickNextIdle;
|
2006-04-28 21:37:48 +02:00
|
|
|
|
2006-11-02 01:00:49 +01:00
|
|
|
Event * drainEvent;
|
|
|
|
|
2006-10-12 02:54:06 +02:00
|
|
|
static const int defaultId = -3; //Make it unique from Broadcast
|
2006-07-06 20:41:01 +02:00
|
|
|
|
2006-03-26 00:31:20 +01:00
|
|
|
struct DevMap {
|
|
|
|
int portId;
|
|
|
|
Range<Addr> range;
|
|
|
|
};
|
|
|
|
std::vector<DevMap> portList;
|
2006-07-06 20:41:01 +02:00
|
|
|
AddrRangeList defaultRange;
|
2006-08-22 22:08:18 +02:00
|
|
|
std::vector<DevMap> portSnoopList;
|
|
|
|
|
2006-01-31 18:12:49 +01:00
|
|
|
/** Function called by the port when the bus is recieving a Timing
|
2006-07-06 20:41:01 +02:00
|
|
|
transaction.*/
|
2006-10-20 09:10:12 +02:00
|
|
|
bool recvTiming(PacketPtr pkt);
|
2006-01-31 18:12:49 +01:00
|
|
|
|
|
|
|
/** Function called by the port when the bus is recieving a Atomic
|
2006-07-06 20:41:01 +02:00
|
|
|
transaction.*/
|
2006-10-20 09:10:12 +02:00
|
|
|
Tick recvAtomic(PacketPtr pkt);
|
2006-01-31 18:12:49 +01:00
|
|
|
|
|
|
|
/** Function called by the port when the bus is recieving a Functional
|
|
|
|
transaction.*/
|
2006-10-20 09:10:12 +02:00
|
|
|
void recvFunctional(PacketPtr pkt);
|
2006-01-31 18:12:49 +01:00
|
|
|
|
2006-05-31 00:57:42 +02:00
|
|
|
/** Timing function called by port when it is once again able to process
|
|
|
|
* requests. */
|
|
|
|
void recvRetry(int id);
|
|
|
|
|
2006-01-31 18:12:49 +01:00
|
|
|
/** Function called by the port when the bus is recieving a status change.*/
|
|
|
|
void recvStatusChange(Port::Status status, int id);
|
|
|
|
|
2006-03-26 00:31:20 +01:00
|
|
|
/** Find which port connected to this bus (if any) should be given a packet
|
|
|
|
* with this address.
|
|
|
|
* @param addr Address to find port for.
|
|
|
|
* @param id Id of the port this packet was received from (to prevent
|
|
|
|
* loops)
|
|
|
|
* @return pointer to port that the packet should be sent out of.
|
|
|
|
*/
|
2006-05-16 23:36:50 +02:00
|
|
|
Port *findPort(Addr addr, int id);
|
2006-03-26 00:31:20 +01:00
|
|
|
|
2006-08-22 22:08:18 +02:00
|
|
|
/** Find all ports with a matching snoop range, except src port. Keep in mind
|
|
|
|
* that the ranges shouldn't overlap or you will get a double snoop to the same
|
|
|
|
* interface.and the cache will assert out.
|
|
|
|
* @param addr Address to find snoop prts for.
|
|
|
|
* @param id Id of the src port of the request to avoid calling snoop on src
|
|
|
|
* @return vector of IDs to snoop on
|
|
|
|
*/
|
|
|
|
std::vector<int> findSnoopPorts(Addr addr, int id);
|
|
|
|
|
|
|
|
/** Snoop all relevant ports atomicly. */
|
2006-10-20 09:10:12 +02:00
|
|
|
Tick atomicSnoop(PacketPtr pkt);
|
2006-08-22 22:08:18 +02:00
|
|
|
|
2006-10-09 02:30:42 +02:00
|
|
|
/** Snoop all relevant ports functionally. */
|
2006-10-20 09:10:12 +02:00
|
|
|
void functionalSnoop(PacketPtr pkt);
|
2006-10-09 02:30:42 +02:00
|
|
|
|
2006-10-09 00:48:03 +02:00
|
|
|
/** Call snoop on caches, be sure to set SNOOP_COMMIT bit if you want
|
|
|
|
* the snoop to happen
|
2006-08-22 22:08:18 +02:00
|
|
|
* @return True if succeds.
|
|
|
|
*/
|
2006-11-14 07:12:52 +01:00
|
|
|
bool timingSnoop(PacketPtr pkt, Port *responder);
|
2006-08-22 22:08:18 +02:00
|
|
|
|
2006-04-28 21:37:48 +02:00
|
|
|
/** Process address range request.
|
|
|
|
* @param resp addresses that we can respond to
|
|
|
|
* @param snoop addresses that we would like to snoop
|
|
|
|
* @param id ide of the busport that made the request.
|
|
|
|
*/
|
|
|
|
void addressRanges(AddrRangeList &resp, AddrRangeList &snoop, int id);
|
|
|
|
|
2006-10-11 05:28:33 +02:00
|
|
|
/** Occupy the bus with transmitting the packet pkt */
|
|
|
|
void occupyBus(PacketPtr pkt);
|
2006-04-28 21:37:48 +02:00
|
|
|
|
2006-08-15 01:25:07 +02:00
|
|
|
/** Declaration of the buses port type, one will be instantiated for each
|
2006-01-31 18:12:49 +01:00
|
|
|
of the interfaces connecting to the bus. */
|
|
|
|
class BusPort : public Port
|
|
|
|
{
|
2006-10-11 04:10:08 +02:00
|
|
|
bool _onRetryList;
|
|
|
|
|
2006-01-31 18:12:49 +01:00
|
|
|
/** A pointer to the bus to which this port belongs. */
|
|
|
|
Bus *bus;
|
|
|
|
|
|
|
|
/** A id to keep track of the intercafe ID this port is connected to. */
|
|
|
|
int id;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/** Constructor for the BusPort.*/
|
2006-05-26 19:48:35 +02:00
|
|
|
BusPort(const std::string &_name, Bus *_bus, int _id)
|
2006-10-31 19:59:30 +01:00
|
|
|
: Port(_name, _bus), _onRetryList(false), bus(_bus), id(_id)
|
2006-01-31 18:12:49 +01:00
|
|
|
{ }
|
|
|
|
|
2006-10-11 04:10:08 +02:00
|
|
|
bool onRetryList()
|
|
|
|
{ return _onRetryList; }
|
|
|
|
|
|
|
|
void onRetryList(bool newVal)
|
|
|
|
{ _onRetryList = newVal; }
|
|
|
|
|
2006-01-31 18:12:49 +01:00
|
|
|
protected:
|
|
|
|
|
|
|
|
/** When reciving a timing request from the peer port (at id),
|
|
|
|
pass it to the bus. */
|
2006-10-20 09:10:12 +02:00
|
|
|
virtual bool recvTiming(PacketPtr pkt)
|
2006-05-26 20:17:33 +02:00
|
|
|
{ pkt->setSrc(id); return bus->recvTiming(pkt); }
|
2006-01-31 18:12:49 +01:00
|
|
|
|
|
|
|
/** When reciving a Atomic requestfrom the peer port (at id),
|
|
|
|
pass it to the bus. */
|
2006-10-20 09:10:12 +02:00
|
|
|
virtual Tick recvAtomic(PacketPtr pkt)
|
2006-05-26 20:17:33 +02:00
|
|
|
{ pkt->setSrc(id); return bus->recvAtomic(pkt); }
|
2006-01-31 18:12:49 +01:00
|
|
|
|
|
|
|
/** When reciving a Functional requestfrom the peer port (at id),
|
|
|
|
pass it to the bus. */
|
2006-10-20 09:10:12 +02:00
|
|
|
virtual void recvFunctional(PacketPtr pkt)
|
2006-05-26 20:17:33 +02:00
|
|
|
{ pkt->setSrc(id); bus->recvFunctional(pkt); }
|
2006-01-31 18:12:49 +01:00
|
|
|
|
|
|
|
/** When reciving a status changefrom the peer port (at id),
|
|
|
|
pass it to the bus. */
|
|
|
|
virtual void recvStatusChange(Status status)
|
|
|
|
{ bus->recvStatusChange(status, id); }
|
|
|
|
|
2006-05-31 00:57:42 +02:00
|
|
|
/** When reciving a retry from the peer port (at id),
|
|
|
|
pass it to the bus. */
|
|
|
|
virtual void recvRetry()
|
|
|
|
{ bus->recvRetry(id); }
|
|
|
|
|
2006-01-31 18:12:49 +01:00
|
|
|
// This should return all the 'owned' addresses that are
|
|
|
|
// downstream from this bus, yes? That is, the union of all
|
|
|
|
// the 'owned' address ranges of all the other interfaces on
|
|
|
|
// this bus...
|
2006-05-16 23:36:50 +02:00
|
|
|
virtual void getDeviceAddressRanges(AddrRangeList &resp,
|
|
|
|
AddrRangeList &snoop)
|
2006-04-28 21:37:48 +02:00
|
|
|
{ bus->addressRanges(resp, snoop, id); }
|
2006-03-26 00:31:20 +01:00
|
|
|
|
|
|
|
// Hack to make translating port work without changes
|
|
|
|
virtual int deviceBlockSize() { return 32; }
|
|
|
|
|
2006-01-31 18:12:49 +01:00
|
|
|
};
|
|
|
|
|
2006-10-08 20:08:58 +02:00
|
|
|
class BusFreeEvent : public Event
|
|
|
|
{
|
|
|
|
Bus * bus;
|
|
|
|
|
|
|
|
public:
|
|
|
|
BusFreeEvent(Bus * _bus);
|
|
|
|
void process();
|
|
|
|
const char *description();
|
|
|
|
};
|
|
|
|
|
|
|
|
BusFreeEvent busIdle;
|
|
|
|
|
2006-10-10 23:24:03 +02:00
|
|
|
bool inRetry;
|
2006-10-08 20:08:58 +02:00
|
|
|
|
2006-01-31 18:12:49 +01:00
|
|
|
/** An array of pointers to the peer port interfaces
|
|
|
|
connected to this bus.*/
|
2006-10-11 04:10:08 +02:00
|
|
|
std::vector<BusPort*> interfaces;
|
2006-01-31 18:12:49 +01:00
|
|
|
|
2006-05-31 00:57:42 +02:00
|
|
|
/** An array of pointers to ports that retry should be called on because the
|
|
|
|
* original send failed for whatever reason.*/
|
2006-10-11 04:10:08 +02:00
|
|
|
std::list<BusPort*> retryList;
|
2006-05-31 00:57:42 +02:00
|
|
|
|
2006-10-11 04:10:08 +02:00
|
|
|
void addToRetryList(BusPort * port)
|
2006-10-08 20:08:58 +02:00
|
|
|
{
|
2006-10-10 23:24:03 +02:00
|
|
|
if (!inRetry) {
|
2006-10-08 20:08:58 +02:00
|
|
|
// The device wasn't retrying a packet, or wasn't at an appropriate
|
|
|
|
// time.
|
2006-10-11 04:10:08 +02:00
|
|
|
assert(!port->onRetryList());
|
|
|
|
port->onRetryList(true);
|
2006-10-08 20:08:58 +02:00
|
|
|
retryList.push_back(port);
|
|
|
|
} else {
|
2006-10-12 01:25:48 +02:00
|
|
|
if (port->onRetryList()) {
|
|
|
|
// The device was retrying a packet. It didn't work, so we'll leave
|
|
|
|
// it at the head of the retry list.
|
|
|
|
assert(port == retryList.front());
|
|
|
|
inRetry = false;
|
|
|
|
}
|
|
|
|
else {
|
2006-10-12 01:47:11 +02:00
|
|
|
port->onRetryList(true);
|
2006-10-12 01:25:48 +02:00
|
|
|
retryList.push_back(port);
|
|
|
|
}
|
2006-10-08 20:08:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-06 20:41:01 +02:00
|
|
|
/** Port that handles requests that don't match any of the interfaces.*/
|
2006-10-12 02:54:06 +02:00
|
|
|
BusPort *defaultPort;
|
2006-07-06 20:41:01 +02:00
|
|
|
|
2006-11-02 21:20:37 +01:00
|
|
|
/** Has the user specified their own default responder? */
|
|
|
|
bool responderSet;
|
|
|
|
|
2006-01-31 18:12:49 +01:00
|
|
|
public:
|
|
|
|
|
|
|
|
/** A function used to return the port associated with this bus object. */
|
2006-06-14 05:19:28 +02:00
|
|
|
virtual Port *getPort(const std::string &if_name, int idx = -1);
|
2006-04-28 21:37:48 +02:00
|
|
|
|
|
|
|
virtual void init();
|
|
|
|
|
2006-11-02 01:00:49 +01:00
|
|
|
unsigned int drain(Event *de);
|
|
|
|
|
2006-11-02 21:20:37 +01:00
|
|
|
Bus(const std::string &n, int bus_id, int _clock, int _width,
|
|
|
|
bool responder_set)
|
2006-10-05 22:26:16 +02:00
|
|
|
: MemObject(n), busId(bus_id), clock(_clock), width(_width),
|
2006-11-07 20:25:54 +01:00
|
|
|
tickNextIdle(0), drainEvent(NULL), busIdle(this), inRetry(false),
|
|
|
|
defaultPort(NULL), responderSet(responder_set)
|
2006-10-05 22:26:16 +02:00
|
|
|
{
|
2006-10-08 20:08:58 +02:00
|
|
|
//Both the width and clock period must be positive
|
2006-10-10 23:24:03 +02:00
|
|
|
if (width <= 0)
|
|
|
|
fatal("Bus width must be positive\n");
|
|
|
|
if (clock <= 0)
|
|
|
|
fatal("Bus clock period must be positive\n");
|
2006-10-05 22:26:16 +02:00
|
|
|
}
|
2006-03-26 00:31:20 +01:00
|
|
|
|
2006-01-31 18:12:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //__MEM_BUS_HH__
|