From: Pierre-Yves Péneau Date: Fri, 12 May 2017 15:50:35 +0000 (+0200) Subject: configs: fix cpu names in big.LITTLE example X-Git-Tag: v19.0.0.0~2790 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=679a0e2ef1cc830c0de7e26ae1ff47df4d6e53b8;p=gem5.git configs: fix cpu names in big.LITTLE example CPU aliases have been dropped, this change fixes the big.LITTLE example. Change-Id: Idd59a6eca93448ef0e23087365fb5452bcef9247 Signed-off-by: Pierre-Yves Péneau Reviewed-on: https://gem5-review.googlesource.com/3300 Reviewed-by: Andreas Sandberg Maintainer: Andreas Sandberg --- diff --git a/configs/example/arm/fs_bigLITTLE.py b/configs/example/arm/fs_bigLITTLE.py index 3e7ac2f76..4f548b184 100644 --- a/configs/example/arm/fs_bigLITTLE.py +++ b/configs/example/arm/fs_bigLITTLE.py @@ -84,7 +84,7 @@ def _using_pdes(root): class BigCluster(devices.CpuCluster): def __init__(self, system, num_cpus, cpu_clock, cpu_voltage="1.0V"): - cpu_config = [ CpuConfig.get("arm_detailed"), devices.L1I, devices.L1D, + cpu_config = [ CpuConfig.get("O3_ARM_v7a_3"), devices.L1I, devices.L1D, devices.WalkCache, devices.L2 ] super(BigCluster, self).__init__(system, num_cpus, cpu_clock, cpu_voltage, *cpu_config) @@ -92,7 +92,7 @@ class BigCluster(devices.CpuCluster): class LittleCluster(devices.CpuCluster): def __init__(self, system, num_cpus, cpu_clock, cpu_voltage="1.0V"): - cpu_config = [ CpuConfig.get("minor"), devices.L1I, devices.L1D, + cpu_config = [ CpuConfig.get("MinorCPU"), devices.L1I, devices.L1D, devices.WalkCache, devices.L2 ] super(LittleCluster, self).__init__(system, num_cpus, cpu_clock, cpu_voltage, *cpu_config)