소스 검색

[libcpu/arm/cortex-a] Revert safety MMU initialization. (#6796)

* Revert safety MMU initialization.

Co-authored-by: Wayne Lin <wclin@nuvoton.com>
Wayne 2 년 전
부모
커밋
3309ef6001
1개의 변경된 파일8개의 추가작업 그리고 1개의 파일을 삭제
  1. 8 1
      libcpu/arm/cortex-a/start_gcc.S

+ 8 - 1
libcpu/arm/cortex-a/start_gcc.S

@@ -147,7 +147,14 @@ after_enable_mmu:
 
     /* disable the data alignment check */
     mrc p15, 0, r1, c1, c0, 0
-    bic r1, #(1<<1)
+    bic r1, #(1<<1)             /* Disable Alignment fault checking */
+#ifndef RT_USING_SMART
+    bic r1, #(1<<0)             /* Disable MMU */
+    bic r1, #(1<<2)             /* Disable data cache */
+    bic r1, #(1<<11)            /* Disable program flow prediction */
+    bic r1, #(1<<12)            /* Disable instruction cache */
+    bic r1, #(3<<19)            /* bit[20:19] must be zero */
+#endif /* RT_USING_SMART */
     mcr p15, 0, r1, c1, c0, 0
 
     /* enable I cache + branch prediction */