summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAnup Patel <apatel@ventanamicro.com>2021-04-06 10:36:47 +0300
committerAnup Patel <anup@brainfault.org>2022-02-15 18:02:42 +0300
commit8f9607006789512ceae703e82e62566873a83aaa (patch)
tree9a8f507f7849662b226c4421d07777e0995c30d0 /include
parent01250d00447d3838e31c1fc67ce3acb1dd6b2682 (diff)
downloadopensbi-8f9607006789512ceae703e82e62566873a83aaa.tar.xz
lib: sbi: Detect AIA CSRs at boot-time
We extend HART feature detection to discover AIA CSRs at boot-time. Signed-off-by: Anup Patel <anup.patel@wdc.com> Signed-off-by: Anup Patel <apatel@ventanamicro.com> Reviewed-by: Atish Patra <atishp@rivosinc.com>
Diffstat (limited to 'include')
-rw-r--r--include/sbi/sbi_hart.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/sbi/sbi_hart.h b/include/sbi/sbi_hart.h
index d2db9d6..a83b45b 100644
--- a/include/sbi/sbi_hart.h
+++ b/include/sbi/sbi_hart.h
@@ -24,9 +24,11 @@ enum sbi_hart_features {
SBI_HART_HAS_SSCOFPMF = (1 << 3),
/** HART has timer csr implementation in hardware */
SBI_HART_HAS_TIME = (1 << 4),
+ /** HART has AIA local interrupt CSRs */
+ SBI_HART_HAS_AIA = (1 << 5),
/** Last index of Hart features*/
- SBI_HART_HAS_LAST_FEATURE = SBI_HART_HAS_TIME,
+ SBI_HART_HAS_LAST_FEATURE = SBI_HART_HAS_AIA,
};
struct sbi_scratch;