blob: c281c38a2880ff5032f7e7967e522430006325ae [file] [log] [blame]
mingming lee7d017d62020-01-16 16:11:37 +08001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Mediatek "glue layer"
4 *
5 * Copyright (C) 2019-2021 by Mediatek
6 * Based on the AllWinner SUNXI "glue layer" code.
7 * Copyright (C) 2015 Hans de Goede <hdegoede@redhat.com>
8 * Copyright (C) 2013 Jussi Kivilinna <jussi.kivilinna@iki.fi>
9 *
10 * This file is part of the Inventra Controller Driver for Linux.
11 */
12#include <common.h>
13#include <clk.h>
14#include <dm.h>
15#include <dm/lists.h>
16#include <dm/root.h>
Simon Glassc05ed002020-05-10 11:40:11 -060017#include <linux/delay.h>
mingming lee7d017d62020-01-16 16:11:37 +080018#include <linux/usb/musb.h>
19#include <usb.h>
20#include "linux-compat.h"
21#include "musb_core.h"
22#include "musb_uboot.h"
23
24#define DBG_I(fmt, ...) \
25 pr_info(fmt, ##__VA_ARGS__)
26
27struct mtk_musb_config {
28 struct musb_hdrc_config *config;
29};
30
31struct mtk_musb_glue {
32 struct musb_host_data mdata;
33 struct clk usbpllclk;
34 struct clk usbmcuclk;
35 struct clk usbclk;
36 struct mtk_musb_config *cfg;
37 struct device dev;
38};
39
40#define to_mtk_musb_glue(d) container_of(d, struct mtk_musb_glue, dev)
41
42/******************************************************************************
43 * phy settings
44 ******************************************************************************/
45#define USB20_PHY_BASE 0x11110800
46#define USBPHY_READ8(offset) \
47 readb((void *)(USB20_PHY_BASE + (offset)))
48#define USBPHY_WRITE8(offset, value) \
49 writeb(value, (void *)(USB20_PHY_BASE + (offset)))
50#define USBPHY_SET8(offset, mask) \
51 USBPHY_WRITE8(offset, (USBPHY_READ8(offset)) | (mask))
52#define USBPHY_CLR8(offset, mask) \
53 USBPHY_WRITE8(offset, (USBPHY_READ8(offset)) & (~(mask)))
54
55static void mt_usb_phy_poweron(void)
56{
57 /*
58 * switch to USB function.
59 * (system register, force ip into usb mode).
60 */
61 USBPHY_CLR8(0x6b, 0x04);
62 USBPHY_CLR8(0x6e, 0x01);
63 USBPHY_CLR8(0x21, 0x03);
64
65 /* RG_USB20_BC11_SW_EN = 1'b0 */
66 USBPHY_SET8(0x22, 0x04);
67 USBPHY_CLR8(0x1a, 0x80);
68
69 /* RG_USB20_DP_100K_EN = 1'b0 */
70 /* RG_USB20_DP_100K_EN = 1'b0 */
71 USBPHY_CLR8(0x22, 0x03);
72
73 /*OTG enable*/
74 USBPHY_SET8(0x20, 0x10);
75 /* release force suspendm */
76 USBPHY_CLR8(0x6a, 0x04);
77
78 mdelay(800);
79
80 /* force enter device mode */
81 USBPHY_CLR8(0x6c, 0x10);
82 USBPHY_SET8(0x6c, 0x2E);
83 USBPHY_SET8(0x6d, 0x3E);
84}
85
86static void mt_usb_phy_savecurrent(void)
87{
88 /*
89 * switch to USB function.
90 * (system register, force ip into usb mode).
91 */
92 USBPHY_CLR8(0x6b, 0x04);
93 USBPHY_CLR8(0x6e, 0x01);
94 USBPHY_CLR8(0x21, 0x03);
95
96 /* release force suspendm */
97 USBPHY_CLR8(0x6a, 0x04);
98 USBPHY_SET8(0x68, 0x04);
99 /* RG_DPPULLDOWN./RG_DMPULLDOWN. */
100 USBPHY_SET8(0x68, 0xc0);
101 /* RG_XCVRSEL[1:0] = 2'b01 */
102 USBPHY_CLR8(0x68, 0x30);
103 USBPHY_SET8(0x68, 0x10);
104 /* RG_TERMSEL = 1'b1 */
105 USBPHY_SET8(0x68, 0x04);
106 /* RG_DATAIN[3:0] = 4'b0000 */
107 USBPHY_CLR8(0x69, 0x3c);
108
109 /*
110 * force_dp_pulldown, force_dm_pulldown,
111 * force_xcversel, force_termsel.
112 */
113 USBPHY_SET8(0x6a, 0xba);
114
115 /* RG_USB20_BC11_SW_EN = 1'b0 */
116 USBPHY_CLR8(0x1a, 0x80);
117 /* RG_USB20_OTG_VBUSSCMP_EN = 1'b0 */
118 USBPHY_CLR8(0x1a, 0x10);
119
120 mdelay(800);
121
122 USBPHY_CLR8(0x6a, 0x04);
123 /* rg_usb20_pll_stable = 1 */
124 //USBPHY_SET8(0x63, 0x02);
125
126 mdelay(1);
127
128 /* force suspendm = 1 */
129 //USBPHY_SET8(0x6a, 0x04);
130}
131
132static void mt_usb_phy_recover(void)
133{
134 /* clean PUPD_BIST_EN */
135 /* PUPD_BIST_EN = 1'b0 */
136 /* PMIC will use it to detect charger type */
137 USBPHY_CLR8(0x1d, 0x10);
138
139 /* force_uart_en = 1'b0 */
140 USBPHY_CLR8(0x6b, 0x04);
141 /* RG_UART_EN = 1'b0 */
142 USBPHY_CLR8(0x6e, 0x01);
143 /* force_uart_en = 1'b0 */
144 USBPHY_CLR8(0x6a, 0x04);
145
146 USBPHY_CLR8(0x21, 0x03);
147 USBPHY_CLR8(0x68, 0xf4);
148
149 /* RG_DATAIN[3:0] = 4'b0000 */
150 USBPHY_CLR8(0x69, 0x3c);
151
152 USBPHY_CLR8(0x6a, 0xba);
153
154 /* RG_USB20_BC11_SW_EN = 1'b0 */
155 USBPHY_CLR8(0x1a, 0x80);
156 /* RG_USB20_OTG_VBUSSCMP_EN = 1'b1 */
157 USBPHY_SET8(0x1a, 0x10);
158
159 //HQA adjustment
160 USBPHY_CLR8(0x18, 0x08);
161 USBPHY_SET8(0x18, 0x06);
162 mdelay(800);
163
164 /* force enter device mode */
165 //USBPHY_CLR8(0x6c, 0x10);
166 //USBPHY_SET8(0x6c, 0x2E);
167 //USBPHY_SET8(0x6d, 0x3E);
168
169 /* enable VRT internal R architecture */
170 /* RG_USB20_INTR_EN = 1'b1 */
171 USBPHY_SET8(0x00, 0x20);
172}
173
174/******************************************************************************
175 * MUSB Glue code
176 ******************************************************************************/
177
178static irqreturn_t mtk_musb_interrupt(int irq, void *__hci)
179{
180 struct musb *musb = __hci;
181 irqreturn_t retval = IRQ_NONE;
182
183 /* read and flush interrupts */
184 musb->int_usb = musb_readb(musb->mregs, MUSB_INTRUSB);
185// last_int_usb = musb->int_usb;
186 if (musb->int_usb)
187 musb_writeb(musb->mregs, MUSB_INTRUSB, musb->int_usb);
188 musb->int_tx = musb_readw(musb->mregs, MUSB_INTRTX);
189 if (musb->int_tx)
190 musb_writew(musb->mregs, MUSB_INTRTX, musb->int_tx);
191 musb->int_rx = musb_readw(musb->mregs, MUSB_INTRRX);
192 if (musb->int_rx)
193 musb_writew(musb->mregs, MUSB_INTRRX, musb->int_rx);
194
195 if (musb->int_usb || musb->int_tx || musb->int_rx)
196 retval |= musb_interrupt(musb);
197
198 return retval;
199}
200
201/* musb_core does not call enable / disable in a balanced manner <sigh> */
202static bool enabled;
203
204static int mtk_musb_enable(struct musb *musb)
205{
206 struct mtk_musb_glue *glue = to_mtk_musb_glue(musb->controller);
207
208 DBG_I("%s():\n", __func__);
209
210 musb_ep_select(musb->mregs, 0);
211 musb_writeb(musb->mregs, MUSB_FADDR, 0);
212
213 if (enabled)
214 return 0;
215
216 mt_usb_phy_recover();
217
218 enabled = true;
219
220 return 0;
221}
222
223static void mtk_musb_disable(struct musb *musb)
224{
225 struct mtk_musb_glue *glue = to_mtk_musb_glue(musb->controller);
226 int ret;
227
228 DBG_I("%s():\n", __func__);
229
230 if (!enabled)
231 return;
232
233 mt_usb_phy_savecurrent();
234
235 enabled = false;
236}
237
238static int mtk_musb_init(struct musb *musb)
239{
240 struct mtk_musb_glue *glue = to_mtk_musb_glue(musb->controller);
241 int ret;
242
243 DBG_I("%s():\n", __func__);
244
245 ret = clk_enable(&glue->usbpllclk);
246 if (ret) {
247 dev_err(dev, "failed to enable usbpll clock\n");
248 return ret;
249 }
250 ret = clk_enable(&glue->usbmcuclk);
251 if (ret) {
252 dev_err(dev, "failed to enable usbmcu clock\n");
253 return ret;
254 }
255 ret = clk_enable(&glue->usbclk);
256 if (ret) {
257 dev_err(dev, "failed to enable usb clock\n");
258 return ret;
259 }
260
261 musb->isr = mtk_musb_interrupt;
262
263 return 0;
264}
265
266static int mtk_musb_exit(struct musb *musb)
267{
268 struct mtk_musb_glue *glue = to_mtk_musb_glue(musb->controller);
269
270 clk_disable(&glue->usbclk);
271 clk_disable(&glue->usbmcuclk);
272 clk_disable(&glue->usbpllclk);
273
274 return 0;
275}
276
277static const struct musb_platform_ops mtk_musb_ops = {
278 .init = mtk_musb_init,
279 .exit = mtk_musb_exit,
280 .enable = mtk_musb_enable,
281 .disable = mtk_musb_disable,
282};
283
284/* MTK OTG supports up to 7 endpoints */
285#define MTK_MUSB_MAX_EP_NUM 8
286#define MTK_MUSB_RAM_BITS 16
287
288static struct musb_fifo_cfg mtk_musb_mode_cfg[] = {
289 MUSB_EP_FIFO_SINGLE(1, FIFO_TX, 512),
290 MUSB_EP_FIFO_SINGLE(1, FIFO_RX, 512),
291 MUSB_EP_FIFO_SINGLE(2, FIFO_TX, 512),
292 MUSB_EP_FIFO_SINGLE(2, FIFO_RX, 512),
293 MUSB_EP_FIFO_SINGLE(3, FIFO_TX, 512),
294 MUSB_EP_FIFO_SINGLE(3, FIFO_RX, 512),
295 MUSB_EP_FIFO_SINGLE(4, FIFO_TX, 512),
296 MUSB_EP_FIFO_SINGLE(4, FIFO_RX, 512),
297 MUSB_EP_FIFO_SINGLE(5, FIFO_TX, 512),
298 MUSB_EP_FIFO_SINGLE(5, FIFO_RX, 512),
299 MUSB_EP_FIFO_SINGLE(6, FIFO_TX, 512),
300 MUSB_EP_FIFO_SINGLE(6, FIFO_RX, 512),
301 MUSB_EP_FIFO_SINGLE(7, FIFO_TX, 512),
302 MUSB_EP_FIFO_SINGLE(7, FIFO_RX, 512),
303};
304
305static struct musb_hdrc_config musb_config = {
306 .fifo_cfg = mtk_musb_mode_cfg,
307 .fifo_cfg_size = ARRAY_SIZE(mtk_musb_mode_cfg),
308 .multipoint = true,
309 .dyn_fifo = true,
310 .num_eps = MTK_MUSB_MAX_EP_NUM,
311 .ram_bits = MTK_MUSB_RAM_BITS,
312};
313
314static int musb_usb_probe(struct udevice *dev)
315{
316 struct mtk_musb_glue *glue = dev_get_priv(dev);
317 struct musb_host_data *host = &glue->mdata;
318 struct musb_hdrc_platform_data pdata;
319 void *base = dev_read_addr_ptr(dev);
320 int ret;
321
322 DBG_I("%s():\n", __func__);
323
324#ifdef CONFIG_USB_MUSB_HOST
325 struct usb_bus_priv *priv = dev_get_uclass_priv(dev);
326#endif
327
328 if (!base)
329 return -EINVAL;
330
331 glue->cfg = (struct mtk_musb_config *)dev_get_driver_data(dev);
332 if (!glue->cfg)
333 return -EINVAL;
334
335 ret = clk_get_by_name(dev, "usbpll", &glue->usbpllclk);
336 if (ret) {
337 dev_err(dev, "failed to get usbpll clock\n");
338 return ret;
339 }
340 ret = clk_get_by_name(dev, "usbmcu", &glue->usbmcuclk);
341 if (ret) {
342 dev_err(dev, "failed to get usbmcu clock\n");
343 return ret;
344 }
345 ret = clk_get_by_name(dev, "usb", &glue->usbclk);
346 if (ret) {
347 dev_err(dev, "failed to get usb clock\n");
348 return ret;
349 }
350
351 memset(&pdata, 0, sizeof(pdata));
352 pdata.power = (u8)400;
353 pdata.platform_ops = &mtk_musb_ops;
354 pdata.config = glue->cfg->config;
355
356#ifdef CONFIG_USB_MUSB_HOST
357 priv->desc_before_addr = true;
358
359 pdata.mode = MUSB_HOST;
360 host->host = musb_init_controller(&pdata, &glue->dev, base);
361 if (!host->host)
362 return -EIO;
363
364 ret = musb_lowlevel_init(host);
365 if (!ret)
366 printf("MTK MUSB OTG (Host)\n");
367#else
368 pdata.mode = MUSB_PERIPHERAL;
369 host->host = musb_register(&pdata, &glue->dev, base);
370 if (!host->host)
371 return -EIO;
372
373 printf("MTK MUSB OTG (Peripheral)\n");
374#endif
375
376 mt_usb_phy_poweron();
377
378 return ret;
379}
380
381static int musb_usb_remove(struct udevice *dev)
382{
383 struct mtk_musb_glue *glue = dev_get_priv(dev);
384 struct musb_host_data *host = &glue->mdata;
385
386 musb_stop(host->host);
387 free(host->host);
388 host->host = NULL;
389
390 return 0;
391}
392
393static const struct mtk_musb_config mt8518_cfg = {
394 .config = &musb_config,
395};
396
397static const struct udevice_id mtk_musb_ids[] = {
398 { .compatible = "mediatek,mt8518-musb",
399 .data = (ulong)&mt8518_cfg },
400 { }
401};
402
403U_BOOT_DRIVER(mtk_musb) = {
404 .name = "mtk_musb",
405#ifdef CONFIG_USB_MUSB_HOST
406 .id = UCLASS_USB,
407#else
408 .id = UCLASS_USB_GADGET_GENERIC,
409#endif
410 .of_match = mtk_musb_ids,
411 .probe = musb_usb_probe,
412 .remove = musb_usb_remove,
413#ifdef CONFIG_USB_MUSB_HOST
414 .ops = &musb_usb_ops,
415#endif
416 .platdata_auto_alloc_size = sizeof(struct usb_platdata),
417 .priv_auto_alloc_size = sizeof(struct mtk_musb_glue),
418};