ArmSystem.py (12005:f4b9607db0af) ArmSystem.py (12153:dc6e9f6dfd9c)
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

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

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
83class GenericArmSystem(ArmSystem):
84 type = 'GenericArmSystem'
85 cxx_header = "arch/arm/system.hh"
86 load_addr_mask = 0x0fffffff
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

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

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
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',
87 machine_type = Param.ArmMachineType('DTOnly',
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")
91 dtb_filename = Param.String("",
92 "File that contains the Device Tree Blob. Don't use DTB if empty.")
93 early_kernel_symbols = Param.Bool(False,
94 "enable early kernel symbol tables before MMU")
95 enable_context_switch_stats_dump = Param.Bool(False, "enable stats/task info dumping at context switch boundaries")

--- 18 unchanged lines hidden ---
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")
91 dtb_filename = Param.String("",
92 "File that contains the Device Tree Blob. Don't use DTB if empty.")
93 early_kernel_symbols = Param.Bool(False,
94 "enable early kernel symbol tables before MMU")
95 enable_context_switch_stats_dump = Param.Bool(False, "enable stats/task info dumping at context switch boundaries")

--- 18 unchanged lines hidden ---