diff options
author | Vitaly Andrianov <vitalya@ti.com> | 2016-04-13 11:55:17 -0400 |
---|---|---|
committer | Santosh Shilimkar <ssantosh@kernel.org> | 2016-04-13 11:55:44 -0400 |
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 <vitalya@ti.com>
Signed-off-by: Keerthy <j-keerthy@ti.com>
Signed-off-by: Santosh Shilimkar <ssantosh@kernel.org>
-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 @@ | |||
62 | <GIC_SPI 23 IRQ_TYPE_EDGE_RISING>; | 62 | <GIC_SPI 23 IRQ_TYPE_EDGE_RISING>; |
63 | }; | 63 | }; |
64 | 64 | ||
65 | psci { | ||
66 | compatible = "arm,psci"; | ||
67 | method = "smc"; | ||
68 | cpu_suspend = <0x84000001>; | ||
69 | cpu_off = <0x84000002>; | ||
70 | cpu_on = <0x84000003>; | ||
71 | }; | ||
72 | |||
65 | soc { | 73 | soc { |
66 | #address-cells = <1>; | 74 | #address-cells = <1>; |
67 | #size-cells = <1>; | 75 | #size-cells = <1>; |