blob: 1f5b0560db55c5dc081ce236fb58989e69a36ece [file] [log] [blame]
Wolfgang Grandegger1859b702012-02-08 22:33:25 +00001/*
2 * Copyright (c) 2009 Daniel Mack <daniel@caiaq.de>
3 * Copyright (C) 2010 Freescale Semiconductor, Inc.
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Wolfgang Grandegger1859b702012-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 Kisky2714e172012-07-19 08:18:22 +000016#include <asm/imx-common/iomux-v3.h>
Wolfgang Grandegger1859b702012-02-08 22:33:25 +000017
18#include "ehci.h"
Wolfgang Grandegger1859b702012-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 Kiskyed72a9e2013-10-10 15:27:59 -070038#define USBPHY_CTRL_OTG_ID 0x08000000
Wolfgang Grandegger1859b702012-02-08 22:33:25 +000039
Wolfgang Grandegger1859b702012-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 Grandegger1859b702012-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
48
49#define UCTRL_OVER_CUR_POL (1 << 8) /* OTG Polarity of Overcurrent */
50#define UCTRL_OVER_CUR_DIS (1 << 7) /* Disable OTG Overcurrent Detection */
51
52/* USBCMD */
Wolfgang Grandegger1859b702012-02-08 22:33:25 +000053#define UCMD_RUN_STOP (1 << 0) /* controller run/stop */
54#define UCMD_RESET (1 << 1) /* controller reset */
55
Troy Kiskyed72a9e2013-10-10 15:27:59 -070056static const unsigned phy_bases[] = {
57 USB_PHY0_BASE_ADDR,
58 USB_PHY1_BASE_ADDR,
59};
60
61static void usb_internal_phy_clock_gate(int index, int on)
Wolfgang Grandegger1859b702012-02-08 22:33:25 +000062{
Troy Kiskyed72a9e2013-10-10 15:27:59 -070063 void __iomem *phy_reg;
Wolfgang Grandegger1859b702012-02-08 22:33:25 +000064
Troy Kiskyed72a9e2013-10-10 15:27:59 -070065 if (index >= ARRAY_SIZE(phy_bases))
66 return;
67
68 phy_reg = (void __iomem *)phy_bases[index];
Wolfgang Grandegger1859b702012-02-08 22:33:25 +000069 phy_reg += on ? USBPHY_CTRL_CLR : USBPHY_CTRL_SET;
Adrian Alonsoaee79b42015-08-06 15:43:15 -050070 writel(USBPHY_CTRL_CLKGATE, phy_reg);
Wolfgang Grandegger1859b702012-02-08 22:33:25 +000071}
72
Troy Kiskyed72a9e2013-10-10 15:27:59 -070073static void usb_power_config(int index)
Wolfgang Grandegger1859b702012-02-08 22:33:25 +000074{
Wolfgang Grandegger5d113ca2012-05-02 04:36:39 +000075 struct anatop_regs __iomem *anatop =
76 (struct anatop_regs __iomem *)ANATOP_BASE_ADDR;
Troy Kiskyed72a9e2013-10-10 15:27:59 -070077 void __iomem *chrg_detect;
78 void __iomem *pll_480_ctrl_clr;
79 void __iomem *pll_480_ctrl_set;
80
81 switch (index) {
82 case 0:
83 chrg_detect = &anatop->usb1_chrg_detect;
84 pll_480_ctrl_clr = &anatop->usb1_pll_480_ctrl_clr;
85 pll_480_ctrl_set = &anatop->usb1_pll_480_ctrl_set;
86 break;
87 case 1:
88 chrg_detect = &anatop->usb2_chrg_detect;
89 pll_480_ctrl_clr = &anatop->usb2_pll_480_ctrl_clr;
90 pll_480_ctrl_set = &anatop->usb2_pll_480_ctrl_set;
91 break;
92 default:
93 return;
94 }
Wolfgang Grandegger1859b702012-02-08 22:33:25 +000095 /*
Troy Kiskyed72a9e2013-10-10 15:27:59 -070096 * Some phy and power's special controls
Wolfgang Grandegger1859b702012-02-08 22:33:25 +000097 * 1. The external charger detector needs to be disabled
98 * or the signal at DP will be poor
Troy Kiskyed72a9e2013-10-10 15:27:59 -070099 * 2. The PLL's power and output to usb
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000100 * is totally controlled by IC, so the Software only needs
101 * to enable them at initializtion.
102 */
Adrian Alonsoaee79b42015-08-06 15:43:15 -0500103 writel(ANADIG_USB2_CHRG_DETECT_EN_B |
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000104 ANADIG_USB2_CHRG_DETECT_CHK_CHRG_B,
Troy Kiskyed72a9e2013-10-10 15:27:59 -0700105 chrg_detect);
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000106
Adrian Alonsoaee79b42015-08-06 15:43:15 -0500107 writel(ANADIG_USB2_PLL_480_CTRL_BYPASS,
Troy Kiskyed72a9e2013-10-10 15:27:59 -0700108 pll_480_ctrl_clr);
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000109
Adrian Alonsoaee79b42015-08-06 15:43:15 -0500110 writel(ANADIG_USB2_PLL_480_CTRL_ENABLE |
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000111 ANADIG_USB2_PLL_480_CTRL_POWER |
112 ANADIG_USB2_PLL_480_CTRL_EN_USB_CLKS,
Troy Kiskyed72a9e2013-10-10 15:27:59 -0700113 pll_480_ctrl_set);
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000114}
115
Troy Kiskyed72a9e2013-10-10 15:27:59 -0700116/* Return 0 : host node, <>0 : device mode */
117static int usb_phy_enable(int index, struct usb_ehci *ehci)
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000118{
Troy Kiskyed72a9e2013-10-10 15:27:59 -0700119 void __iomem *phy_reg;
120 void __iomem *phy_ctrl;
121 void __iomem *usb_cmd;
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000122
Troy Kiskyed72a9e2013-10-10 15:27:59 -0700123 if (index >= ARRAY_SIZE(phy_bases))
124 return 0;
125
126 phy_reg = (void __iomem *)phy_bases[index];
127 phy_ctrl = (void __iomem *)(phy_reg + USBPHY_CTRL);
128 usb_cmd = (void __iomem *)&ehci->usbcmd;
129
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000130 /* Stop then Reset */
Adrian Alonsoaee79b42015-08-06 15:43:15 -0500131 clrbits_le32(usb_cmd, UCMD_RUN_STOP);
132 while (readl(usb_cmd) & UCMD_RUN_STOP)
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000133 ;
134
Adrian Alonsoaee79b42015-08-06 15:43:15 -0500135 setbits_le32(usb_cmd, UCMD_RESET);
136 while (readl(usb_cmd) & UCMD_RESET)
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000137 ;
138
139 /* Reset USBPHY module */
Adrian Alonsoaee79b42015-08-06 15:43:15 -0500140 setbits_le32(phy_ctrl, USBPHY_CTRL_SFTRST);
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000141 udelay(10);
142
143 /* Remove CLKGATE and SFTRST */
Adrian Alonsoaee79b42015-08-06 15:43:15 -0500144 clrbits_le32(phy_ctrl, USBPHY_CTRL_CLKGATE | USBPHY_CTRL_SFTRST);
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000145 udelay(10);
146
147 /* Power up the PHY */
Adrian Alonsoaee79b42015-08-06 15:43:15 -0500148 writel(0, phy_reg + USBPHY_PWD);
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000149 /* enable FS/LS device */
Adrian Alonsoaee79b42015-08-06 15:43:15 -0500150 setbits_le32(phy_ctrl, USBPHY_CTRL_ENUTMILEVEL2 |
151 USBPHY_CTRL_ENUTMILEVEL3);
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000152
Peng Fan220402e2014-11-10 08:50:39 +0800153 return 0;
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000154}
155
Troy Kiskyed72a9e2013-10-10 15:27:59 -0700156/* Base address for this IP block is 0x02184800 */
157struct usbnc_regs {
158 u32 ctrl[4]; /* otg/host1-3 */
159 u32 uh2_hsic_ctrl;
160 u32 uh3_hsic_ctrl;
161 u32 otg_phy_ctrl_0;
162 u32 uh1_phy_ctrl_0;
163};
164
165static void usb_oc_config(int index)
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000166{
Ye.Lif93453a2014-09-15 17:23:14 +0800167 struct usbnc_regs *usbnc = (struct usbnc_regs *)(USB_BASE_ADDR +
Troy Kiskyed72a9e2013-10-10 15:27:59 -0700168 USB_OTHERREGS_OFFSET);
169 void __iomem *ctrl = (void __iomem *)(&usbnc->ctrl[index]);
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000170
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000171#if CONFIG_MACH_TYPE == MACH_TYPE_MX6Q_ARM2
172 /* mx6qarm2 seems to required a different setting*/
Adrian Alonsoaee79b42015-08-06 15:43:15 -0500173 clrbits_le32(ctrl, UCTRL_OVER_CUR_POL);
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000174#else
Adrian Alonsoaee79b42015-08-06 15:43:15 -0500175 setbits_le32(ctrl, UCTRL_OVER_CUR_POL);
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000176#endif
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000177
Adrian Alonsoaee79b42015-08-06 15:43:15 -0500178 setbits_le32(ctrl, UCTRL_OVER_CUR_DIS);
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000179}
180
Peng Fan220402e2014-11-10 08:50:39 +0800181int usb_phy_mode(int port)
182{
183 void __iomem *phy_reg;
184 void __iomem *phy_ctrl;
185 u32 val;
186
187 phy_reg = (void __iomem *)phy_bases[port];
188 phy_ctrl = (void __iomem *)(phy_reg + USBPHY_CTRL);
189
Adrian Alonsoaee79b42015-08-06 15:43:15 -0500190 val = readl(phy_ctrl);
Peng Fan220402e2014-11-10 08:50:39 +0800191
192 if (val & USBPHY_CTRL_OTG_ID)
193 return USB_INIT_DEVICE;
194 else
195 return USB_INIT_HOST;
196}
197
Adrian Alonso14dfbbb2015-08-06 15:43:16 -0500198/**
199 * board_ehci_hcd_init - override usb phy mode
200 * @port: usb host/otg port
201 *
202 * Target board specific, override usb_phy_mode.
203 * When usb-otg is used as usb host port, iomux pad usb_otg_id can be
204 * left disconnected in this case usb_phy_mode will not be able to identify
205 * the phy mode that usb port is used.
206 * Machine file overrides board_usb_phy_mode.
207 *
208 * Return: USB_INIT_DEVICE or USB_INIT_HOST
209 */
Peng Fan220402e2014-11-10 08:50:39 +0800210int __weak board_usb_phy_mode(int port)
211{
212 return usb_phy_mode(port);
213}
214
Adrian Alonso14dfbbb2015-08-06 15:43:16 -0500215/**
216 * board_ehci_hcd_init - set usb vbus voltage
217 * @port: usb otg port
218 *
219 * Target board specific, setup iomux pad to setup supply vbus voltage
220 * for usb otg port. Machine board file overrides board_ehci_hcd_init
221 *
222 * Return: 0 Success
223 */
Benoît Thébaudeau98023c12012-11-13 09:58:35 +0000224int __weak board_ehci_hcd_init(int port)
225{
226 return 0;
227}
228
Adrian Alonso14dfbbb2015-08-06 15:43:16 -0500229/**
230 * board_ehci_power - enables/disables usb vbus voltage
231 * @port: usb otg port
232 * @on: on/off vbus voltage
233 *
234 * Enables/disables supply vbus voltage for usb otg port.
235 * Machine board file overrides board_ehci_power
236 *
237 * Return: 0 Success
238 */
Troy Kiskyed72a9e2013-10-10 15:27:59 -0700239int __weak board_ehci_power(int port, int on)
240{
241 return 0;
242}
243
Troy Kisky7d6bbb92013-10-10 15:27:57 -0700244int ehci_hcd_init(int index, enum usb_init_type init,
245 struct ehci_hccr **hccr, struct ehci_hcor **hcor)
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000246{
Troy Kiskyed72a9e2013-10-10 15:27:59 -0700247 enum usb_init_type type;
Ye.Lif93453a2014-09-15 17:23:14 +0800248 struct usb_ehci *ehci = (struct usb_ehci *)(USB_BASE_ADDR +
Troy Kiskyed72a9e2013-10-10 15:27:59 -0700249 (0x200 * index));
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000250
Troy Kiskyed72a9e2013-10-10 15:27:59 -0700251 if (index > 3)
252 return -EINVAL;
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000253 enable_usboh3_clk(1);
254 mdelay(1);
255
256 /* Do board specific initialization */
Troy Kiskyed72a9e2013-10-10 15:27:59 -0700257 board_ehci_hcd_init(index);
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000258
Troy Kiskyed72a9e2013-10-10 15:27:59 -0700259 usb_power_config(index);
260 usb_oc_config(index);
261 usb_internal_phy_clock_gate(index, 1);
Peng Fan220402e2014-11-10 08:50:39 +0800262 usb_phy_enable(index, ehci);
263 type = board_usb_phy_mode(index);
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000264
Lucas Stach3494a4c2012-09-26 00:14:35 +0200265 *hccr = (struct ehci_hccr *)((uint32_t)&ehci->caplength);
266 *hcor = (struct ehci_hcor *)((uint32_t)*hccr +
267 HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000268
Troy Kiskyed72a9e2013-10-10 15:27:59 -0700269 if ((type == init) || (type == USB_INIT_DEVICE))
270 board_ehci_power(index, (type == USB_INIT_DEVICE) ? 0 : 1);
271 if (type != init)
272 return -ENODEV;
273 if (type == USB_INIT_DEVICE)
274 return 0;
275 setbits_le32(&ehci->usbmode, CM_HOST);
Adrian Alonsoaee79b42015-08-06 15:43:15 -0500276 writel(CONFIG_MXC_USB_PORTSC, &ehci->portsc);
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000277 setbits_le32(&ehci->portsc, USB_EN);
278
279 mdelay(10);
280
281 return 0;
282}
283
Lucas Stach3494a4c2012-09-26 00:14:35 +0200284int ehci_hcd_stop(int index)
Wolfgang Grandegger1859b702012-02-08 22:33:25 +0000285{
286 return 0;
287}