diff options
author | Vitaly Andrianov <vitalya@ti.com> | 2016-08-02 17:06:07 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-08-02 19:35:28 -0400 |
commit | 51d5d12b8f3df2b770974ce4aa6196c6b7d485eb (patch) | |
tree | 99cd47a7cc927818f5285e5468a185a4cd88d39e | |
parent | 43546d8669d62d75fa69ca9a45d2f586665f56bd (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.
Link: http://lkml.kernel.org/r/E1b8koV-0004Hf-2j@rmk-PC.armlinux.org.uk
Signed-off-by: Keerthy <j-keerthy@ti.com>
Signed-off-by: Vitaly Andrianov <vitalya@ti.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Cc: Pratyush Anand <panand@redhat.com>
Cc: Eric Biederman <ebiederm@xmission.com>
Cc: Dave Young <dyoung@redhat.com>
Cc: Baoquan He <bhe@redhat.com>
Cc: Vivek Goyal <vgoyal@redhat.com>
Cc: Simon Horman <horms@verge.net.au>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.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 e23f46d15c80..00cb314d5e4d 100644 --- a/arch/arm/boot/dts/keystone.dtsi +++ b/arch/arm/boot/dts/keystone.dtsi | |||
@@ -70,6 +70,14 @@ | |||
70 | cpu_on = <0x84000003>; | 70 | cpu_on = <0x84000003>; |
71 | }; | 71 | }; |
72 | 72 | ||
73 | psci { | ||
74 | compatible = "arm,psci"; | ||
75 | method = "smc"; | ||
76 | cpu_suspend = <0x84000001>; | ||
77 | cpu_off = <0x84000002>; | ||
78 | cpu_on = <0x84000003>; | ||
79 | }; | ||
80 | |||
73 | soc { | 81 | soc { |
74 | #address-cells = <1>; | 82 | #address-cells = <1>; |
75 | #size-cells = <1>; | 83 | #size-cells = <1>; |