38 #ifndef __DEV_PCI_HOST_HH__ 39 #define __DEV_PCI_HOST_HH__ 45 struct GenericPciHostParams;
93 friend class ::PciHost;
109 const std::string
name()
const;
287 return pciPioBase + pci_addr;
291 return pciMemBase + pci_addr;
295 return pciDmaBase + pci_addr;
313 virtual uint32_t mapPciInterrupt(
const PciBusAddr &bus_addr,
328 #endif // __DEV_PCI_HOST_HH__ virtual Addr dmaAddr(const PciBusAddr &bus_addr, Addr pci_addr) const =0
Calculate the physical address of a prefetchable memory location in the PCI address space...
const std::string name() const
void operator=(const DeviceInterface &)=delete
Configurable generic PCI host interface.
PCI device, base implementation is only config space.
PciDevice * getDevice(const PciBusAddr &addr)
Retrieve a PCI device from its bus address.
virtual Tick read(PacketPtr pkt)=0
Pure virtual function that the device must implement.
virtual DeviceInterface registerDevice(PciDevice *device, PciBusAddr bus_addr, PciIntPin pin)
Register a PCI device with the host.
Addr memAddr(Addr addr) const
Calculate the physical address of a non-prefetchable memory location in the PCI address space...
virtual Addr memAddr(const PciBusAddr &bus_addr, Addr pci_addr) const =0
Calculate the physical address of a non-prefetchable memory location in the PCI address space...
virtual Tick write(PacketPtr pkt)=0
Pure virtual function that the device must implement.
void clearInt()
Clear a posted PCI interrupt.
uint64_t Tick
Tick count type.
virtual Addr pioAddr(const PciBusAddr &bus_addr, Addr pci_addr) const =0
Calculate the physical address of an IO location on the PCI bus.
Addr dmaAddr(Addr addr) const
Calculate the physical address of a prefetchable memory location in the PCI address space...
const PciIntPin interruptPin
virtual AddrRangeList getAddrRanges() const =0
Every PIO device is obliged to provide an implementation that returns the address ranges the device r...
This device is the base class which all devices senstive to an address range inherit from...
PciHost(const PciHostParams *p)
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
The PCI host describes the interface between PCI devices and a simulated system.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Addr pioAddr(const PciBusAddr &bus_addr, Addr pci_addr) const override
Calculate the physical address of an IO location on the PCI bus.
Callback interface from PCI devices to the host.
Addr dmaAddr(const PciBusAddr &bus_addr, Addr pci_addr) const override
Calculate the physical address of a prefetchable memory location in the PCI address space...
Addr pioAddr(Addr addr) const
Calculate the physical address of an IO location on the PCI bus.
const uint8_t confDeviceBits
std::map< PciBusAddr, PciDevice * > devices
Currently registered PCI devices.
void postInt()
Post a PCI interrupt to the CPU.
Addr memAddr(const PciBusAddr &bus_addr, Addr pci_addr) const override
Calculate the physical address of a non-prefetchable memory location in the PCI address space...