riscv: dts: move out AE350 L2 node from cpus node
authorRick Chen <rick@andestech.com>
Wed, 28 Aug 2019 10:46:10 +0000 (18:46 +0800)
committerAndes <uboot@andestech.com>
Tue, 3 Sep 2019 01:31:03 +0000 (09:31 +0800)
When L2 node exists inside cpus node, uclass_get_device
can not parse L2 node successfully. So move it outside
from cpus node.

Also add tag-ram-ctl and data-ram-ctl attributes for
v5l2 cache controller driver. This can adjust timing
by requirement from dtb to improve performance.

Signed-off-by: Rick Chen <rick@andestech.com>
Cc: KC Lin <kclin@andestech.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
arch/riscv/dts/ae350_32.dts
arch/riscv/dts/ae350_64.dts

index cb6ee13..97b7cee 100644 (file)
                                compatible = "riscv,cpu-intc";
                        };
                };
+       };
 
-               L2: l2-cache@e0500000 {
-                       compatible = "cache";
-                       cache-level = <2>;
-                       cache-size = <0x40000>;
-                       reg = <0x0 0xe0500000 0x0 0x40000>;
-               };
+       L2: l2-cache@e0500000 {
+               compatible = "v5l2cache";
+               cache-level = <2>;
+               cache-size = <0x40000>;
+               reg = <0xe0500000 0x40000>;
+               andes,inst-prefetch = <3>;
+               andes,data-prefetch = <3>;
+               /* The value format is <XRAMOCTL XRAMICTL> */
+               andes,tag-ram-ctl = <0 0>;
+               andes,data-ram-ctl = <0 0>;
        };
 
        memory@0 {
index 705491a..d8f00f8 100644 (file)
                                compatible = "riscv,cpu-intc";
                        };
                };
+       };
 
-               L2: l2-cache@e0500000 {
-                       compatible = "cache";
-                       cache-level = <2>;
-                       cache-size = <0x40000>;
-                       reg = <0x0 0xe0500000 0x0 0x40000>;
-               };
+       L2: l2-cache@e0500000 {
+               compatible = "v5l2cache";
+               cache-level = <2>;
+               cache-size = <0x40000>;
+               reg = <0x0 0xe0500000 0x0 0x40000>;
+               andes,inst-prefetch = <3>;
+               andes,data-prefetch = <3>;
+               /* The value format is <XRAMOCTL XRAMICTL> */
+               andes,tag-ram-ctl = <0 0>;
+               andes,data-ram-ctl = <0 0>;
        };
 
        memory@0 {