blob: 8352c2bfc5c0bde0e1d4923326f4a44b3a1f1924 [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>
Mateusz Kulikowski8c25c252016-01-23 11:54:32 +010011#include <wait_bit.h>
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000012#include <linux/compiler.h>
Mateusz Kulikowskie162c6b2016-03-31 23:12:23 +020013#include <usb/ehci-ci.h>
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000014#include <asm/io.h>
15#include <asm/arch/imx-regs.h>
16#include <asm/arch/clock.h>
Troy Kiskyaf2a35f2012-07-19 08:18:22 +000017#include <asm/imx-common/iomux-v3.h>
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000018
19#include "ehci.h"
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000020
21#define USB_OTGREGS_OFFSET 0x000
22#define USB_H1REGS_OFFSET 0x200
23#define USB_H2REGS_OFFSET 0x400
24#define USB_H3REGS_OFFSET 0x600
25#define USB_OTHERREGS_OFFSET 0x800
26
27#define USB_H1_CTRL_OFFSET 0x04
28
29#define USBPHY_CTRL 0x00000030
30#define USBPHY_CTRL_SET 0x00000034
31#define USBPHY_CTRL_CLR 0x00000038
32#define USBPHY_CTRL_TOG 0x0000003c
33
34#define USBPHY_PWD 0x00000000
35#define USBPHY_CTRL_SFTRST 0x80000000
36#define USBPHY_CTRL_CLKGATE 0x40000000
37#define USBPHY_CTRL_ENUTMILEVEL3 0x00008000
38#define USBPHY_CTRL_ENUTMILEVEL2 0x00004000
Troy Kiskyd1a52862013-10-10 15:27:59 -070039#define USBPHY_CTRL_OTG_ID 0x08000000
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000040
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000041#define ANADIG_USB2_CHRG_DETECT_EN_B 0x00100000
42#define ANADIG_USB2_CHRG_DETECT_CHK_CHRG_B 0x00080000
43
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000044#define ANADIG_USB2_PLL_480_CTRL_BYPASS 0x00010000
45#define ANADIG_USB2_PLL_480_CTRL_ENABLE 0x00002000
46#define ANADIG_USB2_PLL_480_CTRL_POWER 0x00001000
47#define ANADIG_USB2_PLL_480_CTRL_EN_USB_CLKS 0x00000040
48
Adrian Alonso35554fc2015-08-06 15:43:17 -050049#define USBNC_OFFSET 0x200
50#define USBNC_PHYSTATUS_ID_DIG (1 << 4) /* otg_id status */
51#define USBNC_PHYCFG2_ACAENB (1 << 4) /* otg_id detection enable */
Stefan Agner9a881802016-07-13 00:25:37 -070052#define UCTRL_PWR_POL (1 << 9) /* OTG Polarity of Power Pin */
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000053#define UCTRL_OVER_CUR_POL (1 << 8) /* OTG Polarity of Overcurrent */
54#define UCTRL_OVER_CUR_DIS (1 << 7) /* Disable OTG Overcurrent Detection */
55
56/* USBCMD */
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000057#define UCMD_RUN_STOP (1 << 0) /* controller run/stop */
58#define UCMD_RESET (1 << 1) /* controller reset */
59
Adrian Alonso35554fc2015-08-06 15:43:17 -050060#if defined(CONFIG_MX6)
Troy Kiskyd1a52862013-10-10 15:27:59 -070061static const unsigned phy_bases[] = {
62 USB_PHY0_BASE_ADDR,
63 USB_PHY1_BASE_ADDR,
64};
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000065
Troy Kiskyd1a52862013-10-10 15:27:59 -070066static void usb_internal_phy_clock_gate(int index, int on)
67{
68 void __iomem *phy_reg;
69
70 if (index >= ARRAY_SIZE(phy_bases))
71 return;
72
73 phy_reg = (void __iomem *)phy_bases[index];
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000074 phy_reg += on ? USBPHY_CTRL_CLR : USBPHY_CTRL_SET;
Adrian Alonsoe38ff302015-08-06 15:43:15 -050075 writel(USBPHY_CTRL_CLKGATE, phy_reg);
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000076}
77
Troy Kiskyd1a52862013-10-10 15:27:59 -070078static void usb_power_config(int index)
Wolfgang Grandegger3f467522012-02-08 22:33:25 +000079{
Wolfgang Grandegger3f29d962012-05-02 04:36:39 +000080 struct anatop_regs __iomem *anatop =
81 (struct anatop_regs __iomem *)ANATOP_BASE_ADDR;
Troy Kiskyd1a52862013-10-10 15:27:59 -070082 void __iomem *chrg_detect;
83 void __iomem *pll_480_ctrl_clr;
84 void __iomem *pll_480_ctrl_set;
85
86 switch (index) {
87 case 0:
88 chrg_detect = &anatop->usb1_chrg_detect;
89 pll_480_ctrl_clr = &anatop->usb1_pll_480_ctrl_clr;
90 pll_480_ctrl_set = &anatop->usb1_pll_480_ctrl_set;
91 break;
92 case 1:
93 chrg_detect = &anatop->usb2_chrg_detect;
94 pll_480_ctrl_clr = &anatop->usb2_pll_480_ctrl_clr;
95 pll_480_ctrl_set = &anatop->usb2_pll_480_ctrl_set;
96 break;
97 default:
98 return;
99 }
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000100 /*
Troy Kiskyd1a52862013-10-10 15:27:59 -0700101 * Some phy and power's special controls
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000102 * 1. The external charger detector needs to be disabled
103 * or the signal at DP will be poor
Troy Kiskyd1a52862013-10-10 15:27:59 -0700104 * 2. The PLL's power and output to usb
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000105 * is totally controlled by IC, so the Software only needs
106 * to enable them at initializtion.
107 */
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500108 writel(ANADIG_USB2_CHRG_DETECT_EN_B |
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000109 ANADIG_USB2_CHRG_DETECT_CHK_CHRG_B,
Troy Kiskyd1a52862013-10-10 15:27:59 -0700110 chrg_detect);
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000111
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500112 writel(ANADIG_USB2_PLL_480_CTRL_BYPASS,
Troy Kiskyd1a52862013-10-10 15:27:59 -0700113 pll_480_ctrl_clr);
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000114
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500115 writel(ANADIG_USB2_PLL_480_CTRL_ENABLE |
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000116 ANADIG_USB2_PLL_480_CTRL_POWER |
117 ANADIG_USB2_PLL_480_CTRL_EN_USB_CLKS,
Troy Kiskyd1a52862013-10-10 15:27:59 -0700118 pll_480_ctrl_set);
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000119}
120
Troy Kiskyd1a52862013-10-10 15:27:59 -0700121/* Return 0 : host node, <>0 : device mode */
122static int usb_phy_enable(int index, struct usb_ehci *ehci)
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000123{
Troy Kiskyd1a52862013-10-10 15:27:59 -0700124 void __iomem *phy_reg;
125 void __iomem *phy_ctrl;
126 void __iomem *usb_cmd;
Adrian Alonsof0c89d52015-08-06 15:46:03 -0500127 int ret;
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000128
Troy Kiskyd1a52862013-10-10 15:27:59 -0700129 if (index >= ARRAY_SIZE(phy_bases))
130 return 0;
131
132 phy_reg = (void __iomem *)phy_bases[index];
133 phy_ctrl = (void __iomem *)(phy_reg + USBPHY_CTRL);
134 usb_cmd = (void __iomem *)&ehci->usbcmd;
135
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000136 /* Stop then Reset */
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500137 clrbits_le32(usb_cmd, UCMD_RUN_STOP);
Mateusz Kulikowski8c25c252016-01-23 11:54:32 +0100138 ret = wait_for_bit(__func__, usb_cmd, UCMD_RUN_STOP, false, 10000,
139 false);
Adrian Alonsof0c89d52015-08-06 15:46:03 -0500140 if (ret)
141 return ret;
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000142
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500143 setbits_le32(usb_cmd, UCMD_RESET);
Mateusz Kulikowski8c25c252016-01-23 11:54:32 +0100144 ret = wait_for_bit(__func__, usb_cmd, UCMD_RESET, false, 10000, false);
Adrian Alonsof0c89d52015-08-06 15:46:03 -0500145 if (ret)
146 return ret;
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000147
148 /* Reset USBPHY module */
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500149 setbits_le32(phy_ctrl, USBPHY_CTRL_SFTRST);
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000150 udelay(10);
151
152 /* Remove CLKGATE and SFTRST */
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500153 clrbits_le32(phy_ctrl, USBPHY_CTRL_CLKGATE | USBPHY_CTRL_SFTRST);
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000154 udelay(10);
155
156 /* Power up the PHY */
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500157 writel(0, phy_reg + USBPHY_PWD);
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000158 /* enable FS/LS device */
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500159 setbits_le32(phy_ctrl, USBPHY_CTRL_ENUTMILEVEL2 |
160 USBPHY_CTRL_ENUTMILEVEL3);
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000161
Peng Fan229dbba2014-11-10 08:50:39 +0800162 return 0;
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000163}
164
Peng Fan229dbba2014-11-10 08:50:39 +0800165int usb_phy_mode(int port)
166{
167 void __iomem *phy_reg;
168 void __iomem *phy_ctrl;
169 u32 val;
170
171 phy_reg = (void __iomem *)phy_bases[port];
172 phy_ctrl = (void __iomem *)(phy_reg + USBPHY_CTRL);
173
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500174 val = readl(phy_ctrl);
Peng Fan229dbba2014-11-10 08:50:39 +0800175
176 if (val & USBPHY_CTRL_OTG_ID)
177 return USB_INIT_DEVICE;
178 else
179 return USB_INIT_HOST;
180}
181
Adrian Alonso35554fc2015-08-06 15:43:17 -0500182/* Base address for this IP block is 0x02184800 */
183struct usbnc_regs {
184 u32 ctrl[4]; /* otg/host1-3 */
185 u32 uh2_hsic_ctrl;
186 u32 uh3_hsic_ctrl;
187 u32 otg_phy_ctrl_0;
188 u32 uh1_phy_ctrl_0;
189};
190#elif defined(CONFIG_MX7)
191struct usbnc_regs {
192 u32 ctrl1;
193 u32 ctrl2;
194 u32 reserve1[10];
195 u32 phy_cfg1;
196 u32 phy_cfg2;
Peng Fan429ff442016-06-20 09:43:08 +0800197 u32 reserve2;
Adrian Alonso35554fc2015-08-06 15:43:17 -0500198 u32 phy_status;
Peng Fan429ff442016-06-20 09:43:08 +0800199 u32 reserve3[4];
Adrian Alonso35554fc2015-08-06 15:43:17 -0500200 u32 adp_cfg1;
201 u32 adp_cfg2;
202 u32 adp_status;
203};
204
205static void usb_power_config(int index)
206{
207 struct usbnc_regs *usbnc = (struct usbnc_regs *)(USB_BASE_ADDR +
208 (0x10000 * index) + USBNC_OFFSET);
209 void __iomem *phy_cfg2 = (void __iomem *)(&usbnc->phy_cfg2);
Stefan Agner9a881802016-07-13 00:25:37 -0700210 void __iomem *ctrl = (void __iomem *)(&usbnc->ctrl1);
Adrian Alonso35554fc2015-08-06 15:43:17 -0500211
Peng Fan57de41e2016-06-20 09:43:09 +0800212 /*
213 * Clear the ACAENB to enable usb_otg_id detection,
214 * otherwise it is the ACA detection enabled.
215 */
216 clrbits_le32(phy_cfg2, USBNC_PHYCFG2_ACAENB);
Stefan Agner9a881802016-07-13 00:25:37 -0700217
218 /* Set power polarity to high active */
Stefan Agnerc4483092016-07-13 00:25:38 -0700219#ifdef CONFIG_MXC_USB_OTG_HACTIVE
Stefan Agner9a881802016-07-13 00:25:37 -0700220 setbits_le32(ctrl, UCTRL_PWR_POL);
Stefan Agnerc4483092016-07-13 00:25:38 -0700221#else
222 clrbits_le32(ctrl, UCTRL_PWR_POL);
223#endif
Adrian Alonso35554fc2015-08-06 15:43:17 -0500224}
225
226int usb_phy_mode(int port)
227{
228 struct usbnc_regs *usbnc = (struct usbnc_regs *)(USB_BASE_ADDR +
229 (0x10000 * port) + USBNC_OFFSET);
230 void __iomem *status = (void __iomem *)(&usbnc->phy_status);
231 u32 val;
232
233 val = readl(status);
234
235 if (val & USBNC_PHYSTATUS_ID_DIG)
236 return USB_INIT_DEVICE;
237 else
238 return USB_INIT_HOST;
239}
240#endif
241
242static void usb_oc_config(int index)
243{
244#if defined(CONFIG_MX6)
245 struct usbnc_regs *usbnc = (struct usbnc_regs *)(USB_BASE_ADDR +
246 USB_OTHERREGS_OFFSET);
247 void __iomem *ctrl = (void __iomem *)(&usbnc->ctrl[index]);
248#elif defined(CONFIG_MX7)
249 struct usbnc_regs *usbnc = (struct usbnc_regs *)(USB_BASE_ADDR +
250 (0x10000 * index) + USBNC_OFFSET);
251 void __iomem *ctrl = (void __iomem *)(&usbnc->ctrl1);
252#endif
253
254#if CONFIG_MACH_TYPE == MACH_TYPE_MX6Q_ARM2
255 /* mx6qarm2 seems to required a different setting*/
256 clrbits_le32(ctrl, UCTRL_OVER_CUR_POL);
257#else
258 setbits_le32(ctrl, UCTRL_OVER_CUR_POL);
259#endif
260
Adrian Alonso35554fc2015-08-06 15:43:17 -0500261 setbits_le32(ctrl, UCTRL_OVER_CUR_DIS);
Adrian Alonso35554fc2015-08-06 15:43:17 -0500262}
263
Adrian Alonso74f06102015-08-06 15:43:16 -0500264/**
Stefan Agner79d867c2016-05-05 16:59:12 -0700265 * board_usb_phy_mode - override usb phy mode
Adrian Alonso74f06102015-08-06 15:43:16 -0500266 * @port: usb host/otg port
267 *
268 * Target board specific, override usb_phy_mode.
269 * When usb-otg is used as usb host port, iomux pad usb_otg_id can be
270 * left disconnected in this case usb_phy_mode will not be able to identify
271 * the phy mode that usb port is used.
272 * Machine file overrides board_usb_phy_mode.
273 *
274 * Return: USB_INIT_DEVICE or USB_INIT_HOST
275 */
Peng Fan229dbba2014-11-10 08:50:39 +0800276int __weak board_usb_phy_mode(int port)
277{
278 return usb_phy_mode(port);
279}
280
Adrian Alonso74f06102015-08-06 15:43:16 -0500281/**
282 * board_ehci_hcd_init - set usb vbus voltage
283 * @port: usb otg port
284 *
285 * Target board specific, setup iomux pad to setup supply vbus voltage
286 * for usb otg port. Machine board file overrides board_ehci_hcd_init
287 *
288 * Return: 0 Success
289 */
Benoît Thébaudeauf22e4fa2012-11-13 09:58:35 +0000290int __weak board_ehci_hcd_init(int port)
291{
292 return 0;
293}
294
Adrian Alonso74f06102015-08-06 15:43:16 -0500295/**
296 * board_ehci_power - enables/disables usb vbus voltage
297 * @port: usb otg port
298 * @on: on/off vbus voltage
299 *
300 * Enables/disables supply vbus voltage for usb otg port.
301 * Machine board file overrides board_ehci_power
302 *
303 * Return: 0 Success
304 */
Troy Kiskyd1a52862013-10-10 15:27:59 -0700305int __weak board_ehci_power(int port, int on)
306{
307 return 0;
308}
309
Troy Kisky127efc42013-10-10 15:27:57 -0700310int ehci_hcd_init(int index, enum usb_init_type init,
311 struct ehci_hccr **hccr, struct ehci_hcor **hcor)
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000312{
Troy Kiskyd1a52862013-10-10 15:27:59 -0700313 enum usb_init_type type;
Adrian Alonso35554fc2015-08-06 15:43:17 -0500314#if defined(CONFIG_MX6)
315 u32 controller_spacing = 0x200;
316#elif defined(CONFIG_MX7)
317 u32 controller_spacing = 0x10000;
318#endif
Ye.Li5546ad02014-09-15 17:23:14 +0800319 struct usb_ehci *ehci = (struct usb_ehci *)(USB_BASE_ADDR +
Adrian Alonso35554fc2015-08-06 15:43:17 -0500320 (controller_spacing * index));
Stefan Agner79d867c2016-05-05 16:59:12 -0700321 int ret;
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000322
Troy Kiskyd1a52862013-10-10 15:27:59 -0700323 if (index > 3)
324 return -EINVAL;
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000325 enable_usboh3_clk(1);
326 mdelay(1);
327
328 /* Do board specific initialization */
Stefan Agner79d867c2016-05-05 16:59:12 -0700329 ret = board_ehci_hcd_init(index);
330 if (ret)
331 return ret;
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000332
Troy Kiskyd1a52862013-10-10 15:27:59 -0700333 usb_power_config(index);
334 usb_oc_config(index);
Adrian Alonso35554fc2015-08-06 15:43:17 -0500335
336#if defined(CONFIG_MX6)
Troy Kiskyd1a52862013-10-10 15:27:59 -0700337 usb_internal_phy_clock_gate(index, 1);
Peng Fan229dbba2014-11-10 08:50:39 +0800338 usb_phy_enable(index, ehci);
Adrian Alonso35554fc2015-08-06 15:43:17 -0500339#endif
Peng Fan229dbba2014-11-10 08:50:39 +0800340 type = board_usb_phy_mode(index);
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000341
Lucas Stach676ae062012-09-26 00:14:35 +0200342 *hccr = (struct ehci_hccr *)((uint32_t)&ehci->caplength);
343 *hcor = (struct ehci_hcor *)((uint32_t)*hccr +
344 HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000345
Troy Kiskyd1a52862013-10-10 15:27:59 -0700346 if ((type == init) || (type == USB_INIT_DEVICE))
347 board_ehci_power(index, (type == USB_INIT_DEVICE) ? 0 : 1);
348 if (type != init)
349 return -ENODEV;
350 if (type == USB_INIT_DEVICE)
351 return 0;
Adrian Alonso35554fc2015-08-06 15:43:17 -0500352
Troy Kiskyd1a52862013-10-10 15:27:59 -0700353 setbits_le32(&ehci->usbmode, CM_HOST);
Adrian Alonsoe38ff302015-08-06 15:43:15 -0500354 writel(CONFIG_MXC_USB_PORTSC, &ehci->portsc);
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000355 setbits_le32(&ehci->portsc, USB_EN);
356
357 mdelay(10);
358
359 return 0;
360}
361
Lucas Stach676ae062012-09-26 00:14:35 +0200362int ehci_hcd_stop(int index)
Wolfgang Grandegger3f467522012-02-08 22:33:25 +0000363{
364 return 0;
365}