blob: 5eb8d19b740a76f34b6d105ae502ae7ce159756b [file] [log] [blame]
Hans de Goede9c4f11d2015-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 *
17 * The Inventra Controller Driver for Linux is free software; you
18 * can redistribute it and/or modify it under the terms of the GNU
19 * General Public License version 2 as published by the Free Software
20 * Foundation.
21 *
22 */
23#include <common.h>
24#include <asm/arch/cpu.h>
Hans de Goede7e5aabd2015-04-27 11:44:22 +020025#include <asm/arch/clock.h>
Hans de Goedeeaa0d702015-02-16 22:13:43 +010026#include <asm/arch/gpio.h>
Hans de Goede26a90052015-04-27 15:05:10 +020027#include <asm/arch/usb_phy.h>
Hans de Goedeeaa0d702015-02-16 22:13:43 +010028#include <asm-generic/gpio.h>
Hans de Goede0b3845a2015-06-17 17:44:58 +020029#include <dm/lists.h>
30#include <dm/root.h>
Hans de Goedeea059bf2015-06-17 15:49:26 +020031#include <linux/usb/musb.h>
Hans de Goede9c4f11d2015-01-11 20:34:48 +010032#include "linux-compat.h"
33#include "musb_core.h"
Hans de Goede0b3845a2015-06-17 17:44:58 +020034#include "musb_uboot.h"
Hans de Goede9c4f11d2015-01-11 20:34:48 +010035
36/******************************************************************************
37 ******************************************************************************
38 * From the Allwinner driver
39 ******************************************************************************
40 ******************************************************************************/
41
42/******************************************************************************
43 * From include/sunxi_usb_bsp.h
44 ******************************************************************************/
45
46/* reg offsets */
47#define USBC_REG_o_ISCR 0x0400
48#define USBC_REG_o_PHYCTL 0x0404
49#define USBC_REG_o_PHYBIST 0x0408
50#define USBC_REG_o_PHYTUNE 0x040c
51
52#define USBC_REG_o_VEND0 0x0043
53
54/* Interface Status and Control */
55#define USBC_BP_ISCR_VBUS_VALID_FROM_DATA 30
56#define USBC_BP_ISCR_VBUS_VALID_FROM_VBUS 29
57#define USBC_BP_ISCR_EXT_ID_STATUS 28
58#define USBC_BP_ISCR_EXT_DM_STATUS 27
59#define USBC_BP_ISCR_EXT_DP_STATUS 26
60#define USBC_BP_ISCR_MERGED_VBUS_STATUS 25
61#define USBC_BP_ISCR_MERGED_ID_STATUS 24
62
63#define USBC_BP_ISCR_ID_PULLUP_EN 17
64#define USBC_BP_ISCR_DPDM_PULLUP_EN 16
65#define USBC_BP_ISCR_FORCE_ID 14
66#define USBC_BP_ISCR_FORCE_VBUS_VALID 12
67#define USBC_BP_ISCR_VBUS_VALID_SRC 10
68
69#define USBC_BP_ISCR_HOSC_EN 7
70#define USBC_BP_ISCR_VBUS_CHANGE_DETECT 6
71#define USBC_BP_ISCR_ID_CHANGE_DETECT 5
72#define USBC_BP_ISCR_DPDM_CHANGE_DETECT 4
73#define USBC_BP_ISCR_IRQ_ENABLE 3
74#define USBC_BP_ISCR_VBUS_CHANGE_DETECT_EN 2
75#define USBC_BP_ISCR_ID_CHANGE_DETECT_EN 1
76#define USBC_BP_ISCR_DPDM_CHANGE_DETECT_EN 0
77
78/******************************************************************************
79 * From usbc/usbc.c
80 ******************************************************************************/
81
82static u32 USBC_WakeUp_ClearChangeDetect(u32 reg_val)
83{
84 u32 temp = reg_val;
85
86 temp &= ~(1 << USBC_BP_ISCR_VBUS_CHANGE_DETECT);
87 temp &= ~(1 << USBC_BP_ISCR_ID_CHANGE_DETECT);
88 temp &= ~(1 << USBC_BP_ISCR_DPDM_CHANGE_DETECT);
89
90 return temp;
91}
92
93static void USBC_EnableIdPullUp(__iomem void *base)
94{
95 u32 reg_val;
96
97 reg_val = musb_readl(base, USBC_REG_o_ISCR);
98 reg_val |= (1 << USBC_BP_ISCR_ID_PULLUP_EN);
99 reg_val = USBC_WakeUp_ClearChangeDetect(reg_val);
100 musb_writel(base, USBC_REG_o_ISCR, reg_val);
101}
102
Hans de Goede9c4f11d2015-01-11 20:34:48 +0100103static void USBC_EnableDpDmPullUp(__iomem void *base)
104{
105 u32 reg_val;
106
107 reg_val = musb_readl(base, USBC_REG_o_ISCR);
108 reg_val |= (1 << USBC_BP_ISCR_DPDM_PULLUP_EN);
109 reg_val = USBC_WakeUp_ClearChangeDetect(reg_val);
110 musb_writel(base, USBC_REG_o_ISCR, reg_val);
111}
112
Hans de Goede9c4f11d2015-01-11 20:34:48 +0100113static void USBC_ForceIdToLow(__iomem void *base)
114{
115 u32 reg_val;
116
117 reg_val = musb_readl(base, USBC_REG_o_ISCR);
118 reg_val &= ~(0x03 << USBC_BP_ISCR_FORCE_ID);
119 reg_val |= (0x02 << USBC_BP_ISCR_FORCE_ID);
120 reg_val = USBC_WakeUp_ClearChangeDetect(reg_val);
121 musb_writel(base, USBC_REG_o_ISCR, reg_val);
122}
123
124static void USBC_ForceIdToHigh(__iomem void *base)
125{
126 u32 reg_val;
127
128 reg_val = musb_readl(base, USBC_REG_o_ISCR);
129 reg_val &= ~(0x03 << USBC_BP_ISCR_FORCE_ID);
130 reg_val |= (0x03 << USBC_BP_ISCR_FORCE_ID);
131 reg_val = USBC_WakeUp_ClearChangeDetect(reg_val);
132 musb_writel(base, USBC_REG_o_ISCR, reg_val);
133}
134
Hans de Goede836e3342015-06-14 11:55:28 +0200135static void USBC_ForceVbusValidToLow(__iomem void *base)
136{
137 u32 reg_val;
138
139 reg_val = musb_readl(base, USBC_REG_o_ISCR);
140 reg_val &= ~(0x03 << USBC_BP_ISCR_FORCE_VBUS_VALID);
141 reg_val |= (0x02 << USBC_BP_ISCR_FORCE_VBUS_VALID);
142 reg_val = USBC_WakeUp_ClearChangeDetect(reg_val);
143 musb_writel(base, USBC_REG_o_ISCR, reg_val);
144}
145
Hans de Goede9c4f11d2015-01-11 20:34:48 +0100146static void USBC_ForceVbusValidToHigh(__iomem void *base)
147{
148 u32 reg_val;
149
150 reg_val = musb_readl(base, USBC_REG_o_ISCR);
151 reg_val &= ~(0x03 << USBC_BP_ISCR_FORCE_VBUS_VALID);
152 reg_val |= (0x03 << USBC_BP_ISCR_FORCE_VBUS_VALID);
153 reg_val = USBC_WakeUp_ClearChangeDetect(reg_val);
154 musb_writel(base, USBC_REG_o_ISCR, reg_val);
155}
156
157static void USBC_ConfigFIFO_Base(void)
158{
159 u32 reg_value;
160
161 /* config usb fifo, 8kb mode */
162 reg_value = readl(SUNXI_SRAMC_BASE + 0x04);
163 reg_value &= ~(0x03 << 0);
164 reg_value |= (1 << 0);
165 writel(reg_value, SUNXI_SRAMC_BASE + 0x04);
166}
167
168/******************************************************************************
Siarhei Siamashkabce07f62015-10-25 06:44:47 +0200169 * Needed for the DFU polling magic
170 ******************************************************************************/
171
172static u8 last_int_usb;
173
174bool dfu_usb_get_reset(void)
175{
176 return !!(last_int_usb & MUSB_INTR_RESET);
177}
178
179/******************************************************************************
Hans de Goede9c4f11d2015-01-11 20:34:48 +0100180 * MUSB Glue code
181 ******************************************************************************/
182
183static irqreturn_t sunxi_musb_interrupt(int irq, void *__hci)
184{
185 struct musb *musb = __hci;
186 irqreturn_t retval = IRQ_NONE;
187
188 /* read and flush interrupts */
189 musb->int_usb = musb_readb(musb->mregs, MUSB_INTRUSB);
Siarhei Siamashkabce07f62015-10-25 06:44:47 +0200190 last_int_usb = musb->int_usb;
Hans de Goede9c4f11d2015-01-11 20:34:48 +0100191 if (musb->int_usb)
192 musb_writeb(musb->mregs, MUSB_INTRUSB, musb->int_usb);
193 musb->int_tx = musb_readw(musb->mregs, MUSB_INTRTX);
194 if (musb->int_tx)
195 musb_writew(musb->mregs, MUSB_INTRTX, musb->int_tx);
196 musb->int_rx = musb_readw(musb->mregs, MUSB_INTRRX);
197 if (musb->int_rx)
198 musb_writew(musb->mregs, MUSB_INTRRX, musb->int_rx);
199
200 if (musb->int_usb || musb->int_tx || musb->int_rx)
201 retval |= musb_interrupt(musb);
202
203 return retval;
204}
205
Hans de Goede836e3342015-06-14 11:55:28 +0200206/* musb_core does not call enable / disable in a balanced manner <sigh> */
207static bool enabled = false;
208
Hans de Goede81c49982015-06-17 21:33:54 +0200209static int sunxi_musb_enable(struct musb *musb)
Hans de Goede9c4f11d2015-01-11 20:34:48 +0100210{
211 pr_debug("%s():\n", __func__);
212
Maxime Ripard9634fa52015-08-04 17:04:10 +0200213 musb_ep_select(musb->mregs, 0);
214 musb_writeb(musb->mregs, MUSB_FADDR, 0);
215
Hans de Goede836e3342015-06-14 11:55:28 +0200216 if (enabled)
Hans de Goede81c49982015-06-17 21:33:54 +0200217 return 0;
Hans de Goede836e3342015-06-14 11:55:28 +0200218
Hans de Goede9c4f11d2015-01-11 20:34:48 +0100219 /* select PIO mode */
220 musb_writeb(musb->mregs, USBC_REG_o_VEND0, 0);
221
Hans de Goedec93ecd02015-06-14 16:48:56 +0200222 if (is_host_enabled(musb)) {
Hans de Goede39c119d2015-07-08 16:44:22 +0200223 int id = sunxi_usb_phy_id_detect(0);
224
225 if (id == 1 && sunxi_usb_phy_power_is_on(0))
226 sunxi_usb_phy_power_off(0);
227
228 if (!sunxi_usb_phy_power_is_on(0)) {
229 int vbus = sunxi_usb_phy_vbus_detect(0);
230 if (vbus == 1) {
231 printf("A charger is plugged into the OTG: ");
232 return -ENODEV;
233 }
Hans de Goedec93ecd02015-06-14 16:48:56 +0200234 }
Hans de Goede39c119d2015-07-08 16:44:22 +0200235
236 if (id == 1) {
Hans de Goedec77fbfb2015-06-14 17:40:37 +0200237 printf("No host cable detected: ");
238 return -ENODEV;
239 }
Hans de Goede39c119d2015-07-08 16:44:22 +0200240
241 if (!sunxi_usb_phy_power_is_on(0))
242 sunxi_usb_phy_power_on(0);
Hans de Goedec93ecd02015-06-14 16:48:56 +0200243 }
Hans de Goede836e3342015-06-14 11:55:28 +0200244
245 USBC_ForceVbusValidToHigh(musb->mregs);
246
247 enabled = true;
Hans de Goede81c49982015-06-17 21:33:54 +0200248 return 0;
Hans de Goede9c4f11d2015-01-11 20:34:48 +0100249}
250
251static void sunxi_musb_disable(struct musb *musb)
252{
253 pr_debug("%s():\n", __func__);
254
Hans de Goede836e3342015-06-14 11:55:28 +0200255 if (!enabled)
256 return;
Hans de Goede7e5aabd2015-04-27 11:44:22 +0200257
Hans de Goede836e3342015-06-14 11:55:28 +0200258 USBC_ForceVbusValidToLow(musb->mregs);
259 mdelay(200); /* Wait for the current session to timeout */
Hans de Goede7e5aabd2015-04-27 11:44:22 +0200260
Hans de Goede836e3342015-06-14 11:55:28 +0200261 enabled = false;
Hans de Goede9c4f11d2015-01-11 20:34:48 +0100262}
263
264static int sunxi_musb_init(struct musb *musb)
265{
Hans de Goede7e5aabd2015-04-27 11:44:22 +0200266 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Hans de Goede9c4f11d2015-01-11 20:34:48 +0100267
268 pr_debug("%s():\n", __func__);
269
Hans de Goede9c4f11d2015-01-11 20:34:48 +0100270 musb->isr = sunxi_musb_interrupt;
Hans de Goede7e5aabd2015-04-27 11:44:22 +0200271
272 setbits_le32(&ccm->ahb_gate0, 1 << AHB_GATE_OFFSET_USB0);
273#ifdef CONFIG_SUNXI_GEN_SUN6I
274 setbits_le32(&ccm->ahb_reset0_cfg, 1 << AHB_GATE_OFFSET_USB0);
275#endif
Hans de Goede86979092015-04-27 14:54:47 +0200276 sunxi_usb_phy_init(0);
Hans de Goede9c4f11d2015-01-11 20:34:48 +0100277
278 USBC_ConfigFIFO_Base();
279 USBC_EnableDpDmPullUp(musb->mregs);
280 USBC_EnableIdPullUp(musb->mregs);
281
282 if (is_host_enabled(musb)) {
283 /* Host mode */
284 USBC_ForceIdToLow(musb->mregs);
Hans de Goede9c4f11d2015-01-11 20:34:48 +0100285 } else {
286 /* Peripheral mode */
287 USBC_ForceIdToHigh(musb->mregs);
Hans de Goede9c4f11d2015-01-11 20:34:48 +0100288 }
Hans de Goedef2b45c82015-02-11 09:05:18 +0100289 USBC_ForceVbusValidToHigh(musb->mregs);
Hans de Goede9c4f11d2015-01-11 20:34:48 +0100290
291 return 0;
292}
293
Hans de Goedeea059bf2015-06-17 15:49:26 +0200294static const struct musb_platform_ops sunxi_musb_ops = {
Hans de Goede9c4f11d2015-01-11 20:34:48 +0100295 .init = sunxi_musb_init,
Hans de Goede9c4f11d2015-01-11 20:34:48 +0100296 .enable = sunxi_musb_enable,
297 .disable = sunxi_musb_disable,
298};
Hans de Goedeea059bf2015-06-17 15:49:26 +0200299
300static struct musb_hdrc_config musb_config = {
301 .multipoint = 1,
302 .dyn_fifo = 1,
303 .num_eps = 6,
304 .ram_bits = 11,
305};
306
307static struct musb_hdrc_platform_data musb_plat = {
Paul Kocialkowskif34dfcb2015-08-04 17:04:06 +0200308#if defined(CONFIG_USB_MUSB_HOST)
Hans de Goedeea059bf2015-06-17 15:49:26 +0200309 .mode = MUSB_HOST,
310#else
311 .mode = MUSB_PERIPHERAL,
312#endif
313 .config = &musb_config,
314 .power = 250,
315 .platform_ops = &sunxi_musb_ops,
316};
317
Paul Kocialkowskif34dfcb2015-08-04 17:04:06 +0200318#ifdef CONFIG_USB_MUSB_HOST
Hans de Goede0b3845a2015-06-17 17:44:58 +0200319int musb_usb_probe(struct udevice *dev)
320{
321 struct musb_host_data *host = dev_get_priv(dev);
322 struct usb_bus_priv *priv = dev_get_uclass_priv(dev);
Hans de Goede31e4f6f2015-06-18 22:45:34 +0200323 int ret;
Hans de Goede0b3845a2015-06-17 17:44:58 +0200324
325 priv->desc_before_addr = true;
326
327 if (!host->host) {
328 host->host = musb_init_controller(&musb_plat, NULL,
329 (void *)SUNXI_USB0_BASE);
Hans de Goede31e4f6f2015-06-18 22:45:34 +0200330 if (!host->host)
Hans de Goede0b3845a2015-06-17 17:44:58 +0200331 return -EIO;
Hans de Goede0b3845a2015-06-17 17:44:58 +0200332 }
333
Hans de Goede31e4f6f2015-06-18 22:45:34 +0200334 ret = musb_lowlevel_init(host);
335 if (ret == 0)
336 printf("MUSB OTG\n");
Hans de Goede0b3845a2015-06-17 17:44:58 +0200337
Hans de Goede31e4f6f2015-06-18 22:45:34 +0200338 return ret;
Hans de Goede0b3845a2015-06-17 17:44:58 +0200339}
340
341int musb_usb_remove(struct udevice *dev)
342{
343 struct musb_host_data *host = dev_get_priv(dev);
344
345 musb_stop(host->host);
346
347 return 0;
348}
349
350U_BOOT_DRIVER(usb_musb) = {
351 .name = "sunxi-musb",
352 .id = UCLASS_USB,
353 .probe = musb_usb_probe,
354 .remove = musb_usb_remove,
355 .ops = &musb_usb_ops,
356 .platdata_auto_alloc_size = sizeof(struct usb_platdata),
357 .priv_auto_alloc_size = sizeof(struct musb_host_data),
358};
359#endif
360
Hans de Goedeea059bf2015-06-17 15:49:26 +0200361void sunxi_musb_board_init(void)
362{
Paul Kocialkowskif34dfcb2015-08-04 17:04:06 +0200363#ifdef CONFIG_USB_MUSB_HOST
Hans de Goede0b3845a2015-06-17 17:44:58 +0200364 struct udevice *dev;
365
366 /*
367 * Bind the driver directly for now as musb linux kernel support is
368 * still pending upstream so our dts files do not have the necessary
369 * nodes yet. TODO: Remove this as soon as the dts nodes are in place
370 * and bind by compatible instead.
371 */
372 device_bind_driver(dm_root(), "sunxi-musb", "sunxi-musb", &dev);
373#else
Hans de Goedeea059bf2015-06-17 15:49:26 +0200374 musb_register(&musb_plat, NULL, (void *)SUNXI_USB0_BASE);
Hans de Goede0b3845a2015-06-17 17:44:58 +0200375#endif
Hans de Goedeea059bf2015-06-17 15:49:26 +0200376}