summaryrefslogtreecommitdiff
path: root/src/dev/alpha
diff options
context:
space:
mode:
authorSteve Reinhardt <steve.reinhardt@amd.com>2010-08-17 05:06:21 -0700
committerSteve Reinhardt <steve.reinhardt@amd.com>2010-08-17 05:06:21 -0700
commit0685ae7a2dbceaa2b9b264a57c9d5f82868e777e (patch)
treef640375810c28123381d9f3709793b4db90fcec6 /src/dev/alpha
parentc4ba6967a522df3b51a50017d8a5f2c47c382f57 (diff)
downloadgem5-0685ae7a2dbceaa2b9b264a57c9d5f82868e777e.tar.xz
bus: clean up default responder code.
Clean up some minor things left over from the default responder change in rev 9af6fb59752f. Mostly renaming the 'responder_set' param to 'use_default_range' to actually reflect what it does... old name wasn't that descriptive in the first place, but now it really doesn't make sense at all. Also got rid of the bogus obsolete assignment to 'bus.responder' which used to be a parameter but now is interpreted as an implicit child assignment, and which was giving me problems in the config restructuring to come. (A good argument for not allowing implicit child assignments, IMO, but that's water under the bridge, I'm afraid.) Also moved the Bus constructor to the .cc file since that's where it should have been all along.
Diffstat (limited to 'src/dev/alpha')
-rw-r--r--src/dev/alpha/Tsunami.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/dev/alpha/Tsunami.py b/src/dev/alpha/Tsunami.py
index 5440486b6..e6a899604 100644
--- a/src/dev/alpha/Tsunami.py
+++ b/src/dev/alpha/Tsunami.py
@@ -96,8 +96,7 @@ class Tsunami(Platform):
self.cchip.pio = bus.port
self.pchip.pio = bus.port
self.pciconfig.pio = bus.default
- bus.responder_set = True
- bus.responder = self.pciconfig
+ bus.use_default_range = True
self.fake_sm_chip.pio = bus.port
self.fake_uart1.pio = bus.port
self.fake_uart2.pio = bus.port