From: Steve Reinhardt Date: Tue, 15 Sep 2009 04:19:40 +0000 (-0700) Subject: Add an I/O cache to FS config even if there's just an "L2" cache. X-Git-Tag: stable_2012_02_02~1752 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=15bb2480135d7192f895cfb8a3a945fa24472037;p=gem5.git Add an I/O cache to FS config even if there's just an "L2" cache. --- diff --git a/configs/example/fs.py b/configs/example/fs.py index b5be79a08..3164b6fb4 100644 --- a/configs/example/fs.py +++ b/configs/example/fs.py @@ -123,7 +123,7 @@ if options.l2cache: test_sys.cpu = [TestCPUClass(cpu_id=i) for i in xrange(np)] -if options.caches: +if options.caches or options.l2cache: test_sys.bridge.filter_ranges_a=[AddrRange(0, Addr.max)] test_sys.bridge.filter_ranges_b=[AddrRange(0, size='8GB')] test_sys.iocache = IOCache(addr_range=AddrRange(0, size='8GB'))