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

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

31# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35#
36# Authors: Ali Saidi
37
38from m5.params import *
39from m5.SimObject import *
40
41from System import System
42
43class ArmMachineType(Enum):
44 map = {
45 'RealViewEB' : 827,
46 'RealViewPBX' : 1901,
47 'VExpress_EMM' : 2272,

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

94 "guest kernel panics")
95 panic_on_oops = Param.Bool(False, "Trigger a gem5 panic if the " \
96 "guest kernel oopses")
97
98class LinuxArmSystem(GenericArmSystem):
99 type = 'LinuxArmSystem'
100 cxx_header = "arch/arm/linux/system.hh"
101
101 @classmethod
102 def export_methods(cls, code):
103 code('''void dumpDmesg();''')
102 @cxxMethod
103 def dumpDmesg(self):
104 """Dump dmesg from the simulated kernel to standard out"""
105 pass
106
107class FreebsdArmSystem(GenericArmSystem):
108 type = 'FreebsdArmSystem'
109 cxx_header = "arch/arm/freebsd/system.hh"