config: Move core timing models to config/common/cores

Change-Id: I189b6462cc64f7cc6c1b7a6c2af1abb60e1854de
Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com>
Reviewed-by: Gabor Dozsa <gabor.dozsa@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/3943
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Jason Lowe-Power <jason@lowepower.com>
This commit is contained in:
Andreas Sandberg
2017-06-26 14:35:17 +01:00
parent 90c7e56bf4
commit 3212bdf3a8
11 changed files with 83 additions and 12 deletions

View File

@@ -55,9 +55,9 @@ def config_cache(options, system):
if options.cpu_type == "O3_ARM_v7a_3":
try:
from O3_ARM_v7a import *
from cores.arm.O3_ARM_v7a import *
except:
print "arm_detailed is unavailable. Did you compile the O3 model?"
print "O3_ARM_v7a_3 is unavailable. Did you compile the O3 model?"
sys.exit(1)
dcache_class, icache_class, l2_cache_class, walk_cache_class = \