blob: 7ee44ea91900e882ce13f98feeeeb29730fe3284 [file] [log] [blame]
Hans de Goede28a15ef2015-01-11 20:34:48 +01001/*
2 * Allwinner SUNXI "glue layer"
3 *
4 * Copyright © 2015 Hans de Goede <hdegoede@redhat.com>
5 * Copyright © 2013 Jussi Kivilinna <jussi.kivilinna@iki.fi>
6 *
7 * Based on the sw_usb "Allwinner OTG Dual Role Controller" code.
8 * Copyright 2007-2012 (C) Allwinner Technology Co., Ltd.
9 * javen <javen@allwinnertech.com>
10 *
11 * Based on the DA8xx "glue layer" code.
12 * Copyright (c) 2008-2009 MontaVista Software, Inc. <source@mvista.com>
13 * Copyright (C) 2005-2006 by Texas Instruments
14 *
15 * This file is part of the Inventra Controller Driver for Linux.
16 *
Tom Rini5b8031c2016-01-14 22:05:13 -050017 * SPDX-License-Identifier: GPL-2.0
Hans de Goede28a15ef2015-01-11 20:34:48 +010018 */
19#include <common.h>
Simon Glass9d922452017-05-17 17:18:03 -060020#include <dm.h>
Hans de Goede28a15ef2015-01-11 20:34:48 +010021#include <asm/arch/cpu.h>
Hans de Goede375de012015-04-27 11:44:22 +020022#include <asm/arch/clock.h>
Hans de Goede52defe82015-02-16 22:13:43 +010023#include <asm/arch/gpio.h>
Hans de Goede2aacc422015-04-27 15:05:10 +020024#include <asm/arch/usb_phy.h>
Hans de Goede52defe82015-02-16 22:13:43 +010025#include <asm-generic/gpio.h>
Hans de Goede91183ba2015-06-17 17:44:58 +020026#include <dm/lists.h>
27#include <dm/root.h>
Hans de Goeded42faf32015-06-17 15:49:26 +020028#include <linux/usb/musb.h>
Hans de Goede28a15ef2015-01-11 20:34:48 +010029#include "linux-compat.h"
30#include "musb_core.h"
Hans de Goede91183ba2015-06-17 17:44:58 +020031#include "musb_uboot.h"
Hans de Goede28a15ef2015-01-11 20:34:48 +010032
33/******************************************************************************
34 ******************************************************************************
35 * From the Allwinner driver
36 ******************************************************************************
37 ******************************************************************************/
38
39/******************************************************************************
40 * From include/sunxi_usb_bsp.h
41 ******************************************************************************/
42
43/* reg offsets */
44#define USBC_REG_o_ISCR 0x0400
45#define USBC_REG_o_PHYCTL 0x0404
46#define USBC_REG_o_PHYBIST 0x0408
47#define USBC_REG_o_PHYTUNE 0x040c
48
49#define USBC_REG_o_VEND0 0x0043
50
51/* Interface Status and Control */
52#define USBC_BP_ISCR_VBUS_VALID_FROM_DATA 30
53#define USBC_BP_ISCR_VBUS_VALID_FROM_VBUS 29
54#define USBC_BP_ISCR_EXT_ID_STATUS 28
55#define USBC_BP_ISCR_EXT_DM_STATUS 27
56#define USBC_BP_ISCR_EXT_DP_STATUS 26
57#define USBC_BP_ISCR_MERGED_VBUS_STATUS 25
58#define USBC_BP_ISCR_MERGED_ID_STATUS 24
59
60#define USBC_BP_ISCR_ID_PULLUP_EN 17
61#define USBC_BP_ISCR_DPDM_PULLUP_EN 16
62#define USBC_BP_ISCR_FORCE_ID 14
63#define USBC_BP_ISCR_FORCE_VBUS_VALID 12
64#define USBC_BP_ISCR_VBUS_VALID_SRC 10
65
66#define USBC_BP_ISCR_HOSC_EN 7
67#define USBC_BP_ISCR_VBUS_CHANGE_DETECT 6
68#define USBC_BP_ISCR_ID_CHANGE_DETECT 5
69#define USBC_BP_ISCR_DPDM_CHANGE_DETECT 4
70#define USBC_BP_ISCR_IRQ_ENABLE 3
71#define USBC_BP_ISCR_VBUS_CHANGE_DETECT_EN 2
72#define USBC_BP_ISCR_ID_CHANGE_DETECT_EN 1
73#define USBC_BP_ISCR_DPDM_CHANGE_DETECT_EN 0
74
75/******************************************************************************
76 * From usbc/usbc.c
77 ******************************************************************************/
78
79static u32 USBC_WakeUp_ClearChangeDetect(u32 reg_val)
80{
81 u32 temp = reg_val;
82
83 temp &= ~(1 << USBC_BP_ISCR_VBUS_CHANGE_DETECT);
84 temp &= ~(1 << USBC_BP_ISCR_ID_CHANGE_DETECT);
85 temp &= ~(1 << USBC_BP_ISCR_DPDM_CHANGE_DETECT);
86
87 return temp;
88}
89
90static void USBC_EnableIdPullUp(__iomem void *base)
91{
92 u32 reg_val;
93
94 reg_val = musb_readl(base, USBC_REG_o_ISCR);
95 reg_val |= (1 << USBC_BP_ISCR_ID_PULLUP_EN);
96 reg_val = USBC_WakeUp_ClearChangeDetect(reg_val);
97 musb_writel(base, USBC_REG_o_ISCR, reg_val);
98}
99
Hans de Goede28a15ef2015-01-11 20:34:48 +0100100static void USBC_EnableDpDmPullUp(__iomem void *base)
101{
102 u32 reg_val;
103
104 reg_val = musb_readl(base, USBC_REG_o_ISCR);
105 reg_val |= (1 << USBC_BP_ISCR_DPDM_PULLUP_EN);
106 reg_val = USBC_WakeUp_ClearChangeDetect(reg_val);
107 musb_writel(base, USBC_REG_o_ISCR, reg_val);
108}
109
Hans de Goede28a15ef2015-01-11 20:34:48 +0100110static void USBC_ForceIdToLow(__iomem void *base)
111{
112 u32 reg_val;
113
114 reg_val = musb_readl(base, USBC_REG_o_ISCR);
115 reg_val &= ~(0x03 << USBC_BP_ISCR_FORCE_ID);
116 reg_val |= (0x02 << USBC_BP_ISCR_FORCE_ID);
117 reg_val = USBC_WakeUp_ClearChangeDetect(reg_val);
118 musb_writel(base, USBC_REG_o_ISCR, reg_val);
119}
120
121static void USBC_ForceIdToHigh(__iomem void *base)
122{
123 u32 reg_val;
124
125 reg_val = musb_readl(base, USBC_REG_o_ISCR);
126 reg_val &= ~(0x03 << USBC_BP_ISCR_FORCE_ID);
127 reg_val |= (0x03 << USBC_BP_ISCR_FORCE_ID);
128 reg_val = USBC_WakeUp_ClearChangeDetect(reg_val);
129 musb_writel(base, USBC_REG_o_ISCR, reg_val);
130}
131
Hans de Goedee1abfa42015-06-14 11:55:28 +0200132static void USBC_ForceVbusValidToLow(__iomem void *base)
133{
134 u32 reg_val;
135
136 reg_val = musb_readl(base, USBC_REG_o_ISCR);
137 reg_val &= ~(0x03 << USBC_BP_ISCR_FORCE_VBUS_VALID);
138 reg_val |= (0x02 << USBC_BP_ISCR_FORCE_VBUS_VALID);
139 reg_val = USBC_WakeUp_ClearChangeDetect(reg_val);
140 musb_writel(base, USBC_REG_o_ISCR, reg_val);
141}
142
Hans de Goede28a15ef2015-01-11 20:34:48 +0100143static void USBC_ForceVbusValidToHigh(__iomem void *base)
144{
145 u32 reg_val;
146
147 reg_val = musb_readl(base, USBC_REG_o_ISCR);
148 reg_val &= ~(0x03 << USBC_BP_ISCR_FORCE_VBUS_VALID);
149 reg_val |= (0x03 << USBC_BP_ISCR_FORCE_VBUS_VALID);
150 reg_val = USBC_WakeUp_ClearChangeDetect(reg_val);
151 musb_writel(base, USBC_REG_o_ISCR, reg_val);
152}
153
154static void USBC_ConfigFIFO_Base(void)
155{
156 u32 reg_value;
157
158 /* config usb fifo, 8kb mode */
159 reg_value = readl(SUNXI_SRAMC_BASE + 0x04);
160 reg_value &= ~(0x03 << 0);
161 reg_value |= (1 << 0);
162 writel(reg_value, SUNXI_SRAMC_BASE + 0x04);
163}
164
165/******************************************************************************
Siarhei Siamashka6047a3a2015-10-25 06:44:47 +0200166 * Needed for the DFU polling magic
167 ******************************************************************************/
168
169static u8 last_int_usb;
170
171bool dfu_usb_get_reset(void)
172{
173 return !!(last_int_usb & MUSB_INTR_RESET);
174}
175
176/******************************************************************************
Hans de Goede28a15ef2015-01-11 20:34:48 +0100177 * MUSB Glue code
178 ******************************************************************************/
179
180static irqreturn_t sunxi_musb_interrupt(int irq, void *__hci)
181{
182 struct musb *musb = __hci;
183 irqreturn_t retval = IRQ_NONE;
184
185 /* read and flush interrupts */
186 musb->int_usb = musb_readb(musb->mregs, MUSB_INTRUSB);
Siarhei Siamashka6047a3a2015-10-25 06:44:47 +0200187 last_int_usb = musb->int_usb;
Hans de Goede28a15ef2015-01-11 20:34:48 +0100188 if (musb->int_usb)
189 musb_writeb(musb->mregs, MUSB_INTRUSB, musb->int_usb);
190 musb->int_tx = musb_readw(musb->mregs, MUSB_INTRTX);
191 if (musb->int_tx)
192 musb_writew(musb->mregs, MUSB_INTRTX, musb->int_tx);
193 musb->int_rx = musb_readw(musb->mregs, MUSB_INTRRX);
194 if (musb->int_rx)
195 musb_writew(musb->mregs, MUSB_INTRRX, musb->int_rx);
196
197 if (musb->int_usb || musb->int_tx || musb->int_rx)
198 retval |= musb_interrupt(musb);
199
200 return retval;
201}
202
Hans de Goedee1abfa42015-06-14 11:55:28 +0200203/* musb_core does not call enable / disable in a balanced manner <sigh> */
204static bool enabled = false;
205
Hans de Goede15837232015-06-17 21:33:54 +0200206static int sunxi_musb_enable(struct musb *musb)
Hans de Goede28a15ef2015-01-11 20:34:48 +0100207{
Chen-Yu Tsai57075a42016-09-07 14:25:21 +0800208 int ret;
209
Hans de Goede28a15ef2015-01-11 20:34:48 +0100210 pr_debug("%s():\n", __func__);
211
Maxime Ripard1feda632015-08-04 17:04:10 +0200212 musb_ep_select(musb->mregs, 0);
213 musb_writeb(musb->mregs, MUSB_FADDR, 0);
214
Hans de Goedee1abfa42015-06-14 11:55:28 +0200215 if (enabled)
Hans de Goede15837232015-06-17 21:33:54 +0200216 return 0;
Hans de Goedee1abfa42015-06-14 11:55:28 +0200217
Hans de Goede28a15ef2015-01-11 20:34:48 +0100218 /* select PIO mode */
219 musb_writeb(musb->mregs, USBC_REG_o_VEND0, 0);
220
Hans de Goedeb41972e2015-06-14 16:48:56 +0200221 if (is_host_enabled(musb)) {
Chen-Yu Tsai57075a42016-09-07 14:25:21 +0800222 ret = sunxi_usb_phy_vbus_detect(0);
223 if (ret == 1) {
224 printf("A charger is plugged into the OTG: ");
225 return -ENODEV;
Hans de Goedeb41972e2015-06-14 16:48:56 +0200226 }
Chen-Yu Tsai57075a42016-09-07 14:25:21 +0800227 ret = sunxi_usb_phy_id_detect(0);
228 if (ret == 1) {
Hans de Goede71cbe0d2015-06-14 17:40:37 +0200229 printf("No host cable detected: ");
230 return -ENODEV;
231 }
Chen-Yu Tsai57075a42016-09-07 14:25:21 +0800232 sunxi_usb_phy_power_on(0); /* port power on */
Hans de Goedeb41972e2015-06-14 16:48:56 +0200233 }
Hans de Goedee1abfa42015-06-14 11:55:28 +0200234
235 USBC_ForceVbusValidToHigh(musb->mregs);
236
237 enabled = true;
Hans de Goede15837232015-06-17 21:33:54 +0200238 return 0;
Hans de Goede28a15ef2015-01-11 20:34:48 +0100239}
240
241static void sunxi_musb_disable(struct musb *musb)
242{
243 pr_debug("%s():\n", __func__);
244
Hans de Goedee1abfa42015-06-14 11:55:28 +0200245 if (!enabled)
246 return;
Hans de Goede375de012015-04-27 11:44:22 +0200247
Chen-Yu Tsai57075a42016-09-07 14:25:21 +0800248 if (is_host_enabled(musb))
249 sunxi_usb_phy_power_off(0); /* port power off */
250
Hans de Goedee1abfa42015-06-14 11:55:28 +0200251 USBC_ForceVbusValidToLow(musb->mregs);
252 mdelay(200); /* Wait for the current session to timeout */
253
254 enabled = false;
Hans de Goede28a15ef2015-01-11 20:34:48 +0100255}
256
257static int sunxi_musb_init(struct musb *musb)
258{
Hans de Goede375de012015-04-27 11:44:22 +0200259 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Hans de Goede28a15ef2015-01-11 20:34:48 +0100260
261 pr_debug("%s():\n", __func__);
262
Hans de Goede28a15ef2015-01-11 20:34:48 +0100263 musb->isr = sunxi_musb_interrupt;
Hans de Goede375de012015-04-27 11:44:22 +0200264
265 setbits_le32(&ccm->ahb_gate0, 1 << AHB_GATE_OFFSET_USB0);
266#ifdef CONFIG_SUNXI_GEN_SUN6I
267 setbits_le32(&ccm->ahb_reset0_cfg, 1 << AHB_GATE_OFFSET_USB0);
268#endif
Hans de Goede7b798652015-04-27 14:54:47 +0200269 sunxi_usb_phy_init(0);
Hans de Goede28a15ef2015-01-11 20:34:48 +0100270
271 USBC_ConfigFIFO_Base();
272 USBC_EnableDpDmPullUp(musb->mregs);
273 USBC_EnableIdPullUp(musb->mregs);
274
275 if (is_host_enabled(musb)) {
276 /* Host mode */
277 USBC_ForceIdToLow(musb->mregs);
Hans de Goede28a15ef2015-01-11 20:34:48 +0100278 } else {
279 /* Peripheral mode */
280 USBC_ForceIdToHigh(musb->mregs);
Hans de Goede28a15ef2015-01-11 20:34:48 +0100281 }
Hans de Goedeb1b912d2015-02-11 09:05:18 +0100282 USBC_ForceVbusValidToHigh(musb->mregs);
Hans de Goede28a15ef2015-01-11 20:34:48 +0100283
284 return 0;
285}
286
Hans de Goeded42faf32015-06-17 15:49:26 +0200287static const struct musb_platform_ops sunxi_musb_ops = {
Hans de Goede28a15ef2015-01-11 20:34:48 +0100288 .init = sunxi_musb_init,
Hans de Goede28a15ef2015-01-11 20:34:48 +0100289 .enable = sunxi_musb_enable,
290 .disable = sunxi_musb_disable,
291};
Hans de Goeded42faf32015-06-17 15:49:26 +0200292
293static struct musb_hdrc_config musb_config = {
294 .multipoint = 1,
295 .dyn_fifo = 1,
296 .num_eps = 6,
297 .ram_bits = 11,
298};
299
300static struct musb_hdrc_platform_data musb_plat = {
Paul Kocialkowski95de1e22015-08-04 17:04:06 +0200301#if defined(CONFIG_USB_MUSB_HOST)
Hans de Goeded42faf32015-06-17 15:49:26 +0200302 .mode = MUSB_HOST,
303#else
304 .mode = MUSB_PERIPHERAL,
305#endif
306 .config = &musb_config,
307 .power = 250,
308 .platform_ops = &sunxi_musb_ops,
309};
310
Hans de Goede7c22e262016-09-17 16:02:38 +0200311static int musb_usb_probe(struct udevice *dev)
Hans de Goede91183ba2015-06-17 17:44:58 +0200312{
313 struct musb_host_data *host = dev_get_priv(dev);
314 struct usb_bus_priv *priv = dev_get_uclass_priv(dev);
Hans de Goede56a20852015-06-18 22:45:34 +0200315 int ret;
Hans de Goede91183ba2015-06-17 17:44:58 +0200316
317 priv->desc_before_addr = true;
318
Maxime Ripard3a61b082017-09-05 22:10:35 +0200319#ifdef CONFIG_USB_MUSB_HOST
Hans de Goede7c22e262016-09-17 16:02:38 +0200320 host->host = musb_init_controller(&musb_plat, NULL,
321 (void *)SUNXI_USB0_BASE);
Hans de Goede38b4a3e2016-04-02 20:46:09 +0200322 if (!host->host)
323 return -EIO;
324
Hans de Goede56a20852015-06-18 22:45:34 +0200325 ret = musb_lowlevel_init(host);
Maxime Ripard3a61b082017-09-05 22:10:35 +0200326 if (!ret)
327 printf("Allwinner mUSB OTG (Host)\n");
328#else
329 ret = musb_register(&musb_plat, NULL, (void *)SUNXI_USB0_BASE);
330 if (!ret)
331 printf("Allwinner mUSB OTG (Peripheral)\n");
332#endif
Hans de Goede91183ba2015-06-17 17:44:58 +0200333
Hans de Goede56a20852015-06-18 22:45:34 +0200334 return ret;
Hans de Goede91183ba2015-06-17 17:44:58 +0200335}
336
Hans de Goede7c22e262016-09-17 16:02:38 +0200337static int musb_usb_remove(struct udevice *dev)
Hans de Goede91183ba2015-06-17 17:44:58 +0200338{
339 struct musb_host_data *host = dev_get_priv(dev);
Hans de Goedebca4c3c2016-06-05 16:53:04 +0200340 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Hans de Goede91183ba2015-06-17 17:44:58 +0200341
342 musb_stop(host->host);
343
Hans de Goedebca4c3c2016-06-05 16:53:04 +0200344 sunxi_usb_phy_exit(0);
345#ifdef CONFIG_SUNXI_GEN_SUN6I
346 clrbits_le32(&ccm->ahb_reset0_cfg, 1 << AHB_GATE_OFFSET_USB0);
347#endif
348 clrbits_le32(&ccm->ahb_gate0, 1 << AHB_GATE_OFFSET_USB0);
349
Hans de Goede7c22e262016-09-17 16:02:38 +0200350 free(host->host);
351 host->host = NULL;
352
Hans de Goede91183ba2015-06-17 17:44:58 +0200353 return 0;
354}
355
Maxime Ripard3a61b082017-09-05 22:10:35 +0200356static const struct udevice_id sunxi_musb_ids[] = {
357 { .compatible = "allwinner,sun4i-a10-musb" },
358 { .compatible = "allwinner,sun6i-a31-musb" },
359 { .compatible = "allwinner,sun8i-a33-musb" },
360 { .compatible = "allwinner,sun8i-h3-musb" },
361 { }
362};
363
Hans de Goede91183ba2015-06-17 17:44:58 +0200364U_BOOT_DRIVER(usb_musb) = {
Maxime Ripard3a61b082017-09-05 22:10:35 +0200365 .name = "sunxi-musb",
366#ifdef CONFIG_USB_MUSB_HOST
367 .id = UCLASS_USB,
368#else
369 .id = UCLASS_USB_DEV_GENERIC,
370#endif
371 .of_match = sunxi_musb_ids,
372 .probe = musb_usb_probe,
373 .remove = musb_usb_remove,
374#ifdef CONFIG_USB_MUSB_HOST
375 .ops = &musb_usb_ops,
376#endif
Hans de Goede91183ba2015-06-17 17:44:58 +0200377 .platdata_auto_alloc_size = sizeof(struct usb_platdata),
378 .priv_auto_alloc_size = sizeof(struct musb_host_data),
379};