summaryrefslogtreecommitdiff
path: root/include/sbi
diff options
context:
space:
mode:
authorAnup Patel <anup.patel@wdc.com>2020-08-18 09:21:16 +0300
committerAnup Patel <anup@brainfault.org>2020-09-01 07:58:26 +0300
commit7b0b289887380d2e71210f12b5ce0f3afc011b35 (patch)
tree14af735edbeccd13b12a41964c959b14b6488cb4 /include/sbi
parent4f3bad6e43f0e5a1a124847edf910e309ae9d59a (diff)
downloadopensbi-7b0b289887380d2e71210f12b5ce0f3afc011b35.tar.xz
lib: sbi: Remove redundant SBI_HART_HAS_PMP feature
The SBI_HART_HAS_PMP feature is redundant because we already have number of PMP regions returned by sbi_hart_pmp_count(). Checking whether PMP is supported for a HART can be simply done by checking non-zero value returned by sbi_hart_pmp_count(). Signed-off-by: Anup Patel <anup.patel@wdc.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Atish Patra <atish.patra@wdc.com>
Diffstat (limited to 'include/sbi')
-rw-r--r--include/sbi/sbi_hart.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/sbi/sbi_hart.h b/include/sbi/sbi_hart.h
index 51c2c35..c2ea686 100644
--- a/include/sbi/sbi_hart.h
+++ b/include/sbi/sbi_hart.h
@@ -14,14 +14,12 @@
/** Possible feature flags of a hart */
enum sbi_hart_features {
- /** Hart has PMP support */
- SBI_HART_HAS_PMP = (1 << 0),
/** Hart has S-mode counter enable */
- SBI_HART_HAS_SCOUNTEREN = (1 << 1),
+ SBI_HART_HAS_SCOUNTEREN = (1 << 0),
/** Hart has M-mode counter enable */
- SBI_HART_HAS_MCOUNTEREN = (1 << 2),
+ SBI_HART_HAS_MCOUNTEREN = (1 << 1),
/** HART has timer csr implementation in hardware */
- SBI_HART_HAS_TIME = (1 << 3),
+ SBI_HART_HAS_TIME = (1 << 2),
/** Last index of Hart features*/
SBI_HART_HAS_LAST_FEATURE = SBI_HART_HAS_TIME,