Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Soby Mathew | b911cc7 | 2017-02-13 12:46:28 +0000 | [diff] [blame] | 2 | * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __PSCI_H__ |
| 8 | #define __PSCI_H__ |
| 9 | |
Soby Mathew | 523d633 | 2015-01-08 18:02:19 +0000 | [diff] [blame] | 10 | #include <bakery_lock.h> |
Soby Mathew | 89256b8 | 2016-09-13 14:19:08 +0100 | [diff] [blame] | 11 | #include <bl_common.h> |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 12 | #include <platform_def.h> /* for PLAT_NUM_PWR_DOMAINS */ |
| 13 | #if ENABLE_PLAT_COMPAT |
| 14 | #include <psci_compat.h> |
| 15 | #endif |
Soby Mathew | b911cc7 | 2017-02-13 12:46:28 +0000 | [diff] [blame] | 16 | #include <psci_lib.h> /* To maintain compatibility for SPDs */ |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 17 | #include <utils_def.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 18 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 19 | /******************************************************************************* |
Sandrine Bailleux | f4119ec | 2015-12-17 13:58:58 +0000 | [diff] [blame] | 20 | * Number of power domains whose state this PSCI implementation can track |
Soby Mathew | 523d633 | 2015-01-08 18:02:19 +0000 | [diff] [blame] | 21 | ******************************************************************************/ |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 22 | #ifdef PLAT_NUM_PWR_DOMAINS |
| 23 | #define PSCI_NUM_PWR_DOMAINS PLAT_NUM_PWR_DOMAINS |
Soby Mathew | 523d633 | 2015-01-08 18:02:19 +0000 | [diff] [blame] | 24 | #else |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 25 | #define PSCI_NUM_PWR_DOMAINS (U(2) * PLATFORM_CORE_COUNT) |
Soby Mathew | 523d633 | 2015-01-08 18:02:19 +0000 | [diff] [blame] | 26 | #endif |
| 27 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 28 | #define PSCI_NUM_NON_CPU_PWR_DOMAINS (PSCI_NUM_PWR_DOMAINS - \ |
| 29 | PLATFORM_CORE_COUNT) |
| 30 | |
| 31 | /* This is the power level corresponding to a CPU */ |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 32 | #define PSCI_CPU_PWR_LVL (0) |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 33 | |
| 34 | /* |
| 35 | * The maximum power level supported by PSCI. Since PSCI CPU_SUSPEND |
| 36 | * uses the old power_state parameter format which has 2 bits to specify the |
| 37 | * power level, this constant is defined to be 3. |
| 38 | */ |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 39 | #define PSCI_MAX_PWR_LVL U(3) |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 40 | |
Soby Mathew | 523d633 | 2015-01-08 18:02:19 +0000 | [diff] [blame] | 41 | /******************************************************************************* |
Sandrine Bailleux | f4119ec | 2015-12-17 13:58:58 +0000 | [diff] [blame] | 42 | * Defines for runtime services function ids |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 43 | ******************************************************************************/ |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 44 | #define PSCI_VERSION U(0x84000000) |
| 45 | #define PSCI_CPU_SUSPEND_AARCH32 U(0x84000001) |
| 46 | #define PSCI_CPU_SUSPEND_AARCH64 U(0xc4000001) |
| 47 | #define PSCI_CPU_OFF U(0x84000002) |
| 48 | #define PSCI_CPU_ON_AARCH32 U(0x84000003) |
| 49 | #define PSCI_CPU_ON_AARCH64 U(0xc4000003) |
| 50 | #define PSCI_AFFINITY_INFO_AARCH32 U(0x84000004) |
| 51 | #define PSCI_AFFINITY_INFO_AARCH64 U(0xc4000004) |
| 52 | #define PSCI_MIG_AARCH32 U(0x84000005) |
| 53 | #define PSCI_MIG_AARCH64 U(0xc4000005) |
| 54 | #define PSCI_MIG_INFO_TYPE U(0x84000006) |
| 55 | #define PSCI_MIG_INFO_UP_CPU_AARCH32 U(0x84000007) |
| 56 | #define PSCI_MIG_INFO_UP_CPU_AARCH64 U(0xc4000007) |
| 57 | #define PSCI_SYSTEM_OFF U(0x84000008) |
| 58 | #define PSCI_SYSTEM_RESET U(0x84000009) |
| 59 | #define PSCI_FEATURES U(0x8400000A) |
| 60 | #define PSCI_NODE_HW_STATE_AARCH32 U(0x8400000d) |
| 61 | #define PSCI_NODE_HW_STATE_AARCH64 U(0xc400000d) |
| 62 | #define PSCI_SYSTEM_SUSPEND_AARCH32 U(0x8400000E) |
| 63 | #define PSCI_SYSTEM_SUSPEND_AARCH64 U(0xc400000E) |
| 64 | #define PSCI_STAT_RESIDENCY_AARCH32 U(0x84000010) |
| 65 | #define PSCI_STAT_RESIDENCY_AARCH64 U(0xc4000010) |
| 66 | #define PSCI_STAT_COUNT_AARCH32 U(0x84000011) |
| 67 | #define PSCI_STAT_COUNT_AARCH64 U(0xc4000011) |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 68 | |
| 69 | /* Macro to help build the psci capabilities bitfield */ |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 70 | #define define_psci_cap(x) (U(1) << (x & U(0x1f))) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 71 | |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 72 | /* |
Juan Castillo | 4dc4a47 | 2014-08-12 11:17:06 +0100 | [diff] [blame] | 73 | * Number of PSCI calls (above) implemented |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 74 | */ |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 75 | #if ENABLE_PSCI_STAT |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 76 | #define PSCI_NUM_CALLS U(22) |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 77 | #else |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 78 | #define PSCI_NUM_CALLS U(18) |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 79 | #endif |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 80 | |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 81 | /* The macros below are used to identify PSCI calls from the SMC function ID */ |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 82 | #define PSCI_FID_MASK U(0xffe0) |
| 83 | #define PSCI_FID_VALUE U(0) |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 84 | #define is_psci_fid(_fid) \ |
| 85 | (((_fid) & PSCI_FID_MASK) == PSCI_FID_VALUE) |
| 86 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 87 | /******************************************************************************* |
| 88 | * PSCI Migrate and friends |
| 89 | ******************************************************************************/ |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 90 | #define PSCI_TOS_UP_MIG_CAP U(0) |
| 91 | #define PSCI_TOS_NOT_UP_MIG_CAP U(1) |
| 92 | #define PSCI_TOS_NOT_PRESENT_MP U(2) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 93 | |
| 94 | /******************************************************************************* |
| 95 | * PSCI CPU_SUSPEND 'power_state' parameter specific defines |
| 96 | ******************************************************************************/ |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 97 | #define PSTATE_ID_SHIFT U(0) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 98 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 99 | #if PSCI_EXTENDED_STATE_ID |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 100 | #define PSTATE_VALID_MASK U(0xB0000000) |
| 101 | #define PSTATE_TYPE_SHIFT U(30) |
| 102 | #define PSTATE_ID_MASK U(0xfffffff) |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 103 | #else |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 104 | #define PSTATE_VALID_MASK U(0xFCFE0000) |
| 105 | #define PSTATE_TYPE_SHIFT U(16) |
| 106 | #define PSTATE_PWR_LVL_SHIFT U(24) |
| 107 | #define PSTATE_ID_MASK U(0xffff) |
| 108 | #define PSTATE_PWR_LVL_MASK U(0x3) |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 109 | |
| 110 | #define psci_get_pstate_pwrlvl(pstate) (((pstate) >> PSTATE_PWR_LVL_SHIFT) & \ |
| 111 | PSTATE_PWR_LVL_MASK) |
| 112 | #define psci_make_powerstate(state_id, type, pwrlvl) \ |
| 113 | (((state_id) & PSTATE_ID_MASK) << PSTATE_ID_SHIFT) |\ |
| 114 | (((type) & PSTATE_TYPE_MASK) << PSTATE_TYPE_SHIFT) |\ |
| 115 | (((pwrlvl) & PSTATE_PWR_LVL_MASK) << PSTATE_PWR_LVL_SHIFT) |
| 116 | #endif /* __PSCI_EXTENDED_STATE_ID__ */ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 117 | |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 118 | #define PSTATE_TYPE_STANDBY U(0x0) |
| 119 | #define PSTATE_TYPE_POWERDOWN U(0x1) |
| 120 | #define PSTATE_TYPE_MASK U(0x1) |
Vikram Kanigiri | 3b7c59b | 2014-03-21 11:57:10 +0000 | [diff] [blame] | 121 | |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 122 | #define psci_get_pstate_id(pstate) (((pstate) >> PSTATE_ID_SHIFT) & \ |
Soby Mathew | 74e52a7 | 2014-10-02 16:56:51 +0100 | [diff] [blame] | 123 | PSTATE_ID_MASK) |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 124 | #define psci_get_pstate_type(pstate) (((pstate) >> PSTATE_TYPE_SHIFT) & \ |
Soby Mathew | 74e52a7 | 2014-10-02 16:56:51 +0100 | [diff] [blame] | 125 | PSTATE_TYPE_MASK) |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 126 | #define psci_check_power_state(pstate) ((pstate) & PSTATE_VALID_MASK) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 127 | |
| 128 | /******************************************************************************* |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 129 | * PSCI CPU_FEATURES feature flag specific defines |
| 130 | ******************************************************************************/ |
| 131 | /* Features flags for CPU SUSPEND power state parameter format. Bits [1:1] */ |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 132 | #define FF_PSTATE_SHIFT U(1) |
| 133 | #define FF_PSTATE_ORIG U(0) |
| 134 | #define FF_PSTATE_EXTENDED U(1) |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 135 | #if PSCI_EXTENDED_STATE_ID |
| 136 | #define FF_PSTATE FF_PSTATE_EXTENDED |
| 137 | #else |
| 138 | #define FF_PSTATE FF_PSTATE_ORIG |
| 139 | #endif |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 140 | |
| 141 | /* Features flags for CPU SUSPEND OS Initiated mode support. Bits [0:0] */ |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 142 | #define FF_MODE_SUPPORT_SHIFT U(0) |
| 143 | #define FF_SUPPORTS_OS_INIT_MODE U(1) |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 144 | |
| 145 | /******************************************************************************* |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 146 | * PSCI version |
| 147 | ******************************************************************************/ |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 148 | #define PSCI_MAJOR_VER (U(1) << 16) |
| 149 | #define PSCI_MINOR_VER U(0x0) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 150 | |
| 151 | /******************************************************************************* |
| 152 | * PSCI error codes |
| 153 | ******************************************************************************/ |
| 154 | #define PSCI_E_SUCCESS 0 |
| 155 | #define PSCI_E_NOT_SUPPORTED -1 |
| 156 | #define PSCI_E_INVALID_PARAMS -2 |
| 157 | #define PSCI_E_DENIED -3 |
| 158 | #define PSCI_E_ALREADY_ON -4 |
| 159 | #define PSCI_E_ON_PENDING -5 |
| 160 | #define PSCI_E_INTERN_FAIL -6 |
| 161 | #define PSCI_E_NOT_PRESENT -7 |
| 162 | #define PSCI_E_DISABLED -8 |
Soby Mathew | f1f97a1 | 2015-07-15 12:13:26 +0100 | [diff] [blame] | 163 | #define PSCI_E_INVALID_ADDRESS -9 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 164 | |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 165 | #define PSCI_INVALID_MPIDR ~((u_register_t)0) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 166 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 167 | #ifndef __ASSEMBLY__ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 168 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 169 | #include <stdint.h> |
| 170 | #include <types.h> |
| 171 | |
| 172 | /* |
| 173 | * These are the states reported by the PSCI_AFFINITY_INFO API for the specified |
| 174 | * CPU. The definitions of these states can be found in Section 5.7.1 in the |
| 175 | * PSCI specification (ARM DEN 0022C). |
| 176 | */ |
| 177 | typedef enum { |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 178 | AFF_STATE_ON = U(0), |
| 179 | AFF_STATE_OFF = U(1), |
| 180 | AFF_STATE_ON_PENDING = U(2) |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 181 | } aff_info_state_t; |
| 182 | |
| 183 | /* |
Jeenu Viswambharan | 7f03e9d9 | 2016-08-03 15:54:50 +0100 | [diff] [blame] | 184 | * These are the power states reported by PSCI_NODE_HW_STATE API for the |
| 185 | * specified CPU. The definitions of these states can be found in Section 5.15.3 |
| 186 | * of PSCI specification (ARM DEN 0022C). |
| 187 | */ |
| 188 | typedef enum { |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 189 | HW_ON = U(0), |
| 190 | HW_OFF = U(1), |
| 191 | HW_STANDBY = U(2) |
Jeenu Viswambharan | 7f03e9d9 | 2016-08-03 15:54:50 +0100 | [diff] [blame] | 192 | } node_hw_state_t; |
| 193 | |
| 194 | /* |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 195 | * Macro to represent invalid affinity level within PSCI. |
| 196 | */ |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 197 | #define PSCI_INVALID_PWR_LVL (PLAT_MAX_PWR_LVL + U(1)) |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 198 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 199 | /* |
| 200 | * Type for representing the local power state at a particular level. |
| 201 | */ |
| 202 | typedef uint8_t plat_local_state_t; |
| 203 | |
| 204 | /* The local state macro used to represent RUN state. */ |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 205 | #define PSCI_LOCAL_STATE_RUN U(0) |
Achin Gupta | 75f7367 | 2013-12-05 16:33:10 +0000 | [diff] [blame] | 206 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 207 | /* |
| 208 | * Macro to test whether the plat_local_state is RUN state |
| 209 | */ |
| 210 | #define is_local_state_run(plat_local_state) \ |
| 211 | ((plat_local_state) == PSCI_LOCAL_STATE_RUN) |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 212 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 213 | /* |
| 214 | * Macro to test whether the plat_local_state is RETENTION state |
| 215 | */ |
| 216 | #define is_local_state_retn(plat_local_state) \ |
| 217 | (((plat_local_state) > PSCI_LOCAL_STATE_RUN) && \ |
| 218 | ((plat_local_state) <= PLAT_MAX_RET_STATE)) |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 219 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 220 | /* |
| 221 | * Macro to test whether the plat_local_state is OFF state |
| 222 | */ |
| 223 | #define is_local_state_off(plat_local_state) \ |
| 224 | (((plat_local_state) > PLAT_MAX_RET_STATE) && \ |
| 225 | ((plat_local_state) <= PLAT_MAX_OFF_STATE)) |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 226 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 227 | /***************************************************************************** |
| 228 | * This data structure defines the representation of the power state parameter |
| 229 | * for its exchange between the generic PSCI code and the platform port. For |
| 230 | * example, it is used by the platform port to specify the requested power |
| 231 | * states during a power management operation. It is used by the generic code to |
| 232 | * inform the platform about the target power states that each level should |
| 233 | * enter. |
| 234 | ****************************************************************************/ |
| 235 | typedef struct psci_power_state { |
| 236 | /* |
| 237 | * The pwr_domain_state[] stores the local power state at each level |
| 238 | * for the CPU. |
| 239 | */ |
Varun Wadekar | c6a11f6 | 2017-05-25 18:04:48 -0700 | [diff] [blame] | 240 | plat_local_state_t pwr_domain_state[PLAT_MAX_PWR_LVL + U(1)]; |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 241 | } psci_power_state_t; |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 242 | |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 243 | /******************************************************************************* |
| 244 | * Structure used to store per-cpu information relevant to the PSCI service. |
| 245 | * It is populated in the per-cpu data array. In return we get a guarantee that |
| 246 | * this information will not reside on a cache line shared with another cpu. |
| 247 | ******************************************************************************/ |
| 248 | typedef struct psci_cpu_data { |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 249 | /* State as seen by PSCI Affinity Info API */ |
| 250 | aff_info_state_t aff_info_state; |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 251 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 252 | /* |
| 253 | * Highest power level which takes part in a power management |
| 254 | * operation. |
| 255 | */ |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 256 | unsigned char target_pwrlvl; |
| 257 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 258 | /* The local power state of this CPU */ |
| 259 | plat_local_state_t local_state; |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 260 | } psci_cpu_data_t; |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 261 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 262 | /******************************************************************************* |
| 263 | * Structure populated by platform specific code to export routines which |
Sandrine Bailleux | f4119ec | 2015-12-17 13:58:58 +0000 | [diff] [blame] | 264 | * perform common low level power management functions |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 265 | ******************************************************************************/ |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 266 | typedef struct plat_psci_ops { |
| 267 | void (*cpu_standby)(plat_local_state_t cpu_state); |
| 268 | int (*pwr_domain_on)(u_register_t mpidr); |
| 269 | void (*pwr_domain_off)(const psci_power_state_t *target_state); |
Varun Wadekar | ae87f4b | 2017-07-10 16:02:05 -0700 | [diff] [blame] | 270 | void (*pwr_domain_suspend_pwrdown_early)( |
| 271 | const psci_power_state_t *target_state); |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 272 | void (*pwr_domain_suspend)(const psci_power_state_t *target_state); |
| 273 | void (*pwr_domain_on_finish)(const psci_power_state_t *target_state); |
| 274 | void (*pwr_domain_suspend_finish)( |
| 275 | const psci_power_state_t *target_state); |
Soby Mathew | 6a81641 | 2016-04-27 14:46:28 +0100 | [diff] [blame] | 276 | void (*pwr_domain_pwr_down_wfi)( |
| 277 | const psci_power_state_t *target_state) __dead2; |
Juan Castillo | 4dc4a47 | 2014-08-12 11:17:06 +0100 | [diff] [blame] | 278 | void (*system_off)(void) __dead2; |
| 279 | void (*system_reset)(void) __dead2; |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 280 | int (*validate_power_state)(unsigned int power_state, |
| 281 | psci_power_state_t *req_state); |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 282 | int (*validate_ns_entrypoint)(uintptr_t ns_entrypoint); |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 283 | void (*get_sys_suspend_power_state)( |
| 284 | psci_power_state_t *req_state); |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 285 | int (*get_pwr_lvl_state_idx)(plat_local_state_t pwr_domain_state, |
| 286 | int pwrlvl); |
| 287 | int (*translate_power_state_by_mpidr)(u_register_t mpidr, |
| 288 | unsigned int power_state, |
| 289 | psci_power_state_t *output_state); |
Jeenu Viswambharan | 7f03e9d9 | 2016-08-03 15:54:50 +0100 | [diff] [blame] | 290 | int (*get_node_hw_state)(u_register_t mpidr, unsigned int power_level); |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 291 | } plat_psci_ops_t; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 292 | |
| 293 | /******************************************************************************* |
| 294 | * Function & Data prototypes |
| 295 | ******************************************************************************/ |
Dan Handley | a17fefa | 2014-05-14 12:38:32 +0100 | [diff] [blame] | 296 | unsigned int psci_version(void); |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 297 | int psci_cpu_on(u_register_t target_cpu, |
| 298 | uintptr_t entrypoint, |
| 299 | u_register_t context_id); |
| 300 | int psci_cpu_suspend(unsigned int power_state, |
| 301 | uintptr_t entrypoint, |
| 302 | u_register_t context_id); |
| 303 | int psci_system_suspend(uintptr_t entrypoint, u_register_t context_id); |
| 304 | int psci_cpu_off(void); |
| 305 | int psci_affinity_info(u_register_t target_affinity, |
| 306 | unsigned int lowest_affinity_level); |
| 307 | int psci_migrate(u_register_t target_cpu); |
Soby Mathew | 110fe36 | 2014-10-23 10:35:34 +0100 | [diff] [blame] | 308 | int psci_migrate_info_type(void); |
| 309 | long psci_migrate_info_up_cpu(void); |
Jeenu Viswambharan | 7f03e9d9 | 2016-08-03 15:54:50 +0100 | [diff] [blame] | 310 | int psci_node_hw_state(u_register_t target_cpu, |
| 311 | unsigned int power_level); |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 312 | int psci_features(unsigned int psci_fid); |
Dan Handley | a17fefa | 2014-05-14 12:38:32 +0100 | [diff] [blame] | 313 | void __dead2 psci_power_down_wfi(void); |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 314 | void psci_arch_setup(void); |
| 315 | |
| 316 | /* |
| 317 | * The below API is deprecated. This is now replaced by bl31_warmboot_entry in |
| 318 | * AArch64. |
| 319 | */ |
| 320 | void psci_entrypoint(void) __deprecated; |
| 321 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 322 | #endif /*__ASSEMBLY__*/ |
| 323 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 324 | #endif /* __PSCI_H__ */ |