diff options
author | davidcunado-arm <david.cunado@arm.com> | 2017-10-16 16:31:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-16 16:31:13 +0100 |
commit | 446844293399f73bf8ac1fb2e7eba34b0c7fb0c4 (patch) | |
tree | f5b4b2450d0a4d349ea16867ca1d8bd032bc1231 /lib/psci/psci_private.h | |
parent | 8ac544e44b9747c1c59b42e4708607f2e8077c6f (diff) | |
parent | b48ae263d255718efee7b4ed0cb1d6c2e3cb1fb8 (diff) | |
download | platform_external_arm-trusted-firmware-446844293399f73bf8ac1fb2e7eba34b0c7fb0c4.tar.gz platform_external_arm-trusted-firmware-446844293399f73bf8ac1fb2e7eba34b0c7fb0c4.tar.bz2 platform_external_arm-trusted-firmware-446844293399f73bf8ac1fb2e7eba34b0c7fb0c4.zip |
Merge pull request #1123 from robertovargas-arm/reset2
Integration of reset2 PSCI v1.1 functionality
Diffstat (limited to 'lib/psci/psci_private.h')
-rw-r--r-- | lib/psci/psci_private.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/psci/psci_private.h b/lib/psci/psci_private.h index facfacb03..f38421aa9 100644 --- a/lib/psci/psci_private.h +++ b/lib/psci/psci_private.h @@ -89,7 +89,8 @@ define_psci_cap(PSCI_NODE_HW_STATE_AARCH64) | \ define_psci_cap(PSCI_SYSTEM_SUSPEND_AARCH64) | \ define_psci_cap(PSCI_STAT_RESIDENCY_AARCH64) | \ - define_psci_cap(PSCI_STAT_COUNT_AARCH64)) + define_psci_cap(PSCI_STAT_COUNT_AARCH64) | \ + define_psci_cap(PSCI_SYSTEM_RESET2_AARCH64)) /* * Helper macros to get/set the fields of PSCI per-cpu data. @@ -258,6 +259,7 @@ void psci_do_pwrup_cache_maintenance(void); /* Private exported functions from psci_system_off.c */ void __dead2 psci_system_off(void); void __dead2 psci_system_reset(void); +int psci_system_reset2(uint32_t reset_type, u_register_t cookie); /* Private exported functions from psci_stat.c */ void psci_stats_update_pwr_down(unsigned int end_pwrlvl, |