ArmSystem.py (8931:7a1dfb191e3f) ArmSystem.py (8997:f07639e4b676)
1# Copyright (c) 2009 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 flags_addr = Param.Addr(0, "Address of the flags register for MP booting")
61
62class LinuxArmSystem(ArmSystem):
63 type = 'LinuxArmSystem'
64 load_addr_mask = 0x0fffffff
65 machine_type = Param.ArmMachineType('RealView_PBX',
66 "Machine id from http://www.arm.linux.org.uk/developer/machines/")
67 atags_addr = Param.Addr(0x100, "Address where default atags structure should be written")
1# Copyright (c) 2009 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 flags_addr = Param.Addr(0, "Address of the flags register for MP booting")
61
62class LinuxArmSystem(ArmSystem):
63 type = 'LinuxArmSystem'
64 load_addr_mask = 0x0fffffff
65 machine_type = Param.ArmMachineType('RealView_PBX',
66 "Machine id from http://www.arm.linux.org.uk/developer/machines/")
67 atags_addr = Param.Addr(0x100, "Address where default atags structure should be written")
68 early_kernel_symbols = Param.Bool(False, "enable early kernel symbol tables before MMU")