ArmSystem.py (10037:5cac77888310) ArmSystem.py (10317:19f5df7ac6a1)
1# Copyright (c) 2009, 2012-2013 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

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

60 have_virtualization = Param.Bool(False,
61 "True if Virtualization Extensions are implemented")
62 have_lpae = Param.Bool(False, "True if LPAE is implemented")
63 have_generic_timer = Param.Bool(False,
64 "True if the Generic Timer extension is implemented")
65 highest_el_is_64 = Param.Bool(False,
66 "True if the register width of the highest implemented exception level "
67 "is 64 bits (ARMv8)")
1# Copyright (c) 2009, 2012-2013 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

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

60 have_virtualization = Param.Bool(False,
61 "True if Virtualization Extensions are implemented")
62 have_lpae = Param.Bool(False, "True if LPAE is implemented")
63 have_generic_timer = Param.Bool(False,
64 "True if the Generic Timer extension is implemented")
65 highest_el_is_64 = Param.Bool(False,
66 "True if the register width of the highest implemented exception level "
67 "is 64 bits (ARMv8)")
68 reset_addr_64 = Param.UInt64(0x0,
68 reset_addr_64 = Param.Addr(0x0,
69 "Reset address if the highest implemented exception level is 64 bits "
70 "(ARMv8)")
71 phys_addr_range_64 = Param.UInt8(40,
72 "Supported physical address range in bits when using AArch64 (ARMv8)")
73 have_large_asid_64 = Param.Bool(False,
74 "True if ASID is 16 bits in AArch64 (ARMv8)")
75
76class LinuxArmSystem(ArmSystem):

--- 19 unchanged lines hidden ---
69 "Reset address if the highest implemented exception level is 64 bits "
70 "(ARMv8)")
71 phys_addr_range_64 = Param.UInt8(40,
72 "Supported physical address range in bits when using AArch64 (ARMv8)")
73 have_large_asid_64 = Param.Bool(False,
74 "True if ASID is 16 bits in AArch64 (ARMv8)")
75
76class LinuxArmSystem(ArmSystem):

--- 19 unchanged lines hidden ---