blob: d81f4a03f1493bfdfde48dd045863200e7cc752d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass87f938c2012-02-27 10:52:49 +00002/*
Lucas Stach7ae18f32013-02-07 07:16:29 +00003 * Copyright (c) 2011 The Chromium OS Authors.
Tom Warren7aaa5a62015-03-04 16:36:00 -07004 * Copyright (c) 2009-2015 NVIDIA Corporation
Lucas Stach7ae18f32013-02-07 07:16:29 +00005 * Copyright (c) 2013 Lucas Stach
Simon Glass87f938c2012-02-27 10:52:49 +00006 */
7
8#include <common.h>
Simon Glassc3980ad2015-03-25 12:22:48 -06009#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060010#include <log.h>
Simon Glassc05ed002020-05-10 11:40:11 -060011#include <linux/delay.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090012#include <linux/errno.h>
Lucas Stach7ae18f32013-02-07 07:16:29 +000013#include <asm/io.h>
14#include <asm-generic/gpio.h>
15#include <asm/arch/clock.h>
16#include <asm/arch-tegra/usb.h>
Jim Lin7e44d932013-06-21 19:05:47 +080017#include <asm/arch-tegra/clk_rst.h>
Simon Glass87f938c2012-02-27 10:52:49 +000018#include <usb.h>
Lucas Stach7ae18f32013-02-07 07:16:29 +000019#include <usb/ulpi.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090020#include <linux/libfdt.h>
Simon Glass87f938c2012-02-27 10:52:49 +000021
22#include "ehci.h"
Simon Glass87f938c2012-02-27 10:52:49 +000023
Jim Lin7e44d932013-06-21 19:05:47 +080024#define USB1_ADDR_MASK 0xFFFF0000
25
26#define HOSTPC1_DEVLC 0x84
27#define HOSTPC1_PSPD(x) (((x) >> 25) & 0x3)
28
Lucas Stach7ae18f32013-02-07 07:16:29 +000029#ifdef CONFIG_USB_ULPI
30 #ifndef CONFIG_USB_ULPI_VIEWPORT
31 #error "To use CONFIG_USB_ULPI on Tegra Boards you have to also \
32 define CONFIG_USB_ULPI_VIEWPORT"
33 #endif
34#endif
35
Lucas Stach7ae18f32013-02-07 07:16:29 +000036/* Parameters we need for USB */
37enum {
38 PARAM_DIVN, /* PLL FEEDBACK DIVIDer */
39 PARAM_DIVM, /* PLL INPUT DIVIDER */
40 PARAM_DIVP, /* POST DIVIDER (2^N) */
41 PARAM_CPCON, /* BASE PLLC CHARGE Pump setup ctrl */
42 PARAM_LFCON, /* BASE PLLC LOOP FILter setup ctrl */
43 PARAM_ENABLE_DELAY_COUNT, /* PLL-U Enable Delay Count */
44 PARAM_STABLE_COUNT, /* PLL-U STABLE count */
45 PARAM_ACTIVE_DELAY_COUNT, /* PLL-U Active delay count */
46 PARAM_XTAL_FREQ_COUNT, /* PLL-U XTAL frequency count */
47 PARAM_DEBOUNCE_A_TIME, /* 10MS DELAY for BIAS_DEBOUNCE_A */
48 PARAM_BIAS_TIME, /* 20US DELAY AFter bias cell op */
49
50 PARAM_COUNT
51};
52
53/* Possible port types (dual role mode) */
54enum dr_mode {
55 DR_MODE_NONE = 0,
56 DR_MODE_HOST, /* supports host operation */
57 DR_MODE_DEVICE, /* supports device operation */
58 DR_MODE_OTG, /* supports both */
59};
60
Simon Glass27f782b2015-03-25 12:22:20 -060061enum usb_ctlr_type {
62 USB_CTLR_T20,
63 USB_CTLR_T30,
64 USB_CTLR_T114,
Tom Warren7aaa5a62015-03-04 16:36:00 -070065 USB_CTLR_T210,
Simon Glass27f782b2015-03-25 12:22:20 -060066
67 USB_CTRL_COUNT,
68};
69
Lucas Stach7ae18f32013-02-07 07:16:29 +000070/* Information about a USB port */
71struct fdt_usb {
Simon Glassc3980ad2015-03-25 12:22:48 -060072 struct ehci_ctrl ehci;
Lucas Stach7ae18f32013-02-07 07:16:29 +000073 struct usb_ctlr *reg; /* address of registers in physical memory */
74 unsigned utmi:1; /* 1 if port has external tranceiver, else 0 */
75 unsigned ulpi:1; /* 1 if port has external ULPI transceiver */
76 unsigned enabled:1; /* 1 to enable, 0 to disable */
77 unsigned has_legacy_mode:1; /* 1 if this port has legacy mode */
Simon Glass27f782b2015-03-25 12:22:20 -060078 enum usb_ctlr_type type;
Stephen Warrena4539a22014-04-30 15:09:57 -060079 enum usb_init_type init_type;
Lucas Stach7ae18f32013-02-07 07:16:29 +000080 enum dr_mode dr_mode; /* dual role mode */
81 enum periph_id periph_id;/* peripheral id */
Simon Glass46927e12015-01-05 20:05:39 -070082 struct gpio_desc vbus_gpio; /* GPIO for vbus enable */
83 struct gpio_desc phy_reset_gpio; /* GPIO to reset ULPI phy */
Lucas Stach7ae18f32013-02-07 07:16:29 +000084};
85
Lucas Stach7ae18f32013-02-07 07:16:29 +000086/*
87 * This table has USB timing parameters for each Oscillator frequency we
88 * support. There are four sets of values:
89 *
90 * 1. PLLU configuration information (reference clock is osc/clk_m and
91 * PLLU-FOs are fixed at 12MHz/60MHz/480MHz).
92 *
93 * Reference frequency 13.0MHz 19.2MHz 12.0MHz 26.0MHz
94 * ----------------------------------------------------------------------
95 * DIVN 960 (0x3c0) 200 (0c8) 960 (3c0h) 960 (3c0)
96 * DIVM 13 (0d) 4 (04) 12 (0c) 26 (1a)
97 * Filter frequency (MHz) 1 4.8 6 2
98 * CPCON 1100b 0011b 1100b 1100b
99 * LFCON0 0 0 0 0
100 *
101 * 2. PLL CONFIGURATION & PARAMETERS for different clock generators:
102 *
103 * Reference frequency 13.0MHz 19.2MHz 12.0MHz 26.0MHz
104 * ---------------------------------------------------------------------------
105 * PLLU_ENABLE_DLY_COUNT 02 (0x02) 03 (03) 02 (02) 04 (04)
106 * PLLU_STABLE_COUNT 51 (33) 75 (4B) 47 (2F) 102 (66)
107 * PLL_ACTIVE_DLY_COUNT 05 (05) 06 (06) 04 (04) 09 (09)
108 * XTAL_FREQ_COUNT 127 (7F) 187 (BB) 118 (76) 254 (FE)
109 *
110 * 3. Debounce values IdDig, Avalid, Bvalid, VbusValid, VbusWakeUp, and
111 * SessEnd. Each of these signals have their own debouncer and for each of
112 * those one out of two debouncing times can be chosen (BIAS_DEBOUNCE_A or
113 * BIAS_DEBOUNCE_B).
114 *
115 * The values of DEBOUNCE_A and DEBOUNCE_B are calculated as follows:
116 * 0xffff -> No debouncing at all
117 * <n> ms = <n> *1000 / (1/19.2MHz) / 4
118 *
119 * So to program a 1 ms debounce for BIAS_DEBOUNCE_A, we have:
120 * BIAS_DEBOUNCE_A[15:0] = 1000 * 19.2 / 4 = 4800 = 0x12c0
121 *
122 * We need to use only DebounceA for BOOTROM. We don't need the DebounceB
123 * values, so we can keep those to default.
124 *
125 * 4. The 20 microsecond delay after bias cell operation.
126 */
Jim Lin7e44d932013-06-21 19:05:47 +0800127static const unsigned T20_usb_pll[CLOCK_OSC_FREQ_COUNT][PARAM_COUNT] = {
Lucas Stach7ae18f32013-02-07 07:16:29 +0000128 /* DivN, DivM, DivP, CPCON, LFCON, Delays Debounce, Bias */
129 { 0x3C0, 0x0D, 0x00, 0xC, 0, 0x02, 0x33, 0x05, 0x7F, 0x7EF4, 5 },
130 { 0x0C8, 0x04, 0x00, 0x3, 0, 0x03, 0x4B, 0x06, 0xBB, 0xBB80, 7 },
131 { 0x3C0, 0x0C, 0x00, 0xC, 0, 0x02, 0x2F, 0x04, 0x76, 0x7530, 5 },
Tom Warren3e8650c2015-06-22 13:03:44 -0700132 { 0x3C0, 0x1A, 0x00, 0xC, 0, 0x04, 0x66, 0x09, 0xFE, 0xFDE8, 9 },
133 { 0x000, 0x00, 0x00, 0x0, 0, 0x00, 0x00, 0x00, 0x00, 0x0000, 0 },
134 { 0x000, 0x00, 0x00, 0x0, 0, 0x00, 0x00, 0x00, 0x00, 0x0000, 0 }
Lucas Stach7ae18f32013-02-07 07:16:29 +0000135};
136
Jim Lin7e44d932013-06-21 19:05:47 +0800137static const unsigned T30_usb_pll[CLOCK_OSC_FREQ_COUNT][PARAM_COUNT] = {
138 /* DivN, DivM, DivP, CPCON, LFCON, Delays Debounce, Bias */
139 { 0x3C0, 0x0D, 0x00, 0xC, 1, 0x02, 0x33, 0x09, 0x7F, 0x7EF4, 5 },
140 { 0x0C8, 0x04, 0x00, 0x3, 0, 0x03, 0x4B, 0x0C, 0xBB, 0xBB80, 7 },
141 { 0x3C0, 0x0C, 0x00, 0xC, 1, 0x02, 0x2F, 0x08, 0x76, 0x7530, 5 },
Tom Warren3e8650c2015-06-22 13:03:44 -0700142 { 0x3C0, 0x1A, 0x00, 0xC, 1, 0x04, 0x66, 0x09, 0xFE, 0xFDE8, 9 },
143 { 0x000, 0x00, 0x00, 0x0, 0, 0x00, 0x00, 0x00, 0x00, 0x0000, 0 },
144 { 0x000, 0x00, 0x00, 0x0, 0, 0x00, 0x00, 0x00, 0x00, 0x0000, 0 }
Jim Lin7e44d932013-06-21 19:05:47 +0800145};
146
147static const unsigned T114_usb_pll[CLOCK_OSC_FREQ_COUNT][PARAM_COUNT] = {
148 /* DivN, DivM, DivP, CPCON, LFCON, Delays Debounce, Bias */
149 { 0x3C0, 0x0D, 0x00, 0xC, 2, 0x02, 0x33, 0x09, 0x7F, 0x7EF4, 6 },
150 { 0x0C8, 0x04, 0x00, 0x3, 2, 0x03, 0x4B, 0x0C, 0xBB, 0xBB80, 8 },
151 { 0x3C0, 0x0C, 0x00, 0xC, 2, 0x02, 0x2F, 0x08, 0x76, 0x7530, 5 },
Tom Warren3e8650c2015-06-22 13:03:44 -0700152 { 0x3C0, 0x1A, 0x00, 0xC, 2, 0x04, 0x66, 0x09, 0xFE, 0xFDE8, 11 },
153 { 0x000, 0x00, 0x00, 0x0, 0, 0x00, 0x00, 0x00, 0x00, 0x0000, 0 },
154 { 0x000, 0x00, 0x00, 0x0, 0, 0x00, 0x00, 0x00, 0x00, 0x0000, 0 }
Jim Lin7e44d932013-06-21 19:05:47 +0800155};
156
Tom Warren7aaa5a62015-03-04 16:36:00 -0700157/* NOTE: 13/26MHz settings are N/A for T210, so dupe 12MHz settings for now */
158static const unsigned T210_usb_pll[CLOCK_OSC_FREQ_COUNT][PARAM_COUNT] = {
159 /* DivN, DivM, DivP, KCP, KVCO, Delays Debounce, Bias */
Tom Warren3e8650c2015-06-22 13:03:44 -0700160 { 0x028, 0x01, 0x01, 0x0, 0, 0x02, 0x2F, 0x08, 0x76, 32500, 5 },
Tom Warren7aaa5a62015-03-04 16:36:00 -0700161 { 0x019, 0x01, 0x01, 0x0, 0, 0x03, 0x4B, 0x0C, 0xBB, 48000, 8 },
162 { 0x028, 0x01, 0x01, 0x0, 0, 0x02, 0x2F, 0x08, 0x76, 30000, 5 },
Tom Warren3e8650c2015-06-22 13:03:44 -0700163 { 0x028, 0x01, 0x01, 0x0, 0, 0x02, 0x2F, 0x08, 0x76, 65000, 5 },
164 { 0x019, 0x02, 0x01, 0x0, 0, 0x05, 0x96, 0x18, 0x177, 96000, 15 },
165 { 0x028, 0x04, 0x01, 0x0, 0, 0x04, 0x66, 0x09, 0xFE, 120000, 20 }
Tom Warren7aaa5a62015-03-04 16:36:00 -0700166};
167
Lucas Stach7ae18f32013-02-07 07:16:29 +0000168/* UTMIP Idle Wait Delay */
169static const u8 utmip_idle_wait_delay = 17;
170
171/* UTMIP Elastic limit */
172static const u8 utmip_elastic_limit = 16;
173
174/* UTMIP High Speed Sync Start Delay */
175static const u8 utmip_hs_sync_start_delay = 9;
Simon Glass87f938c2012-02-27 10:52:49 +0000176
Jim Lin7e44d932013-06-21 19:05:47 +0800177struct fdt_usb_controller {
Jim Lin7e44d932013-06-21 19:05:47 +0800178 /* flag to determine whether controller supports hostpc register */
179 u32 has_hostpc:1;
180 const unsigned *pll_parameter;
181};
182
Simon Glass27f782b2015-03-25 12:22:20 -0600183static struct fdt_usb_controller fdt_usb_controllers[USB_CTRL_COUNT] = {
Jim Lin7e44d932013-06-21 19:05:47 +0800184 {
Jim Lin7e44d932013-06-21 19:05:47 +0800185 .has_hostpc = 0,
186 .pll_parameter = (const unsigned *)T20_usb_pll,
187 },
188 {
Jim Lin7e44d932013-06-21 19:05:47 +0800189 .has_hostpc = 1,
190 .pll_parameter = (const unsigned *)T30_usb_pll,
191 },
192 {
Jim Lin7e44d932013-06-21 19:05:47 +0800193 .has_hostpc = 1,
194 .pll_parameter = (const unsigned *)T114_usb_pll,
195 },
Tom Warren7aaa5a62015-03-04 16:36:00 -0700196 {
197 .has_hostpc = 1,
198 .pll_parameter = (const unsigned *)T210_usb_pll,
199 },
Jim Lin7e44d932013-06-21 19:05:47 +0800200};
201
Jim Lin8b3f7bf2012-06-24 20:40:57 +0000202/*
203 * A known hardware issue where Connect Status Change bit of PORTSC register
204 * of USB1 controller will be set after Port Reset.
205 * We have to clear it in order for later device enumeration to proceed.
Jim Lin8b3f7bf2012-06-24 20:40:57 +0000206 */
Simon Glassdeb85082015-03-25 12:22:27 -0600207static void tegra_ehci_powerup_fixup(struct ehci_ctrl *ctrl,
208 uint32_t *status_reg, uint32_t *reg)
Jim Lin8b3f7bf2012-06-24 20:40:57 +0000209{
Simon Glass56d42732015-03-25 12:22:22 -0600210 struct fdt_usb *config = ctrl->priv;
211 struct fdt_usb_controller *controller;
212
213 controller = &fdt_usb_controllers[config->type];
Jim Lin8b3f7bf2012-06-24 20:40:57 +0000214 mdelay(50);
Jim Lin7e44d932013-06-21 19:05:47 +0800215 /* This is to avoid PORT_ENABLE bit to be cleared in "ehci-hcd.c". */
216 if (controller->has_hostpc)
217 *reg |= EHCI_PS_PE;
218
Simon Glass943104f2015-03-25 12:22:45 -0600219 if (!config->has_legacy_mode)
Jim Lin8b3f7bf2012-06-24 20:40:57 +0000220 return;
221 /* For EHCI_PS_CSC to be cleared in ehci_hcd.c */
222 if (ehci_readl(status_reg) & EHCI_PS_CSC)
223 *reg |= EHCI_PS_CSC;
224}
Simon Glass87f938c2012-02-27 10:52:49 +0000225
Simon Glassdeb85082015-03-25 12:22:27 -0600226static void tegra_ehci_set_usbmode(struct ehci_ctrl *ctrl)
Jim Lin7e44d932013-06-21 19:05:47 +0800227{
Simon Glass11d18a12015-03-25 12:22:23 -0600228 struct fdt_usb *config = ctrl->priv;
Jim Lin7e44d932013-06-21 19:05:47 +0800229 struct usb_ctlr *usbctlr;
230 uint32_t tmp;
231
Jim Lin7e44d932013-06-21 19:05:47 +0800232 usbctlr = config->reg;
233
234 tmp = ehci_readl(&usbctlr->usb_mode);
235 tmp |= USBMODE_CM_HC;
236 ehci_writel(&usbctlr->usb_mode, tmp);
237}
238
Simon Glassdeb85082015-03-25 12:22:27 -0600239static int tegra_ehci_get_port_speed(struct ehci_ctrl *ctrl, uint32_t reg)
Jim Lin7e44d932013-06-21 19:05:47 +0800240{
Simon Glass56d42732015-03-25 12:22:22 -0600241 struct fdt_usb *config = ctrl->priv;
242 struct fdt_usb_controller *controller;
Jim Lin7e44d932013-06-21 19:05:47 +0800243 uint32_t tmp;
244 uint32_t *reg_ptr;
245
Simon Glass56d42732015-03-25 12:22:22 -0600246 controller = &fdt_usb_controllers[config->type];
Jim Lin7e44d932013-06-21 19:05:47 +0800247 if (controller->has_hostpc) {
Simon Glass73382872015-03-25 12:22:18 -0600248 reg_ptr = (uint32_t *)((u8 *)&ctrl->hcor->or_usbcmd +
249 HOSTPC1_DEVLC);
Jim Lin7e44d932013-06-21 19:05:47 +0800250 tmp = ehci_readl(reg_ptr);
251 return HOSTPC1_PSPD(tmp);
252 } else
253 return PORTSC_PSPD(reg);
254}
255
Stephen Warrena4539a22014-04-30 15:09:57 -0600256/* Set up VBUS for host/device mode */
257static void set_up_vbus(struct fdt_usb *config, enum usb_init_type init)
Lucas Stach7ae18f32013-02-07 07:16:29 +0000258{
259 /*
Stephen Warrena4539a22014-04-30 15:09:57 -0600260 * If we are an OTG port initializing in host mode,
261 * check if remote host is driving VBus and bail out in this case.
Lucas Stach7ae18f32013-02-07 07:16:29 +0000262 */
Stephen Warrena4539a22014-04-30 15:09:57 -0600263 if (init == USB_INIT_HOST &&
264 config->dr_mode == DR_MODE_OTG &&
265 (readl(&config->reg->phy_vbus_sensors) & VBUS_VLD_STS)) {
266 printf("tegrausb: VBUS input active; not enabling as host\n");
Lucas Stach7ae18f32013-02-07 07:16:29 +0000267 return;
Stephen Warrena4539a22014-04-30 15:09:57 -0600268 }
Lucas Stach7ae18f32013-02-07 07:16:29 +0000269
Simon Glass46927e12015-01-05 20:05:39 -0700270 if (dm_gpio_is_valid(&config->vbus_gpio)) {
Stephen Warrena4539a22014-04-30 15:09:57 -0600271 int vbus_value;
272
Simon Glass46927e12015-01-05 20:05:39 -0700273 vbus_value = (init == USB_INIT_HOST);
274 dm_gpio_set_value(&config->vbus_gpio, vbus_value);
Stephen Warrena4539a22014-04-30 15:09:57 -0600275
Simon Glass46927e12015-01-05 20:05:39 -0700276 debug("set_up_vbus: GPIO %d %d\n",
277 gpio_get_number(&config->vbus_gpio), vbus_value);
Lucas Stach7ae18f32013-02-07 07:16:29 +0000278 }
279}
280
Simon Glass7e27bdd2015-03-25 12:22:46 -0600281static void usbf_reset_controller(struct fdt_usb *config,
282 struct usb_ctlr *usbctlr)
Lucas Stach7ae18f32013-02-07 07:16:29 +0000283{
284 /* Reset the USB controller with 2us delay */
285 reset_periph(config->periph_id, 2);
286
287 /*
288 * Set USB1_NO_LEGACY_MODE to 1, Registers are accessible under
289 * base address
290 */
291 if (config->has_legacy_mode)
292 setbits_le32(&usbctlr->usb1_legacy_ctrl, USB1_NO_LEGACY_MODE);
293
294 /* Put UTMIP1/3 in reset */
295 setbits_le32(&usbctlr->susp_ctrl, UTMIP_RESET);
296
297 /* Enable the UTMIP PHY */
298 if (config->utmi)
299 setbits_le32(&usbctlr->susp_ctrl, UTMIP_PHY_ENB);
300}
301
Simon Glass27f782b2015-03-25 12:22:20 -0600302static const unsigned *get_pll_timing(struct fdt_usb_controller *controller)
Jim Lin7e44d932013-06-21 19:05:47 +0800303{
304 const unsigned *timing;
305
306 timing = controller->pll_parameter +
307 clock_get_osc_freq() * PARAM_COUNT;
308
309 return timing;
310}
311
Stephen Warren2d341512014-04-30 15:09:56 -0600312/* select the PHY to use with a USB controller */
Stephen Warrena4539a22014-04-30 15:09:57 -0600313static void init_phy_mux(struct fdt_usb *config, uint pts,
314 enum usb_init_type init)
Stephen Warren2d341512014-04-30 15:09:56 -0600315{
316 struct usb_ctlr *usbctlr = config->reg;
317
318#if defined(CONFIG_TEGRA20)
319 if (config->periph_id == PERIPH_ID_USBD) {
320 clrsetbits_le32(&usbctlr->port_sc1, PTS1_MASK,
Marcel Ziswilerd1fcbae2014-10-04 01:46:10 +0200321 pts << PTS1_SHIFT);
Stephen Warren2d341512014-04-30 15:09:56 -0600322 clrbits_le32(&usbctlr->port_sc1, STS1);
323 } else {
324 clrsetbits_le32(&usbctlr->port_sc1, PTS_MASK,
Marcel Ziswilerd1fcbae2014-10-04 01:46:10 +0200325 pts << PTS_SHIFT);
Stephen Warren2d341512014-04-30 15:09:56 -0600326 clrbits_le32(&usbctlr->port_sc1, STS);
327 }
328#else
Stephen Warrena4539a22014-04-30 15:09:57 -0600329 /* Set to Host mode (if applicable) after Controller Reset was done */
Stephen Warren2d341512014-04-30 15:09:56 -0600330 clrsetbits_le32(&usbctlr->usb_mode, USBMODE_CM_HC,
Stephen Warrena4539a22014-04-30 15:09:57 -0600331 (init == USB_INIT_HOST) ? USBMODE_CM_HC : 0);
332 /*
333 * Select PHY interface after setting host mode.
334 * For device mode, the ordering requirement is not an issue, since
335 * only the first USB controller supports device mode, and that USB
336 * controller can only talk to a UTMI PHY, so the PHY selection is
337 * already made at reset time, so this write is a no-op.
338 */
Stephen Warren2d341512014-04-30 15:09:56 -0600339 clrsetbits_le32(&usbctlr->hostpc1_devlc, PTS_MASK,
340 pts << PTS_SHIFT);
341 clrbits_le32(&usbctlr->hostpc1_devlc, STS);
342#endif
343}
344
Lucas Stach7ae18f32013-02-07 07:16:29 +0000345/* set up the UTMI USB controller with the parameters provided */
Stephen Warrena4539a22014-04-30 15:09:57 -0600346static int init_utmi_usb_controller(struct fdt_usb *config,
347 enum usb_init_type init)
Lucas Stach7ae18f32013-02-07 07:16:29 +0000348{
Simon Glass27f782b2015-03-25 12:22:20 -0600349 struct fdt_usb_controller *controller;
Stephen Warrena4539a22014-04-30 15:09:57 -0600350 u32 b_sess_valid_mask, val;
Lucas Stach7ae18f32013-02-07 07:16:29 +0000351 int loop_count;
352 const unsigned *timing;
353 struct usb_ctlr *usbctlr = config->reg;
Jim Lin7e44d932013-06-21 19:05:47 +0800354 struct clk_rst_ctlr *clkrst;
355 struct usb_ctlr *usb1ctlr;
Lucas Stach7ae18f32013-02-07 07:16:29 +0000356
357 clock_enable(config->periph_id);
358
359 /* Reset the usb controller */
360 usbf_reset_controller(config, usbctlr);
361
362 /* Stop crystal clock by setting UTMIP_PHY_XTAL_CLOCKEN low */
363 clrbits_le32(&usbctlr->utmip_misc_cfg1, UTMIP_PHY_XTAL_CLOCKEN);
364
365 /* Follow the crystal clock disable by >100ns delay */
366 udelay(1);
367
Stephen Warrena4539a22014-04-30 15:09:57 -0600368 b_sess_valid_mask = (VBUS_B_SESS_VLD_SW_VALUE | VBUS_B_SESS_VLD_SW_EN);
369 clrsetbits_le32(&usbctlr->phy_vbus_sensors, b_sess_valid_mask,
370 (init == USB_INIT_DEVICE) ? b_sess_valid_mask : 0);
371
Lucas Stach7ae18f32013-02-07 07:16:29 +0000372 /*
373 * To Use the A Session Valid for cable detection logic, VBUS_WAKEUP
374 * mux must be switched to actually use a_sess_vld threshold.
375 */
Jim Lin7e44d932013-06-21 19:05:47 +0800376 if (config->dr_mode == DR_MODE_OTG &&
Simon Glass46927e12015-01-05 20:05:39 -0700377 dm_gpio_is_valid(&config->vbus_gpio))
Lucas Stach7ae18f32013-02-07 07:16:29 +0000378 clrsetbits_le32(&usbctlr->usb1_legacy_ctrl,
379 VBUS_SENSE_CTL_MASK,
380 VBUS_SENSE_CTL_A_SESS_VLD << VBUS_SENSE_CTL_SHIFT);
Lucas Stach7ae18f32013-02-07 07:16:29 +0000381
Simon Glass27f782b2015-03-25 12:22:20 -0600382 controller = &fdt_usb_controllers[config->type];
383 debug("controller=%p, type=%d\n", controller, config->type);
384
Lucas Stach7ae18f32013-02-07 07:16:29 +0000385 /*
386 * PLL Delay CONFIGURATION settings. The following parameters control
387 * the bring up of the plls.
388 */
Simon Glass27f782b2015-03-25 12:22:20 -0600389 timing = get_pll_timing(controller);
Lucas Stach7ae18f32013-02-07 07:16:29 +0000390
Jim Lin7e44d932013-06-21 19:05:47 +0800391 if (!controller->has_hostpc) {
392 val = readl(&usbctlr->utmip_misc_cfg1);
393 clrsetbits_le32(&val, UTMIP_PLLU_STABLE_COUNT_MASK,
394 timing[PARAM_STABLE_COUNT] <<
395 UTMIP_PLLU_STABLE_COUNT_SHIFT);
396 clrsetbits_le32(&val, UTMIP_PLL_ACTIVE_DLY_COUNT_MASK,
397 timing[PARAM_ACTIVE_DELAY_COUNT] <<
398 UTMIP_PLL_ACTIVE_DLY_COUNT_SHIFT);
399 writel(val, &usbctlr->utmip_misc_cfg1);
Lucas Stach7ae18f32013-02-07 07:16:29 +0000400
Jim Lin7e44d932013-06-21 19:05:47 +0800401 /* Set PLL enable delay count and crystal frequency count */
402 val = readl(&usbctlr->utmip_pll_cfg1);
403 clrsetbits_le32(&val, UTMIP_PLLU_ENABLE_DLY_COUNT_MASK,
404 timing[PARAM_ENABLE_DELAY_COUNT] <<
405 UTMIP_PLLU_ENABLE_DLY_COUNT_SHIFT);
406 clrsetbits_le32(&val, UTMIP_XTAL_FREQ_COUNT_MASK,
407 timing[PARAM_XTAL_FREQ_COUNT] <<
408 UTMIP_XTAL_FREQ_COUNT_SHIFT);
409 writel(val, &usbctlr->utmip_pll_cfg1);
410 } else {
411 clkrst = (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
412
413 val = readl(&clkrst->crc_utmip_pll_cfg2);
414 clrsetbits_le32(&val, UTMIP_PLLU_STABLE_COUNT_MASK,
415 timing[PARAM_STABLE_COUNT] <<
416 UTMIP_PLLU_STABLE_COUNT_SHIFT);
417 clrsetbits_le32(&val, UTMIP_PLL_ACTIVE_DLY_COUNT_MASK,
418 timing[PARAM_ACTIVE_DELAY_COUNT] <<
419 UTMIP_PLL_ACTIVE_DLY_COUNT_SHIFT);
420 writel(val, &clkrst->crc_utmip_pll_cfg2);
421
422 /* Set PLL enable delay count and crystal frequency count */
423 val = readl(&clkrst->crc_utmip_pll_cfg1);
424 clrsetbits_le32(&val, UTMIP_PLLU_ENABLE_DLY_COUNT_MASK,
425 timing[PARAM_ENABLE_DELAY_COUNT] <<
426 UTMIP_PLLU_ENABLE_DLY_COUNT_SHIFT);
427 clrsetbits_le32(&val, UTMIP_XTAL_FREQ_COUNT_MASK,
428 timing[PARAM_XTAL_FREQ_COUNT] <<
429 UTMIP_XTAL_FREQ_COUNT_SHIFT);
430 writel(val, &clkrst->crc_utmip_pll_cfg1);
431
432 /* Disable Power Down state for PLL */
433 clrbits_le32(&clkrst->crc_utmip_pll_cfg1,
434 PLLU_POWERDOWN | PLL_ENABLE_POWERDOWN |
435 PLL_ACTIVE_POWERDOWN);
436
437 /* Recommended PHY settings for EYE diagram */
438 val = readl(&usbctlr->utmip_xcvr_cfg0);
439 clrsetbits_le32(&val, UTMIP_XCVR_SETUP_MASK,
440 0x4 << UTMIP_XCVR_SETUP_SHIFT);
441 clrsetbits_le32(&val, UTMIP_XCVR_SETUP_MSB_MASK,
442 0x3 << UTMIP_XCVR_SETUP_MSB_SHIFT);
443 clrsetbits_le32(&val, UTMIP_XCVR_HSSLEW_MSB_MASK,
444 0x8 << UTMIP_XCVR_HSSLEW_MSB_SHIFT);
445 writel(val, &usbctlr->utmip_xcvr_cfg0);
446 clrsetbits_le32(&usbctlr->utmip_xcvr_cfg1,
447 UTMIP_XCVR_TERM_RANGE_ADJ_MASK,
448 0x7 << UTMIP_XCVR_TERM_RANGE_ADJ_SHIFT);
449
450 /* Some registers can be controlled from USB1 only. */
451 if (config->periph_id != PERIPH_ID_USBD) {
452 clock_enable(PERIPH_ID_USBD);
453 /* Disable Reset if in Reset state */
454 reset_set_enable(PERIPH_ID_USBD, 0);
455 }
456 usb1ctlr = (struct usb_ctlr *)
Thierry Reding96df9c72015-03-20 12:41:27 +0100457 ((unsigned long)config->reg & USB1_ADDR_MASK);
Jim Lin7e44d932013-06-21 19:05:47 +0800458 val = readl(&usb1ctlr->utmip_bias_cfg0);
459 setbits_le32(&val, UTMIP_HSDISCON_LEVEL_MSB);
460 clrsetbits_le32(&val, UTMIP_HSDISCON_LEVEL_MASK,
461 0x1 << UTMIP_HSDISCON_LEVEL_SHIFT);
462 clrsetbits_le32(&val, UTMIP_HSSQUELCH_LEVEL_MASK,
463 0x2 << UTMIP_HSSQUELCH_LEVEL_SHIFT);
464 writel(val, &usb1ctlr->utmip_bias_cfg0);
465
466 /* Miscellaneous setting mentioned in Programming Guide */
467 clrbits_le32(&usbctlr->utmip_misc_cfg0,
468 UTMIP_SUSPEND_EXIT_ON_EDGE);
469 }
Lucas Stach7ae18f32013-02-07 07:16:29 +0000470
471 /* Setting the tracking length time */
472 clrsetbits_le32(&usbctlr->utmip_bias_cfg1,
473 UTMIP_BIAS_PDTRK_COUNT_MASK,
474 timing[PARAM_BIAS_TIME] << UTMIP_BIAS_PDTRK_COUNT_SHIFT);
475
476 /* Program debounce time for VBUS to become valid */
477 clrsetbits_le32(&usbctlr->utmip_debounce_cfg0,
478 UTMIP_DEBOUNCE_CFG0_MASK,
479 timing[PARAM_DEBOUNCE_A_TIME] << UTMIP_DEBOUNCE_CFG0_SHIFT);
480
Tom Warren7aaa5a62015-03-04 16:36:00 -0700481 if (timing[PARAM_DEBOUNCE_A_TIME] > 0xFFFF) {
482 clrsetbits_le32(&usbctlr->utmip_debounce_cfg0,
483 UTMIP_DEBOUNCE_CFG0_MASK,
484 (timing[PARAM_DEBOUNCE_A_TIME] >> 1)
485 << UTMIP_DEBOUNCE_CFG0_SHIFT);
486 clrsetbits_le32(&usbctlr->utmip_bias_cfg1,
487 UTMIP_BIAS_DEBOUNCE_TIMESCALE_MASK,
488 1 << UTMIP_BIAS_DEBOUNCE_TIMESCALE_SHIFT);
489 }
490
Lucas Stach7ae18f32013-02-07 07:16:29 +0000491 setbits_le32(&usbctlr->utmip_tx_cfg0, UTMIP_FS_PREAMBLE_J);
492
493 /* Disable battery charge enabling bit */
494 setbits_le32(&usbctlr->utmip_bat_chrg_cfg0, UTMIP_PD_CHRG);
495
496 clrbits_le32(&usbctlr->utmip_xcvr_cfg0, UTMIP_XCVR_LSBIAS_SE);
497 setbits_le32(&usbctlr->utmip_spare_cfg0, FUSE_SETUP_SEL);
498
499 /*
500 * Configure the UTMIP_IDLE_WAIT and UTMIP_ELASTIC_LIMIT
501 * Setting these fields, together with default values of the
502 * other fields, results in programming the registers below as
503 * follows:
504 * UTMIP_HSRX_CFG0 = 0x9168c000
505 * UTMIP_HSRX_CFG1 = 0x13
506 */
507
508 /* Set PLL enable delay count and Crystal frequency count */
509 val = readl(&usbctlr->utmip_hsrx_cfg0);
510 clrsetbits_le32(&val, UTMIP_IDLE_WAIT_MASK,
511 utmip_idle_wait_delay << UTMIP_IDLE_WAIT_SHIFT);
512 clrsetbits_le32(&val, UTMIP_ELASTIC_LIMIT_MASK,
513 utmip_elastic_limit << UTMIP_ELASTIC_LIMIT_SHIFT);
514 writel(val, &usbctlr->utmip_hsrx_cfg0);
515
516 /* Configure the UTMIP_HS_SYNC_START_DLY */
517 clrsetbits_le32(&usbctlr->utmip_hsrx_cfg1,
518 UTMIP_HS_SYNC_START_DLY_MASK,
519 utmip_hs_sync_start_delay << UTMIP_HS_SYNC_START_DLY_SHIFT);
520
521 /* Preceed the crystal clock disable by >100ns delay. */
522 udelay(1);
523
524 /* Resuscitate crystal clock by setting UTMIP_PHY_XTAL_CLOCKEN */
525 setbits_le32(&usbctlr->utmip_misc_cfg1, UTMIP_PHY_XTAL_CLOCKEN);
526
Jim Lin7e44d932013-06-21 19:05:47 +0800527 if (controller->has_hostpc) {
528 if (config->periph_id == PERIPH_ID_USBD)
529 clrbits_le32(&clkrst->crc_utmip_pll_cfg2,
530 UTMIP_FORCE_PD_SAMP_A_POWERDOWN);
Stefan Agnerb03f4b32014-03-02 19:46:48 +0100531 if (config->periph_id == PERIPH_ID_USB2)
532 clrbits_le32(&clkrst->crc_utmip_pll_cfg2,
533 UTMIP_FORCE_PD_SAMP_B_POWERDOWN);
Jim Lin7e44d932013-06-21 19:05:47 +0800534 if (config->periph_id == PERIPH_ID_USB3)
535 clrbits_le32(&clkrst->crc_utmip_pll_cfg2,
536 UTMIP_FORCE_PD_SAMP_C_POWERDOWN);
537 }
Lucas Stach7ae18f32013-02-07 07:16:29 +0000538 /* Finished the per-controller init. */
539
540 /* De-assert UTMIP_RESET to bring out of reset. */
541 clrbits_le32(&usbctlr->susp_ctrl, UTMIP_RESET);
542
543 /* Wait for the phy clock to become valid in 100 ms */
544 for (loop_count = 100000; loop_count != 0; loop_count--) {
545 if (readl(&usbctlr->susp_ctrl) & USB_PHY_CLK_VALID)
546 break;
547 udelay(1);
548 }
549 if (!loop_count)
Simon Glass7e27bdd2015-03-25 12:22:46 -0600550 return -ETIMEDOUT;
Lucas Stach7ae18f32013-02-07 07:16:29 +0000551
552 /* Disable ICUSB FS/LS transceiver */
553 clrbits_le32(&usbctlr->icusb_ctrl, IC_ENB1);
554
555 /* Select UTMI parallel interface */
Stephen Warrena4539a22014-04-30 15:09:57 -0600556 init_phy_mux(config, PTS_UTMI, init);
Lucas Stach7ae18f32013-02-07 07:16:29 +0000557
558 /* Deassert power down state */
559 clrbits_le32(&usbctlr->utmip_xcvr_cfg0, UTMIP_FORCE_PD_POWERDOWN |
560 UTMIP_FORCE_PD2_POWERDOWN | UTMIP_FORCE_PDZI_POWERDOWN);
561 clrbits_le32(&usbctlr->utmip_xcvr_cfg1, UTMIP_FORCE_PDDISC_POWERDOWN |
562 UTMIP_FORCE_PDCHRP_POWERDOWN | UTMIP_FORCE_PDDR_POWERDOWN);
563
Jim Lin7e44d932013-06-21 19:05:47 +0800564 if (controller->has_hostpc) {
565 /*
566 * BIAS Pad Power Down is common among all 3 USB
567 * controllers and can be controlled from USB1 only.
568 */
569 usb1ctlr = (struct usb_ctlr *)
Thierry Reding96df9c72015-03-20 12:41:27 +0100570 ((unsigned long)config->reg & USB1_ADDR_MASK);
Jim Lin7e44d932013-06-21 19:05:47 +0800571 clrbits_le32(&usb1ctlr->utmip_bias_cfg0, UTMIP_BIASPD);
572 udelay(25);
573 clrbits_le32(&usb1ctlr->utmip_bias_cfg1,
574 UTMIP_FORCE_PDTRK_POWERDOWN);
575 }
Lucas Stach7ae18f32013-02-07 07:16:29 +0000576 return 0;
577}
578
579#ifdef CONFIG_USB_ULPI
580/* if board file does not set a ULPI reference frequency we default to 24MHz */
581#ifndef CONFIG_ULPI_REF_CLK
582#define CONFIG_ULPI_REF_CLK 24000000
583#endif
584
585/* set up the ULPI USB controller with the parameters provided */
Stephen Warrena4539a22014-04-30 15:09:57 -0600586static int init_ulpi_usb_controller(struct fdt_usb *config,
587 enum usb_init_type init)
Lucas Stach7ae18f32013-02-07 07:16:29 +0000588{
589 u32 val;
590 int loop_count;
591 struct ulpi_viewport ulpi_vp;
592 struct usb_ctlr *usbctlr = config->reg;
Simon Glass7e27bdd2015-03-25 12:22:46 -0600593 int ret;
Lucas Stach7ae18f32013-02-07 07:16:29 +0000594
595 /* set up ULPI reference clock on pllp_out4 */
596 clock_enable(PERIPH_ID_DEV2_OUT);
597 clock_set_pllout(CLOCK_ID_PERIPH, PLL_OUT4, CONFIG_ULPI_REF_CLK);
598
599 /* reset ULPI phy */
Simon Glass46927e12015-01-05 20:05:39 -0700600 if (dm_gpio_is_valid(&config->phy_reset_gpio)) {
Stephen Warren2f6a7e82016-09-15 12:19:37 -0600601 /*
602 * This GPIO is typically active-low, and marked as such in
603 * device tree. dm_gpio_set_value() takes this into account
604 * and inverts the value we pass here if required. In other
605 * words, this first call logically asserts the reset signal,
606 * which typically results in driving the physical GPIO low,
607 * and the second call logically de-asserts the reset signal,
608 * which typically results in driver the GPIO high.
609 */
Simon Glass46927e12015-01-05 20:05:39 -0700610 dm_gpio_set_value(&config->phy_reset_gpio, 1);
Stephen Warren2f6a7e82016-09-15 12:19:37 -0600611 mdelay(5);
612 dm_gpio_set_value(&config->phy_reset_gpio, 0);
Lucas Stach7ae18f32013-02-07 07:16:29 +0000613 }
614
615 /* Reset the usb controller */
616 clock_enable(config->periph_id);
617 usbf_reset_controller(config, usbctlr);
618
619 /* enable pinmux bypass */
620 setbits_le32(&usbctlr->ulpi_timing_ctrl_0,
621 ULPI_CLKOUT_PINMUX_BYP | ULPI_OUTPUT_PINMUX_BYP);
622
623 /* Select ULPI parallel interface */
Stephen Warrena4539a22014-04-30 15:09:57 -0600624 init_phy_mux(config, PTS_ULPI, init);
Lucas Stach7ae18f32013-02-07 07:16:29 +0000625
626 /* enable ULPI transceiver */
627 setbits_le32(&usbctlr->susp_ctrl, ULPI_PHY_ENB);
628
629 /* configure ULPI transceiver timings */
630 val = 0;
631 writel(val, &usbctlr->ulpi_timing_ctrl_1);
632
633 val |= ULPI_DATA_TRIMMER_SEL(4);
634 val |= ULPI_STPDIRNXT_TRIMMER_SEL(4);
635 val |= ULPI_DIR_TRIMMER_SEL(4);
636 writel(val, &usbctlr->ulpi_timing_ctrl_1);
637 udelay(10);
638
639 val |= ULPI_DATA_TRIMMER_LOAD;
640 val |= ULPI_STPDIRNXT_TRIMMER_LOAD;
641 val |= ULPI_DIR_TRIMMER_LOAD;
642 writel(val, &usbctlr->ulpi_timing_ctrl_1);
643
644 /* set up phy for host operation with external vbus supply */
645 ulpi_vp.port_num = 0;
646 ulpi_vp.viewport_addr = (u32)&usbctlr->ulpi_viewport;
647
Simon Glass7e27bdd2015-03-25 12:22:46 -0600648 ret = ulpi_init(&ulpi_vp);
649 if (ret) {
Lucas Stach7ae18f32013-02-07 07:16:29 +0000650 printf("Tegra ULPI viewport init failed\n");
Simon Glass7e27bdd2015-03-25 12:22:46 -0600651 return ret;
Lucas Stach7ae18f32013-02-07 07:16:29 +0000652 }
653
654 ulpi_set_vbus(&ulpi_vp, 1, 1);
655 ulpi_set_vbus_indicator(&ulpi_vp, 1, 1, 0);
656
657 /* enable wakeup events */
658 setbits_le32(&usbctlr->port_sc1, WKCN | WKDS | WKOC);
659
660 /* Enable and wait for the phy clock to become valid in 100 ms */
661 setbits_le32(&usbctlr->susp_ctrl, USB_SUSP_CLR);
662 for (loop_count = 100000; loop_count != 0; loop_count--) {
663 if (readl(&usbctlr->susp_ctrl) & USB_PHY_CLK_VALID)
664 break;
665 udelay(1);
666 }
667 if (!loop_count)
Simon Glass7e27bdd2015-03-25 12:22:46 -0600668 return -ETIMEDOUT;
Lucas Stach7ae18f32013-02-07 07:16:29 +0000669 clrbits_le32(&usbctlr->susp_ctrl, USB_SUSP_CLR);
670
671 return 0;
672}
673#else
Stephen Warrena4539a22014-04-30 15:09:57 -0600674static int init_ulpi_usb_controller(struct fdt_usb *config,
675 enum usb_init_type init)
Lucas Stach7ae18f32013-02-07 07:16:29 +0000676{
677 printf("No code to set up ULPI controller, please enable"
678 "CONFIG_USB_ULPI and CONFIG_USB_ULPI_VIEWPORT");
Simon Glass7e27bdd2015-03-25 12:22:46 -0600679 return -ENOSYS;
Lucas Stach7ae18f32013-02-07 07:16:29 +0000680}
681#endif
682
683static void config_clock(const u32 timing[])
684{
Tom Warren7aaa5a62015-03-04 16:36:00 -0700685 debug("%s: DIVM = %d, DIVN = %d, DIVP = %d, cpcon/lfcon = %d/%d\n",
686 __func__, timing[PARAM_DIVM], timing[PARAM_DIVN],
687 timing[PARAM_DIVP], timing[PARAM_CPCON], timing[PARAM_LFCON]);
688
Lucas Stach7ae18f32013-02-07 07:16:29 +0000689 clock_start_pll(CLOCK_ID_USB,
690 timing[PARAM_DIVM], timing[PARAM_DIVN], timing[PARAM_DIVP],
691 timing[PARAM_CPCON], timing[PARAM_LFCON]);
692}
693
Simon Glass4e9838c2015-08-11 08:33:29 -0600694static int fdt_decode_usb(struct udevice *dev, struct fdt_usb *config)
Lucas Stach7ae18f32013-02-07 07:16:29 +0000695{
696 const char *phy, *mode;
697
Simon Glass5ae28c02017-07-25 08:30:04 -0600698 config->reg = (struct usb_ctlr *)dev_read_addr(dev);
699 debug("reg=%p\n", config->reg);
700 mode = dev_read_string(dev, "dr_mode");
Lucas Stach7ae18f32013-02-07 07:16:29 +0000701 if (mode) {
702 if (0 == strcmp(mode, "host"))
703 config->dr_mode = DR_MODE_HOST;
704 else if (0 == strcmp(mode, "peripheral"))
705 config->dr_mode = DR_MODE_DEVICE;
706 else if (0 == strcmp(mode, "otg"))
707 config->dr_mode = DR_MODE_OTG;
708 else {
709 debug("%s: Cannot decode dr_mode '%s'\n", __func__,
710 mode);
Simon Glass7e27bdd2015-03-25 12:22:46 -0600711 return -EINVAL;
Lucas Stach7ae18f32013-02-07 07:16:29 +0000712 }
713 } else {
714 config->dr_mode = DR_MODE_HOST;
715 }
716
Simon Glass5ae28c02017-07-25 08:30:04 -0600717 phy = dev_read_string(dev, "phy_type");
Lucas Stach7ae18f32013-02-07 07:16:29 +0000718 config->utmi = phy && 0 == strcmp("utmi", phy);
719 config->ulpi = phy && 0 == strcmp("ulpi", phy);
Simon Glass5ae28c02017-07-25 08:30:04 -0600720 config->has_legacy_mode = dev_read_bool(dev, "nvidia,has-legacy-mode");
Simon Glass000f15f2017-07-25 08:30:00 -0600721 config->periph_id = clock_decode_periph_id(dev);
Lucas Stach7ae18f32013-02-07 07:16:29 +0000722 if (config->periph_id == PERIPH_ID_NONE) {
723 debug("%s: Missing/invalid peripheral ID\n", __func__);
Simon Glass7e27bdd2015-03-25 12:22:46 -0600724 return -EINVAL;
Lucas Stach7ae18f32013-02-07 07:16:29 +0000725 }
Simon Glass5ae28c02017-07-25 08:30:04 -0600726 gpio_request_by_name(dev, "nvidia,vbus-gpio", 0, &config->vbus_gpio,
727 GPIOD_IS_OUT);
728 gpio_request_by_name(dev, "nvidia,phy-reset-gpio", 0,
729 &config->phy_reset_gpio, GPIOD_IS_OUT);
730 debug("legacy_mode=%d, utmi=%d, ulpi=%d, periph_id=%d, vbus=%d, phy_reset=%d, dr_mode=%d, reg=%p\n",
731 config->has_legacy_mode, config->utmi, config->ulpi,
732 config->periph_id, gpio_get_number(&config->vbus_gpio),
733 gpio_get_number(&config->phy_reset_gpio), config->dr_mode,
734 config->reg);
Lucas Stach7ae18f32013-02-07 07:16:29 +0000735
736 return 0;
737}
738
Simon Glassddb9a502015-03-25 12:22:47 -0600739int usb_common_init(struct fdt_usb *config, enum usb_init_type init)
740{
741 int ret = 0;
742
743 switch (init) {
744 case USB_INIT_HOST:
745 switch (config->dr_mode) {
746 case DR_MODE_HOST:
747 case DR_MODE_OTG:
748 break;
749 default:
750 printf("tegrausb: Invalid dr_mode %d for host mode\n",
751 config->dr_mode);
752 return -1;
753 }
754 break;
755 case USB_INIT_DEVICE:
756 if (config->periph_id != PERIPH_ID_USBD) {
757 printf("tegrausb: Device mode only supported on first USB controller\n");
758 return -1;
759 }
760 if (!config->utmi) {
761 printf("tegrausb: Device mode only supported with UTMI PHY\n");
762 return -1;
763 }
764 switch (config->dr_mode) {
765 case DR_MODE_DEVICE:
766 case DR_MODE_OTG:
767 break;
768 default:
769 printf("tegrausb: Invalid dr_mode %d for device mode\n",
770 config->dr_mode);
771 return -1;
772 }
773 break;
774 default:
775 printf("tegrausb: Unknown USB_INIT_* %d\n", init);
776 return -1;
777 }
778
Simon Glassddb9a502015-03-25 12:22:47 -0600779 debug("%d, %d\n", config->utmi, config->ulpi);
780 if (config->utmi)
781 ret = init_utmi_usb_controller(config, init);
782 else if (config->ulpi)
783 ret = init_ulpi_usb_controller(config, init);
784 if (ret)
785 return ret;
786
787 set_up_vbus(config, init);
788
789 config->init_type = init;
790
791 return 0;
792}
793
794void usb_common_uninit(struct fdt_usb *priv)
795{
796 struct usb_ctlr *usbctlr;
797
798 usbctlr = priv->reg;
799
800 /* Stop controller */
801 writel(0, &usbctlr->usb_cmd);
802 udelay(1000);
803
804 /* Initiate controller reset */
805 writel(2, &usbctlr->usb_cmd);
806 udelay(1000);
807}
808
Simon Glassdeb85082015-03-25 12:22:27 -0600809static const struct ehci_ops tegra_ehci_ops = {
810 .set_usb_mode = tegra_ehci_set_usbmode,
811 .get_port_speed = tegra_ehci_get_port_speed,
812 .powerup_fixup = tegra_ehci_powerup_fixup,
813};
814
Simon Glassc3980ad2015-03-25 12:22:48 -0600815static int ehci_usb_ofdata_to_platdata(struct udevice *dev)
816{
817 struct fdt_usb *priv = dev_get_priv(dev);
818 int ret;
819
Simon Glass4e9838c2015-08-11 08:33:29 -0600820 ret = fdt_decode_usb(dev, priv);
Simon Glassc3980ad2015-03-25 12:22:48 -0600821 if (ret)
822 return ret;
823
824 priv->type = dev_get_driver_data(dev);
825
826 return 0;
827}
828
829static int ehci_usb_probe(struct udevice *dev)
830{
831 struct usb_platdata *plat = dev_get_platdata(dev);
832 struct fdt_usb *priv = dev_get_priv(dev);
833 struct ehci_hccr *hccr;
834 struct ehci_hcor *hcor;
835 static bool clk_done;
836 int ret;
837
838 ret = usb_common_init(priv, plat->init_type);
839 if (ret)
840 return ret;
841 hccr = (struct ehci_hccr *)&priv->reg->cap_length;
842 hcor = (struct ehci_hcor *)&priv->reg->usb_cmd;
843 if (!clk_done) {
844 config_clock(get_pll_timing(&fdt_usb_controllers[priv->type]));
845 clk_done = true;
846 }
847
848 return ehci_register(dev, hccr, hcor, &tegra_ehci_ops, 0,
849 plat->init_type);
850}
851
Simon Glassc3980ad2015-03-25 12:22:48 -0600852static const struct udevice_id ehci_usb_ids[] = {
853 { .compatible = "nvidia,tegra20-ehci", .data = USB_CTLR_T20 },
854 { .compatible = "nvidia,tegra30-ehci", .data = USB_CTLR_T30 },
855 { .compatible = "nvidia,tegra114-ehci", .data = USB_CTLR_T114 },
Tom Warren7aaa5a62015-03-04 16:36:00 -0700856 { .compatible = "nvidia,tegra210-ehci", .data = USB_CTLR_T210 },
Simon Glassc3980ad2015-03-25 12:22:48 -0600857 { }
858};
859
860U_BOOT_DRIVER(usb_ehci) = {
861 .name = "ehci_tegra",
862 .id = UCLASS_USB,
863 .of_match = ehci_usb_ids,
864 .ofdata_to_platdata = ehci_usb_ofdata_to_platdata,
865 .probe = ehci_usb_probe,
Masahiro Yamada40527342016-09-06 22:17:34 +0900866 .remove = ehci_deregister,
Simon Glassc3980ad2015-03-25 12:22:48 -0600867 .ops = &ehci_usb_ops,
868 .platdata_auto_alloc_size = sizeof(struct usb_platdata),
869 .priv_auto_alloc_size = sizeof(struct fdt_usb),
870 .flags = DM_FLAG_ALLOC_PRIV_DMA,
871};