summaryrefslogtreecommitdiff
path: root/configs/common/O3_ARM_v7a.py
diff options
context:
space:
mode:
authorAndreas Hansson <andreas.hansson>2013-07-18 08:31:19 -0400
committerAndreas Hansson <andreas.hansson>2013-07-18 08:31:19 -0400
commitc20105c2ff2b8300fa18a5c3f1afb806d6ae9458 (patch)
treec417dc17fae5bf5a9862536870101c58db9aa87b /configs/common/O3_ARM_v7a.py
parentd4273cc9a6f3c00566e97ebcd71509ed14477b37 (diff)
downloadgem5-c20105c2ff2b8300fa18a5c3f1afb806d6ae9458.tar.xz
config: Update script to set cache line size on system
This patch changes the config scripts such that they do not set the cache line size per cache instance, but rather for the system as a whole.
Diffstat (limited to 'configs/common/O3_ARM_v7a.py')
-rw-r--r--configs/common/O3_ARM_v7a.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/configs/common/O3_ARM_v7a.py b/configs/common/O3_ARM_v7a.py
index f5cd3bbc8..10d466419 100644
--- a/configs/common/O3_ARM_v7a.py
+++ b/configs/common/O3_ARM_v7a.py
@@ -149,7 +149,6 @@ class O3_ARM_v7a_3(DerivO3CPU):
class O3_ARM_v7a_ICache(BaseCache):
hit_latency = 1
response_latency = 1
- block_size = 64
mshrs = 2
tgts_per_mshr = 8
size = '32kB'
@@ -160,7 +159,6 @@ class O3_ARM_v7a_ICache(BaseCache):
class O3_ARM_v7a_DCache(BaseCache):
hit_latency = 2
response_latency = 2
- block_size = 64
mshrs = 6
tgts_per_mshr = 8
size = '32kB'
@@ -173,7 +171,6 @@ class O3_ARM_v7a_DCache(BaseCache):
class O3_ARM_v7aWalkCache(BaseCache):
hit_latency = 4
response_latency = 4
- block_size = 64
mshrs = 6
tgts_per_mshr = 8
size = '1kB'
@@ -186,7 +183,6 @@ class O3_ARM_v7aWalkCache(BaseCache):
class O3_ARM_v7aL2(BaseCache):
hit_latency = 12
response_latency = 12
- block_size = 64
mshrs = 16
tgts_per_mshr = 8
size = '1MB'