blob: 8dbefa16bb03f323296fd23e0933536c89b0ecb6 [file] [log] [blame]
Soby Mathewea26bad2016-11-14 12:25:45 +00001/*
Ambroise Vincenta88a35d2019-02-14 09:48:21 +00002 * Copyright (c) 2017-2019, 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/*
Soby Mathewea26bad2016-11-14 12:25:45 +000066 * The global handle for invoking the SCMI driver APIs after the driver
67 * has been initialized.
68 */
Roberto Vargas2b36b152018-02-12 12:36:17 +000069static void *scmi_handle;
Soby Mathewea26bad2016-11-14 12:25:45 +000070
71/* The SCMI channel global object */
Daniel Boulbyebdb6342018-05-14 17:18:58 +010072static scmi_channel_t channel;
Soby Mathewea26bad2016-11-14 12:25:45 +000073
Roberto Vargas00996942017-11-13 13:41:58 +000074ARM_SCMI_INSTANTIATE_LOCK;
Soby Mathewea26bad2016-11-14 12:25:45 +000075
76/*
77 * Helper function to suspend a CPU power domain and its parent power domains
78 * if applicable.
79 */
Roberto Vargas5f5a5e62018-02-12 12:36:17 +000080void css_scp_suspend(const struct psci_power_state *target_state)
Soby Mathewea26bad2016-11-14 12:25:45 +000081{
Deepak Pandey207c5222017-10-10 21:34:32 +053082 int ret;
Soby Mathewea26bad2016-11-14 12:25:45 +000083
84 /* At least power domain level 0 should be specified to be suspended */
85 assert(target_state->pwr_domain_state[ARM_PWR_LVL0] ==
86 ARM_LOCAL_STATE_OFF);
87
88 /* Check if power down at system power domain level is requested */
Nariman Poushincd956262018-05-01 09:28:40 +010089 if (css_system_pwr_state(target_state) == ARM_LOCAL_STATE_OFF) {
Soby Mathewea26bad2016-11-14 12:25:45 +000090 /* Issue SCMI command for SYSTEM_SUSPEND */
91 ret = scmi_sys_pwr_state_set(scmi_handle,
92 SCMI_SYS_PWR_FORCEFUL_REQ,
93 SCMI_SYS_PWR_SUSPEND);
94 if (ret != SCMI_E_SUCCESS) {
95 ERROR("SCMI system power domain suspend return 0x%x unexpected\n",
96 ret);
97 panic();
98 }
99 return;
100 }
Deepak Pandey207c5222017-10-10 21:34:32 +0530101#if !HW_ASSISTED_COHERENCY
Ambroise Vincenta88a35d2019-02-14 09:48:21 +0000102 unsigned int lvl;
Deepak Pandey207c5222017-10-10 21:34:32 +0530103 uint32_t scmi_pwr_state = 0;
Soby Mathewea26bad2016-11-14 12:25:45 +0000104 /*
105 * If we reach here, then assert that power down at system power domain
106 * level is running.
107 */
Soby Mathewfd2e5e42018-09-10 11:32:49 +0100108 assert(css_system_pwr_state(target_state) == ARM_LOCAL_STATE_RUN);
Soby Mathewea26bad2016-11-14 12:25:45 +0000109
110 /* For level 0, specify `scmi_power_state_sleep` as the power state */
111 SCMI_SET_PWR_STATE_LVL(scmi_pwr_state, ARM_PWR_LVL0,
112 scmi_power_state_sleep);
113
114 for (lvl = ARM_PWR_LVL1; lvl <= PLAT_MAX_PWR_LVL; lvl++) {
115 if (target_state->pwr_domain_state[lvl] == ARM_LOCAL_STATE_RUN)
116 break;
117
118 assert(target_state->pwr_domain_state[lvl] ==
119 ARM_LOCAL_STATE_OFF);
120 /*
121 * Specify `scmi_power_state_off` as power state for higher
122 * levels.
123 */
124 SCMI_SET_PWR_STATE_LVL(scmi_pwr_state, lvl,
125 scmi_power_state_off);
126 }
127
128 SCMI_SET_PWR_STATE_MAX_PWR_LVL(scmi_pwr_state, lvl - 1);
129
130 ret = scmi_pwr_state_set(scmi_handle,
131 plat_css_core_pos_to_scmi_dmn_id_map[plat_my_core_pos()],
132 scmi_pwr_state);
133
134 if (ret != SCMI_E_SUCCESS) {
135 ERROR("SCMI set power state command return 0x%x unexpected\n",
136 ret);
137 panic();
138 }
Deepak Pandey207c5222017-10-10 21:34:32 +0530139#endif
Soby Mathewea26bad2016-11-14 12:25:45 +0000140}
141
142/*
143 * Helper function to turn off a CPU power domain and its parent power domains
144 * if applicable.
145 */
Roberto Vargas85664f52018-02-12 12:36:17 +0000146void css_scp_off(const struct psci_power_state *target_state)
Soby Mathewea26bad2016-11-14 12:25:45 +0000147{
Ambroise Vincenta88a35d2019-02-14 09:48:21 +0000148 unsigned int lvl = 0;
149 int ret;
Soby Mathewea26bad2016-11-14 12:25:45 +0000150 uint32_t scmi_pwr_state = 0;
151
152 /* At-least the CPU level should be specified to be OFF */
153 assert(target_state->pwr_domain_state[ARM_PWR_LVL0] ==
154 ARM_LOCAL_STATE_OFF);
155
156 /* PSCI CPU OFF cannot be used to turn OFF system power domain */
Soby Mathewfd2e5e42018-09-10 11:32:49 +0100157 assert(css_system_pwr_state(target_state) == ARM_LOCAL_STATE_RUN);
Soby Mathewea26bad2016-11-14 12:25:45 +0000158
159 for (; lvl <= PLAT_MAX_PWR_LVL; lvl++) {
160 if (target_state->pwr_domain_state[lvl] == ARM_LOCAL_STATE_RUN)
161 break;
162
163 assert(target_state->pwr_domain_state[lvl] ==
164 ARM_LOCAL_STATE_OFF);
165 SCMI_SET_PWR_STATE_LVL(scmi_pwr_state, lvl,
166 scmi_power_state_off);
167 }
168
169 SCMI_SET_PWR_STATE_MAX_PWR_LVL(scmi_pwr_state, lvl - 1);
170
171 ret = scmi_pwr_state_set(scmi_handle,
172 plat_css_core_pos_to_scmi_dmn_id_map[plat_my_core_pos()],
173 scmi_pwr_state);
174
175 if (ret != SCMI_E_QUEUED && ret != SCMI_E_SUCCESS) {
176 ERROR("SCMI set power state command return 0x%x unexpected\n",
177 ret);
178 panic();
179 }
180}
181
182/*
183 * Helper function to turn ON a CPU power domain and its parent power domains
184 * if applicable.
185 */
186void css_scp_on(u_register_t mpidr)
187{
Ambroise Vincenta88a35d2019-02-14 09:48:21 +0000188 unsigned int lvl = 0;
189 int ret, core_pos;
Soby Mathewea26bad2016-11-14 12:25:45 +0000190 uint32_t scmi_pwr_state = 0;
191
192 for (; lvl <= PLAT_MAX_PWR_LVL; lvl++)
193 SCMI_SET_PWR_STATE_LVL(scmi_pwr_state, lvl,
194 scmi_power_state_on);
195
196 SCMI_SET_PWR_STATE_MAX_PWR_LVL(scmi_pwr_state, lvl - 1);
197
Soby Mathewe089e3f2017-06-09 15:04:43 +0100198 core_pos = plat_core_pos_by_mpidr(mpidr);
199 assert(core_pos >= 0 && core_pos < PLATFORM_CORE_COUNT);
200
Soby Mathewea26bad2016-11-14 12:25:45 +0000201 ret = scmi_pwr_state_set(scmi_handle,
Soby Mathewe089e3f2017-06-09 15:04:43 +0100202 plat_css_core_pos_to_scmi_dmn_id_map[core_pos],
Soby Mathewea26bad2016-11-14 12:25:45 +0000203 scmi_pwr_state);
204
205 if (ret != SCMI_E_QUEUED && ret != SCMI_E_SUCCESS) {
206 ERROR("SCMI set power state command return 0x%x unexpected\n",
207 ret);
208 panic();
209 }
210}
211
212/*
213 * Helper function to get the power state of a power domain node as reported
214 * by the SCP.
215 */
216int css_scp_get_power_state(u_register_t mpidr, unsigned int power_level)
217{
218 int ret, cpu_idx;
219 uint32_t scmi_pwr_state = 0, lvl_state;
220
221 /* We don't support get power state at the system power domain level */
222 if ((power_level > PLAT_MAX_PWR_LVL) ||
223 (power_level == CSS_SYSTEM_PWR_DMN_LVL)) {
224 WARN("Invalid power level %u specified for SCMI get power state\n",
225 power_level);
226 return PSCI_E_INVALID_PARAMS;
227 }
228
229 cpu_idx = plat_core_pos_by_mpidr(mpidr);
230 assert(cpu_idx > -1);
231
232 ret = scmi_pwr_state_get(scmi_handle,
233 plat_css_core_pos_to_scmi_dmn_id_map[cpu_idx],
234 &scmi_pwr_state);
235
236 if (ret != SCMI_E_SUCCESS) {
237 WARN("SCMI get power state command return 0x%x unexpected\n",
238 ret);
239 return PSCI_E_INVALID_PARAMS;
240 }
241
242 /*
243 * Find the maximum power level described in the get power state
244 * command. If it is less than the requested power level, then assume
245 * the requested power level is ON.
246 */
247 if (SCMI_GET_PWR_STATE_MAX_PWR_LVL(scmi_pwr_state) < power_level)
248 return HW_ON;
249
250 lvl_state = SCMI_GET_PWR_STATE_LVL(scmi_pwr_state, power_level);
251 if (lvl_state == scmi_power_state_on)
252 return HW_ON;
253
254 assert((lvl_state == scmi_power_state_off) ||
255 (lvl_state == scmi_power_state_sleep));
256 return HW_OFF;
257}
258
Roberto Vargasfc2b4eb2017-07-31 09:45:10 +0100259void __dead2 css_scp_system_off(int state)
Soby Mathewea26bad2016-11-14 12:25:45 +0000260{
261 int ret;
262
263 /*
264 * Disable GIC CPU interface to prevent pending interrupt from waking
265 * up the AP from WFI.
266 */
267 plat_arm_gic_cpuif_disable();
268
269 /*
Roberto Vargasfc2b4eb2017-07-31 09:45:10 +0100270 * Issue SCMI command. First issue a graceful
Soby Mathewea26bad2016-11-14 12:25:45 +0000271 * request and if that fails force the request.
272 */
273 ret = scmi_sys_pwr_state_set(scmi_handle,
274 SCMI_SYS_PWR_FORCEFUL_REQ,
Roberto Vargasfc2b4eb2017-07-31 09:45:10 +0100275 state);
276
Soby Mathewea26bad2016-11-14 12:25:45 +0000277 if (ret != SCMI_E_SUCCESS) {
Roberto Vargasfc2b4eb2017-07-31 09:45:10 +0100278 ERROR("SCMI system power state set 0x%x returns unexpected 0x%x\n",
279 state, ret);
Soby Mathewea26bad2016-11-14 12:25:45 +0000280 panic();
281 }
Soby Mathewea26bad2016-11-14 12:25:45 +0000282 wfi();
Roberto Vargasfc2b4eb2017-07-31 09:45:10 +0100283 ERROR("CSS set power state: operation not handled.\n");
Soby Mathewea26bad2016-11-14 12:25:45 +0000284 panic();
285}
286
287/*
Roberto Vargasfc2b4eb2017-07-31 09:45:10 +0100288 * Helper function to shutdown the system via SCMI.
289 */
290void __dead2 css_scp_sys_shutdown(void)
291{
292 css_scp_system_off(SCMI_SYS_PWR_SHUTDOWN);
293}
294
295/*
Soby Mathewea26bad2016-11-14 12:25:45 +0000296 * Helper function to reset the system via SCMI.
297 */
298void __dead2 css_scp_sys_reboot(void)
299{
Roberto Vargasfc2b4eb2017-07-31 09:45:10 +0100300 css_scp_system_off(SCMI_SYS_PWR_COLD_RESET);
Soby Mathewea26bad2016-11-14 12:25:45 +0000301}
302
Dimitris Papastamosd7a36512018-06-18 13:01:06 +0100303static int scmi_ap_core_init(scmi_channel_t *ch)
304{
305#if PROGRAMMABLE_RESET_ADDRESS
306 uint32_t version;
307 int ret;
308
309 ret = scmi_proto_version(ch, SCMI_AP_CORE_PROTO_ID, &version);
310 if (ret != SCMI_E_SUCCESS) {
311 WARN("SCMI AP core protocol version message failed\n");
312 return -1;
313 }
314
315 if (!is_scmi_version_compatible(SCMI_AP_CORE_PROTO_VER, version)) {
316 WARN("SCMI AP core protocol version 0x%x incompatible with driver version 0x%x\n",
317 version, SCMI_AP_CORE_PROTO_VER);
318 return -1;
319 }
320 INFO("SCMI AP core protocol version 0x%x detected\n", version);
321#endif
322 return 0;
323}
324
Daniel Boulbyf45a4bb2018-09-18 13:26:03 +0100325void __init plat_arm_pwrc_setup(void)
Soby Mathewea26bad2016-11-14 12:25:45 +0000326{
Chandni Cherukuri61f3a7c2018-10-11 14:08:08 +0530327 channel.info = plat_css_get_scmi_info();
Roberto Vargas00996942017-11-13 13:41:58 +0000328 channel.lock = ARM_SCMI_LOCK_GET_INSTANCE;
Daniel Boulbyebdb6342018-05-14 17:18:58 +0100329 scmi_handle = scmi_init(&channel);
Soby Mathewea26bad2016-11-14 12:25:45 +0000330 if (scmi_handle == NULL) {
331 ERROR("SCMI Initialization failed\n");
332 panic();
333 }
Dimitris Papastamosd7a36512018-06-18 13:01:06 +0100334 if (scmi_ap_core_init(&channel) < 0) {
335 ERROR("SCMI AP core protocol initialization failed\n");
336 panic();
337 }
Soby Mathewea26bad2016-11-14 12:25:45 +0000338}
339
340/******************************************************************************
341 * This function overrides the default definition for ARM platforms. Initialize
342 * the SCMI driver, query capability via SCMI and modify the PSCI capability
343 * based on that.
344 *****************************************************************************/
Chandni Cherukurie4bf6a02018-11-14 13:43:59 +0530345const plat_psci_ops_t *css_scmi_override_pm_ops(plat_psci_ops_t *ops)
Soby Mathewea26bad2016-11-14 12:25:45 +0000346{
347 uint32_t msg_attr;
348 int ret;
349
350 assert(scmi_handle);
351
352 /* Check that power domain POWER_STATE_SET message is supported */
353 ret = scmi_proto_msg_attr(scmi_handle, SCMI_PWR_DMN_PROTO_ID,
354 SCMI_PWR_STATE_SET_MSG, &msg_attr);
355 if (ret != SCMI_E_SUCCESS) {
356 ERROR("Set power state command is not supported by SCMI\n");
357 panic();
358 }
359
360 /*
361 * Don't support PSCI NODE_HW_STATE call if SCMI doesn't support
362 * POWER_STATE_GET message.
363 */
364 ret = scmi_proto_msg_attr(scmi_handle, SCMI_PWR_DMN_PROTO_ID,
365 SCMI_PWR_STATE_GET_MSG, &msg_attr);
366 if (ret != SCMI_E_SUCCESS)
367 ops->get_node_hw_state = NULL;
368
369 /* Check if the SCMI SYSTEM_POWER_STATE_SET message is supported */
370 ret = scmi_proto_msg_attr(scmi_handle, SCMI_SYS_PWR_PROTO_ID,
371 SCMI_SYS_PWR_STATE_SET_MSG, &msg_attr);
372 if (ret != SCMI_E_SUCCESS) {
373 /* System power management operations are not supported */
374 ops->system_off = NULL;
375 ops->system_reset = NULL;
376 ops->get_sys_suspend_power_state = NULL;
Roberto Vargas3caafd72017-08-16 08:57:45 +0100377 } else {
378 if (!(msg_attr & SCMI_SYS_PWR_SUSPEND_SUPPORTED)) {
379 /*
380 * System power management protocol is available, but
381 * it does not support SYSTEM SUSPEND.
382 */
383 ops->get_sys_suspend_power_state = NULL;
384 }
385 if (!(msg_attr & SCMI_SYS_PWR_WARM_RESET_SUPPORTED)) {
386 /*
387 * WARM reset is not available.
388 */
389 ops->system_reset2 = NULL;
390 }
Soby Mathewea26bad2016-11-14 12:25:45 +0000391 }
392
393 return ops;
394}
Roberto Vargas3caafd72017-08-16 08:57:45 +0100395
396int css_system_reset2(int is_vendor, int reset_type, u_register_t cookie)
397{
398 if (is_vendor || (reset_type != PSCI_RESET2_SYSTEM_WARM_RESET))
399 return PSCI_E_INVALID_PARAMS;
400
401 css_scp_system_off(SCMI_SYS_PWR_WARM_RESET);
402 /*
403 * css_scp_system_off cannot return (it is a __dead function),
404 * but css_system_reset2 has to return some value, even in
405 * this case.
406 */
407 return 0;
408}
Dimitris Papastamosd7a36512018-06-18 13:01:06 +0100409
410#if PROGRAMMABLE_RESET_ADDRESS
411void plat_arm_program_trusted_mailbox(uintptr_t address)
412{
413 int ret;
414
415 assert(scmi_handle);
416 ret = scmi_ap_core_set_reset_addr(scmi_handle, address,
417 SCMI_AP_CORE_LOCK_ATTR);
418 if (ret != SCMI_E_SUCCESS) {
419 ERROR("CSS: Failed to program reset address: %d\n", ret);
420 panic();
421 }
422}
423#endif