diff options
Diffstat (limited to 'src/dev')
-rw-r--r-- | src/dev/Pci.py | 2 | ||||
-rw-r--r-- | src/dev/copy_engine.cc | 8 | ||||
-rw-r--r-- | src/dev/copy_engine.hh | 2 | ||||
-rw-r--r-- | src/dev/etherdevice.hh | 4 | ||||
-rw-r--r-- | src/dev/i8254xGBe.cc | 8 | ||||
-rw-r--r-- | src/dev/ide_ctrl.cc | 16 | ||||
-rw-r--r-- | src/dev/ide_ctrl.hh | 2 | ||||
-rw-r--r-- | src/dev/ns_gige.cc | 10 | ||||
-rw-r--r-- | src/dev/pciconfigall.hh | 10 | ||||
-rw-r--r-- | src/dev/pcidev.cc | 22 | ||||
-rw-r--r-- | src/dev/pcidev.hh | 8 | ||||
-rw-r--r-- | src/dev/sinic.cc | 12 | ||||
-rw-r--r-- | src/dev/x86/SConscript | 2 | ||||
-rw-r--r-- | src/dev/x86/i82094aa.cc | 6 | ||||
-rw-r--r-- | src/dev/x86/i82094aa.hh | 2 | ||||
-rw-r--r-- | src/dev/x86/i8259.cc | 2 | ||||
-rw-r--r-- | src/dev/x86/i8259.hh | 2 | ||||
-rw-r--r-- | src/dev/x86/intdev.cc | 4 | ||||
-rw-r--r-- | src/dev/x86/intdev.hh | 18 |
19 files changed, 70 insertions, 70 deletions
diff --git a/src/dev/Pci.py b/src/dev/Pci.py index a63c329a4..fa3fc854e 100644 --- a/src/dev/Pci.py +++ b/src/dev/Pci.py @@ -44,7 +44,7 @@ class PciConfigAll(BasicPioDevice): class PciDevice(DmaDevice): type = 'PciDevice' - cxx_class = 'PciDev' + cxx_class = 'PciDevice' cxx_header = "dev/pcidev.hh" abstract = True platform = Param.Platform(Parent.any, "Platform this device is part of.") diff --git a/src/dev/copy_engine.cc b/src/dev/copy_engine.cc index d6162b689..e4cd90c1c 100644 --- a/src/dev/copy_engine.cc +++ b/src/dev/copy_engine.cc @@ -60,7 +60,7 @@ using namespace CopyEngineReg; CopyEngine::CopyEngine(const Params *p) - : PciDev(p) + : PciDevice(p) { // All Reg regs are initialized to 0 by default regs.chanCount = p->ChanCnt; @@ -115,7 +115,7 @@ CopyEngine::getMasterPort(const std::string &if_name, PortID idx) { if (if_name != "dma") { // pass it along to our super class - return PciDev::getMasterPort(if_name, idx); + return PciDevice::getMasterPort(if_name, idx); } else { if (idx >= static_cast<int>(chan.size())) { panic("CopyEngine::getMasterPort: unknown index %d\n", idx); @@ -680,7 +680,7 @@ CopyEngine::drain(DrainManager *dm) void CopyEngine::serialize(std::ostream &os) { - PciDev::serialize(os); + PciDevice::serialize(os); regs.serialize(os); for (int x =0; x < chan.size(); x++) { nameOut(os, csprintf("%s.channel%d", name(), x)); @@ -691,7 +691,7 @@ CopyEngine::serialize(std::ostream &os) void CopyEngine::unserialize(Checkpoint *cp, const std::string §ion) { - PciDev::unserialize(cp, section); + PciDevice::unserialize(cp, section); regs.unserialize(cp, section); for (int x = 0; x < chan.size(); x++) chan[x]->unserialize(cp, csprintf("%s.channel%d", section, x)); diff --git a/src/dev/copy_engine.hh b/src/dev/copy_engine.hh index c4b07c79d..1186d0b1d 100644 --- a/src/dev/copy_engine.hh +++ b/src/dev/copy_engine.hh @@ -58,7 +58,7 @@ #include "sim/drain.hh" #include "sim/eventq.hh" -class CopyEngine : public PciDev +class CopyEngine : public PciDevice { class CopyEngineChannel : public Drainable { diff --git a/src/dev/etherdevice.hh b/src/dev/etherdevice.hh index 81e5535b0..ace600a4e 100644 --- a/src/dev/etherdevice.hh +++ b/src/dev/etherdevice.hh @@ -48,12 +48,12 @@ class EtherInt; * The base EtherObject class, allows for an accesor function to a * simobj that returns the Port. */ -class EtherDevice : public PciDev +class EtherDevice : public PciDevice { public: typedef EtherDeviceParams Params; EtherDevice(const Params *params) - : PciDev(params) + : PciDevice(params) {} const Params * diff --git a/src/dev/i8254xGBe.cc b/src/dev/i8254xGBe.cc index ee24b3922..e65baba89 100644 --- a/src/dev/i8254xGBe.cc +++ b/src/dev/i8254xGBe.cc @@ -131,7 +131,7 @@ void IGbE::init() { cpa = CPA::cpa(); - PciDev::init(); + PciDevice::init(); } EtherInt* @@ -151,7 +151,7 @@ IGbE::writeConfig(PacketPtr pkt) { int offset = pkt->getAddr() & PCI_CONFIG_SIZE; if (offset < PCI_DEVICE_SPECIFIC) - PciDev::writeConfig(pkt); + PciDevice::writeConfig(pkt); else panic("Device specific PCI config space not implemented.\n"); @@ -2453,7 +2453,7 @@ IGbE::ethTxDone() void IGbE::serialize(std::ostream &os) { - PciDev::serialize(os); + PciDevice::serialize(os); regs.serialize(os); SERIALIZE_SCALAR(eeOpBits); @@ -2507,7 +2507,7 @@ IGbE::serialize(std::ostream &os) void IGbE::unserialize(Checkpoint *cp, const std::string §ion) { - PciDev::unserialize(cp, section); + PciDevice::unserialize(cp, section); regs.unserialize(cp, section); UNSERIALIZE_SCALAR(eeOpBits); diff --git a/src/dev/ide_ctrl.cc b/src/dev/ide_ctrl.cc index f33d603af..df02bf5f5 100644 --- a/src/dev/ide_ctrl.cc +++ b/src/dev/ide_ctrl.cc @@ -80,7 +80,7 @@ IdeController::Channel::~Channel() } IdeController::IdeController(Params *p) - : PciDev(p), primary(name() + ".primary", BARSize[0], BARSize[1]), + : PciDevice(p), primary(name() + ".primary", BARSize[0], BARSize[1]), secondary(name() + ".secondary", BARSize[2], BARSize[3]), bmiAddr(0), bmiSize(BARSize[4]), primaryTiming(htole(timeRegWithDecodeEn)), @@ -132,7 +132,7 @@ void IdeController::intrPost() { primary.bmiRegs.status.intStatus = 1; - PciDev::intrPost(); + PciDevice::intrPost(); } void @@ -157,7 +157,7 @@ IdeController::readConfig(PacketPtr pkt) { int offset = pkt->getAddr() & PCI_CONFIG_SIZE; if (offset < PCI_DEVICE_SPECIFIC) { - return PciDev::readConfig(pkt); + return PciDevice::readConfig(pkt); } pkt->allocate(); @@ -232,7 +232,7 @@ IdeController::writeConfig(PacketPtr pkt) { int offset = pkt->getAddr() & PCI_CONFIG_SIZE; if (offset < PCI_DEVICE_SPECIFIC) { - PciDev::writeConfig(pkt); + PciDevice::writeConfig(pkt); } else { switch (pkt->getSize()) { case sizeof(uint8_t): @@ -523,8 +523,8 @@ IdeController::write(PacketPtr pkt) void IdeController::serialize(std::ostream &os) { - // Serialize the PciDev base class - PciDev::serialize(os); + // Serialize the PciDevice base class + PciDevice::serialize(os); // Serialize channels primary.serialize("primary", os); @@ -565,8 +565,8 @@ IdeController::Channel::serialize(const std::string &base, std::ostream &os) void IdeController::unserialize(Checkpoint *cp, const std::string §ion) { - // Unserialize the PciDev base class - PciDev::unserialize(cp, section); + // Unserialize the PciDevice base class + PciDevice::unserialize(cp, section); // Unserialize channels primary.unserialize("primary", cp, section); diff --git a/src/dev/ide_ctrl.hh b/src/dev/ide_ctrl.hh index 93291ad66..414e31087 100644 --- a/src/dev/ide_ctrl.hh +++ b/src/dev/ide_ctrl.hh @@ -49,7 +49,7 @@ class IdeDisk; * Device model for an Intel PIIX4 IDE controller */ -class IdeController : public PciDev +class IdeController : public PciDevice { private: // Bus master IDE status register bit fields diff --git a/src/dev/ns_gige.cc b/src/dev/ns_gige.cc index 9269f7935..67f8e0345 100644 --- a/src/dev/ns_gige.cc +++ b/src/dev/ns_gige.cc @@ -146,7 +146,7 @@ NSGigE::writeConfig(PacketPtr pkt) { int offset = pkt->getAddr() & PCI_CONFIG_SIZE; if (offset < PCI_DEVICE_SPECIFIC) - PciDev::writeConfig(pkt); + PciDevice::writeConfig(pkt); else panic("Device specific PCI config space not implemented!\n"); @@ -2126,8 +2126,8 @@ NSGigE::drainResume() void NSGigE::serialize(ostream &os) { - // Serialize the PciDev base class - PciDev::serialize(os); + // Serialize the PciDevice base class + PciDevice::serialize(os); /* * Finalize any DMA events now. @@ -2298,8 +2298,8 @@ NSGigE::serialize(ostream &os) void NSGigE::unserialize(Checkpoint *cp, const std::string §ion) { - // Unserialize the PciDev base class - PciDev::unserialize(cp, section); + // Unserialize the PciDevice base class + PciDevice::unserialize(cp, section); UNSERIALIZE_SCALAR(regs.command); UNSERIALIZE_SCALAR(regs.config); diff --git a/src/dev/pciconfigall.hh b/src/dev/pciconfigall.hh index 615b3578f..c9a63d2c5 100644 --- a/src/dev/pciconfigall.hh +++ b/src/dev/pciconfigall.hh @@ -45,7 +45,7 @@ * PCI Config Space * All of PCI config space needs to return -1 on Tsunami, except * the devices that exist. This device maps the entire bus config - * space and passes the requests on to TsunamiPCIDev devices as + * space and passes the requests on to TsunamiPCIDevice devices as * appropriate. */ class PciConfigAll : public BasicPioDevice @@ -62,8 +62,8 @@ class PciConfigAll : public BasicPioDevice /** * Read something in PCI config space. If the device does not exist - * -1 is returned, if the device does exist its PciDev::ReadConfig (or the - * virtual function that overrides) it is called. + * -1 is returned, if the device does exist its PciDevice::ReadConfig + * (or the virtual function that overrides) it is called. * @param pkt Contains information about the read operation * @return Amount of time to do the read */ @@ -71,8 +71,8 @@ class PciConfigAll : public BasicPioDevice /** * Write to PCI config spcae. If the device does not exit the simulator - * panics. If it does it is passed on the PciDev::WriteConfig (or the virtual - * function that overrides it). + * panics. If it does it is passed on the PciDevice::WriteConfig (or + * the virtual function that overrides it). * @param pkt Contains information about the write operation * @return Amount of time to do the read */ diff --git a/src/dev/pcidev.cc b/src/dev/pcidev.cc index af78f5180..3ca807d06 100644 --- a/src/dev/pcidev.cc +++ b/src/dev/pcidev.cc @@ -53,7 +53,7 @@ #include "sim/core.hh" -PciDev::PciConfigPort::PciConfigPort(PciDev *dev, int busid, int devid, +PciDevice::PciConfigPort::PciConfigPort(PciDevice *dev, int busid, int devid, int funcid, Platform *p) : SimpleTimingPort(dev->name() + "-pciconf", dev), device(dev), platform(p), busId(busid), deviceId(devid), functionId(funcid) @@ -63,7 +63,7 @@ PciDev::PciConfigPort::PciConfigPort(PciDev *dev, int busid, int devid, Tick -PciDev::PciConfigPort::recvAtomic(PacketPtr pkt) +PciDevice::PciConfigPort::recvAtomic(PacketPtr pkt) { assert(pkt->getAddr() >= configAddr && pkt->getAddr() < configAddr + PCI_CONFIG_SIZE); @@ -73,7 +73,7 @@ PciDev::PciConfigPort::recvAtomic(PacketPtr pkt) } AddrRangeList -PciDev::PciConfigPort::getAddrRanges() const +PciDevice::PciConfigPort::getAddrRanges() const { AddrRangeList ranges; if (configAddr != ULL(-1)) @@ -82,7 +82,7 @@ PciDev::PciConfigPort::getAddrRanges() const } -PciDev::PciDev(const Params *p) +PciDevice::PciDevice(const Params *p) : DmaDevice(p), platform(p->platform), pioDelay(p->pio_latency), configDelay(p->config_latency), configPort(this, params()->pci_bus, params()->pci_dev, @@ -150,7 +150,7 @@ PciDev::PciDev(const Params *p) } void -PciDev::init() +PciDevice::init() { if (!configPort.isConnected()) panic("PCI config port on %s not connected to anything!\n", name()); @@ -159,7 +159,7 @@ PciDev::init() } unsigned int -PciDev::drain(DrainManager *dm) +PciDevice::drain(DrainManager *dm) { unsigned int count; count = pioPort.drain(dm) + dmaPort.drain(dm) + configPort.drain(dm); @@ -171,7 +171,7 @@ PciDev::drain(DrainManager *dm) } Tick -PciDev::readConfig(PacketPtr pkt) +PciDevice::readConfig(PacketPtr pkt) { int offset = pkt->getAddr() & PCI_CONFIG_SIZE; if (offset >= PCI_DEVICE_SPECIFIC) @@ -210,7 +210,7 @@ PciDev::readConfig(PacketPtr pkt) } AddrRangeList -PciDev::getAddrRanges() const +PciDevice::getAddrRanges() const { AddrRangeList ranges; int x = 0; @@ -221,7 +221,7 @@ PciDev::getAddrRanges() const } Tick -PciDev::writeConfig(PacketPtr pkt) +PciDevice::writeConfig(PacketPtr pkt) { int offset = pkt->getAddr() & PCI_CONFIG_SIZE; if (offset >= PCI_DEVICE_SPECIFIC) @@ -343,7 +343,7 @@ PciDev::writeConfig(PacketPtr pkt) } void -PciDev::serialize(std::ostream &os) +PciDevice::serialize(std::ostream &os) { SERIALIZE_ARRAY(BARSize, sizeof(BARSize) / sizeof(BARSize[0])); SERIALIZE_ARRAY(BARAddrs, sizeof(BARAddrs) / sizeof(BARAddrs[0])); @@ -351,7 +351,7 @@ PciDev::serialize(std::ostream &os) } void -PciDev::unserialize(Checkpoint *cp, const std::string §ion) +PciDevice::unserialize(Checkpoint *cp, const std::string §ion) { UNSERIALIZE_ARRAY(BARSize, sizeof(BARSize) / sizeof(BARSize[0])); UNSERIALIZE_ARRAY(BARAddrs, sizeof(BARAddrs) / sizeof(BARAddrs[0])); diff --git a/src/dev/pcidev.hh b/src/dev/pcidev.hh index df468d4c6..d4820c0ee 100644 --- a/src/dev/pcidev.hh +++ b/src/dev/pcidev.hh @@ -56,12 +56,12 @@ /** * PCI device, base implementation is only config space. */ -class PciDev : public DmaDevice +class PciDevice : public DmaDevice { class PciConfigPort : public SimpleTimingPort { protected: - PciDev *device; + PciDevice *device; virtual Tick recvAtomic(PacketPtr pkt); @@ -76,7 +76,7 @@ class PciDev : public DmaDevice Addr configAddr; public: - PciConfigPort(PciDev *dev, int busid, int devid, int funcid, + PciConfigPort(PciDevice *dev, int busid, int devid, int funcid, Platform *p); }; @@ -198,7 +198,7 @@ class PciDev : public DmaDevice * config file object PCIConfigData and registers the device with * a PciConfigAll object. */ - PciDev(const Params *params); + PciDevice(const Params *params); virtual void init(); diff --git a/src/dev/sinic.cc b/src/dev/sinic.cc index 8cb7aada7..c2d5fb49d 100644 --- a/src/dev/sinic.cc +++ b/src/dev/sinic.cc @@ -1263,8 +1263,8 @@ Device::drainResume() void Base::serialize(std::ostream &os) { - // Serialize the PciDev base class - PciDev::serialize(os); + // Serialize the PciDevice base class + PciDevice::serialize(os); SERIALIZE_SCALAR(rxEnable); SERIALIZE_SCALAR(txEnable); @@ -1284,8 +1284,8 @@ Base::serialize(std::ostream &os) void Base::unserialize(Checkpoint *cp, const std::string §ion) { - // Unserialize the PciDev base class - PciDev::unserialize(cp, section); + // Unserialize the PciDevice base class + PciDevice::unserialize(cp, section); UNSERIALIZE_SCALAR(rxEnable); UNSERIALIZE_SCALAR(txEnable); @@ -1309,7 +1309,7 @@ Device::serialize(std::ostream &os) { int count; - // Serialize the PciDev base class + // Serialize the PciDevice base class Base::serialize(os); if (rxState == rxCopy) @@ -1422,7 +1422,7 @@ Device::serialize(std::ostream &os) void Device::unserialize(Checkpoint *cp, const std::string §ion) { - // Unserialize the PciDev base class + // Unserialize the PciDevice base class Base::unserialize(cp, section); /* diff --git a/src/dev/x86/SConscript b/src/dev/x86/SConscript index 038e4824b..331f0a229 100644 --- a/src/dev/x86/SConscript +++ b/src/dev/x86/SConscript @@ -67,4 +67,4 @@ if env['TARGET_ISA'] == 'x86': SimObject('X86IntPin.py') Source('intdev.cc') - DebugFlag('IntDev') + DebugFlag('IntDevice') diff --git a/src/dev/x86/i82094aa.cc b/src/dev/x86/i82094aa.cc index 1d3defa12..f547d7c1b 100644 --- a/src/dev/x86/i82094aa.cc +++ b/src/dev/x86/i82094aa.cc @@ -39,7 +39,7 @@ #include "sim/system.hh" X86ISA::I82094AA::I82094AA(Params *p) - : BasicPioDevice(p), IntDev(this, p->int_latency), + : BasicPioDevice(p), IntDevice(this, p->int_latency), extIntPic(p->external_int_pic), lowestPriorityOffset(0) { // This assumes there's only one I/O APIC in the system and since the apic @@ -65,10 +65,10 @@ X86ISA::I82094AA::init() { // The io apic must register its address ranges on both its pio port // via the piodevice init() function and its int port that it inherited - // from IntDev. Note IntDev is not a SimObject itself. + // from IntDevice. Note IntDevice is not a SimObject itself. BasicPioDevice::init(); - IntDev::init(); + IntDevice::init(); } BaseMasterPort & diff --git a/src/dev/x86/i82094aa.hh b/src/dev/x86/i82094aa.hh index a8d79fde1..4fe927ae4 100644 --- a/src/dev/x86/i82094aa.hh +++ b/src/dev/x86/i82094aa.hh @@ -44,7 +44,7 @@ namespace X86ISA class I8259; class Interrupts; -class I82094AA : public BasicPioDevice, public IntDev +class I82094AA : public BasicPioDevice, public IntDevice { public: BitUnion64(RedirTableEntry) diff --git a/src/dev/x86/i8259.cc b/src/dev/x86/i8259.cc index 4e8c10181..fa54ad5d7 100644 --- a/src/dev/x86/i8259.cc +++ b/src/dev/x86/i8259.cc @@ -35,7 +35,7 @@ #include "mem/packet.hh" #include "mem/packet_access.hh" -X86ISA::I8259::I8259(Params * p) : BasicPioDevice(p), IntDev(this), +X86ISA::I8259::I8259(Params * p) : BasicPioDevice(p), IntDevice(this), latency(p->pio_latency), output(p->output), mode(p->mode), slave(p->slave), IRR(0), ISR(0), IMR(0), diff --git a/src/dev/x86/i8259.hh b/src/dev/x86/i8259.hh index eee5ec171..2d6080cc3 100644 --- a/src/dev/x86/i8259.hh +++ b/src/dev/x86/i8259.hh @@ -39,7 +39,7 @@ namespace X86ISA { -class I8259 : public BasicPioDevice, public IntDev +class I8259 : public BasicPioDevice, public IntDevice { protected: static const int NumLines = 8; diff --git a/src/dev/x86/intdev.cc b/src/dev/x86/intdev.cc index 3f8e49ce1..883073302 100644 --- a/src/dev/x86/intdev.cc +++ b/src/dev/x86/intdev.cc @@ -43,7 +43,7 @@ #include "dev/x86/intdev.hh" void -X86ISA::IntDev::IntMasterPort::sendMessage(ApicList apics, +X86ISA::IntDevice::IntMasterPort::sendMessage(ApicList apics, TriggerIntMessage message, bool timing) { @@ -66,7 +66,7 @@ X86ISA::IntDev::IntMasterPort::sendMessage(ApicList apics, } void -X86ISA::IntDev::init() +X86ISA::IntDevice::init() { if (!intMasterPort.isConnected()) { panic("Int port not connected to anything!"); diff --git a/src/dev/x86/intdev.hh b/src/dev/x86/intdev.hh index 99c361bae..078ea2b6f 100644 --- a/src/dev/x86/intdev.hh +++ b/src/dev/x86/intdev.hh @@ -60,16 +60,16 @@ namespace X86ISA { typedef std::list<int> ApicList; -class IntDev +class IntDevice { protected: class IntSlavePort : public MessageSlavePort { - IntDev * device; + IntDevice * device; public: IntSlavePort(const std::string& _name, MemObject* _parent, - IntDev* dev) : + IntDevice* dev) : MessageSlavePort(_name, _parent), device(dev) { } @@ -89,11 +89,11 @@ class IntDev class IntMasterPort : public MessageMasterPort { - IntDev* device; + IntDevice* device; Tick latency; public: IntMasterPort(const std::string& _name, MemObject* _parent, - IntDev* dev, Tick _latency) : + IntDevice* dev, Tick _latency) : MessageMasterPort(_name, _parent), device(dev), latency(_latency) { } @@ -112,12 +112,12 @@ class IntDev IntMasterPort intMasterPort; public: - IntDev(MemObject * parent, Tick latency = 0) : + IntDevice(MemObject * parent, Tick latency = 0) : intMasterPort(parent->name() + ".int_master", parent, this, latency) { } - virtual ~IntDev() + virtual ~IntDevice() {} virtual void init(); @@ -163,7 +163,7 @@ class IntDev class IntSinkPin : public SimObject { public: - IntDev * device; + IntDevice * device; int number; typedef X86IntSinkPinParams Params; @@ -175,7 +175,7 @@ class IntSinkPin : public SimObject } IntSinkPin(Params *p) : SimObject(p), - device(dynamic_cast<IntDev *>(p->device)), number(p->number) + device(dynamic_cast<IntDevice *>(p->device)), number(p->number) { assert(device); } |