blob: 72845843d86e827c4fb987c92925aa577e1cae70 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Roberto Vargasa1c16b62017-08-03 09:16:43 +01002 * Copyright (c) 2013-2017, 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
Achin Gupta4f6ad662013-10-25 09:08:21 +01007#include <arch_helpers.h>
Dan Handley2b6b5742015-03-19 19:17:53 +00008#include <arm_config.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +01009#include <assert.h>
Juan Castillo4dc4a472014-08-12 11:17:06 +010010#include <debug.h>
Dan Handley2b6b5742015-03-19 19:17:53 +000011#include <errno.h>
Soby Mathew9ca28062017-10-11 16:08:58 +010012#include <gicv3.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010013#include <mmio.h>
Dan Handley2b6b5742015-03-19 19:17:53 +000014#include <plat_arm.h>
Isla Mitchelld2548792017-07-14 10:48:25 +010015#include <platform.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010016#include <psci.h>
Dimitris Papastamos5bdbb472017-10-13 12:06:06 +010017#include <spe.h>
Dan Handley2b6b5742015-03-19 19:17:53 +000018#include <v2m_def.h>
Dan Handley4d2e49d2014-04-11 11:52:12 +010019#include "drivers/pwrc/fvp_pwrc.h"
Dan Handleyed6ff952014-05-14 17:44:19 +010020#include "fvp_def.h"
21#include "fvp_private.h"
Achin Gupta4f6ad662013-10-25 09:08:21 +010022
Dan Handley2b6b5742015-03-19 19:17:53 +000023
Soby Mathew7799cf72015-04-16 14:49:09 +010024#if ARM_RECOM_STATE_ID_ENC
25/*
26 * The table storing the valid idle power states. Ensure that the
27 * array entries are populated in ascending order of state-id to
28 * enable us to use binary search during power state validation.
29 * The table must be terminated by a NULL entry.
30 */
31const unsigned int arm_pm_idle_states[] = {
32 /* State-id - 0x01 */
33 arm_make_pwrstate_lvl1(ARM_LOCAL_STATE_RUN, ARM_LOCAL_STATE_RET,
34 ARM_PWR_LVL0, PSTATE_TYPE_STANDBY),
35 /* State-id - 0x02 */
36 arm_make_pwrstate_lvl1(ARM_LOCAL_STATE_RUN, ARM_LOCAL_STATE_OFF,
37 ARM_PWR_LVL0, PSTATE_TYPE_POWERDOWN),
38 /* State-id - 0x22 */
39 arm_make_pwrstate_lvl1(ARM_LOCAL_STATE_OFF, ARM_LOCAL_STATE_OFF,
40 ARM_PWR_LVL1, PSTATE_TYPE_POWERDOWN),
Soby Mathew9ca28062017-10-11 16:08:58 +010041 /* State-id - 0x222 */
42 arm_make_pwrstate_lvl2(ARM_LOCAL_STATE_OFF, ARM_LOCAL_STATE_OFF,
43 ARM_LOCAL_STATE_OFF, ARM_PWR_LVL2, PSTATE_TYPE_POWERDOWN),
Soby Mathew7799cf72015-04-16 14:49:09 +010044 0,
45};
46#endif
47
Achin Gupta4f6ad662013-10-25 09:08:21 +010048/*******************************************************************************
Achin Gupta85876392014-07-31 17:45:51 +010049 * Function which implements the common FVP specific operations to power down a
Achin Gupta85876392014-07-31 17:45:51 +010050 * cluster in response to a CPU_OFF or CPU_SUSPEND request.
51 ******************************************************************************/
Sandrine Bailleuxa64a8542015-03-05 10:54:34 +000052static void fvp_cluster_pwrdwn_common(void)
Achin Gupta85876392014-07-31 17:45:51 +010053{
54 uint64_t mpidr = read_mpidr_el1();
55
dp-armee3457b2017-05-23 09:32:49 +010056#if ENABLE_SPE_FOR_LOWER_ELS
57 /*
58 * On power down we need to disable statistical profiling extensions
59 * before exiting coherency.
60 */
Dimitris Papastamos5bdbb472017-10-13 12:06:06 +010061 spe_disable();
dp-armee3457b2017-05-23 09:32:49 +010062#endif
63
Achin Gupta85876392014-07-31 17:45:51 +010064 /* Disable coherency if this cluster is to be turned off */
Vikram Kanigirifbb13012016-02-15 11:54:14 +000065 fvp_interconnect_disable();
Achin Gupta85876392014-07-31 17:45:51 +010066
67 /* Program the power controller to turn the cluster off */
68 fvp_pwrc_write_pcoffr(mpidr);
69}
70
Soby Mathew9ca28062017-10-11 16:08:58 +010071/*
72 * Empty implementation of these hooks avoid setting the GICR_WAKER.Sleep bit
73 * on ARM GICv3 implementations on FVP. This is required, because FVP does not
74 * support SYSTEM_SUSPEND and it is `faked` in firmware. Hence, for wake up
75 * from `fake` system suspend the GIC must not be powered off.
76 */
77void arm_gicv3_distif_pre_save(unsigned int proc_num)
78{}
79
80void arm_gicv3_distif_post_restore(unsigned int proc_num)
81{}
82
Soby Mathew12012dd2015-10-26 14:01:53 +000083static void fvp_power_domain_on_finish_common(const psci_power_state_t *target_state)
84{
85 unsigned long mpidr;
86
87 assert(target_state->pwr_domain_state[ARM_PWR_LVL0] ==
88 ARM_LOCAL_STATE_OFF);
89
90 /* Get the mpidr for this cpu */
91 mpidr = read_mpidr_el1();
92
93 /* Perform the common cluster specific operations */
94 if (target_state->pwr_domain_state[ARM_PWR_LVL1] ==
95 ARM_LOCAL_STATE_OFF) {
96 /*
97 * This CPU might have woken up whilst the cluster was
98 * attempting to power down. In this case the FVP power
99 * controller will have a pending cluster power off request
100 * which needs to be cleared by writing to the PPONR register.
101 * This prevents the power controller from interpreting a
102 * subsequent entry of this cpu into a simple wfi as a power
103 * down request.
104 */
105 fvp_pwrc_write_pponr(mpidr);
106
107 /* Enable coherency if this cluster was off */
Vikram Kanigirifbb13012016-02-15 11:54:14 +0000108 fvp_interconnect_enable();
Soby Mathew12012dd2015-10-26 14:01:53 +0000109 }
Soby Mathew9ca28062017-10-11 16:08:58 +0100110 /* Perform the common system specific operations */
111 if (target_state->pwr_domain_state[ARM_PWR_LVL2] ==
112 ARM_LOCAL_STATE_OFF)
113 arm_system_pwr_domain_resume();
Soby Mathew12012dd2015-10-26 14:01:53 +0000114
115 /*
116 * Clear PWKUPR.WEN bit to ensure interrupts do not interfere
117 * with a cpu power down unless the bit is set again
118 */
119 fvp_pwrc_clr_wen(mpidr);
120}
121
122
Achin Gupta85876392014-07-31 17:45:51 +0100123/*******************************************************************************
Soby Mathewfec4eb72015-07-01 16:16:20 +0100124 * FVP handler called when a CPU is about to enter standby.
Vikram Kanigiri3b7c59b2014-03-21 11:57:10 +0000125 ******************************************************************************/
Soby Mathewfec4eb72015-07-01 16:16:20 +0100126void fvp_cpu_standby(plat_local_state_t cpu_state)
Vikram Kanigiri3b7c59b2014-03-21 11:57:10 +0000127{
Soby Mathewfec4eb72015-07-01 16:16:20 +0100128
129 assert(cpu_state == ARM_LOCAL_STATE_RET);
130
Andrew Thoelke42e75a72014-04-28 12:28:39 +0100131 /*
132 * Enter standby state
133 * dsb is good practice before using wfi to enter low power states
134 */
135 dsb();
Vikram Kanigiri3b7c59b2014-03-21 11:57:10 +0000136 wfi();
Vikram Kanigiri3b7c59b2014-03-21 11:57:10 +0000137}
138
139/*******************************************************************************
Soby Mathewfec4eb72015-07-01 16:16:20 +0100140 * FVP handler called when a power domain is about to be turned on. The
141 * mpidr determines the CPU to be turned on.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100142 ******************************************************************************/
Soby Mathewfec4eb72015-07-01 16:16:20 +0100143int fvp_pwr_domain_on(u_register_t mpidr)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100144{
145 int rc = PSCI_E_SUCCESS;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100146 unsigned int psysr;
147
Achin Gupta4f6ad662013-10-25 09:08:21 +0100148 /*
Sandrine Bailleux7175bde2015-12-08 14:18:24 +0000149 * Ensure that we do not cancel an inflight power off request for the
150 * target cpu. That would leave it in a zombie wfi. Wait for it to power
151 * off and then program the power controller to turn that CPU on.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100152 */
153 do {
154 psysr = fvp_pwrc_read_psysr(mpidr);
155 } while (psysr & PSYSR_AFF_L0);
156
Achin Gupta4f6ad662013-10-25 09:08:21 +0100157 fvp_pwrc_write_pponr(mpidr);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100158 return rc;
159}
160
161/*******************************************************************************
Soby Mathewfec4eb72015-07-01 16:16:20 +0100162 * FVP handler called when a power domain is about to be turned off. The
163 * target_state encodes the power state that each level should transition to.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100164 ******************************************************************************/
Soby Mathewfec4eb72015-07-01 16:16:20 +0100165void fvp_pwr_domain_off(const psci_power_state_t *target_state)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100166{
Soby Mathewfec4eb72015-07-01 16:16:20 +0100167 assert(target_state->pwr_domain_state[ARM_PWR_LVL0] ==
168 ARM_LOCAL_STATE_OFF);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100169
Achin Gupta85876392014-07-31 17:45:51 +0100170 /*
Soby Mathewfec4eb72015-07-01 16:16:20 +0100171 * If execution reaches this stage then this power domain will be
172 * suspended. Perform at least the cpu specific actions followed
173 * by the cluster specific operations if applicable.
Achin Gupta85876392014-07-31 17:45:51 +0100174 */
Jeenu Viswambharan6ad35482016-12-09 11:14:34 +0000175
176 /* Prevent interrupts from spuriously waking up this cpu */
177 plat_arm_gic_cpuif_disable();
178
179 /* Turn redistributor off */
180 plat_arm_gic_redistif_off();
181
182 /* Program the power controller to power off this cpu. */
183 fvp_pwrc_write_ppoffr(read_mpidr_el1());
Achin Gupta4f6ad662013-10-25 09:08:21 +0100184
Soby Mathewfec4eb72015-07-01 16:16:20 +0100185 if (target_state->pwr_domain_state[ARM_PWR_LVL1] ==
186 ARM_LOCAL_STATE_OFF)
Achin Gupta85876392014-07-31 17:45:51 +0100187 fvp_cluster_pwrdwn_common();
Achin Gupta4f6ad662013-10-25 09:08:21 +0100188
Achin Gupta4f6ad662013-10-25 09:08:21 +0100189}
190
191/*******************************************************************************
Soby Mathewfec4eb72015-07-01 16:16:20 +0100192 * FVP handler called when a power domain is about to be suspended. The
193 * target_state encodes the power state that each level should transition to.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100194 ******************************************************************************/
Soby Mathewfec4eb72015-07-01 16:16:20 +0100195void fvp_pwr_domain_suspend(const psci_power_state_t *target_state)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100196{
Soby Mathewffb4ab12014-09-26 15:08:52 +0100197 unsigned long mpidr;
198
Soby Mathewfec4eb72015-07-01 16:16:20 +0100199 /*
200 * FVP has retention only at cpu level. Just return
201 * as nothing is to be done for retention.
202 */
203 if (target_state->pwr_domain_state[ARM_PWR_LVL0] ==
204 ARM_LOCAL_STATE_RET)
Soby Mathew74e52a72014-10-02 16:56:51 +0100205 return;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100206
Soby Mathewfec4eb72015-07-01 16:16:20 +0100207 assert(target_state->pwr_domain_state[ARM_PWR_LVL0] ==
208 ARM_LOCAL_STATE_OFF);
209
Soby Mathewffb4ab12014-09-26 15:08:52 +0100210 /* Get the mpidr for this cpu */
211 mpidr = read_mpidr_el1();
212
Achin Gupta85876392014-07-31 17:45:51 +0100213 /* Program the power controller to enable wakeup interrupts. */
214 fvp_pwrc_set_wen(mpidr);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100215
Jeenu Viswambharan6ad35482016-12-09 11:14:34 +0000216 /* Prevent interrupts from spuriously waking up this cpu */
217 plat_arm_gic_cpuif_disable();
218
219 /*
220 * The Redistributor is not powered off as it can potentially prevent
221 * wake up events reaching the CPUIF and/or might lead to losing
222 * register context.
223 */
224
Achin Gupta85876392014-07-31 17:45:51 +0100225 /* Perform the common cluster specific operations */
Soby Mathewfec4eb72015-07-01 16:16:20 +0100226 if (target_state->pwr_domain_state[ARM_PWR_LVL1] ==
227 ARM_LOCAL_STATE_OFF)
Achin Gupta85876392014-07-31 17:45:51 +0100228 fvp_cluster_pwrdwn_common();
Soby Mathew9ca28062017-10-11 16:08:58 +0100229
230 /* Perform the common system specific operations */
231 if (target_state->pwr_domain_state[ARM_PWR_LVL2] ==
232 ARM_LOCAL_STATE_OFF)
233 arm_system_pwr_domain_save();
234
235 /* Program the power controller to power off this cpu. */
236 fvp_pwrc_write_ppoffr(read_mpidr_el1());
Achin Gupta4f6ad662013-10-25 09:08:21 +0100237}
238
239/*******************************************************************************
Soby Mathewfec4eb72015-07-01 16:16:20 +0100240 * FVP handler called when a power domain has just been powered on after
241 * being turned off earlier. The target_state encodes the low power state that
242 * each level has woken up from.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100243 ******************************************************************************/
Soby Mathewfec4eb72015-07-01 16:16:20 +0100244void fvp_pwr_domain_on_finish(const psci_power_state_t *target_state)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100245{
Soby Mathew12012dd2015-10-26 14:01:53 +0000246 fvp_power_domain_on_finish_common(target_state);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100247
Achin Gupta85876392014-07-31 17:45:51 +0100248 /* Enable the gic cpu interface */
Achin Gupta1fa7eb62015-11-03 14:18:34 +0000249 plat_arm_gic_pcpu_init();
250
251 /* Program the gic per-cpu distributor or re-distributor interface */
252 plat_arm_gic_cpuif_enable();
Achin Gupta4f6ad662013-10-25 09:08:21 +0100253}
254
255/*******************************************************************************
Soby Mathewfec4eb72015-07-01 16:16:20 +0100256 * FVP handler called when a power domain has just been powered on after
257 * having been suspended earlier. The target_state encodes the low power state
258 * that each level has woken up from.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100259 * TODO: At the moment we reuse the on finisher and reinitialize the secure
260 * context. Need to implement a separate suspend finisher.
261 ******************************************************************************/
Soby Mathewfec4eb72015-07-01 16:16:20 +0100262void fvp_pwr_domain_suspend_finish(const psci_power_state_t *target_state)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100263{
Soby Mathewfec4eb72015-07-01 16:16:20 +0100264 /*
265 * Nothing to be done on waking up from retention from CPU level.
266 */
267 if (target_state->pwr_domain_state[ARM_PWR_LVL0] ==
268 ARM_LOCAL_STATE_RET)
269 return;
270
Soby Mathew12012dd2015-10-26 14:01:53 +0000271 fvp_power_domain_on_finish_common(target_state);
272
273 /* Enable the gic cpu interface */
Achin Gupta1fa7eb62015-11-03 14:18:34 +0000274 plat_arm_gic_cpuif_enable();
Achin Gupta4f6ad662013-10-25 09:08:21 +0100275}
276
Juan Castillo4dc4a472014-08-12 11:17:06 +0100277/*******************************************************************************
278 * FVP handlers to shutdown/reboot the system
279 ******************************************************************************/
280static void __dead2 fvp_system_off(void)
281{
282 /* Write the System Configuration Control Register */
Dan Handley2b6b5742015-03-19 19:17:53 +0000283 mmio_write_32(V2M_SYSREGS_BASE + V2M_SYS_CFGCTRL,
284 V2M_CFGCTRL_START |
285 V2M_CFGCTRL_RW |
286 V2M_CFGCTRL_FUNC(V2M_FUNC_SHUTDOWN));
Juan Castillo4dc4a472014-08-12 11:17:06 +0100287 wfi();
288 ERROR("FVP System Off: operation not handled.\n");
289 panic();
290}
291
292static void __dead2 fvp_system_reset(void)
293{
294 /* Write the System Configuration Control Register */
Dan Handley2b6b5742015-03-19 19:17:53 +0000295 mmio_write_32(V2M_SYSREGS_BASE + V2M_SYS_CFGCTRL,
296 V2M_CFGCTRL_START |
297 V2M_CFGCTRL_RW |
298 V2M_CFGCTRL_FUNC(V2M_FUNC_REBOOT));
Juan Castillo4dc4a472014-08-12 11:17:06 +0100299 wfi();
300 ERROR("FVP System Reset: operation not handled.\n");
301 panic();
302}
Achin Gupta4f6ad662013-10-25 09:08:21 +0100303
Jeenu Viswambharan095529a2016-08-04 09:43:15 +0100304static int fvp_node_hw_state(u_register_t target_cpu,
305 unsigned int power_level)
306{
307 unsigned int psysr;
308 int ret;
309
310 /*
311 * The format of 'power_level' is implementation-defined, but 0 must
312 * mean a CPU. We also allow 1 to denote the cluster
313 */
314 if (power_level != ARM_PWR_LVL0 && power_level != ARM_PWR_LVL1)
315 return PSCI_E_INVALID_PARAMS;
316
317 /*
318 * Read the status of the given MPDIR from FVP power controller. The
319 * power controller only gives us on/off status, so map that to expected
320 * return values of the PSCI call
321 */
322 psysr = fvp_pwrc_read_psysr(target_cpu);
323 if (psysr == PSYSR_INVALID)
324 return PSCI_E_INVALID_PARAMS;
325
326 switch (power_level) {
327 case ARM_PWR_LVL0:
328 ret = (psysr & PSYSR_AFF_L0) ? HW_ON : HW_OFF;
329 break;
330 case ARM_PWR_LVL1:
331 ret = (psysr & PSYSR_AFF_L1) ? HW_ON : HW_OFF;
332 break;
Jeenu Viswambharan095529a2016-08-04 09:43:15 +0100333 }
334
335 return ret;
336}
337
Soby Mathew9ca28062017-10-11 16:08:58 +0100338/*
339 * The FVP doesn't truly support power management at SYSTEM power domain. The
340 * SYSTEM_SUSPEND will be down-graded to the cluster level within the platform
341 * layer. The `fake` SYSTEM_SUSPEND allows us to validate some of the driver
342 * save and restore sequences on FVP.
343 */
344void fvp_get_sys_suspend_power_state(psci_power_state_t *req_state)
345{
346 unsigned int i;
347
348 for (i = ARM_PWR_LVL0; i <= PLAT_MAX_PWR_LVL; i++)
349 req_state->pwr_domain_state[i] = ARM_LOCAL_STATE_OFF;
350}
351
Achin Gupta4f6ad662013-10-25 09:08:21 +0100352/*******************************************************************************
Soby Mathew9ca28062017-10-11 16:08:58 +0100353 * Handler to filter PSCI requests.
354 ******************************************************************************/
355/*
356 * The system power domain suspend is only supported only via
357 * PSCI SYSTEM_SUSPEND API. PSCI CPU_SUSPEND request to system power domain
358 * will be downgraded to the lower level.
359 */
360static int fvp_validate_power_state(unsigned int power_state,
361 psci_power_state_t *req_state)
362{
363 int rc;
364 rc = arm_validate_power_state(power_state, req_state);
365
366 /*
367 * Ensure that the system power domain level is never suspended
368 * via PSCI CPU SUSPEND API. Currently system suspend is only
369 * supported via PSCI SYSTEM SUSPEND API.
370 */
371 req_state->pwr_domain_state[ARM_PWR_LVL2] = ARM_LOCAL_STATE_RUN;
372 return rc;
373}
374
375/*
376 * Custom `translate_power_state_by_mpidr` handler for FVP. Unlike in the
377 * `fvp_validate_power_state`, we do not downgrade the system power
378 * domain level request in `power_state` as it will be used to query the
379 * PSCI_STAT_COUNT/RESIDENCY at the system power domain level.
380 */
381static int fvp_translate_power_state_by_mpidr(u_register_t mpidr,
382 unsigned int power_state,
383 psci_power_state_t *output_state)
384{
385 return arm_validate_power_state(power_state, output_state);
386}
387
388/*******************************************************************************
Soby Mathewfeac8fc2015-09-29 15:47:16 +0100389 * Export the platform handlers via plat_arm_psci_pm_ops. The ARM Standard
390 * platform layer will take care of registering the handlers with PSCI.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100391 ******************************************************************************/
Soby Mathew0b4c5a32016-10-21 17:51:22 +0100392plat_psci_ops_t plat_arm_psci_pm_ops = {
Soby Mathewfec4eb72015-07-01 16:16:20 +0100393 .cpu_standby = fvp_cpu_standby,
394 .pwr_domain_on = fvp_pwr_domain_on,
395 .pwr_domain_off = fvp_pwr_domain_off,
396 .pwr_domain_suspend = fvp_pwr_domain_suspend,
397 .pwr_domain_on_finish = fvp_pwr_domain_on_finish,
398 .pwr_domain_suspend_finish = fvp_pwr_domain_suspend_finish,
Juan Castillo4dc4a472014-08-12 11:17:06 +0100399 .system_off = fvp_system_off,
Soby Mathew74e52a72014-10-02 16:56:51 +0100400 .system_reset = fvp_system_reset,
Soby Mathew9ca28062017-10-11 16:08:58 +0100401 .validate_power_state = fvp_validate_power_state,
Jeenu Viswambharan59424d82017-09-19 09:27:18 +0100402 .validate_ns_entrypoint = arm_validate_psci_entrypoint,
Soby Mathew9ca28062017-10-11 16:08:58 +0100403 .translate_power_state_by_mpidr = fvp_translate_power_state_by_mpidr,
Roberto Vargasa1c16b62017-08-03 09:16:43 +0100404 .get_node_hw_state = fvp_node_hw_state,
Antonio Nino Diaz0b6af832017-11-22 12:00:44 +0000405#if !ARM_BL31_IN_DRAM
406 /*
407 * The TrustZone Controller is set up during the warmboot sequence after
408 * resuming the CPU from a SYSTEM_SUSPEND. If BL31 is located in SRAM
409 * this is not a problem but, if it is in TZC-secured DRAM, it tries to
410 * reconfigure the same memory it is running on, causing an exception.
411 */
Soby Mathew9ca28062017-10-11 16:08:58 +0100412 .get_sys_suspend_power_state = fvp_get_sys_suspend_power_state,
Antonio Nino Diaz0b6af832017-11-22 12:00:44 +0000413#endif
Roberto Vargasa1c16b62017-08-03 09:16:43 +0100414#if !RESET_TO_BL31 && !RESET_TO_SP_MIN
Antonio Nino Diaz0b6af832017-11-22 12:00:44 +0000415 /*
416 * mem_protect is not supported in RESET_TO_BL31 and RESET_TO_SP_MIN,
417 * as that would require mapping in all of NS DRAM into BL31 or BL32.
418 */
Roberto Vargasa1c16b62017-08-03 09:16:43 +0100419 .mem_protect_chk = arm_psci_mem_protect_chk,
420 .read_mem_protect = arm_psci_read_mem_protect,
421 .write_mem_protect = arm_nor_psci_write_mem_protect,
422#endif
Achin Gupta4f6ad662013-10-25 09:08:21 +0100423};