X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=riscv%2Fsim.h;h=6c6e4350702d62b240a42730a20f0b3efbd8f901;hb=aa8cbb1ccd3856fd5e0437b0e24cfd7a3b794b8e;hp=edf15dbf2e926a950cd528b74d09ecdd6d637dd2;hpb=1d2892407fed141d20607ae9c49e50673e2c5c11;p=riscv-isa-sim.git diff --git a/riscv/sim.h b/riscv/sim.h index edf15db..6c6e435 100644 --- a/riscv/sim.h +++ b/riscv/sim.h @@ -13,14 +13,16 @@ #include class mmu_t; -class gdbserver_t; +class remote_bitbang_t; // this class encapsulates the processors and memory in a RISC-V machine. class sim_t : public htif_t { public: - sim_t(const char* isa, size_t _nprocs, size_t mem_mb, bool halted, - const std::vector& args); + sim_t(const char* isa, size_t _nprocs, bool halted, reg_t start_pc, + std::vector> mems, + const std::vector& args, const std::vector hartids, + unsigned progsize, unsigned max_bus_master_bits, bool require_authentication); ~sim_t(); // run the simulation to completion @@ -29,20 +31,22 @@ public: void set_log(bool value); void set_histogram(bool value); void set_procs_debug(bool value); - void set_gdbserver(gdbserver_t* gdbserver) { this->gdbserver = gdbserver; } - const char* get_dts() { return dts.c_str(); } + void set_remote_bitbang(remote_bitbang_t* remote_bitbang) { + this->remote_bitbang = remote_bitbang; + } + const char* get_dts() { if (dts.empty()) reset(); return dts.c_str(); } processor_t* get_core(size_t i) { return procs.at(i); } + unsigned nprocs() const { return procs.size(); } private: - char* mem; // main memory - size_t memsz; // memory size in bytes + std::vector> mems; mmu_t* debug_mmu; // debug port into main memory std::vector procs; + reg_t start_pc; std::string dts; std::unique_ptr boot_rom; std::unique_ptr clint; bus_t bus; - debug_module_t debug_module; processor_t* get_core(const std::string& i); void step(size_t n); // step through simulation @@ -54,13 +58,10 @@ private: bool debug; bool log; bool histogram_enabled; // provide a histogram of PCs - gdbserver_t* gdbserver; + remote_bitbang_t* remote_bitbang; // memory-mapped I/O routines - bool addr_is_mem(reg_t addr) { - return addr >= DRAM_BASE && addr < DRAM_BASE + memsz; - } - char* addr_to_mem(reg_t addr) { return addr_is_mem(addr) ? mem + addr - DRAM_BASE : 0; } + char* addr_to_mem(reg_t addr); bool mmio_load(reg_t addr, size_t len, uint8_t* bytes); bool mmio_store(reg_t addr, size_t len, const uint8_t* bytes); void make_dtb(); @@ -89,7 +90,7 @@ private: friend class processor_t; friend class mmu_t; - friend class gdbserver_t; + friend class debug_module_t; // htif friend void sim_thread_main(void*); @@ -97,12 +98,18 @@ private: context_t* host; context_t target; - void reset() { } + void reset(); void idle(); void read_chunk(addr_t taddr, size_t len, void* dst); void write_chunk(addr_t taddr, size_t len, const void* src); size_t chunk_align() { return 8; } size_t chunk_max_size() { return 8; } + +public: + // Initialize this after procs, because in debug_module_t::reset() we + // enumerate processors, which segfaults if procs hasn't been initialized + // yet. + debug_module_t debug_module; }; extern volatile bool ctrlc_pressed;