]> git.sur5r.net Git - u-boot/commitdiff
MIPS: Ensure Config.K0=2 applies before any memory accesses
authorPaul Burton <paul.burton@imgtec.com>
Wed, 21 Sep 2016 10:18:57 +0000 (11:18 +0100)
committerDaniel Schwierzeck <daniel.schwierzeck@gmail.com>
Wed, 21 Sep 2016 13:04:04 +0000 (15:04 +0200)
During boot we set Config.K0=2 (uncached) such that any accesses to the
kseg0 memory region are performed uncached before the caches are
initialised. This write to the Config register introduces an execution
hazard between it & any following memory accesses (such as the load of
_gp), which we need to clear in order to ensure those memory accesses
are actually performed uncached. Clear this execution hazard with the
insertion of an ehb execution hazard barrier instruction.

Signed-off-by: Paul Burton <paul.burton@imgtec.com>
arch/mips/cpu/start.S

index c157d03d314f67dad89ead4e55fe82f2ec20912c..8f85ede9ad2b55f9fec68fd4f8f8138ea329afcc 100644 (file)
@@ -127,6 +127,7 @@ reset:
        and     t0, t0, MIPS_CONF_IMPL
        or      t0, t0, CONF_CM_UNCACHED
        mtc0    t0, CP0_CONFIG
+       ehb
 #endif
 
        /*