From: Anup Patel Date: Tue, 12 Dec 2023 09:49:11 +0000 (+0530) Subject: lib: sbi: Do not enter OpenSBI with mseccfg.MML == 1 X-Git-Tag: v1.4~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2b80b92f028aa3726c6488eaaefddbdec43c5b54;p=platform%2Fkernel%2Fopensbi.git lib: sbi: Do not enter OpenSBI with mseccfg.MML == 1 On platforms with Smepmp, the previous booting stage must enter OpenSBI with mseccfg.MML == 0. This allows OpenSBI to configure it's own M-mode only regions without depending on the previous booting stage. Signed-off-by: Anup Patel --- diff --git a/lib/sbi/sbi_hart.c b/lib/sbi/sbi_hart.c index 46cd55d..e2b93e6 100644 --- a/lib/sbi/sbi_hart.c +++ b/lib/sbi/sbi_hart.c @@ -914,6 +914,16 @@ __pmp_skip: /* Mark hart feature detection done */ hfeatures->detected = true; + /* + * On platforms with Smepmp, the previous booting stage must + * enter OpenSBI with mseccfg.MML == 0. This allows OpenSBI + * to configure it's own M-mode only regions without depending + * on the previous booting stage. + */ + if (sbi_hart_has_extension(scratch, SBI_HART_EXT_SMEPMP) && + (csr_read(CSR_MSECCFG) & MSECCFG_MML)) + return SBI_EILL; + return 0; }