Merge tag 'u-boot-imx-20200825' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx
[platform/kernel/u-boot.git] / drivers / firmware / firmware-zynqmp.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Xilinx Zynq MPSoC Firmware driver
4  *
5  * Copyright (C) 2018-2019 Xilinx, Inc.
6  */
7
8 #include <common.h>
9 #include <dm.h>
10 #include <log.h>
11 #include <zynqmp_firmware.h>
12 #include <asm/cache.h>
13 #include <asm/ptrace.h>
14
15 #if defined(CONFIG_ZYNQMP_IPI)
16 #include <mailbox.h>
17 #include <asm/arch/sys_proto.h>
18
19 #define PMUFW_PAYLOAD_ARG_CNT   8
20
21 #define XST_PM_NO_ACCESS        2002L
22
23 struct zynqmp_power {
24         struct mbox_chan tx_chan;
25         struct mbox_chan rx_chan;
26 } zynqmp_power;
27
28 static int ipi_req(const u32 *req, size_t req_len, u32 *res, size_t res_maxlen)
29 {
30         struct zynqmp_ipi_msg msg;
31         int ret;
32
33         if (req_len > PMUFW_PAYLOAD_ARG_CNT ||
34             res_maxlen > PMUFW_PAYLOAD_ARG_CNT)
35                 return -EINVAL;
36
37         if (!(zynqmp_power.tx_chan.dev) || !(&zynqmp_power.rx_chan.dev))
38                 return -EINVAL;
39
40         debug("%s, Sending IPI message with ID: 0x%0x\n", __func__, req[0]);
41         msg.buf = (u32 *)req;
42         msg.len = req_len;
43         ret = mbox_send(&zynqmp_power.tx_chan, &msg);
44         if (ret) {
45                 debug("%s: Sending message failed\n", __func__);
46                 return ret;
47         }
48
49         msg.buf = res;
50         msg.len = res_maxlen;
51         ret = mbox_recv(&zynqmp_power.rx_chan, &msg, 100);
52         if (ret)
53                 debug("%s: Receiving message failed\n", __func__);
54
55         return ret;
56 }
57
58 unsigned int zynqmp_firmware_version(void)
59 {
60         int ret;
61         u32 ret_payload[PAYLOAD_ARG_CNT];
62         static u32 pm_api_version = ZYNQMP_PM_VERSION_INVALID;
63
64         /*
65          * Get PMU version only once and later
66          * just return stored values instead of
67          * asking PMUFW again.
68          **/
69         if (pm_api_version == ZYNQMP_PM_VERSION_INVALID) {
70
71                 ret = xilinx_pm_request(PM_GET_API_VERSION, 0, 0, 0, 0,
72                                         ret_payload);
73                 if (ret)
74                         panic("PMUFW is not found - Please load it!\n");
75
76                 pm_api_version = ret_payload[1];
77                 if (pm_api_version < ZYNQMP_PM_VERSION)
78                         panic("PMUFW version error. Expected: v%d.%d\n",
79                               ZYNQMP_PM_VERSION_MAJOR, ZYNQMP_PM_VERSION_MINOR);
80         }
81
82         return pm_api_version;
83 };
84
85 /**
86  * Send a configuration object to the PMU firmware.
87  *
88  * @cfg_obj: Pointer to the configuration object
89  * @size:    Size of @cfg_obj in bytes
90  */
91 void zynqmp_pmufw_load_config_object(const void *cfg_obj, size_t size)
92 {
93         int err;
94         u32 ret_payload[PAYLOAD_ARG_CNT];
95
96         printf("Loading new PMUFW cfg obj (%ld bytes)\n", size);
97
98         err = xilinx_pm_request(PM_SET_CONFIGURATION, (u32)(u64)cfg_obj, 0, 0,
99                                 0, ret_payload);
100         if (err == XST_PM_NO_ACCESS) {
101                 printf("PMUFW no permission to change config object\n");
102                 return;
103         }
104
105         if (err)
106                 printf("Cannot load PMUFW configuration object (%d)\n", err);
107
108         if (ret_payload[0])
109                 printf("PMUFW returned 0x%08x status!\n", ret_payload[0]);
110
111         if ((err || ret_payload[0]) && IS_ENABLED(CONFIG_SPL_BUILD))
112                 panic("PMUFW config object loading failed in EL3\n");
113 }
114
115 static int zynqmp_power_probe(struct udevice *dev)
116 {
117         int ret;
118
119         debug("%s, (dev=%p)\n", __func__, dev);
120
121         ret = mbox_get_by_name(dev, "tx", &zynqmp_power.tx_chan);
122         if (ret) {
123                 debug("%s: Cannot find tx mailbox\n", __func__);
124                 return ret;
125         }
126
127         ret = mbox_get_by_name(dev, "rx", &zynqmp_power.rx_chan);
128         if (ret) {
129                 debug("%s: Cannot find rx mailbox\n", __func__);
130                 return ret;
131         }
132
133         ret = zynqmp_firmware_version();
134         printf("PMUFW:\tv%d.%d\n",
135                ret >> ZYNQMP_PM_VERSION_MAJOR_SHIFT,
136                ret & ZYNQMP_PM_VERSION_MINOR_MASK);
137
138         return 0;
139 };
140
141 static const struct udevice_id zynqmp_power_ids[] = {
142         { .compatible = "xlnx,zynqmp-power" },
143         { }
144 };
145
146 U_BOOT_DRIVER(zynqmp_power) = {
147         .name = "zynqmp_power",
148         .id = UCLASS_FIRMWARE,
149         .of_match = zynqmp_power_ids,
150         .probe = zynqmp_power_probe,
151 };
152 #endif
153
154 int __maybe_unused xilinx_pm_request(u32 api_id, u32 arg0, u32 arg1, u32 arg2,
155                                      u32 arg3, u32 *ret_payload)
156 {
157         debug("%s at EL%d, API ID: 0x%0x\n", __func__, current_el(), api_id);
158
159         if (IS_ENABLED(CONFIG_SPL_BUILD) || current_el() == 3) {
160 #if defined(CONFIG_ZYNQMP_IPI)
161                 /*
162                  * Use fixed payload and arg size as the EL2 call. The firmware
163                  * is capable to handle PMUFW_PAYLOAD_ARG_CNT bytes but the
164                  * firmware API is limited by the SMC call size
165                  */
166                 u32 regs[] = {api_id, arg0, arg1, arg2, arg3};
167
168                 ipi_req(regs, PAYLOAD_ARG_CNT, ret_payload, PAYLOAD_ARG_CNT);
169 #else
170                 return -EPERM;
171 #endif
172         } else {
173                 /*
174                  * Added SIP service call Function Identifier
175                  * Make sure to stay in x0 register
176                  */
177                 struct pt_regs regs;
178
179                 regs.regs[0] = PM_SIP_SVC | api_id;
180                 regs.regs[1] = ((u64)arg1 << 32) | arg0;
181                 regs.regs[2] = ((u64)arg3 << 32) | arg2;
182
183                 smc_call(&regs);
184
185                 if (ret_payload) {
186                         ret_payload[0] = (u32)regs.regs[0];
187                         ret_payload[1] = upper_32_bits(regs.regs[0]);
188                         ret_payload[2] = (u32)regs.regs[1];
189                         ret_payload[3] = upper_32_bits(regs.regs[1]);
190                         ret_payload[4] = (u32)regs.regs[2];
191                 }
192
193         }
194         return (ret_payload) ? ret_payload[0] : 0;
195 }
196
197 static const struct udevice_id zynqmp_firmware_ids[] = {
198         { .compatible = "xlnx,zynqmp-firmware" },
199         { .compatible = "xlnx,versal-firmware"},
200         { }
201 };
202
203 U_BOOT_DRIVER(zynqmp_firmware) = {
204         .id = UCLASS_FIRMWARE,
205         .name = "zynqmp-firmware",
206         .of_match = zynqmp_firmware_ids,
207 };