blob: cc99f119776d5ba935429ae4e792607a2c01d1e6 [file] [log] [blame]
Tejas Patel9d09ff92019-01-08 01:46:35 -08001/*
Tanmay Shahff34daa2021-08-09 11:00:41 -07002 * Copyright (c) 2019-2022, Xilinx, Inc. All rights reserved.
Tanmay Shahfdae9e82022-08-26 15:06:00 -07003 * Copyright (c) 2022, Advanced Micro Devices, Inc. All rights reserved.
Tejas Patel9d09ff92019-01-08 01:46:35 -08004 *
5 * SPDX-License-Identifier: BSD-3-Clause
6 */
7
8/*
9 * Versal system level PM-API functions and communication with PMC via
10 * IPI interrupts
11 */
12
13#include <pm_common.h>
14#include <pm_ipi.h>
Tejas Patelfe0e10a2019-12-08 23:29:44 -080015#include <plat/common/platform.h>
Tejas Patel9d09ff92019-01-08 01:46:35 -080016#include "pm_api_sys.h"
17#include "pm_client.h"
Rajan Vaja030620d2020-11-23 04:13:54 -080018#include "pm_defs.h"
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +053019#include "pm_svc_main.h"
Tejas Patel9d09ff92019-01-08 01:46:35 -080020
Saeed Nowshadic5a1bda2019-12-08 23:35:35 -080021/* default shutdown/reboot scope is system(2) */
Venkatesh Yadav Abbarapubde87592022-05-24 11:11:12 +053022static uint32_t pm_shutdown_scope = XPM_SHUTDOWN_SUBTYPE_RST_SYSTEM;
Saeed Nowshadic5a1bda2019-12-08 23:35:35 -080023
24/**
25 * pm_get_shutdown_scope() - Get the currently set shutdown scope
26 *
27 * @return Shutdown scope value
28 */
Venkatesh Yadav Abbarapubde87592022-05-24 11:11:12 +053029uint32_t pm_get_shutdown_scope(void)
Saeed Nowshadic5a1bda2019-12-08 23:35:35 -080030{
31 return pm_shutdown_scope;
32}
33
Tejas Patel9d09ff92019-01-08 01:46:35 -080034/* PM API functions */
35
36/**
Tanmay Shahff34daa2021-08-09 11:00:41 -070037 * pm_handle_eemi_call() - PM call for processor to send eemi payload
Tejas Patel18072da2021-02-25 20:16:56 -080038 * @flag 0 - Call from secure source
39 * 1 - Call from non-secure source
Tanmay Shahff34daa2021-08-09 11:00:41 -070040 * @x0 to x5 Arguments received per SMC64 standard
41 * @result Payload received from firmware
Tejas Patel9d09ff92019-01-08 01:46:35 -080042 *
Tanmay Shahff34daa2021-08-09 11:00:41 -070043 * @return PM_RET_SUCCESS on success or error code
Tejas Patel9d09ff92019-01-08 01:46:35 -080044 */
Tanmay Shahff34daa2021-08-09 11:00:41 -070045enum pm_ret_status pm_handle_eemi_call(uint32_t flag, uint32_t x0, uint32_t x1,
46 uint32_t x2, uint32_t x3, uint32_t x4,
47 uint32_t x5, uint64_t *result)
Tejas Patel9d09ff92019-01-08 01:46:35 -080048{
Tanmay Shahff34daa2021-08-09 11:00:41 -070049 uint32_t payload[PAYLOAD_ARG_CNT] = {0};
50 uint32_t module_id;
Tejas Patel9d09ff92019-01-08 01:46:35 -080051
Venkatesh Yadav Abbarapua0657d92022-07-20 09:03:22 +053052 module_id = (x0 & MODULE_ID_MASK) >> 8U;
Tejas Patelfe0e10a2019-12-08 23:29:44 -080053
Tanmay Shahff34daa2021-08-09 11:00:41 -070054 //default module id is for LIBPM
Venkatesh Yadav Abbarapuab167132022-05-25 15:18:24 +053055 if (module_id == 0) {
Tanmay Shahff34daa2021-08-09 11:00:41 -070056 module_id = LIBPM_MODULE_ID;
Venkatesh Yadav Abbarapuab167132022-05-25 15:18:24 +053057 }
Ravi Patel476b5b12019-08-12 03:10:10 -070058
Tanmay Shahff34daa2021-08-09 11:00:41 -070059 PM_PACK_PAYLOAD6(payload, module_id, flag, x0, x1, x2, x3, x4, x5);
60 return pm_ipi_send_sync(primary_proc, payload, (uint32_t *)result, PAYLOAD_ARG_CNT);
Ravi Patel476b5b12019-08-12 03:10:10 -070061}
62
63/**
Tejas Patelfe0e10a2019-12-08 23:29:44 -080064 * pm_self_suspend() - PM call for processor to suspend itself
65 * @nid Node id of the processor or subsystem
66 * @latency Requested maximum wakeup latency (not supported)
67 * @state Requested state
68 * @address Resume address
Tejas Patel18072da2021-02-25 20:16:56 -080069 * @flag 0 - Call from secure source
70 * 1 - Call from non-secure source
Tejas Patelfe0e10a2019-12-08 23:29:44 -080071 *
72 * This is a blocking call, it will return only once PMU has responded.
73 * On a wakeup, resume address will be automatically set by PMU.
74 *
75 * @return Returns status, either success or error+reason
76 */
77enum pm_ret_status pm_self_suspend(uint32_t nid,
Venkatesh Yadav Abbarapubde87592022-05-24 11:11:12 +053078 uint32_t latency,
79 uint32_t state,
Tejas Patel18072da2021-02-25 20:16:56 -080080 uintptr_t address, uint32_t flag)
Tejas Patelfe0e10a2019-12-08 23:29:44 -080081{
82 uint32_t payload[PAYLOAD_ARG_CNT];
Venkatesh Yadav Abbarapubde87592022-05-24 11:11:12 +053083 uint32_t cpuid = plat_my_core_pos();
Tejas Patelfe0e10a2019-12-08 23:29:44 -080084 const struct pm_proc *proc = pm_get_proc(cpuid);
85
Abhyuday Godhasara44877942021-08-05 02:59:26 -070086 if (proc == NULL) {
Tejas Patelfe0e10a2019-12-08 23:29:44 -080087 WARN("Failed to get proc %d\n", cpuid);
88 return PM_RET_ERROR_INTERNAL;
89 }
90
91 /*
92 * Do client specific suspend operations
93 * (e.g. set powerdown request bit)
94 */
95 pm_client_suspend(proc, state);
96
97 /* Send request to the PLM */
Tejas Patel18072da2021-02-25 20:16:56 -080098 PM_PACK_PAYLOAD6(payload, LIBPM_MODULE_ID, flag, PM_SELF_SUSPEND,
Tejas Patelfe0e10a2019-12-08 23:29:44 -080099 proc->node_id, latency, state, address,
100 (address >> 32));
101 return pm_ipi_send_sync(proc, payload, NULL, 0);
102}
103
104/**
105 * pm_abort_suspend() - PM call to announce that a prior suspend request
106 * is to be aborted.
107 * @reason Reason for the abort
Tejas Patel18072da2021-02-25 20:16:56 -0800108 * @flag 0 - Call from secure source
109 * 1 - Call from non-secure source
Tejas Patelfe0e10a2019-12-08 23:29:44 -0800110 *
111 * Calling PU expects the PMU to abort the initiated suspend procedure.
112 * This is a non-blocking call without any acknowledge.
113 *
114 * @return Returns status, either success or error+reason
115 */
Tejas Patel18072da2021-02-25 20:16:56 -0800116enum pm_ret_status pm_abort_suspend(enum pm_abort_reason reason, uint32_t flag)
Tejas Patelfe0e10a2019-12-08 23:29:44 -0800117{
118 uint32_t payload[PAYLOAD_ARG_CNT];
119
120 /*
121 * Do client specific abort suspend operations
122 * (e.g. enable interrupts and clear powerdown request bit)
123 */
124 pm_client_abort_suspend();
125
126 /* Send request to the PLM */
Tejas Patel18072da2021-02-25 20:16:56 -0800127 PM_PACK_PAYLOAD3(payload, LIBPM_MODULE_ID, flag, PM_ABORT_SUSPEND,
128 reason, primary_proc->node_id);
Abhyuday Godhasara7ae761b2021-06-24 05:50:44 -0700129 return pm_ipi_send_sync(primary_proc, payload, NULL, 0);
Tejas Patelfe0e10a2019-12-08 23:29:44 -0800130}
131
132/**
133 * pm_req_suspend() - PM call to request for another PU or subsystem to
134 * be suspended gracefully.
135 * @target Node id of the targeted PU or subsystem
136 * @ack Flag to specify whether acknowledge is requested
137 * @latency Requested wakeup latency (not supported)
138 * @state Requested state (not supported)
Tejas Patel18072da2021-02-25 20:16:56 -0800139 * @flag 0 - Call from secure source
140 * 1 - Call from non-secure source
Tejas Patelfe0e10a2019-12-08 23:29:44 -0800141 *
142 * @return Returns status, either success or error+reason
143 */
144enum pm_ret_status pm_req_suspend(uint32_t target, uint8_t ack,
Venkatesh Yadav Abbarapubde87592022-05-24 11:11:12 +0530145 uint32_t latency, uint32_t state,
Tejas Patel18072da2021-02-25 20:16:56 -0800146 uint32_t flag)
Tejas Patelfe0e10a2019-12-08 23:29:44 -0800147{
148 uint32_t payload[PAYLOAD_ARG_CNT];
149
150 /* Send request to the PMU */
Tejas Patel18072da2021-02-25 20:16:56 -0800151 PM_PACK_PAYLOAD4(payload, LIBPM_MODULE_ID, flag, PM_REQ_SUSPEND, target,
Tejas Patelfe0e10a2019-12-08 23:29:44 -0800152 latency, state);
Abhyuday Godhasaraddc46622021-08-05 03:14:17 -0700153 if (ack == IPI_BLOCKING) {
Tejas Patelfe0e10a2019-12-08 23:29:44 -0800154 return pm_ipi_send_sync(primary_proc, payload, NULL, 0);
Abhyuday Godhasaraddc46622021-08-05 03:14:17 -0700155 } else {
Tejas Patelfe0e10a2019-12-08 23:29:44 -0800156 return pm_ipi_send(primary_proc, payload);
Abhyuday Godhasaraddc46622021-08-05 03:14:17 -0700157 }
Tejas Patelfe0e10a2019-12-08 23:29:44 -0800158}
Tejas Patel41f3e0b2019-01-08 01:46:37 -0800159
160/**
Tejas Patel49cd8712019-01-23 14:18:51 +0530161 * pm_req_wakeup() - PM call for processor to wake up selected processor
162 * or subsystem
163 * @target Device ID of the processor or subsystem to wake up
164 * @set_address Resume address presence indicator
165 * 1 - resume address specified, 0 - otherwise
166 * @address Resume address
167 * @ack Flag to specify whether acknowledge requested
Tejas Patel18072da2021-02-25 20:16:56 -0800168 * @flag 0 - Call from secure source
169 * 1 - Call from non-secure source
Tejas Patel49cd8712019-01-23 14:18:51 +0530170 *
171 * This API function is either used to power up another APU core for SMP
172 * (by PSCI) or to power up an entirely different PU or subsystem, such
173 * as RPU0, RPU, or PL_CORE_xx. Resume address for the target PU will be
174 * automatically set by PMC.
175 *
176 * @return Returns status, either success or error+reason
177 */
178enum pm_ret_status pm_req_wakeup(uint32_t target, uint32_t set_address,
Tejas Patel18072da2021-02-25 20:16:56 -0800179 uintptr_t address, uint8_t ack, uint32_t flag)
Tejas Patel49cd8712019-01-23 14:18:51 +0530180{
181 uint32_t payload[PAYLOAD_ARG_CNT];
182
183 /* Send request to the PMC to perform the wake of the PU */
Tejas Patel18072da2021-02-25 20:16:56 -0800184 PM_PACK_PAYLOAD5(payload, LIBPM_MODULE_ID, flag, PM_REQ_WAKEUP, target,
Tejas Patel49cd8712019-01-23 14:18:51 +0530185 set_address, address, ack);
186
187 return pm_ipi_send_sync(primary_proc, payload, NULL, 0);
188}
189
190/**
Rajan Vaja649e9242019-03-04 11:09:40 +0530191 * pm_get_callbackdata() - Read from IPI response buffer
192 * @data - array of PAYLOAD_ARG_CNT elements
Tejas Patel18072da2021-02-25 20:16:56 -0800193 * @flag - 0 - Call from secure source
194 * 1 - Call from non-secure source
Tanmay Shahfdae9e82022-08-26 15:06:00 -0700195 * @ack - 0 - Do not ack IPI after reading payload
196 * 1 - Ack IPI after reading payload
Rajan Vaja649e9242019-03-04 11:09:40 +0530197 *
198 * Read value from ipi buffer response buffer.
Naman Trivedi Manojbhaibeec83f2023-03-07 12:41:12 +0530199 * @return Returns status, either success or error
Rajan Vaja649e9242019-03-04 11:09:40 +0530200 */
Naman Trivedi Manojbhaibeec83f2023-03-07 12:41:12 +0530201enum pm_ret_status pm_get_callbackdata(uint32_t *data, size_t count, uint32_t flag, uint32_t ack)
Rajan Vaja649e9242019-03-04 11:09:40 +0530202{
Naman Trivedi Manojbhaibeec83f2023-03-07 12:41:12 +0530203 enum pm_ret_status ret = PM_RET_SUCCESS;
Rajan Vaja649e9242019-03-04 11:09:40 +0530204 /* Return if interrupt is not from PMU */
Abhyuday Godhasara44877942021-08-05 02:59:26 -0700205 if (pm_ipi_irq_status(primary_proc) == 0) {
Naman Trivedi Manojbhaibeec83f2023-03-07 12:41:12 +0530206 return ret;
Abhyuday Godhasaraddc46622021-08-05 03:14:17 -0700207 }
Rajan Vaja649e9242019-03-04 11:09:40 +0530208
Naman Trivedi Manojbhaibeec83f2023-03-07 12:41:12 +0530209 ret = pm_ipi_buff_read_callb(data, count);
Tanmay Shahfdae9e82022-08-26 15:06:00 -0700210
211 if (ack != 0U) {
212 pm_ipi_irq_clear(primary_proc);
213 }
Naman Trivedi Manojbhaibeec83f2023-03-07 12:41:12 +0530214
215 return ret;
Rajan Vaja649e9242019-03-04 11:09:40 +0530216}
217
218/**
Tanmay Shahff34daa2021-08-09 11:00:41 -0700219 * pm_pll_set_param() - Set PLL parameter
Tejas Patel1f56fb12019-01-08 01:46:40 -0800220 *
Tanmay Shahff34daa2021-08-09 11:00:41 -0700221 * This API is deprecated and maintained here for backward compatibility.
222 * New use of this API should be avoided for versal platform.
223 * This API and its use cases will be removed for versal platform.
Tejas Patel84275bf2020-09-01 04:43:53 -0700224 *
Tejas Patel023116d2019-01-08 01:46:41 -0800225 * @clk_id PLL clock ID
226 * @param PLL parameter ID
227 * @value Value to set for PLL parameter
Tejas Patel18072da2021-02-25 20:16:56 -0800228 * @flag 0 - Call from secure source
229 * 1 - Call from non-secure source
Tejas Patel023116d2019-01-08 01:46:41 -0800230 *
231 * @return Returns status, either success or error+reason
232 */
233enum pm_ret_status pm_pll_set_param(uint32_t clk_id, uint32_t param,
Tejas Patel18072da2021-02-25 20:16:56 -0800234 uint32_t value, uint32_t flag)
Tejas Patel023116d2019-01-08 01:46:41 -0800235{
236 uint32_t payload[PAYLOAD_ARG_CNT];
237
238 /* Send request to the PMC */
Tejas Patel18072da2021-02-25 20:16:56 -0800239 PM_PACK_PAYLOAD4(payload, LIBPM_MODULE_ID, flag, PM_PLL_SET_PARAMETER,
240 clk_id, param, value);
Tejas Patel023116d2019-01-08 01:46:41 -0800241
242 return pm_ipi_send_sync(primary_proc, payload, NULL, 0);
243}
244
245/**
246 * pm_pll_get_param() - Get PLL parameter value
Tanmay Shahff34daa2021-08-09 11:00:41 -0700247 *
248 * This API is deprecated and maintained here for backward compatibility.
249 * New use of this API should be avoided for versal platform.
250 * This API and its use cases will be removed for versal platform.
251 *
Tejas Patel023116d2019-01-08 01:46:41 -0800252 * @clk_id PLL clock ID
253 * @param PLL parameter ID
254 * @value: Buffer to store PLL parameter value
Tejas Patel18072da2021-02-25 20:16:56 -0800255 * @flag 0 - Call from secure source
256 * 1 - Call from non-secure source
Tejas Patel023116d2019-01-08 01:46:41 -0800257 *
258 * @return Returns status, either success or error+reason
259 */
260enum pm_ret_status pm_pll_get_param(uint32_t clk_id, uint32_t param,
Tejas Patel18072da2021-02-25 20:16:56 -0800261 uint32_t *value, uint32_t flag)
Tejas Patel023116d2019-01-08 01:46:41 -0800262{
263 uint32_t payload[PAYLOAD_ARG_CNT];
264
265 /* Send request to the PMC */
Tejas Patel18072da2021-02-25 20:16:56 -0800266 PM_PACK_PAYLOAD3(payload, LIBPM_MODULE_ID, flag, PM_PLL_GET_PARAMETER,
267 clk_id, param);
Tejas Patel023116d2019-01-08 01:46:41 -0800268
269 return pm_ipi_send_sync(primary_proc, payload, value, 1);
270}
271
272/**
273 * pm_pll_set_mode() - Set PLL mode
Tanmay Shahff34daa2021-08-09 11:00:41 -0700274 *
275 * This API is deprecated and maintained here for backward compatibility.
276 * New use of this API should be avoided for versal platform.
277 * This API and its use cases will be removed for versal platform.
278 *
Tejas Patel023116d2019-01-08 01:46:41 -0800279 * @clk_id PLL clock ID
280 * @mode PLL mode
Tejas Patel18072da2021-02-25 20:16:56 -0800281 * @flag 0 - Call from secure source
282 * 1 - Call from non-secure source
Tejas Patel023116d2019-01-08 01:46:41 -0800283 *
284 * @return Returns status, either success or error+reason
285 */
Tejas Patel18072da2021-02-25 20:16:56 -0800286enum pm_ret_status pm_pll_set_mode(uint32_t clk_id, uint32_t mode,
287 uint32_t flag)
Tejas Patel023116d2019-01-08 01:46:41 -0800288{
289 uint32_t payload[PAYLOAD_ARG_CNT];
290
291 /* Send request to the PMC */
Tejas Patel18072da2021-02-25 20:16:56 -0800292 PM_PACK_PAYLOAD3(payload, LIBPM_MODULE_ID, flag, PM_PLL_SET_MODE,
293 clk_id, mode);
Tejas Patel023116d2019-01-08 01:46:41 -0800294
295 return pm_ipi_send_sync(primary_proc, payload, NULL, 0);
296}
297
298/**
299 * pm_pll_get_mode() - Get PLL mode
Tanmay Shahff34daa2021-08-09 11:00:41 -0700300 *
301 * This API is deprecated and maintained here for backward compatibility.
302 * New use of this API should be avoided for versal platform.
303 * This API and its use cases will be removed for versal platform.
304 *
Tejas Patel023116d2019-01-08 01:46:41 -0800305 * @clk_id PLL clock ID
306 * @mode: Buffer to store PLL mode
Tejas Patel18072da2021-02-25 20:16:56 -0800307 * @flag 0 - Call from secure source
308 * 1 - Call from non-secure source
Tejas Patel023116d2019-01-08 01:46:41 -0800309 *
310 * @return Returns status, either success or error+reason
311 */
Tejas Patel18072da2021-02-25 20:16:56 -0800312enum pm_ret_status pm_pll_get_mode(uint32_t clk_id, uint32_t *mode,
313 uint32_t flag)
Tejas Patel023116d2019-01-08 01:46:41 -0800314{
315 uint32_t payload[PAYLOAD_ARG_CNT];
316
317 /* Send request to the PMC */
Tejas Patel18072da2021-02-25 20:16:56 -0800318 PM_PACK_PAYLOAD2(payload, LIBPM_MODULE_ID, flag, PM_PLL_GET_MODE,
319 clk_id);
Tejas Patel023116d2019-01-08 01:46:41 -0800320
321 return pm_ipi_send_sync(primary_proc, payload, mode, 1);
322}
Tejas Patel6b282252019-01-10 03:03:47 -0800323
324/**
325 * pm_force_powerdown() - PM call to request for another PU or subsystem to
326 * be powered down forcefully
327 * @target Device ID of the PU node to be forced powered down.
328 * @ack Flag to specify whether acknowledge is requested
Tejas Patel18072da2021-02-25 20:16:56 -0800329 * @flag 0 - Call from secure source
330 * 1 - Call from non-secure source
Tejas Patel6b282252019-01-10 03:03:47 -0800331 *
332 * @return Returns status, either success or error+reason
333 */
Tejas Patel18072da2021-02-25 20:16:56 -0800334enum pm_ret_status pm_force_powerdown(uint32_t target, uint8_t ack,
335 uint32_t flag)
Tejas Patel6b282252019-01-10 03:03:47 -0800336{
337 uint32_t payload[PAYLOAD_ARG_CNT];
338
339 /* Send request to the PMC */
Tejas Patel18072da2021-02-25 20:16:56 -0800340 PM_PACK_PAYLOAD3(payload, LIBPM_MODULE_ID, flag, PM_FORCE_POWERDOWN,
341 target, ack);
Tejas Patel6b282252019-01-10 03:03:47 -0800342
Abhyuday Godhasaraddc46622021-08-05 03:14:17 -0700343 if (ack == IPI_BLOCKING) {
Tejas Patel6b282252019-01-10 03:03:47 -0800344 return pm_ipi_send_sync(primary_proc, payload, NULL, 0);
Abhyuday Godhasaraddc46622021-08-05 03:14:17 -0700345 } else {
Tejas Patel6b282252019-01-10 03:03:47 -0800346 return pm_ipi_send(primary_proc, payload);
Abhyuday Godhasaraddc46622021-08-05 03:14:17 -0700347 }
Tejas Patel6b282252019-01-10 03:03:47 -0800348}
349
350/**
351 * pm_system_shutdown() - PM call to request a system shutdown or restart
Saeed Nowshadic5a1bda2019-12-08 23:35:35 -0800352 * @type Shutdown or restart? 0=shutdown, 1=restart, 2=setscope
Tejas Patel6b282252019-01-10 03:03:47 -0800353 * @subtype Scope: 0=APU-subsystem, 1=PS, 2=system
Tejas Patel18072da2021-02-25 20:16:56 -0800354 * @flag 0 - Call from secure source
355 * 1 - Call from non-secure source
Tejas Patel6b282252019-01-10 03:03:47 -0800356 *
357 * @return Returns status, either success or error+reason
358 */
Tejas Patel18072da2021-02-25 20:16:56 -0800359enum pm_ret_status pm_system_shutdown(uint32_t type, uint32_t subtype,
360 uint32_t flag)
Tejas Patel6b282252019-01-10 03:03:47 -0800361{
362 uint32_t payload[PAYLOAD_ARG_CNT];
363
Saeed Nowshadic5a1bda2019-12-08 23:35:35 -0800364 if (type == XPM_SHUTDOWN_TYPE_SETSCOPE_ONLY) {
365 /* Setting scope for subsequent PSCI reboot or shutdown */
366 pm_shutdown_scope = subtype;
367 return PM_RET_SUCCESS;
368 }
369
Tejas Patel6b282252019-01-10 03:03:47 -0800370 /* Send request to the PMC */
Tejas Patel18072da2021-02-25 20:16:56 -0800371 PM_PACK_PAYLOAD3(payload, LIBPM_MODULE_ID, flag, PM_SYSTEM_SHUTDOWN,
372 type, subtype);
Tejas Patel6b282252019-01-10 03:03:47 -0800373
374 return pm_ipi_send_non_blocking(primary_proc, payload);
375}
Tejas Patel9141f442019-01-10 03:03:48 -0800376
377/**
Tanmay Shahff34daa2021-08-09 11:00:41 -0700378 * pm_query_data() - PM API for querying firmware data
379 *
380 * This API is deprecated and maintained here for backward compatibility.
381 * New use of this API should be avoided for versal platform.
382 * This API and its use cases will be removed for versal platform.
383 *
384 * @qid The type of data to query
385 * @arg1 Argument 1 to requested query data call
386 * @arg2 Argument 2 to requested query data call
387 * @arg3 Argument 3 to requested query data call
388 * @data Returned output data
389 * @flag 0 - Call from secure source
390 * 1 - Call from non-secure source
391 *
392 * @retur - 0 if success else non-zero error code of type
393 * enum pm_ret_status
394 */
Tejas Patela3e34ad2019-02-01 17:25:19 +0530395enum pm_ret_status pm_query_data(uint32_t qid, uint32_t arg1, uint32_t arg2,
Tejas Patel18072da2021-02-25 20:16:56 -0800396 uint32_t arg3, uint32_t *data, uint32_t flag)
Tejas Patela3e34ad2019-02-01 17:25:19 +0530397{
Rajan Vaja030620d2020-11-23 04:13:54 -0800398 uint32_t ret;
Tanmay Shahff34daa2021-08-09 11:00:41 -0700399 uint32_t version[PAYLOAD_ARG_CNT] = {0};
Tejas Patela3e34ad2019-02-01 17:25:19 +0530400 uint32_t payload[PAYLOAD_ARG_CNT];
Rajan Vaja030620d2020-11-23 04:13:54 -0800401 uint32_t fw_api_version;
Tejas Patela3e34ad2019-02-01 17:25:19 +0530402
403 /* Send request to the PMC */
Tejas Patel18072da2021-02-25 20:16:56 -0800404 PM_PACK_PAYLOAD5(payload, LIBPM_MODULE_ID, flag, PM_QUERY_DATA, qid,
405 arg1, arg2, arg3);
Rajan Vaja030620d2020-11-23 04:13:54 -0800406
Tanmay Shahff34daa2021-08-09 11:00:41 -0700407 ret = pm_feature_check(PM_QUERY_DATA, &version[0], flag);
408 if (ret == PM_RET_SUCCESS) {
Venkatesh Yadav Abbarapua0657d92022-07-20 09:03:22 +0530409 fw_api_version = version[0] & 0xFFFFU;
Tanmay Shahff34daa2021-08-09 11:00:41 -0700410 if ((fw_api_version == 2U) &&
411 ((qid == XPM_QID_CLOCK_GET_NAME) ||
412 (qid == XPM_QID_PINCTRL_GET_FUNCTION_NAME))) {
413 ret = pm_ipi_send_sync(primary_proc, payload, data, PAYLOAD_ARG_CNT);
414 if (ret == PM_RET_SUCCESS) {
415 ret = data[0];
416 data[0] = data[1];
417 data[1] = data[2];
418 data[2] = data[3];
419 }
Rajan Vaja030620d2020-11-23 04:13:54 -0800420 } else {
Tanmay Shahff34daa2021-08-09 11:00:41 -0700421 ret = pm_ipi_send_sync(primary_proc, payload, data, PAYLOAD_ARG_CNT);
Rajan Vaja030620d2020-11-23 04:13:54 -0800422 }
423 }
424 return ret;
Tejas Patela3e34ad2019-02-01 17:25:19 +0530425}
426/**
Tejas Patel9141f442019-01-10 03:03:48 -0800427 * pm_api_ioctl() - PM IOCTL API for device control and configs
Tanmay Shahff34daa2021-08-09 11:00:41 -0700428 *
429 * This API is deprecated and maintained here for backward compatibility.
430 * New use of this API should be avoided for versal platform.
431 * This API and its use cases will be removed for versal platform.
432 *
Tejas Patel9141f442019-01-10 03:03:48 -0800433 * @device_id Device ID
434 * @ioctl_id ID of the requested IOCTL
435 * @arg1 Argument 1 to requested IOCTL call
436 * @arg2 Argument 2 to requested IOCTL call
Venkatesh Yadav Abbarapu4b233392021-10-20 22:11:53 -0600437 * @arg3 Argument 3 to requested IOCTL call
Tejas Patel9141f442019-01-10 03:03:48 -0800438 * @value Returned output value
Tejas Patel18072da2021-02-25 20:16:56 -0800439 * @flag 0 - Call from secure source
440 * 1 - Call from non-secure source
Tejas Patel9141f442019-01-10 03:03:48 -0800441 *
442 * This function calls IOCTL to firmware for device control and configuration.
443 *
Tanmay Shahff34daa2021-08-09 11:00:41 -0700444 * @return Returns status, either 0 on success or non-zero error code
445 * of type enum pm_ret_status
Tejas Patel9141f442019-01-10 03:03:48 -0800446 */
447enum pm_ret_status pm_api_ioctl(uint32_t device_id, uint32_t ioctl_id,
Venkatesh Yadav Abbarapu4b233392021-10-20 22:11:53 -0600448 uint32_t arg1, uint32_t arg2, uint32_t arg3,
449 uint32_t *value, uint32_t flag)
Tejas Patel9141f442019-01-10 03:03:48 -0800450{
Abhyuday Godhasara95374b42021-08-05 07:07:35 -0700451 enum pm_ret_status ret;
Tejas Patel9141f442019-01-10 03:03:48 -0800452
453 switch (ioctl_id) {
454 case IOCTL_SET_PLL_FRAC_MODE:
Abhyuday Godhasara95374b42021-08-05 07:07:35 -0700455 ret = pm_pll_set_mode(arg1, arg2, flag);
456 break;
Tejas Patel9141f442019-01-10 03:03:48 -0800457 case IOCTL_GET_PLL_FRAC_MODE:
Abhyuday Godhasara95374b42021-08-05 07:07:35 -0700458 ret = pm_pll_get_mode(arg1, value, flag);
459 break;
Tejas Patel9141f442019-01-10 03:03:48 -0800460 case IOCTL_SET_PLL_FRAC_DATA:
Abhyuday Godhasara95374b42021-08-05 07:07:35 -0700461 ret = pm_pll_set_param(arg1, PM_PLL_PARAM_DATA, arg2, flag);
462 break;
Tejas Patel9141f442019-01-10 03:03:48 -0800463 case IOCTL_GET_PLL_FRAC_DATA:
Abhyuday Godhasara95374b42021-08-05 07:07:35 -0700464 ret = pm_pll_get_param(arg1, PM_PLL_PARAM_DATA, value, flag);
465 break;
Venkatesh Yadav Abbarapuaa4898a2021-03-31 03:07:40 -0600466 case IOCTL_SET_SGI:
467 /* Get the sgi number */
Venkatesh Yadav Abbarapuc8bbedc2021-04-19 07:49:57 -0600468 ret = pm_register_sgi(arg1, arg2);
469 if (ret != 0) {
Venkatesh Yadav Abbarapuaa4898a2021-03-31 03:07:40 -0600470 return PM_RET_ERROR_ARGS;
471 }
Michal Simek89e3c292022-08-04 14:08:32 +0200472 ret = PM_RET_SUCCESS;
Abhyuday Godhasara95374b42021-08-05 07:07:35 -0700473 break;
Tejas Patel9141f442019-01-10 03:03:48 -0800474 default:
Tanmay Shahff34daa2021-08-09 11:00:41 -0700475 return PM_RET_ERROR_NOTSUPPORTED;
Tejas Patel9141f442019-01-10 03:03:48 -0800476 }
Abhyuday Godhasara95374b42021-08-05 07:07:35 -0700477
478 return ret;
Tejas Patel9141f442019-01-10 03:03:48 -0800479}
Tejas Pateldb812052019-01-23 14:18:53 +0530480
481/**
482 * pm_set_wakeup_source() - PM call to specify the wakeup source while suspended
483 * @target Device id of the targeted PU or subsystem
484 * @wkup_node Device id of the wakeup peripheral
485 * @enable Enable or disable the specified peripheral as wake source
Tejas Patel18072da2021-02-25 20:16:56 -0800486 * @flag 0 - Call from secure source
487 * 1 - Call from non-secure source
Tejas Pateldb812052019-01-23 14:18:53 +0530488 *
489 * @return Returns status, either success or error+reason
490 */
491enum pm_ret_status pm_set_wakeup_source(uint32_t target, uint32_t wkup_device,
Tejas Patel18072da2021-02-25 20:16:56 -0800492 uint8_t enable, uint32_t flag)
Tejas Pateldb812052019-01-23 14:18:53 +0530493{
494 uint32_t payload[PAYLOAD_ARG_CNT];
495
Tejas Patel18072da2021-02-25 20:16:56 -0800496 PM_PACK_PAYLOAD4(payload, LIBPM_MODULE_ID, flag, PM_SET_WAKEUP_SOURCE,
497 target, wkup_device, enable);
Abhyuday Godhasara7ae761b2021-06-24 05:50:44 -0700498 return pm_ipi_send_sync(primary_proc, payload, NULL, 0);
Tejas Pateldb812052019-01-23 14:18:53 +0530499}
Ravi Patel22b0b492019-03-06 12:34:46 +0530500
501/**
502 * pm_feature_check() - Returns the supported API version if supported
503 * @api_id API ID to check
Tejas Patel18072da2021-02-25 20:16:56 -0800504 * @flag 0 - Call from secure source
505 * 1 - Call from non-secure source
Ronak Jain70d1c582022-02-04 00:42:55 -0800506 * @ret_payload pointer to array of PAYLOAD_ARG_CNT number of
507 * words Returned supported API version and bitmasks
508 * for IOCTL and QUERY ID
Ravi Patel22b0b492019-03-06 12:34:46 +0530509 *
510 * @return Returns status, either success or error+reason
511 */
Ronak Jain70d1c582022-02-04 00:42:55 -0800512enum pm_ret_status pm_feature_check(uint32_t api_id, uint32_t *ret_payload,
Tejas Patel18072da2021-02-25 20:16:56 -0800513 uint32_t flag)
Ravi Patel22b0b492019-03-06 12:34:46 +0530514{
Ronak Jain70d1c582022-02-04 00:42:55 -0800515 uint32_t payload[PAYLOAD_ARG_CNT];
Tanmay Shahff34daa2021-08-09 11:00:41 -0700516 uint32_t module_id;
517
Ronak Jain70d1c582022-02-04 00:42:55 -0800518 /* Return version of API which are implemented in ATF only */
Ravi Patel22b0b492019-03-06 12:34:46 +0530519 switch (api_id) {
520 case PM_GET_CALLBACK_DATA:
521 case PM_GET_TRUSTZONE_VERSION:
Ronak Jain70d1c582022-02-04 00:42:55 -0800522 ret_payload[0] = PM_API_VERSION_2;
523 return PM_RET_SUCCESS;
Tanmay Shah5e3af332022-08-26 15:13:48 -0700524 case TF_A_PM_REGISTER_SGI:
Ronak Jain70d1c582022-02-04 00:42:55 -0800525 ret_payload[0] = PM_API_BASE_VERSION;
Tanmay Shahff34daa2021-08-09 11:00:41 -0700526 return PM_RET_SUCCESS;
Ravi Patel22b0b492019-03-06 12:34:46 +0530527 default:
Abhyuday Godhasara95374b42021-08-05 07:07:35 -0700528 break;
529 }
530
Venkatesh Yadav Abbarapua0657d92022-07-20 09:03:22 +0530531 module_id = (api_id & MODULE_ID_MASK) >> 8U;
Ravi Patel22b0b492019-03-06 12:34:46 +0530532
Ronak Jain70d1c582022-02-04 00:42:55 -0800533 /*
534 * feature check should be done only for LIBPM module
535 * If module_id is 0, then we consider it LIBPM module as default id
536 */
537 if ((module_id > 0) && (module_id != LIBPM_MODULE_ID)) {
538 return PM_RET_SUCCESS;
Abhyuday Godhasaraddc46622021-08-05 03:14:17 -0700539 }
Ravi Patel22b0b492019-03-06 12:34:46 +0530540
Ronak Jain70d1c582022-02-04 00:42:55 -0800541 PM_PACK_PAYLOAD2(payload, LIBPM_MODULE_ID, flag,
542 PM_FEATURE_CHECK, api_id);
543 return pm_ipi_send_sync(primary_proc, payload, ret_payload, PAYLOAD_ARG_CNT);
Ravi Patel22b0b492019-03-06 12:34:46 +0530544}
Jolly Shahed05a712019-03-22 05:33:39 +0530545
546/**
547 * pm_load_pdi() - Load the PDI
548 *
549 * This function provides support to load PDI from linux
550 *
551 * src: Source device of pdi(DDR, OCM, SD etc)
552 * address_low: lower 32-bit Linear memory space address
553 * address_high: higher 32-bit Linear memory space address
Tejas Patel18072da2021-02-25 20:16:56 -0800554 * @flag 0 - Call from secure source
555 * 1 - Call from non-secure source
Jolly Shahed05a712019-03-22 05:33:39 +0530556 *
557 * @return Returns status, either success or error+reason
558 */
Tejas Patel18072da2021-02-25 20:16:56 -0800559enum pm_ret_status pm_load_pdi(uint32_t src, uint32_t address_low,
560 uint32_t address_high, uint32_t flag)
Jolly Shahed05a712019-03-22 05:33:39 +0530561{
562 uint32_t payload[PAYLOAD_ARG_CNT];
563
564 /* Send request to the PMU */
Tejas Patel18072da2021-02-25 20:16:56 -0800565 PM_PACK_PAYLOAD4(payload, LOADER_MODULE_ID, flag, PM_LOAD_PDI, src,
Jolly Shahed05a712019-03-22 05:33:39 +0530566 address_high, address_low);
567 return pm_ipi_send_sync(primary_proc, payload, NULL, 0);
568}
Saeed Nowshadi2294b422019-06-03 10:22:35 -0700569
570/**
Tejas Patel42015552020-11-25 01:56:57 -0800571 * pm_register_notifier() - PM call to register a subsystem to be notified
572 * about the device event
573 * @device_id Device ID for the Node to which the event is related
574 * @event Event in question
575 * @wake Wake subsystem upon capturing the event if value 1
576 * @enable Enable the registration for value 1, disable for value 0
Tejas Patel18072da2021-02-25 20:16:56 -0800577 * @flag 0 - Call from secure source
578 * 1 - Call from non-secure source
Tejas Patel42015552020-11-25 01:56:57 -0800579 *
580 * @return Returns status, either success or error+reason
581 */
582enum pm_ret_status pm_register_notifier(uint32_t device_id, uint32_t event,
Tejas Patel18072da2021-02-25 20:16:56 -0800583 uint32_t wake, uint32_t enable,
584 uint32_t flag)
Tejas Patel42015552020-11-25 01:56:57 -0800585{
586 uint32_t payload[PAYLOAD_ARG_CNT];
587
588 /* Send request to the PMC */
Tejas Patel18072da2021-02-25 20:16:56 -0800589 PM_PACK_PAYLOAD5(payload, LIBPM_MODULE_ID, flag, PM_REGISTER_NOTIFIER,
Tejas Patel42015552020-11-25 01:56:57 -0800590 device_id, event, wake, enable);
591
592 return pm_ipi_send_sync(primary_proc, payload, NULL, 0);
593}