gem5  [DEVELOP-FOR-23.0]
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
fs_workload.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2021 Huawei International
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 
30 
31 #include "arch/riscv/faults.hh"
32 #include "base/loader/dtb_file.hh"
34 #include "base/loader/symtab.hh"
35 #include "sim/kernel_workload.hh"
36 #include "sim/system.hh"
37 
38 namespace gem5
39 {
40 
41 namespace RiscvISA
42 {
43 
44 void
46 {
48 
49  if (params().dtb_filename != "") {
50  inform("Loading DTB file: %s at address %#x\n", params().dtb_filename,
51  params().dtb_addr);
52 
53  auto *dtb_file = new loader::DtbFile(params().dtb_filename);
54 
55  if (!dtb_file->addBootCmdLine(
56  commandLine.c_str(), commandLine.size())) {
57  warn("couldn't append bootargs to DTB file: %s\n",
58  params().dtb_filename);
59  }
60 
61  dtb_file->buildImage().offset(params().dtb_addr)
62  .write(system->physProxy);
63  delete dtb_file;
64 
65  for (auto *tc: system->threads) {
66  tc->setReg(int_reg::A1, params().dtb_addr);
67  }
68  } else {
69  warn("No DTB file specified\n");
70  }
71 
72  for (auto *tc: system->threads) {
73  RiscvISA::Reset().invoke(tc);
74  tc->activate();
75  }
76 }
77 
78 } // namespace RiscvISA
79 } // namespace gem5
warn
#define warn(...)
Definition: logging.hh:256
faults.hh
system.hh
gem5::ps2::Reset
@ Reset
Definition: types.hh:69
gem5::System::physProxy
PortProxy physProxy
Port to physical memory used for writing object files into ram at boot.
Definition: system.hh:323
gem5::KernelWorkload::commandLine
const std::string commandLine
Definition: kernel_workload.hh:74
dtb_file.hh
gem5::SimObject::params
const Params & params() const
Definition: sim_object.hh:176
fs_workload.hh
gem5::RiscvISA::int_reg::A1
constexpr RegId A1
Definition: int.hh:102
inform
#define inform(...)
Definition: logging.hh:257
gem5::System::threads
Threads threads
Definition: system.hh:310
gem5::Workload::system
System * system
Definition: workload.hh:81
symtab.hh
kernel_workload.hh
gem5::RiscvISA::FsLinux::initState
void initState() override
initState() is called on each SimObject when not restoring from a checkpoint.
Definition: fs_workload.cc:45
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
object_file.hh
gem5::loader::DtbFile
Definition: dtb_file.hh:46
gem5::KernelWorkload::initState
void initState() override
initState() is called on each SimObject when not restoring from a checkpoint.
Definition: kernel_workload.cc:96

Generated on Sun Jul 30 2023 01:56:47 for gem5 by doxygen 1.8.17