blob: b45ce6c76051b0048eccc07ed7b7c563c632d55e [file] [log] [blame]
Soren Brinkmann76fcae32016-03-06 20:16:27 -08001/*
Ronak Jain325bad12021-12-21 01:39:59 -08002 * Copyright (c) 2013-2022, ARM Limited and Contributors. All rights reserved.
Soren Brinkmann76fcae32016-03-06 20:16:27 -08003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Soren Brinkmann76fcae32016-03-06 20:16:27 -08005 */
6
7/*
8 * Top-level SMC handler for ZynqMP power management calls and
9 * IPI setup functions for communication with PMU.
10 */
11
12#include <errno.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000013
14#include <common/runtime_svc.h>
15#if ZYNQMP_WDT_RESTART
16#include <arch_helpers.h>
17#include <drivers/arm/gicv2.h>
18#include <lib/mmio.h>
19#include <lib/spinlock.h>
20#include <plat/common/platform.h>
21#endif
22
Jolly Shah0bfd7002019-01-08 11:10:47 -080023#include <plat_private.h>
Soren Brinkmann76fcae32016-03-06 20:16:27 -080024#include "pm_api_sys.h"
25#include "pm_client.h"
Ronak Jain325bad12021-12-21 01:39:59 -080026#include "pm_defs.h"
Soren Brinkmann76fcae32016-03-06 20:16:27 -080027#include "pm_ipi.h"
Soren Brinkmann76fcae32016-03-06 20:16:27 -080028
Rajan Vaja720fd9d2018-10-05 04:42:57 -070029/* pm_up = !0 - UP, pm_up = 0 - DOWN */
30static int32_t pm_up, ipi_irq_flag;
Soren Brinkmann76fcae32016-03-06 20:16:27 -080031
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +053032#if ZYNQMP_WDT_RESTART
33static spinlock_t inc_lock;
34static int active_cores = 0;
35#endif
36
Soren Brinkmann76fcae32016-03-06 20:16:27 -080037/**
38 * pm_context - Structure which contains data for power management
39 * @api_version version of PM API, must match with one on PMU side
40 * @payload payload array used to store received
41 * data from ipi buffer registers
42 */
43static struct {
44 uint32_t api_version;
45 uint32_t payload[PAYLOAD_ARG_CNT];
46} pm_ctx;
47
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +053048#if ZYNQMP_WDT_RESTART
49/**
50 * trigger_wdt_restart() - Trigger warm restart event to APU cores
51 *
52 * This function triggers SGI for all active APU CPUs. SGI handler then
53 * power down CPU and call system reset.
54 */
55static void trigger_wdt_restart(void)
56{
57 uint32_t core_count = 0;
58 uint32_t core_status[3];
59 uint32_t target_cpu_list = 0;
60 int i;
61
62 for (i = 0; i < 4; i++) {
63 pm_get_node_status(NODE_APU_0 + i, core_status);
64 if (core_status[0] == 1) {
65 core_count++;
66 target_cpu_list |= (1 << i);
67 }
68 }
69
70 spin_lock(&inc_lock);
71 active_cores = core_count;
72 spin_unlock(&inc_lock);
73
74 INFO("Active Cores: %d\n", active_cores);
75
Siva Durga Prasad Paladugu60bfbc92018-09-24 22:51:49 -070076 for (i = PLATFORM_CORE_COUNT - 1; i >= 0; i--) {
77 if (target_cpu_list & (1 << i)) {
78 /* trigger SGI to active cores */
79 plat_ic_raise_el3_sgi(ARM_IRQ_SEC_SGI_7, i);
80 }
81 }
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +053082}
83
84/**
85 * ttc_fiq_handler() - TTC Handler for timer event
86 * @id number of the highest priority pending interrupt of the type
87 * that this handler was registered for
88 * @flags security state, bit[0]
89 * @handler pointer to 'cpu_context' structure of the current CPU for the
90 * security state specified in the 'flags' parameter
91 * @cookie unused
92 *
93 * Function registered as INTR_TYPE_EL3 interrupt handler
94 *
95 * When WDT event is received in PMU, PMU needs to notify master to do cleanup
96 * if required. PMU sets up timer and starts timer to overflow in zero time upon
97 * WDT event. ATF handles this timer event and takes necessary action required
98 * for warm restart.
99 *
100 * In presence of non-secure software layers (EL1/2) sets the interrupt
101 * at registered entrance in GIC and informs that PMU responsed or demands
102 * action.
103 */
104static uint64_t ttc_fiq_handler(uint32_t id, uint32_t flags, void *handle,
Michal Simek08341b72022-03-09 08:53:20 +0100105 void *cookie)
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530106{
107 INFO("BL31: Got TTC FIQ\n");
108
Siva Durga Prasad Paladugu60bfbc92018-09-24 22:51:49 -0700109 plat_ic_end_of_interrupt(id);
110
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530111 /* Clear TTC interrupt by reading interrupt register */
112 mmio_read_32(TTC3_INTR_REGISTER_1);
113
114 /* Disable the timer interrupts */
115 mmio_write_32(TTC3_INTR_ENABLE_1, 0);
116
117 trigger_wdt_restart();
118
119 return 0;
120}
121
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800122/**
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530123 * zynqmp_sgi7_irq() - Handler for SGI7 IRQ
124 * @id number of the highest priority pending interrupt of the type
125 * that this handler was registered for
126 * @flags security state, bit[0]
127 * @handler pointer to 'cpu_context' structure of the current CPU for the
128 * security state specified in the 'flags' parameter
129 * @cookie unused
130 *
131 * Function registered as INTR_TYPE_EL3 interrupt handler
132 *
133 * On receiving WDT event from PMU, ATF generates SGI7 to all running CPUs.
134 * In response to SGI7 interrupt, each CPUs do clean up if required and last
135 * running CPU calls system restart.
136 */
137static uint64_t __unused __dead2 zynqmp_sgi7_irq(uint32_t id, uint32_t flags,
Michal Simek08341b72022-03-09 08:53:20 +0100138 void *handle, void *cookie)
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530139{
140 int i;
Will Wongcc127952020-11-22 23:45:21 -0800141 uint32_t value;
142
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530143 /* enter wfi and stay there */
144 INFO("Entering wfi\n");
145
146 spin_lock(&inc_lock);
147 active_cores--;
148
149 for (i = 0; i < 4; i++) {
150 mmio_write_32(BASE_GICD_BASE + GICD_CPENDSGIR + 4 * i,
151 0xffffffff);
152 }
153
Tanmay Shah50702ba2022-09-13 11:10:08 -0700154 dsb();
155
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530156 spin_unlock(&inc_lock);
157
158 if (active_cores == 0) {
Will Wongcc127952020-11-22 23:45:21 -0800159 pm_mmio_read(PMU_GLOBAL_GEN_STORAGE4, &value);
160 value = (value & RESTART_SCOPE_MASK) >> RESTART_SCOPE_SHIFT;
161 pm_system_shutdown(PMF_SHUTDOWN_TYPE_RESET, value);
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530162 }
163
164 /* enter wfi and stay there */
165 while (1)
166 wfi();
167}
168
169/**
170 * pm_wdt_restart_setup() - Setup warm restart interrupts
171 *
172 * This function sets up handler for SGI7 and TTC interrupts
173 * used for warm restart.
174 */
175static int pm_wdt_restart_setup(void)
176{
177 int ret;
178
179 /* register IRQ handler for SGI7 */
180 ret = request_intr_type_el3(ARM_IRQ_SEC_SGI_7, zynqmp_sgi7_irq);
181 if (ret) {
182 WARN("BL31: registering SGI7 interrupt failed\n");
183 goto err;
184 }
185
186 ret = request_intr_type_el3(IRQ_TTC3_1, ttc_fiq_handler);
187 if (ret)
188 WARN("BL31: registering TTC3 interrupt failed\n");
189
190err:
191 return ret;
192}
193#endif
194
195/**
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800196 * pm_setup() - PM service setup
197 *
198 * @return On success, the initialization function must return 0.
199 * Any other return value will cause the framework to ignore
200 * the service
201 *
202 * Initialization functions for ZynqMP power management for
203 * communicaton with PMU.
204 *
205 * Called from sip_svc_setup initialization function with the
206 * rt_svc_init signature.
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800207 */
Venkatesh Yadav Abbarapue7c45382022-05-19 14:49:49 +0530208int32_t pm_setup(void)
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800209{
Naman Patel0feb5ea2022-11-22 05:01:37 -0800210 enum pm_ret_status err;
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800211
HariBabu Gattemaa811712022-10-07 00:07:49 -0700212 pm_ipi_init(primary_proc);
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800213
Naman Patel0feb5ea2022-11-22 05:01:37 -0800214 err = pm_get_api_version(&pm_ctx.api_version);
215 if (err != PM_RET_SUCCESS) {
216 ERROR("BL31: Failed to read Platform Management API version. "
217 "Return: %d\n", err);
218 return -EINVAL;
219 }
Rajan Vaja720fd9d2018-10-05 04:42:57 -0700220 if (pm_ctx.api_version < PM_VERSION) {
221 ERROR("BL31: Platform Management API version error. Expected: "
222 "v%d.%d - Found: v%d.%d\n", PM_VERSION_MAJOR,
223 PM_VERSION_MINOR, pm_ctx.api_version >> 16,
Venkatesh Yadav Abbarapua2ca35d2022-07-04 11:40:27 +0530224 pm_ctx.api_version & 0xFFFFU);
Rajan Vaja720fd9d2018-10-05 04:42:57 -0700225 return -EINVAL;
226 }
227
HariBabu Gattemaa811712022-10-07 00:07:49 -0700228 int32_t status = 0, ret = 0;
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530229#if ZYNQMP_WDT_RESTART
230 status = pm_wdt_restart_setup();
231 if (status)
232 WARN("BL31: warm-restart setup failed\n");
233#endif
234
Wendy Liang328105c2017-10-03 23:21:11 -0700235 if (status >= 0) {
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800236 INFO("BL31: PM Service Init Complete: API v%d.%d\n",
237 PM_VERSION_MAJOR, PM_VERSION_MINOR);
Wendy Liang328105c2017-10-03 23:21:11 -0700238 ret = 0;
239 } else {
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800240 INFO("BL31: PM Service Init Failed, Error Code %d!\n", status);
Wendy Liang328105c2017-10-03 23:21:11 -0700241 ret = status;
242 }
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800243
Siva Durga Prasad Paladugu79f75952018-04-30 19:39:49 +0530244 pm_up = !status;
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800245
Wendy Liang328105c2017-10-03 23:21:11 -0700246 return ret;
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800247}
248
249/**
250 * pm_smc_handler() - SMC handler for PM-API calls coming from EL1/EL2.
251 * @smc_fid - Function Identifier
252 * @x1 - x4 - Arguments
253 * @cookie - Unused
254 * @handler - Pointer to caller's context structure
255 *
256 * @return - Unused
257 *
258 * Determines that smc_fid is valid and supported PM SMC Function ID from the
259 * list of pm_api_ids, otherwise completes the request with
260 * the unknown SMC Function ID
261 *
262 * The SMC calls for PM service are forwarded from SIP Service SMC handler
263 * function with rt_svc_handle signature
264 */
265uint64_t pm_smc_handler(uint32_t smc_fid, uint64_t x1, uint64_t x2, uint64_t x3,
Venkatesh Yadav Abbarapu0386e652022-05-24 14:05:57 +0530266 uint64_t x4, const void *cookie, void *handle, uint64_t flags)
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800267{
268 enum pm_ret_status ret;
Ronak Jain52de5942022-01-20 23:11:18 -0800269 uint32_t payload[PAYLOAD_ARG_CNT];
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800270
Ronak Jainf8414672022-05-11 02:48:52 -0700271 uint32_t pm_arg[5];
HariBabu Gattemaa811712022-10-07 00:07:49 -0700272 uint32_t result[PAYLOAD_ARG_CNT] = {0};
Ronak Jain52de5942022-01-20 23:11:18 -0800273 uint32_t api_id;
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800274
275 /* Handle case where PM wasn't initialized properly */
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700276 if (pm_up == 0)
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800277 SMC_RET1(handle, SMC_UNK);
278
279 pm_arg[0] = (uint32_t)x1;
280 pm_arg[1] = (uint32_t)(x1 >> 32);
281 pm_arg[2] = (uint32_t)x2;
282 pm_arg[3] = (uint32_t)(x2 >> 32);
Ronak Jain52de5942022-01-20 23:11:18 -0800283 pm_arg[4] = (uint32_t)x3;
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800284
Ronak Jain52de5942022-01-20 23:11:18 -0800285 api_id = smc_fid & FUNCID_NUM_MASK;
286
287 switch (api_id) {
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800288 /* PM API Functions */
289 case PM_SELF_SUSPEND:
290 ret = pm_self_suspend(pm_arg[0], pm_arg[1], pm_arg[2],
291 pm_arg[3]);
292 SMC_RET1(handle, (uint64_t)ret);
293
294 case PM_REQ_SUSPEND:
295 ret = pm_req_suspend(pm_arg[0], pm_arg[1], pm_arg[2],
296 pm_arg[3]);
297 SMC_RET1(handle, (uint64_t)ret);
298
299 case PM_REQ_WAKEUP:
Filip Drazic78ba1452017-02-07 12:03:57 +0100300 {
301 /* Use address flag is encoded in the 1st bit of the low-word */
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700302 uint32_t set_addr = pm_arg[1] & 0x1U;
303 uint64_t address = (uint64_t)pm_arg[2] << 32U;
Filip Drazic78ba1452017-02-07 12:03:57 +0100304
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700305 address |= pm_arg[1] & (~0x1U);
Filip Drazic78ba1452017-02-07 12:03:57 +0100306 ret = pm_req_wakeup(pm_arg[0], set_addr, address,
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800307 pm_arg[3]);
308 SMC_RET1(handle, (uint64_t)ret);
Filip Drazic78ba1452017-02-07 12:03:57 +0100309 }
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800310
311 case PM_FORCE_POWERDOWN:
312 ret = pm_force_powerdown(pm_arg[0], pm_arg[1]);
313 SMC_RET1(handle, (uint64_t)ret);
314
315 case PM_ABORT_SUSPEND:
316 ret = pm_abort_suspend(pm_arg[0]);
317 SMC_RET1(handle, (uint64_t)ret);
318
319 case PM_SET_WAKEUP_SOURCE:
320 ret = pm_set_wakeup_source(pm_arg[0], pm_arg[1], pm_arg[2]);
321 SMC_RET1(handle, (uint64_t)ret);
322
323 case PM_SYSTEM_SHUTDOWN:
Soren Brinkmann58fbb9b2016-09-02 09:50:54 -0700324 ret = pm_system_shutdown(pm_arg[0], pm_arg[1]);
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800325 SMC_RET1(handle, (uint64_t)ret);
326
327 case PM_REQ_NODE:
328 ret = pm_req_node(pm_arg[0], pm_arg[1], pm_arg[2], pm_arg[3]);
329 SMC_RET1(handle, (uint64_t)ret);
330
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800331 case PM_SET_REQUIREMENT:
332 ret = pm_set_requirement(pm_arg[0], pm_arg[1], pm_arg[2],
333 pm_arg[3]);
334 SMC_RET1(handle, (uint64_t)ret);
335
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800336 case PM_GET_API_VERSION:
337 /* Check is PM API version already verified */
Rajan Vaja720fd9d2018-10-05 04:42:57 -0700338 if (pm_ctx.api_version >= PM_VERSION) {
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700339 if (ipi_irq_flag == 0U) {
Rajan Vaja720fd9d2018-10-05 04:42:57 -0700340 /*
341 * Enable IPI IRQ
342 * assume the rich OS is OK to handle callback IRQs now.
343 * Even if we were wrong, it would not enable the IRQ in
344 * the GIC.
345 */
346 pm_ipi_irq_enable(primary_proc);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700347 ipi_irq_flag = 1U;
Rajan Vaja720fd9d2018-10-05 04:42:57 -0700348 }
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800349 SMC_RET1(handle, (uint64_t)PM_RET_SUCCESS |
Rajan Vaja720fd9d2018-10-05 04:42:57 -0700350 ((uint64_t)pm_ctx.api_version << 32));
Soren Brinkmanna1b0a902016-09-30 11:30:21 -0700351 }
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800352
Nava kishore Manne68d460c2016-08-20 23:18:09 +0530353 case PM_FPGA_LOAD:
354 ret = pm_fpga_load(pm_arg[0], pm_arg[1], pm_arg[2], pm_arg[3]);
355 SMC_RET1(handle, (uint64_t)ret);
356
357 case PM_FPGA_GET_STATUS:
358 {
HariBabu Gattemaa811712022-10-07 00:07:49 -0700359 uint32_t value = 0;
Nava kishore Manne68d460c2016-08-20 23:18:09 +0530360
361 ret = pm_fpga_get_status(&value);
362 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32);
363 }
364
Siva Durga Prasad Paladugude93d982018-04-30 15:49:27 +0530365 case PM_SECURE_RSA_AES:
366 ret = pm_secure_rsaaes(pm_arg[0], pm_arg[1], pm_arg[2],
367 pm_arg[3]);
368 SMC_RET1(handle, (uint64_t)ret);
369
Rajan Vaja02d18422019-03-04 11:09:39 +0530370 case PM_GET_CALLBACK_DATA:
Tejas Patelf4c3a252020-01-29 22:06:12 -0800371 pm_get_callbackdata(result, ARRAY_SIZE(result));
Rajan Vaja02d18422019-03-04 11:09:39 +0530372 SMC_RET2(handle,
373 (uint64_t)result[0] | ((uint64_t)result[1] << 32),
374 (uint64_t)result[2] | ((uint64_t)result[3] << 32));
Rajan Vaja5529a012018-01-17 02:39:23 -0800375 case PM_IOCTL:
376 {
HariBabu Gattemaa811712022-10-07 00:07:49 -0700377 uint32_t value = 0;
Rajan Vaja5529a012018-01-17 02:39:23 -0800378
379 ret = pm_ioctl(pm_arg[0], pm_arg[1], pm_arg[2],
380 pm_arg[3], &value);
381 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32);
382 }
383
Rajan Vaja35116132018-01-17 02:39:25 -0800384 case PM_QUERY_DATA:
385 {
Jolly Shah69fb5bf2018-02-07 16:25:41 -0800386 uint32_t data[4] = { 0 };
Rajan Vaja35116132018-01-17 02:39:25 -0800387
Rajan Vajacd825682020-11-23 21:33:39 -0800388 pm_query_data(pm_arg[0], pm_arg[1], pm_arg[2],
389 pm_arg[3], data);
Rajan Vaja35116132018-01-17 02:39:25 -0800390 SMC_RET2(handle, (uint64_t)data[0] | ((uint64_t)data[1] << 32),
391 (uint64_t)data[2] | ((uint64_t)data[3] << 32));
392 }
393
394 case PM_CLOCK_ENABLE:
395 ret = pm_clock_enable(pm_arg[0]);
396 SMC_RET1(handle, (uint64_t)ret);
397
398 case PM_CLOCK_DISABLE:
399 ret = pm_clock_disable(pm_arg[0]);
400 SMC_RET1(handle, (uint64_t)ret);
401
402 case PM_CLOCK_GETSTATE:
403 {
HariBabu Gattemaa811712022-10-07 00:07:49 -0700404 uint32_t value = 0;
Rajan Vaja35116132018-01-17 02:39:25 -0800405
406 ret = pm_clock_getstate(pm_arg[0], &value);
407 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32);
408 }
409
410 case PM_CLOCK_SETDIVIDER:
411 ret = pm_clock_setdivider(pm_arg[0], pm_arg[1]);
412 SMC_RET1(handle, (uint64_t)ret);
413
414 case PM_CLOCK_GETDIVIDER:
415 {
HariBabu Gattemaa811712022-10-07 00:07:49 -0700416 uint32_t value = 0;
Rajan Vaja35116132018-01-17 02:39:25 -0800417
418 ret = pm_clock_getdivider(pm_arg[0], &value);
419 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32);
420 }
421
422 case PM_CLOCK_SETRATE:
423 ret = pm_clock_setrate(pm_arg[0],
424 ((uint64_t)pm_arg[2]) << 32 | pm_arg[1]);
425
426 SMC_RET1(handle, (uint64_t)ret);
427
428 case PM_CLOCK_GETRATE:
429 {
Ronak Jainf8414672022-05-11 02:48:52 -0700430 uint64_t value = 0;
Rajan Vaja35116132018-01-17 02:39:25 -0800431
432 ret = pm_clock_getrate(pm_arg[0], &value);
Jolly Shah69fb5bf2018-02-07 16:25:41 -0800433 SMC_RET2(handle, (uint64_t)ret |
434 (((uint64_t)value & 0xFFFFFFFFU) << 32U),
435 (value >> 32U) & 0xFFFFFFFFU);
Rajan Vaja35116132018-01-17 02:39:25 -0800436
437 }
438
439 case PM_CLOCK_SETPARENT:
440 ret = pm_clock_setparent(pm_arg[0], pm_arg[1]);
441 SMC_RET1(handle, (uint64_t)ret);
442
443 case PM_CLOCK_GETPARENT:
444 {
HariBabu Gattemaa811712022-10-07 00:07:49 -0700445 uint32_t value = 0;
Rajan Vaja35116132018-01-17 02:39:25 -0800446
447 ret = pm_clock_getparent(pm_arg[0], &value);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700448 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32U);
Rajan Vaja35116132018-01-17 02:39:25 -0800449 }
450
Rajan Vajac7ee23d2018-02-14 23:10:54 -0800451 case PM_GET_TRUSTZONE_VERSION:
452 SMC_RET1(handle, (uint64_t)PM_RET_SUCCESS |
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700453 ((uint64_t)ZYNQMP_TZ_VERSION << 32U));
Rajan Vajac7ee23d2018-02-14 23:10:54 -0800454
Siva Durga Prasad Paladugu43b23a32018-04-27 16:26:47 +0530455 case PM_SET_SUSPEND_MODE:
456 ret = pm_set_suspend_mode(pm_arg[0]);
457 SMC_RET1(handle, (uint64_t)ret);
458
Siva Durga Prasad Paladuguf3994cc2018-05-01 11:12:55 +0530459 case PM_SECURE_SHA:
460 ret = pm_sha_hash(pm_arg[0], pm_arg[1], pm_arg[2],
461 pm_arg[3]);
462 SMC_RET1(handle, (uint64_t)ret);
463
464 case PM_SECURE_RSA:
465 ret = pm_rsa_core(pm_arg[0], pm_arg[1], pm_arg[2],
466 pm_arg[3]);
467 SMC_RET1(handle, (uint64_t)ret);
468
Siva Durga Prasad Paladugua4ed4b22018-04-30 20:06:58 +0530469 case PM_SECURE_IMAGE:
470 {
Siva Durga Prasad Paladugua4ed4b22018-04-30 20:06:58 +0530471 ret = pm_secure_image(pm_arg[0], pm_arg[1], pm_arg[2],
472 pm_arg[3], &result[0]);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700473 SMC_RET2(handle, (uint64_t)ret | ((uint64_t)result[0] << 32U),
Siva Durga Prasad Paladugua4ed4b22018-04-30 20:06:58 +0530474 result[1]);
475 }
476
Siva Durga Prasad Paladugu7c6516a2018-09-04 17:41:34 +0530477 case PM_FPGA_READ:
478 {
HariBabu Gattemaa811712022-10-07 00:07:49 -0700479 uint32_t value = 0;
Siva Durga Prasad Paladugu7c6516a2018-09-04 17:41:34 +0530480
481 ret = pm_fpga_read(pm_arg[0], pm_arg[1], pm_arg[2], pm_arg[3],
482 &value);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700483 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32U);
Siva Durga Prasad Paladugu7c6516a2018-09-04 17:41:34 +0530484 }
485
Siva Durga Prasad Paladugu8bd905b2018-09-04 18:05:50 +0530486 case PM_SECURE_AES:
487 {
HariBabu Gattemaa811712022-10-07 00:07:49 -0700488 uint32_t value = 0;
Siva Durga Prasad Paladugu8bd905b2018-09-04 18:05:50 +0530489
490 ret = pm_aes_engine(pm_arg[0], pm_arg[1], &value);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700491 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32U);
Siva Durga Prasad Paladugu8bd905b2018-09-04 18:05:50 +0530492 }
493
Jolly Shaha7cc5ee2019-01-02 12:27:00 -0800494 case PM_PLL_SET_PARAMETER:
495 ret = pm_pll_set_parameter(pm_arg[0], pm_arg[1], pm_arg[2]);
496 SMC_RET1(handle, (uint64_t)ret);
497
Jolly Shahcb2f45d2019-01-04 11:28:38 -0800498 case PM_PLL_GET_PARAMETER:
499 {
HariBabu Gattemaa811712022-10-07 00:07:49 -0700500 uint32_t value = 0;
Jolly Shahcb2f45d2019-01-04 11:28:38 -0800501
502 ret = pm_pll_get_parameter(pm_arg[0], pm_arg[1], &value);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700503 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value << 32U));
Jolly Shahcb2f45d2019-01-04 11:28:38 -0800504 }
505
Jolly Shah1f0d5852019-01-04 11:32:31 -0800506 case PM_PLL_SET_MODE:
507 ret = pm_pll_set_mode(pm_arg[0], pm_arg[1]);
508 SMC_RET1(handle, (uint64_t)ret);
509
Jolly Shah141421e2019-01-04 11:35:48 -0800510 case PM_PLL_GET_MODE:
511 {
HariBabu Gattemaa811712022-10-07 00:07:49 -0700512 uint32_t mode = 0;
Jolly Shah141421e2019-01-04 11:35:48 -0800513
514 ret = pm_pll_get_mode(pm_arg[0], &mode);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700515 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)mode << 32U));
Jolly Shah141421e2019-01-04 11:35:48 -0800516 }
517
Kalyani Akula6ebe4832020-11-22 22:42:10 -0800518 case PM_REGISTER_ACCESS:
519 {
HariBabu Gattemaa811712022-10-07 00:07:49 -0700520 uint32_t value = 0;
Kalyani Akula6ebe4832020-11-22 22:42:10 -0800521
522 ret = pm_register_access(pm_arg[0], pm_arg[1], pm_arg[2],
523 pm_arg[3], &value);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700524 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32U);
Kalyani Akula6ebe4832020-11-22 22:42:10 -0800525 }
526
VNSL Durgadeb1a362020-11-23 04:46:04 -0800527 case PM_EFUSE_ACCESS:
528 {
HariBabu Gattemaa811712022-10-07 00:07:49 -0700529 uint32_t value = 0;
VNSL Durgadeb1a362020-11-23 04:46:04 -0800530
Vesa Jääskeläinen28f9ce52022-04-29 08:47:24 +0300531#if defined(ZYNQMP_SECURE_EFUSES)
532 if (is_caller_non_secure(flags)) {
533 SMC_RET1(handle,
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700534 (((uint64_t)PM_RET_ERROR_NOT_ENABLED) << 32U) |
Vesa Jääskeläinen28f9ce52022-04-29 08:47:24 +0300535 (uint64_t)PM_RET_ERROR_ACCESS);
536 }
537#endif
VNSL Durgadeb1a362020-11-23 04:46:04 -0800538 ret = pm_efuse_access(pm_arg[0], pm_arg[1], &value);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700539 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32U);
VNSL Durgadeb1a362020-11-23 04:46:04 -0800540 }
541
Nava kishore Manne2af6d532022-01-13 13:29:36 +0530542 case PM_FPGA_GET_VERSION:
543 case PM_FPGA_GET_FEATURE_LIST:
544 {
Nava kishore Manne2af6d532022-01-13 13:29:36 +0530545 uint32_t ret_payload[PAYLOAD_ARG_CNT];
546
547 PM_PACK_PAYLOAD5(payload, smc_fid & FUNCID_NUM_MASK,
548 pm_arg[0], pm_arg[1], pm_arg[2], pm_arg[3]);
549 ret = pm_ipi_send_sync(primary_proc, payload, ret_payload, 3U);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700550 SMC_RET2(handle, (uint64_t)ret | (uint64_t)ret_payload[0] << 32U,
551 (uint64_t)ret_payload[1] | (uint64_t)ret_payload[2] << 32U);
Nava kishore Manne2af6d532022-01-13 13:29:36 +0530552 }
553
Ronak Jain325bad12021-12-21 01:39:59 -0800554 case PM_FEATURE_CHECK:
555 {
Ronak Jainf8414672022-05-11 02:48:52 -0700556 uint32_t version = 0;
Ronak Jain325bad12021-12-21 01:39:59 -0800557 uint32_t bit_mask[2] = {0};
558
559 ret = pm_feature_check(pm_arg[0], &version, bit_mask,
560 ARRAY_SIZE(bit_mask));
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700561 SMC_RET2(handle, (uint64_t)ret | ((uint64_t)version << 32U),
562 (uint64_t)bit_mask[0] | ((uint64_t)bit_mask[1] << 32U));
Ronak Jain325bad12021-12-21 01:39:59 -0800563 }
564
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800565 default:
Ronak Jain52de5942022-01-20 23:11:18 -0800566 /* Send request to the PMU */
567 PM_PACK_PAYLOAD6(payload, api_id, pm_arg[0], pm_arg[1],
568 pm_arg[2], pm_arg[3], pm_arg[4]);
569 ret = pm_ipi_send_sync(primary_proc, payload, result,
570 PAYLOAD_ARG_CNT);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700571 SMC_RET2(handle, (uint64_t)ret | ((uint64_t)result[0] << 32U),
572 (uint64_t)result[1] | ((uint64_t)result[2] << 32U));
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800573 }
574}
Venkatesh Yadav Abbarapu7ace4af2020-11-23 04:26:54 -0800575
576/**
577 * em_smc_handler() - SMC handler for EM-API calls coming from EL1/EL2.
578 * @smc_fid - Function Identifier
579 * @x1 - x4 - Arguments
580 * @cookie - Unused
581 * @handler - Pointer to caller's context structure
582 *
583 * @return - Unused
584 *
585 * Determines that smc_fid is valid and supported EM SMC Function ID from the
586 * list of em_api_ids, otherwise completes the request with
587 * the unknown SMC Function ID
588 *
589 * The SMC calls for EM service are forwarded from SIP Service SMC handler
590 * function with rt_svc_handle signature
591 */
592uint64_t em_smc_handler(uint32_t smc_fid, uint64_t x1, uint64_t x2, uint64_t x3,
Venkatesh Yadav Abbarapu0386e652022-05-24 14:05:57 +0530593 uint64_t x4, const void *cookie, void *handle, uint64_t flags)
Venkatesh Yadav Abbarapu7ace4af2020-11-23 04:26:54 -0800594{
595 enum pm_ret_status ret;
596
597 switch (smc_fid & FUNCID_NUM_MASK) {
598 /* EM API Functions */
599 case EM_SET_ACTION:
600 {
601 uint32_t value;
602
603 ret = em_set_action(&value);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700604 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32U);
Venkatesh Yadav Abbarapu7ace4af2020-11-23 04:26:54 -0800605 }
606
607 case EM_REMOVE_ACTION:
608 {
609 uint32_t value;
610
611 ret = em_remove_action(&value);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700612 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32U);
Venkatesh Yadav Abbarapu7ace4af2020-11-23 04:26:54 -0800613 }
614
615 case EM_SEND_ERRORS:
616 {
617 uint32_t value;
618
619 ret = em_send_errors(&value);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700620 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32U);
Venkatesh Yadav Abbarapu7ace4af2020-11-23 04:26:54 -0800621 }
622
623 default:
624 WARN("Unimplemented EM Service Call: 0x%x\n", smc_fid);
625 SMC_RET1(handle, SMC_UNK);
626 }
627}