ARM64: dts: bcm2710: add psci device node
authoregukim <egukim@dignsys.com>
Mon, 3 Jul 2017 05:06:47 +0000 (14:06 +0900)
committerHoegeun Kwon <hoegeun.kwon@samsung.com>
Tue, 30 Mar 2021 01:38:56 +0000 (10:38 +0900)
This patch changes the enable-method from 'spin-table' to
'PSCI (Power State Coordination Interface)' in order to control
the cpu state such as cpu up/down.

Change-Id: I92eaa95cbccbd86f6067bc9977acc45813703cad
Signed-off-by: eunggu kim <egukim@dignsys.com>
arch/arm/boot/dts/bcm2710.dtsi

index b994e3f..7a733c0 100644 (file)
                        method = "smc";
                };
        };
+
+       psci {
+               compatible = "arm,psci-0.2";
+               method = "smc";
+       };
 #endif
 };
 
 &vc4 {
        status = "disabled";
 };
+
+&cpu0 {
+       enable-method = "psci";
+};
+
+&cpu1 {
+       enable-method = "psci";
+};
+
+&cpu2 {
+       enable-method = "psci";
+};
+
+&cpu3 {
+       enable-method = "psci";
+};