board: imx53: fix l2 cache initialization
Both http://openocd.zylin.com/542/ and http://openocd.zylin.com/543/ introduce the same typo in the bitfield for initializing the l2 cache of imx53. One year later, http://openocd.zylin.com/1461/ copy-pastes the same typo. The comment above the code show that it's really an error and not the expected behaviour. Fix the typo replacing the incorrect comparison '<' with a left shift. Change-Id: I43725731a2228e28a676215f76936fa289d9395e Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Fixes:e3b3273433
("cfg: add imx53loco board config") Fixes:108a458ab8
("cfg: add icnova_imx53_sodimm board config") Fixes:e608ced330
("ftdi/board: Add support for DENX M53EVK") Reviewed-on: http://openocd.zylin.com/6156 Tested-by: jenkins Reviewed-by: Adrian M Negreanu <adrian.negreanu@nxp.com> Reviewed-by: Oleksij Rempel <linux@rempel-privat.de>
This commit is contained in:
parent
642cdae321
commit
df443551a8
|
@ -79,7 +79,7 @@ proc init_l2cc { } {
|
|||
; #orr r0, r0, #(1 << 22) /* disable write allocate */
|
||||
|
||||
; #mcr 15, 1, r0, c9, c0, 2
|
||||
arm mcr 15 1 9 0 2 [expr 0xC4 | (1<<24) | (1<<23) | (1<22)]
|
||||
arm mcr 15 1 9 0 2 [expr 0xC4 | (1<<24) | (1<<23) | (1<<22)]
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -75,7 +75,7 @@ proc init_l2cc { } {
|
|||
; #orr r0, r0, #(1 << 22) /* disable write allocate */
|
||||
|
||||
; #mcr 15, 1, r0, c9, c0, 2
|
||||
arm mcr 15 1 9 0 2 [expr 0xC4 | (1<<24) | (1<<23) | (1<22)]
|
||||
arm mcr 15 1 9 0 2 [expr 0xC4 | (1<<24) | (1<<23) | (1<<22)]
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -80,7 +80,7 @@ proc init_l2cc { } {
|
|||
; #orr r0, r0, #(1 << 22) /* disable write allocate */
|
||||
|
||||
; #mcr 15, 1, r0, c9, c0, 2
|
||||
arm mcr 15 1 9 0 2 [expr 0xC4 | (1<<24) | (1<<23) | (1<22)]
|
||||
arm mcr 15 1 9 0 2 [expr 0xC4 | (1<<24) | (1<<23) | (1<<22)]
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue