diff options
author | Vitaly Andrianov <[email protected]> | 2016-04-13 08:55:17 -0700 |
---|---|---|
committer | Santosh Shilimkar <[email protected]> | 2016-04-13 08:55:44 -0700 |
commit | 14de48a412f00f8e0a5413844d846bc5657db327 (patch) | |
tree | 3cab6d08e51e9daab3297e4e94a63234e4fccab5 | |
parent | 72f7e9596087ecece7e80bb674f7070bef4edc29 (diff) |
ARM: keystone: dts: add psci command definition
This commit adds definition for cpu_on, cpu_off and cpu_suspend commands.
These definitions must match the corresponding PSCI definitions in
boot monitor.
Having those command and corresponding PSCI support in boot monitor allows
run time CPU hot plugin.
Signed-off-by: Vitaly Andrianov <[email protected]>
Signed-off-by: Keerthy <[email protected]>
Signed-off-by: Santosh Shilimkar <[email protected]>
-rw-r--r-- | arch/arm/boot/dts/keystone.dtsi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/keystone.dtsi b/arch/arm/boot/dts/keystone.dtsi index 94d4e45138ce..e34b2265458a 100644 --- a/arch/arm/boot/dts/keystone.dtsi +++ b/arch/arm/boot/dts/keystone.dtsi @@ -62,6 +62,14 @@ <GIC_SPI 23 IRQ_TYPE_EDGE_RISING>; }; + psci { + compatible = "arm,psci"; + method = "smc"; + cpu_suspend = <0x84000001>; + cpu_off = <0x84000002>; + cpu_on = <0x84000003>; + }; + soc { #address-cells = <1>; #size-cells = <1>; |