gem5 [DEVELOP-FOR-25.1]
Loading...
Searching...
No Matches
fs_workload.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2010, 2012-2013, 2015,2017-2020 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Copyright (c) 2002-2006 The Regents of The University of Michigan
15 * All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are
19 * met: redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer;
21 * redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution;
24 * neither the name of the copyright holders nor the names of its
25 * contributors may be used to endorse or promote products derived from
26 * this software without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 */
40
42
43#include "arch/arm/faults.hh"
45#include "base/loader/symtab.hh"
46#include "cpu/thread_context.hh"
47#include "dev/arm/gic_v2.hh"
48#include "kern/system_events.hh"
49#include "params/ArmFsWorkload.hh"
50#include "params/ArmSystem.hh"
51
52namespace gem5
53{
54
55namespace ArmISA
56{
57
58void
60{
61 PCState new_pc = tc->pcState().as<PCState>();
62 if (inAArch64(tc)) {
63 new_pc.set(tc->getReg(int_reg::X30));
64 } else {
65 new_pc.set(tc->getReg(ReturnAddressReg) & ~1ULL);
66 }
67
68 CheckerCPU *checker = tc->getCheckerCpuPtr();
69 if (checker) {
70 tc->pcStateNoRecord(new_pc);
71 } else {
72 tc->pcState(new_pc);
73 }
74}
75
77{
78 if (kernelObj) {
79 kernelEntry = (kernelObj->entryPoint() & loadAddrMask()) +
81 }
82
83 bootLoaders.reserve(p.boot_loader.size());
84 for (const auto &bl : p.boot_loader) {
85 std::unique_ptr<loader::ObjectFile> bl_obj;
86 bl_obj.reset(loader::createObjectFile(bl));
87
88 fatal_if(!bl_obj, "Could not read bootloader: %s", bl);
89 bootLoaders.emplace_back(std::move(bl_obj));
90 }
91
93
94 fatal_if(!bootLoaders.empty() && !bootldr,
95 "Can't find a matching boot loader / kernel combination!");
96
97 if (bootldr)
98 loader::debugSymbolTable.insert(*bootldr->symtab().globals());
99}
100
101void
103{
105
106 // Reset CP15?? What does that mean -- ali
107
108 // FPEXC.EN = 0
109
110 for (auto *tc: system->threads) {
111 Reset().invoke(tc);
112 tc->activate();
113 }
114
115 auto *arm_sys = dynamic_cast<ArmSystem *>(system);
116
117 if (bootldr) {
118 bool is_gic_v2 =
119 arm_sys->getGIC()->supportsVersion(BaseGic::GicVersion::GIC_V2);
120 bootldr->buildImage().write(system->physProxy);
121
122 inform("Using bootloader at address %#x", bootldr->entryPoint());
123
124 // The address of the boot loader so we know
125 // where to branch to after the reset fault
126 // All other values needed by the boot loader to know what to do
127 fatal_if(!params().cpu_release_addr,
128 "cpu_release_addr must be set with bootloader");
129
130 fatal_if(!arm_sys->params().gic_cpu_addr && is_gic_v2,
131 "gic_cpu_addr must be set with bootloader");
132
133 for (auto *tc: arm_sys->threads) {
134 tc->setReg(int_reg::R3, kernelEntry);
135 if (is_gic_v2)
136 tc->setReg(int_reg::R4, arm_sys->params().gic_cpu_addr);
137 if (getArch() == loader::Arm)
138 tc->setReg(int_reg::R5, params().cpu_release_addr);
139 }
140 inform("Using kernel entry physical address at %#x\n", kernelEntry);
141 } else {
142 // Set the initial PC to be at start of the kernel code
143 if (!arm_sys->highestELIs64())
144 arm_sys->threads[0]->pcState(kernelObj->entryPoint());
145 }
146}
147
148void
154
157{
158 if (obj) {
159 for (auto &bl : bootLoaders) {
160 if (bl->getArch() == obj->getArch())
161 return bl.get();
162 }
163 } else if (!bootLoaders.empty()) {
164 return bootLoaders[0].get();
165 }
166
167 return nullptr;
168}
169
170} // namespace ArmISA
171} // namespace gem5
loader::ObjectFile * getBootLoader(loader::ObjectFile *const obj)
Get a boot loader that matches the kernel.
loader::ObjectFile * bootldr
Pointer to the bootloader object.
void setSystem(System *sys) override
loader::Arch getArch() const override
std::vector< std::unique_ptr< loader::ObjectFile > > bootLoaders
Bootloaders.
void initState() override
initState() is called on each SimObject when not restoring from a checkpoint.
Addr kernelEntry
This differs from entry since it takes into account where the kernel is loaded in memory (with loadAd...
FsWorkload(const Params &p)
void invoke(ThreadContext *tc, const StaticInstPtr &inst=nullStaticInstPtr) override
Definition faults.cc:742
void returnFromFuncIn(ThreadContext *tc) override
static BaseRemoteGDB * build(ListenSocketConfig listen_config, Args... args)
CheckerCPU class.
Definition cpu.hh:85
void set(Addr val) override
Force this PC to reflect a particular value, resetting all its other fields around it.
Definition pcstate.hh:378
void initState() override
initState() is called on each SimObject when not restoring from a checkpoint.
loader::ObjectFile * kernelObj
Addr loadAddrOffset() const
KernelWorkload(const Params &p)
Target & as()
Definition pcstate.hh:73
SimObjectParams Params
ThreadContext is the external interface to all thread state for anything outside of the CPU.
virtual void pcStateNoRecord(const PCStateBase &val)=0
virtual RegVal getReg(const RegId &reg) const
virtual CheckerCPU * getCheckerCpuPtr()=0
virtual const PCStateBase & pcState() const =0
BaseRemoteGDB * gdb
Definition workload.hh:77
virtual void setSystem(System *sys)
Definition workload.hh:88
System * system
Definition workload.hh:81
Implementation of a GICv2.
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition logging.hh:268
const Params & params() const
#define inform(...)
Definition logging.hh:289
constexpr RegId X30
Definition int.hh:270
constexpr RegId R4
Definition int.hh:190
constexpr RegId R3
Definition int.hh:189
constexpr RegId R5
Definition int.hh:191
constexpr auto & ReturnAddressReg
Definition int.hh:655
bool inAArch64(ThreadContext *tc)
Definition utility.cc:127
Bitfield< 0 > p
SymbolTable debugSymbolTable
Global unified debugging symbol table (for target).
Definition symtab.cc:55
Copyright (c) 2024 Arm Limited All rights reserved.
Definition binary32.hh:36

Generated on Mon Oct 27 2025 04:12:59 for gem5 by doxygen 1.14.0