2 * This file configures the internal USB PHY in OMAP4430. Used
3 * with TWL6030 transceiver and MUSB on OMAP4430.
5 * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * Author: Hema HK <hemahk@ti.com>
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #include <linux/types.h>
25 #include <linux/delay.h>
26 #include <linux/clk.h>
28 #include <linux/err.h>
29 #include <linux/usb.h>
30 #include <linux/usb/musb.h>
36 #define CONTROL_DEV_CONF 0x300
40 * omap4430_phy_power_down: disable MUSB PHY during early init
42 * OMAP4 MUSB PHY module is enabled by default on reset, but this will
43 * prevent core retention if not disabled by SW. USB driver will
44 * later on enable this, once and if the driver needs it.
46 static int __init
omap4430_phy_power_down(void)
48 void __iomem
*ctrl_base
;
50 if (!cpu_is_omap44xx())
53 ctrl_base
= ioremap(OMAP443X_SCM_BASE
, SZ_1K
);
55 pr_err("control module ioremap failed\n");
59 /* Power down the phy */
60 writel_relaxed(PHY_PD
, ctrl_base
+ CONTROL_DEV_CONF
);
66 omap_early_initcall(omap4430_phy_power_down
);
68 void am35x_musb_reset(void)
72 /* Reset the musb interface */
73 regval
= omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET
);
75 regval
|= AM35XX_USBOTGSS_SW_RST
;
76 omap_ctrl_writel(regval
, AM35XX_CONTROL_IP_SW_RESET
);
78 regval
&= ~AM35XX_USBOTGSS_SW_RST
;
79 omap_ctrl_writel(regval
, AM35XX_CONTROL_IP_SW_RESET
);
81 regval
= omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET
);
84 void am35x_musb_phy_power(u8 on
)
86 unsigned long timeout
= jiffies
+ msecs_to_jiffies(100);
91 * Start the on-chip PHY and its PLL.
93 devconf2
= omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2
);
95 devconf2
&= ~(CONF2_RESET
| CONF2_PHYPWRDN
| CONF2_OTGPWRDN
);
96 devconf2
|= CONF2_PHY_PLLON
;
98 omap_ctrl_writel(devconf2
, AM35XX_CONTROL_DEVCONF2
);
100 pr_info(KERN_INFO
"Waiting for PHY clock good...\n");
101 while (!(omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2
)
105 if (time_after(jiffies
, timeout
)) {
106 pr_err(KERN_ERR
"musb PHY clock good timed out\n");
112 * Power down the on-chip PHY.
114 devconf2
= omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2
);
116 devconf2
&= ~CONF2_PHY_PLLON
;
117 devconf2
|= CONF2_PHYPWRDN
| CONF2_OTGPWRDN
;
118 omap_ctrl_writel(devconf2
, AM35XX_CONTROL_DEVCONF2
);
122 void am35x_musb_clear_irq(void)
126 regval
= omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR
);
127 regval
|= AM35XX_USBOTGSS_INT_CLR
;
128 omap_ctrl_writel(regval
, AM35XX_CONTROL_LVL_INTR_CLEAR
);
129 regval
= omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR
);
132 void am35x_set_mode(u8 musb_mode
)
134 u32 devconf2
= omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2
);
136 devconf2
&= ~CONF2_OTGMODE
;
138 case MUSB_HOST
: /* Force VBUS valid, ID = 0 */
139 devconf2
|= CONF2_FORCE_HOST
;
141 case MUSB_PERIPHERAL
: /* Force VBUS valid, ID = 1 */
142 devconf2
|= CONF2_FORCE_DEVICE
;
144 case MUSB_OTG
: /* Don't override the VBUS/ID comparators */
145 devconf2
|= CONF2_NO_OVERRIDE
;
148 pr_info(KERN_INFO
"Unsupported mode %u\n", musb_mode
);
151 omap_ctrl_writel(devconf2
, AM35XX_CONTROL_DEVCONF2
);
154 void ti81xx_musb_phy_power(u8 on
)
156 void __iomem
*scm_base
= NULL
;
159 scm_base
= ioremap(TI81XX_SCM_BASE
, SZ_2K
);
161 pr_err("system control module ioremap failed\n");
165 usbphycfg
= readl_relaxed(scm_base
+ USBCTRL0
);
168 if (cpu_is_ti816x()) {
169 usbphycfg
|= TI816X_USBPHY0_NORMAL_MODE
;
170 usbphycfg
&= ~TI816X_USBPHY_REFCLK_OSC
;
171 } else if (cpu_is_ti814x()) {
172 usbphycfg
&= ~(USBPHY_CM_PWRDN
| USBPHY_OTG_PWRDN
173 | USBPHY_DPINPUT
| USBPHY_DMINPUT
);
174 usbphycfg
|= (USBPHY_OTGVDET_EN
| USBPHY_OTGSESSEND_EN
175 | USBPHY_DPOPBUFCTL
| USBPHY_DMOPBUFCTL
);
179 usbphycfg
&= ~TI816X_USBPHY0_NORMAL_MODE
;
180 else if (cpu_is_ti814x())
181 usbphycfg
|= USBPHY_CM_PWRDN
| USBPHY_OTG_PWRDN
;
184 writel_relaxed(usbphycfg
, scm_base
+ USBCTRL0
);