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) 2018 TU Dresden
3  * Copyright (c) 2020 Barkhausen Institut
4  * All rights reserved
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are
8  * met: redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer;
10  * redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution;
13  * neither the name of the copyright holders nor the names of its
14  * contributors may be used to endorse or promote products derived from
15  * this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29 
31 
32 #include "arch/riscv/faults.hh"
34 #include "sim/system.hh"
35 #include "sim/workload.hh"
36 
37 namespace gem5
38 {
39 
40 namespace RiscvISA
41 {
42 
44  _isBareMetal(p.bare_metal), _resetVect(p.reset_vect),
45  bootloader(loader::createObjectFile(p.bootloader))
46 {
47  fatal_if(!bootloader, "Could not load bootloader file %s.", p.bootloader);
50 
52 }
53 
55 {
56  delete bootloader;
57 }
58 
59 void
61 {
63 
65  "Could not load sections to memory.");
66 
67  for (auto *tc: system->threads) {
68  RiscvISA::Reset().invoke(tc);
69  tc->activate();
70  }
71 }
72 
73 } // namespace RiscvISA
74 } // namespace gem5
gem5::SimObject::initState
virtual void initState()
initState() is called on each SimObject when not restoring from a checkpoint.
Definition: sim_object.cc:91
faults.hh
system.hh
gem5::ps2::Reset
@ Reset
Definition: types.hh:69
gem5::loader::ObjectFile::entryPoint
Addr entryPoint() const
Definition: object_file.hh:136
gem5::System::physProxy
PortProxy physProxy
Port to physical memory used for writing object files into ram at boot.
Definition: system.hh:323
fs_workload.hh
gem5::loader::ObjectFile::symtab
const SymbolTable & symtab() const
Definition: object_file.hh:130
gem5::SimObject::Params
SimObjectParams Params
Definition: sim_object.hh:170
gem5::RiscvISA::BareMetal::~BareMetal
~BareMetal()
Definition: fs_workload.cc:54
workload.hh
gem5::RiscvISA::BareMetal::BareMetal
BareMetal(const Params &p)
Definition: fs_workload.cc:43
gem5::Workload
Definition: workload.hh:50
gem5::RiscvISA::BareMetal::bootloaderSymtab
loader::SymbolTable bootloaderSymtab
Definition: fs_workload.hh:50
gem5::RiscvISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:326
gem5::loader::createObjectFile
ObjectFile * createObjectFile(const std::string &fname, bool raw)
Definition: object_file.cc:134
warn_if
#define warn_if(cond,...)
Conditional warning macro that checks the supplied condition and only prints a warning if the conditi...
Definition: logging.hh:283
gem5::RiscvISA::BareMetal::_resetVect
Addr _resetVect
Definition: fs_workload.hh:48
gem5::loader::SymbolTable::insert
bool insert(const Symbol &symbol)
Insert a new symbol in the table if it does not already exist.
Definition: symtab.cc:54
gem5::System::threads
Threads threads
Definition: system.hh:310
gem5::loader::MemoryImage::write
bool write(const PortProxy &proxy) const
Definition: memory_image.cc:53
gem5::Workload::system
System * system
Definition: workload.hh:81
gem5::loader::ImageFile::buildImage
virtual MemoryImage buildImage() const =0
gem5::RiscvISA::BareMetal::initState
void initState() override
initState() is called on each SimObject when not restoring from a checkpoint.
Definition: fs_workload.cc:60
gem5::loader::debugSymbolTable
SymbolTable debugSymbolTable
Global unified debugging symbol table (for target).
Definition: symtab.cc:43
fatal_if
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition: logging.hh:236
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::RiscvISA::BareMetal::bootloader
loader::ObjectFile * bootloader
Definition: fs_workload.hh:49

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