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>
|
2007-08-10 22:14:01 +02:00
|
|
|
#include <set>
|
2006-01-31 18:12:49 +01:00
|
|
|
#include <list>
|
|
|
|
|
|
|
|
#include "base/range.hh"
|
2007-03-09 00:57:15 +01:00
|
|
|
#include "base/hashmap.hh"
|
2006-12-15 07:49:41 +01:00
|
|
|
#include "base/range_map.hh"
|
2009-05-17 23:34:51 +02:00
|
|
|
#include "base/types.hh"
|
2006-01-31 18:12:49 +01:00
|
|
|
#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"
|
2007-08-30 21:16:59 +02:00
|
|
|
#include "params/Bus.hh"
|
2006-01-31 18:12:49 +01:00
|
|
|
|
|
|
|
class Bus : public MemObject
|
|
|
|
{
|
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; }
|
|
|
|
|
2007-02-07 06:53:05 +01:00
|
|
|
int getId() { return id; }
|
|
|
|
|
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,
|
2007-05-22 08:36:09 +02:00
|
|
|
bool &snoop)
|
2006-04-28 21:37:48 +02:00
|
|
|
{ bus->addressRanges(resp, snoop, id); }
|
2006-03-26 00:31:20 +01:00
|
|
|
|
2007-05-07 20:42:03 +02:00
|
|
|
// Ask the bus to ask everyone on the bus what their block size is and
|
|
|
|
// take the max of it. This might need to be changed a bit if we ever
|
|
|
|
// support multiple block sizes.
|
|
|
|
virtual int deviceBlockSize()
|
|
|
|
{ return bus->findBlockSize(id); }
|
2006-03-26 00:31:20 +01:00
|
|
|
|
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();
|
2008-02-06 22:32:40 +01:00
|
|
|
const char *description() const;
|
2006-10-08 20:08:58 +02:00
|
|
|
};
|
|
|
|
|
2007-05-22 08:36:09 +02:00
|
|
|
/** a globally unique id for this bus. */
|
|
|
|
int busId;
|
|
|
|
/** the clock speed for the bus */
|
|
|
|
int clock;
|
2008-02-26 08:20:08 +01:00
|
|
|
/** cycles of overhead per transaction */
|
|
|
|
int headerCycles;
|
2007-05-22 08:36:09 +02:00
|
|
|
/** the width of the bus in bytes */
|
|
|
|
int width;
|
|
|
|
/** the next tick at which the bus will be idle */
|
|
|
|
Tick tickNextIdle;
|
|
|
|
|
|
|
|
Event * drainEvent;
|
|
|
|
|
|
|
|
|
|
|
|
static const int defaultId = -3; //Make it unique from Broadcast
|
|
|
|
|
|
|
|
typedef range_map<Addr,int>::iterator PortIter;
|
|
|
|
range_map<Addr, int> portMap;
|
|
|
|
|
|
|
|
AddrRangeList defaultRange;
|
|
|
|
|
|
|
|
typedef std::vector<BusPort*>::iterator SnoopIter;
|
|
|
|
std::vector<BusPort*> snoopPorts;
|
|
|
|
|
|
|
|
/** Function called by the port when the bus is recieving a Timing
|
|
|
|
transaction.*/
|
|
|
|
bool recvTiming(PacketPtr pkt);
|
|
|
|
|
|
|
|
/** Function called by the port when the bus is recieving a Atomic
|
|
|
|
transaction.*/
|
|
|
|
Tick recvAtomic(PacketPtr pkt);
|
|
|
|
|
|
|
|
/** Function called by the port when the bus is recieving a Functional
|
|
|
|
transaction.*/
|
|
|
|
void recvFunctional(PacketPtr pkt);
|
|
|
|
|
|
|
|
/** Timing function called by port when it is once again able to process
|
|
|
|
* requests. */
|
|
|
|
void recvRetry(int id);
|
|
|
|
|
|
|
|
/** Function called by the port when the bus is recieving a status change.*/
|
|
|
|
void recvStatusChange(Port::Status status, int id);
|
|
|
|
|
|
|
|
/** Find which port connected to this bus (if any) should be given a packet
|
|
|
|
* with this address.
|
|
|
|
* @param addr Address to find port for.
|
2007-07-16 05:09:03 +02:00
|
|
|
* @return id of port that the packet should be sent out of.
|
2007-05-22 08:36:09 +02:00
|
|
|
*/
|
2007-07-16 05:09:03 +02:00
|
|
|
int findPort(Addr addr);
|
2007-05-22 08:36:09 +02:00
|
|
|
|
2007-08-04 22:05:55 +02:00
|
|
|
// Cache for the findPort function storing recently used ports from portMap
|
|
|
|
struct PortCache {
|
|
|
|
bool valid;
|
|
|
|
int id;
|
|
|
|
Addr start;
|
|
|
|
Addr end;
|
|
|
|
};
|
|
|
|
|
|
|
|
PortCache portCache[3];
|
|
|
|
|
|
|
|
// Checks the cache and returns the id of the port that has the requested
|
|
|
|
// address within its range
|
|
|
|
inline int checkPortCache(Addr addr) {
|
2007-08-08 20:54:02 +02:00
|
|
|
if (portCache[0].valid && addr >= portCache[0].start &&
|
|
|
|
addr < portCache[0].end) {
|
|
|
|
return portCache[0].id;
|
|
|
|
}
|
|
|
|
if (portCache[1].valid && addr >= portCache[1].start &&
|
|
|
|
addr < portCache[1].end) {
|
|
|
|
return portCache[1].id;
|
|
|
|
}
|
|
|
|
if (portCache[2].valid && addr >= portCache[2].start &&
|
|
|
|
addr < portCache[2].end) {
|
|
|
|
return portCache[2].id;
|
2007-08-04 22:05:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clears the earliest entry of the cache and inserts a new port entry
|
|
|
|
inline void updatePortCache(short id, Addr start, Addr end) {
|
|
|
|
portCache[2].valid = portCache[1].valid;
|
|
|
|
portCache[2].id = portCache[1].id;
|
|
|
|
portCache[2].start = portCache[1].start;
|
|
|
|
portCache[2].end = portCache[1].end;
|
|
|
|
|
|
|
|
portCache[1].valid = portCache[0].valid;
|
|
|
|
portCache[1].id = portCache[0].id;
|
|
|
|
portCache[1].start = portCache[0].start;
|
|
|
|
portCache[1].end = portCache[0].end;
|
|
|
|
|
|
|
|
portCache[0].valid = true;
|
|
|
|
portCache[0].id = id;
|
|
|
|
portCache[0].start = start;
|
|
|
|
portCache[0].end = end;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clears the cache. Needs to be called in constructor.
|
|
|
|
inline void clearPortCache() {
|
|
|
|
portCache[2].valid = false;
|
|
|
|
portCache[1].valid = false;
|
|
|
|
portCache[0].valid = false;
|
|
|
|
}
|
|
|
|
|
2007-05-22 08:36:09 +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, bool &snoop, int id);
|
|
|
|
|
2008-03-17 08:07:38 +01:00
|
|
|
/** Calculate the timing parameters for the packet. Updates the
|
|
|
|
* firstWordTime and finishTime fields of the packet object.
|
|
|
|
* Returns the tick at which the packet header is completed (which
|
|
|
|
* will be all that is sent if the target rejects the packet).
|
2008-02-26 08:20:08 +01:00
|
|
|
*/
|
2008-03-17 08:07:38 +01:00
|
|
|
Tick calcPacketTiming(PacketPtr pkt);
|
2008-02-26 08:20:08 +01:00
|
|
|
|
|
|
|
/** Occupy the bus until until */
|
|
|
|
void occupyBus(Tick until);
|
2007-05-22 08:36:09 +02:00
|
|
|
|
|
|
|
/** Ask everyone on the bus what their size is
|
|
|
|
* @param id id of the busport that made the request
|
|
|
|
* @return the max of all the sizes
|
|
|
|
*/
|
|
|
|
int findBlockSize(int id);
|
|
|
|
|
2006-10-08 20:08:58 +02:00
|
|
|
BusFreeEvent busIdle;
|
|
|
|
|
2006-10-10 23:24:03 +02:00
|
|
|
bool inRetry;
|
2007-08-10 22:14:01 +02:00
|
|
|
std::set<int> inRecvStatusChange;
|
2006-10-08 20:08:58 +02:00
|
|
|
|
2007-03-09 00:57:15 +01:00
|
|
|
/** max number of bus ids we've handed out so far */
|
|
|
|
short maxId;
|
|
|
|
|
2006-01-31 18:12:49 +01:00
|
|
|
/** An array of pointers to the peer port interfaces
|
|
|
|
connected to this bus.*/
|
2007-03-09 00:57:15 +01:00
|
|
|
m5::hash_map<short,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
|
|
|
|
2007-04-04 19:56:38 +02:00
|
|
|
BusPort *funcPort;
|
|
|
|
int funcPortId;
|
|
|
|
|
2006-11-02 21:20:37 +01:00
|
|
|
/** Has the user specified their own default responder? */
|
|
|
|
bool responderSet;
|
|
|
|
|
2007-05-07 20:42:03 +02:00
|
|
|
int defaultBlockSize;
|
|
|
|
int cachedBlockSize;
|
|
|
|
bool cachedBlockSizeValid;
|
|
|
|
|
2007-08-04 22:05:55 +02:00
|
|
|
// Cache for the peer port interfaces
|
|
|
|
struct BusCache {
|
|
|
|
bool valid;
|
|
|
|
short id;
|
|
|
|
BusPort *port;
|
|
|
|
};
|
|
|
|
|
|
|
|
BusCache busCache[3];
|
|
|
|
|
|
|
|
// Checks the peer port interfaces cache for the port id and returns
|
|
|
|
// a pointer to the matching port
|
|
|
|
inline BusPort* checkBusCache(short id) {
|
2007-08-08 20:54:02 +02:00
|
|
|
if (busCache[0].valid && id == busCache[0].id) {
|
|
|
|
return busCache[0].port;
|
|
|
|
}
|
|
|
|
if (busCache[1].valid && id == busCache[1].id) {
|
|
|
|
return busCache[1].port;
|
|
|
|
}
|
|
|
|
if (busCache[2].valid && id == busCache[2].id) {
|
|
|
|
return busCache[2].port;
|
2007-08-04 22:05:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Replaces the earliest entry in the cache with a new entry
|
|
|
|
inline void updateBusCache(short id, BusPort *port) {
|
|
|
|
busCache[2].valid = busCache[1].valid;
|
|
|
|
busCache[2].id = busCache[1].id;
|
|
|
|
busCache[2].port = busCache[1].port;
|
|
|
|
|
|
|
|
busCache[1].valid = busCache[0].valid;
|
|
|
|
busCache[1].id = busCache[0].id;
|
|
|
|
busCache[1].port = busCache[0].port;
|
|
|
|
|
|
|
|
busCache[0].valid = true;
|
|
|
|
busCache[0].id = id;
|
|
|
|
busCache[0].port = port;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Invalidates the cache. Needs to be called in constructor.
|
|
|
|
inline void clearBusCache() {
|
|
|
|
busCache[2].valid = false;
|
|
|
|
busCache[1].valid = false;
|
|
|
|
busCache[0].valid = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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);
|
2008-06-28 19:19:38 +02:00
|
|
|
virtual void deletePortRefs(Port *p);
|
2006-04-28 21:37:48 +02:00
|
|
|
|
|
|
|
virtual void init();
|
2007-06-10 08:01:47 +02:00
|
|
|
virtual void startup();
|
2006-04-28 21:37:48 +02:00
|
|
|
|
2006-11-02 01:00:49 +01:00
|
|
|
unsigned int drain(Event *de);
|
|
|
|
|
2007-08-30 21:16:59 +02:00
|
|
|
Bus(const BusParams *p)
|
2008-02-26 08:20:08 +01:00
|
|
|
: MemObject(p), busId(p->bus_id), clock(p->clock),
|
|
|
|
headerCycles(p->header_cycles), width(p->width), tickNextIdle(0),
|
|
|
|
drainEvent(NULL), busIdle(this), inRetry(false), maxId(0),
|
|
|
|
defaultPort(NULL), funcPort(NULL), funcPortId(-4),
|
2007-08-30 21:16:59 +02:00
|
|
|
responderSet(p->responder_set), defaultBlockSize(p->block_size),
|
2007-05-07 20:42:03 +02:00
|
|
|
cachedBlockSize(0), cachedBlockSizeValid(false)
|
2006-10-05 22:26:16 +02:00
|
|
|
{
|
2008-02-26 08:20:08 +01:00
|
|
|
//width, clock period, and header cycles 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");
|
2008-02-26 08:20:08 +01:00
|
|
|
if (headerCycles <= 0)
|
|
|
|
fatal("Number of header cycles must be positive\n");
|
2007-08-04 22:05:55 +02:00
|
|
|
clearBusCache();
|
|
|
|
clearPortCache();
|
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__
|