blob: 01dc3cb41f4782418a6d5ea6a4cc3ff1c437726b [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Madhukar Pappireddy33bd5142019-08-12 18:31:33 -05002 * Copyright (c) 2013-2019, ARM Limited and Contributors. All rights reserved.
Varun Wadekar77dd4f12023-04-25 14:03:27 +01003 * Copyright (c) 2023, NVIDIA Corporation. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01004 *
dp-armfa3cf0b2017-05-03 09:38:09 +01005 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01006 */
7
Antonio Nino Diaz5a42b682018-07-18 11:57:21 +01008#ifndef PSCI_H
9#define PSCI_H
Achin Gupta4f6ad662013-10-25 09:08:21 +010010
Soby Mathew981487a2015-07-13 14:10:57 +010011#include <platform_def.h> /* for PLAT_NUM_PWR_DOMAINS */
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000012
13#include <common/bl_common.h>
14#include <lib/bakery_lock.h>
15#include <lib/psci/psci_lib.h> /* To maintain compatibility for SPDs */
16#include <lib/utils_def.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010017
Achin Gupta4f6ad662013-10-25 09:08:21 +010018/*******************************************************************************
Sandrine Bailleuxf4119ec2015-12-17 13:58:58 +000019 * Number of power domains whose state this PSCI implementation can track
Soby Mathew523d6332015-01-08 18:02:19 +000020 ******************************************************************************/
Soby Mathew981487a2015-07-13 14:10:57 +010021#ifdef PLAT_NUM_PWR_DOMAINS
22#define PSCI_NUM_PWR_DOMAINS PLAT_NUM_PWR_DOMAINS
Soby Mathew523d6332015-01-08 18:02:19 +000023#else
Deepika Bhavnani4287c0c2019-12-13 10:23:18 -060024#define PSCI_NUM_PWR_DOMAINS (U(2) * PLATFORM_CORE_COUNT)
Soby Mathew523d6332015-01-08 18:02:19 +000025#endif
26
Soby Mathew981487a2015-07-13 14:10:57 +010027#define PSCI_NUM_NON_CPU_PWR_DOMAINS (PSCI_NUM_PWR_DOMAINS - \
28 PLATFORM_CORE_COUNT)
29
30/* This is the power level corresponding to a CPU */
Antonio Nino Diaz6f3ccc52018-07-20 09:17:26 +010031#define PSCI_CPU_PWR_LVL U(0)
Soby Mathew981487a2015-07-13 14:10:57 +010032
33/*
34 * The maximum power level supported by PSCI. Since PSCI CPU_SUSPEND
35 * uses the old power_state parameter format which has 2 bits to specify the
36 * power level, this constant is defined to be 3.
37 */
Varun Wadekarc6a11f62017-05-25 18:04:48 -070038#define PSCI_MAX_PWR_LVL U(3)
Soby Mathew981487a2015-07-13 14:10:57 +010039
Soby Mathew523d6332015-01-08 18:02:19 +000040/*******************************************************************************
Sandrine Bailleuxf4119ec2015-12-17 13:58:58 +000041 * Defines for runtime services function ids
Achin Gupta4f6ad662013-10-25 09:08:21 +010042 ******************************************************************************/
Varun Wadekarc6a11f62017-05-25 18:04:48 -070043#define PSCI_VERSION U(0x84000000)
44#define PSCI_CPU_SUSPEND_AARCH32 U(0x84000001)
45#define PSCI_CPU_SUSPEND_AARCH64 U(0xc4000001)
46#define PSCI_CPU_OFF U(0x84000002)
47#define PSCI_CPU_ON_AARCH32 U(0x84000003)
48#define PSCI_CPU_ON_AARCH64 U(0xc4000003)
49#define PSCI_AFFINITY_INFO_AARCH32 U(0x84000004)
50#define PSCI_AFFINITY_INFO_AARCH64 U(0xc4000004)
51#define PSCI_MIG_AARCH32 U(0x84000005)
52#define PSCI_MIG_AARCH64 U(0xc4000005)
53#define PSCI_MIG_INFO_TYPE U(0x84000006)
54#define PSCI_MIG_INFO_UP_CPU_AARCH32 U(0x84000007)
55#define PSCI_MIG_INFO_UP_CPU_AARCH64 U(0xc4000007)
56#define PSCI_SYSTEM_OFF U(0x84000008)
57#define PSCI_SYSTEM_RESET U(0x84000009)
58#define PSCI_FEATURES U(0x8400000A)
59#define PSCI_NODE_HW_STATE_AARCH32 U(0x8400000d)
60#define PSCI_NODE_HW_STATE_AARCH64 U(0xc400000d)
61#define PSCI_SYSTEM_SUSPEND_AARCH32 U(0x8400000E)
62#define PSCI_SYSTEM_SUSPEND_AARCH64 U(0xc400000E)
Wing Li71f69df2022-09-14 13:18:15 -070063#define PSCI_SET_SUSPEND_MODE U(0x8400000F)
Varun Wadekarc6a11f62017-05-25 18:04:48 -070064#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)
Roberto Vargasb820ad02017-07-26 09:23:09 +010068#define PSCI_SYSTEM_RESET2_AARCH32 U(0x84000012)
69#define PSCI_SYSTEM_RESET2_AARCH64 U(0xc4000012)
Roberto Vargas0a4c2612017-08-03 08:16:16 +010070#define PSCI_MEM_PROTECT U(0x84000013)
71#define PSCI_MEM_CHK_RANGE_AARCH32 U(0x84000014)
72#define PSCI_MEM_CHK_RANGE_AARCH64 U(0xc4000014)
Soby Mathew6cdddaf2015-01-07 11:10:22 +000073
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +000074/*
Juan Castillo4dc4a472014-08-12 11:17:06 +010075 * Number of PSCI calls (above) implemented
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +000076 */
Yatharth Kochar241ec6c2016-05-09 18:26:35 +010077#if ENABLE_PSCI_STAT
Wing Li71f69df2022-09-14 13:18:15 -070078#if PSCI_OS_INIT_MODE
79#define PSCI_NUM_CALLS U(30)
Yatharth Kochar241ec6c2016-05-09 18:26:35 +010080#else
Wing Li71f69df2022-09-14 13:18:15 -070081#define PSCI_NUM_CALLS U(29)
82#endif
83#else
84#if PSCI_OS_INIT_MODE
85#define PSCI_NUM_CALLS U(26)
86#else
87#define PSCI_NUM_CALLS U(25)
88#endif
Yatharth Kochar241ec6c2016-05-09 18:26:35 +010089#endif
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +000090
Soby Mathewd0194872016-04-29 19:01:30 +010091/* The macros below are used to identify PSCI calls from the SMC function ID */
Varun Wadekarc6a11f62017-05-25 18:04:48 -070092#define PSCI_FID_MASK U(0xffe0)
93#define PSCI_FID_VALUE U(0)
Soby Mathewd0194872016-04-29 19:01:30 +010094#define is_psci_fid(_fid) \
95 (((_fid) & PSCI_FID_MASK) == PSCI_FID_VALUE)
96
Achin Gupta4f6ad662013-10-25 09:08:21 +010097/*******************************************************************************
98 * PSCI Migrate and friends
99 ******************************************************************************/
Antonio Nino Diaz6f3ccc52018-07-20 09:17:26 +0100100#define PSCI_TOS_UP_MIG_CAP 0
101#define PSCI_TOS_NOT_UP_MIG_CAP 1
102#define PSCI_TOS_NOT_PRESENT_MP 2
Achin Gupta4f6ad662013-10-25 09:08:21 +0100103
104/*******************************************************************************
105 * PSCI CPU_SUSPEND 'power_state' parameter specific defines
106 ******************************************************************************/
Varun Wadekarc6a11f62017-05-25 18:04:48 -0700107#define PSTATE_ID_SHIFT U(0)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100108
Soby Mathew981487a2015-07-13 14:10:57 +0100109#if PSCI_EXTENDED_STATE_ID
Varun Wadekarc6a11f62017-05-25 18:04:48 -0700110#define PSTATE_VALID_MASK U(0xB0000000)
111#define PSTATE_TYPE_SHIFT U(30)
112#define PSTATE_ID_MASK U(0xfffffff)
Soby Mathew981487a2015-07-13 14:10:57 +0100113#else
Varun Wadekarc6a11f62017-05-25 18:04:48 -0700114#define PSTATE_VALID_MASK U(0xFCFE0000)
115#define PSTATE_TYPE_SHIFT U(16)
116#define PSTATE_PWR_LVL_SHIFT U(24)
117#define PSTATE_ID_MASK U(0xffff)
118#define PSTATE_PWR_LVL_MASK U(0x3)
Soby Mathew981487a2015-07-13 14:10:57 +0100119
120#define psci_get_pstate_pwrlvl(pstate) (((pstate) >> PSTATE_PWR_LVL_SHIFT) & \
121 PSTATE_PWR_LVL_MASK)
122#define psci_make_powerstate(state_id, type, pwrlvl) \
123 (((state_id) & PSTATE_ID_MASK) << PSTATE_ID_SHIFT) |\
124 (((type) & PSTATE_TYPE_MASK) << PSTATE_TYPE_SHIFT) |\
125 (((pwrlvl) & PSTATE_PWR_LVL_MASK) << PSTATE_PWR_LVL_SHIFT)
126#endif /* __PSCI_EXTENDED_STATE_ID__ */
Achin Gupta4f6ad662013-10-25 09:08:21 +0100127
Varun Wadekarc6a11f62017-05-25 18:04:48 -0700128#define PSTATE_TYPE_STANDBY U(0x0)
129#define PSTATE_TYPE_POWERDOWN U(0x1)
130#define PSTATE_TYPE_MASK U(0x1)
Vikram Kanigiri3b7c59b2014-03-21 11:57:10 +0000131
Achin Gupta4f6ad662013-10-25 09:08:21 +0100132/*******************************************************************************
Soby Mathew6cdddaf2015-01-07 11:10:22 +0000133 * PSCI CPU_FEATURES feature flag specific defines
134 ******************************************************************************/
135/* Features flags for CPU SUSPEND power state parameter format. Bits [1:1] */
Varun Wadekarc6a11f62017-05-25 18:04:48 -0700136#define FF_PSTATE_SHIFT U(1)
137#define FF_PSTATE_ORIG U(0)
138#define FF_PSTATE_EXTENDED U(1)
Soby Mathew981487a2015-07-13 14:10:57 +0100139#if PSCI_EXTENDED_STATE_ID
140#define FF_PSTATE FF_PSTATE_EXTENDED
141#else
142#define FF_PSTATE FF_PSTATE_ORIG
143#endif
Soby Mathew6cdddaf2015-01-07 11:10:22 +0000144
145/* Features flags for CPU SUSPEND OS Initiated mode support. Bits [0:0] */
Varun Wadekarc6a11f62017-05-25 18:04:48 -0700146#define FF_MODE_SUPPORT_SHIFT U(0)
Wing Lid28393a2022-09-14 13:18:19 -0700147#if PSCI_OS_INIT_MODE
Varun Wadekarc6a11f62017-05-25 18:04:48 -0700148#define FF_SUPPORTS_OS_INIT_MODE U(1)
Wing Lid28393a2022-09-14 13:18:19 -0700149#else
150#define FF_SUPPORTS_OS_INIT_MODE U(0)
151#endif
Soby Mathew6cdddaf2015-01-07 11:10:22 +0000152
153/*******************************************************************************
Achin Gupta4f6ad662013-10-25 09:08:21 +0100154 * PSCI version
155 ******************************************************************************/
Varun Wadekarc6a11f62017-05-25 18:04:48 -0700156#define PSCI_MAJOR_VER (U(1) << 16)
Roberto Vargasffb34d02017-09-11 09:11:58 +0100157#define PSCI_MINOR_VER U(0x1)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100158
159/*******************************************************************************
160 * PSCI error codes
161 ******************************************************************************/
162#define PSCI_E_SUCCESS 0
163#define PSCI_E_NOT_SUPPORTED -1
164#define PSCI_E_INVALID_PARAMS -2
165#define PSCI_E_DENIED -3
166#define PSCI_E_ALREADY_ON -4
167#define PSCI_E_ON_PENDING -5
168#define PSCI_E_INTERN_FAIL -6
169#define PSCI_E_NOT_PRESENT -7
170#define PSCI_E_DISABLED -8
Soby Mathewf1f97a12015-07-15 12:13:26 +0100171#define PSCI_E_INVALID_ADDRESS -9
Achin Gupta4f6ad662013-10-25 09:08:21 +0100172
Soby Mathew011ca182015-07-29 17:05:03 +0100173#define PSCI_INVALID_MPIDR ~((u_register_t)0)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100174
Roberto Vargasb820ad02017-07-26 09:23:09 +0100175/*
176 * SYSTEM_RESET2 macros
177 */
Antonio Nino Diaz6f3ccc52018-07-20 09:17:26 +0100178#define PSCI_RESET2_TYPE_VENDOR_SHIFT U(31)
179#define PSCI_RESET2_TYPE_VENDOR (U(1) << PSCI_RESET2_TYPE_VENDOR_SHIFT)
180#define PSCI_RESET2_TYPE_ARCH (U(0) << PSCI_RESET2_TYPE_VENDOR_SHIFT)
181#define PSCI_RESET2_SYSTEM_WARM_RESET (PSCI_RESET2_TYPE_ARCH | U(0))
Roberto Vargasb820ad02017-07-26 09:23:09 +0100182
Julius Werner53456fc2019-07-09 13:49:11 -0700183#ifndef __ASSEMBLER__
Achin Gupta4f6ad662013-10-25 09:08:21 +0100184
Soby Mathew981487a2015-07-13 14:10:57 +0100185#include <stdint.h>
Soby Mathew981487a2015-07-13 14:10:57 +0100186
Antonio Nino Diaz5a42b682018-07-18 11:57:21 +0100187/* Function to help build the psci capabilities bitfield */
188
189static inline unsigned int define_psci_cap(unsigned int x)
190{
191 return U(1) << (x & U(0x1f));
192}
193
194
195/* Power state helper functions */
196
197static inline unsigned int psci_get_pstate_id(unsigned int power_state)
198{
199 return ((power_state) >> PSTATE_ID_SHIFT) & PSTATE_ID_MASK;
200}
201
202static inline unsigned int psci_get_pstate_type(unsigned int power_state)
203{
204 return ((power_state) >> PSTATE_TYPE_SHIFT) & PSTATE_TYPE_MASK;
205}
206
207static inline unsigned int psci_check_power_state(unsigned int power_state)
208{
209 return ((power_state) & PSTATE_VALID_MASK);
210}
211
Soby Mathew981487a2015-07-13 14:10:57 +0100212/*
213 * These are the states reported by the PSCI_AFFINITY_INFO API for the specified
214 * CPU. The definitions of these states can be found in Section 5.7.1 in the
215 * PSCI specification (ARM DEN 0022C).
216 */
217typedef enum {
Varun Wadekarc6a11f62017-05-25 18:04:48 -0700218 AFF_STATE_ON = U(0),
219 AFF_STATE_OFF = U(1),
220 AFF_STATE_ON_PENDING = U(2)
Soby Mathew981487a2015-07-13 14:10:57 +0100221} aff_info_state_t;
222
223/*
Jeenu Viswambharan7f03e9d92016-08-03 15:54:50 +0100224 * These are the power states reported by PSCI_NODE_HW_STATE API for the
225 * specified CPU. The definitions of these states can be found in Section 5.15.3
226 * of PSCI specification (ARM DEN 0022C).
227 */
Antonio Nino Diaz6f3ccc52018-07-20 09:17:26 +0100228#define HW_ON 0
229#define HW_OFF 1
230#define HW_STANDBY 2
Jeenu Viswambharan7f03e9d92016-08-03 15:54:50 +0100231
232/*
Soby Mathew981487a2015-07-13 14:10:57 +0100233 * Macro to represent invalid affinity level within PSCI.
234 */
Varun Wadekarc6a11f62017-05-25 18:04:48 -0700235#define PSCI_INVALID_PWR_LVL (PLAT_MAX_PWR_LVL + U(1))
Vikram Kanigirif100f412014-04-01 19:26:26 +0100236
Soby Mathew981487a2015-07-13 14:10:57 +0100237/*
238 * Type for representing the local power state at a particular level.
239 */
240typedef uint8_t plat_local_state_t;
241
242/* The local state macro used to represent RUN state. */
Antonio Nino Diaz6f3ccc52018-07-20 09:17:26 +0100243#define PSCI_LOCAL_STATE_RUN U(0)
Achin Gupta75f73672013-12-05 16:33:10 +0000244
Soby Mathew981487a2015-07-13 14:10:57 +0100245/*
Antonio Nino Diaz5a42b682018-07-18 11:57:21 +0100246 * Function to test whether the plat_local_state is RUN state
Soby Mathew981487a2015-07-13 14:10:57 +0100247 */
Antonio Nino Diaz5a42b682018-07-18 11:57:21 +0100248static inline int is_local_state_run(unsigned int plat_local_state)
249{
250 return (plat_local_state == PSCI_LOCAL_STATE_RUN) ? 1 : 0;
251}
Vikram Kanigirif100f412014-04-01 19:26:26 +0100252
Soby Mathew981487a2015-07-13 14:10:57 +0100253/*
Antonio Nino Diaz5a42b682018-07-18 11:57:21 +0100254 * Function to test whether the plat_local_state is RETENTION state
Soby Mathew981487a2015-07-13 14:10:57 +0100255 */
Antonio Nino Diaz5a42b682018-07-18 11:57:21 +0100256static inline int is_local_state_retn(unsigned int plat_local_state)
257{
258 return ((plat_local_state > PSCI_LOCAL_STATE_RUN) &&
259 (plat_local_state <= PLAT_MAX_RET_STATE)) ? 1 : 0;
260}
Vikram Kanigirif100f412014-04-01 19:26:26 +0100261
Soby Mathew981487a2015-07-13 14:10:57 +0100262/*
Antonio Nino Diaz5a42b682018-07-18 11:57:21 +0100263 * Function to test whether the plat_local_state is OFF state
Soby Mathew981487a2015-07-13 14:10:57 +0100264 */
Antonio Nino Diaz5a42b682018-07-18 11:57:21 +0100265static inline int is_local_state_off(unsigned int plat_local_state)
266{
267 return ((plat_local_state > PLAT_MAX_RET_STATE) &&
268 (plat_local_state <= PLAT_MAX_OFF_STATE)) ? 1 : 0;
269}
Dan Handley2bd4ef22014-04-09 13:14:54 +0100270
Soby Mathew981487a2015-07-13 14:10:57 +0100271/*****************************************************************************
272 * This data structure defines the representation of the power state parameter
273 * for its exchange between the generic PSCI code and the platform port. For
274 * example, it is used by the platform port to specify the requested power
275 * states during a power management operation. It is used by the generic code to
276 * inform the platform about the target power states that each level should
277 * enter.
278 ****************************************************************************/
279typedef struct psci_power_state {
280 /*
281 * The pwr_domain_state[] stores the local power state at each level
282 * for the CPU.
283 */
Varun Wadekarc6a11f62017-05-25 18:04:48 -0700284 plat_local_state_t pwr_domain_state[PLAT_MAX_PWR_LVL + U(1)];
Wing Li2c556f32022-09-14 13:18:17 -0700285#if PSCI_OS_INIT_MODE
286 /*
287 * The highest power level at which the current CPU is the last running
288 * CPU.
289 */
290 unsigned int last_at_pwrlvl;
291#endif
Soby Mathew981487a2015-07-13 14:10:57 +0100292} psci_power_state_t;
Dan Handley2bd4ef22014-04-09 13:14:54 +0100293
Achin Guptaf3ccbab2014-07-25 14:52:47 +0100294/*******************************************************************************
295 * Structure used to store per-cpu information relevant to the PSCI service.
296 * It is populated in the per-cpu data array. In return we get a guarantee that
297 * this information will not reside on a cache line shared with another cpu.
298 ******************************************************************************/
299typedef struct psci_cpu_data {
Soby Mathew981487a2015-07-13 14:10:57 +0100300 /* State as seen by PSCI Affinity Info API */
301 aff_info_state_t aff_info_state;
Soby Mathew011ca182015-07-29 17:05:03 +0100302
Soby Mathew981487a2015-07-13 14:10:57 +0100303 /*
304 * Highest power level which takes part in a power management
305 * operation.
306 */
Antonio Nino Diaz6f3ccc52018-07-20 09:17:26 +0100307 unsigned int target_pwrlvl;
Soby Mathew011ca182015-07-29 17:05:03 +0100308
Soby Mathew981487a2015-07-13 14:10:57 +0100309 /* The local power state of this CPU */
310 plat_local_state_t local_state;
Achin Guptaf3ccbab2014-07-25 14:52:47 +0100311} psci_cpu_data_t;
Dan Handley2bd4ef22014-04-09 13:14:54 +0100312
Achin Gupta4f6ad662013-10-25 09:08:21 +0100313/*******************************************************************************
314 * Structure populated by platform specific code to export routines which
Sandrine Bailleuxf4119ec2015-12-17 13:58:58 +0000315 * perform common low level power management functions
Achin Gupta4f6ad662013-10-25 09:08:21 +0100316 ******************************************************************************/
Soby Mathew981487a2015-07-13 14:10:57 +0100317typedef struct plat_psci_ops {
318 void (*cpu_standby)(plat_local_state_t cpu_state);
319 int (*pwr_domain_on)(u_register_t mpidr);
320 void (*pwr_domain_off)(const psci_power_state_t *target_state);
Varun Wadekar77dd4f12023-04-25 14:03:27 +0100321 int (*pwr_domain_off_early)(const psci_power_state_t *target_state);
Wing Lic0dc6392023-05-04 08:31:19 -0700322#if PSCI_OS_INIT_MODE
323 int (*pwr_domain_validate_suspend)(
324 const psci_power_state_t *target_state);
325#endif
Varun Wadekarae87f4b2017-07-10 16:02:05 -0700326 void (*pwr_domain_suspend_pwrdown_early)(
327 const psci_power_state_t *target_state);
Soby Mathew981487a2015-07-13 14:10:57 +0100328 void (*pwr_domain_suspend)(const psci_power_state_t *target_state);
329 void (*pwr_domain_on_finish)(const psci_power_state_t *target_state);
Madhukar Pappireddy33bd5142019-08-12 18:31:33 -0500330 void (*pwr_domain_on_finish_late)(
331 const psci_power_state_t *target_state);
Soby Mathew981487a2015-07-13 14:10:57 +0100332 void (*pwr_domain_suspend_finish)(
333 const psci_power_state_t *target_state);
Yann Gautierbcf8ba22018-11-09 18:21:51 +0100334 void __dead2 (*pwr_domain_pwr_down_wfi)(
335 const psci_power_state_t *target_state);
336 void __dead2 (*system_off)(void);
337 void __dead2 (*system_reset)(void);
Soby Mathew981487a2015-07-13 14:10:57 +0100338 int (*validate_power_state)(unsigned int power_state,
339 psci_power_state_t *req_state);
Soby Mathew011ca182015-07-29 17:05:03 +0100340 int (*validate_ns_entrypoint)(uintptr_t ns_entrypoint);
Soby Mathew981487a2015-07-13 14:10:57 +0100341 void (*get_sys_suspend_power_state)(
342 psci_power_state_t *req_state);
Yatharth Kochar241ec6c2016-05-09 18:26:35 +0100343 int (*get_pwr_lvl_state_idx)(plat_local_state_t pwr_domain_state,
344 int pwrlvl);
345 int (*translate_power_state_by_mpidr)(u_register_t mpidr,
346 unsigned int power_state,
347 psci_power_state_t *output_state);
Jeenu Viswambharan7f03e9d92016-08-03 15:54:50 +0100348 int (*get_node_hw_state)(u_register_t mpidr, unsigned int power_level);
Roberto Vargas0a4c2612017-08-03 08:16:16 +0100349 int (*mem_protect_chk)(uintptr_t base, u_register_t length);
350 int (*read_mem_protect)(int *val);
351 int (*write_mem_protect)(int val);
Roberto Vargasb820ad02017-07-26 09:23:09 +0100352 int (*system_reset2)(int is_vendor,
353 int reset_type, u_register_t cookie);
Soby Mathew981487a2015-07-13 14:10:57 +0100354} plat_psci_ops_t;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100355
356/*******************************************************************************
357 * Function & Data prototypes
358 ******************************************************************************/
Dan Handleya17fefa2014-05-14 12:38:32 +0100359unsigned int psci_version(void);
Soby Mathew011ca182015-07-29 17:05:03 +0100360int psci_cpu_on(u_register_t target_cpu,
361 uintptr_t entrypoint,
362 u_register_t context_id);
363int psci_cpu_suspend(unsigned int power_state,
364 uintptr_t entrypoint,
365 u_register_t context_id);
366int psci_system_suspend(uintptr_t entrypoint, u_register_t context_id);
367int psci_cpu_off(void);
368int psci_affinity_info(u_register_t target_affinity,
369 unsigned int lowest_affinity_level);
370int psci_migrate(u_register_t target_cpu);
Soby Mathew110fe362014-10-23 10:35:34 +0100371int psci_migrate_info_type(void);
Antonio Nino Diaz78a95a62018-07-17 15:10:08 +0100372u_register_t psci_migrate_info_up_cpu(void);
Jeenu Viswambharan7f03e9d92016-08-03 15:54:50 +0100373int psci_node_hw_state(u_register_t target_cpu,
374 unsigned int power_level);
Soby Mathew011ca182015-07-29 17:05:03 +0100375int psci_features(unsigned int psci_fid);
Wing Li71f69df2022-09-14 13:18:15 -0700376#if PSCI_OS_INIT_MODE
377int psci_set_suspend_mode(unsigned int mode);
378#endif
Dan Handleya17fefa2014-05-14 12:38:32 +0100379void __dead2 psci_power_down_wfi(void);
Soby Mathewd0194872016-04-29 19:01:30 +0100380void psci_arch_setup(void);
381
Julius Werner53456fc2019-07-09 13:49:11 -0700382#endif /*__ASSEMBLER__*/
Achin Gupta4f6ad662013-10-25 09:08:21 +0100383
Antonio Nino Diaz5a42b682018-07-18 11:57:21 +0100384#endif /* PSCI_H */