191 lines
7.8 KiB
C++
191 lines
7.8 KiB
C++
/*
|
|
* sc_core_adapter.h
|
|
*
|
|
* Created on: Jul 5, 2023
|
|
* Author: eyck
|
|
*/
|
|
|
|
#ifndef _SYSC_SC_CORE_ADAPTER_H_
|
|
#define _SYSC_SC_CORE_ADAPTER_H_
|
|
|
|
#include "sc_core_adapter_if.h"
|
|
#include <iostream>
|
|
#include <iss/iss.h>
|
|
#include <iss/vm_types.h>
|
|
#include <scc/report.h>
|
|
#include <util/ities.h>
|
|
#include <iss/mem/memory_if.h>
|
|
|
|
namespace sysc {
|
|
template <typename PLAT> class sc_core_adapter : public PLAT, public sc_core_adapter_if {
|
|
public:
|
|
using this_class = sc_core_adapter<PLAT>;
|
|
using reg_t = typename iss::arch::traits<typename PLAT::core>::reg_t;
|
|
using phys_addr_t = typename iss::arch::traits<typename PLAT::core>::phys_addr_t;
|
|
sc_core_adapter(sysc::tgfs::core_complex_if* owner)
|
|
: owner(owner) {
|
|
this->csr_rd_cb[iss::arch::time] = MK_CSR_RD_CB(read_time);
|
|
if(sizeof(reg_t) == 4)
|
|
this->csr_rd_cb[iss::arch::timeh] = MK_CSR_RD_CB(read_time);
|
|
this->memories.replace_last(*this);
|
|
}
|
|
|
|
iss::arch_if* get_arch_if() override { return this; }
|
|
|
|
void set_mhartid(unsigned id) override { PLAT::set_mhartid(id); }
|
|
|
|
uint32_t get_mode() override { return this->reg.PRIV; }
|
|
|
|
void set_interrupt_execution(bool v) override { this->interrupt_sim = v ? 1 : 0; }
|
|
|
|
bool get_interrupt_execution() override { return this->interrupt_sim; }
|
|
|
|
uint64_t get_state() override { return this->state.mstatus.backing.val; }
|
|
|
|
void notify_phase(iss::arch_if::exec_phase p) override {
|
|
if(p == iss::arch_if::ISTART && !first) {
|
|
auto cycle_incr = owner->get_last_bus_cycles();
|
|
if(cycle_incr > 1)
|
|
this->instr_if.update_last_instr_cycles(cycle_incr);
|
|
owner->sync(this->instr_if.get_total_cycles());
|
|
}
|
|
first = false;
|
|
}
|
|
|
|
iss::sync_type needed_sync() const override { return iss::PRE_SYNC; }
|
|
|
|
void disass_output(uint64_t pc, const std::string instr) override {
|
|
static constexpr std::array<const char, 4> lvl = {{'U', 'S', 'H', 'M'}};
|
|
if(!owner->disass_output(pc, instr)) {
|
|
std::stringstream s;
|
|
s << "[p:" << lvl[this->reg.PRIV] << ";s:0x" << std::hex << std::setfill('0') << std::setw(sizeof(reg_t) * 2)
|
|
<< (reg_t)this->state.mstatus << std::dec << ";c:" << this->reg.icount + this->cycle_offset << "]";
|
|
SCCDEBUG(owner->hier_name()) << "disass: "
|
|
<< "0x" << std::setw(16) << std::right << std::setfill('0') << std::hex << pc << "\t\t"
|
|
<< std::setw(40) << std::setfill(' ') << std::left << instr << s.str();
|
|
}
|
|
};
|
|
|
|
iss::mem::memory_if get_mem_if() override {
|
|
return iss::mem::memory_if{
|
|
.rd_mem{util::delegate<iss::mem::rd_mem_func_sig>::from<this_class, &this_class::read_mem>(this)},
|
|
.wr_mem{util::delegate<iss::mem::wr_mem_func_sig>::from<this_class, &this_class::write_mem>(this)}};
|
|
}
|
|
|
|
iss::status read_mem(iss::access_type access, uint64_t addr, unsigned length, uint8_t* data) {
|
|
if(access && iss::access_type::DEBUG)
|
|
return owner->read_mem_dbg(addr, length, data) ? iss::Ok : iss::Err;
|
|
else {
|
|
return owner->read_mem(addr, length, data, is_fetch(access)) ? iss::Ok : iss::Err;
|
|
}
|
|
}
|
|
|
|
iss::status write_mem(iss::access_type access, uint64_t addr, unsigned length, uint8_t const* data) {
|
|
if(access && iss::access_type::DEBUG)
|
|
return owner->write_mem_dbg(addr, length, data) ? iss::Ok : iss::Err;
|
|
if(addr == this->tohost) {
|
|
reg_t cur_data = *reinterpret_cast<const reg_t*>(data);
|
|
// Extract Device (bits 63:56)
|
|
uint8_t device = sizeof(reg_t) == 4 ? 0 : (cur_data >> 56) & 0xFF;
|
|
// Extract Command (bits 55:48)
|
|
uint8_t command = sizeof(reg_t) == 4 ? 0 : (cur_data >> 48) & 0xFF;
|
|
// Extract payload (bits 47:0)
|
|
uint64_t payload_addr = cur_data & 0xFFFFFFFFFFFFULL; // 24bits
|
|
if(payload_addr & 1) {
|
|
if(payload_addr != 0x1) {
|
|
SCCERR(owner->hier_name()) << "tohost value is 0x" << std::hex << payload_addr << std::dec << " (" << payload_addr
|
|
<< "), stopping simulation";
|
|
} else {
|
|
SCCINFO(owner->hier_name())
|
|
<< "tohost value is 0x" << std::hex << payload_addr << std::dec << " (" << payload_addr << "), stopping simulation";
|
|
}
|
|
this->reg.trap_state = std::numeric_limits<uint32_t>::max();
|
|
this->interrupt_sim = payload_addr;
|
|
#ifndef WITH_TCC
|
|
throw(iss::simulation_stopped(payload_addr));
|
|
#endif
|
|
return iss::Ok;
|
|
}
|
|
if(device == 0 && command == 0) {
|
|
std::array<uint64_t, 8> loaded_payload;
|
|
auto res = owner->read_mem(payload_addr, 8 * sizeof(uint64_t), reinterpret_cast<uint8_t*>(loaded_payload.data()), false)
|
|
? iss::Ok
|
|
: iss::Err;
|
|
if(res == iss::Err) {
|
|
SCCERR(owner->hier_name()) << "Syscall read went wrong";
|
|
return iss::Ok;
|
|
}
|
|
uint64_t syscall_num = loaded_payload.at(0);
|
|
if(syscall_num == 64) // SYS_WRITE
|
|
return this->execute_sys_write(this, loaded_payload, PLAT::MEM);
|
|
SCCERR(owner->hier_name()) << "tohost syscall with number 0x" << std::hex << syscall_num << std::dec << " (" << syscall_num
|
|
<< ") not implemented";
|
|
this->reg.trap_state = std::numeric_limits<uint32_t>::max();
|
|
this->interrupt_sim = payload_addr;
|
|
return iss::Ok;
|
|
}
|
|
SCCERR(owner->hier_name()) << "tohost functionality not implemented for device " << device << " and command " << command;
|
|
this->reg.trap_state = std::numeric_limits<uint32_t>::max();
|
|
this->interrupt_sim = payload_addr;
|
|
return iss::Ok;
|
|
}
|
|
auto res = owner->write_mem(addr, length, data) ? iss::Ok : iss::Err;
|
|
return res;
|
|
}
|
|
|
|
iss::status read_time(unsigned addr, reg_t& val) {
|
|
uint64_t time_val = owner->mtime_i.get_interface() ? owner->mtime_i.read() : 0;
|
|
if(addr == iss::arch::time) {
|
|
val = static_cast<reg_t>(time_val);
|
|
} else if(addr == iss::arch::timeh) {
|
|
if(sizeof(reg_t) != 4)
|
|
return iss::Err;
|
|
val = static_cast<reg_t>(time_val >> 32);
|
|
}
|
|
return iss::Ok;
|
|
}
|
|
|
|
void wait_until(uint64_t flags) override {
|
|
SCCDEBUG(owner->hier_name()) << "Sleeping until interrupt";
|
|
PLAT::wait_until(flags);
|
|
while(this->reg.pending_trap == 0 && (this->csr[iss::arch::mip] & this->csr[iss::arch::mie]) == 0) {
|
|
sc_core::wait(wfi_evt);
|
|
}
|
|
}
|
|
|
|
void local_irq(short id, bool value) override {
|
|
reg_t mask = 0;
|
|
switch(id) {
|
|
case 3: // SW
|
|
mask = 1 << 3;
|
|
break;
|
|
case 7: // timer
|
|
mask = 1 << 7;
|
|
break;
|
|
case 11: // external
|
|
mask = 1 << 11;
|
|
break;
|
|
default:
|
|
if(id > 15)
|
|
mask = 1 << id;
|
|
break;
|
|
}
|
|
if(value) {
|
|
this->csr[iss::arch::mip] |= mask;
|
|
wfi_evt.notify();
|
|
} else
|
|
this->csr[iss::arch::mip] &= ~mask;
|
|
this->check_interrupt();
|
|
if(value)
|
|
SCCTRACE(owner->hier_name()) << "Triggering interrupt " << id << " Pending trap: " << this->reg.pending_trap;
|
|
}
|
|
|
|
private:
|
|
sysc::tgfs::core_complex_if* const owner{nullptr};
|
|
sc_core::sc_event wfi_evt;
|
|
unsigned to_host_wr_cnt = 0;
|
|
bool first{true};
|
|
};
|
|
} // namespace sysc
|
|
#endif /* _SYSC_SC_CORE_ADAPTER_H_ */
|