blob: aeb7eda3054e26229916eec271fbffe95f25e5ae [file] [log] [blame]
Soby Mathewea26bad2016-11-14 12:25:45 +00001/*
Aditya Angadi7f8837b2019-12-31 14:23:53 +05302 * Copyright (c) 2017-2020, ARM Limited and Contributors. All rights reserved.
Soby Mathewea26bad2016-11-14 12:25:45 +00003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Soby Mathewea26bad2016-11-14 12:25:45 +00007#include <assert.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008#include <string.h>
9
10#include <arch_helpers.h>
11#include <common/debug.h>
Antonio Nino Diaz326f56b2019-01-23 18:55:03 +000012#include <drivers/arm/css/css_scp.h>
Antonio Nino Diazc30db5b2019-01-23 20:37:32 +000013#include <drivers/arm/css/scmi.h>
Antonio Nino Diazbd7b7402019-01-25 14:30:04 +000014#include <plat/arm/common/plat_arm.h>
15#include <plat/arm/css/common/css_pm.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000016#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
Soby Mathewea26bad2016-11-14 12:25:45 +000019/*
20 * This file implements the SCP helper functions using SCMI protocol.
21 */
22
23/*
24 * SCMI power state parameter bit field encoding for ARM CSS platforms.
25 *
26 * 31 20 19 16 15 12 11 8 7 4 3 0
27 * +-------------------------------------------------------------+
28 * | SBZ | Max level | Level 3 | Level 2 | Level 1 | Level 0 |
29 * | | | state | state | state | state |
30 * +-------------------------------------------------------------+
31 *
32 * `Max level` encodes the highest level that has a valid power state
33 * encoded in the power state.
34 */
35#define SCMI_PWR_STATE_MAX_PWR_LVL_SHIFT 16
36#define SCMI_PWR_STATE_MAX_PWR_LVL_WIDTH 4
37#define SCMI_PWR_STATE_MAX_PWR_LVL_MASK \
38 ((1 << SCMI_PWR_STATE_MAX_PWR_LVL_WIDTH) - 1)
Daniel Boulbyddf6d402018-05-09 12:21:46 +010039#define SCMI_SET_PWR_STATE_MAX_PWR_LVL(_power_state, _max_level) \
40 (_power_state) |= ((_max_level) & SCMI_PWR_STATE_MAX_PWR_LVL_MASK)\
Soby Mathewea26bad2016-11-14 12:25:45 +000041 << SCMI_PWR_STATE_MAX_PWR_LVL_SHIFT
Daniel Boulbyddf6d402018-05-09 12:21:46 +010042#define SCMI_GET_PWR_STATE_MAX_PWR_LVL(_power_state) \
43 (((_power_state) >> SCMI_PWR_STATE_MAX_PWR_LVL_SHIFT) \
Soby Mathewea26bad2016-11-14 12:25:45 +000044 & SCMI_PWR_STATE_MAX_PWR_LVL_MASK)
45
46#define SCMI_PWR_STATE_LVL_WIDTH 4
47#define SCMI_PWR_STATE_LVL_MASK \
48 ((1 << SCMI_PWR_STATE_LVL_WIDTH) - 1)
Daniel Boulbyddf6d402018-05-09 12:21:46 +010049#define SCMI_SET_PWR_STATE_LVL(_power_state, _level, _level_state) \
50 (_power_state) |= ((_level_state) & SCMI_PWR_STATE_LVL_MASK) \
51 << (SCMI_PWR_STATE_LVL_WIDTH * (_level))
52#define SCMI_GET_PWR_STATE_LVL(_power_state, _level) \
53 (((_power_state) >> (SCMI_PWR_STATE_LVL_WIDTH * (_level))) & \
Soby Mathewea26bad2016-11-14 12:25:45 +000054 SCMI_PWR_STATE_LVL_MASK)
55
56/*
57 * The SCMI power state enumeration for a power domain level
58 */
59typedef enum {
60 scmi_power_state_off = 0,
61 scmi_power_state_on = 1,
62 scmi_power_state_sleep = 2,
63} scmi_power_state_t;
64
65/*
Aditya Angadi7f8837b2019-12-31 14:23:53 +053066 * The global handles for invoking the SCMI driver APIs after the driver
Soby Mathewea26bad2016-11-14 12:25:45 +000067 * has been initialized.
68 */
Aditya Angadi7f8837b2019-12-31 14:23:53 +053069static void *scmi_handles[PLAT_ARM_SCMI_CHANNEL_COUNT];
Soby Mathewea26bad2016-11-14 12:25:45 +000070
Aditya Angadi7f8837b2019-12-31 14:23:53 +053071/* The global SCMI channels array */
72static scmi_channel_t scmi_channels[PLAT_ARM_SCMI_CHANNEL_COUNT];
Soby Mathewea26bad2016-11-14 12:25:45 +000073
Aditya Angadi7f8837b2019-12-31 14:23:53 +053074/*
75 * Channel ID for the default SCMI channel.
76 * The default channel is used to issue SYSTEM level SCMI requests and is
77 * initialized to the channel which has the boot cpu as its resource.
78 */
79static uint32_t default_scmi_channel_id;
80
81/*
82 * TODO: Allow use of channel specific lock instead of using a single lock for
83 * all the channels.
84 */
Roberto Vargas00996942017-11-13 13:41:58 +000085ARM_SCMI_INSTANTIATE_LOCK;
Soby Mathewea26bad2016-11-14 12:25:45 +000086
87/*
Aditya Angadi7f8837b2019-12-31 14:23:53 +053088 * Function to obtain the SCMI Domain ID and SCMI Channel number from the linear
89 * core position. The SCMI Channel number is encoded in the upper 16 bits and
90 * the Domain ID is encoded in the lower 16 bits in each entry of the mapping
91 * array exported by the platform.
92 */
93static void css_scp_core_pos_to_scmi_channel(unsigned int core_pos,
94 unsigned int *scmi_domain_id, unsigned int *scmi_channel_id)
95{
96 unsigned int composite_id;
97
98 composite_id = plat_css_core_pos_to_scmi_dmn_id_map[core_pos];
99
100 *scmi_channel_id = GET_SCMI_CHANNEL_ID(composite_id);
101 *scmi_domain_id = GET_SCMI_DOMAIN_ID(composite_id);
102}
103
104/*
Soby Mathewea26bad2016-11-14 12:25:45 +0000105 * Helper function to suspend a CPU power domain and its parent power domains
106 * if applicable.
107 */
Roberto Vargas5f5a5e62018-02-12 12:36:17 +0000108void css_scp_suspend(const struct psci_power_state *target_state)
Soby Mathewea26bad2016-11-14 12:25:45 +0000109{
Deepak Pandey207c5222017-10-10 21:34:32 +0530110 int ret;
Soby Mathewea26bad2016-11-14 12:25:45 +0000111
112 /* At least power domain level 0 should be specified to be suspended */
113 assert(target_state->pwr_domain_state[ARM_PWR_LVL0] ==
114 ARM_LOCAL_STATE_OFF);
115
116 /* Check if power down at system power domain level is requested */
Nariman Poushincd956262018-05-01 09:28:40 +0100117 if (css_system_pwr_state(target_state) == ARM_LOCAL_STATE_OFF) {
Aditya Angadi7f8837b2019-12-31 14:23:53 +0530118 /* Issue SCMI command for SYSTEM_SUSPEND on all SCMI channels */
119 ret = scmi_sys_pwr_state_set(
120 scmi_handles[default_scmi_channel_id],
121 SCMI_SYS_PWR_FORCEFUL_REQ, SCMI_SYS_PWR_SUSPEND);
Soby Mathewea26bad2016-11-14 12:25:45 +0000122 if (ret != SCMI_E_SUCCESS) {
123 ERROR("SCMI system power domain suspend return 0x%x unexpected\n",
124 ret);
125 panic();
126 }
127 return;
128 }
Deepak Pandey207c5222017-10-10 21:34:32 +0530129#if !HW_ASSISTED_COHERENCY
Aditya Angadi7f8837b2019-12-31 14:23:53 +0530130 unsigned int lvl, channel_id, domain_id;
Deepak Pandey207c5222017-10-10 21:34:32 +0530131 uint32_t scmi_pwr_state = 0;
Soby Mathewea26bad2016-11-14 12:25:45 +0000132 /*
133 * If we reach here, then assert that power down at system power domain
134 * level is running.
135 */
Soby Mathewfd2e5e42018-09-10 11:32:49 +0100136 assert(css_system_pwr_state(target_state) == ARM_LOCAL_STATE_RUN);
Soby Mathewea26bad2016-11-14 12:25:45 +0000137
138 /* For level 0, specify `scmi_power_state_sleep` as the power state */
139 SCMI_SET_PWR_STATE_LVL(scmi_pwr_state, ARM_PWR_LVL0,
140 scmi_power_state_sleep);
141
142 for (lvl = ARM_PWR_LVL1; lvl <= PLAT_MAX_PWR_LVL; lvl++) {
143 if (target_state->pwr_domain_state[lvl] == ARM_LOCAL_STATE_RUN)
144 break;
145
146 assert(target_state->pwr_domain_state[lvl] ==
147 ARM_LOCAL_STATE_OFF);
148 /*
149 * Specify `scmi_power_state_off` as power state for higher
150 * levels.
151 */
152 SCMI_SET_PWR_STATE_LVL(scmi_pwr_state, lvl,
153 scmi_power_state_off);
154 }
155
156 SCMI_SET_PWR_STATE_MAX_PWR_LVL(scmi_pwr_state, lvl - 1);
157
Aditya Angadi7f8837b2019-12-31 14:23:53 +0530158 css_scp_core_pos_to_scmi_channel(plat_my_core_pos(),
159 &domain_id, &channel_id);
160 ret = scmi_pwr_state_set(scmi_handles[channel_id],
161 domain_id, scmi_pwr_state);
Soby Mathewea26bad2016-11-14 12:25:45 +0000162
163 if (ret != SCMI_E_SUCCESS) {
164 ERROR("SCMI set power state command return 0x%x unexpected\n",
165 ret);
166 panic();
167 }
Deepak Pandey207c5222017-10-10 21:34:32 +0530168#endif
Soby Mathewea26bad2016-11-14 12:25:45 +0000169}
170
171/*
172 * Helper function to turn off a CPU power domain and its parent power domains
173 * if applicable.
174 */
Roberto Vargas85664f52018-02-12 12:36:17 +0000175void css_scp_off(const struct psci_power_state *target_state)
Soby Mathewea26bad2016-11-14 12:25:45 +0000176{
Aditya Angadi7f8837b2019-12-31 14:23:53 +0530177 unsigned int lvl = 0, channel_id, domain_id;
Ambroise Vincenta88a35d2019-02-14 09:48:21 +0000178 int ret;
Soby Mathewea26bad2016-11-14 12:25:45 +0000179 uint32_t scmi_pwr_state = 0;
180
181 /* At-least the CPU level should be specified to be OFF */
182 assert(target_state->pwr_domain_state[ARM_PWR_LVL0] ==
183 ARM_LOCAL_STATE_OFF);
184
185 /* PSCI CPU OFF cannot be used to turn OFF system power domain */
Soby Mathewfd2e5e42018-09-10 11:32:49 +0100186 assert(css_system_pwr_state(target_state) == ARM_LOCAL_STATE_RUN);
Soby Mathewea26bad2016-11-14 12:25:45 +0000187
188 for (; lvl <= PLAT_MAX_PWR_LVL; lvl++) {
189 if (target_state->pwr_domain_state[lvl] == ARM_LOCAL_STATE_RUN)
190 break;
191
192 assert(target_state->pwr_domain_state[lvl] ==
193 ARM_LOCAL_STATE_OFF);
194 SCMI_SET_PWR_STATE_LVL(scmi_pwr_state, lvl,
195 scmi_power_state_off);
196 }
197
198 SCMI_SET_PWR_STATE_MAX_PWR_LVL(scmi_pwr_state, lvl - 1);
199
Aditya Angadi7f8837b2019-12-31 14:23:53 +0530200 css_scp_core_pos_to_scmi_channel(plat_my_core_pos(),
201 &domain_id, &channel_id);
202 ret = scmi_pwr_state_set(scmi_handles[channel_id],
203 domain_id, scmi_pwr_state);
Soby Mathewea26bad2016-11-14 12:25:45 +0000204 if (ret != SCMI_E_QUEUED && ret != SCMI_E_SUCCESS) {
205 ERROR("SCMI set power state command return 0x%x unexpected\n",
206 ret);
207 panic();
208 }
209}
210
211/*
212 * Helper function to turn ON a CPU power domain and its parent power domains
213 * if applicable.
214 */
215void css_scp_on(u_register_t mpidr)
216{
Aditya Angadi7f8837b2019-12-31 14:23:53 +0530217 unsigned int lvl = 0, channel_id, core_pos, domain_id;
218 int ret;
Soby Mathewea26bad2016-11-14 12:25:45 +0000219 uint32_t scmi_pwr_state = 0;
220
221 for (; lvl <= PLAT_MAX_PWR_LVL; lvl++)
222 SCMI_SET_PWR_STATE_LVL(scmi_pwr_state, lvl,
223 scmi_power_state_on);
224
225 SCMI_SET_PWR_STATE_MAX_PWR_LVL(scmi_pwr_state, lvl - 1);
226
Manish Pandeybb667592020-03-03 17:12:10 +0000227 core_pos = (unsigned int)plat_core_pos_by_mpidr(mpidr);
228 assert(core_pos < PLATFORM_CORE_COUNT);
Soby Mathewe089e3f2017-06-09 15:04:43 +0100229
Aditya Angadi7f8837b2019-12-31 14:23:53 +0530230 css_scp_core_pos_to_scmi_channel(core_pos, &domain_id,
231 &channel_id);
232 ret = scmi_pwr_state_set(scmi_handles[channel_id],
233 domain_id, scmi_pwr_state);
Soby Mathewea26bad2016-11-14 12:25:45 +0000234 if (ret != SCMI_E_QUEUED && ret != SCMI_E_SUCCESS) {
235 ERROR("SCMI set power state command return 0x%x unexpected\n",
236 ret);
237 panic();
238 }
239}
240
241/*
242 * Helper function to get the power state of a power domain node as reported
243 * by the SCP.
244 */
245int css_scp_get_power_state(u_register_t mpidr, unsigned int power_level)
246{
Aditya Angadi7f8837b2019-12-31 14:23:53 +0530247 int ret;
Soby Mathewea26bad2016-11-14 12:25:45 +0000248 uint32_t scmi_pwr_state = 0, lvl_state;
Aditya Angadi7f8837b2019-12-31 14:23:53 +0530249 unsigned int channel_id, cpu_idx, domain_id;
Soby Mathewea26bad2016-11-14 12:25:45 +0000250
251 /* We don't support get power state at the system power domain level */
252 if ((power_level > PLAT_MAX_PWR_LVL) ||
253 (power_level == CSS_SYSTEM_PWR_DMN_LVL)) {
254 WARN("Invalid power level %u specified for SCMI get power state\n",
255 power_level);
256 return PSCI_E_INVALID_PARAMS;
257 }
258
Manish Pandeybb667592020-03-03 17:12:10 +0000259 cpu_idx = (unsigned int)plat_core_pos_by_mpidr(mpidr);
260 assert(cpu_idx < PLATFORM_CORE_COUNT);
Soby Mathewea26bad2016-11-14 12:25:45 +0000261
Aditya Angadi7f8837b2019-12-31 14:23:53 +0530262 css_scp_core_pos_to_scmi_channel(cpu_idx, &domain_id, &channel_id);
263 ret = scmi_pwr_state_get(scmi_handles[channel_id],
264 domain_id, &scmi_pwr_state);
Soby Mathewea26bad2016-11-14 12:25:45 +0000265
266 if (ret != SCMI_E_SUCCESS) {
267 WARN("SCMI get power state command return 0x%x unexpected\n",
268 ret);
269 return PSCI_E_INVALID_PARAMS;
270 }
271
272 /*
273 * Find the maximum power level described in the get power state
274 * command. If it is less than the requested power level, then assume
275 * the requested power level is ON.
276 */
277 if (SCMI_GET_PWR_STATE_MAX_PWR_LVL(scmi_pwr_state) < power_level)
278 return HW_ON;
279
280 lvl_state = SCMI_GET_PWR_STATE_LVL(scmi_pwr_state, power_level);
281 if (lvl_state == scmi_power_state_on)
282 return HW_ON;
283
284 assert((lvl_state == scmi_power_state_off) ||
285 (lvl_state == scmi_power_state_sleep));
286 return HW_OFF;
287}
288
Roberto Vargasfc2b4eb2017-07-31 09:45:10 +0100289void __dead2 css_scp_system_off(int state)
Soby Mathewea26bad2016-11-14 12:25:45 +0000290{
291 int ret;
292
293 /*
294 * Disable GIC CPU interface to prevent pending interrupt from waking
295 * up the AP from WFI.
296 */
297 plat_arm_gic_cpuif_disable();
298
299 /*
Roberto Vargasfc2b4eb2017-07-31 09:45:10 +0100300 * Issue SCMI command. First issue a graceful
Soby Mathewea26bad2016-11-14 12:25:45 +0000301 * request and if that fails force the request.
302 */
Aditya Angadi7f8837b2019-12-31 14:23:53 +0530303 ret = scmi_sys_pwr_state_set(scmi_handles[default_scmi_channel_id],
Soby Mathewea26bad2016-11-14 12:25:45 +0000304 SCMI_SYS_PWR_FORCEFUL_REQ,
Roberto Vargasfc2b4eb2017-07-31 09:45:10 +0100305 state);
306
Soby Mathewea26bad2016-11-14 12:25:45 +0000307 if (ret != SCMI_E_SUCCESS) {
Roberto Vargasfc2b4eb2017-07-31 09:45:10 +0100308 ERROR("SCMI system power state set 0x%x returns unexpected 0x%x\n",
309 state, ret);
Soby Mathewea26bad2016-11-14 12:25:45 +0000310 panic();
311 }
Soby Mathewea26bad2016-11-14 12:25:45 +0000312 wfi();
Roberto Vargasfc2b4eb2017-07-31 09:45:10 +0100313 ERROR("CSS set power state: operation not handled.\n");
Soby Mathewea26bad2016-11-14 12:25:45 +0000314 panic();
315}
316
317/*
Roberto Vargasfc2b4eb2017-07-31 09:45:10 +0100318 * Helper function to shutdown the system via SCMI.
319 */
320void __dead2 css_scp_sys_shutdown(void)
321{
322 css_scp_system_off(SCMI_SYS_PWR_SHUTDOWN);
323}
324
325/*
Soby Mathewea26bad2016-11-14 12:25:45 +0000326 * Helper function to reset the system via SCMI.
327 */
328void __dead2 css_scp_sys_reboot(void)
329{
Roberto Vargasfc2b4eb2017-07-31 09:45:10 +0100330 css_scp_system_off(SCMI_SYS_PWR_COLD_RESET);
Soby Mathewea26bad2016-11-14 12:25:45 +0000331}
332
Dimitris Papastamosd7a36512018-06-18 13:01:06 +0100333static int scmi_ap_core_init(scmi_channel_t *ch)
334{
335#if PROGRAMMABLE_RESET_ADDRESS
336 uint32_t version;
337 int ret;
338
339 ret = scmi_proto_version(ch, SCMI_AP_CORE_PROTO_ID, &version);
340 if (ret != SCMI_E_SUCCESS) {
341 WARN("SCMI AP core protocol version message failed\n");
342 return -1;
343 }
344
345 if (!is_scmi_version_compatible(SCMI_AP_CORE_PROTO_VER, version)) {
346 WARN("SCMI AP core protocol version 0x%x incompatible with driver version 0x%x\n",
347 version, SCMI_AP_CORE_PROTO_VER);
348 return -1;
349 }
350 INFO("SCMI AP core protocol version 0x%x detected\n", version);
351#endif
352 return 0;
353}
354
Daniel Boulbyf45a4bb2018-09-18 13:26:03 +0100355void __init plat_arm_pwrc_setup(void)
Soby Mathewea26bad2016-11-14 12:25:45 +0000356{
Aditya Angadi7f8837b2019-12-31 14:23:53 +0530357 unsigned int composite_id, idx;
358
359 for (idx = 0; idx < PLAT_ARM_SCMI_CHANNEL_COUNT; idx++) {
360 INFO("Initializing driver on Channel %d\n", idx);
361
362 scmi_channels[idx].info = plat_css_get_scmi_info(idx);
363 scmi_channels[idx].lock = ARM_SCMI_LOCK_GET_INSTANCE;
364 scmi_handles[idx] = scmi_init(&scmi_channels[idx]);
365
366 if (scmi_handles[idx] == NULL) {
367 ERROR("SCMI Initialization failed on channel %d\n", idx);
368 panic();
369 }
370
371 if (scmi_ap_core_init(&scmi_channels[idx]) < 0) {
372 ERROR("SCMI AP core protocol initialization failed\n");
373 panic();
374 }
Dimitris Papastamosd7a36512018-06-18 13:01:06 +0100375 }
Aditya Angadi7f8837b2019-12-31 14:23:53 +0530376
377 composite_id = plat_css_core_pos_to_scmi_dmn_id_map[plat_my_core_pos()];
378 default_scmi_channel_id = GET_SCMI_CHANNEL_ID(composite_id);
Soby Mathewea26bad2016-11-14 12:25:45 +0000379}
380
381/******************************************************************************
382 * This function overrides the default definition for ARM platforms. Initialize
383 * the SCMI driver, query capability via SCMI and modify the PSCI capability
384 * based on that.
385 *****************************************************************************/
Chandni Cherukurie4bf6a02018-11-14 13:43:59 +0530386const plat_psci_ops_t *css_scmi_override_pm_ops(plat_psci_ops_t *ops)
Soby Mathewea26bad2016-11-14 12:25:45 +0000387{
388 uint32_t msg_attr;
389 int ret;
Aditya Angadi7f8837b2019-12-31 14:23:53 +0530390 void *scmi_handle = scmi_handles[default_scmi_channel_id];
Soby Mathewea26bad2016-11-14 12:25:45 +0000391
392 assert(scmi_handle);
393
394 /* Check that power domain POWER_STATE_SET message is supported */
395 ret = scmi_proto_msg_attr(scmi_handle, SCMI_PWR_DMN_PROTO_ID,
396 SCMI_PWR_STATE_SET_MSG, &msg_attr);
397 if (ret != SCMI_E_SUCCESS) {
398 ERROR("Set power state command is not supported by SCMI\n");
399 panic();
400 }
401
402 /*
403 * Don't support PSCI NODE_HW_STATE call if SCMI doesn't support
404 * POWER_STATE_GET message.
405 */
406 ret = scmi_proto_msg_attr(scmi_handle, SCMI_PWR_DMN_PROTO_ID,
407 SCMI_PWR_STATE_GET_MSG, &msg_attr);
408 if (ret != SCMI_E_SUCCESS)
409 ops->get_node_hw_state = NULL;
410
411 /* Check if the SCMI SYSTEM_POWER_STATE_SET message is supported */
412 ret = scmi_proto_msg_attr(scmi_handle, SCMI_SYS_PWR_PROTO_ID,
413 SCMI_SYS_PWR_STATE_SET_MSG, &msg_attr);
414 if (ret != SCMI_E_SUCCESS) {
415 /* System power management operations are not supported */
416 ops->system_off = NULL;
417 ops->system_reset = NULL;
418 ops->get_sys_suspend_power_state = NULL;
Roberto Vargas3caafd72017-08-16 08:57:45 +0100419 } else {
420 if (!(msg_attr & SCMI_SYS_PWR_SUSPEND_SUPPORTED)) {
421 /*
422 * System power management protocol is available, but
423 * it does not support SYSTEM SUSPEND.
424 */
425 ops->get_sys_suspend_power_state = NULL;
426 }
427 if (!(msg_attr & SCMI_SYS_PWR_WARM_RESET_SUPPORTED)) {
428 /*
429 * WARM reset is not available.
430 */
431 ops->system_reset2 = NULL;
432 }
Soby Mathewea26bad2016-11-14 12:25:45 +0000433 }
434
435 return ops;
436}
Roberto Vargas3caafd72017-08-16 08:57:45 +0100437
438int css_system_reset2(int is_vendor, int reset_type, u_register_t cookie)
439{
440 if (is_vendor || (reset_type != PSCI_RESET2_SYSTEM_WARM_RESET))
441 return PSCI_E_INVALID_PARAMS;
442
443 css_scp_system_off(SCMI_SYS_PWR_WARM_RESET);
444 /*
445 * css_scp_system_off cannot return (it is a __dead function),
446 * but css_system_reset2 has to return some value, even in
447 * this case.
448 */
449 return 0;
450}
Dimitris Papastamosd7a36512018-06-18 13:01:06 +0100451
452#if PROGRAMMABLE_RESET_ADDRESS
453void plat_arm_program_trusted_mailbox(uintptr_t address)
454{
Aditya Angadi7f8837b2019-12-31 14:23:53 +0530455 int ret, i;
Dimitris Papastamosd7a36512018-06-18 13:01:06 +0100456
Aditya Angadi7f8837b2019-12-31 14:23:53 +0530457 for (i = 0; i < PLAT_ARM_SCMI_CHANNEL_COUNT; i++) {
458 assert(scmi_handles[i]);
459
460 ret = scmi_ap_core_set_reset_addr(scmi_handles[i], address,
461 SCMI_AP_CORE_LOCK_ATTR);
462 if (ret != SCMI_E_SUCCESS) {
463 ERROR("CSS: Failed to program reset address: %d\n", ret);
464 panic();
465 }
Dimitris Papastamosd7a36512018-06-18 13:01:06 +0100466 }
467}
468#endif