Commit 2d33b87d authored by Deepak Saxena's avatar Deepak Saxena

[ARM PATCH] 1215/1: Vector relocation not being disabled at reset

This patch solves the problem of soft reboots on Iq80310, IQ80321, and BRH
platforms.  The problem was that during the RedBoot PCI scan, we were getting
data aborts due to non-existent PCI devices.  It looks like redboot doesn't
cleanup after us and turn of vector relocation, so we were jumping off into
nowhere.
parent ff42067b
......@@ -156,7 +156,7 @@ ENTRY(cpu_xscale_reset)
msr cpsr_c, r1 @ reset CPSR
mrc p15, 0, r1, c1, c0, 0 @ ctrl register
bic r1, r1, #0x0086 @ ........B....CA.
bic r1, r1, #0x1900 @ ...IZ..S........
bic r1, r1, #0x3900 @ ..VIZ..S........
mcr p15, 0, r1, c1, c0, 0 @ ctrl register
mcr p15, 0, ip, c7, c7, 0 @ invalidate I,D caches & BTB
bic r1, r1, #0x0001 @ ...............M
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment