2 * arch/arm/mach-tegra/usb_phy.c
4 * Copyright (C) 2010 Google, Inc.
7 * Erik Gilling <konkers@google.com>
8 * Benoit Goby <benoit@android.com>
10 * This software is licensed under the terms of the GNU General Public
11 * License version 2, as published by the Free Software Foundation, and
12 * may be copied, distributed, and modified under those terms.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
21 #include <linux/resource.h>
22 #include <linux/delay.h>
23 #include <linux/slab.h>
24 #include <linux/err.h>
25 #include <linux/platform_device.h>
27 #include <linux/gpio.h>
28 #include <linux/usb/otg.h>
29 #include <linux/usb/ulpi.h>
30 #include <asm/mach-types.h>
31 #include <mach/usb_phy.h>
32 #include <mach/iomap.h>
34 #define ULPI_VIEWPORT 0x170
36 #define USB_PORTSC1 0x184
37 #define USB_PORTSC1_PTS(x) (((x) & 0x3) << 30)
38 #define USB_PORTSC1_PSPD(x) (((x) & 0x3) << 26)
39 #define USB_PORTSC1_PHCD (1 << 23)
40 #define USB_PORTSC1_WKOC (1 << 22)
41 #define USB_PORTSC1_WKDS (1 << 21)
42 #define USB_PORTSC1_WKCN (1 << 20)
43 #define USB_PORTSC1_PTC(x) (((x) & 0xf) << 16)
44 #define USB_PORTSC1_PP (1 << 12)
45 #define USB_PORTSC1_SUSP (1 << 7)
46 #define USB_PORTSC1_PE (1 << 2)
47 #define USB_PORTSC1_CCS (1 << 0)
49 #define USB_SUSP_CTRL 0x400
50 #define USB_WAKE_ON_CNNT_EN_DEV (1 << 3)
51 #define USB_WAKE_ON_DISCON_EN_DEV (1 << 4)
52 #define USB_SUSP_CLR (1 << 5)
53 #define USB_PHY_CLK_VALID (1 << 7)
54 #define UTMIP_RESET (1 << 11)
55 #define UHSIC_RESET (1 << 11)
56 #define UTMIP_PHY_ENABLE (1 << 12)
57 #define ULPI_PHY_ENABLE (1 << 13)
58 #define USB_SUSP_SET (1 << 14)
59 #define USB_WAKEUP_DEBOUNCE_COUNT(x) (((x) & 0x7) << 16)
61 #define USB1_LEGACY_CTRL 0x410
62 #define USB1_NO_LEGACY_MODE (1 << 0)
63 #define USB1_VBUS_SENSE_CTL_MASK (3 << 1)
64 #define USB1_VBUS_SENSE_CTL_VBUS_WAKEUP (0 << 1)
65 #define USB1_VBUS_SENSE_CTL_AB_SESS_VLD_OR_VBUS_WAKEUP \
67 #define USB1_VBUS_SENSE_CTL_AB_SESS_VLD (2 << 1)
68 #define USB1_VBUS_SENSE_CTL_A_SESS_VLD (3 << 1)
70 #define ULPI_TIMING_CTRL_0 0x424
71 #define ULPI_OUTPUT_PINMUX_BYP (1 << 10)
72 #define ULPI_CLKOUT_PINMUX_BYP (1 << 11)
74 #define ULPI_TIMING_CTRL_1 0x428
75 #define ULPI_DATA_TRIMMER_LOAD (1 << 0)
76 #define ULPI_DATA_TRIMMER_SEL(x) (((x) & 0x7) << 1)
77 #define ULPI_STPDIRNXT_TRIMMER_LOAD (1 << 16)
78 #define ULPI_STPDIRNXT_TRIMMER_SEL(x) (((x) & 0x7) << 17)
79 #define ULPI_DIR_TRIMMER_LOAD (1 << 24)
80 #define ULPI_DIR_TRIMMER_SEL(x) (((x) & 0x7) << 25)
82 #define UTMIP_PLL_CFG1 0x804
83 #define UTMIP_XTAL_FREQ_COUNT(x) (((x) & 0xfff) << 0)
84 #define UTMIP_PLLU_ENABLE_DLY_COUNT(x) (((x) & 0x1f) << 27)
86 #define UTMIP_XCVR_CFG0 0x808
87 #define UTMIP_XCVR_SETUP(x) (((x) & 0xf) << 0)
88 #define UTMIP_XCVR_LSRSLEW(x) (((x) & 0x3) << 8)
89 #define UTMIP_XCVR_LSFSLEW(x) (((x) & 0x3) << 10)
90 #define UTMIP_FORCE_PD_POWERDOWN (1 << 14)
91 #define UTMIP_FORCE_PD2_POWERDOWN (1 << 16)
92 #define UTMIP_FORCE_PDZI_POWERDOWN (1 << 18)
93 #define UTMIP_XCVR_HSSLEW_MSB(x) (((x) & 0x7f) << 25)
95 #define UTMIP_BIAS_CFG0 0x80c
96 #define UTMIP_OTGPD (1 << 11)
97 #define UTMIP_BIASPD (1 << 10)
99 #define UTMIP_HSRX_CFG0 0x810
100 #define UTMIP_ELASTIC_LIMIT(x) (((x) & 0x1f) << 10)
101 #define UTMIP_IDLE_WAIT(x) (((x) & 0x1f) << 15)
103 #define UTMIP_HSRX_CFG1 0x814
104 #define UTMIP_HS_SYNC_START_DLY(x) (((x) & 0x1f) << 1)
106 #define UTMIP_TX_CFG0 0x820
107 #define UTMIP_FS_PREABMLE_J (1 << 19)
108 #define UTMIP_HS_DISCON_DISABLE (1 << 8)
110 #define UTMIP_MISC_CFG0 0x824
111 #define UTMIP_DPDM_OBSERVE (1 << 26)
112 #define UTMIP_DPDM_OBSERVE_SEL(x) (((x) & 0xf) << 27)
113 #define UTMIP_DPDM_OBSERVE_SEL_FS_J UTMIP_DPDM_OBSERVE_SEL(0xf)
114 #define UTMIP_DPDM_OBSERVE_SEL_FS_K UTMIP_DPDM_OBSERVE_SEL(0xe)
115 #define UTMIP_DPDM_OBSERVE_SEL_FS_SE1 UTMIP_DPDM_OBSERVE_SEL(0xd)
116 #define UTMIP_DPDM_OBSERVE_SEL_FS_SE0 UTMIP_DPDM_OBSERVE_SEL(0xc)
117 #define UTMIP_SUSPEND_EXIT_ON_EDGE (1 << 22)
119 #define UTMIP_MISC_CFG1 0x828
120 #define UTMIP_PLL_ACTIVE_DLY_COUNT(x) (((x) & 0x1f) << 18)
121 #define UTMIP_PLLU_STABLE_COUNT(x) (((x) & 0xfff) << 6)
123 #define UTMIP_DEBOUNCE_CFG0 0x82c
124 #define UTMIP_BIAS_DEBOUNCE_A(x) (((x) & 0xffff) << 0)
126 #define UTMIP_BAT_CHRG_CFG0 0x830
127 #define UTMIP_PD_CHRG (1 << 0)
129 #define UTMIP_SPARE_CFG0 0x834
130 #define FUSE_SETUP_SEL (1 << 3)
132 #define UTMIP_XCVR_CFG1 0x838
133 #define UTMIP_FORCE_PDDISC_POWERDOWN (1 << 0)
134 #define UTMIP_FORCE_PDCHRP_POWERDOWN (1 << 2)
135 #define UTMIP_FORCE_PDDR_POWERDOWN (1 << 4)
136 #define UTMIP_XCVR_TERM_RANGE_ADJ(x) (((x) & 0xf) << 18)
138 #define UTMIP_BIAS_CFG1 0x83c
139 #define UTMIP_BIAS_PDTRK_COUNT(x) (((x) & 0x1f) << 3)
141 static DEFINE_SPINLOCK(utmip_pad_lock
);
142 static int utmip_pad_count
;
144 struct tegra_xtal_freq
{
153 static const struct tegra_xtal_freq tegra_freq_table
[] = {
156 .enable_delay
= 0x02,
157 .stable_count
= 0x2F,
158 .active_delay
= 0x04,
159 .xtal_freq_count
= 0x76,
164 .enable_delay
= 0x02,
165 .stable_count
= 0x33,
166 .active_delay
= 0x05,
167 .xtal_freq_count
= 0x7F,
172 .enable_delay
= 0x03,
173 .stable_count
= 0x4B,
174 .active_delay
= 0x06,
175 .xtal_freq_count
= 0xBB,
180 .enable_delay
= 0x04,
181 .stable_count
= 0x66,
182 .active_delay
= 0x09,
183 .xtal_freq_count
= 0xFE,
188 static struct tegra_utmip_config utmip_default
[] = {
190 .hssync_start_delay
= 9,
191 .idle_wait_delay
= 17,
199 .hssync_start_delay
= 9,
200 .idle_wait_delay
= 17,
209 static inline bool phy_is_ulpi(struct tegra_usb_phy
*phy
)
211 return (phy
->instance
== 1);
214 static int utmip_pad_open(struct tegra_usb_phy
*phy
)
216 phy
->pad_clk
= clk_get_sys("utmip-pad", NULL
);
217 if (IS_ERR(phy
->pad_clk
)) {
218 pr_err("%s: can't get utmip pad clock\n", __func__
);
219 return PTR_ERR(phy
->pad_clk
);
222 if (phy
->instance
== 0) {
223 phy
->pad_regs
= phy
->regs
;
225 phy
->pad_regs
= ioremap(TEGRA_USB_BASE
, TEGRA_USB_SIZE
);
226 if (!phy
->pad_regs
) {
227 pr_err("%s: can't remap usb registers\n", __func__
);
228 clk_put(phy
->pad_clk
);
235 static void utmip_pad_close(struct tegra_usb_phy
*phy
)
237 if (phy
->instance
!= 0)
238 iounmap(phy
->pad_regs
);
239 clk_put(phy
->pad_clk
);
242 static void utmip_pad_power_on(struct tegra_usb_phy
*phy
)
244 unsigned long val
, flags
;
245 void __iomem
*base
= phy
->pad_regs
;
247 clk_enable(phy
->pad_clk
);
249 spin_lock_irqsave(&utmip_pad_lock
, flags
);
251 if (utmip_pad_count
++ == 0) {
252 val
= readl(base
+ UTMIP_BIAS_CFG0
);
253 val
&= ~(UTMIP_OTGPD
| UTMIP_BIASPD
);
254 writel(val
, base
+ UTMIP_BIAS_CFG0
);
257 spin_unlock_irqrestore(&utmip_pad_lock
, flags
);
259 clk_disable(phy
->pad_clk
);
262 static int utmip_pad_power_off(struct tegra_usb_phy
*phy
)
264 unsigned long val
, flags
;
265 void __iomem
*base
= phy
->pad_regs
;
267 if (!utmip_pad_count
) {
268 pr_err("%s: utmip pad already powered off\n", __func__
);
272 clk_enable(phy
->pad_clk
);
274 spin_lock_irqsave(&utmip_pad_lock
, flags
);
276 if (--utmip_pad_count
== 0) {
277 val
= readl(base
+ UTMIP_BIAS_CFG0
);
278 val
|= UTMIP_OTGPD
| UTMIP_BIASPD
;
279 writel(val
, base
+ UTMIP_BIAS_CFG0
);
282 spin_unlock_irqrestore(&utmip_pad_lock
, flags
);
284 clk_disable(phy
->pad_clk
);
289 static int utmi_wait_register(void __iomem
*reg
, u32 mask
, u32 result
)
291 unsigned long timeout
= 2000;
293 if ((readl(reg
) & mask
) == result
)
301 static void utmi_phy_clk_disable(struct tegra_usb_phy
*phy
)
304 void __iomem
*base
= phy
->regs
;
306 if (phy
->instance
== 0) {
307 val
= readl(base
+ USB_SUSP_CTRL
);
309 writel(val
, base
+ USB_SUSP_CTRL
);
313 val
= readl(base
+ USB_SUSP_CTRL
);
314 val
&= ~USB_SUSP_SET
;
315 writel(val
, base
+ USB_SUSP_CTRL
);
318 if (phy
->instance
== 2) {
319 val
= readl(base
+ USB_PORTSC1
);
320 val
|= USB_PORTSC1_PHCD
;
321 writel(val
, base
+ USB_PORTSC1
);
324 if (utmi_wait_register(base
+ USB_SUSP_CTRL
, USB_PHY_CLK_VALID
, 0) < 0)
325 pr_err("%s: timeout waiting for phy to stabilize\n", __func__
);
328 static void utmi_phy_clk_enable(struct tegra_usb_phy
*phy
)
331 void __iomem
*base
= phy
->regs
;
333 if (phy
->instance
== 0) {
334 val
= readl(base
+ USB_SUSP_CTRL
);
336 writel(val
, base
+ USB_SUSP_CTRL
);
340 val
= readl(base
+ USB_SUSP_CTRL
);
341 val
&= ~USB_SUSP_CLR
;
342 writel(val
, base
+ USB_SUSP_CTRL
);
345 if (phy
->instance
== 2) {
346 val
= readl(base
+ USB_PORTSC1
);
347 val
&= ~USB_PORTSC1_PHCD
;
348 writel(val
, base
+ USB_PORTSC1
);
351 if (utmi_wait_register(base
+ USB_SUSP_CTRL
, USB_PHY_CLK_VALID
,
353 pr_err("%s: timeout waiting for phy to stabilize\n", __func__
);
356 static int utmi_phy_power_on(struct tegra_usb_phy
*phy
)
359 void __iomem
*base
= phy
->regs
;
360 struct tegra_utmip_config
*config
= phy
->config
;
362 val
= readl(base
+ USB_SUSP_CTRL
);
364 writel(val
, base
+ USB_SUSP_CTRL
);
366 if (phy
->instance
== 0) {
367 val
= readl(base
+ USB1_LEGACY_CTRL
);
368 val
|= USB1_NO_LEGACY_MODE
;
369 writel(val
, base
+ USB1_LEGACY_CTRL
);
372 val
= readl(base
+ UTMIP_TX_CFG0
);
373 val
&= ~UTMIP_FS_PREABMLE_J
;
374 writel(val
, base
+ UTMIP_TX_CFG0
);
376 val
= readl(base
+ UTMIP_HSRX_CFG0
);
377 val
&= ~(UTMIP_IDLE_WAIT(~0) | UTMIP_ELASTIC_LIMIT(~0));
378 val
|= UTMIP_IDLE_WAIT(config
->idle_wait_delay
);
379 val
|= UTMIP_ELASTIC_LIMIT(config
->elastic_limit
);
380 writel(val
, base
+ UTMIP_HSRX_CFG0
);
382 val
= readl(base
+ UTMIP_HSRX_CFG1
);
383 val
&= ~UTMIP_HS_SYNC_START_DLY(~0);
384 val
|= UTMIP_HS_SYNC_START_DLY(config
->hssync_start_delay
);
385 writel(val
, base
+ UTMIP_HSRX_CFG1
);
387 val
= readl(base
+ UTMIP_DEBOUNCE_CFG0
);
388 val
&= ~UTMIP_BIAS_DEBOUNCE_A(~0);
389 val
|= UTMIP_BIAS_DEBOUNCE_A(phy
->freq
->debounce
);
390 writel(val
, base
+ UTMIP_DEBOUNCE_CFG0
);
392 val
= readl(base
+ UTMIP_MISC_CFG0
);
393 val
&= ~UTMIP_SUSPEND_EXIT_ON_EDGE
;
394 writel(val
, base
+ UTMIP_MISC_CFG0
);
396 val
= readl(base
+ UTMIP_MISC_CFG1
);
397 val
&= ~(UTMIP_PLL_ACTIVE_DLY_COUNT(~0) | UTMIP_PLLU_STABLE_COUNT(~0));
398 val
|= UTMIP_PLL_ACTIVE_DLY_COUNT(phy
->freq
->active_delay
) |
399 UTMIP_PLLU_STABLE_COUNT(phy
->freq
->stable_count
);
400 writel(val
, base
+ UTMIP_MISC_CFG1
);
402 val
= readl(base
+ UTMIP_PLL_CFG1
);
403 val
&= ~(UTMIP_XTAL_FREQ_COUNT(~0) | UTMIP_PLLU_ENABLE_DLY_COUNT(~0));
404 val
|= UTMIP_XTAL_FREQ_COUNT(phy
->freq
->xtal_freq_count
) |
405 UTMIP_PLLU_ENABLE_DLY_COUNT(phy
->freq
->enable_delay
);
406 writel(val
, base
+ UTMIP_PLL_CFG1
);
408 if (phy
->mode
== TEGRA_USB_PHY_MODE_DEVICE
) {
409 val
= readl(base
+ USB_SUSP_CTRL
);
410 val
&= ~(USB_WAKE_ON_CNNT_EN_DEV
| USB_WAKE_ON_DISCON_EN_DEV
);
411 writel(val
, base
+ USB_SUSP_CTRL
);
414 utmip_pad_power_on(phy
);
416 val
= readl(base
+ UTMIP_XCVR_CFG0
);
417 val
&= ~(UTMIP_FORCE_PD_POWERDOWN
| UTMIP_FORCE_PD2_POWERDOWN
|
418 UTMIP_FORCE_PDZI_POWERDOWN
| UTMIP_XCVR_SETUP(~0) |
419 UTMIP_XCVR_LSFSLEW(~0) | UTMIP_XCVR_LSRSLEW(~0) |
420 UTMIP_XCVR_HSSLEW_MSB(~0));
421 val
|= UTMIP_XCVR_SETUP(config
->xcvr_setup
);
422 val
|= UTMIP_XCVR_LSFSLEW(config
->xcvr_lsfslew
);
423 val
|= UTMIP_XCVR_LSRSLEW(config
->xcvr_lsrslew
);
424 writel(val
, base
+ UTMIP_XCVR_CFG0
);
426 val
= readl(base
+ UTMIP_XCVR_CFG1
);
427 val
&= ~(UTMIP_FORCE_PDDISC_POWERDOWN
| UTMIP_FORCE_PDCHRP_POWERDOWN
|
428 UTMIP_FORCE_PDDR_POWERDOWN
| UTMIP_XCVR_TERM_RANGE_ADJ(~0));
429 val
|= UTMIP_XCVR_TERM_RANGE_ADJ(config
->term_range_adj
);
430 writel(val
, base
+ UTMIP_XCVR_CFG1
);
432 val
= readl(base
+ UTMIP_BAT_CHRG_CFG0
);
433 val
&= ~UTMIP_PD_CHRG
;
434 writel(val
, base
+ UTMIP_BAT_CHRG_CFG0
);
436 val
= readl(base
+ UTMIP_BIAS_CFG1
);
437 val
&= ~UTMIP_BIAS_PDTRK_COUNT(~0);
438 val
|= UTMIP_BIAS_PDTRK_COUNT(0x5);
439 writel(val
, base
+ UTMIP_BIAS_CFG1
);
441 if (phy
->instance
== 0) {
442 val
= readl(base
+ UTMIP_SPARE_CFG0
);
443 if (phy
->mode
== TEGRA_USB_PHY_MODE_DEVICE
)
444 val
&= ~FUSE_SETUP_SEL
;
446 val
|= FUSE_SETUP_SEL
;
447 writel(val
, base
+ UTMIP_SPARE_CFG0
);
450 if (phy
->instance
== 2) {
451 val
= readl(base
+ USB_SUSP_CTRL
);
452 val
|= UTMIP_PHY_ENABLE
;
453 writel(val
, base
+ USB_SUSP_CTRL
);
456 val
= readl(base
+ USB_SUSP_CTRL
);
458 writel(val
, base
+ USB_SUSP_CTRL
);
460 if (phy
->instance
== 0) {
461 val
= readl(base
+ USB1_LEGACY_CTRL
);
462 val
&= ~USB1_VBUS_SENSE_CTL_MASK
;
463 val
|= USB1_VBUS_SENSE_CTL_A_SESS_VLD
;
464 writel(val
, base
+ USB1_LEGACY_CTRL
);
466 val
= readl(base
+ USB_SUSP_CTRL
);
467 val
&= ~USB_SUSP_SET
;
468 writel(val
, base
+ USB_SUSP_CTRL
);
471 utmi_phy_clk_enable(phy
);
473 if (phy
->instance
== 2) {
474 val
= readl(base
+ USB_PORTSC1
);
475 val
&= ~USB_PORTSC1_PTS(~0);
476 writel(val
, base
+ USB_PORTSC1
);
482 static void utmi_phy_power_off(struct tegra_usb_phy
*phy
)
485 void __iomem
*base
= phy
->regs
;
487 utmi_phy_clk_disable(phy
);
489 if (phy
->mode
== TEGRA_USB_PHY_MODE_DEVICE
) {
490 val
= readl(base
+ USB_SUSP_CTRL
);
491 val
&= ~USB_WAKEUP_DEBOUNCE_COUNT(~0);
492 val
|= USB_WAKE_ON_CNNT_EN_DEV
| USB_WAKEUP_DEBOUNCE_COUNT(5);
493 writel(val
, base
+ USB_SUSP_CTRL
);
496 val
= readl(base
+ USB_SUSP_CTRL
);
498 writel(val
, base
+ USB_SUSP_CTRL
);
500 val
= readl(base
+ UTMIP_BAT_CHRG_CFG0
);
501 val
|= UTMIP_PD_CHRG
;
502 writel(val
, base
+ UTMIP_BAT_CHRG_CFG0
);
504 val
= readl(base
+ UTMIP_XCVR_CFG0
);
505 val
|= UTMIP_FORCE_PD_POWERDOWN
| UTMIP_FORCE_PD2_POWERDOWN
|
506 UTMIP_FORCE_PDZI_POWERDOWN
;
507 writel(val
, base
+ UTMIP_XCVR_CFG0
);
509 val
= readl(base
+ UTMIP_XCVR_CFG1
);
510 val
|= UTMIP_FORCE_PDDISC_POWERDOWN
| UTMIP_FORCE_PDCHRP_POWERDOWN
|
511 UTMIP_FORCE_PDDR_POWERDOWN
;
512 writel(val
, base
+ UTMIP_XCVR_CFG1
);
514 utmip_pad_power_off(phy
);
517 static void utmi_phy_preresume(struct tegra_usb_phy
*phy
)
520 void __iomem
*base
= phy
->regs
;
522 val
= readl(base
+ UTMIP_TX_CFG0
);
523 val
|= UTMIP_HS_DISCON_DISABLE
;
524 writel(val
, base
+ UTMIP_TX_CFG0
);
527 static void utmi_phy_postresume(struct tegra_usb_phy
*phy
)
530 void __iomem
*base
= phy
->regs
;
532 val
= readl(base
+ UTMIP_TX_CFG0
);
533 val
&= ~UTMIP_HS_DISCON_DISABLE
;
534 writel(val
, base
+ UTMIP_TX_CFG0
);
537 static void utmi_phy_restore_start(struct tegra_usb_phy
*phy
,
538 enum tegra_usb_phy_port_speed port_speed
)
541 void __iomem
*base
= phy
->regs
;
543 val
= readl(base
+ UTMIP_MISC_CFG0
);
544 val
&= ~UTMIP_DPDM_OBSERVE_SEL(~0);
545 if (port_speed
== TEGRA_USB_PHY_PORT_SPEED_LOW
)
546 val
|= UTMIP_DPDM_OBSERVE_SEL_FS_K
;
548 val
|= UTMIP_DPDM_OBSERVE_SEL_FS_J
;
549 writel(val
, base
+ UTMIP_MISC_CFG0
);
552 val
= readl(base
+ UTMIP_MISC_CFG0
);
553 val
|= UTMIP_DPDM_OBSERVE
;
554 writel(val
, base
+ UTMIP_MISC_CFG0
);
558 static void utmi_phy_restore_end(struct tegra_usb_phy
*phy
)
561 void __iomem
*base
= phy
->regs
;
563 val
= readl(base
+ UTMIP_MISC_CFG0
);
564 val
&= ~UTMIP_DPDM_OBSERVE
;
565 writel(val
, base
+ UTMIP_MISC_CFG0
);
569 static int ulpi_phy_power_on(struct tegra_usb_phy
*phy
)
573 void __iomem
*base
= phy
->regs
;
574 struct tegra_ulpi_config
*config
= phy
->config
;
576 gpio_direction_output(config
->reset_gpio
, 0);
578 gpio_direction_output(config
->reset_gpio
, 1);
580 clk_enable(phy
->clk
);
583 val
= readl(base
+ USB_SUSP_CTRL
);
585 writel(val
, base
+ USB_SUSP_CTRL
);
587 val
= readl(base
+ ULPI_TIMING_CTRL_0
);
588 val
|= ULPI_OUTPUT_PINMUX_BYP
| ULPI_CLKOUT_PINMUX_BYP
;
589 writel(val
, base
+ ULPI_TIMING_CTRL_0
);
591 val
= readl(base
+ USB_SUSP_CTRL
);
592 val
|= ULPI_PHY_ENABLE
;
593 writel(val
, base
+ USB_SUSP_CTRL
);
596 writel(val
, base
+ ULPI_TIMING_CTRL_1
);
598 val
|= ULPI_DATA_TRIMMER_SEL(4);
599 val
|= ULPI_STPDIRNXT_TRIMMER_SEL(4);
600 val
|= ULPI_DIR_TRIMMER_SEL(4);
601 writel(val
, base
+ ULPI_TIMING_CTRL_1
);
604 val
|= ULPI_DATA_TRIMMER_LOAD
;
605 val
|= ULPI_STPDIRNXT_TRIMMER_LOAD
;
606 val
|= ULPI_DIR_TRIMMER_LOAD
;
607 writel(val
, base
+ ULPI_TIMING_CTRL_1
);
609 /* Fix VbusInvalid due to floating VBUS */
610 ret
= otg_io_write(phy
->ulpi
, 0x40, 0x08);
612 pr_err("%s: ulpi write failed\n", __func__
);
616 ret
= otg_io_write(phy
->ulpi
, 0x80, 0x0B);
618 pr_err("%s: ulpi write failed\n", __func__
);
622 val
= readl(base
+ USB_PORTSC1
);
623 val
|= USB_PORTSC1_WKOC
| USB_PORTSC1_WKDS
| USB_PORTSC1_WKCN
;
624 writel(val
, base
+ USB_PORTSC1
);
626 val
= readl(base
+ USB_SUSP_CTRL
);
628 writel(val
, base
+ USB_SUSP_CTRL
);
631 val
= readl(base
+ USB_SUSP_CTRL
);
632 val
&= ~USB_SUSP_CLR
;
633 writel(val
, base
+ USB_SUSP_CTRL
);
638 static void ulpi_phy_power_off(struct tegra_usb_phy
*phy
)
641 void __iomem
*base
= phy
->regs
;
642 struct tegra_ulpi_config
*config
= phy
->config
;
644 /* Clear WKCN/WKDS/WKOC wake-on events that can cause the USB
645 * Controller to immediately bring the ULPI PHY out of low power
647 val
= readl(base
+ USB_PORTSC1
);
648 val
&= ~(USB_PORTSC1_WKOC
| USB_PORTSC1_WKDS
| USB_PORTSC1_WKCN
);
649 writel(val
, base
+ USB_PORTSC1
);
651 gpio_direction_output(config
->reset_gpio
, 0);
652 clk_disable(phy
->clk
);
655 struct tegra_usb_phy
*tegra_usb_phy_open(int instance
, void __iomem
*regs
,
656 void *config
, enum tegra_usb_phy_mode phy_mode
)
658 struct tegra_usb_phy
*phy
;
659 struct tegra_ulpi_config
*ulpi_config
;
660 unsigned long parent_rate
;
664 phy
= kmalloc(sizeof(struct tegra_usb_phy
), GFP_KERNEL
);
666 return ERR_PTR(-ENOMEM
);
668 phy
->instance
= instance
;
670 phy
->config
= config
;
671 phy
->mode
= phy_mode
;
674 if (phy_is_ulpi(phy
)) {
675 pr_err("%s: ulpi phy configuration missing", __func__
);
679 phy
->config
= &utmip_default
[instance
];
683 phy
->pll_u
= clk_get_sys(NULL
, "pll_u");
684 if (IS_ERR(phy
->pll_u
)) {
685 pr_err("Can't get pll_u clock\n");
686 err
= PTR_ERR(phy
->pll_u
);
689 clk_enable(phy
->pll_u
);
691 parent_rate
= clk_get_rate(clk_get_parent(phy
->pll_u
));
692 for (i
= 0; i
< ARRAY_SIZE(tegra_freq_table
); i
++) {
693 if (tegra_freq_table
[i
].freq
== parent_rate
) {
694 phy
->freq
= &tegra_freq_table
[i
];
699 pr_err("invalid pll_u parent rate %ld\n", parent_rate
);
704 if (phy_is_ulpi(phy
)) {
705 ulpi_config
= config
;
706 phy
->clk
= clk_get_sys(NULL
, ulpi_config
->clk
);
707 if (IS_ERR(phy
->clk
)) {
708 pr_err("%s: can't get ulpi clock\n", __func__
);
712 tegra_gpio_enable(ulpi_config
->reset_gpio
);
713 gpio_request(ulpi_config
->reset_gpio
, "ulpi_phy_reset_b");
714 gpio_direction_output(ulpi_config
->reset_gpio
, 0);
715 phy
->ulpi
= otg_ulpi_create(&ulpi_viewport_access_ops
, 0);
716 phy
->ulpi
->io_priv
= regs
+ ULPI_VIEWPORT
;
718 err
= utmip_pad_open(phy
);
726 clk_disable(phy
->pll_u
);
733 int tegra_usb_phy_power_on(struct tegra_usb_phy
*phy
)
735 if (phy_is_ulpi(phy
))
736 return ulpi_phy_power_on(phy
);
738 return utmi_phy_power_on(phy
);
741 void tegra_usb_phy_power_off(struct tegra_usb_phy
*phy
)
743 if (phy_is_ulpi(phy
))
744 ulpi_phy_power_off(phy
);
746 utmi_phy_power_off(phy
);
749 void tegra_usb_phy_preresume(struct tegra_usb_phy
*phy
)
751 if (!phy_is_ulpi(phy
))
752 utmi_phy_preresume(phy
);
755 void tegra_usb_phy_postresume(struct tegra_usb_phy
*phy
)
757 if (!phy_is_ulpi(phy
))
758 utmi_phy_postresume(phy
);
761 void tegra_ehci_phy_restore_start(struct tegra_usb_phy
*phy
,
762 enum tegra_usb_phy_port_speed port_speed
)
764 if (!phy_is_ulpi(phy
))
765 utmi_phy_restore_start(phy
, port_speed
);
768 void tegra_ehci_phy_restore_end(struct tegra_usb_phy
*phy
)
770 if (!phy_is_ulpi(phy
))
771 utmi_phy_restore_end(phy
);
774 void tegra_usb_phy_clk_disable(struct tegra_usb_phy
*phy
)
776 if (!phy_is_ulpi(phy
))
777 utmi_phy_clk_disable(phy
);
780 void tegra_usb_phy_clk_enable(struct tegra_usb_phy
*phy
)
782 if (!phy_is_ulpi(phy
))
783 utmi_phy_clk_enable(phy
);
786 void tegra_usb_phy_close(struct tegra_usb_phy
*phy
)
788 if (phy_is_ulpi(phy
))
791 utmip_pad_close(phy
);
792 clk_disable(phy
->pll_u
);