]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ARM: zImage: some comments for __armv3_mpu_cache_on
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Tue, 26 Jan 2010 21:14:23 +0000 (22:14 +0100)
committerUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Thu, 17 Jun 2010 09:09:40 +0000 (11:09 +0200)
__armv3_mpu_cache_on seems broken.  As there is noone around who knows
about these machines just keep the code as is but point out the strange
things.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
arch/arm/boot/compressed/head.S

index 390aa92ef04d9433262976bcb5d3854954ecfc0f..7b7d95c84641135c2a92501cc45328b125b80bd0 100644 (file)
@@ -396,12 +396,18 @@ __armv3_mpu_cache_on:
 
                mov     r0, #0
                mcr     p15, 0, r0, c7, c0, 0   @ invalidate whole cache v3
+               /*
+                * ?? ARMv3 MMU does not allow reading the control register,
+                * does this really work on ARMv3 MPU?
+                */
                mrc     p15, 0, r0, c1, c0, 0   @ read control reg
                                                @ .... .... .... WC.M
                orr     r0, r0, #0x000d         @ .... .... .... 11.1
+               /* ?? this overwrites the value constructed above? */
                mov     r0, #0
                mcr     p15, 0, r0, c1, c0, 0   @ write control reg
 
+               /* ?? invalidate for the second time? */
                mcr     p15, 0, r0, c7, c0, 0   @ invalidate whole cache v3
                mov     pc, lr