ArmSystem.py (11988:665cd5f8b52b) ArmSystem.py (12005:f4b9607db0af)
1# Copyright (c) 2009, 2012-2013, 2015 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

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

71 reset_addr_64 = Param.Addr(0x0,
72 "Reset address if the highest implemented exception level is 64 bits "
73 "(ARMv8)")
74 phys_addr_range_64 = Param.UInt8(40,
75 "Supported physical address range in bits when using AArch64 (ARMv8)")
76 have_large_asid_64 = Param.Bool(False,
77 "True if ASID is 16 bits in AArch64 (ARMv8)")
78
1# Copyright (c) 2009, 2012-2013, 2015 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

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

71 reset_addr_64 = Param.Addr(0x0,
72 "Reset address if the highest implemented exception level is 64 bits "
73 "(ARMv8)")
74 phys_addr_range_64 = Param.UInt8(40,
75 "Supported physical address range in bits when using AArch64 (ARMv8)")
76 have_large_asid_64 = Param.Bool(False,
77 "True if ASID is 16 bits in AArch64 (ARMv8)")
78
79 m5ops_base = Param.Addr(0,
80 "Base of the 64KiB PA range used for memory-mapped m5ops. Set to 0 "
81 "to disable.")
82
79class GenericArmSystem(ArmSystem):
80 type = 'GenericArmSystem'
81 cxx_header = "arch/arm/system.hh"
82 load_addr_mask = 0x0fffffff
83 machine_type = Param.ArmMachineType('VExpress_EMM',
84 "Machine id from http://www.arm.linux.org.uk/developer/machines/")
85 atags_addr = Param.Addr("Address where default atags structure should " \
86 "be written")

--- 23 unchanged lines hidden ---
83class GenericArmSystem(ArmSystem):
84 type = 'GenericArmSystem'
85 cxx_header = "arch/arm/system.hh"
86 load_addr_mask = 0x0fffffff
87 machine_type = Param.ArmMachineType('VExpress_EMM',
88 "Machine id from http://www.arm.linux.org.uk/developer/machines/")
89 atags_addr = Param.Addr("Address where default atags structure should " \
90 "be written")

--- 23 unchanged lines hidden ---