CpuConfig.py (10650:a6fe75e8296b) CpuConfig.py (10860:cba0f26038b4)
1# Copyright (c) 2012 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 38 unchanged lines hidden (view full) ---

47# sure they exist before we add them to the CPU list. A target may be
48# specified as a tuple, in which case the first available CPU model in
49# the tuple will be used as the target.
50_cpu_aliases_all = [
51 ("timing", "TimingSimpleCPU"),
52 ("atomic", "AtomicSimpleCPU"),
53 ("minor", "MinorCPU"),
54 ("detailed", "DerivO3CPU"),
1# Copyright (c) 2012 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 38 unchanged lines hidden (view full) ---

47# sure they exist before we add them to the CPU list. A target may be
48# specified as a tuple, in which case the first available CPU model in
49# the tuple will be used as the target.
50_cpu_aliases_all = [
51 ("timing", "TimingSimpleCPU"),
52 ("atomic", "AtomicSimpleCPU"),
53 ("minor", "MinorCPU"),
54 ("detailed", "DerivO3CPU"),
55 ("kvm", ("ArmKvmCPU", "X86KvmCPU")),
55 ("kvm", ("ArmKvmCPU", "ArmV8KvmCPU", "X86KvmCPU")),
56 ]
57
58# Filtered list of aliases. Only aliases for existing CPUs exist in
59# this list.
60_cpu_aliases = {}
61
62
63def is_cpu_class(cls):

--- 70 unchanged lines hidden ---
56 ]
57
58# Filtered list of aliases. Only aliases for existing CPUs exist in
59# this list.
60_cpu_aliases = {}
61
62
63def is_cpu_class(cls):

--- 70 unchanged lines hidden ---