From: Nilay Vaish Date: Thu, 4 Dec 2014 14:59:44 +0000 (-0600) Subject: config: ruby: mi protocol: correct master slave setting for dma X-Git-Tag: stable_2015_04_15~76 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cca1608bd52a1b8737dddc80a71cb1fa0bd57128;p=gem5.git 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. --- diff --git a/configs/ruby/MI_example.py b/configs/ruby/MI_example.py index 708e111e6..28814b9f9 100644 --- a/configs/ruby/MI_example.py +++ b/configs/ruby/MI_example.py @@ -154,8 +154,8 @@ def create_system(options, full_system, system, dma_ports, ruby_system): 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