ArmSystem.py (11234:c273990ed9bf) ArmSystem.py (11238:627dd43a5846)
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

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

35#
36# Authors: Ali Saidi
37
38from m5.params import *
39
40from System import System
41
42class ArmMachineType(Enum):
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

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

35#
36# Authors: Ali Saidi
37
38from m5.params import *
39
40from System import System
41
42class ArmMachineType(Enum):
43 map = {'RealView_EB' : 827,
44 'RealView_PBX' : 1901,
45 'VExpress_EMM' : 2272,
46 'VExpress_EMM64' : 2272}
43 map = {
44 'RealViewEB' : 827,
45 'RealViewPBX' : 1901,
46 'VExpress_EMM' : 2272,
47 'VExpress_EMM64' : 2272,
48 'DTOnly' : -1,
49 }
47
48class ArmSystem(System):
49 type = 'ArmSystem'
50 cxx_header = "arch/arm/system.hh"
51 load_addr_mask = 0xffffffff
52 multi_proc = Param.Bool(True, "Multiprocessor system?")
53 boot_loader = VectorParam.String([],
54 "File that contains the boot loader code. Zero or more files may be "

--- 46 unchanged lines hidden ---
50
51class ArmSystem(System):
52 type = 'ArmSystem'
53 cxx_header = "arch/arm/system.hh"
54 load_addr_mask = 0xffffffff
55 multi_proc = Param.Bool(True, "Multiprocessor system?")
56 boot_loader = VectorParam.String([],
57 "File that contains the boot loader code. Zero or more files may be "

--- 46 unchanged lines hidden ---