blob: da2efccbf1975972962e39287dd684bad3b17ea1 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Madhukar Pappireddy10107702019-08-12 18:31:33 -05002 * Copyright (c) 2013-2019, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
dp-arm82cb2c12017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005 */
6
Antonio Nino Diaz97373c32018-07-18 11:57:21 +01007#ifndef PSCI_H
8#define PSCI_H
Achin Gupta4f6ad662013-10-25 09:08:21 +01009
Soby Mathew67487842015-07-13 14:10:57 +010010#include <platform_def.h> /* for PLAT_NUM_PWR_DOMAINS */
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000011
12#include <common/bl_common.h>
13#include <lib/bakery_lock.h>
14#include <lib/psci/psci_lib.h> /* To maintain compatibility for SPDs */
15#include <lib/utils_def.h>
Soby Mathew8c5fe0b2015-01-08 18:02:19 +000016
17/*******************************************************************************
Sandrine Bailleux1645d3e2015-12-17 13:58:58 +000018 * Number of power domains whose state this PSCI implementation can track
Soby Mathew8c5fe0b2015-01-08 18:02:19 +000019 ******************************************************************************/
Soby Mathew67487842015-07-13 14:10:57 +010020#ifdef PLAT_NUM_PWR_DOMAINS
21#define PSCI_NUM_PWR_DOMAINS PLAT_NUM_PWR_DOMAINS
Soby Mathew8c5fe0b2015-01-08 18:02:19 +000022#else
Deepika Bhavnani5b33ad12019-12-13 10:23:18 -060023#define PSCI_NUM_PWR_DOMAINS (U(2) * PLATFORM_CORE_COUNT)
Soby Mathew8c5fe0b2015-01-08 18:02:19 +000024#endif
Dan Handley97043ac2014-04-09 13:14:54 +010025
Soby Mathew67487842015-07-13 14:10:57 +010026#define PSCI_NUM_NON_CPU_PWR_DOMAINS (PSCI_NUM_PWR_DOMAINS - \
27 PLATFORM_CORE_COUNT)
28
29/* This is the power level corresponding to a CPU */
Antonio Nino Diaz1083b2b2018-07-20 09:17:26 +010030#define PSCI_CPU_PWR_LVL U(0)
Soby Mathew67487842015-07-13 14:10:57 +010031
32/*
33 * The maximum power level supported by PSCI. Since PSCI CPU_SUSPEND
34 * uses the old power_state parameter format which has 2 bits to specify the
35 * power level, this constant is defined to be 3.
36 */
Varun Wadekar030567e2017-05-25 18:04:48 -070037#define PSCI_MAX_PWR_LVL U(3)
Soby Mathew67487842015-07-13 14:10:57 +010038
Achin Gupta4f6ad662013-10-25 09:08:21 +010039/*******************************************************************************
Sandrine Bailleux1645d3e2015-12-17 13:58:58 +000040 * Defines for runtime services function ids
Achin Gupta4f6ad662013-10-25 09:08:21 +010041 ******************************************************************************/
Varun Wadekar030567e2017-05-25 18:04:48 -070042#define PSCI_VERSION U(0x84000000)
43#define PSCI_CPU_SUSPEND_AARCH32 U(0x84000001)
44#define PSCI_CPU_SUSPEND_AARCH64 U(0xc4000001)
45#define PSCI_CPU_OFF U(0x84000002)
46#define PSCI_CPU_ON_AARCH32 U(0x84000003)
47#define PSCI_CPU_ON_AARCH64 U(0xc4000003)
48#define PSCI_AFFINITY_INFO_AARCH32 U(0x84000004)
49#define PSCI_AFFINITY_INFO_AARCH64 U(0xc4000004)
50#define PSCI_MIG_AARCH32 U(0x84000005)
51#define PSCI_MIG_AARCH64 U(0xc4000005)
52#define PSCI_MIG_INFO_TYPE U(0x84000006)
53#define PSCI_MIG_INFO_UP_CPU_AARCH32 U(0x84000007)
54#define PSCI_MIG_INFO_UP_CPU_AARCH64 U(0xc4000007)
55#define PSCI_SYSTEM_OFF U(0x84000008)
56#define PSCI_SYSTEM_RESET U(0x84000009)
57#define PSCI_FEATURES U(0x8400000A)
58#define PSCI_NODE_HW_STATE_AARCH32 U(0x8400000d)
59#define PSCI_NODE_HW_STATE_AARCH64 U(0xc400000d)
60#define PSCI_SYSTEM_SUSPEND_AARCH32 U(0x8400000E)
61#define PSCI_SYSTEM_SUSPEND_AARCH64 U(0xc400000E)
62#define PSCI_STAT_RESIDENCY_AARCH32 U(0x84000010)
63#define PSCI_STAT_RESIDENCY_AARCH64 U(0xc4000010)
64#define PSCI_STAT_COUNT_AARCH32 U(0x84000011)
65#define PSCI_STAT_COUNT_AARCH64 U(0xc4000011)
Roberto Vargas36a8f8f2017-07-26 09:23:09 +010066#define PSCI_SYSTEM_RESET2_AARCH32 U(0x84000012)
67#define PSCI_SYSTEM_RESET2_AARCH64 U(0xc4000012)
Roberto Vargasd4c596b2017-08-03 08:16:16 +010068#define PSCI_MEM_PROTECT U(0x84000013)
69#define PSCI_MEM_CHK_RANGE_AARCH32 U(0x84000014)
70#define PSCI_MEM_CHK_RANGE_AARCH64 U(0xc4000014)
Soby Mathew90e82582015-01-07 11:10:22 +000071
Jeenu Viswambharan64f6ea92014-02-28 10:08:33 +000072/*
Juan Castillod5f13092014-08-12 11:17:06 +010073 * Number of PSCI calls (above) implemented
Jeenu Viswambharan64f6ea92014-02-28 10:08:33 +000074 */
Yatharth Kochar170fb932016-05-09 18:26:35 +010075#if ENABLE_PSCI_STAT
Varun Wadekar030567e2017-05-25 18:04:48 -070076#define PSCI_NUM_CALLS U(22)
Yatharth Kochar170fb932016-05-09 18:26:35 +010077#else
Varun Wadekar030567e2017-05-25 18:04:48 -070078#define PSCI_NUM_CALLS U(18)
Yatharth Kochar170fb932016-05-09 18:26:35 +010079#endif
Jeenu Viswambharan64f6ea92014-02-28 10:08:33 +000080
Soby Mathewcf0b1492016-04-29 19:01:30 +010081/* The macros below are used to identify PSCI calls from the SMC function ID */
Varun Wadekar030567e2017-05-25 18:04:48 -070082#define PSCI_FID_MASK U(0xffe0)
83#define PSCI_FID_VALUE U(0)
Soby Mathewcf0b1492016-04-29 19:01:30 +010084#define is_psci_fid(_fid) \
85 (((_fid) & PSCI_FID_MASK) == PSCI_FID_VALUE)
86
Achin Gupta4f6ad662013-10-25 09:08:21 +010087/*******************************************************************************
88 * PSCI Migrate and friends
89 ******************************************************************************/
Antonio Nino Diaz1083b2b2018-07-20 09:17:26 +010090#define PSCI_TOS_UP_MIG_CAP 0
91#define PSCI_TOS_NOT_UP_MIG_CAP 1
92#define PSCI_TOS_NOT_PRESENT_MP 2
Achin Gupta4f6ad662013-10-25 09:08:21 +010093
94/*******************************************************************************
95 * PSCI CPU_SUSPEND 'power_state' parameter specific defines
96 ******************************************************************************/
Varun Wadekar030567e2017-05-25 18:04:48 -070097#define PSTATE_ID_SHIFT U(0)
Achin Gupta4f6ad662013-10-25 09:08:21 +010098
Soby Mathew67487842015-07-13 14:10:57 +010099#if PSCI_EXTENDED_STATE_ID
Varun Wadekar030567e2017-05-25 18:04:48 -0700100#define PSTATE_VALID_MASK U(0xB0000000)
101#define PSTATE_TYPE_SHIFT U(30)
102#define PSTATE_ID_MASK U(0xfffffff)
Soby Mathew67487842015-07-13 14:10:57 +0100103#else
Varun Wadekar030567e2017-05-25 18:04:48 -0700104#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 Mathew67487842015-07-13 14:10:57 +0100109
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 Gupta4f6ad662013-10-25 09:08:21 +0100117
Varun Wadekar030567e2017-05-25 18:04:48 -0700118#define PSTATE_TYPE_STANDBY U(0x0)
119#define PSTATE_TYPE_POWERDOWN U(0x1)
120#define PSTATE_TYPE_MASK U(0x1)
Vikram Kanigirid118f9f2014-03-21 11:57:10 +0000121
Achin Gupta4f6ad662013-10-25 09:08:21 +0100122/*******************************************************************************
Soby Mathew90e82582015-01-07 11:10:22 +0000123 * PSCI CPU_FEATURES feature flag specific defines
124 ******************************************************************************/
125/* Features flags for CPU SUSPEND power state parameter format. Bits [1:1] */
Varun Wadekar030567e2017-05-25 18:04:48 -0700126#define FF_PSTATE_SHIFT U(1)
127#define FF_PSTATE_ORIG U(0)
128#define FF_PSTATE_EXTENDED U(1)
Soby Mathew67487842015-07-13 14:10:57 +0100129#if PSCI_EXTENDED_STATE_ID
130#define FF_PSTATE FF_PSTATE_EXTENDED
131#else
132#define FF_PSTATE FF_PSTATE_ORIG
133#endif
Soby Mathew90e82582015-01-07 11:10:22 +0000134
135/* Features flags for CPU SUSPEND OS Initiated mode support. Bits [0:0] */
Varun Wadekar030567e2017-05-25 18:04:48 -0700136#define FF_MODE_SUPPORT_SHIFT U(0)
137#define FF_SUPPORTS_OS_INIT_MODE U(1)
Soby Mathew90e82582015-01-07 11:10:22 +0000138
139/*******************************************************************************
Achin Gupta4f6ad662013-10-25 09:08:21 +0100140 * PSCI version
141 ******************************************************************************/
Varun Wadekar030567e2017-05-25 18:04:48 -0700142#define PSCI_MAJOR_VER (U(1) << 16)
Roberto Vargas829e97d2017-09-11 09:11:58 +0100143#define PSCI_MINOR_VER U(0x1)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100144
145/*******************************************************************************
146 * PSCI error codes
147 ******************************************************************************/
148#define PSCI_E_SUCCESS 0
149#define PSCI_E_NOT_SUPPORTED -1
150#define PSCI_E_INVALID_PARAMS -2
151#define PSCI_E_DENIED -3
152#define PSCI_E_ALREADY_ON -4
153#define PSCI_E_ON_PENDING -5
154#define PSCI_E_INTERN_FAIL -6
155#define PSCI_E_NOT_PRESENT -7
156#define PSCI_E_DISABLED -8
Soby Mathew617540d2015-07-15 12:13:26 +0100157#define PSCI_E_INVALID_ADDRESS -9
Achin Gupta4f6ad662013-10-25 09:08:21 +0100158
Soby Mathew9d070b92015-07-29 17:05:03 +0100159#define PSCI_INVALID_MPIDR ~((u_register_t)0)
Vikram Kanigiri759ec932014-04-01 19:26:26 +0100160
Roberto Vargas36a8f8f2017-07-26 09:23:09 +0100161/*
162 * SYSTEM_RESET2 macros
163 */
Antonio Nino Diaz1083b2b2018-07-20 09:17:26 +0100164#define PSCI_RESET2_TYPE_VENDOR_SHIFT U(31)
165#define PSCI_RESET2_TYPE_VENDOR (U(1) << PSCI_RESET2_TYPE_VENDOR_SHIFT)
166#define PSCI_RESET2_TYPE_ARCH (U(0) << PSCI_RESET2_TYPE_VENDOR_SHIFT)
167#define PSCI_RESET2_SYSTEM_WARM_RESET (PSCI_RESET2_TYPE_ARCH | U(0))
Roberto Vargas36a8f8f2017-07-26 09:23:09 +0100168
Julius Wernerd5dfdeb2019-07-09 13:49:11 -0700169#ifndef __ASSEMBLER__
Dan Handley97043ac2014-04-09 13:14:54 +0100170
171#include <stdint.h>
Soby Mathew67487842015-07-13 14:10:57 +0100172
Antonio Nino Diaz97373c32018-07-18 11:57:21 +0100173/* Function to help build the psci capabilities bitfield */
174
175static inline unsigned int define_psci_cap(unsigned int x)
176{
177 return U(1) << (x & U(0x1f));
178}
179
180
181/* Power state helper functions */
182
183static inline unsigned int psci_get_pstate_id(unsigned int power_state)
184{
185 return ((power_state) >> PSTATE_ID_SHIFT) & PSTATE_ID_MASK;
186}
187
188static inline unsigned int psci_get_pstate_type(unsigned int power_state)
189{
190 return ((power_state) >> PSTATE_TYPE_SHIFT) & PSTATE_TYPE_MASK;
191}
192
193static inline unsigned int psci_check_power_state(unsigned int power_state)
194{
195 return ((power_state) & PSTATE_VALID_MASK);
196}
197
Soby Mathew67487842015-07-13 14:10:57 +0100198/*
Jeenu Viswambharan28d3d612016-08-03 15:54:50 +0100199 * These are the power states reported by PSCI_NODE_HW_STATE API for the
200 * specified CPU. The definitions of these states can be found in Section 5.15.3
201 * of PSCI specification (ARM DEN 0022C).
202 */
Antonio Nino Diaz1083b2b2018-07-20 09:17:26 +0100203#define HW_ON 0
204#define HW_OFF 1
205#define HW_STANDBY 2
Jeenu Viswambharan28d3d612016-08-03 15:54:50 +0100206
207/*
Soby Mathew67487842015-07-13 14:10:57 +0100208 * Macro to represent invalid affinity level within PSCI.
209 */
Varun Wadekar030567e2017-05-25 18:04:48 -0700210#define PSCI_INVALID_PWR_LVL (PLAT_MAX_PWR_LVL + U(1))
Soby Mathew67487842015-07-13 14:10:57 +0100211
212/*
213 * Type for representing the local power state at a particular level.
214 */
215typedef uint8_t plat_local_state_t;
216
217/* The local state macro used to represent RUN state. */
Antonio Nino Diaz1083b2b2018-07-20 09:17:26 +0100218#define PSCI_LOCAL_STATE_RUN U(0)
Soby Mathew67487842015-07-13 14:10:57 +0100219
220/*
Antonio Nino Diaz97373c32018-07-18 11:57:21 +0100221 * Function to test whether the plat_local_state is RUN state
Soby Mathew67487842015-07-13 14:10:57 +0100222 */
Antonio Nino Diaz97373c32018-07-18 11:57:21 +0100223static inline int is_local_state_run(unsigned int plat_local_state)
224{
225 return (plat_local_state == PSCI_LOCAL_STATE_RUN) ? 1 : 0;
226}
Soby Mathew67487842015-07-13 14:10:57 +0100227
228/*
Antonio Nino Diaz97373c32018-07-18 11:57:21 +0100229 * Function to test whether the plat_local_state is RETENTION state
Soby Mathew67487842015-07-13 14:10:57 +0100230 */
Antonio Nino Diaz97373c32018-07-18 11:57:21 +0100231static inline int is_local_state_retn(unsigned int plat_local_state)
232{
233 return ((plat_local_state > PSCI_LOCAL_STATE_RUN) &&
234 (plat_local_state <= PLAT_MAX_RET_STATE)) ? 1 : 0;
235}
Soby Mathew67487842015-07-13 14:10:57 +0100236
237/*
Antonio Nino Diaz97373c32018-07-18 11:57:21 +0100238 * Function to test whether the plat_local_state is OFF state
Soby Mathew67487842015-07-13 14:10:57 +0100239 */
Antonio Nino Diaz97373c32018-07-18 11:57:21 +0100240static inline int is_local_state_off(unsigned int plat_local_state)
241{
242 return ((plat_local_state > PLAT_MAX_RET_STATE) &&
243 (plat_local_state <= PLAT_MAX_OFF_STATE)) ? 1 : 0;
244}
Soby Mathew67487842015-07-13 14:10:57 +0100245
246/*****************************************************************************
247 * This data structure defines the representation of the power state parameter
248 * for its exchange between the generic PSCI code and the platform port. For
249 * example, it is used by the platform port to specify the requested power
250 * states during a power management operation. It is used by the generic code to
251 * inform the platform about the target power states that each level should
252 * enter.
253 ****************************************************************************/
254typedef struct psci_power_state {
255 /*
256 * The pwr_domain_state[] stores the local power state at each level
257 * for the CPU.
258 */
Varun Wadekar030567e2017-05-25 18:04:48 -0700259 plat_local_state_t pwr_domain_state[PLAT_MAX_PWR_LVL + U(1)];
Soby Mathew67487842015-07-13 14:10:57 +0100260} psci_power_state_t;
Dan Handley97043ac2014-04-09 13:14:54 +0100261
Achin Gupta776b68a2014-07-25 14:52:47 +0100262/*******************************************************************************
263 * Structure used to store per-cpu information relevant to the PSCI service.
264 * It is populated in the per-cpu data array. In return we get a guarantee that
265 * this information will not reside on a cache line shared with another cpu.
266 ******************************************************************************/
267typedef struct psci_cpu_data {
Soby Mathew67487842015-07-13 14:10:57 +0100268 /* State as seen by PSCI Affinity Info API */
269 aff_info_state_t aff_info_state;
Soby Mathew9d070b92015-07-29 17:05:03 +0100270
Soby Mathew67487842015-07-13 14:10:57 +0100271 /*
272 * Highest power level which takes part in a power management
273 * operation.
274 */
Antonio Nino Diaz1083b2b2018-07-20 09:17:26 +0100275 unsigned int target_pwrlvl;
Soby Mathew9d070b92015-07-29 17:05:03 +0100276
Soby Mathew67487842015-07-13 14:10:57 +0100277 /* The local power state of this CPU */
278 plat_local_state_t local_state;
Achin Gupta776b68a2014-07-25 14:52:47 +0100279} psci_cpu_data_t;
Dan Handley97043ac2014-04-09 13:14:54 +0100280
Achin Gupta4f6ad662013-10-25 09:08:21 +0100281/*******************************************************************************
282 * Structure populated by platform specific code to export routines which
Sandrine Bailleux1645d3e2015-12-17 13:58:58 +0000283 * perform common low level power management functions
Achin Gupta4f6ad662013-10-25 09:08:21 +0100284 ******************************************************************************/
Soby Mathew67487842015-07-13 14:10:57 +0100285typedef struct plat_psci_ops {
286 void (*cpu_standby)(plat_local_state_t cpu_state);
287 int (*pwr_domain_on)(u_register_t mpidr);
288 void (*pwr_domain_off)(const psci_power_state_t *target_state);
Varun Wadekar1862d622017-07-10 16:02:05 -0700289 void (*pwr_domain_suspend_pwrdown_early)(
290 const psci_power_state_t *target_state);
Soby Mathew67487842015-07-13 14:10:57 +0100291 void (*pwr_domain_suspend)(const psci_power_state_t *target_state);
292 void (*pwr_domain_on_finish)(const psci_power_state_t *target_state);
Madhukar Pappireddy10107702019-08-12 18:31:33 -0500293 void (*pwr_domain_on_finish_late)(
294 const psci_power_state_t *target_state);
Soby Mathew67487842015-07-13 14:10:57 +0100295 void (*pwr_domain_suspend_finish)(
296 const psci_power_state_t *target_state);
Yann Gautier3c471c32018-11-09 18:21:51 +0100297 void __dead2 (*pwr_domain_pwr_down_wfi)(
298 const psci_power_state_t *target_state);
299 void __dead2 (*system_off)(void);
300 void __dead2 (*system_reset)(void);
Soby Mathew67487842015-07-13 14:10:57 +0100301 int (*validate_power_state)(unsigned int power_state,
302 psci_power_state_t *req_state);
Soby Mathew9d070b92015-07-29 17:05:03 +0100303 int (*validate_ns_entrypoint)(uintptr_t ns_entrypoint);
Soby Mathew67487842015-07-13 14:10:57 +0100304 void (*get_sys_suspend_power_state)(
305 psci_power_state_t *req_state);
Yatharth Kochar170fb932016-05-09 18:26:35 +0100306 int (*get_pwr_lvl_state_idx)(plat_local_state_t pwr_domain_state,
307 int pwrlvl);
308 int (*translate_power_state_by_mpidr)(u_register_t mpidr,
309 unsigned int power_state,
310 psci_power_state_t *output_state);
Jeenu Viswambharan28d3d612016-08-03 15:54:50 +0100311 int (*get_node_hw_state)(u_register_t mpidr, unsigned int power_level);
Roberto Vargasd4c596b2017-08-03 08:16:16 +0100312 int (*mem_protect_chk)(uintptr_t base, u_register_t length);
313 int (*read_mem_protect)(int *val);
314 int (*write_mem_protect)(int val);
Roberto Vargas36a8f8f2017-07-26 09:23:09 +0100315 int (*system_reset2)(int is_vendor,
316 int reset_type, u_register_t cookie);
Soby Mathew67487842015-07-13 14:10:57 +0100317} plat_psci_ops_t;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100318
319/*******************************************************************************
320 * Function & Data prototypes
321 ******************************************************************************/
Dan Handleyc6bc0712014-05-14 12:38:32 +0100322unsigned int psci_version(void);
Soby Mathew9d070b92015-07-29 17:05:03 +0100323int psci_cpu_on(u_register_t target_cpu,
324 uintptr_t entrypoint,
325 u_register_t context_id);
326int psci_cpu_suspend(unsigned int power_state,
327 uintptr_t entrypoint,
328 u_register_t context_id);
329int psci_system_suspend(uintptr_t entrypoint, u_register_t context_id);
330int psci_cpu_off(void);
331int psci_affinity_info(u_register_t target_affinity,
332 unsigned int lowest_affinity_level);
333int psci_migrate(u_register_t target_cpu);
Soby Mathew8991eed2014-10-23 10:35:34 +0100334int psci_migrate_info_type(void);
Antonio Nino Diaz6b7b0f32018-07-17 15:10:08 +0100335u_register_t psci_migrate_info_up_cpu(void);
Jeenu Viswambharan28d3d612016-08-03 15:54:50 +0100336int psci_node_hw_state(u_register_t target_cpu,
337 unsigned int power_level);
Soby Mathew9d070b92015-07-29 17:05:03 +0100338int psci_features(unsigned int psci_fid);
Dan Handleyc6bc0712014-05-14 12:38:32 +0100339void __dead2 psci_power_down_wfi(void);
Soby Mathewcf0b1492016-04-29 19:01:30 +0100340void psci_arch_setup(void);
341
Julius Wernerd5dfdeb2019-07-09 13:49:11 -0700342#endif /*__ASSEMBLER__*/
Achin Gupta4f6ad662013-10-25 09:08:21 +0100343
Antonio Nino Diaz97373c32018-07-18 11:57:21 +0100344#endif /* PSCI_H */