blob: 5a6a9f8c5491d96d0e10fe9b7cf2725274cd2e85 [file] [log] [blame]
Soren Brinkmann76fcae32016-03-06 20:16:27 -08001/*
Michal Simek2a47faa2023-04-14 08:43:51 +02002 * Copyright (c) 2013-2022, Arm Limited and Contributors. All rights reserved.
Michal Simekd4ff2722023-04-20 08:01:03 +02003 * Copyright (c) 2023, Advanced Micro Devices, Inc. All rights reserved.
Soren Brinkmann76fcae32016-03-06 20:16:27 -08004 *
dp-armfa3cf0b2017-05-03 09:38:09 +01005 * SPDX-License-Identifier: BSD-3-Clause
Soren Brinkmann76fcae32016-03-06 20:16:27 -08006 */
7
8/*
9 * Top-level SMC handler for ZynqMP power management calls and
10 * IPI setup functions for communication with PMU.
11 */
12
13#include <errno.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000014
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000015#include <arch_helpers.h>
Prasad Kummari536e1102023-06-22 10:50:02 +053016#include <common/runtime_svc.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000017#include <drivers/arm/gicv2.h>
18#include <lib/mmio.h>
19#include <lib/spinlock.h>
20#include <plat/common/platform.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000021
Jolly Shah0bfd7002019-01-08 11:10:47 -080022#include <plat_private.h>
Soren Brinkmann76fcae32016-03-06 20:16:27 -080023#include "pm_client.h"
24#include "pm_ipi.h"
Jay Buddhabhatti26e138a2022-12-21 23:03:35 -080025#include "zynqmp_pm_api_sys.h"
Jay Buddhabhatti5b9f3912023-02-02 22:34:03 -080026#include "zynqmp_pm_defs.h"
Soren Brinkmann76fcae32016-03-06 20:16:27 -080027
Rajan Vaja720fd9d2018-10-05 04:42:57 -070028/* pm_up = !0 - UP, pm_up = 0 - DOWN */
29static int32_t pm_up, ipi_irq_flag;
Soren Brinkmann76fcae32016-03-06 20:16:27 -080030
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +053031#if ZYNQMP_WDT_RESTART
32static spinlock_t inc_lock;
33static int active_cores = 0;
34#endif
35
Soren Brinkmann76fcae32016-03-06 20:16:27 -080036/**
Prasad Kummari7d0623a2023-06-09 14:32:00 +053037 * typedef pm_ctx_t - Structure which contains data for power management.
38 * @api_version: version of PM API, must match with one on PMU side.
39 * @payload: payload array used to store received.
40 * data from ipi buffer registers.
41 *
Soren Brinkmann76fcae32016-03-06 20:16:27 -080042 */
Prasad Kummari7d0623a2023-06-09 14:32:00 +053043typedef struct {
Soren Brinkmann76fcae32016-03-06 20:16:27 -080044 uint32_t api_version;
45 uint32_t payload[PAYLOAD_ARG_CNT];
Prasad Kummari7d0623a2023-06-09 14:32:00 +053046} pm_ctx_t;
47
48static pm_ctx_t pm_ctx;
Soren Brinkmann76fcae32016-03-06 20:16:27 -080049
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +053050#if ZYNQMP_WDT_RESTART
51/**
Prasad Kummari7d0623a2023-06-09 14:32:00 +053052 * trigger_wdt_restart() - Trigger warm restart event to APU cores.
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +053053 *
54 * This function triggers SGI for all active APU CPUs. SGI handler then
55 * power down CPU and call system reset.
Prasad Kummari7d0623a2023-06-09 14:32:00 +053056 *
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +053057 */
58static void trigger_wdt_restart(void)
59{
60 uint32_t core_count = 0;
61 uint32_t core_status[3];
62 uint32_t target_cpu_list = 0;
63 int i;
64
65 for (i = 0; i < 4; i++) {
66 pm_get_node_status(NODE_APU_0 + i, core_status);
67 if (core_status[0] == 1) {
68 core_count++;
69 target_cpu_list |= (1 << i);
70 }
71 }
72
73 spin_lock(&inc_lock);
74 active_cores = core_count;
75 spin_unlock(&inc_lock);
76
77 INFO("Active Cores: %d\n", active_cores);
78
Siva Durga Prasad Paladugu60bfbc92018-09-24 22:51:49 -070079 for (i = PLATFORM_CORE_COUNT - 1; i >= 0; i--) {
80 if (target_cpu_list & (1 << i)) {
81 /* trigger SGI to active cores */
82 plat_ic_raise_el3_sgi(ARM_IRQ_SEC_SGI_7, i);
83 }
84 }
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +053085}
86
87/**
Prasad Kummari7d0623a2023-06-09 14:32:00 +053088 * ttc_fiq_handler() - TTC Handler for timer event.
89 * @id: number of the highest priority pending interrupt of the type
90 * that this handler was registered for.
91 * @flags: security state, bit[0].
92 * @handle: pointer to 'cpu_context' structure of the current CPU for the
93 * security state specified in the 'flags' parameter.
94 * @cookie: unused.
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +053095 *
Prasad Kummari7d0623a2023-06-09 14:32:00 +053096 * Function registered as INTR_TYPE_EL3 interrupt handler.
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +053097 *
98 * When WDT event is received in PMU, PMU needs to notify master to do cleanup
99 * if required. PMU sets up timer and starts timer to overflow in zero time upon
Prasad Kummarie0783112023-04-26 11:02:07 +0530100 * WDT event. TF-A handles this timer event and takes necessary action required
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530101 * for warm restart.
102 *
103 * In presence of non-secure software layers (EL1/2) sets the interrupt
Elyes Haouas2be03c02023-02-13 09:14:48 +0100104 * at registered entrance in GIC and informs that PMU responded or demands
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530105 * action.
Prasad Kummari7d0623a2023-06-09 14:32:00 +0530106 *
107 * Return: 0 on success.
108 *
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530109 */
110static uint64_t ttc_fiq_handler(uint32_t id, uint32_t flags, void *handle,
Michal Simek08341b72022-03-09 08:53:20 +0100111 void *cookie)
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530112{
113 INFO("BL31: Got TTC FIQ\n");
114
Siva Durga Prasad Paladugu60bfbc92018-09-24 22:51:49 -0700115 plat_ic_end_of_interrupt(id);
116
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530117 /* Clear TTC interrupt by reading interrupt register */
118 mmio_read_32(TTC3_INTR_REGISTER_1);
119
120 /* Disable the timer interrupts */
121 mmio_write_32(TTC3_INTR_ENABLE_1, 0);
122
123 trigger_wdt_restart();
124
125 return 0;
126}
127
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800128/**
Prasad Kummari7d0623a2023-06-09 14:32:00 +0530129 * zynqmp_sgi7_irq() - Handler for SGI7 IRQ.
130 * @id: number of the highest priority pending interrupt of the type
131 * that this handler was registered for.
132 * @flags: security state, bit[0].
133 * @handle: pointer to 'cpu_context' structure of the current CPU for the
134 * security state specified in the 'flags' parameter.
135 * @cookie: unused.
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530136 *
137 * Function registered as INTR_TYPE_EL3 interrupt handler
138 *
Prasad Kummarie0783112023-04-26 11:02:07 +0530139 * On receiving WDT event from PMU, TF-A generates SGI7 to all running CPUs.
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530140 * In response to SGI7 interrupt, each CPUs do clean up if required and last
141 * running CPU calls system restart.
Prasad Kummari7d0623a2023-06-09 14:32:00 +0530142 *
143 * Return: This function does not return a value and it enters into wfi.
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530144 */
145static uint64_t __unused __dead2 zynqmp_sgi7_irq(uint32_t id, uint32_t flags,
Michal Simek08341b72022-03-09 08:53:20 +0100146 void *handle, void *cookie)
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530147{
148 int i;
Will Wongcc127952020-11-22 23:45:21 -0800149 uint32_t value;
150
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530151 /* enter wfi and stay there */
152 INFO("Entering wfi\n");
153
154 spin_lock(&inc_lock);
155 active_cores--;
156
157 for (i = 0; i < 4; i++) {
158 mmio_write_32(BASE_GICD_BASE + GICD_CPENDSGIR + 4 * i,
159 0xffffffff);
160 }
161
Tanmay Shah50702ba2022-09-13 11:10:08 -0700162 dsb();
163
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530164 spin_unlock(&inc_lock);
165
166 if (active_cores == 0) {
Will Wongcc127952020-11-22 23:45:21 -0800167 pm_mmio_read(PMU_GLOBAL_GEN_STORAGE4, &value);
168 value = (value & RESTART_SCOPE_MASK) >> RESTART_SCOPE_SHIFT;
169 pm_system_shutdown(PMF_SHUTDOWN_TYPE_RESET, value);
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530170 }
171
172 /* enter wfi and stay there */
173 while (1)
174 wfi();
175}
176
177/**
Prasad Kummari7d0623a2023-06-09 14:32:00 +0530178 * pm_wdt_restart_setup() - Setup warm restart interrupts.
179 *
180 * Return: Returns status, 0 on success or error+reason.
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530181 *
182 * This function sets up handler for SGI7 and TTC interrupts
183 * used for warm restart.
184 */
185static int pm_wdt_restart_setup(void)
186{
187 int ret;
188
189 /* register IRQ handler for SGI7 */
190 ret = request_intr_type_el3(ARM_IRQ_SEC_SGI_7, zynqmp_sgi7_irq);
191 if (ret) {
192 WARN("BL31: registering SGI7 interrupt failed\n");
193 goto err;
194 }
195
196 ret = request_intr_type_el3(IRQ_TTC3_1, ttc_fiq_handler);
197 if (ret)
198 WARN("BL31: registering TTC3 interrupt failed\n");
199
200err:
201 return ret;
202}
203#endif
204
205/**
Prasad Kummari7d0623a2023-06-09 14:32:00 +0530206 * pm_setup() - PM service setup.
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800207 *
Prasad Kummari7d0623a2023-06-09 14:32:00 +0530208 * Return: On success, the initialization function must return 0.
209 * Any other return value will cause the framework to ignore
210 * the service.
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800211 *
212 * Initialization functions for ZynqMP power management for
213 * communicaton with PMU.
214 *
215 * Called from sip_svc_setup initialization function with the
216 * rt_svc_init signature.
Prasad Kummari7d0623a2023-06-09 14:32:00 +0530217 *
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800218 */
Venkatesh Yadav Abbarapue7c45382022-05-19 14:49:49 +0530219int32_t pm_setup(void)
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800220{
Naman Patel0feb5ea2022-11-22 05:01:37 -0800221 enum pm_ret_status err;
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800222
HariBabu Gattemaa811712022-10-07 00:07:49 -0700223 pm_ipi_init(primary_proc);
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800224
Naman Patel0feb5ea2022-11-22 05:01:37 -0800225 err = pm_get_api_version(&pm_ctx.api_version);
226 if (err != PM_RET_SUCCESS) {
227 ERROR("BL31: Failed to read Platform Management API version. "
228 "Return: %d\n", err);
229 return -EINVAL;
230 }
Rajan Vaja720fd9d2018-10-05 04:42:57 -0700231 if (pm_ctx.api_version < PM_VERSION) {
232 ERROR("BL31: Platform Management API version error. Expected: "
233 "v%d.%d - Found: v%d.%d\n", PM_VERSION_MAJOR,
234 PM_VERSION_MINOR, pm_ctx.api_version >> 16,
Venkatesh Yadav Abbarapua2ca35d2022-07-04 11:40:27 +0530235 pm_ctx.api_version & 0xFFFFU);
Rajan Vaja720fd9d2018-10-05 04:42:57 -0700236 return -EINVAL;
237 }
238
HariBabu Gattemaa811712022-10-07 00:07:49 -0700239 int32_t status = 0, ret = 0;
Siva Durga Prasad Paladuguefd431b2018-04-30 20:12:12 +0530240#if ZYNQMP_WDT_RESTART
241 status = pm_wdt_restart_setup();
242 if (status)
243 WARN("BL31: warm-restart setup failed\n");
244#endif
245
Wendy Liang328105c2017-10-03 23:21:11 -0700246 if (status >= 0) {
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800247 INFO("BL31: PM Service Init Complete: API v%d.%d\n",
248 PM_VERSION_MAJOR, PM_VERSION_MINOR);
Wendy Liang328105c2017-10-03 23:21:11 -0700249 ret = 0;
250 } else {
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800251 INFO("BL31: PM Service Init Failed, Error Code %d!\n", status);
Wendy Liang328105c2017-10-03 23:21:11 -0700252 ret = status;
253 }
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800254
Siva Durga Prasad Paladugu79f75952018-04-30 19:39:49 +0530255 pm_up = !status;
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800256
Wendy Liang328105c2017-10-03 23:21:11 -0700257 return ret;
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800258}
259
260/**
261 * pm_smc_handler() - SMC handler for PM-API calls coming from EL1/EL2.
Prasad Kummari7d0623a2023-06-09 14:32:00 +0530262 * @smc_fid: Function Identifier.
263 * @x1: Arguments.
264 * @x2: Arguments.
265 * @x3: Arguments.
266 * @x4: Arguments.
267 * @cookie: Unused.
268 * @handle: Pointer to caller's context structure.
269 * @flags: SECURE_FLAG or NON_SECURE_FLAG.
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800270 *
271 * Determines that smc_fid is valid and supported PM SMC Function ID from the
272 * list of pm_api_ids, otherwise completes the request with
Prasad Kummari7d0623a2023-06-09 14:32:00 +0530273 * the unknown SMC Function ID.
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800274 *
275 * The SMC calls for PM service are forwarded from SIP Service SMC handler
Prasad Kummari7d0623a2023-06-09 14:32:00 +0530276 * function with rt_svc_handle signature.
277 *
278 * Return: Unused.
279 *
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800280 */
281uint64_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 +0530282 uint64_t x4, const void *cookie, void *handle, uint64_t flags)
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800283{
284 enum pm_ret_status ret;
Ronak Jain52de5942022-01-20 23:11:18 -0800285 uint32_t payload[PAYLOAD_ARG_CNT];
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800286
Ronak Jainf8414672022-05-11 02:48:52 -0700287 uint32_t pm_arg[5];
HariBabu Gattemaa811712022-10-07 00:07:49 -0700288 uint32_t result[PAYLOAD_ARG_CNT] = {0};
Ronak Jain52de5942022-01-20 23:11:18 -0800289 uint32_t api_id;
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800290
291 /* Handle case where PM wasn't initialized properly */
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700292 if (pm_up == 0)
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800293 SMC_RET1(handle, SMC_UNK);
294
295 pm_arg[0] = (uint32_t)x1;
296 pm_arg[1] = (uint32_t)(x1 >> 32);
297 pm_arg[2] = (uint32_t)x2;
298 pm_arg[3] = (uint32_t)(x2 >> 32);
Ronak Jain52de5942022-01-20 23:11:18 -0800299 pm_arg[4] = (uint32_t)x3;
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800300
Ronak Jain52de5942022-01-20 23:11:18 -0800301 api_id = smc_fid & FUNCID_NUM_MASK;
302
303 switch (api_id) {
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800304 /* PM API Functions */
305 case PM_SELF_SUSPEND:
306 ret = pm_self_suspend(pm_arg[0], pm_arg[1], pm_arg[2],
307 pm_arg[3]);
308 SMC_RET1(handle, (uint64_t)ret);
309
310 case PM_REQ_SUSPEND:
311 ret = pm_req_suspend(pm_arg[0], pm_arg[1], pm_arg[2],
312 pm_arg[3]);
313 SMC_RET1(handle, (uint64_t)ret);
314
315 case PM_REQ_WAKEUP:
Filip Drazic78ba1452017-02-07 12:03:57 +0100316 {
317 /* Use address flag is encoded in the 1st bit of the low-word */
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700318 uint32_t set_addr = pm_arg[1] & 0x1U;
319 uint64_t address = (uint64_t)pm_arg[2] << 32U;
Filip Drazic78ba1452017-02-07 12:03:57 +0100320
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700321 address |= pm_arg[1] & (~0x1U);
Filip Drazic78ba1452017-02-07 12:03:57 +0100322 ret = pm_req_wakeup(pm_arg[0], set_addr, address,
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800323 pm_arg[3]);
324 SMC_RET1(handle, (uint64_t)ret);
Filip Drazic78ba1452017-02-07 12:03:57 +0100325 }
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800326
327 case PM_FORCE_POWERDOWN:
328 ret = pm_force_powerdown(pm_arg[0], pm_arg[1]);
329 SMC_RET1(handle, (uint64_t)ret);
330
331 case PM_ABORT_SUSPEND:
332 ret = pm_abort_suspend(pm_arg[0]);
333 SMC_RET1(handle, (uint64_t)ret);
334
335 case PM_SET_WAKEUP_SOURCE:
336 ret = pm_set_wakeup_source(pm_arg[0], pm_arg[1], pm_arg[2]);
337 SMC_RET1(handle, (uint64_t)ret);
338
339 case PM_SYSTEM_SHUTDOWN:
Soren Brinkmann58fbb9b2016-09-02 09:50:54 -0700340 ret = pm_system_shutdown(pm_arg[0], pm_arg[1]);
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800341 SMC_RET1(handle, (uint64_t)ret);
342
343 case PM_REQ_NODE:
344 ret = pm_req_node(pm_arg[0], pm_arg[1], pm_arg[2], pm_arg[3]);
345 SMC_RET1(handle, (uint64_t)ret);
346
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800347 case PM_SET_REQUIREMENT:
348 ret = pm_set_requirement(pm_arg[0], pm_arg[1], pm_arg[2],
349 pm_arg[3]);
350 SMC_RET1(handle, (uint64_t)ret);
351
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800352 case PM_GET_API_VERSION:
Boyan Karatotevb3d2b4f2022-11-22 12:13:44 +0000353 if (ipi_irq_flag == 0U) {
354 /*
355 * Enable IPI IRQ
356 * assume the rich OS is OK to handle callback IRQs now.
357 * Even if we were wrong, it would not enable the IRQ in
358 * the GIC.
359 */
360 pm_ipi_irq_enable(primary_proc);
361 ipi_irq_flag = 1U;
Soren Brinkmanna1b0a902016-09-30 11:30:21 -0700362 }
Boyan Karatotevb3d2b4f2022-11-22 12:13:44 +0000363 SMC_RET1(handle, (uint64_t)PM_RET_SUCCESS |
364 ((uint64_t)pm_ctx.api_version << 32));
Nava kishore Manne68d460c2016-08-20 23:18:09 +0530365 case PM_FPGA_LOAD:
366 ret = pm_fpga_load(pm_arg[0], pm_arg[1], pm_arg[2], pm_arg[3]);
367 SMC_RET1(handle, (uint64_t)ret);
368
369 case PM_FPGA_GET_STATUS:
370 {
Naman Patel6c480342022-12-01 02:58:46 -0800371 uint32_t value = 0U;
Nava kishore Manne68d460c2016-08-20 23:18:09 +0530372
373 ret = pm_fpga_get_status(&value);
374 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32);
375 }
376
Siva Durga Prasad Paladugude93d982018-04-30 15:49:27 +0530377 case PM_SECURE_RSA_AES:
378 ret = pm_secure_rsaaes(pm_arg[0], pm_arg[1], pm_arg[2],
379 pm_arg[3]);
380 SMC_RET1(handle, (uint64_t)ret);
381
Rajan Vaja02d18422019-03-04 11:09:39 +0530382 case PM_GET_CALLBACK_DATA:
Naman Trivedi Manojbhaibeec83f2023-03-07 12:41:12 +0530383 ret = pm_get_callbackdata(result, ARRAY_SIZE(result));
384 if (ret != PM_RET_SUCCESS) {
385 result[0] = ret;
386 }
387
Rajan Vaja02d18422019-03-04 11:09:39 +0530388 SMC_RET2(handle,
389 (uint64_t)result[0] | ((uint64_t)result[1] << 32),
390 (uint64_t)result[2] | ((uint64_t)result[3] << 32));
Rajan Vaja5529a012018-01-17 02:39:23 -0800391 case PM_IOCTL:
392 {
Naman Patel6c480342022-12-01 02:58:46 -0800393 uint32_t value = 0U;
Rajan Vaja5529a012018-01-17 02:39:23 -0800394
395 ret = pm_ioctl(pm_arg[0], pm_arg[1], pm_arg[2],
396 pm_arg[3], &value);
397 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32);
398 }
399
Rajan Vaja35116132018-01-17 02:39:25 -0800400 case PM_QUERY_DATA:
401 {
Jolly Shah69fb5bf2018-02-07 16:25:41 -0800402 uint32_t data[4] = { 0 };
Rajan Vaja35116132018-01-17 02:39:25 -0800403
Rajan Vajacd825682020-11-23 21:33:39 -0800404 pm_query_data(pm_arg[0], pm_arg[1], pm_arg[2],
405 pm_arg[3], data);
Rajan Vaja35116132018-01-17 02:39:25 -0800406 SMC_RET2(handle, (uint64_t)data[0] | ((uint64_t)data[1] << 32),
407 (uint64_t)data[2] | ((uint64_t)data[3] << 32));
408 }
409
410 case PM_CLOCK_ENABLE:
411 ret = pm_clock_enable(pm_arg[0]);
412 SMC_RET1(handle, (uint64_t)ret);
413
414 case PM_CLOCK_DISABLE:
415 ret = pm_clock_disable(pm_arg[0]);
416 SMC_RET1(handle, (uint64_t)ret);
417
418 case PM_CLOCK_GETSTATE:
419 {
Naman Patel6c480342022-12-01 02:58:46 -0800420 uint32_t value = 0U;
Rajan Vaja35116132018-01-17 02:39:25 -0800421
422 ret = pm_clock_getstate(pm_arg[0], &value);
423 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32);
424 }
425
426 case PM_CLOCK_SETDIVIDER:
427 ret = pm_clock_setdivider(pm_arg[0], pm_arg[1]);
428 SMC_RET1(handle, (uint64_t)ret);
429
430 case PM_CLOCK_GETDIVIDER:
431 {
Naman Patel6c480342022-12-01 02:58:46 -0800432 uint32_t value = 0U;
Rajan Vaja35116132018-01-17 02:39:25 -0800433
434 ret = pm_clock_getdivider(pm_arg[0], &value);
435 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32);
436 }
437
Rajan Vaja35116132018-01-17 02:39:25 -0800438 case PM_CLOCK_SETPARENT:
439 ret = pm_clock_setparent(pm_arg[0], pm_arg[1]);
440 SMC_RET1(handle, (uint64_t)ret);
441
442 case PM_CLOCK_GETPARENT:
443 {
Naman Patel6c480342022-12-01 02:58:46 -0800444 uint32_t value = 0U;
Rajan Vaja35116132018-01-17 02:39:25 -0800445
446 ret = pm_clock_getparent(pm_arg[0], &value);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700447 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32U);
Rajan Vaja35116132018-01-17 02:39:25 -0800448 }
449
Rajan Vajac7ee23d2018-02-14 23:10:54 -0800450 case PM_GET_TRUSTZONE_VERSION:
451 SMC_RET1(handle, (uint64_t)PM_RET_SUCCESS |
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700452 ((uint64_t)ZYNQMP_TZ_VERSION << 32U));
Rajan Vajac7ee23d2018-02-14 23:10:54 -0800453
Siva Durga Prasad Paladugu43b23a32018-04-27 16:26:47 +0530454 case PM_SET_SUSPEND_MODE:
455 ret = pm_set_suspend_mode(pm_arg[0]);
456 SMC_RET1(handle, (uint64_t)ret);
457
Siva Durga Prasad Paladuguf3994cc2018-05-01 11:12:55 +0530458 case PM_SECURE_SHA:
459 ret = pm_sha_hash(pm_arg[0], pm_arg[1], pm_arg[2],
460 pm_arg[3]);
461 SMC_RET1(handle, (uint64_t)ret);
462
463 case PM_SECURE_RSA:
464 ret = pm_rsa_core(pm_arg[0], pm_arg[1], pm_arg[2],
465 pm_arg[3]);
466 SMC_RET1(handle, (uint64_t)ret);
467
Siva Durga Prasad Paladugua4ed4b22018-04-30 20:06:58 +0530468 case PM_SECURE_IMAGE:
469 {
Siva Durga Prasad Paladugua4ed4b22018-04-30 20:06:58 +0530470 ret = pm_secure_image(pm_arg[0], pm_arg[1], pm_arg[2],
471 pm_arg[3], &result[0]);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700472 SMC_RET2(handle, (uint64_t)ret | ((uint64_t)result[0] << 32U),
Siva Durga Prasad Paladugua4ed4b22018-04-30 20:06:58 +0530473 result[1]);
474 }
475
Siva Durga Prasad Paladugu7c6516a2018-09-04 17:41:34 +0530476 case PM_FPGA_READ:
477 {
Naman Patel6c480342022-12-01 02:58:46 -0800478 uint32_t value = 0U;
Siva Durga Prasad Paladugu7c6516a2018-09-04 17:41:34 +0530479
480 ret = pm_fpga_read(pm_arg[0], pm_arg[1], pm_arg[2], pm_arg[3],
481 &value);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700482 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32U);
Siva Durga Prasad Paladugu7c6516a2018-09-04 17:41:34 +0530483 }
484
Siva Durga Prasad Paladugu8bd905b2018-09-04 18:05:50 +0530485 case PM_SECURE_AES:
486 {
Naman Patel6c480342022-12-01 02:58:46 -0800487 uint32_t value = 0U;
Siva Durga Prasad Paladugu8bd905b2018-09-04 18:05:50 +0530488
489 ret = pm_aes_engine(pm_arg[0], pm_arg[1], &value);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700490 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32U);
Siva Durga Prasad Paladugu8bd905b2018-09-04 18:05:50 +0530491 }
492
Jolly Shaha7cc5ee2019-01-02 12:27:00 -0800493 case PM_PLL_SET_PARAMETER:
494 ret = pm_pll_set_parameter(pm_arg[0], pm_arg[1], pm_arg[2]);
495 SMC_RET1(handle, (uint64_t)ret);
496
Jolly Shahcb2f45d2019-01-04 11:28:38 -0800497 case PM_PLL_GET_PARAMETER:
498 {
Naman Patel6c480342022-12-01 02:58:46 -0800499 uint32_t value = 0U;
Jolly Shahcb2f45d2019-01-04 11:28:38 -0800500
501 ret = pm_pll_get_parameter(pm_arg[0], pm_arg[1], &value);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700502 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value << 32U));
Jolly Shahcb2f45d2019-01-04 11:28:38 -0800503 }
504
Jolly Shah1f0d5852019-01-04 11:32:31 -0800505 case PM_PLL_SET_MODE:
506 ret = pm_pll_set_mode(pm_arg[0], pm_arg[1]);
507 SMC_RET1(handle, (uint64_t)ret);
508
Jolly Shah141421e2019-01-04 11:35:48 -0800509 case PM_PLL_GET_MODE:
510 {
Naman Patel6c480342022-12-01 02:58:46 -0800511 uint32_t mode = 0U;
Jolly Shah141421e2019-01-04 11:35:48 -0800512
513 ret = pm_pll_get_mode(pm_arg[0], &mode);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700514 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)mode << 32U));
Jolly Shah141421e2019-01-04 11:35:48 -0800515 }
516
Kalyani Akula6ebe4832020-11-22 22:42:10 -0800517 case PM_REGISTER_ACCESS:
518 {
Naman Patel6c480342022-12-01 02:58:46 -0800519 uint32_t value = 0U;
Kalyani Akula6ebe4832020-11-22 22:42:10 -0800520
521 ret = pm_register_access(pm_arg[0], pm_arg[1], pm_arg[2],
522 pm_arg[3], &value);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700523 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32U);
Kalyani Akula6ebe4832020-11-22 22:42:10 -0800524 }
525
VNSL Durgadeb1a362020-11-23 04:46:04 -0800526 case PM_EFUSE_ACCESS:
527 {
Naman Patel6c480342022-12-01 02:58:46 -0800528 uint32_t value = 0U;
VNSL Durgadeb1a362020-11-23 04:46:04 -0800529
Vesa Jääskeläinen28f9ce52022-04-29 08:47:24 +0300530#if defined(ZYNQMP_SECURE_EFUSES)
531 if (is_caller_non_secure(flags)) {
532 SMC_RET1(handle,
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700533 (((uint64_t)PM_RET_ERROR_NOT_ENABLED) << 32U) |
Vesa Jääskeläinen28f9ce52022-04-29 08:47:24 +0300534 (uint64_t)PM_RET_ERROR_ACCESS);
535 }
536#endif
VNSL Durgadeb1a362020-11-23 04:46:04 -0800537 ret = pm_efuse_access(pm_arg[0], pm_arg[1], &value);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700538 SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32U);
VNSL Durgadeb1a362020-11-23 04:46:04 -0800539 }
540
Nava kishore Manne2af6d532022-01-13 13:29:36 +0530541 case PM_FPGA_GET_VERSION:
542 case PM_FPGA_GET_FEATURE_LIST:
543 {
Nava kishore Manne2af6d532022-01-13 13:29:36 +0530544 uint32_t ret_payload[PAYLOAD_ARG_CNT];
545
546 PM_PACK_PAYLOAD5(payload, smc_fid & FUNCID_NUM_MASK,
547 pm_arg[0], pm_arg[1], pm_arg[2], pm_arg[3]);
548 ret = pm_ipi_send_sync(primary_proc, payload, ret_payload, 3U);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700549 SMC_RET2(handle, (uint64_t)ret | (uint64_t)ret_payload[0] << 32U,
550 (uint64_t)ret_payload[1] | (uint64_t)ret_payload[2] << 32U);
Nava kishore Manne2af6d532022-01-13 13:29:36 +0530551 }
552
Ronak Jain325bad12021-12-21 01:39:59 -0800553 case PM_FEATURE_CHECK:
554 {
Ronak Jainf8414672022-05-11 02:48:52 -0700555 uint32_t version = 0;
Ronak Jain325bad12021-12-21 01:39:59 -0800556 uint32_t bit_mask[2] = {0};
557
558 ret = pm_feature_check(pm_arg[0], &version, bit_mask,
559 ARRAY_SIZE(bit_mask));
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700560 SMC_RET2(handle, (uint64_t)ret | ((uint64_t)version << 32U),
561 (uint64_t)bit_mask[0] | ((uint64_t)bit_mask[1] << 32U));
Ronak Jain325bad12021-12-21 01:39:59 -0800562 }
563
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800564 default:
Ronak Jain52de5942022-01-20 23:11:18 -0800565 /* Send request to the PMU */
566 PM_PACK_PAYLOAD6(payload, api_id, pm_arg[0], pm_arg[1],
567 pm_arg[2], pm_arg[3], pm_arg[4]);
568 ret = pm_ipi_send_sync(primary_proc, payload, result,
569 PAYLOAD_ARG_CNT);
HariBabu Gattemb0c70f52022-09-29 23:59:11 -0700570 SMC_RET2(handle, (uint64_t)ret | ((uint64_t)result[0] << 32U),
571 (uint64_t)result[1] | ((uint64_t)result[2] << 32U));
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800572 }
573}