blob: 0f0d2b07c00597bcb3a7534cb1cb0ed18f76a640 [file] [log] [blame]
Rajan Vaja14723ed2019-02-15 04:45:32 -08001// SPDX-License-Identifier: GPL-2.0
Ibai Erkiaga1327d162019-09-27 12:51:41 +02002/*
3 * Xilinx Zynq MPSoC Firmware driver
4 *
5 * Copyright (C) 2018-2019 Xilinx, Inc.
6 */
Rajan Vaja14723ed2019-02-15 04:45:32 -08007
Ibai Erkiaga1327d162019-09-27 12:51:41 +02008#include <common.h>
Michal Simek380bd082021-11-18 13:00:02 +01009#include <cpu_func.h>
Rajan Vaja14723ed2019-02-15 04:45:32 -080010#include <dm.h>
Michal Simeke0283cb2022-02-07 10:27:37 +010011#include <dm/lists.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Michal Simek866225f2019-10-04 15:45:29 +020013#include <zynqmp_firmware.h>
Simon Glass90526e92020-05-10 11:39:56 -060014#include <asm/cache.h>
Simon Glass25a58182020-05-10 11:40:06 -060015#include <asm/ptrace.h>
Rajan Vaja14723ed2019-02-15 04:45:32 -080016
Ibai Erkiaga1327d162019-09-27 12:51:41 +020017#if defined(CONFIG_ZYNQMP_IPI)
18#include <mailbox.h>
19#include <asm/arch/sys_proto.h>
20
Ibai Erkiaga490f6272019-09-27 11:37:00 +010021#define PMUFW_PAYLOAD_ARG_CNT 8
22
Michal Simek4c86e082020-04-27 11:51:40 +020023#define XST_PM_NO_ACCESS 2002L
Michal Simek11c07712022-01-14 13:25:37 +010024#define XST_PM_ALREADY_CONFIGURED 2009L
Michal Simek4c86e082020-04-27 11:51:40 +020025
Ibai Erkiaga1327d162019-09-27 12:51:41 +020026struct zynqmp_power {
27 struct mbox_chan tx_chan;
28 struct mbox_chan rx_chan;
29} zynqmp_power;
30
Michal Simekc750c6d2022-01-14 13:25:35 +010031#define NODE_ID_LOCATION 5
32
33static unsigned int xpm_configobject[] = {
34 /**********************************************************************/
35 /* HEADER */
36 2, /* Number of remaining words in the header */
37 1, /* Number of sections included in config object */
38 PM_CONFIG_OBJECT_TYPE_OVERLAY, /* Type of Config object as overlay */
39 /**********************************************************************/
40 /* SLAVE SECTION */
41
42 PM_CONFIG_SLAVE_SECTION_ID, /* Section ID */
43 1, /* Number of slaves */
44
45 0, /* Node ID which will be changed below */
46 PM_SLAVE_FLAG_IS_SHAREABLE,
47 PM_CONFIG_IPI_PSU_CORTEXA53_0_MASK |
48 PM_CONFIG_IPI_PSU_CORTEXR5_0_MASK |
49 PM_CONFIG_IPI_PSU_CORTEXR5_1_MASK, /* IPI Mask */
50};
51
Michal Simekfac46bc2022-01-14 13:25:38 +010052static unsigned int xpm_configobject_close[] = {
53 /**********************************************************************/
54 /* HEADER */
55 2, /* Number of remaining words in the header */
56 1, /* Number of sections included in config object */
57 PM_CONFIG_OBJECT_TYPE_OVERLAY, /* Type of Config object as overlay */
58 /**********************************************************************/
59 /* SET CONFIG SECTION */
60 PM_CONFIG_SET_CONFIG_SECTION_ID,
61 0U, /* Loading permission to Overlay config object */
62};
63
64int zynqmp_pmufw_config_close(void)
65{
66 zynqmp_pmufw_load_config_object(xpm_configobject_close,
67 sizeof(xpm_configobject_close));
68 return 0;
69}
70
Michal Simekc750c6d2022-01-14 13:25:35 +010071int zynqmp_pmufw_node(u32 id)
72{
73 /* Record power domain id */
74 xpm_configobject[NODE_ID_LOCATION] = id;
75
76 zynqmp_pmufw_load_config_object(xpm_configobject,
77 sizeof(xpm_configobject));
78
79 return 0;
80}
81
Ibai Erkiaga490f6272019-09-27 11:37:00 +010082static int ipi_req(const u32 *req, size_t req_len, u32 *res, size_t res_maxlen)
83{
84 struct zynqmp_ipi_msg msg;
85 int ret;
Michal Simek53f5d162021-10-15 16:57:39 +020086 u32 buffer[PAYLOAD_ARG_CNT];
87
88 if (!res)
89 res = buffer;
Ibai Erkiaga490f6272019-09-27 11:37:00 +010090
91 if (req_len > PMUFW_PAYLOAD_ARG_CNT ||
92 res_maxlen > PMUFW_PAYLOAD_ARG_CNT)
93 return -EINVAL;
94
95 if (!(zynqmp_power.tx_chan.dev) || !(&zynqmp_power.rx_chan.dev))
96 return -EINVAL;
97
Ibai Erkiaga2eabb6b2020-08-04 23:17:27 +010098 debug("%s, Sending IPI message with ID: 0x%0x\n", __func__, req[0]);
Ibai Erkiaga490f6272019-09-27 11:37:00 +010099 msg.buf = (u32 *)req;
100 msg.len = req_len;
101 ret = mbox_send(&zynqmp_power.tx_chan, &msg);
102 if (ret) {
103 debug("%s: Sending message failed\n", __func__);
104 return ret;
105 }
106
107 msg.buf = res;
108 msg.len = res_maxlen;
109 ret = mbox_recv(&zynqmp_power.rx_chan, &msg, 100);
110 if (ret)
111 debug("%s: Receiving message failed\n", __func__);
112
113 return ret;
114}
115
116unsigned int zynqmp_firmware_version(void)
117{
118 int ret;
119 u32 ret_payload[PAYLOAD_ARG_CNT];
120 static u32 pm_api_version = ZYNQMP_PM_VERSION_INVALID;
121
122 /*
123 * Get PMU version only once and later
124 * just return stored values instead of
125 * asking PMUFW again.
126 **/
127 if (pm_api_version == ZYNQMP_PM_VERSION_INVALID) {
Ibai Erkiaga490f6272019-09-27 11:37:00 +0100128
Ibai Erkiaga2eabb6b2020-08-04 23:17:27 +0100129 ret = xilinx_pm_request(PM_GET_API_VERSION, 0, 0, 0, 0,
130 ret_payload);
Ibai Erkiaga490f6272019-09-27 11:37:00 +0100131 if (ret)
132 panic("PMUFW is not found - Please load it!\n");
133
134 pm_api_version = ret_payload[1];
135 if (pm_api_version < ZYNQMP_PM_VERSION)
136 panic("PMUFW version error. Expected: v%d.%d\n",
137 ZYNQMP_PM_VERSION_MAJOR, ZYNQMP_PM_VERSION_MINOR);
138 }
139
140 return pm_api_version;
141};
142
T Karthik Reddy7011efc2022-03-30 11:07:57 +0200143int zynqmp_pm_set_gem_config(u32 node, enum pm_gem_config_type config, u32 value)
144{
145 int ret;
146
147 ret = xilinx_pm_request(PM_IOCTL, node, IOCTL_SET_GEM_CONFIG,
148 config, value, NULL);
149 if (ret)
150 printf("%s: node %d: set_gem_config %d failed\n",
151 __func__, node, config);
152
153 return ret;
154}
155
Ashok Reddy Soma7d9ee462022-02-23 15:36:03 +0100156int zynqmp_pm_set_sd_config(u32 node, enum pm_sd_config_type config, u32 value)
157{
158 int ret;
159
160 ret = xilinx_pm_request(PM_IOCTL, node, IOCTL_SET_SD_CONFIG,
161 config, value, NULL);
162 if (ret)
163 printf("%s: node %d: set_sd_config %d failed\n",
164 __func__, node, config);
165
166 return ret;
167}
168
169int zynqmp_pm_is_function_supported(const u32 api_id, const u32 id)
170{
171 int ret;
172 u32 *bit_mask;
173 u32 ret_payload[PAYLOAD_ARG_CNT];
174
175 /* Input arguments validation */
176 if (id >= 64 || (api_id != PM_IOCTL && api_id != PM_QUERY_DATA))
177 return -EINVAL;
178
179 /* Check feature check API version */
180 ret = xilinx_pm_request(PM_FEATURE_CHECK, PM_FEATURE_CHECK, 0, 0, 0,
181 ret_payload);
182 if (ret)
183 return ret;
184
185 /* Check if feature check version 2 is supported or not */
186 if ((ret_payload[1] & FIRMWARE_VERSION_MASK) == PM_API_VERSION_2) {
187 /*
188 * Call feature check for IOCTL/QUERY API to get IOCTL ID or
189 * QUERY ID feature status.
190 */
191
192 ret = xilinx_pm_request(PM_FEATURE_CHECK, api_id, 0, 0, 0,
193 ret_payload);
194 if (ret)
195 return ret;
196
197 bit_mask = &ret_payload[2];
198 if ((bit_mask[(id / 32)] & BIT((id % 32))) == 0)
199 return -EOPNOTSUPP;
200 } else {
201 return -ENODATA;
202 }
203
204 return 0;
205}
206
Michal Simeka3e552b2019-09-27 14:20:00 +0200207/**
208 * Send a configuration object to the PMU firmware.
209 *
210 * @cfg_obj: Pointer to the configuration object
211 * @size: Size of @cfg_obj in bytes
212 */
213void zynqmp_pmufw_load_config_object(const void *cfg_obj, size_t size)
214{
Michal Simeka3e552b2019-09-27 14:20:00 +0200215 int err;
Ibai Erkiaga2eabb6b2020-08-04 23:17:27 +0100216 u32 ret_payload[PAYLOAD_ARG_CNT];
Michal Simeka3e552b2019-09-27 14:20:00 +0200217
Michal Simek12662e72022-01-14 13:25:36 +0100218 if (IS_ENABLED(CONFIG_SPL_BUILD))
219 printf("Loading new PMUFW cfg obj (%ld bytes)\n", size);
Michal Simeka3e552b2019-09-27 14:20:00 +0200220
Michal Simek380bd082021-11-18 13:00:02 +0100221 flush_dcache_range((ulong)cfg_obj, (ulong)(cfg_obj + size));
222
Ibai Erkiaga2eabb6b2020-08-04 23:17:27 +0100223 err = xilinx_pm_request(PM_SET_CONFIGURATION, (u32)(u64)cfg_obj, 0, 0,
224 0, ret_payload);
Michal Simek4c86e082020-04-27 11:51:40 +0200225 if (err == XST_PM_NO_ACCESS) {
226 printf("PMUFW no permission to change config object\n");
227 return;
228 }
229
Michal Simek11c07712022-01-14 13:25:37 +0100230 if (err == XST_PM_ALREADY_CONFIGURED) {
231 debug("PMUFW Node is already configured\n");
232 return;
233 }
234
Michal Simeka3e552b2019-09-27 14:20:00 +0200235 if (err)
Michal Simek4c86e082020-04-27 11:51:40 +0200236 printf("Cannot load PMUFW configuration object (%d)\n", err);
237
Ibai Erkiaga2eabb6b2020-08-04 23:17:27 +0100238 if (ret_payload[0])
239 printf("PMUFW returned 0x%08x status!\n", ret_payload[0]);
Michal Simek4c86e082020-04-27 11:51:40 +0200240
Ibai Erkiaga2eabb6b2020-08-04 23:17:27 +0100241 if ((err || ret_payload[0]) && IS_ENABLED(CONFIG_SPL_BUILD))
Michal Simek4c86e082020-04-27 11:51:40 +0200242 panic("PMUFW config object loading failed in EL3\n");
Michal Simeka3e552b2019-09-27 14:20:00 +0200243}
244
Ibai Erkiaga1327d162019-09-27 12:51:41 +0200245static int zynqmp_power_probe(struct udevice *dev)
246{
Michal Simek44dccd52019-10-10 11:26:16 +0200247 int ret;
Ibai Erkiaga1327d162019-09-27 12:51:41 +0200248
249 debug("%s, (dev=%p)\n", __func__, dev);
250
251 ret = mbox_get_by_name(dev, "tx", &zynqmp_power.tx_chan);
252 if (ret) {
Michal Simek44dccd52019-10-10 11:26:16 +0200253 debug("%s: Cannot find tx mailbox\n", __func__);
Ibai Erkiaga1327d162019-09-27 12:51:41 +0200254 return ret;
255 }
256
257 ret = mbox_get_by_name(dev, "rx", &zynqmp_power.rx_chan);
Ibai Erkiaga490f6272019-09-27 11:37:00 +0100258 if (ret) {
Michal Simek44dccd52019-10-10 11:26:16 +0200259 debug("%s: Cannot find rx mailbox\n", __func__);
Ibai Erkiaga490f6272019-09-27 11:37:00 +0100260 return ret;
261 }
Ibai Erkiaga1327d162019-09-27 12:51:41 +0200262
Ibai Erkiaga490f6272019-09-27 11:37:00 +0100263 ret = zynqmp_firmware_version();
264 printf("PMUFW:\tv%d.%d\n",
265 ret >> ZYNQMP_PM_VERSION_MAJOR_SHIFT,
266 ret & ZYNQMP_PM_VERSION_MINOR_MASK);
267
268 return 0;
Ibai Erkiaga1327d162019-09-27 12:51:41 +0200269};
270
271static const struct udevice_id zynqmp_power_ids[] = {
272 { .compatible = "xlnx,zynqmp-power" },
273 { }
274};
275
276U_BOOT_DRIVER(zynqmp_power) = {
277 .name = "zynqmp_power",
278 .id = UCLASS_FIRMWARE,
279 .of_match = zynqmp_power_ids,
280 .probe = zynqmp_power_probe,
281};
282#endif
283
Michal Simek40361952019-10-04 15:35:45 +0200284int __maybe_unused xilinx_pm_request(u32 api_id, u32 arg0, u32 arg1, u32 arg2,
285 u32 arg3, u32 *ret_payload)
Michal Simek866225f2019-10-04 15:45:29 +0200286{
Ibai Erkiaga2eabb6b2020-08-04 23:17:27 +0100287 debug("%s at EL%d, API ID: 0x%0x\n", __func__, current_el(), api_id);
Michal Simek866225f2019-10-04 15:45:29 +0200288
Ibai Erkiaga2eabb6b2020-08-04 23:17:27 +0100289 if (IS_ENABLED(CONFIG_SPL_BUILD) || current_el() == 3) {
290#if defined(CONFIG_ZYNQMP_IPI)
291 /*
292 * Use fixed payload and arg size as the EL2 call. The firmware
293 * is capable to handle PMUFW_PAYLOAD_ARG_CNT bytes but the
294 * firmware API is limited by the SMC call size
295 */
296 u32 regs[] = {api_id, arg0, arg1, arg2, arg3};
Michal Simekb05cc382021-10-15 16:57:38 +0200297 int ret;
Ibai Erkiaga2eabb6b2020-08-04 23:17:27 +0100298
Michal Simek56901282020-10-05 15:23:28 +0200299 if (api_id == PM_FPGA_LOAD) {
300 /* Swap addr_hi/low because of incompatibility */
301 u32 temp = regs[1];
302
303 regs[1] = regs[2];
304 regs[2] = temp;
305 }
306
Michal Simekb05cc382021-10-15 16:57:38 +0200307 ret = ipi_req(regs, PAYLOAD_ARG_CNT, ret_payload,
308 PAYLOAD_ARG_CNT);
309 if (ret)
310 return ret;
Ibai Erkiaga2eabb6b2020-08-04 23:17:27 +0100311#else
Michal Simek9bed8a62019-10-10 11:09:15 +0200312 return -EPERM;
Ibai Erkiaga2eabb6b2020-08-04 23:17:27 +0100313#endif
314 } else {
315 /*
316 * Added SIP service call Function Identifier
317 * Make sure to stay in x0 register
318 */
319 struct pt_regs regs;
320
321 regs.regs[0] = PM_SIP_SVC | api_id;
322 regs.regs[1] = ((u64)arg1 << 32) | arg0;
323 regs.regs[2] = ((u64)arg3 << 32) | arg2;
324
325 smc_call(&regs);
326
327 if (ret_payload) {
328 ret_payload[0] = (u32)regs.regs[0];
329 ret_payload[1] = upper_32_bits(regs.regs[0]);
330 ret_payload[2] = (u32)regs.regs[1];
331 ret_payload[3] = upper_32_bits(regs.regs[1]);
332 ret_payload[4] = (u32)regs.regs[2];
333 }
334
Michal Simek9bed8a62019-10-10 11:09:15 +0200335 }
Ibai Erkiaga2eabb6b2020-08-04 23:17:27 +0100336 return (ret_payload) ? ret_payload[0] : 0;
Michal Simek866225f2019-10-04 15:45:29 +0200337}
338
Rajan Vaja14723ed2019-02-15 04:45:32 -0800339static const struct udevice_id zynqmp_firmware_ids[] = {
340 { .compatible = "xlnx,zynqmp-firmware" },
Siva Durga Prasad Paladugu95105082019-06-23 12:24:57 +0530341 { .compatible = "xlnx,versal-firmware"},
Rajan Vaja14723ed2019-02-15 04:45:32 -0800342 { }
343};
344
Michal Simeke0283cb2022-02-07 10:27:37 +0100345static int zynqmp_firmware_bind(struct udevice *dev)
346{
347 int ret;
348 struct udevice *child;
349
Michal Simekf307c682022-02-28 17:13:15 +0100350 if ((IS_ENABLED(CONFIG_SPL_BUILD) &&
351 IS_ENABLED(CONFIG_SPL_POWER_DOMAIN) &&
352 IS_ENABLED(CONFIG_ZYNQMP_POWER_DOMAIN)) ||
353 (!IS_ENABLED(CONFIG_SPL_BUILD) &&
354 IS_ENABLED(CONFIG_ZYNQMP_POWER_DOMAIN))) {
Michal Simeke0283cb2022-02-07 10:27:37 +0100355 ret = device_bind_driver_to_node(dev, "zynqmp_power_domain",
356 "zynqmp_power_domain",
357 dev_ofnode(dev), &child);
358 if (ret) {
359 printf("zynqmp power domain driver is not bound: %d\n", ret);
360 return ret;
361 }
362 }
363
364 return dm_scan_fdt_dev(dev);
365}
366
Rajan Vaja14723ed2019-02-15 04:45:32 -0800367U_BOOT_DRIVER(zynqmp_firmware) = {
368 .id = UCLASS_FIRMWARE,
Michal Simek6c0e59f2020-01-07 08:50:34 +0100369 .name = "zynqmp_firmware",
Rajan Vaja14723ed2019-02-15 04:45:32 -0800370 .of_match = zynqmp_firmware_ids,
Michal Simeke0283cb2022-02-07 10:27:37 +0100371 .bind = zynqmp_firmware_bind,
Rajan Vaja14723ed2019-02-15 04:45:32 -0800372};