[PATCH v2 2/7] aarch64: add support to drop EL3 to EL2

Gedare Bloom gedare at rtems.org
Thu Jun 24 15:50:19 UTC 2021


From: Kinsey Moore <kinsey.moore at oarcorp.com>

---
 bsps/aarch64/shared/start/start.S | 27 ++++++++++++++++++++++++++-
 1 file changed, 26 insertions(+), 1 deletion(-)

diff --git a/bsps/aarch64/shared/start/start.S b/bsps/aarch64/shared/start/start.S
index 3751545ee1..d0d9c2160a 100644
--- a/bsps/aarch64/shared/start/start.S
+++ b/bsps/aarch64/shared/start/start.S
@@ -98,7 +98,32 @@ _start:
 #endif
 	msr SCTLR_EL1, x0
 
-#ifdef BSP_START_IN_HYP_SUPPORT
+#ifdef BSP_START_IN_MON_SUPPORT
+	/* Drop from EL3 to EL2 */
+
+  /* Initialize HCR_EL2 and SCTLR_EL2 */
+  msr HCR_EL2, XZR
+  msr SCTLR_EL2, XZR
+  /* Set EL2 Execution state via SCR_EL3 */
+  mrs x0, SCR_EL3
+  /* Set EL2 to AArch64 */
+  orr x0, x0, #(1<<10)
+  /* Set EL1 to NS */
+  orr x0, x0, #1
+  msr SCR_EL3, x0
+
+  /* set EL2h mode for eret */
+  mov x0, #0b01001
+  msr SPSR_EL3, x0
+
+  /* Set EL2 entry point */
+  adr x0, _el2_start
+  msr ELR_EL3, x0
+  eret
+#endif
+
+#if defined(BSP_START_IN_HYP_SUPPORT) || defined(BSP_START_IN_MON_SUPPORT)
+_el2_start:
 	/* Drop from EL2 to EL1 */
 
 	/* Configure HCR_EL2 */
-- 
2.25.1



More information about the devel mailing list