2004-02-04 21:03:50 +01:00
|
|
|
/*
|
2005-06-05 11:16:00 +02:00
|
|
|
* Copyright (c) 2004-2005 The Regents of The University of Michigan
|
2004-02-04 21:03:50 +01:00
|
|
|
* 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
|
|
|
|
* Andrew Schultz
|
|
|
|
* Miguel Serrano
|
2004-02-04 21:03:50 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* @file
|
|
|
|
* A single PCI device configuration space entry.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "base/inifile.hh"
|
2006-08-30 18:57:46 +02:00
|
|
|
#include "base/intmath.hh" // for isPowerOf2(
|
2004-02-04 21:03:50 +01:00
|
|
|
#include "base/misc.hh"
|
|
|
|
#include "base/str.hh" // for to_number
|
|
|
|
#include "base/trace.hh"
|
|
|
|
#include "dev/pciconfigall.hh"
|
2006-04-20 23:14:30 +02:00
|
|
|
#include "dev/pcidev.hh"
|
2006-11-07 01:45:00 +01:00
|
|
|
#include "dev/alpha/tsunamireg.h"
|
2006-04-20 23:14:30 +02:00
|
|
|
#include "mem/packet.hh"
|
2006-10-20 08:38:45 +02:00
|
|
|
#include "mem/packet_access.hh"
|
2006-04-20 23:14:30 +02:00
|
|
|
#include "sim/byteswap.hh"
|
2007-03-06 20:13:43 +01:00
|
|
|
#include "sim/core.hh"
|
2004-02-04 21:03:50 +01:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
2006-07-06 20:41:01 +02:00
|
|
|
PciDev::PciConfigPort::PciConfigPort(PciDev *dev, int busid, int devid,
|
|
|
|
int funcid, Platform *p)
|
2006-08-31 01:24:26 +02:00
|
|
|
: SimpleTimingPort(dev->name() + "-pciconf"), device(dev), platform(p),
|
|
|
|
busId(busid), deviceId(devid), functionId(funcid)
|
2006-04-20 23:14:30 +02:00
|
|
|
{
|
2006-07-06 20:41:01 +02:00
|
|
|
configAddr = platform->calcConfigAddr(busId, deviceId, functionId);
|
|
|
|
}
|
2005-11-21 06:38:53 +01:00
|
|
|
|
|
|
|
|
2006-07-06 20:41:01 +02:00
|
|
|
Tick
|
2006-10-20 09:10:12 +02:00
|
|
|
PciDev::PciConfigPort::recvAtomic(PacketPtr pkt)
|
2006-07-06 20:41:01 +02:00
|
|
|
{
|
2006-08-30 18:57:46 +02:00
|
|
|
assert(pkt->getAddr() >= configAddr &&
|
|
|
|
pkt->getAddr() < configAddr + PCI_CONFIG_SIZE);
|
2006-08-31 01:24:26 +02:00
|
|
|
return pkt->isRead() ? device->readConfig(pkt) : device->writeConfig(pkt);
|
2006-04-20 23:14:30 +02:00
|
|
|
}
|
2005-11-21 06:38:53 +01:00
|
|
|
|
2006-04-20 23:14:30 +02:00
|
|
|
void
|
2006-08-28 19:28:31 +02:00
|
|
|
PciDev::PciConfigPort::getDeviceAddressRanges(AddrRangeList &resp,
|
2007-05-22 08:36:09 +02:00
|
|
|
bool &snoop)
|
2006-04-20 23:14:30 +02:00
|
|
|
{
|
2007-05-22 08:36:09 +02:00
|
|
|
snoop = false;;
|
2006-07-06 20:41:01 +02:00
|
|
|
resp.push_back(RangeSize(configAddr, PCI_CONFIG_SIZE+1));
|
|
|
|
}
|
2005-11-21 06:38:53 +01:00
|
|
|
|
|
|
|
|
2007-08-16 22:49:02 +02:00
|
|
|
PciDev::PciDev(const Params *p)
|
2007-08-16 22:49:05 +02:00
|
|
|
: DmaDevice(p), plat(p->platform), pioDelay(p->pio_latency),
|
|
|
|
configDelay(p->config_latency), configPort(NULL)
|
2006-04-20 23:14:30 +02:00
|
|
|
{
|
2007-08-16 22:49:05 +02:00
|
|
|
config.vendor = htole(p->VendorID);
|
|
|
|
config.device = htole(p->DeviceID);
|
|
|
|
config.command = htole(p->Command);
|
|
|
|
config.status = htole(p->Status);
|
|
|
|
config.revision = htole(p->Revision);
|
|
|
|
config.progIF = htole(p->ProgIF);
|
|
|
|
config.subClassCode = htole(p->SubClassCode);
|
|
|
|
config.classCode = htole(p->ClassCode);
|
|
|
|
config.cacheLineSize = htole(p->CacheLineSize);
|
|
|
|
config.latencyTimer = htole(p->LatencyTimer);
|
|
|
|
config.headerType = htole(p->HeaderType);
|
|
|
|
config.bist = htole(p->BIST);
|
|
|
|
|
|
|
|
config.baseAddr[0] = htole(p->BAR0);
|
|
|
|
config.baseAddr[1] = htole(p->BAR1);
|
|
|
|
config.baseAddr[2] = htole(p->BAR2);
|
|
|
|
config.baseAddr[3] = htole(p->BAR3);
|
|
|
|
config.baseAddr[4] = htole(p->BAR4);
|
|
|
|
config.baseAddr[5] = htole(p->BAR5);
|
|
|
|
config.cardbusCIS = htole(p->CardbusCIS);
|
|
|
|
config.subsystemVendorID = htole(p->SubsystemVendorID);
|
|
|
|
config.subsystemID = htole(p->SubsystemID);
|
|
|
|
config.expansionROM = htole(p->ExpansionROM);
|
|
|
|
config.reserved0 = 0;
|
|
|
|
config.reserved1 = 0;
|
|
|
|
config.interruptLine = htole(p->InterruptLine);
|
|
|
|
config.interruptPin = htole(p->InterruptPin);
|
|
|
|
config.minimumGrant = htole(p->MinimumGrant);
|
|
|
|
config.maximumLatency = htole(p->MaximumLatency);
|
|
|
|
|
|
|
|
BARSize[0] = p->BAR0Size;
|
|
|
|
BARSize[1] = p->BAR1Size;
|
|
|
|
BARSize[2] = p->BAR2Size;
|
|
|
|
BARSize[3] = p->BAR3Size;
|
|
|
|
BARSize[4] = p->BAR4Size;
|
|
|
|
BARSize[5] = p->BAR5Size;
|
|
|
|
|
|
|
|
for (int i = 0; i < 6; ++i) {
|
|
|
|
uint32_t barsize = BARSize[i];
|
|
|
|
if (barsize != 0 && !isPowerOf2(barsize)) {
|
|
|
|
fatal("BAR %d size %d is not a power of 2\n", i, BARSize[i]);
|
|
|
|
}
|
|
|
|
}
|
2005-11-21 06:38:53 +01:00
|
|
|
|
2006-08-28 19:34:15 +02:00
|
|
|
memset(BARAddrs, 0, sizeof(BARAddrs));
|
|
|
|
|
2007-07-24 06:51:38 +02:00
|
|
|
plat->registerPciDevice(0, p->pci_dev, p->pci_func,
|
2007-08-16 22:49:05 +02:00
|
|
|
letoh(config.interruptLine));
|
2006-04-20 23:14:30 +02:00
|
|
|
}
|
2005-11-21 06:38:53 +01:00
|
|
|
|
2004-02-04 21:03:50 +01:00
|
|
|
void
|
2006-07-06 20:41:01 +02:00
|
|
|
PciDev::init()
|
2004-02-04 21:03:50 +01:00
|
|
|
{
|
2006-07-06 20:41:01 +02:00
|
|
|
if (!configPort)
|
|
|
|
panic("pci config port not connected to anything!");
|
|
|
|
configPort->sendStatusChange(Port::RangeChange);
|
|
|
|
PioDevice::init();
|
|
|
|
}
|
|
|
|
|
2006-07-13 02:22:07 +02:00
|
|
|
unsigned int
|
|
|
|
PciDev::drain(Event *de)
|
|
|
|
{
|
|
|
|
unsigned int count;
|
|
|
|
count = pioPort->drain(de) + dmaPort->drain(de) + configPort->drain(de);
|
|
|
|
if (count)
|
|
|
|
changeState(Draining);
|
|
|
|
else
|
|
|
|
changeState(Drained);
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2006-07-06 20:41:01 +02:00
|
|
|
Tick
|
2006-10-20 09:10:12 +02:00
|
|
|
PciDev::readConfig(PacketPtr pkt)
|
2006-07-06 20:41:01 +02:00
|
|
|
{
|
|
|
|
int offset = pkt->getAddr() & PCI_CONFIG_SIZE;
|
2004-11-13 23:05:13 +01:00
|
|
|
if (offset >= PCI_DEVICE_SPECIFIC)
|
|
|
|
panic("Device specific PCI config space not implemented!\n");
|
|
|
|
|
2006-07-06 20:41:01 +02:00
|
|
|
pkt->allocate();
|
|
|
|
|
|
|
|
switch (pkt->getSize()) {
|
|
|
|
case sizeof(uint8_t):
|
|
|
|
pkt->set<uint8_t>(config.data[offset]);
|
|
|
|
DPRINTF(PCIDEV,
|
2006-08-28 19:28:31 +02:00
|
|
|
"readConfig: dev %#x func %#x reg %#x 1 bytes: data = %#x\n",
|
2007-07-24 06:51:38 +02:00
|
|
|
params()->pci_dev, params()->pci_func, offset,
|
2006-07-06 20:41:01 +02:00
|
|
|
(uint32_t)pkt->get<uint8_t>());
|
2004-02-05 08:25:45 +01:00
|
|
|
break;
|
2006-07-06 20:41:01 +02:00
|
|
|
case sizeof(uint16_t):
|
|
|
|
pkt->set<uint16_t>(*(uint16_t*)&config.data[offset]);
|
|
|
|
DPRINTF(PCIDEV,
|
2006-08-28 19:28:31 +02:00
|
|
|
"readConfig: dev %#x func %#x reg %#x 2 bytes: data = %#x\n",
|
2007-07-24 06:51:38 +02:00
|
|
|
params()->pci_dev, params()->pci_func, offset,
|
2006-07-06 20:41:01 +02:00
|
|
|
(uint32_t)pkt->get<uint16_t>());
|
|
|
|
break;
|
|
|
|
case sizeof(uint32_t):
|
|
|
|
pkt->set<uint32_t>(*(uint32_t*)&config.data[offset]);
|
|
|
|
DPRINTF(PCIDEV,
|
2006-08-28 19:28:31 +02:00
|
|
|
"readConfig: dev %#x func %#x reg %#x 4 bytes: data = %#x\n",
|
2007-07-24 06:51:38 +02:00
|
|
|
params()->pci_dev, params()->pci_func, offset,
|
2006-07-06 20:41:01 +02:00
|
|
|
(uint32_t)pkt->get<uint32_t>());
|
2004-02-05 08:25:45 +01:00
|
|
|
break;
|
|
|
|
default:
|
2006-07-06 20:41:01 +02:00
|
|
|
panic("invalid access size(?) for PCI configspace!\n");
|
2004-02-04 21:03:50 +01:00
|
|
|
}
|
2007-06-30 19:16:18 +02:00
|
|
|
pkt->makeAtomicResponse();
|
2006-07-06 20:41:01 +02:00
|
|
|
return configDelay;
|
|
|
|
|
2004-02-04 21:03:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-07-06 20:41:01 +02:00
|
|
|
PciDev::addressRanges(AddrRangeList &range_list)
|
2004-02-04 21:03:50 +01:00
|
|
|
{
|
2006-07-06 20:41:01 +02:00
|
|
|
int x = 0;
|
|
|
|
range_list.clear();
|
|
|
|
for (x = 0; x < 6; x++)
|
|
|
|
if (BARAddrs[x] != 0)
|
|
|
|
range_list.push_back(RangeSize(BARAddrs[x],BARSize[x]));
|
2006-04-20 23:14:30 +02:00
|
|
|
}
|
2004-02-04 21:03:50 +01:00
|
|
|
|
2006-07-06 20:41:01 +02:00
|
|
|
Tick
|
2006-10-20 09:10:12 +02:00
|
|
|
PciDev::writeConfig(PacketPtr pkt)
|
2006-04-20 23:14:30 +02:00
|
|
|
{
|
2006-07-06 20:41:01 +02:00
|
|
|
int offset = pkt->getAddr() & PCI_CONFIG_SIZE;
|
2006-04-20 23:14:30 +02:00
|
|
|
if (offset >= PCI_DEVICE_SPECIFIC)
|
|
|
|
panic("Device specific PCI config space not implemented!\n");
|
2005-08-15 22:59:58 +02:00
|
|
|
|
2006-07-06 20:41:01 +02:00
|
|
|
switch (pkt->getSize()) {
|
|
|
|
case sizeof(uint8_t):
|
|
|
|
switch (offset) {
|
|
|
|
case PCI0_INTERRUPT_LINE:
|
|
|
|
config.interruptLine = pkt->get<uint8_t>();
|
|
|
|
case PCI_CACHE_LINE_SIZE:
|
|
|
|
config.cacheLineSize = pkt->get<uint8_t>();
|
|
|
|
case PCI_LATENCY_TIMER:
|
|
|
|
config.latencyTimer = pkt->get<uint8_t>();
|
|
|
|
break;
|
|
|
|
/* Do nothing for these read-only registers */
|
|
|
|
case PCI0_INTERRUPT_PIN:
|
|
|
|
case PCI0_MINIMUM_GRANT:
|
|
|
|
case PCI0_MAXIMUM_LATENCY:
|
|
|
|
case PCI_CLASS_CODE:
|
|
|
|
case PCI_REVISION_ID:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
panic("writing to a read only register");
|
2006-04-20 23:14:30 +02:00
|
|
|
}
|
2006-07-06 20:41:01 +02:00
|
|
|
DPRINTF(PCIDEV,
|
2006-08-28 19:28:31 +02:00
|
|
|
"writeConfig: dev %#x func %#x reg %#x 1 bytes: data = %#x\n",
|
2007-07-24 06:51:38 +02:00
|
|
|
params()->pci_dev, params()->pci_func, offset,
|
2006-07-06 20:41:01 +02:00
|
|
|
(uint32_t)pkt->get<uint8_t>());
|
|
|
|
break;
|
|
|
|
case sizeof(uint16_t):
|
|
|
|
switch (offset) {
|
|
|
|
case PCI_COMMAND:
|
|
|
|
config.command = pkt->get<uint8_t>();
|
|
|
|
case PCI_STATUS:
|
|
|
|
config.status = pkt->get<uint8_t>();
|
|
|
|
case PCI_CACHE_LINE_SIZE:
|
|
|
|
config.cacheLineSize = pkt->get<uint8_t>();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
panic("writing to a read only register");
|
|
|
|
}
|
|
|
|
DPRINTF(PCIDEV,
|
2006-08-28 19:28:31 +02:00
|
|
|
"writeConfig: dev %#x func %#x reg %#x 2 bytes: data = %#x\n",
|
2007-07-24 06:51:38 +02:00
|
|
|
params()->pci_dev, params()->pci_func, offset,
|
2006-07-06 20:41:01 +02:00
|
|
|
(uint32_t)pkt->get<uint16_t>());
|
|
|
|
break;
|
|
|
|
case sizeof(uint32_t):
|
|
|
|
switch (offset) {
|
|
|
|
case PCI0_BASE_ADDR0:
|
|
|
|
case PCI0_BASE_ADDR1:
|
|
|
|
case PCI0_BASE_ADDR2:
|
|
|
|
case PCI0_BASE_ADDR3:
|
|
|
|
case PCI0_BASE_ADDR4:
|
|
|
|
case PCI0_BASE_ADDR5:
|
2006-08-28 20:17:49 +02:00
|
|
|
{
|
|
|
|
int barnum = BAR_NUMBER(offset);
|
|
|
|
|
|
|
|
// convert BAR values to host endianness
|
|
|
|
uint32_t he_old_bar = letoh(config.baseAddr[barnum]);
|
|
|
|
uint32_t he_new_bar = letoh(pkt->get<uint32_t>());
|
|
|
|
|
|
|
|
uint32_t bar_mask =
|
|
|
|
BAR_IO_SPACE(he_old_bar) ? BAR_IO_MASK : BAR_MEM_MASK;
|
|
|
|
|
|
|
|
// Writing 0xffffffff to a BAR tells the card to set the
|
|
|
|
// value of the bar to a bitmask indicating the size of
|
|
|
|
// memory it needs
|
|
|
|
if (he_new_bar == 0xffffffff) {
|
|
|
|
he_new_bar = ~(BARSize[barnum] - 1);
|
|
|
|
} else {
|
|
|
|
// does it mean something special to write 0 to a BAR?
|
|
|
|
he_new_bar &= ~bar_mask;
|
|
|
|
if (he_new_bar) {
|
|
|
|
Addr space_base = BAR_IO_SPACE(he_old_bar) ?
|
|
|
|
TSUNAMI_PCI0_IO : TSUNAMI_PCI0_MEMORY;
|
|
|
|
BARAddrs[barnum] = he_new_bar + space_base;
|
|
|
|
pioPort->sendStatusChange(Port::RangeChange);
|
|
|
|
}
|
2006-07-06 20:41:01 +02:00
|
|
|
}
|
2006-08-28 20:17:49 +02:00
|
|
|
config.baseAddr[barnum] = htole((he_new_bar & ~bar_mask) |
|
|
|
|
(he_old_bar & bar_mask));
|
2004-02-05 08:25:45 +01:00
|
|
|
}
|
2006-07-06 20:41:01 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PCI0_ROM_BASE_ADDR:
|
|
|
|
if (letoh(pkt->get<uint32_t>()) == 0xfffffffe)
|
|
|
|
config.expansionROM = htole((uint32_t)0xffffffff);
|
|
|
|
else
|
|
|
|
config.expansionROM = pkt->get<uint32_t>();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PCI_COMMAND:
|
|
|
|
// This could also clear some of the error bits in the Status
|
|
|
|
// register. However they should never get set, so lets ignore
|
|
|
|
// it for now
|
|
|
|
config.command = pkt->get<uint32_t>();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
DPRINTF(PCIDEV, "Writing to a read only register");
|
2004-02-04 21:03:50 +01:00
|
|
|
}
|
2006-07-06 20:41:01 +02:00
|
|
|
DPRINTF(PCIDEV,
|
2006-08-28 19:28:31 +02:00
|
|
|
"writeConfig: dev %#x func %#x reg %#x 4 bytes: data = %#x\n",
|
2007-07-24 06:51:38 +02:00
|
|
|
params()->pci_dev, params()->pci_func, offset,
|
2006-07-06 20:41:01 +02:00
|
|
|
(uint32_t)pkt->get<uint32_t>());
|
2004-02-04 21:03:50 +01:00
|
|
|
break;
|
2005-08-15 22:59:58 +02:00
|
|
|
default:
|
2006-07-06 20:41:01 +02:00
|
|
|
panic("invalid access size(?) for PCI configspace!\n");
|
2004-02-04 21:03:50 +01:00
|
|
|
}
|
2007-06-30 19:16:18 +02:00
|
|
|
pkt->makeAtomicResponse();
|
2006-07-06 20:41:01 +02:00
|
|
|
return configDelay;
|
2004-02-04 21:03:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PciDev::serialize(ostream &os)
|
|
|
|
{
|
2005-08-23 17:45:52 +02:00
|
|
|
SERIALIZE_ARRAY(BARSize, sizeof(BARSize) / sizeof(BARSize[0]));
|
|
|
|
SERIALIZE_ARRAY(BARAddrs, sizeof(BARAddrs) / sizeof(BARAddrs[0]));
|
|
|
|
SERIALIZE_ARRAY(config.data, sizeof(config.data) / sizeof(config.data[0]));
|
2004-02-04 21:03:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PciDev::unserialize(Checkpoint *cp, const std::string §ion)
|
|
|
|
{
|
2005-08-23 17:45:52 +02:00
|
|
|
UNSERIALIZE_ARRAY(BARSize, sizeof(BARSize) / sizeof(BARSize[0]));
|
|
|
|
UNSERIALIZE_ARRAY(BARAddrs, sizeof(BARAddrs) / sizeof(BARAddrs[0]));
|
|
|
|
UNSERIALIZE_ARRAY(config.data,
|
|
|
|
sizeof(config.data) / sizeof(config.data[0]));
|
2006-10-09 05:18:19 +02:00
|
|
|
pioPort->sendStatusChange(Port::RangeChange);
|
|
|
|
|
2004-02-04 21:03:50 +01:00
|
|
|
}
|
|
|
|
|