blob: 2666351391431e091a761fb92f7879777bde2625 [file] [log] [blame]
Wolfgang Grandegger3f467522012-02-08 22:33:25 +00001/*
2 * Copyright (c) 2009 Daniel Mack <daniel@caiaq.de>
3 * Copyright (C) 2010 Freescale Semiconductor, Inc.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Wolfgang Grandegger3f467522012-02-08 22:33:25 +00006 */
7
8#include <common.h>
9#include <usb.h>
10#include <errno.h>
11#include <linux/compiler.h>
12#include <usb/ehci-fsl.h>
13#include <asm/io.h>
14#include <asm/arch/imx-regs.h>
15#include <asm/arch/clock.h>
Troy Kiskyaf2a35f2012-07-19 08:18:22 +000016#include <asm/imx-common/iomux-v3.h>
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000017
18#include "ehci.h"
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000019
20#define USB_OTGREGS_OFFSET 0x000
21#define USB_H1REGS_OFFSET 0x200
22#define USB_H2REGS_OFFSET 0x400
23#define USB_H3REGS_OFFSET 0x600
24#define USB_OTHERREGS_OFFSET 0x800
25
26#define USB_H1_CTRL_OFFSET 0x04
27
28#define USBPHY_CTRL 0x00000030
29#define USBPHY_CTRL_SET 0x00000034
30#define USBPHY_CTRL_CLR 0x00000038
31#define USBPHY_CTRL_TOG 0x0000003c
32
33#define USBPHY_PWD 0x00000000
34#define USBPHY_CTRL_SFTRST 0x80000000
35#define USBPHY_CTRL_CLKGATE 0x40000000
36#define USBPHY_CTRL_ENUTMILEVEL3 0x00008000
37#define USBPHY_CTRL_ENUTMILEVEL2 0x00004000
Troy Kiskyd1a52862013-10-10 15:27:59 -070038#define USBPHY_CTRL_OTG_ID 0x08000000
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000039
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000040#define ANADIG_USB2_CHRG_DETECT_EN_B 0x00100000
41#define ANADIG_USB2_CHRG_DETECT_CHK_CHRG_B 0x00080000
42
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000043#define ANADIG_USB2_PLL_480_CTRL_BYPASS 0x00010000
44#define ANADIG_USB2_PLL_480_CTRL_ENABLE 0x00002000
45#define ANADIG_USB2_PLL_480_CTRL_POWER 0x00001000
46#define ANADIG_USB2_PLL_480_CTRL_EN_USB_CLKS 0x00000040
47
Adrian Alonso35554fc2015-08-06 15:43:17 -050048#define USBNC_OFFSET 0x200
49#define USBNC_PHYSTATUS_ID_DIG (1 << 4) /* otg_id status */
50#define USBNC_PHYCFG2_ACAENB (1 << 4) /* otg_id detection enable */
51#define UCTRL_PM (1 << 9) /* OTG Power Mask */
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000052#define UCTRL_OVER_CUR_POL (1 << 8) /* OTG Polarity of Overcurrent */
53#define UCTRL_OVER_CUR_DIS (1 << 7) /* Disable OTG Overcurrent Detection */
54
55/* USBCMD */
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000056#define UCMD_RUN_STOP (1 << 0) /* controller run/stop */
57#define UCMD_RESET (1 << 1) /* controller reset */
58
Adrian Alonso35554fc2015-08-06 15:43:17 -050059#if defined(CONFIG_MX6)
Troy Kiskyd1a52862013-10-10 15:27:59 -070060static const unsigned phy_bases[] = {
61 USB_PHY0_BASE_ADDR,
62 USB_PHY1_BASE_ADDR,
63};
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000064
Troy Kiskyd1a52862013-10-10 15:27:59 -070065static void usb_internal_phy_clock_gate(int index, int on)
66{
67 void __iomem *phy_reg;
68
69 if (index >= ARRAY_SIZE(phy_bases))
70 return;
71
72 phy_reg = (void __iomem *)phy_bases[index];
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000073 phy_reg += on ? USBPHY_CTRL_CLR : USBPHY_CTRL_SET;
Adrian Alonsoe38ff302015-08-06 15:43:15 -050074 writel(USBPHY_CTRL_CLKGATE, phy_reg);
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000075}
76
Troy Kiskyd1a52862013-10-10 15:27:59 -070077static void usb_power_config(int index)
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000078{
Wolfgang Grandegger3f29d962012-05-02 04:36:39 +000079 struct anatop_regs __iomem *anatop =
80 (struct anatop_regs __iomem *)ANATOP_BASE_ADDR;
Troy Kiskyd1a52862013-10-10 15:27:59 -070081 void __iomem *chrg_detect;
82 void __iomem *pll_480_ctrl_clr;
83 void __iomem *pll_480_ctrl_set;
84
85 switch (index) {
86 case 0:
87 chrg_detect = &anatop->usb1_chrg_detect;
88 pll_480_ctrl_clr = &anatop->usb1_pll_480_ctrl_clr;
89 pll_480_ctrl_set = &anatop->usb1_pll_480_ctrl_set;
90 break;
91 case 1:
92 chrg_detect = &anatop->usb2_chrg_detect;
93 pll_480_ctrl_clr = &anatop->usb2_pll_480_ctrl_clr;
94 pll_480_ctrl_set = &anatop->usb2_pll_480_ctrl_set;
95 break;
96 default:
97 return;
98 }
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000099 /*
Troy Kiskyd1a52862013-10-10 15:27:59 -0700100 * Some phy and power's special controls
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000101 * 1. The external charger detector needs to be disabled
102 * or the signal at DP will be poor
Troy Kiskyd1a52862013-10-10 15:27:59 -0700103 * 2. The PLL's power and output to usb
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000104 * is totally controlled by IC, so the Software only needs
105 * to enable them at initializtion.
106 */
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500107 writel(ANADIG_USB2_CHRG_DETECT_EN_B |
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000108 ANADIG_USB2_CHRG_DETECT_CHK_CHRG_B,
Troy Kiskyd1a52862013-10-10 15:27:59 -0700109 chrg_detect);
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000110
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500111 writel(ANADIG_USB2_PLL_480_CTRL_BYPASS,
Troy Kiskyd1a52862013-10-10 15:27:59 -0700112 pll_480_ctrl_clr);
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000113
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500114 writel(ANADIG_USB2_PLL_480_CTRL_ENABLE |
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000115 ANADIG_USB2_PLL_480_CTRL_POWER |
116 ANADIG_USB2_PLL_480_CTRL_EN_USB_CLKS,
Troy Kiskyd1a52862013-10-10 15:27:59 -0700117 pll_480_ctrl_set);
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000118}
119
Adrian Alonsof0c89d52015-08-06 15:46:03 -0500120static int wait_for_bit(u32 *reg, const u32 mask, bool set)
121{
122 u32 val;
123 const unsigned int timeout = 10000;
124 unsigned long start = get_timer(0);
125
126 while(1) {
127 val = readl(reg);
128 if (!set)
129 val = ~val;
130
131 if ((val & mask) == mask)
132 return 0;
133
134 if (get_timer(start) > timeout)
135 break;
136
137 udelay(1);
138 }
139
140 debug("%s: Timeout (reg=%p mask=%08x wait_set=%i)\n",
141 __func__, reg, mask, set);
142
143 return -ETIMEDOUT;
144}
145
Troy Kiskyd1a52862013-10-10 15:27:59 -0700146/* Return 0 : host node, <>0 : device mode */
147static int usb_phy_enable(int index, struct usb_ehci *ehci)
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000148{
Troy Kiskyd1a52862013-10-10 15:27:59 -0700149 void __iomem *phy_reg;
150 void __iomem *phy_ctrl;
151 void __iomem *usb_cmd;
Adrian Alonsof0c89d52015-08-06 15:46:03 -0500152 int ret;
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000153
Troy Kiskyd1a52862013-10-10 15:27:59 -0700154 if (index >= ARRAY_SIZE(phy_bases))
155 return 0;
156
157 phy_reg = (void __iomem *)phy_bases[index];
158 phy_ctrl = (void __iomem *)(phy_reg + USBPHY_CTRL);
159 usb_cmd = (void __iomem *)&ehci->usbcmd;
160
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000161 /* Stop then Reset */
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500162 clrbits_le32(usb_cmd, UCMD_RUN_STOP);
Adrian Alonsof0c89d52015-08-06 15:46:03 -0500163 ret = wait_for_bit(usb_cmd, UCMD_RUN_STOP, 0);
164 if (ret)
165 return ret;
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000166
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500167 setbits_le32(usb_cmd, UCMD_RESET);
Adrian Alonsof0c89d52015-08-06 15:46:03 -0500168 ret = wait_for_bit(usb_cmd, UCMD_RESET, 0);
169 if (ret)
170 return ret;
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000171
172 /* Reset USBPHY module */
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500173 setbits_le32(phy_ctrl, USBPHY_CTRL_SFTRST);
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000174 udelay(10);
175
176 /* Remove CLKGATE and SFTRST */
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500177 clrbits_le32(phy_ctrl, USBPHY_CTRL_CLKGATE | USBPHY_CTRL_SFTRST);
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000178 udelay(10);
179
180 /* Power up the PHY */
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500181 writel(0, phy_reg + USBPHY_PWD);
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000182 /* enable FS/LS device */
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500183 setbits_le32(phy_ctrl, USBPHY_CTRL_ENUTMILEVEL2 |
184 USBPHY_CTRL_ENUTMILEVEL3);
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000185
Peng Fan229dbba2014-11-10 08:50:39 +0800186 return 0;
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000187}
188
Peng Fan229dbba2014-11-10 08:50:39 +0800189int usb_phy_mode(int port)
190{
191 void __iomem *phy_reg;
192 void __iomem *phy_ctrl;
193 u32 val;
194
195 phy_reg = (void __iomem *)phy_bases[port];
196 phy_ctrl = (void __iomem *)(phy_reg + USBPHY_CTRL);
197
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500198 val = readl(phy_ctrl);
Peng Fan229dbba2014-11-10 08:50:39 +0800199
200 if (val & USBPHY_CTRL_OTG_ID)
201 return USB_INIT_DEVICE;
202 else
203 return USB_INIT_HOST;
204}
205
Adrian Alonso35554fc2015-08-06 15:43:17 -0500206/* Base address for this IP block is 0x02184800 */
207struct usbnc_regs {
208 u32 ctrl[4]; /* otg/host1-3 */
209 u32 uh2_hsic_ctrl;
210 u32 uh3_hsic_ctrl;
211 u32 otg_phy_ctrl_0;
212 u32 uh1_phy_ctrl_0;
213};
214#elif defined(CONFIG_MX7)
215struct usbnc_regs {
216 u32 ctrl1;
217 u32 ctrl2;
218 u32 reserve1[10];
219 u32 phy_cfg1;
220 u32 phy_cfg2;
221 u32 phy_status;
222 u32 reserve2[4];
223 u32 adp_cfg1;
224 u32 adp_cfg2;
225 u32 adp_status;
226};
227
228static void usb_power_config(int index)
229{
230 struct usbnc_regs *usbnc = (struct usbnc_regs *)(USB_BASE_ADDR +
231 (0x10000 * index) + USBNC_OFFSET);
232 void __iomem *phy_cfg2 = (void __iomem *)(&usbnc->phy_cfg2);
233
234 /* Enable usb_otg_id detection */
235 setbits_le32(phy_cfg2, USBNC_PHYCFG2_ACAENB);
236}
237
238int usb_phy_mode(int port)
239{
240 struct usbnc_regs *usbnc = (struct usbnc_regs *)(USB_BASE_ADDR +
241 (0x10000 * port) + USBNC_OFFSET);
242 void __iomem *status = (void __iomem *)(&usbnc->phy_status);
243 u32 val;
244
245 val = readl(status);
246
247 if (val & USBNC_PHYSTATUS_ID_DIG)
248 return USB_INIT_DEVICE;
249 else
250 return USB_INIT_HOST;
251}
252#endif
253
254static void usb_oc_config(int index)
255{
256#if defined(CONFIG_MX6)
257 struct usbnc_regs *usbnc = (struct usbnc_regs *)(USB_BASE_ADDR +
258 USB_OTHERREGS_OFFSET);
259 void __iomem *ctrl = (void __iomem *)(&usbnc->ctrl[index]);
260#elif defined(CONFIG_MX7)
261 struct usbnc_regs *usbnc = (struct usbnc_regs *)(USB_BASE_ADDR +
262 (0x10000 * index) + USBNC_OFFSET);
263 void __iomem *ctrl = (void __iomem *)(&usbnc->ctrl1);
264#endif
265
266#if CONFIG_MACH_TYPE == MACH_TYPE_MX6Q_ARM2
267 /* mx6qarm2 seems to required a different setting*/
268 clrbits_le32(ctrl, UCTRL_OVER_CUR_POL);
269#else
270 setbits_le32(ctrl, UCTRL_OVER_CUR_POL);
271#endif
272
273#if defined(CONFIG_MX6)
274 setbits_le32(ctrl, UCTRL_OVER_CUR_DIS);
275#elif defined(CONFIG_MX7)
276 setbits_le32(ctrl, UCTRL_OVER_CUR_DIS | UCTRL_PM);
277#endif
278}
279
Adrian Alonso74f06102015-08-06 15:43:16 -0500280/**
281 * board_ehci_hcd_init - override usb phy mode
282 * @port: usb host/otg port
283 *
284 * Target board specific, override usb_phy_mode.
285 * When usb-otg is used as usb host port, iomux pad usb_otg_id can be
286 * left disconnected in this case usb_phy_mode will not be able to identify
287 * the phy mode that usb port is used.
288 * Machine file overrides board_usb_phy_mode.
289 *
290 * Return: USB_INIT_DEVICE or USB_INIT_HOST
291 */
Peng Fan229dbba2014-11-10 08:50:39 +0800292int __weak board_usb_phy_mode(int port)
293{
294 return usb_phy_mode(port);
295}
296
Adrian Alonso74f06102015-08-06 15:43:16 -0500297/**
298 * board_ehci_hcd_init - set usb vbus voltage
299 * @port: usb otg port
300 *
301 * Target board specific, setup iomux pad to setup supply vbus voltage
302 * for usb otg port. Machine board file overrides board_ehci_hcd_init
303 *
304 * Return: 0 Success
305 */
Benoît Thébaudeauf22e4fa2012-11-13 09:58:35 +0000306int __weak board_ehci_hcd_init(int port)
307{
308 return 0;
309}
310
Adrian Alonso74f06102015-08-06 15:43:16 -0500311/**
312 * board_ehci_power - enables/disables usb vbus voltage
313 * @port: usb otg port
314 * @on: on/off vbus voltage
315 *
316 * Enables/disables supply vbus voltage for usb otg port.
317 * Machine board file overrides board_ehci_power
318 *
319 * Return: 0 Success
320 */
Troy Kiskyd1a52862013-10-10 15:27:59 -0700321int __weak board_ehci_power(int port, int on)
322{
323 return 0;
324}
325
Troy Kisky127efc42013-10-10 15:27:57 -0700326int ehci_hcd_init(int index, enum usb_init_type init,
327 struct ehci_hccr **hccr, struct ehci_hcor **hcor)
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000328{
Troy Kiskyd1a52862013-10-10 15:27:59 -0700329 enum usb_init_type type;
Adrian Alonso35554fc2015-08-06 15:43:17 -0500330#if defined(CONFIG_MX6)
331 u32 controller_spacing = 0x200;
332#elif defined(CONFIG_MX7)
333 u32 controller_spacing = 0x10000;
334#endif
Ye.Li5546ad02014-09-15 17:23:14 +0800335 struct usb_ehci *ehci = (struct usb_ehci *)(USB_BASE_ADDR +
Adrian Alonso35554fc2015-08-06 15:43:17 -0500336 (controller_spacing * index));
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000337
Troy Kiskyd1a52862013-10-10 15:27:59 -0700338 if (index > 3)
339 return -EINVAL;
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000340 enable_usboh3_clk(1);
341 mdelay(1);
342
343 /* Do board specific initialization */
Troy Kiskyd1a52862013-10-10 15:27:59 -0700344 board_ehci_hcd_init(index);
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000345
Troy Kiskyd1a52862013-10-10 15:27:59 -0700346 usb_power_config(index);
347 usb_oc_config(index);
Adrian Alonso35554fc2015-08-06 15:43:17 -0500348
349#if defined(CONFIG_MX6)
Troy Kiskyd1a52862013-10-10 15:27:59 -0700350 usb_internal_phy_clock_gate(index, 1);
Peng Fan229dbba2014-11-10 08:50:39 +0800351 usb_phy_enable(index, ehci);
Adrian Alonso35554fc2015-08-06 15:43:17 -0500352#endif
Peng Fan229dbba2014-11-10 08:50:39 +0800353 type = board_usb_phy_mode(index);
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000354
Lucas Stach676ae062012-09-26 00:14:35 +0200355 *hccr = (struct ehci_hccr *)((uint32_t)&ehci->caplength);
356 *hcor = (struct ehci_hcor *)((uint32_t)*hccr +
357 HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000358
Troy Kiskyd1a52862013-10-10 15:27:59 -0700359 if ((type == init) || (type == USB_INIT_DEVICE))
360 board_ehci_power(index, (type == USB_INIT_DEVICE) ? 0 : 1);
361 if (type != init)
362 return -ENODEV;
363 if (type == USB_INIT_DEVICE)
364 return 0;
Adrian Alonso35554fc2015-08-06 15:43:17 -0500365
Troy Kiskyd1a52862013-10-10 15:27:59 -0700366 setbits_le32(&ehci->usbmode, CM_HOST);
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500367 writel(CONFIG_MXC_USB_PORTSC, &ehci->portsc);
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000368 setbits_le32(&ehci->portsc, USB_EN);
369
370 mdelay(10);
371
372 return 0;
373}
374
Lucas Stach676ae062012-09-26 00:14:35 +0200375int ehci_hcd_stop(int index)
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000376{
377 return 0;
378}