lib: sbi: Detect menvcfg CSR at boot time

We add the menvcfg CSR as a HART feature and detect it at boot time
using traping mechanism.

Signed-off-by: Atish Patra <atishp@rivosinc.com>
Signed-off-by: Anup Patel <apatel@ventanamicro.com>
Reviewed-by: Xiang W <wxjstz@126.com>
This commit is contained in:
Atish Patra
2022-03-29 19:25:36 +05:30
committed by Anup Patel
parent 722f80d8e9
commit 31fecad46d
2 changed files with 12 additions and 1 deletions

View File

@@ -26,9 +26,11 @@ enum sbi_hart_features {
SBI_HART_HAS_TIME = (1 << 4),
/** HART has AIA local interrupt CSRs */
SBI_HART_HAS_AIA = (1 << 5),
/** HART has menvcfg CSR */
SBI_HART_HAS_MENVCFG = (1 << 6),
/** Last index of Hart features*/
SBI_HART_HAS_LAST_FEATURE = SBI_HART_HAS_AIA,
SBI_HART_HAS_LAST_FEATURE = SBI_HART_HAS_MENVCFG,
};
struct sbi_scratch;