diff options
author | danh-arm <dan.handley@arm.com> | 2016-09-19 11:55:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-19 11:55:56 +0100 |
commit | 7a1b2794307bf18cdea975b8897f8cd7e0579fc9 (patch) | |
tree | ca6d2abfb9315c407c7dddb303c43a673ad447ee /lib/psci/psci_setup.c | |
parent | 368d4ebfc1682bfeea1057f7f37c23ca531e9e91 (diff) | |
parent | 3cc17aae72287b993bcb2b626d7715ff9ed77790 (diff) | |
download | platform_external_arm-trusted-firmware-7a1b2794307bf18cdea975b8897f8cd7e0579fc9.tar.gz platform_external_arm-trusted-firmware-7a1b2794307bf18cdea975b8897f8cd7e0579fc9.tar.bz2 platform_external_arm-trusted-firmware-7a1b2794307bf18cdea975b8897f8cd7e0579fc9.zip |
Merge pull request #702 from jeenu-arm/psci-node-hw-state
Support for PSCI NODE_HW_STATE
Diffstat (limited to 'lib/psci/psci_setup.c')
-rw-r--r-- | lib/psci/psci_setup.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/psci/psci_setup.c b/lib/psci/psci_setup.c index aa2ed5102..263ab68f9 100644 --- a/lib/psci/psci_setup.c +++ b/lib/psci/psci_setup.c @@ -263,6 +263,8 @@ int psci_setup(uintptr_t mailbox_ep) psci_caps |= define_psci_cap(PSCI_SYSTEM_OFF); if (psci_plat_pm_ops->system_reset) psci_caps |= define_psci_cap(PSCI_SYSTEM_RESET); + if (psci_plat_pm_ops->get_node_hw_state) + psci_caps |= define_psci_cap(PSCI_NODE_HW_STATE_AARCH64); #if ENABLE_PSCI_STAT psci_caps |= define_psci_cap(PSCI_STAT_RESIDENCY_AARCH64); |