[rtems commit] bsps/xilinx-zynqmp-rpu: Invalidate caches on start

Joel Sherrill joel at rtems.org
Tue Jan 16 16:58:21 UTC 2024


Module:    rtems
Branch:    master
Commit:    7eee05a37d2d64a8e4d0242fcf24f22d8a907a12
Changeset: http://git.rtems.org/rtems/commit/?id=7eee05a37d2d64a8e4d0242fcf24f22d8a907a12

Author:    Stanislav Pankevich <s.pankevich at gmail.com>
Date:      Tue Nov  7 11:06:21 2023 +0100

bsps/xilinx-zynqmp-rpu: Invalidate caches on start

This corrects an issue where caches can be dirty on warm boot.

---

 bsps/arm/xilinx-zynqmp-rpu/start/bspstarthooks.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/bsps/arm/xilinx-zynqmp-rpu/start/bspstarthooks.c b/bsps/arm/xilinx-zynqmp-rpu/start/bspstarthooks.c
index d35fe8cf13..9050ff4d58 100644
--- a/bsps/arm/xilinx-zynqmp-rpu/start/bspstarthooks.c
+++ b/bsps/arm/xilinx-zynqmp-rpu/start/bspstarthooks.c
@@ -42,6 +42,7 @@ BSP_START_TEXT_SECTION void bsp_start_hook_0(void)
      * on reset.  Since the correct settings in these bits are critical,
      * make sure SCTLR[M, I, A, C, V] are cleared.  Afterwards, exceptions are
      * handled by RTEMS.
+     * After setting the SCTLR, invalidate the caches.
      * Note 1: The APU also does these steps in start.S in _start in the #if block:
      *         `#if (__ARM_ARCH >= 7 && __ARM_ARCH_PROFILE == 'A') || __ARM_ARCH >= 8`
      * Note 2: Not all Arm R cores need this (like the TMS570).  So, this probably should
@@ -55,6 +56,13 @@ BSP_START_TEXT_SECTION void bsp_start_hook_0(void)
       "bic r1, r0, #0x3000 \n"     /* Clear V[13] and I[12] */
       "bic r1, r1, #0x7 \n"        /* Clear C[2] A[1] and M[0] */
       "mcr p15, 0, r1, c1, c0, 0 \n"
+
+      /* Invalidate caches */
+      "mov      r0,#0 \n"
+      "dsb \n"
+      "mcr      p15, 0, r0, c7, c5, 0 \n"
+      "mcr      p15, 0, r0, c15, c5, 0 \n"
+      "isb \n"
         : :);
 }
 



More information about the vc mailing list