gem5  v20.1.0.0
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 
36 namespace RiscvISA
37 {
38 
40  bootloader(Loader::createObjectFile(p->bootloader))
41 {
42  fatal_if(!bootloader, "Could not load bootloader file %s.", p->bootloader);
45 }
46 
48 {
49  delete bootloader;
50 }
51 
52 void
54 {
56 
57  for (auto *tc: system->threads) {
58  RiscvISA::Reset().invoke(tc);
59  tc->activate();
60  }
61 
63  "Could not load sections to memory.");
64 
65  for (auto *tc: system->threads) {
66  RiscvISA::Reset().invoke(tc);
67  tc->activate();
68  }
69 }
70 
71 } // namespace RiscvISA
72 
74 RiscvBareMetalParams::create()
75 {
76  return new RiscvISA::BareMetal(this);
77 }
RiscvISA::BareMetal::~BareMetal
~BareMetal()
Definition: fs_workload.cc:47
faults.hh
system.hh
Loader::MemoryImage::write
bool write(const PortProxy &proxy) const
Definition: memory_image.cc:50
SimObject::initState
virtual void initState()
initState() is called on each SimObject when not restoring from a checkpoint.
Definition: sim_object.cc:91
System::physProxy
PortProxy physProxy
Port to physical memory used for writing object files into ram at boot.
Definition: system.hh:324
fs_workload.hh
RiscvISA::FsWorkload
Definition: fs_workload.hh:40
Loader::createObjectFile
ObjectFile * createObjectFile(const std::string &fname, bool raw)
Definition: object_file.cc:61
RiscvISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
Workload::system
System * system
Definition: workload.hh:64
Loader::ImageFile::buildImage
virtual MemoryImage buildImage() const =0
RiscvISA
Definition: fs_workload.cc:36
Loader
Definition: process.hh:39
Loader::ObjectFile::entryPoint
Addr entryPoint() const
Definition: object_file.hh:108
Loader::ObjectFile::symtab
const SymbolTable & symtab() const
Definition: object_file.hh:102
RiscvISA::BareMetal::bootloader
Loader::ObjectFile * bootloader
Definition: fs_workload.hh:41
RiscvISA::BareMetal
Definition: fs_workload.hh:38
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:263
System::threads
Threads threads
Definition: system.hh:309
RiscvISA::BareMetal::initState
void initState() override
initState() is called on each SimObject when not restoring from a checkpoint.
Definition: fs_workload.cc:53
RiscvISA::FsWorkload::_resetVect
Addr _resetVect
Definition: fs_workload.hh:46
RiscvISA::BareMetal::bootloaderSymtab
Loader::SymbolTable bootloaderSymtab
Definition: fs_workload.hh:42
RiscvISA::BareMetal::Params
RiscvBareMetalParams Params
Definition: fs_workload.hh:45
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:219
RiscvISA::BareMetal::BareMetal
BareMetal(Params *p)
Definition: fs_workload.cc:39
object_file.hh
Ps2::Reset
@ Reset
Definition: types.hh:63

Generated on Wed Sep 30 2020 14:01:59 for gem5 by doxygen 1.8.17