gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
system.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Ruslan Bukin <br@bsdpad.com>
3  * All rights reserved.
4  *
5  * This software was developed by the University of Cambridge Computer
6  * Laboratory as part of the CTSRD Project, with support from the UK Higher
7  * Education Innovation Fund (HEIF).
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions are
11  * met: redistributions of source code must retain the above copyright
12  * notice, this list of conditions and the following disclaimer;
13  * redistributions in binary form must reproduce the above copyright
14  * notice, this list of conditions and the following disclaimer in the
15  * documentation and/or other materials provided with the distribution;
16  * neither the name of the copyright holders nor the names of its
17  * contributors may be used to endorse or promote products derived from
18  * this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
34 
35 #include "arch/arm/isa_traits.hh"
36 #include "arch/arm/utility.hh"
40 #include "base/loader/symtab.hh"
41 #include "cpu/base.hh"
42 #include "cpu/pc_event.hh"
43 #include "cpu/thread_context.hh"
44 #include "debug/Loader.hh"
45 #include "kern/freebsd/events.hh"
47 #include "mem/physical.hh"
48 #include "sim/stat_control.hh"
49 
50 using namespace ArmISA;
51 using namespace FreeBSD;
52 
54  : GenericArmSystem(p),
55  enableContextSwitchStatsDump(p->enable_context_switch_stats_dump),
56  taskFile(nullptr), kernelPanicEvent(nullptr), kernelOopsEvent(nullptr)
57 {
58  if (p->panic_on_panic) {
59  kernelPanicEvent = addKernelFuncEventOrPanic<PanicPCEvent>(
60  "panic", "Kernel panic in simulated kernel");
61  } else {
62 #ifndef NDEBUG
63  kernelPanicEvent = addKernelFuncEventOrPanic<BreakPCEvent>("panic");
64 #endif
65  }
66 
67  if (p->panic_on_oops) {
68  kernelOopsEvent = addKernelFuncEventOrPanic<PanicPCEvent>(
69  "oops_exit", "Kernel oops in guest");
70  }
71 
72  uDelaySkipEvent = addKernelFuncEvent<UDelayEvent>(
73  "DELAY", "DELAY", 1000, 0);
74 }
75 
76 void
78 {
79  // Moved from the constructor to here since it relies on the
80  // address map being resolved in the interconnect
81 
82  // Call the initialisation of the super class
84 
85  // Load symbols at physical address, we might not want
86  // to do this permanently, for but early bootup work
87  // it is helpful.
88  if (params()->early_kernel_symbols) {
91  }
92 
93  // Setup boot data structure
94  Addr addr = 0;
95 
96  // Check if the kernel image has a symbol that tells us it supports
97  // device trees.
98  bool kernel_has_fdt_support =
99  kernelSymtab->findAddress("fdt_get_range", addr);
100  bool dtb_file_specified = params()->dtb_filename != "";
101 
102  if (!dtb_file_specified)
103  fatal("dtb file is not specified\n");
104 
105  if (!kernel_has_fdt_support)
106  fatal("kernel must have fdt support\n");
107 
108  // Kernel supports flattened device tree and dtb file specified.
109  // Using Device Tree Blob to describe system configuration.
110  inform("Loading DTB file: %s at address %#x\n", params()->dtb_filename,
111  params()->atags_addr + loadAddrOffset);
112 
113  ObjectFile *dtb_file = createObjectFile(params()->dtb_filename, true);
114  if (!dtb_file) {
115  fatal("couldn't load DTB file: %s\n", params()->dtb_filename);
116  }
117 
118  DtbObject *_dtb_file = dynamic_cast<DtbObject*>(dtb_file);
119 
120  if (_dtb_file) {
121  if (!_dtb_file->addBootCmdLine(params()->boot_osflags.c_str(),
122  params()->boot_osflags.size())) {
123  warn("couldn't append bootargs to DTB file: %s\n",
124  params()->dtb_filename);
125  }
126  } else {
127  warn("dtb_file cast failed; couldn't append bootargs "
128  "to DTB file: %s\n", params()->dtb_filename);
129  }
130 
131  Addr ra = _dtb_file->findReleaseAddr();
132  if (ra)
133  bootReleaseAddr = ra & ~ULL(0x7F);
134 
135  dtb_file->setTextBase(params()->atags_addr + loadAddrOffset);
136  dtb_file->loadSections(physProxy);
137  delete dtb_file;
138 
139  // Kernel boot requirements to set up r0, r1 and r2 in ARMv7
140  for (int i = 0; i < threadContexts.size(); i++) {
141  threadContexts[i]->setIntReg(0, 0);
142  threadContexts[i]->setIntReg(1, params()->machine_type);
143  threadContexts[i]->setIntReg(2, params()->atags_addr + loadAddrOffset);
144  }
145 }
146 
148 {
149  if (uDelaySkipEvent)
150  delete uDelaySkipEvent;
152  delete constUDelaySkipEvent;
153 }
154 
156 FreebsdArmSystemParams::create()
157 {
158  return new FreebsdArmSystem(this);
159 }
160 
161 void
163 {
164 }
virtual void initState()
Initialise the system.
Definition: system.cc:270
Bitfield< 7 > i
Definition: miscregs.hh:1378
virtual bool loadGlobalSymbols(SymbolTable *symtab, Addr base=0, Addr offset=0, Addr mask=maxAddr)=0
FreebsdArmSystemParams Params
Boilerplate params code.
Definition: system.hh:51
ip6_addr_t addr
Definition: inet.hh:335
SymbolTable * debugSymbolTable
Global unified debugging symbol table (for target).
Definition: symtab.cc:45
This implements an object file format to support loading and modifying flattened device tree blobs fo...
bool findAddress(const std::string &symbol, Addr &address) const
Definition: symtab.hh:97
Addr bootReleaseAddr
Definition: system.hh:113
FreeBSD::UDelayEvent * uDelaySkipEvent
PC based event to skip udelay(<time>) calls and quiesce the processor for the appropriate amount of t...
Definition: system.hh:95
#define warn(...)
Definition: misc.hh:219
PortProxy physProxy
Port to physical memory used for writing object files into ram at boot.
Definition: system.hh:224
void startup()
startup() is the final initialization call before simulation.
Definition: system.cc:162
Addr loadAddrMask
Mask that should be anded for binary/symbol loading.
Definition: system.hh:247
std::vector< ThreadContext * > threadContexts
Definition: system.hh:199
#define fatal(...)
Definition: misc.hh:163
Addr findReleaseAddr()
Parse the DTB file enough to find the provided release address and return it.
Definition: dtb_object.cc:156
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
#define ULL(N)
uint64_t constant
Definition: types.hh:50
virtual bool loadSections(PortProxy &mem_proxy, Addr mask=maxAddr, Addr offset=0)
Definition: object_file.cc:93
SymbolTable * kernelSymtab
kernel symbol table
Definition: system.hh:227
Bitfield< 20, 16 > ra
Definition: types.hh:47
const Params * params() const
Definition: system.hh:53
ObjectFile * kernel
Object pointer for the kernel code.
Definition: system.hh:230
FreebsdArmSystem(Params *p)
Definition: system.cc:53
bool addBootCmdLine(const char *_args, size_t len)
Adds the passed in Command Line options for the kernel to the proper location in the device tree...
Definition: dtb_object.cc:87
ObjectFile * createObjectFile(const string &fname, bool raw)
Definition: object_file.cc:157
PCEvent * kernelPanicEvent
Event to halt the simulator if the kernel calls panic()
Definition: system.hh:85
PCEvent * kernelOopsEvent
Event to halt the simulator if the kernel calls oopses.
Definition: system.hh:88
TranslatingPortProxy Object Declaration for FS.
void initState()
Initialise the system.
Definition: system.cc:77
void setTextBase(Addr a)
Definition: object_file.hh:151
Addr loadAddrOffset
Offset that should be used for binary/symbol loading.
Definition: system.hh:254
#define inform(...)
Definition: misc.hh:221
Bitfield< 0 > p
FreeBSD::UDelayEvent * constUDelaySkipEvent
Another PC based skip event for const_udelay().
Definition: system.hh:102
This class encapsulates the types, structures, constants, functions, and syscall-number mappings spec...
Definition: freebsd.hh:49

Generated on Fri Jun 9 2017 13:03:34 for gem5 by doxygen 1.8.6