// See LICENSE for license details. #ifndef _RISCV_CFG_H #define _RISCV_CFG_H #include #include "decode.h" #include "mmu.h" #include template class cfg_arg_t { public: cfg_arg_t(T default_val) : value(default_val), was_set(false) {} bool overridden() const { return was_set; } T operator()() const { return value; } T operator=(const T v) { value = v; was_set = true; return value; } private: T value; bool was_set; }; // Configuration that describes a memory region class mem_cfg_t { public: static bool check_if_supported(reg_t base, reg_t size) { // The truth of these conditions should be ensured by whatever is creating // the regions in the first place, but we have them here to make sure that // we can't end up describing memory regions that don't make sense. They // ask that the page size is a multiple of the minimum page size, that the // page is aligned to the minimum page size, that the page is non-empty and // that the top address is still representable in a reg_t. return (size % PGSIZE == 0) && (base % PGSIZE == 0) && (base + size > base); } mem_cfg_t(reg_t base, reg_t size) : base(base), size(size) { assert(mem_cfg_t::check_if_supported(base, size)); } reg_t base; reg_t size; }; class cfg_t { public: cfg_t(std::pair default_initrd_bounds, const char *default_bootargs, const char *default_isa, const char *default_priv, const char *default_varch, const reg_t default_pmpregions, const std::vector &default_mem_layout, const std::vector default_hartids, bool default_real_time_clint) : initrd_bounds(default_initrd_bounds), bootargs(default_bootargs), isa(default_isa), priv(default_priv), varch(default_varch), pmpregions(default_pmpregions), mem_layout(default_mem_layout), hartids(default_hartids), explicit_hartids(false), real_time_clint(default_real_time_clint) {} cfg_arg_t> initrd_bounds; cfg_arg_t bootargs; cfg_arg_t isa; cfg_arg_t priv; cfg_arg_t varch; reg_t pmpregions; cfg_arg_t> mem_layout; std::optional start_pc; cfg_arg_t> hartids; bool explicit_hartids; cfg_arg_t real_time_clint; size_t nprocs() const { return hartids().size(); } }; #endif