diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-07-21 01:09:05 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-07-21 01:09:05 -0700 |
commit | 74584d79b66b3459c72db6c74bfa9e22ee1ae23b (patch) | |
tree | f8a98156083103e9f883235e2fd91cccba76f179 /src/dev/mips/malta.hh | |
parent | 7548082d3baf578fe984c79f414dbefd96091359 (diff) | |
download | gem5-74584d79b66b3459c72db6c74bfa9e22ee1ae23b.tar.xz |
MIPS: Get MIPS_FS to compile, more style fixes.
Some breakage was from my BitUnion change, some was much older.
Diffstat (limited to 'src/dev/mips/malta.hh')
-rwxr-xr-x | src/dev/mips/malta.hh | 24 |
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. |