blob: 8ba828155c5c93339d5387b0492330ece962550a [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Roberto Vargas1a6eed32018-02-12 12:36:17 +00002 * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005 */
6
Dan Handley2bd4ef22014-04-09 13:14:54 +01007#include <assert.h>
Dan Handley2b6b5742015-03-19 19:17:53 +00008#include <errno.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00009
10#include <arch_helpers.h>
11#include <common/debug.h>
12#include <drivers/arm/gicv3.h>
13#include <lib/extensions/spe.h>
14#include <lib/mmio.h>
15#include <lib/psci/psci.h>
16#include <plat/common/platform.h>
Antonio Nino Diaza320ecd2019-01-15 14:19:50 +000017#include <platform_def.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000018
19#include <arm_config.h>
Dan Handley2b6b5742015-03-19 19:17:53 +000020#include <plat_arm.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000021
Roberto Vargas2ca18d92018-02-12 12:36:17 +000022#include "../../../../drivers/arm/gic/v3/gicv3_private.h"
Dan Handley4d2e49d2014-04-11 11:52:12 +010023#include "drivers/pwrc/fvp_pwrc.h"
Dan Handleyed6ff952014-05-14 17:44:19 +010024#include "fvp_private.h"
Achin Gupta4f6ad662013-10-25 09:08:21 +010025
Dan Handley2b6b5742015-03-19 19:17:53 +000026
Soby Mathew7799cf72015-04-16 14:49:09 +010027#if ARM_RECOM_STATE_ID_ENC
28/*
29 * The table storing the valid idle power states. Ensure that the
30 * array entries are populated in ascending order of state-id to
31 * enable us to use binary search during power state validation.
32 * The table must be terminated by a NULL entry.
33 */
34const unsigned int arm_pm_idle_states[] = {
35 /* State-id - 0x01 */
36 arm_make_pwrstate_lvl1(ARM_LOCAL_STATE_RUN, ARM_LOCAL_STATE_RET,
37 ARM_PWR_LVL0, PSTATE_TYPE_STANDBY),
38 /* State-id - 0x02 */
39 arm_make_pwrstate_lvl1(ARM_LOCAL_STATE_RUN, ARM_LOCAL_STATE_OFF,
40 ARM_PWR_LVL0, PSTATE_TYPE_POWERDOWN),
41 /* State-id - 0x22 */
42 arm_make_pwrstate_lvl1(ARM_LOCAL_STATE_OFF, ARM_LOCAL_STATE_OFF,
43 ARM_PWR_LVL1, PSTATE_TYPE_POWERDOWN),
Soby Mathew9ca28062017-10-11 16:08:58 +010044 /* State-id - 0x222 */
45 arm_make_pwrstate_lvl2(ARM_LOCAL_STATE_OFF, ARM_LOCAL_STATE_OFF,
46 ARM_LOCAL_STATE_OFF, ARM_PWR_LVL2, PSTATE_TYPE_POWERDOWN),
Soby Mathew7799cf72015-04-16 14:49:09 +010047 0,
48};
49#endif
50
Achin Gupta4f6ad662013-10-25 09:08:21 +010051/*******************************************************************************
Achin Gupta85876392014-07-31 17:45:51 +010052 * Function which implements the common FVP specific operations to power down a
Achin Gupta85876392014-07-31 17:45:51 +010053 * cluster in response to a CPU_OFF or CPU_SUSPEND request.
54 ******************************************************************************/
Sandrine Bailleuxa64a8542015-03-05 10:54:34 +000055static void fvp_cluster_pwrdwn_common(void)
Achin Gupta85876392014-07-31 17:45:51 +010056{
57 uint64_t mpidr = read_mpidr_el1();
58
dp-armee3457b2017-05-23 09:32:49 +010059#if ENABLE_SPE_FOR_LOWER_ELS
60 /*
61 * On power down we need to disable statistical profiling extensions
62 * before exiting coherency.
63 */
Dimitris Papastamos5bdbb472017-10-13 12:06:06 +010064 spe_disable();
dp-armee3457b2017-05-23 09:32:49 +010065#endif
66
Achin Gupta85876392014-07-31 17:45:51 +010067 /* Disable coherency if this cluster is to be turned off */
Vikram Kanigirifbb13012016-02-15 11:54:14 +000068 fvp_interconnect_disable();
Achin Gupta85876392014-07-31 17:45:51 +010069
70 /* Program the power controller to turn the cluster off */
71 fvp_pwrc_write_pcoffr(mpidr);
72}
73
Soby Mathew9ca28062017-10-11 16:08:58 +010074/*
75 * Empty implementation of these hooks avoid setting the GICR_WAKER.Sleep bit
76 * on ARM GICv3 implementations on FVP. This is required, because FVP does not
77 * support SYSTEM_SUSPEND and it is `faked` in firmware. Hence, for wake up
78 * from `fake` system suspend the GIC must not be powered off.
79 */
Roberto Vargas1a6eed32018-02-12 12:36:17 +000080void arm_gicv3_distif_pre_save(unsigned int rdist_proc_num)
Soby Mathew9ca28062017-10-11 16:08:58 +010081{}
82
Roberto Vargas1a6eed32018-02-12 12:36:17 +000083void arm_gicv3_distif_post_restore(unsigned int rdist_proc_num)
Soby Mathew9ca28062017-10-11 16:08:58 +010084{}
85
Soby Mathew12012dd2015-10-26 14:01:53 +000086static void fvp_power_domain_on_finish_common(const psci_power_state_t *target_state)
87{
88 unsigned long mpidr;
89
90 assert(target_state->pwr_domain_state[ARM_PWR_LVL0] ==
91 ARM_LOCAL_STATE_OFF);
92
93 /* Get the mpidr for this cpu */
94 mpidr = read_mpidr_el1();
95
96 /* Perform the common cluster specific operations */
97 if (target_state->pwr_domain_state[ARM_PWR_LVL1] ==
98 ARM_LOCAL_STATE_OFF) {
99 /*
100 * This CPU might have woken up whilst the cluster was
101 * attempting to power down. In this case the FVP power
102 * controller will have a pending cluster power off request
103 * which needs to be cleared by writing to the PPONR register.
104 * This prevents the power controller from interpreting a
105 * subsequent entry of this cpu into a simple wfi as a power
106 * down request.
107 */
108 fvp_pwrc_write_pponr(mpidr);
109
110 /* Enable coherency if this cluster was off */
Vikram Kanigirifbb13012016-02-15 11:54:14 +0000111 fvp_interconnect_enable();
Soby Mathew12012dd2015-10-26 14:01:53 +0000112 }
Soby Mathew9ca28062017-10-11 16:08:58 +0100113 /* Perform the common system specific operations */
114 if (target_state->pwr_domain_state[ARM_PWR_LVL2] ==
115 ARM_LOCAL_STATE_OFF)
116 arm_system_pwr_domain_resume();
Soby Mathew12012dd2015-10-26 14:01:53 +0000117
118 /*
119 * Clear PWKUPR.WEN bit to ensure interrupts do not interfere
120 * with a cpu power down unless the bit is set again
121 */
122 fvp_pwrc_clr_wen(mpidr);
123}
124
125
Achin Gupta85876392014-07-31 17:45:51 +0100126/*******************************************************************************
Soby Mathewfec4eb72015-07-01 16:16:20 +0100127 * FVP handler called when a CPU is about to enter standby.
Vikram Kanigiri3b7c59b2014-03-21 11:57:10 +0000128 ******************************************************************************/
Roberto Vargas2ca18d92018-02-12 12:36:17 +0000129static void fvp_cpu_standby(plat_local_state_t cpu_state)
Vikram Kanigiri3b7c59b2014-03-21 11:57:10 +0000130{
Soby Mathewfec4eb72015-07-01 16:16:20 +0100131
132 assert(cpu_state == ARM_LOCAL_STATE_RET);
133
Andrew Thoelke42e75a72014-04-28 12:28:39 +0100134 /*
135 * Enter standby state
136 * dsb is good practice before using wfi to enter low power states
137 */
138 dsb();
Vikram Kanigiri3b7c59b2014-03-21 11:57:10 +0000139 wfi();
Vikram Kanigiri3b7c59b2014-03-21 11:57:10 +0000140}
141
142/*******************************************************************************
Soby Mathewfec4eb72015-07-01 16:16:20 +0100143 * FVP handler called when a power domain is about to be turned on. The
144 * mpidr determines the CPU to be turned on.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100145 ******************************************************************************/
Roberto Vargas2ca18d92018-02-12 12:36:17 +0000146static int fvp_pwr_domain_on(u_register_t mpidr)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100147{
148 int rc = PSCI_E_SUCCESS;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100149 unsigned int psysr;
150
Achin Gupta4f6ad662013-10-25 09:08:21 +0100151 /*
Sandrine Bailleux7175bde2015-12-08 14:18:24 +0000152 * Ensure that we do not cancel an inflight power off request for the
153 * target cpu. That would leave it in a zombie wfi. Wait for it to power
154 * off and then program the power controller to turn that CPU on.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100155 */
156 do {
157 psysr = fvp_pwrc_read_psysr(mpidr);
Sathees Balya50905c72018-10-05 13:30:59 +0100158 } while ((psysr & PSYSR_AFF_L0) != 0U);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100159
Achin Gupta4f6ad662013-10-25 09:08:21 +0100160 fvp_pwrc_write_pponr(mpidr);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100161 return rc;
162}
163
164/*******************************************************************************
Soby Mathewfec4eb72015-07-01 16:16:20 +0100165 * FVP handler called when a power domain is about to be turned off. The
166 * target_state encodes the power state that each level should transition to.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100167 ******************************************************************************/
Roberto Vargas2ca18d92018-02-12 12:36:17 +0000168static void fvp_pwr_domain_off(const psci_power_state_t *target_state)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100169{
Soby Mathewfec4eb72015-07-01 16:16:20 +0100170 assert(target_state->pwr_domain_state[ARM_PWR_LVL0] ==
171 ARM_LOCAL_STATE_OFF);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100172
Achin Gupta85876392014-07-31 17:45:51 +0100173 /*
Soby Mathewfec4eb72015-07-01 16:16:20 +0100174 * If execution reaches this stage then this power domain will be
175 * suspended. Perform at least the cpu specific actions followed
176 * by the cluster specific operations if applicable.
Achin Gupta85876392014-07-31 17:45:51 +0100177 */
Jeenu Viswambharan6ad35482016-12-09 11:14:34 +0000178
179 /* Prevent interrupts from spuriously waking up this cpu */
180 plat_arm_gic_cpuif_disable();
181
182 /* Turn redistributor off */
183 plat_arm_gic_redistif_off();
184
185 /* Program the power controller to power off this cpu. */
186 fvp_pwrc_write_ppoffr(read_mpidr_el1());
Achin Gupta4f6ad662013-10-25 09:08:21 +0100187
Soby Mathewfec4eb72015-07-01 16:16:20 +0100188 if (target_state->pwr_domain_state[ARM_PWR_LVL1] ==
189 ARM_LOCAL_STATE_OFF)
Achin Gupta85876392014-07-31 17:45:51 +0100190 fvp_cluster_pwrdwn_common();
Achin Gupta4f6ad662013-10-25 09:08:21 +0100191
Achin Gupta4f6ad662013-10-25 09:08:21 +0100192}
193
194/*******************************************************************************
Soby Mathewfec4eb72015-07-01 16:16:20 +0100195 * FVP handler called when a power domain is about to be suspended. The
196 * target_state encodes the power state that each level should transition to.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100197 ******************************************************************************/
Roberto Vargas2ca18d92018-02-12 12:36:17 +0000198static void fvp_pwr_domain_suspend(const psci_power_state_t *target_state)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100199{
Soby Mathewffb4ab12014-09-26 15:08:52 +0100200 unsigned long mpidr;
201
Soby Mathewfec4eb72015-07-01 16:16:20 +0100202 /*
203 * FVP has retention only at cpu level. Just return
204 * as nothing is to be done for retention.
205 */
206 if (target_state->pwr_domain_state[ARM_PWR_LVL0] ==
207 ARM_LOCAL_STATE_RET)
Soby Mathew74e52a72014-10-02 16:56:51 +0100208 return;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100209
Soby Mathewfec4eb72015-07-01 16:16:20 +0100210 assert(target_state->pwr_domain_state[ARM_PWR_LVL0] ==
211 ARM_LOCAL_STATE_OFF);
212
Soby Mathewffb4ab12014-09-26 15:08:52 +0100213 /* Get the mpidr for this cpu */
214 mpidr = read_mpidr_el1();
215
Achin Gupta85876392014-07-31 17:45:51 +0100216 /* Program the power controller to enable wakeup interrupts. */
217 fvp_pwrc_set_wen(mpidr);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100218
Jeenu Viswambharan6ad35482016-12-09 11:14:34 +0000219 /* Prevent interrupts from spuriously waking up this cpu */
220 plat_arm_gic_cpuif_disable();
221
222 /*
223 * The Redistributor is not powered off as it can potentially prevent
224 * wake up events reaching the CPUIF and/or might lead to losing
225 * register context.
226 */
227
Achin Gupta85876392014-07-31 17:45:51 +0100228 /* Perform the common cluster specific operations */
Soby Mathewfec4eb72015-07-01 16:16:20 +0100229 if (target_state->pwr_domain_state[ARM_PWR_LVL1] ==
230 ARM_LOCAL_STATE_OFF)
Achin Gupta85876392014-07-31 17:45:51 +0100231 fvp_cluster_pwrdwn_common();
Soby Mathew9ca28062017-10-11 16:08:58 +0100232
233 /* Perform the common system specific operations */
234 if (target_state->pwr_domain_state[ARM_PWR_LVL2] ==
235 ARM_LOCAL_STATE_OFF)
236 arm_system_pwr_domain_save();
237
238 /* Program the power controller to power off this cpu. */
239 fvp_pwrc_write_ppoffr(read_mpidr_el1());
Achin Gupta4f6ad662013-10-25 09:08:21 +0100240}
241
242/*******************************************************************************
Soby Mathewfec4eb72015-07-01 16:16:20 +0100243 * FVP handler called when a power domain has just been powered on after
244 * being turned off earlier. The target_state encodes the low power state that
245 * each level has woken up from.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100246 ******************************************************************************/
Roberto Vargas2ca18d92018-02-12 12:36:17 +0000247static void fvp_pwr_domain_on_finish(const psci_power_state_t *target_state)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100248{
Soby Mathew12012dd2015-10-26 14:01:53 +0000249 fvp_power_domain_on_finish_common(target_state);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100250
Achin Gupta85876392014-07-31 17:45:51 +0100251 /* Enable the gic cpu interface */
Achin Gupta1fa7eb62015-11-03 14:18:34 +0000252 plat_arm_gic_pcpu_init();
253
254 /* Program the gic per-cpu distributor or re-distributor interface */
255 plat_arm_gic_cpuif_enable();
Achin Gupta4f6ad662013-10-25 09:08:21 +0100256}
257
258/*******************************************************************************
Soby Mathewfec4eb72015-07-01 16:16:20 +0100259 * FVP handler called when a power domain has just been powered on after
260 * having been suspended earlier. The target_state encodes the low power state
261 * that each level has woken up from.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100262 * TODO: At the moment we reuse the on finisher and reinitialize the secure
263 * context. Need to implement a separate suspend finisher.
264 ******************************************************************************/
Roberto Vargas2ca18d92018-02-12 12:36:17 +0000265static void fvp_pwr_domain_suspend_finish(const psci_power_state_t *target_state)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100266{
Soby Mathewfec4eb72015-07-01 16:16:20 +0100267 /*
268 * Nothing to be done on waking up from retention from CPU level.
269 */
270 if (target_state->pwr_domain_state[ARM_PWR_LVL0] ==
271 ARM_LOCAL_STATE_RET)
272 return;
273
Soby Mathew12012dd2015-10-26 14:01:53 +0000274 fvp_power_domain_on_finish_common(target_state);
275
276 /* Enable the gic cpu interface */
Achin Gupta1fa7eb62015-11-03 14:18:34 +0000277 plat_arm_gic_cpuif_enable();
Achin Gupta4f6ad662013-10-25 09:08:21 +0100278}
279
Juan Castillo4dc4a472014-08-12 11:17:06 +0100280/*******************************************************************************
281 * FVP handlers to shutdown/reboot the system
282 ******************************************************************************/
283static void __dead2 fvp_system_off(void)
284{
285 /* Write the System Configuration Control Register */
Dan Handley2b6b5742015-03-19 19:17:53 +0000286 mmio_write_32(V2M_SYSREGS_BASE + V2M_SYS_CFGCTRL,
287 V2M_CFGCTRL_START |
288 V2M_CFGCTRL_RW |
289 V2M_CFGCTRL_FUNC(V2M_FUNC_SHUTDOWN));
Juan Castillo4dc4a472014-08-12 11:17:06 +0100290 wfi();
291 ERROR("FVP System Off: operation not handled.\n");
292 panic();
293}
294
295static void __dead2 fvp_system_reset(void)
296{
297 /* Write the System Configuration Control Register */
Dan Handley2b6b5742015-03-19 19:17:53 +0000298 mmio_write_32(V2M_SYSREGS_BASE + V2M_SYS_CFGCTRL,
299 V2M_CFGCTRL_START |
300 V2M_CFGCTRL_RW |
301 V2M_CFGCTRL_FUNC(V2M_FUNC_REBOOT));
Juan Castillo4dc4a472014-08-12 11:17:06 +0100302 wfi();
303 ERROR("FVP System Reset: operation not handled.\n");
304 panic();
305}
Achin Gupta4f6ad662013-10-25 09:08:21 +0100306
Jeenu Viswambharan095529a2016-08-04 09:43:15 +0100307static int fvp_node_hw_state(u_register_t target_cpu,
308 unsigned int power_level)
309{
310 unsigned int psysr;
311 int ret;
312
313 /*
314 * The format of 'power_level' is implementation-defined, but 0 must
315 * mean a CPU. We also allow 1 to denote the cluster
316 */
Sathees Balya50905c72018-10-05 13:30:59 +0100317 if ((power_level != ARM_PWR_LVL0) && (power_level != ARM_PWR_LVL1))
Jeenu Viswambharan095529a2016-08-04 09:43:15 +0100318 return PSCI_E_INVALID_PARAMS;
319
320 /*
321 * Read the status of the given MPDIR from FVP power controller. The
322 * power controller only gives us on/off status, so map that to expected
323 * return values of the PSCI call
324 */
325 psysr = fvp_pwrc_read_psysr(target_cpu);
326 if (psysr == PSYSR_INVALID)
327 return PSCI_E_INVALID_PARAMS;
328
Jonathan Wrightff957ed2018-03-14 15:24:00 +0000329 if (power_level == ARM_PWR_LVL0) {
Sathees Balya50905c72018-10-05 13:30:59 +0100330 ret = ((psysr & PSYSR_AFF_L0) != 0U) ? HW_ON : HW_OFF;
Jonathan Wrightff957ed2018-03-14 15:24:00 +0000331 } else {
332 /* power_level == ARM_PWR_LVL1 */
Sathees Balya50905c72018-10-05 13:30:59 +0100333 ret = ((psysr & PSYSR_AFF_L1) != 0U) ? HW_ON : HW_OFF;
Jeenu Viswambharan095529a2016-08-04 09:43:15 +0100334 }
335
336 return ret;
337}
338
Soby Mathew9ca28062017-10-11 16:08:58 +0100339/*
340 * The FVP doesn't truly support power management at SYSTEM power domain. The
341 * SYSTEM_SUSPEND will be down-graded to the cluster level within the platform
342 * layer. The `fake` SYSTEM_SUSPEND allows us to validate some of the driver
343 * save and restore sequences on FVP.
344 */
Roberto Vargas2ca18d92018-02-12 12:36:17 +0000345#if !ARM_BL31_IN_DRAM
346static void fvp_get_sys_suspend_power_state(psci_power_state_t *req_state)
Soby Mathew9ca28062017-10-11 16:08:58 +0100347{
348 unsigned int i;
349
350 for (i = ARM_PWR_LVL0; i <= PLAT_MAX_PWR_LVL; i++)
351 req_state->pwr_domain_state[i] = ARM_LOCAL_STATE_OFF;
352}
Roberto Vargas2ca18d92018-02-12 12:36:17 +0000353#endif
Soby Mathew9ca28062017-10-11 16:08:58 +0100354
Achin Gupta4f6ad662013-10-25 09:08:21 +0100355/*******************************************************************************
Soby Mathew9ca28062017-10-11 16:08:58 +0100356 * Handler to filter PSCI requests.
357 ******************************************************************************/
358/*
359 * The system power domain suspend is only supported only via
360 * PSCI SYSTEM_SUSPEND API. PSCI CPU_SUSPEND request to system power domain
361 * will be downgraded to the lower level.
362 */
363static int fvp_validate_power_state(unsigned int power_state,
364 psci_power_state_t *req_state)
365{
366 int rc;
367 rc = arm_validate_power_state(power_state, req_state);
368
369 /*
370 * Ensure that the system power domain level is never suspended
371 * via PSCI CPU SUSPEND API. Currently system suspend is only
372 * supported via PSCI SYSTEM SUSPEND API.
373 */
374 req_state->pwr_domain_state[ARM_PWR_LVL2] = ARM_LOCAL_STATE_RUN;
375 return rc;
376}
377
378/*
379 * Custom `translate_power_state_by_mpidr` handler for FVP. Unlike in the
380 * `fvp_validate_power_state`, we do not downgrade the system power
381 * domain level request in `power_state` as it will be used to query the
382 * PSCI_STAT_COUNT/RESIDENCY at the system power domain level.
383 */
384static int fvp_translate_power_state_by_mpidr(u_register_t mpidr,
385 unsigned int power_state,
386 psci_power_state_t *output_state)
387{
388 return arm_validate_power_state(power_state, output_state);
389}
390
391/*******************************************************************************
Soby Mathewfeac8fc2015-09-29 15:47:16 +0100392 * Export the platform handlers via plat_arm_psci_pm_ops. The ARM Standard
393 * platform layer will take care of registering the handlers with PSCI.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100394 ******************************************************************************/
Soby Mathew0b4c5a32016-10-21 17:51:22 +0100395plat_psci_ops_t plat_arm_psci_pm_ops = {
Soby Mathewfec4eb72015-07-01 16:16:20 +0100396 .cpu_standby = fvp_cpu_standby,
397 .pwr_domain_on = fvp_pwr_domain_on,
398 .pwr_domain_off = fvp_pwr_domain_off,
399 .pwr_domain_suspend = fvp_pwr_domain_suspend,
400 .pwr_domain_on_finish = fvp_pwr_domain_on_finish,
401 .pwr_domain_suspend_finish = fvp_pwr_domain_suspend_finish,
Juan Castillo4dc4a472014-08-12 11:17:06 +0100402 .system_off = fvp_system_off,
Soby Mathew74e52a72014-10-02 16:56:51 +0100403 .system_reset = fvp_system_reset,
Soby Mathew9ca28062017-10-11 16:08:58 +0100404 .validate_power_state = fvp_validate_power_state,
Jeenu Viswambharan59424d82017-09-19 09:27:18 +0100405 .validate_ns_entrypoint = arm_validate_psci_entrypoint,
Soby Mathew9ca28062017-10-11 16:08:58 +0100406 .translate_power_state_by_mpidr = fvp_translate_power_state_by_mpidr,
Roberto Vargasa1c16b62017-08-03 09:16:43 +0100407 .get_node_hw_state = fvp_node_hw_state,
Antonio Nino Diaz0b6af832017-11-22 12:00:44 +0000408#if !ARM_BL31_IN_DRAM
409 /*
410 * The TrustZone Controller is set up during the warmboot sequence after
411 * resuming the CPU from a SYSTEM_SUSPEND. If BL31 is located in SRAM
412 * this is not a problem but, if it is in TZC-secured DRAM, it tries to
413 * reconfigure the same memory it is running on, causing an exception.
414 */
Soby Mathew9ca28062017-10-11 16:08:58 +0100415 .get_sys_suspend_power_state = fvp_get_sys_suspend_power_state,
Antonio Nino Diaz0b6af832017-11-22 12:00:44 +0000416#endif
Roberto Vargasa1c16b62017-08-03 09:16:43 +0100417 .mem_protect_chk = arm_psci_mem_protect_chk,
418 .read_mem_protect = arm_psci_read_mem_protect,
419 .write_mem_protect = arm_nor_psci_write_mem_protect,
Achin Gupta4f6ad662013-10-25 09:08:21 +0100420};
Chandni Cherukurie4bf6a02018-11-14 13:43:59 +0530421
422const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops)
423{
424 return ops;
425}