Skip to content

Commit

Permalink
riscv_debug: document the misa mxl field
Browse files Browse the repository at this point in the history
  • Loading branch information
perigoso authored and Rafael Silva committed Dec 19, 2024
1 parent 5732137 commit e7438a6
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 10 deletions.
17 changes: 7 additions & 10 deletions src/target/riscv_debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,6 @@
#define RV_CSRW_A0 0x00051073U
#define RV_EBREAK 0x00100073U

#define RV_ISA_EXTENSIONS_MASK 0x03ffffffU

#define RV_VENDOR_JEP106_CONT_MASK 0x7fffff80U
#define RV_VENDOR_JEP106_CODE_MASK 0x7fU

Expand Down Expand Up @@ -383,18 +381,17 @@ static void riscv_dm_init(riscv_dm_s *const dbg_module)

static uint8_t riscv_isa_address_width(const uint32_t isa)
{
switch (isa >> 30U) {
case 1:
switch ((isa & RV_ISA_MXL_MASK) >> RV_ISA_MXL_SHIFT) {
case RV_ISA_MXL_32:
return 32U;
case 2:
case RV_ISA_MXL_64:
return 64U;
case 3:
case RV_ISA_MXL_128:
return 128U;
default:
break;
DEBUG_INFO("Unknown address width, defaulting to 32\n");
return 32U;
}
DEBUG_INFO("Unknown address width, defaulting to 32\n");
return 32U;
}

static void riscv_hart_read_ids(riscv_hart_s *const hart)
Expand Down Expand Up @@ -423,7 +420,7 @@ static void riscv_hart_read_ids(riscv_hart_s *const hart)
}

static size_t riscv_snprint_isa_subset(
char *const string_buffer, const size_t buffer_size, const uint32_t access_width, const uint32_t extensions)
char *const string_buffer, const size_t buffer_size, const uint8_t access_width, const uint32_t extensions)
{
size_t offset = snprintf(string_buffer, buffer_size, "rv%" PRIu8, access_width);

Expand Down
13 changes: 13 additions & 0 deletions src/target/riscv_debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,18 @@ typedef struct riscv_hart {
/* The FP base defines the starting register space address for the floating point registers */
#define RV_FP_BASE 0x1020U

/**
* The MXL (Machine XLEN) field encodes the native base integer ISA width
*
* The RISC-V Machine ISA register is MXLEN bits wide so the MXL offset is not fixed
* To work around this we convert the register to it's canonical 32-bit form internally
*/
#define RV_ISA_MXL_SHIFT 30U /* misa Machine XLEN field shift (for 32-bit misa) */
#define RV_ISA_MXL_MASK (0x3U << RV_ISA_MXL_SHIFT) /* misa Machine XLEN field mask (for 32-bit misa) */
#define RV_ISA_MXL_32 0x1U /* misa Machine XLEN field value for 32-bit ISA */
#define RV_ISA_MXL_64 0x2U /* misa Machine XLEN field value for 64-bit ISA */
#define RV_ISA_MXL_128 0x3U /* misa Machine XLEN field value for 128-bit ISA */

/*
* The Extensions field encodes the presence of standard extensions, with a single bit per alphabet letter
* (bit 0 encodes presence of extension “A” through to bit 25 which encodes “Z”)
Expand All @@ -211,6 +223,7 @@ typedef struct riscv_hart {
*
* The list order is the canonical representation order in the ISA subset string
*/
#define RV_ISA_EXTENSIONS_MASK 0x03ffffffU /* misa extensions field mask */

/* Base ISA */
#define RV_ISA_EXT_INTEGER (1U << 8U) /* 'I': RV32I/64I/128I integer base ISA */
Expand Down

0 comments on commit e7438a6

Please sign in to comment.