blob: f4d04b823a79e5770943e557a96d8858bc90c071 [file] [log] [blame]
Tejas Patel354fe572018-12-14 00:55:37 -08001/*
Tanmay Shahff34daa2021-08-09 11:00:41 -07002 * Copyright (c) 2019-2022, Xilinx, Inc. All rights reserved.
Tejas Patel354fe572018-12-14 00:55:37 -08003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7/*
8 * Top-level SMC handler for Versal power management calls and
9 * IPI setup functions for communication with PMC.
10 */
11
12#include <errno.h>
13#include <plat_private.h>
Tejas Patel59c608a2019-01-09 04:10:29 -080014#include <stdbool.h>
15#include <common/runtime_svc.h>
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +053016#include <plat/common/platform.h>
Tejas Patel59c608a2019-01-09 04:10:29 -080017#include "pm_api_sys.h"
Tejas Patel354fe572018-12-14 00:55:37 -080018#include "pm_client.h"
19#include "pm_ipi.h"
Venkatesh Yadav Abbarapuaa4898a2021-03-31 03:07:40 -060020#include <drivers/arm/gicv3.h>
21
22#define XSCUGIC_SGIR_EL1_INITID_SHIFT 24U
Abhyuday Godhasaraedc38ae2021-08-04 23:58:46 -070023#define INVALID_SGI 0xFFU
Venkatesh Yadav Abbarapuaa4898a2021-03-31 03:07:40 -060024DEFINE_RENAME_SYSREG_RW_FUNCS(icc_asgi1r_el1, S3_0_C12_C11_6)
Tejas Patel354fe572018-12-14 00:55:37 -080025
Tejas Patel59c608a2019-01-09 04:10:29 -080026/* pm_up = true - UP, pm_up = false - DOWN */
27static bool pm_up;
Venkatesh Yadav Abbarapubde87592022-05-24 11:11:12 +053028static uint32_t sgi = (uint32_t)INVALID_SGI;
Tejas Patel59c608a2019-01-09 04:10:29 -080029
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +053030static uint64_t ipi_fiq_handler(uint32_t id, uint32_t flags, void *handle,
31 void *cookie)
32{
Venkatesh Yadav Abbarapubde87592022-05-24 11:11:12 +053033 uint32_t cpu;
34 uint32_t reg;
Venkatesh Yadav Abbarapuaa4898a2021-03-31 03:07:40 -060035
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +053036 (void)plat_ic_acknowledge_interrupt();
Abhyuday Godhasaraedc38ae2021-08-04 23:58:46 -070037 cpu = plat_my_core_pos() + 1U;
Venkatesh Yadav Abbarapuaa4898a2021-03-31 03:07:40 -060038
Venkatesh Yadav Abbarapubde87592022-05-24 11:11:12 +053039 if ((uint32_t)sgi != (uint32_t)INVALID_SGI) {
40 reg = (cpu | ((uint32_t)sgi << (uint32_t)XSCUGIC_SGIR_EL1_INITID_SHIFT));
Venkatesh Yadav Abbarapuaa4898a2021-03-31 03:07:40 -060041 write_icc_asgi1r_el1(reg);
42 }
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +053043
44 /* Clear FIQ */
45 plat_ic_end_of_interrupt(id);
46
Venkatesh Yadav Abbarapuaa4898a2021-03-31 03:07:40 -060047 return 0;
48}
49
50/**
51 * pm_register_sgi() - PM register the IPI interrupt
52 *
53 * @sgi - SGI number to be used for communication.
Venkatesh Yadav Abbarapuc8bbedc2021-04-19 07:49:57 -060054 * @reset - Reset to invalid SGI when reset=1.
Venkatesh Yadav Abbarapuaa4898a2021-03-31 03:07:40 -060055 * @return On success, the initialization function must return 0.
56 * Any other return value will cause the framework to ignore
57 * the service
58 *
59 * Update the SGI number to be used.
60 *
61 */
Venkatesh Yadav Abbarapubde87592022-05-24 11:11:12 +053062int pm_register_sgi(uint32_t sgi_num, uint32_t reset)
Venkatesh Yadav Abbarapuaa4898a2021-03-31 03:07:40 -060063{
Venkatesh Yadav Abbarapuc8bbedc2021-04-19 07:49:57 -060064 if (reset == 1U) {
65 sgi = INVALID_SGI;
66 return 0;
67 }
68
69 if (sgi != INVALID_SGI) {
Venkatesh Yadav Abbarapuaa4898a2021-03-31 03:07:40 -060070 return -EBUSY;
71 }
72
73 if (sgi_num >= GICV3_MAX_SGI_TARGETS) {
74 return -EINVAL;
75 }
76
Venkatesh Yadav Abbarapubde87592022-05-24 11:11:12 +053077 sgi = (uint32_t)sgi_num;
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +053078 return 0;
79}
80
Tejas Patel354fe572018-12-14 00:55:37 -080081/**
82 * pm_setup() - PM service setup
83 *
84 * @return On success, the initialization function must return 0.
85 * Any other return value will cause the framework to ignore
86 * the service
87 *
88 * Initialization functions for Versal power management for
89 * communicaton with PMC.
90 *
91 * Called from sip_svc_setup initialization function with the
92 * rt_svc_init signature.
93 */
94int pm_setup(void)
95{
Venkatesh Yadav Abbarapubde87592022-05-24 11:11:12 +053096 int32_t status, ret = 0;
Tejas Patel354fe572018-12-14 00:55:37 -080097
98 status = pm_ipi_init(primary_proc);
99
100 if (status < 0) {
101 INFO("BL31: PM Service Init Failed, Error Code %d!\n", status);
102 ret = status;
Tejas Patel59c608a2019-01-09 04:10:29 -0800103 } else {
104 pm_up = true;
Tejas Patel354fe572018-12-14 00:55:37 -0800105 }
106
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530107 /*
108 * Enable IPI IRQ
109 * assume the rich OS is OK to handle callback IRQs now.
110 * Even if we were wrong, it would not enable the IRQ in
111 * the GIC.
112 */
113 pm_ipi_irq_enable(primary_proc);
114
115 ret = request_intr_type_el3(PLAT_VERSAL_IPI_IRQ, ipi_fiq_handler);
Abhyuday Godhasara44877942021-08-05 02:59:26 -0700116 if (ret != 0) {
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530117 WARN("BL31: registering IPI interrupt failed\n");
118 }
Tejas Patel354fe572018-12-14 00:55:37 -0800119 return ret;
120}
Tejas Patel59c608a2019-01-09 04:10:29 -0800121
122/**
Tanmay Shahff34daa2021-08-09 11:00:41 -0700123 * eemi_for_compatibility() - EEMI calls handler for deprecated calls
Tejas Patel59c608a2019-01-09 04:10:29 -0800124 *
Tanmay Shahff34daa2021-08-09 11:00:41 -0700125 * @return - If EEMI API found then, uintptr_t type address, else 0
Tejas Patel59c608a2019-01-09 04:10:29 -0800126 *
Tanmay Shahff34daa2021-08-09 11:00:41 -0700127 * Some EEMI API's use case needs to be changed in Linux driver, so they
128 * can take advantage of common EEMI handler in TF-A. As of now the old
129 * implementation of these APIs are required to maintain backward compatibility
130 * until their use case in linux driver changes.
Tejas Patel59c608a2019-01-09 04:10:29 -0800131 */
Tanmay Shahff34daa2021-08-09 11:00:41 -0700132static uintptr_t eemi_for_compatibility(uint32_t api_id, uint32_t *pm_arg,
133 void *handle, uint32_t security_flag)
Tejas Patel59c608a2019-01-09 04:10:29 -0800134{
135 enum pm_ret_status ret;
136
Tanmay Shahff34daa2021-08-09 11:00:41 -0700137 switch (api_id) {
Tejas Patel59c608a2019-01-09 04:10:29 -0800138
Tejas Patel9141f442019-01-10 03:03:48 -0800139 case PM_IOCTL:
140 {
141 uint32_t value;
142
143 ret = pm_api_ioctl(pm_arg[0], pm_arg[1], pm_arg[2],
Venkatesh Yadav Abbarapu4b233392021-10-20 22:11:53 -0600144 pm_arg[3], pm_arg[4],
145 &value, security_flag);
Tanmay Shahff34daa2021-08-09 11:00:41 -0700146 if (ret == PM_RET_ERROR_NOTSUPPORTED)
147 return (uintptr_t)0;
148
149 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32);
Tejas Patel9141f442019-01-10 03:03:48 -0800150 }
151
Tejas Patela3e34ad2019-02-01 17:25:19 +0530152 case PM_QUERY_DATA:
153 {
Tanmay Shahff34daa2021-08-09 11:00:41 -0700154 uint32_t data[PAYLOAD_ARG_CNT] = { 0 };
Tejas Patela3e34ad2019-02-01 17:25:19 +0530155
156 ret = pm_query_data(pm_arg[0], pm_arg[1], pm_arg[2],
Tejas Patel18072da2021-02-25 20:16:56 -0800157 pm_arg[3], data, security_flag);
Rajan Vaja030620d2020-11-23 04:13:54 -0800158
Tanmay Shahff34daa2021-08-09 11:00:41 -0700159 SMC_RET2(handle, (uint64_t)ret | ((uint64_t)data[0] << 32),
160 (uint64_t)data[1] | ((uint64_t)data[2] << 32));
Rajan Vaja030620d2020-11-23 04:13:54 -0800161 }
Tejas Patel59c608a2019-01-09 04:10:29 -0800162
Tanmay Shahff34daa2021-08-09 11:00:41 -0700163 case PM_FEATURE_CHECK:
Tejas Patel59c608a2019-01-09 04:10:29 -0800164 {
Ronak Jain70d1c582022-02-04 00:42:55 -0800165 uint32_t result[PAYLOAD_ARG_CNT] = {0U};
Tejas Patel59c608a2019-01-09 04:10:29 -0800166
Ronak Jain70d1c582022-02-04 00:42:55 -0800167 ret = pm_feature_check(pm_arg[0], result, security_flag);
168 SMC_RET2(handle, (uint64_t)ret | ((uint64_t)result[0] << 32),
169 (uint64_t)result[1] | ((uint64_t)result[2] << 32));
Tejas Patel59c608a2019-01-09 04:10:29 -0800170 }
171
Tanmay Shahff34daa2021-08-09 11:00:41 -0700172 case PM_LOAD_PDI:
Tejas Patel59c608a2019-01-09 04:10:29 -0800173 {
Tanmay Shahff34daa2021-08-09 11:00:41 -0700174 ret = pm_load_pdi(pm_arg[0], pm_arg[1], pm_arg[2],
175 security_flag);
176 SMC_RET1(handle, (uint64_t)ret);
177 }
Tejas Patel59c608a2019-01-09 04:10:29 -0800178
Tanmay Shahff34daa2021-08-09 11:00:41 -0700179 default:
180 return (uintptr_t)0;
Tejas Patel59c608a2019-01-09 04:10:29 -0800181 }
Tanmay Shahff34daa2021-08-09 11:00:41 -0700182}
Tejas Patel59c608a2019-01-09 04:10:29 -0800183
Tanmay Shahff34daa2021-08-09 11:00:41 -0700184/**
185 * eemi_psci_debugfs_handler() - EEMI API invoked from PSCI
186 *
187 * These EEMI APIs performs CPU specific power management tasks.
188 * These EEMI APIs are invoked either from PSCI or from debugfs in kernel.
189 * These calls require CPU specific processing before sending IPI request to
190 * Platform Management Controller. For example enable/disable CPU specific
191 * interrupts. This requires separate handler for these calls and may not be
192 * handled using common eemi handler
193 */
194static uintptr_t eemi_psci_debugfs_handler(uint32_t api_id, uint32_t *pm_arg,
195 void *handle, uint32_t security_flag)
196{
197 enum pm_ret_status ret;
Tejas Patel59c608a2019-01-09 04:10:29 -0800198
Tanmay Shahff34daa2021-08-09 11:00:41 -0700199 switch (api_id) {
Tejas Patel59c608a2019-01-09 04:10:29 -0800200
Tanmay Shahff34daa2021-08-09 11:00:41 -0700201 case PM_SELF_SUSPEND:
202 ret = pm_self_suspend(pm_arg[0], pm_arg[1], pm_arg[2],
203 pm_arg[3], security_flag);
204 SMC_RET1(handle, (uint64_t)ret);
Tejas Patel59c608a2019-01-09 04:10:29 -0800205
Tanmay Shahff34daa2021-08-09 11:00:41 -0700206 case PM_FORCE_POWERDOWN:
207 ret = pm_force_powerdown(pm_arg[0], pm_arg[1], security_flag);
208 SMC_RET1(handle, (uint64_t)ret);
Tejas Patel84275bf2020-09-01 04:43:53 -0700209
Tanmay Shahff34daa2021-08-09 11:00:41 -0700210 case PM_REQ_SUSPEND:
211 ret = pm_req_suspend(pm_arg[0], pm_arg[1], pm_arg[2],
212 pm_arg[3], security_flag);
213 SMC_RET1(handle, (uint64_t)ret);
Tejas Patel84275bf2020-09-01 04:43:53 -0700214
Tanmay Shahff34daa2021-08-09 11:00:41 -0700215 case PM_ABORT_SUSPEND:
216 ret = pm_abort_suspend(pm_arg[0], security_flag);
Tejas Patel59c608a2019-01-09 04:10:29 -0800217 SMC_RET1(handle, (uint64_t)ret);
218
Tanmay Shahff34daa2021-08-09 11:00:41 -0700219 case PM_SYSTEM_SHUTDOWN:
220 ret = pm_system_shutdown(pm_arg[0], pm_arg[1], security_flag);
221 SMC_RET1(handle, (uint64_t)ret);
Tejas Patel59c608a2019-01-09 04:10:29 -0800222
Tanmay Shahff34daa2021-08-09 11:00:41 -0700223 default:
224 return (uintptr_t)0;
Tejas Patel59c608a2019-01-09 04:10:29 -0800225 }
Tanmay Shahff34daa2021-08-09 11:00:41 -0700226}
Tejas Patel59c608a2019-01-09 04:10:29 -0800227
Tanmay Shahff34daa2021-08-09 11:00:41 -0700228/**
229 * TF_A_specific_handler() - SMC handler for TF-A specific functionality
230 *
231 * These EEMI calls performs functionality that does not require
232 * IPI transaction. The handler ends in TF-A and returns requested data to
233 * kernel from TF-A
234 */
235static uintptr_t TF_A_specific_handler(uint32_t api_id, uint32_t *pm_arg,
236 void *handle, uint32_t security_flag)
237{
238 switch (api_id) {
Tejas Patel59c608a2019-01-09 04:10:29 -0800239
Tanmay Shah0dde16c2021-12-14 04:53:40 -0800240 case TF_A_PM_REGISTER_SGI:
241 {
Venkatesh Yadav Abbarapubde87592022-05-24 11:11:12 +0530242 int32_t ret;
Tanmay Shah0dde16c2021-12-14 04:53:40 -0800243
244 ret = pm_register_sgi(pm_arg[0], pm_arg[1]);
245 if (ret != 0) {
246 SMC_RET1(handle, (uint32_t)PM_RET_ERROR_ARGS);
247 }
248
249 SMC_RET1(handle, (uint32_t)PM_RET_SUCCESS);
250 }
251
Tanmay Shahff34daa2021-08-09 11:00:41 -0700252 case PM_GET_CALLBACK_DATA:
Tejas Patel59c608a2019-01-09 04:10:29 -0800253 {
Tanmay Shahff34daa2021-08-09 11:00:41 -0700254 uint32_t result[4] = {0};
Tejas Patel59c608a2019-01-09 04:10:29 -0800255
Tanmay Shahff34daa2021-08-09 11:00:41 -0700256 pm_get_callbackdata(result, ARRAY_SIZE(result), security_flag);
257 SMC_RET2(handle,
258 (uint64_t)result[0] | ((uint64_t)result[1] << 32),
259 (uint64_t)result[2] | ((uint64_t)result[3] << 32));
Tejas Patel59c608a2019-01-09 04:10:29 -0800260 }
261
Tejas Patel044001d2019-01-21 17:56:48 +0530262 case PM_GET_TRUSTZONE_VERSION:
263 SMC_RET1(handle, (uint64_t)PM_RET_SUCCESS |
264 ((uint64_t)VERSAL_TZ_VERSION << 32));
265
Tanmay Shahff34daa2021-08-09 11:00:41 -0700266 default:
267 return (uintptr_t)0;
Ravi Patelbd4aa5a2019-08-12 03:17:54 -0700268 }
Tanmay Shahff34daa2021-08-09 11:00:41 -0700269}
Ravi Patelbd4aa5a2019-08-12 03:17:54 -0700270
Tanmay Shahff34daa2021-08-09 11:00:41 -0700271/**
272 * eemi_handler() - Prepare EEMI payload and perform IPI transaction
273 *
274 * EEMI - Embedded Energy Management Interface is Xilinx proprietary protocol
275 * to allow communication between power management controller and different
276 * processing clusters.
277 *
278 * This handler prepares EEMI protocol payload received from kernel and performs
279 * IPI transaction.
280 */
281static uintptr_t eemi_handler(uint32_t api_id, uint32_t *pm_arg,
282 void *handle, uint32_t security_flag)
283{
284 enum pm_ret_status ret;
285 uint32_t buf[PAYLOAD_ARG_CNT] = {0};
Ravi Patel22b0b492019-03-06 12:34:46 +0530286
Tanmay Shahff34daa2021-08-09 11:00:41 -0700287 ret = pm_handle_eemi_call(security_flag, api_id, pm_arg[0], pm_arg[1],
288 pm_arg[2], pm_arg[3], pm_arg[4],
289 (uint64_t *)buf);
290 /*
291 * Two IOCTLs, to get clock name and pinctrl name of pm_query_data API
292 * receives 5 words of respoonse from firmware. Currently linux driver can
293 * receive only 4 words from TF-A. So, this needs to be handled separately
294 * than other eemi calls.
295 */
296 if (api_id == PM_QUERY_DATA) {
297 if ((pm_arg[0] == XPM_QID_CLOCK_GET_NAME ||
298 pm_arg[0] == XPM_QID_PINCTRL_GET_FUNCTION_NAME) &&
299 ret == PM_RET_SUCCESS) {
300 SMC_RET2(handle, (uint64_t)buf[0] | ((uint64_t)buf[1] << 32),
301 (uint64_t)buf[2] | ((uint64_t)buf[3] << 32));
302 }
Ravi Patel22b0b492019-03-06 12:34:46 +0530303 }
304
Tanmay Shahff34daa2021-08-09 11:00:41 -0700305 SMC_RET2(handle, (uint64_t)ret | ((uint64_t)buf[0] << 32),
306 (uint64_t)buf[1] | ((uint64_t)buf[2] << 32));
307}
Jolly Shahed05a712019-03-22 05:33:39 +0530308
Tanmay Shahff34daa2021-08-09 11:00:41 -0700309/**
310 * pm_smc_handler() - SMC handler for PM-API calls coming from EL1/EL2.
311 * @smc_fid - Function Identifier
312 * @x1 - x4 - SMC64 Arguments from kernel
Venkatesh Yadav Abbarapu4b233392021-10-20 22:11:53 -0600313 * x3 (upper 32-bits) and x4 are Unused
Tanmay Shahff34daa2021-08-09 11:00:41 -0700314 * @cookie - Unused
315 * @handler - Pointer to caller's context structure
316 *
317 * @return - Unused
318 *
319 * Determines that smc_fid is valid and supported PM SMC Function ID from the
320 * list of pm_api_ids, otherwise completes the request with
321 * the unknown SMC Function ID
322 *
323 * The SMC calls for PM service are forwarded from SIP Service SMC handler
324 * function with rt_svc_handle signature
325 */
326uint64_t pm_smc_handler(uint32_t smc_fid, uint64_t x1, uint64_t x2, uint64_t x3,
Venkatesh Yadav Abbarapud3c0eb42022-05-24 14:02:52 +0530327 uint64_t x4, const void *cookie, void *handle, uint64_t flags)
Tanmay Shahff34daa2021-08-09 11:00:41 -0700328{
329 uintptr_t ret;
330 uint32_t pm_arg[PAYLOAD_ARG_CNT] = {0};
331 uint32_t security_flag = SECURE_FLAG;
332 uint32_t api_id;
Saeed Nowshadi2294b422019-06-03 10:22:35 -0700333
Tanmay Shahff34daa2021-08-09 11:00:41 -0700334 /* Handle case where PM wasn't initialized properly */
Venkatesh Yadav Abbarapuab167132022-05-25 15:18:24 +0530335 if (!pm_up) {
Tanmay Shahff34daa2021-08-09 11:00:41 -0700336 SMC_RET1(handle, SMC_UNK);
Venkatesh Yadav Abbarapuab167132022-05-25 15:18:24 +0530337 }
Saeed Nowshadi2294b422019-06-03 10:22:35 -0700338
Tanmay Shahff34daa2021-08-09 11:00:41 -0700339 /*
340 * Mark BIT24 payload (i.e 1st bit of pm_arg[3] ) as non-secure (1)
341 * if smc called is non secure
342 */
343 if (is_caller_non_secure(flags)) {
344 security_flag = NON_SECURE_FLAG;
Tejas Patel5c154e12020-11-25 01:53:12 -0800345 }
346
Tanmay Shahff34daa2021-08-09 11:00:41 -0700347 pm_arg[0] = (uint32_t)x1;
348 pm_arg[1] = (uint32_t)(x1 >> 32);
349 pm_arg[2] = (uint32_t)x2;
350 pm_arg[3] = (uint32_t)(x2 >> 32);
Venkatesh Yadav Abbarapu4b233392021-10-20 22:11:53 -0600351 pm_arg[4] = (uint32_t)x3;
Tanmay Shahff34daa2021-08-09 11:00:41 -0700352 (void)(x4);
353 api_id = smc_fid & FUNCID_NUM_MASK;
Tejas Patel42015552020-11-25 01:56:57 -0800354
Tanmay Shahff34daa2021-08-09 11:00:41 -0700355 ret = eemi_for_compatibility(api_id, pm_arg, handle, security_flag);
Venkatesh Yadav Abbarapuab167132022-05-25 15:18:24 +0530356 if (ret != (uintptr_t)0) {
Tanmay Shahff34daa2021-08-09 11:00:41 -0700357 return ret;
Venkatesh Yadav Abbarapuab167132022-05-25 15:18:24 +0530358 }
Tanmay Shahff34daa2021-08-09 11:00:41 -0700359
360 ret = eemi_psci_debugfs_handler(api_id, pm_arg, handle, flags);
Venkatesh Yadav Abbarapuab167132022-05-25 15:18:24 +0530361 if (ret != (uintptr_t)0) {
Tanmay Shahff34daa2021-08-09 11:00:41 -0700362 return ret;
Venkatesh Yadav Abbarapuab167132022-05-25 15:18:24 +0530363 }
Tanmay Shahff34daa2021-08-09 11:00:41 -0700364
365 ret = TF_A_specific_handler(api_id, pm_arg, handle, security_flag);
Venkatesh Yadav Abbarapuab167132022-05-25 15:18:24 +0530366 if (ret != (uintptr_t)0) {
Tanmay Shahff34daa2021-08-09 11:00:41 -0700367 return ret;
Venkatesh Yadav Abbarapuab167132022-05-25 15:18:24 +0530368 }
Tanmay Shahff34daa2021-08-09 11:00:41 -0700369
370 ret = eemi_handler(api_id, pm_arg, handle, security_flag);
371
372 return ret;
Tejas Patel59c608a2019-01-09 04:10:29 -0800373}