1# -*- coding: utf-8 -*-
2# Copyright (c) 2017 Jason Lowe-Power
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;
9# redistributions in binary form must reproduce the above copyright
10# notice, this list of conditions and the following disclaimer in the
11# documentation and/or other materials provided with the distribution;
12# neither the name of the copyright holders nor the names of its
13# contributors may be used to endorse or promote products derived from
14# this software without specific prior written permission.
15#
16# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27#
28# Authors: Jason Lowe-Power
29
30""" This file creates a barebones system and executes 'hello', a simple Hello
31World application. Adds a simple cache between the CPU and the membus.
32
33This config file assumes that the x86 ISA was built.
34"""
35
36from __future__ import print_function
37from __future__ import absolute_import
38
39# import the m5 (gem5) library created when gem5 is built
40import m5
41# import all of the SimObjects
42from m5.objects import *
43
44# create the system we are going to simulate
45system = System()
46
47# Set the clock fequency of the system (and all of its children)
48system.clk_domain = SrcClockDomain()
49system.clk_domain.clock = '1GHz'
50system.clk_domain.voltage_domain = VoltageDomain()
51
52# Set up the system
53system.mem_mode = 'timing'               # Use timing accesses
54system.mem_ranges = [AddrRange('512MB')] # Create an address range
55
56# Create a simple CPU
57system.cpu = TimingSimpleCPU()
58
59# Create a memory bus, a coherent crossbar, in this case
60system.membus = SystemXBar()
61
62# Create a simple cache
63system.cache = SimpleCache(size='1kB')
64
65# Connect the I and D cache ports of the CPU to the memobj.
66# Since cpu_side is a vector port, each time one of these is connected, it will
67# create a new instance of the CPUSidePort class
68system.cpu.icache_port = system.cache.cpu_side
69system.cpu.dcache_port = system.cache.cpu_side
70
71# Hook the cache up to the memory bus
72system.cache.mem_side = system.membus.slave
73
74# create the interrupt controller for the CPU and connect to the membus
75system.cpu.createInterruptController()
76system.cpu.interrupts[0].pio = system.membus.master
77system.cpu.interrupts[0].int_master = system.membus.slave
78system.cpu.interrupts[0].int_slave = system.membus.master
79
80# Create a DDR3 memory controller and connect it to the membus
81system.mem_ctrl = DDR3_1600_8x8()
82system.mem_ctrl.range = system.mem_ranges[0]
83system.mem_ctrl.port = system.membus.master
84
85# Connect the system up to the membus
86system.system_port = system.membus.slave
87
88# Create a process for a simple "Hello World" application
89process = Process()
90# Set the command
91# grab the specific path to the binary
92thispath = os.path.dirname(os.path.realpath(__file__))
93binpath = os.path.join(thispath, '../../../',
94                       'tests/test-progs/hello/bin/x86/linux/hello')
95# cmd is a list which begins with the executable (like argv)
96process.cmd = [binpath]
97# Set the cpu to use the process as its workload and create thread contexts
98system.cpu.workload = process
99system.cpu.createThreads()
100
101# set up the root SimObject and start the simulation
102root = Root(full_system = False, system = system)
103# instantiate all of the objects we've created above
104m5.instantiate()
105
106print("Beginning simulation!")
107exit_event = m5.simulate()
108print('Exiting @ tick %i because %s' % (m5.curTick(), exit_event.getCause()))
109