diff options
author | Vitaly Andrianov <vitalya@ti.com> | 2016-04-13 08:55:17 -0700 |
---|---|---|
committer | Santosh Shilimkar <ssantosh@kernel.org> | 2016-04-13 08:55:44 -0700 |
commit | 14de48a412f00f8e0a5413844d846bc5657db327 (patch) | |
tree | 3cab6d08e51e9daab3297e4e94a63234e4fccab5 /arch/arm/boot/dts/keystone.dtsi | |
parent | 72f7e9596087ecece7e80bb674f7070bef4edc29 (diff) | |
download | op-kernel-dev-14de48a412f00f8e0a5413844d846bc5657db327.zip op-kernel-dev-14de48a412f00f8e0a5413844d846bc5657db327.tar.gz |
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>
Diffstat (limited to 'arch/arm/boot/dts/keystone.dtsi')
-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 94d4e45..e34b226 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>; |