Files
rk35xx-android14/external/arm-neon-tests/InitCache.s
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

53 lines
2.3 KiB
ArmAsm

; Copyright ARM Ltd 2005. All rights reserved.
;==================================================================
; This code provides basic global enable for a Cortex-A8 cache
; and program flow prediction
; This code must be run from a privileged mode
;==================================================================
AREA CORTEXA8CACHE, CODE, READONLY
EXPORT core_init
core_init
;==================================================================
; Global Enable for Cortex-A8 Instruction and Data Caching
;==================================================================
MRC p15, 0, r0, c1, c0, 0 ; read CP15 register 1 into r0
ORR r0, r0, #(0x1 <<12) ; enable I Cache
;BIC r0, r0, #(0x1 <<12) ; Clear bit 0
ORR r0, r0, #(0x1 <<2) ; enable D Cache
;BIC r0, r0, #(0x1 << 2) ; Clear bit 0
ORR r0, r0, #0x1 ; enable MMU
MCR p15, 0, r0, c1, c0, 0 ; write CP15 register 1
;==================================================================
; Enable Cortex-A8 Level2 Unified Cache
;==================================================================
MRC p15, 0, r0, c1, c0, 1 ; Read Auxiliary Control Register
ORR r0, r0, #2 ; L2EN bit, enable L2 cache
;BIC r0, r0, #(0x1 << 1) ; L2EN bit, disable L2 cache
;ORR r0, r0, #(0x1 << 4) ;Enables speculative accesses on AXI
ORR r0, r0, #(0x1 << 4) ;Enables speculative accesses on AXI
ORR r0, r0, #(0x1 << 5) ;Enables caching NEON data within the L1 data cache
MCR p15, 0, r0, c1, c0, 1 ; Write Auxiliary Control Register
;==================================================================
; Cortex-A8 program flow prediction
;==================================================================
MRC p15, 0, r0, c1, c0, 0 ; read CP15 register 1 into r0
ORR r0, r0, #(0x1 <<11) ; Enable all forms of branch prediction
;BIC r0, r0, #(0x1 << 11) ; Disable all forms of branch prediction
MCR p15, 0, r0, c1, c0, 0 ; write CP15 register 1
;==================================================================
BX lr
END ; mark the end of this file