blob: d280101d6ec651da08d757e70a215ec327334730 [file] [log] [blame]
Soby Mathewea26bad2016-11-14 12:25:45 +00001/*
Roberto Vargas2b36b152018-02-12 12:36:17 +00002 * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
Soby Mathewea26bad2016-11-14 12:25:45 +00003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <arch_helpers.h>
8#include <assert.h>
9#include <css_def.h>
10#include <css_pm.h>
11#include <debug.h>
12#include <plat_arm.h>
13#include <platform.h>
14#include <string.h>
15#include "../scmi/scmi.h"
Samarth Parikh59cfa132017-11-23 14:23:21 +053016#include "../mhu/css_mhu_doorbell.h"
Soby Mathewea26bad2016-11-14 12:25:45 +000017#include "css_scp.h"
18
19/*
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
Jeenu Viswambharan749d25b2017-08-23 14:12:59 +010074ARM_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
102 int lvl;
103 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{
148 int lvl = 0, ret;
149 uint32_t scmi_pwr_state = 0;
150
151 /* At-least the CPU level should be specified to be OFF */
152 assert(target_state->pwr_domain_state[ARM_PWR_LVL0] ==
153 ARM_LOCAL_STATE_OFF);
154
155 /* PSCI CPU OFF cannot be used to turn OFF system power domain */
Soby Mathewfd2e5e42018-09-10 11:32:49 +0100156 assert(css_system_pwr_state(target_state) == ARM_LOCAL_STATE_RUN);
Soby Mathewea26bad2016-11-14 12:25:45 +0000157
158 for (; lvl <= PLAT_MAX_PWR_LVL; lvl++) {
159 if (target_state->pwr_domain_state[lvl] == ARM_LOCAL_STATE_RUN)
160 break;
161
162 assert(target_state->pwr_domain_state[lvl] ==
163 ARM_LOCAL_STATE_OFF);
164 SCMI_SET_PWR_STATE_LVL(scmi_pwr_state, lvl,
165 scmi_power_state_off);
166 }
167
168 SCMI_SET_PWR_STATE_MAX_PWR_LVL(scmi_pwr_state, lvl - 1);
169
170 ret = scmi_pwr_state_set(scmi_handle,
171 plat_css_core_pos_to_scmi_dmn_id_map[plat_my_core_pos()],
172 scmi_pwr_state);
173
174 if (ret != SCMI_E_QUEUED && ret != SCMI_E_SUCCESS) {
175 ERROR("SCMI set power state command return 0x%x unexpected\n",
176 ret);
177 panic();
178 }
179}
180
181/*
182 * Helper function to turn ON a CPU power domain and its parent power domains
183 * if applicable.
184 */
185void css_scp_on(u_register_t mpidr)
186{
Soby Mathewe089e3f2017-06-09 15:04:43 +0100187 int lvl = 0, ret, core_pos;
Soby Mathewea26bad2016-11-14 12:25:45 +0000188 uint32_t scmi_pwr_state = 0;
189
190 for (; lvl <= PLAT_MAX_PWR_LVL; lvl++)
191 SCMI_SET_PWR_STATE_LVL(scmi_pwr_state, lvl,
192 scmi_power_state_on);
193
194 SCMI_SET_PWR_STATE_MAX_PWR_LVL(scmi_pwr_state, lvl - 1);
195
Soby Mathewe089e3f2017-06-09 15:04:43 +0100196 core_pos = plat_core_pos_by_mpidr(mpidr);
197 assert(core_pos >= 0 && core_pos < PLATFORM_CORE_COUNT);
198
Soby Mathewea26bad2016-11-14 12:25:45 +0000199 ret = scmi_pwr_state_set(scmi_handle,
Soby Mathewe089e3f2017-06-09 15:04:43 +0100200 plat_css_core_pos_to_scmi_dmn_id_map[core_pos],
Soby Mathewea26bad2016-11-14 12:25:45 +0000201 scmi_pwr_state);
202
203 if (ret != SCMI_E_QUEUED && ret != SCMI_E_SUCCESS) {
204 ERROR("SCMI set power state command return 0x%x unexpected\n",
205 ret);
206 panic();
207 }
208}
209
210/*
211 * Helper function to get the power state of a power domain node as reported
212 * by the SCP.
213 */
214int css_scp_get_power_state(u_register_t mpidr, unsigned int power_level)
215{
216 int ret, cpu_idx;
217 uint32_t scmi_pwr_state = 0, lvl_state;
218
219 /* We don't support get power state at the system power domain level */
220 if ((power_level > PLAT_MAX_PWR_LVL) ||
221 (power_level == CSS_SYSTEM_PWR_DMN_LVL)) {
222 WARN("Invalid power level %u specified for SCMI get power state\n",
223 power_level);
224 return PSCI_E_INVALID_PARAMS;
225 }
226
227 cpu_idx = plat_core_pos_by_mpidr(mpidr);
228 assert(cpu_idx > -1);
229
230 ret = scmi_pwr_state_get(scmi_handle,
231 plat_css_core_pos_to_scmi_dmn_id_map[cpu_idx],
232 &scmi_pwr_state);
233
234 if (ret != SCMI_E_SUCCESS) {
235 WARN("SCMI get power state command return 0x%x unexpected\n",
236 ret);
237 return PSCI_E_INVALID_PARAMS;
238 }
239
240 /*
241 * Find the maximum power level described in the get power state
242 * command. If it is less than the requested power level, then assume
243 * the requested power level is ON.
244 */
245 if (SCMI_GET_PWR_STATE_MAX_PWR_LVL(scmi_pwr_state) < power_level)
246 return HW_ON;
247
248 lvl_state = SCMI_GET_PWR_STATE_LVL(scmi_pwr_state, power_level);
249 if (lvl_state == scmi_power_state_on)
250 return HW_ON;
251
252 assert((lvl_state == scmi_power_state_off) ||
253 (lvl_state == scmi_power_state_sleep));
254 return HW_OFF;
255}
256
Roberto Vargasfc2b4eb2017-07-31 09:45:10 +0100257void __dead2 css_scp_system_off(int state)
Soby Mathewea26bad2016-11-14 12:25:45 +0000258{
259 int ret;
260
261 /*
262 * Disable GIC CPU interface to prevent pending interrupt from waking
263 * up the AP from WFI.
264 */
265 plat_arm_gic_cpuif_disable();
266
267 /*
Roberto Vargasfc2b4eb2017-07-31 09:45:10 +0100268 * Issue SCMI command. First issue a graceful
Soby Mathewea26bad2016-11-14 12:25:45 +0000269 * request and if that fails force the request.
270 */
271 ret = scmi_sys_pwr_state_set(scmi_handle,
272 SCMI_SYS_PWR_FORCEFUL_REQ,
Roberto Vargasfc2b4eb2017-07-31 09:45:10 +0100273 state);
274
Soby Mathewea26bad2016-11-14 12:25:45 +0000275 if (ret != SCMI_E_SUCCESS) {
Roberto Vargasfc2b4eb2017-07-31 09:45:10 +0100276 ERROR("SCMI system power state set 0x%x returns unexpected 0x%x\n",
277 state, ret);
Soby Mathewea26bad2016-11-14 12:25:45 +0000278 panic();
279 }
Soby Mathewea26bad2016-11-14 12:25:45 +0000280 wfi();
Roberto Vargasfc2b4eb2017-07-31 09:45:10 +0100281 ERROR("CSS set power state: operation not handled.\n");
Soby Mathewea26bad2016-11-14 12:25:45 +0000282 panic();
283}
284
285/*
Roberto Vargasfc2b4eb2017-07-31 09:45:10 +0100286 * Helper function to shutdown the system via SCMI.
287 */
288void __dead2 css_scp_sys_shutdown(void)
289{
290 css_scp_system_off(SCMI_SYS_PWR_SHUTDOWN);
291}
292
293/*
Soby Mathewea26bad2016-11-14 12:25:45 +0000294 * Helper function to reset the system via SCMI.
295 */
296void __dead2 css_scp_sys_reboot(void)
297{
Roberto Vargasfc2b4eb2017-07-31 09:45:10 +0100298 css_scp_system_off(SCMI_SYS_PWR_COLD_RESET);
Soby Mathewea26bad2016-11-14 12:25:45 +0000299}
300
Roberto Vargas4d59eb42018-02-12 12:36:17 +0000301static scmi_channel_plat_info_t plat_css_scmi_plat_info = {
Soby Mathewea26bad2016-11-14 12:25:45 +0000302 .scmi_mbx_mem = CSS_SCMI_PAYLOAD_BASE,
303 .db_reg_addr = PLAT_CSS_MHU_BASE + CSS_SCMI_MHU_DB_REG_OFF,
Soby Mathew1ced6b82017-06-12 12:37:10 +0100304 .db_preserve_mask = 0xfffffffe,
305 .db_modify_mask = 0x1,
Samarth Parikh59cfa132017-11-23 14:23:21 +0530306 .ring_doorbell = &mhu_ring_doorbell,
Soby Mathewea26bad2016-11-14 12:25:45 +0000307};
308
Dimitris Papastamosd7a36512018-06-18 13:01:06 +0100309static int scmi_ap_core_init(scmi_channel_t *ch)
310{
311#if PROGRAMMABLE_RESET_ADDRESS
312 uint32_t version;
313 int ret;
314
315 ret = scmi_proto_version(ch, SCMI_AP_CORE_PROTO_ID, &version);
316 if (ret != SCMI_E_SUCCESS) {
317 WARN("SCMI AP core protocol version message failed\n");
318 return -1;
319 }
320
321 if (!is_scmi_version_compatible(SCMI_AP_CORE_PROTO_VER, version)) {
322 WARN("SCMI AP core protocol version 0x%x incompatible with driver version 0x%x\n",
323 version, SCMI_AP_CORE_PROTO_VER);
324 return -1;
325 }
326 INFO("SCMI AP core protocol version 0x%x detected\n", version);
327#endif
328 return 0;
329}
330
Daniel Boulbyf45a4bb2018-09-18 13:26:03 +0100331void __init plat_arm_pwrc_setup(void)
Soby Mathewea26bad2016-11-14 12:25:45 +0000332{
Daniel Boulbyebdb6342018-05-14 17:18:58 +0100333 channel.info = &plat_css_scmi_plat_info;
334 channel.lock = ARM_LOCK_GET_INSTANCE;
335 scmi_handle = scmi_init(&channel);
Soby Mathewea26bad2016-11-14 12:25:45 +0000336 if (scmi_handle == NULL) {
337 ERROR("SCMI Initialization failed\n");
338 panic();
339 }
Dimitris Papastamosd7a36512018-06-18 13:01:06 +0100340 if (scmi_ap_core_init(&channel) < 0) {
341 ERROR("SCMI AP core protocol initialization failed\n");
342 panic();
343 }
Soby Mathewea26bad2016-11-14 12:25:45 +0000344}
345
346/******************************************************************************
347 * This function overrides the default definition for ARM platforms. Initialize
348 * the SCMI driver, query capability via SCMI and modify the PSCI capability
349 * based on that.
350 *****************************************************************************/
351const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops)
352{
353 uint32_t msg_attr;
354 int ret;
355
356 assert(scmi_handle);
357
358 /* Check that power domain POWER_STATE_SET message is supported */
359 ret = scmi_proto_msg_attr(scmi_handle, SCMI_PWR_DMN_PROTO_ID,
360 SCMI_PWR_STATE_SET_MSG, &msg_attr);
361 if (ret != SCMI_E_SUCCESS) {
362 ERROR("Set power state command is not supported by SCMI\n");
363 panic();
364 }
365
366 /*
367 * Don't support PSCI NODE_HW_STATE call if SCMI doesn't support
368 * POWER_STATE_GET message.
369 */
370 ret = scmi_proto_msg_attr(scmi_handle, SCMI_PWR_DMN_PROTO_ID,
371 SCMI_PWR_STATE_GET_MSG, &msg_attr);
372 if (ret != SCMI_E_SUCCESS)
373 ops->get_node_hw_state = NULL;
374
375 /* Check if the SCMI SYSTEM_POWER_STATE_SET message is supported */
376 ret = scmi_proto_msg_attr(scmi_handle, SCMI_SYS_PWR_PROTO_ID,
377 SCMI_SYS_PWR_STATE_SET_MSG, &msg_attr);
378 if (ret != SCMI_E_SUCCESS) {
379 /* System power management operations are not supported */
380 ops->system_off = NULL;
381 ops->system_reset = NULL;
382 ops->get_sys_suspend_power_state = NULL;
Roberto Vargas3caafd72017-08-16 08:57:45 +0100383 } else {
384 if (!(msg_attr & SCMI_SYS_PWR_SUSPEND_SUPPORTED)) {
385 /*
386 * System power management protocol is available, but
387 * it does not support SYSTEM SUSPEND.
388 */
389 ops->get_sys_suspend_power_state = NULL;
390 }
391 if (!(msg_attr & SCMI_SYS_PWR_WARM_RESET_SUPPORTED)) {
392 /*
393 * WARM reset is not available.
394 */
395 ops->system_reset2 = NULL;
396 }
Soby Mathewea26bad2016-11-14 12:25:45 +0000397 }
398
399 return ops;
400}
Roberto Vargas3caafd72017-08-16 08:57:45 +0100401
402int css_system_reset2(int is_vendor, int reset_type, u_register_t cookie)
403{
404 if (is_vendor || (reset_type != PSCI_RESET2_SYSTEM_WARM_RESET))
405 return PSCI_E_INVALID_PARAMS;
406
407 css_scp_system_off(SCMI_SYS_PWR_WARM_RESET);
408 /*
409 * css_scp_system_off cannot return (it is a __dead function),
410 * but css_system_reset2 has to return some value, even in
411 * this case.
412 */
413 return 0;
414}
Dimitris Papastamosd7a36512018-06-18 13:01:06 +0100415
416#if PROGRAMMABLE_RESET_ADDRESS
417void plat_arm_program_trusted_mailbox(uintptr_t address)
418{
419 int ret;
420
421 assert(scmi_handle);
422 ret = scmi_ap_core_set_reset_addr(scmi_handle, address,
423 SCMI_AP_CORE_LOCK_ATTR);
424 if (ret != SCMI_E_SUCCESS) {
425 ERROR("CSS: Failed to program reset address: %d\n", ret);
426 panic();
427 }
428}
429#endif