summaryrefslogtreecommitdiff
path: root/configs/ruby/MOESI_CMP_token.py
diff options
context:
space:
mode:
authorBrad Beckmann <Brad.Beckmann@amd.com>2010-08-24 13:20:31 -0700
committerBrad Beckmann <Brad.Beckmann@amd.com>2010-08-24 13:20:31 -0700
commit8572d8fd9190884dc70e9db60f80e4778f65c44b (patch)
treef7077d1443edbf51d0279df6b9c16ce5e95f8238 /configs/ruby/MOESI_CMP_token.py
parente983ef9e8c6749c1cd0bf083a2092cb4683d0346 (diff)
downloadgem5-8572d8fd9190884dc70e9db60f80e4778f65c44b.tar.xz
config: fixed ruby dma device connections
Diffstat (limited to 'configs/ruby/MOESI_CMP_token.py')
-rw-r--r--configs/ruby/MOESI_CMP_token.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/configs/ruby/MOESI_CMP_token.py b/configs/ruby/MOESI_CMP_token.py
index ba61c727a..1e1190cae 100644
--- a/configs/ruby/MOESI_CMP_token.py
+++ b/configs/ruby/MOESI_CMP_token.py
@@ -178,10 +178,9 @@ def create_system(options, system, piobus, dma_devices):
exec("system.dma_cntrl%d = dma_cntrl" % i)
if dma_device.type == 'MemTest':
- system.dma_cntrl.dma_sequencer.port = dma_device.test
+ exec("system.dma_cntrl%d.dma_sequencer.port = dma_device.test" % i)
else:
- system.dma_cntrl.dma_sequencer.port = dma_device.dma
- dma_cntrl.dma_sequencer.port = dma_device.dma
+ exec("system.dma_cntrl%d.dma_sequencer.port = dma_device.dma" % i)
dma_cntrl_nodes.append(dma_cntrl)
all_cntrls = l1_cntrl_nodes + \