Add --gdb-port
[riscv-isa-sim.git] / riscv / sim.cc
1 // See LICENSE for license details.
2
3 #include "sim.h"
4 #include "mmu.h"
5 #include "htif.h"
6 #include <map>
7 #include <iostream>
8 #include <sstream>
9 #include <climits>
10 #include <cstdlib>
11 #include <cassert>
12 #include <signal.h>
13
14 volatile bool ctrlc_pressed = false;
15 static void handle_signal(int sig)
16 {
17 if (ctrlc_pressed)
18 exit(-1);
19 ctrlc_pressed = true;
20 signal(sig, &handle_signal);
21 }
22
23 sim_t::sim_t(const char* isa, size_t nprocs, size_t mem_mb, bool halted,
24 const std::vector<std::string>& args)
25 : htif(new htif_isasim_t(this, args)), procs(std::max(nprocs, size_t(1))),
26 current_step(0), current_proc(0), debug(false), gdbserver(NULL)
27 {
28 signal(SIGINT, &handle_signal);
29 // allocate target machine's memory, shrinking it as necessary
30 // until the allocation succeeds
31 size_t memsz0 = (size_t)mem_mb << 20;
32 size_t quantum = 1L << 20;
33 if (memsz0 == 0)
34 memsz0 = (size_t)((sizeof(size_t) == 8 ? 4096 : 2048) - 256) << 20;
35
36 memsz = memsz0;
37 while ((mem = (char*)calloc(1, memsz)) == NULL)
38 memsz = (size_t)(memsz*0.9)/quantum*quantum;
39
40 if (memsz != memsz0)
41 fprintf(stderr, "warning: only got %lu bytes of target mem (wanted %lu)\n",
42 (unsigned long)memsz, (unsigned long)memsz0);
43
44 debug_mmu = new mmu_t(this, NULL);
45
46 for (size_t i = 0; i < procs.size(); i++) {
47 procs[i] = new processor_t(isa, this, i);
48 procs[i]->set_halted(halted, HR_CMDLINE);
49 }
50
51 rtc.reset(new rtc_t(procs));
52 make_config_string();
53 }
54
55 sim_t::~sim_t()
56 {
57 for (size_t i = 0; i < procs.size(); i++)
58 delete procs[i];
59 delete debug_mmu;
60 free(mem);
61 }
62
63 int sim_t::run()
64 {
65 if (!debug && log)
66 set_procs_debug(true);
67 while (htif->tick())
68 {
69 if (debug || ctrlc_pressed)
70 interactive();
71 else
72 step(INTERLEAVE);
73 if (gdbserver) {
74 gdbserver->handle();
75 }
76 }
77 return htif->exit_code();
78 }
79
80 void sim_t::step(size_t n)
81 {
82 for (size_t i = 0, steps = 0; i < n; i += steps)
83 {
84 steps = std::min(n - i, INTERLEAVE - current_step);
85 procs[current_proc]->step(steps);
86
87 current_step += steps;
88 if (current_step == INTERLEAVE)
89 {
90 current_step = 0;
91 procs[current_proc]->yield_load_reservation();
92 if (++current_proc == procs.size()) {
93 current_proc = 0;
94 rtc->increment(INTERLEAVE / INSNS_PER_RTC_TICK);
95 }
96
97 htif->tick();
98 }
99 }
100 }
101
102 bool sim_t::running()
103 {
104 for (size_t i = 0; i < procs.size(); i++)
105 if (procs[i]->running())
106 return true;
107 return false;
108 }
109
110 void sim_t::set_debug(bool value)
111 {
112 debug = value;
113 }
114
115 void sim_t::set_log(bool value)
116 {
117 log = value;
118 }
119
120 void sim_t::set_histogram(bool value)
121 {
122 histogram_enabled = value;
123 for (size_t i = 0; i < procs.size(); i++) {
124 procs[i]->set_histogram(histogram_enabled);
125 }
126 }
127
128 void sim_t::set_procs_debug(bool value)
129 {
130 for (size_t i=0; i< procs.size(); i++)
131 procs[i]->set_debug(value);
132 }
133
134 bool sim_t::mmio_load(reg_t addr, size_t len, uint8_t* bytes)
135 {
136 if (addr + len < addr)
137 return false;
138 return bus.load(addr, len, bytes);
139 }
140
141 bool sim_t::mmio_store(reg_t addr, size_t len, const uint8_t* bytes)
142 {
143 if (addr + len < addr)
144 return false;
145 return bus.store(addr, len, bytes);
146 }
147
148 void sim_t::make_config_string()
149 {
150 reg_t rtc_addr = EXT_IO_BASE;
151 bus.add_device(rtc_addr, rtc.get());
152
153 const int align = 0x1000;
154 reg_t cpu_addr = rtc_addr + ((rtc->size() - 1) / align + 1) * align;
155 reg_t cpu_size = align;
156
157 uint32_t reset_vec[8] = {
158 0x297 + DRAM_BASE - DEFAULT_RSTVEC, // reset vector
159 0x00028067, // jump straight to DRAM_BASE
160 0x00000000, // reserved
161 0, // config string pointer
162 0, 0, 0, 0 // trap vector
163 };
164 reset_vec[3] = DEFAULT_RSTVEC + sizeof(reset_vec); // config string pointer
165
166 std::vector<char> rom((char*)reset_vec, (char*)reset_vec + sizeof(reset_vec));
167
168 std::stringstream s;
169 s << std::hex <<
170 "platform {\n"
171 " vendor ucb;\n"
172 " arch spike;\n"
173 "};\n"
174 "rtc {\n"
175 " addr 0x" << rtc_addr << ";\n"
176 "};\n"
177 "ram {\n"
178 " 0 {\n"
179 " addr 0x" << DRAM_BASE << ";\n"
180 " size 0x" << memsz << ";\n"
181 " };\n"
182 "};\n"
183 "core {\n";
184 for (size_t i = 0; i < procs.size(); i++) {
185 s <<
186 " " << i << " {\n"
187 " " << "0 {\n" << // hart 0 on core i
188 " isa " << procs[i]->isa_string << ";\n"
189 " timecmp 0x" << (rtc_addr + 8*(1+i)) << ";\n"
190 " ipi 0x" << cpu_addr << ";\n"
191 " };\n"
192 " };\n";
193 bus.add_device(cpu_addr, procs[i]);
194 cpu_addr += cpu_size;
195 }
196 s << "};\n";
197
198 config_string = s.str();
199 rom.insert(rom.end(), config_string.begin(), config_string.end());
200 rom.resize((rom.size() / align + 1) * align);
201
202 boot_rom.reset(new rom_device_t(rom));
203 bus.add_device(DEFAULT_RSTVEC, boot_rom.get());
204 }