]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
armv8: fsl-layerscape, ccn504: Set forced-order mode in RNI-6, RNI-20
authorPriyanka Jain <priyanka.jain@nxp.com>
Wed, 9 Nov 2016 06:57:54 +0000 (12:27 +0530)
committerYork Sun <york.sun@nxp.com>
Wed, 18 Jan 2017 17:23:49 +0000 (09:23 -0800)
It is recommended to set forced-order mode in RNI-6,
RNI-20 for performance optimization in LS2088A.

Both LS2080A, LS2088A families has CONFIG_LS2080A define.
As above update is required only for LS2088A, skip this
for LS2080A SoC family.

Signed-off-by: Priyanka Jain <priyanka.jain@nxp.com>
Reviewed-by: York Sun <york.sun@nxp.com>
arch/arm/cpu/armv8/fsl-layerscape/lowlevel.S

index 72f2c11baf65104c3af95e0f9873fa20aec1e6ed..340445922d7e5a809dd6f88b369599f59f0e414b 100644 (file)
@@ -29,6 +29,26 @@ ENTRY(lowlevel_init)
        ldr     x0, =CCI_AUX_CONTROL_BASE(20)
        ldr     x1, =0x00000010
        bl      ccn504_set_aux
+
+       /*
+        * Set forced-order mode in RNI-6, RNI-20
+        * This is required for performance optimization on LS2088A
+        * LS2080A family does not support setting forced-order mode,
+        * so skip this operation for LS2080A family
+        */
+       bl      get_svr
+       lsr     w0, w0, #16
+       ldr     w1, =SVR_DEV_LS2080A
+       cmp     w0, w1
+       b.eq    1f
+
+       ldr     x0, =CCI_AUX_CONTROL_BASE(6)
+       ldr     x1, =0x00000020
+       bl      ccn504_set_aux
+       ldr     x0, =CCI_AUX_CONTROL_BASE(20)
+       ldr     x1, =0x00000020
+       bl      ccn504_set_aux
+1:
 #endif
 
        /* Add fully-coherent masters to DVM domain */