diff options
author | Andrew Schultz <alschult@umich.edu> | 2004-05-03 11:48:17 -0400 |
---|---|---|
committer | Andrew Schultz <alschult@umich.edu> | 2004-05-03 11:48:17 -0400 |
commit | 8538ffdb3682d71c90c33b92b436a2d9cbdc42c3 (patch) | |
tree | 9d0e79de7630c3f5765d422cf8752f663533dddb /dev/pciconfigall.hh | |
parent | 53b54c2b65773374f617a73bb967554b706d7bbd (diff) | |
parent | 6807c319b02af31626ab2ed716da6341924eb857 (diff) | |
download | gem5-8538ffdb3682d71c90c33b92b436a2d9cbdc42c3.tar.xz |
Merge zizzer:/bk/linux
into zower.eecs.umich.edu:/.automount/zizzer/z/alschult/DiskModel/linux
--HG--
extra : convert_revision : 8eca0fba9d96bffea7a24bce9b14f0284bd58c83
Diffstat (limited to 'dev/pciconfigall.hh')
-rw-r--r-- | dev/pciconfigall.hh | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/dev/pciconfigall.hh b/dev/pciconfigall.hh index e0f7f6ada..6df1e2fe7 100644 --- a/dev/pciconfigall.hh +++ b/dev/pciconfigall.hh @@ -27,10 +27,6 @@ */ /* - * @todo - * Should derive Tsunami from common platform class so PCI will work with - * multiple platforms - * * @file * PCI Config space implementation. */ @@ -39,7 +35,6 @@ #define __PCICONFIGALL_HH__ #include "mem/functional_mem/functional_memory.hh" -#include "dev/tsunami.hh" #include "dev/pcireg.h" #define MAX_PCI_DEV 32 @@ -60,15 +55,6 @@ class PciConfigAll : public FunctionalMemory Addr addr; static const Addr size = 0xffffff; - protected: - - /** - * Pointer to the Tsunmi Object so we can communicate - * to other Tsunami devices in need be. - * @todo Make this more generic for multiple platforms - */ - Tsunami *tsunami; - public: /** * Pointers to all the devices that are registered with this @@ -79,8 +65,7 @@ class PciConfigAll : public FunctionalMemory /** * The default constructor. */ - PciConfigAll(const std::string &name, Tsunami *t, Addr a, - MemoryController *mmu); + PciConfigAll(const std::string &name, Addr a, MemoryController *mmu); virtual Fault read(MemReqPtr &req, uint8_t *data); virtual Fault write(MemReqPtr &req, const uint8_t *data); |