Add debug module authentication.
[riscv-isa-sim.git] / riscv / sim.h
1 // See LICENSE for license details.
2
3 #ifndef _RISCV_SIM_H
4 #define _RISCV_SIM_H
5
6 #include "processor.h"
7 #include "devices.h"
8 #include "debug_module.h"
9 #include <fesvr/htif.h>
10 #include <fesvr/context.h>
11 #include <vector>
12 #include <string>
13 #include <memory>
14
15 class mmu_t;
16 class remote_bitbang_t;
17
18 // this class encapsulates the processors and memory in a RISC-V machine.
19 class sim_t : public htif_t
20 {
21 public:
22 sim_t(const char* isa, size_t _nprocs, bool halted, reg_t start_pc,
23 std::vector<std::pair<reg_t, mem_t*>> mems,
24 const std::vector<std::string>& args, const std::vector<int> hartids,
25 unsigned progsize, unsigned max_bus_master_bits, bool require_authentication);
26 ~sim_t();
27
28 // run the simulation to completion
29 int run();
30 void set_debug(bool value);
31 void set_log(bool value);
32 void set_histogram(bool value);
33 void set_procs_debug(bool value);
34 void set_remote_bitbang(remote_bitbang_t* remote_bitbang) {
35 this->remote_bitbang = remote_bitbang;
36 }
37 const char* get_dts() { if (dts.empty()) reset(); return dts.c_str(); }
38 processor_t* get_core(size_t i) { return procs.at(i); }
39 unsigned nprocs() const { return procs.size(); }
40
41 private:
42 std::vector<std::pair<reg_t, mem_t*>> mems;
43 mmu_t* debug_mmu; // debug port into main memory
44 std::vector<processor_t*> procs;
45 reg_t start_pc;
46 std::string dts;
47 std::unique_ptr<rom_device_t> boot_rom;
48 std::unique_ptr<clint_t> clint;
49 bus_t bus;
50
51 processor_t* get_core(const std::string& i);
52 void step(size_t n); // step through simulation
53 static const size_t INTERLEAVE = 5000;
54 static const size_t INSNS_PER_RTC_TICK = 100; // 10 MHz clock for 1 BIPS core
55 static const size_t CPU_HZ = 1000000000; // 1GHz CPU
56 size_t current_step;
57 size_t current_proc;
58 bool debug;
59 bool log;
60 bool histogram_enabled; // provide a histogram of PCs
61 remote_bitbang_t* remote_bitbang;
62
63 // memory-mapped I/O routines
64 char* addr_to_mem(reg_t addr);
65 bool mmio_load(reg_t addr, size_t len, uint8_t* bytes);
66 bool mmio_store(reg_t addr, size_t len, const uint8_t* bytes);
67 void make_dtb();
68
69 // presents a prompt for introspection into the simulation
70 void interactive();
71
72 // functions that help implement interactive()
73 void interactive_help(const std::string& cmd, const std::vector<std::string>& args);
74 void interactive_quit(const std::string& cmd, const std::vector<std::string>& args);
75 void interactive_run(const std::string& cmd, const std::vector<std::string>& args, bool noisy);
76 void interactive_run_noisy(const std::string& cmd, const std::vector<std::string>& args);
77 void interactive_run_silent(const std::string& cmd, const std::vector<std::string>& args);
78 void interactive_reg(const std::string& cmd, const std::vector<std::string>& args);
79 void interactive_freg(const std::string& cmd, const std::vector<std::string>& args);
80 void interactive_fregs(const std::string& cmd, const std::vector<std::string>& args);
81 void interactive_fregd(const std::string& cmd, const std::vector<std::string>& args);
82 void interactive_pc(const std::string& cmd, const std::vector<std::string>& args);
83 void interactive_mem(const std::string& cmd, const std::vector<std::string>& args);
84 void interactive_str(const std::string& cmd, const std::vector<std::string>& args);
85 void interactive_until(const std::string& cmd, const std::vector<std::string>& args);
86 reg_t get_reg(const std::vector<std::string>& args);
87 freg_t get_freg(const std::vector<std::string>& args);
88 reg_t get_mem(const std::vector<std::string>& args);
89 reg_t get_pc(const std::vector<std::string>& args);
90
91 friend class processor_t;
92 friend class mmu_t;
93 friend class debug_module_t;
94
95 // htif
96 friend void sim_thread_main(void*);
97 void main();
98
99 context_t* host;
100 context_t target;
101 void reset();
102 void idle();
103 void read_chunk(addr_t taddr, size_t len, void* dst);
104 void write_chunk(addr_t taddr, size_t len, const void* src);
105 size_t chunk_align() { return 8; }
106 size_t chunk_max_size() { return 8; }
107
108 public:
109 // Initialize this after procs, because in debug_module_t::reset() we
110 // enumerate processors, which segfaults if procs hasn't been initialized
111 // yet.
112 debug_module_t debug_module;
113 };
114
115 extern volatile bool ctrlc_pressed;
116
117 #endif