blob: 72a3473263762a8b31dd97c52a1c78cc18adea01 [file] [log] [blame]
Peng Fanef64e782018-10-18 14:28:11 +02001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright 2018 NXP
4 *
5 * Peng Fan <peng.fan@nxp.com>
6 */
7
8#include <common.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06009#include <log.h>
Peng Fanef64e782018-10-18 14:28:11 +020010#include <asm/io.h>
11#include <dm.h>
12#include <dm/lists.h>
13#include <dm/root.h>
14#include <dm/device-internal.h>
15#include <asm/arch/sci/sci.h>
Simon Glasscd93d622020-05-10 11:40:13 -060016#include <linux/bitops.h>
Peng Fanef64e782018-10-18 14:28:11 +020017#include <linux/iopoll.h>
18#include <misc.h>
19
20DECLARE_GLOBAL_DATA_PTR;
21
22struct mu_type {
23 u32 tr[4];
24 u32 rr[4];
25 u32 sr;
26 u32 cr;
27};
28
29struct imx8_scu {
30 struct mu_type *base;
Peng Fanef64e782018-10-18 14:28:11 +020031};
32
33#define MU_CR_GIE_MASK 0xF0000000u
34#define MU_CR_RIE_MASK 0xF000000u
35#define MU_CR_GIR_MASK 0xF0000u
36#define MU_CR_TIE_MASK 0xF00000u
37#define MU_CR_F_MASK 0x7u
38#define MU_SR_TE0_MASK BIT(23)
39#define MU_SR_RF0_MASK BIT(27)
40#define MU_TR_COUNT 4
41#define MU_RR_COUNT 4
42
43static inline void mu_hal_init(struct mu_type *base)
44{
45 /* Clear GIEn, RIEn, TIEn, GIRn and ABFn. */
46 clrbits_le32(&base->cr, MU_CR_GIE_MASK | MU_CR_RIE_MASK |
47 MU_CR_TIE_MASK | MU_CR_GIR_MASK | MU_CR_F_MASK);
48}
49
50static int mu_hal_sendmsg(struct mu_type *base, u32 reg_index, u32 msg)
51{
52 u32 mask = MU_SR_TE0_MASK >> reg_index;
53 u32 val;
54 int ret;
55
56 assert(reg_index < MU_TR_COUNT);
57
58 /* Wait TX register to be empty. */
59 ret = readl_poll_timeout(&base->sr, val, val & mask, 10000);
60 if (ret < 0) {
61 printf("%s timeout\n", __func__);
62 return -ETIMEDOUT;
63 }
64
65 writel(msg, &base->tr[reg_index]);
66
67 return 0;
68}
69
70static int mu_hal_receivemsg(struct mu_type *base, u32 reg_index, u32 *msg)
71{
72 u32 mask = MU_SR_RF0_MASK >> reg_index;
73 u32 val;
74 int ret;
75
76 assert(reg_index < MU_TR_COUNT);
77
78 /* Wait RX register to be full. */
Ye Li77ed80c2020-05-03 22:31:47 +080079 ret = readl_poll_timeout(&base->sr, val, val & mask, 1000000);
Peng Fanef64e782018-10-18 14:28:11 +020080 if (ret < 0) {
81 printf("%s timeout\n", __func__);
82 return -ETIMEDOUT;
83 }
84
85 *msg = readl(&base->rr[reg_index]);
86
87 return 0;
88}
89
90static int sc_ipc_read(struct mu_type *base, void *data)
91{
92 struct sc_rpc_msg_s *msg = (struct sc_rpc_msg_s *)data;
93 int ret;
94 u8 count = 0;
95
96 if (!msg)
97 return -EINVAL;
98
99 /* Read first word */
100 ret = mu_hal_receivemsg(base, 0, (u32 *)msg);
101 if (ret)
102 return ret;
103 count++;
104
105 /* Check size */
106 if (msg->size > SC_RPC_MAX_MSG) {
107 *((u32 *)msg) = 0;
108 return -EINVAL;
109 }
110
111 /* Read remaining words */
112 while (count < msg->size) {
113 ret = mu_hal_receivemsg(base, count % MU_RR_COUNT,
114 &msg->DATA.u32[count - 1]);
115 if (ret)
116 return ret;
117 count++;
118 }
119
120 return 0;
121}
122
123static int sc_ipc_write(struct mu_type *base, void *data)
124{
125 struct sc_rpc_msg_s *msg = (struct sc_rpc_msg_s *)data;
126 int ret;
127 u8 count = 0;
128
129 if (!msg)
130 return -EINVAL;
131
132 /* Check size */
133 if (msg->size > SC_RPC_MAX_MSG)
134 return -EINVAL;
135
136 /* Write first word */
137 ret = mu_hal_sendmsg(base, 0, *((u32 *)msg));
138 if (ret)
139 return ret;
140 count++;
141
142 /* Write remaining words */
143 while (count < msg->size) {
144 ret = mu_hal_sendmsg(base, count % MU_TR_COUNT,
145 msg->DATA.u32[count - 1]);
146 if (ret)
147 return ret;
148 count++;
149 }
150
151 return 0;
152}
153
154/*
155 * Note the function prototype use msgid as the 2nd parameter, here
156 * we take it as no_resp.
157 */
158static int imx8_scu_call(struct udevice *dev, int no_resp, void *tx_msg,
159 int tx_size, void *rx_msg, int rx_size)
160{
Simon Glassc69cda22020-12-03 16:55:20 -0700161 struct imx8_scu *plat = dev_get_plat(dev);
Peng Fanef64e782018-10-18 14:28:11 +0200162 sc_err_t result;
163 int ret;
164
165 /* Expect tx_msg, rx_msg are the same value */
166 if (rx_msg && tx_msg != rx_msg)
167 printf("tx_msg %p, rx_msg %p\n", tx_msg, rx_msg);
168
Peng Fan026381f2018-12-15 12:19:52 +0000169 ret = sc_ipc_write(plat->base, tx_msg);
Peng Fanef64e782018-10-18 14:28:11 +0200170 if (ret)
171 return ret;
172 if (!no_resp) {
Peng Fan026381f2018-12-15 12:19:52 +0000173 ret = sc_ipc_read(plat->base, rx_msg);
Peng Fanef64e782018-10-18 14:28:11 +0200174 if (ret)
175 return ret;
176 }
177
178 result = RPC_R8((struct sc_rpc_msg_s *)tx_msg);
179
180 return sc_err_to_linux(result);
181}
182
183static int imx8_scu_probe(struct udevice *dev)
184{
Simon Glassc69cda22020-12-03 16:55:20 -0700185 struct imx8_scu *plat = dev_get_plat(dev);
Peng Fanef64e782018-10-18 14:28:11 +0200186 fdt_addr_t addr;
187
Peng Fan026381f2018-12-15 12:19:52 +0000188 debug("%s(dev=%p) (plat=%p)\n", __func__, dev, plat);
Peng Fanef64e782018-10-18 14:28:11 +0200189
Masahiro Yamada25484932020-07-17 14:36:48 +0900190 addr = dev_read_addr(dev);
Peng Fanef64e782018-10-18 14:28:11 +0200191 if (addr == FDT_ADDR_T_NONE)
192 return -EINVAL;
193
Peng Fan04b24962018-12-21 06:21:15 +0000194#ifdef CONFIG_SPL_BUILD
195 plat->base = (struct mu_type *)CONFIG_MU_BASE_SPL;
196#else
Peng Fan026381f2018-12-15 12:19:52 +0000197 plat->base = (struct mu_type *)addr;
Peng Fan04b24962018-12-21 06:21:15 +0000198#endif
Peng Fanef64e782018-10-18 14:28:11 +0200199
200 /* U-Boot not enable interrupts, so need to enable RX interrupts */
Peng Fan026381f2018-12-15 12:19:52 +0000201 mu_hal_init(plat->base);
Peng Fanef64e782018-10-18 14:28:11 +0200202
203 gd->arch.scu_dev = dev;
204
Peng Fanef64e782018-10-18 14:28:11 +0200205 return 0;
206}
207
208static int imx8_scu_remove(struct udevice *dev)
209{
210 return 0;
211}
212
213static int imx8_scu_bind(struct udevice *dev)
214{
Peng Fanef64e782018-10-18 14:28:11 +0200215 int ret;
216 struct udevice *child;
Peng Fan816d0932019-09-02 10:20:17 +0000217 ofnode node;
Peng Fanef64e782018-10-18 14:28:11 +0200218
219 debug("%s(dev=%p)\n", __func__, dev);
Peng Fan816d0932019-09-02 10:20:17 +0000220 ofnode_for_each_subnode(node, dev_ofnode(dev)) {
221 ret = lists_bind_fdt(dev, node, &child, true);
222 if (ret)
223 return ret;
224 debug("bind child dev %s\n", child->name);
225 }
Peng Fanef64e782018-10-18 14:28:11 +0200226
227 return 0;
228}
229
230static struct misc_ops imx8_scu_ops = {
231 .call = imx8_scu_call,
232};
233
234static const struct udevice_id imx8_scu_ids[] = {
235 { .compatible = "fsl,imx8qxp-mu" },
236 { .compatible = "fsl,imx8-mu" },
237 { }
238};
239
240U_BOOT_DRIVER(imx8_scu) = {
241 .name = "imx8_scu",
242 .id = UCLASS_MISC,
243 .of_match = imx8_scu_ids,
244 .probe = imx8_scu_probe,
245 .bind = imx8_scu_bind,
246 .remove = imx8_scu_remove,
247 .ops = &imx8_scu_ops,
Simon Glasscaa4daa2020-12-03 16:55:18 -0700248 .plat_auto = sizeof(struct imx8_scu),
Peng Fanef64e782018-10-18 14:28:11 +0200249 .flags = DM_FLAG_PRE_RELOC,
250};