summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/target/arm/imx31/crt0.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/arm/imx31/crt0.S b/firmware/target/arm/imx31/crt0.S
index ab8e5199e2..d982b91608 100644
--- a/firmware/target/arm/imx31/crt0.S
+++ b/firmware/target/arm/imx31/crt0.S
@@ -198,10 +198,10 @@ remap_start:
198 (1 << 22)) /* Unaligned access support disabled */ 198 (1 << 22)) /* Unaligned access support disabled */
199 bic r0, r0, #((1 << 21) | /* All performance features enabled */ \ 199 bic r0, r0, #((1 << 21) | /* All performance features enabled */ \
200 (1 << 15)) /* Loads to PC set T bit */ 200 (1 << 15)) /* Loads to PC set T bit */
201 bic r0, r0, #((1 << 13) | /* Low vectors */ \ 201 bic r0, r0, #((1 << 13)) /* Low vectors */
202 (1 << 11)) /* Program flow prediction disabled (for now) */
203 orr r0, r0, #((1 << 14) | /* Round-robin replacement for I/D caches */ \ 202 orr r0, r0, #((1 << 14) | /* Round-robin replacement for I/D caches */ \
204 (1 << 12) | /* L1 I-cache enabled */ \ 203 (1 << 12) | /* L1 I-cache enabled */ \
204 (1 << 11) | /* Program flow prediction enabled */ \
205 (1 << 9) | /* ROM protection enabled */ \ 205 (1 << 9) | /* ROM protection enabled */ \
206 (1 << 8)) /* MMU protection enabled */ 206 (1 << 8)) /* MMU protection enabled */
207 orr r0, r0, #((1 << 2) | /* L1 D-cache enabled */ \ 207 orr r0, r0, #((1 << 2) | /* L1 D-cache enabled */ \