summaryrefslogtreecommitdiff
path: root/src/dev/mips/malta.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/dev/mips/malta.hh')
-rwxr-xr-xsrc/dev/mips/malta.hh24
1 files changed, 20 insertions, 4 deletions
diff --git a/src/dev/mips/malta.hh b/src/dev/mips/malta.hh
index 5569c7c90..69ae004b3 100755
--- a/src/dev/mips/malta.hh
+++ b/src/dev/mips/malta.hh
@@ -120,10 +120,26 @@ class Malta : public Platform
virtual Addr pciToDma(Addr pciAddr) const;
- /**
- * Calculate the configuration address given a bus/dev/func.
- */
- virtual Addr calcConfigAddr(int bus, int dev, int func);
+ Addr
+ calcPciConfigAddr(int bus, int dev, int func)
+ {
+ panic("Need implementation\n");
+ M5_DUMMY_RETURN
+ }
+
+ Addr
+ calcPciIOAddr(Addr addr)
+ {
+ panic("Need implementation\n");
+ M5_DUMMY_RETURN
+ }
+
+ Addr
+ calcPciMemAddr(Addr addr)
+ {
+ panic("Need implementation\n");
+ M5_DUMMY_RETURN
+ }
/**
* Serialize this object to the given output stream.