changeset fea29fc045ee in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=fea29fc045ee
description:
config: ruby: mi protocol: correct master slave setting for dma
In the MI protocol, the master slave connection between the dma
controller
and network was being set incorrectly. This patch corrects it.
diffstat:
configs/ruby/MI_example.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (14 lines):
diff -r ad9146bb5598 -r fea29fc045ee configs/ruby/MI_example.py
--- a/configs/ruby/MI_example.py Tue Dec 02 22:01:51 2014 -0800
+++ b/configs/ruby/MI_example.py Thu Dec 04 08:59:44 2014 -0600
@@ -154,8 +154,8 @@
dma_cntrl_nodes.append(dma_cntrl)
# Connect the directory controllers and the network
- dma_cntrl.requestToDir = ruby_system.network.master
- dma_cntrl.responseFromDir = ruby_system.network.slave
+ dma_cntrl.requestToDir = ruby_system.network.slave
+ dma_cntrl.responseFromDir = ruby_system.network.master
all_cntrls = l1_cntrl_nodes + dir_cntrl_nodes + dma_cntrl_nodes
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev