Hema HK | c33fad0 | 2010-12-10 17:58:20 +0530 | [diff] [blame] | 1 | /* |
| 2 | * This file configures the internal USB PHY in OMAP4430. Used |
| 3 | * with TWL6030 transceiver and MUSB on OMAP4430. |
| 4 | * |
| 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. |
| 10 | * |
| 11 | * Author: Hema HK <hemahk@ti.com> |
| 12 | * |
| 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. |
| 17 | * |
| 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. |
| 21 | * |
| 22 | */ |
| 23 | |
Masanari Iida | d008d8e | 2014-10-07 23:16:16 +0900 | [diff] [blame] | 24 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 25 | |
Hema HK | c33fad0 | 2010-12-10 17:58:20 +0530 | [diff] [blame] | 26 | #include <linux/types.h> |
| 27 | #include <linux/delay.h> |
| 28 | #include <linux/clk.h> |
| 29 | #include <linux/io.h> |
| 30 | #include <linux/err.h> |
| 31 | #include <linux/usb.h> |
Tony Lindgren | 54db6ee | 2012-10-24 14:26:18 -0700 | [diff] [blame] | 32 | #include <linux/usb/musb.h> |
Tony Lindgren | 7d7e1eb | 2012-08-27 17:43:01 -0700 | [diff] [blame] | 33 | |
Tony Lindgren | dbc0416 | 2012-08-31 10:59:07 -0700 | [diff] [blame] | 34 | #include "soc.h" |
Hema HK | fe5a490 | 2011-02-16 17:34:40 +0530 | [diff] [blame] | 35 | #include "control.h" |
Tony Lindgren | 54db6ee | 2012-10-24 14:26:18 -0700 | [diff] [blame] | 36 | #include "usb.h" |
Hema HK | c33fad0 | 2010-12-10 17:58:20 +0530 | [diff] [blame] | 37 | |
Tero Kristo | 4fd7a41 | 2012-11-09 16:30:35 +0200 | [diff] [blame] | 38 | #define CONTROL_DEV_CONF 0x300 |
| 39 | #define PHY_PD 0x1 |
| 40 | |
| 41 | /** |
| 42 | * omap4430_phy_power_down: disable MUSB PHY during early init |
| 43 | * |
| 44 | * OMAP4 MUSB PHY module is enabled by default on reset, but this will |
| 45 | * prevent core retention if not disabled by SW. USB driver will |
| 46 | * later on enable this, once and if the driver needs it. |
| 47 | */ |
| 48 | static int __init omap4430_phy_power_down(void) |
| 49 | { |
| 50 | void __iomem *ctrl_base; |
| 51 | |
| 52 | if (!cpu_is_omap44xx()) |
| 53 | return 0; |
| 54 | |
| 55 | ctrl_base = ioremap(OMAP443X_SCM_BASE, SZ_1K); |
| 56 | if (!ctrl_base) { |
| 57 | pr_err("control module ioremap failed\n"); |
| 58 | return -ENOMEM; |
| 59 | } |
| 60 | |
| 61 | /* Power down the phy */ |
Victor Kamensky | edfaf05 | 2014-04-15 20:37:46 +0300 | [diff] [blame] | 62 | writel_relaxed(PHY_PD, ctrl_base + CONTROL_DEV_CONF); |
Tero Kristo | 4fd7a41 | 2012-11-09 16:30:35 +0200 | [diff] [blame] | 63 | |
| 64 | iounmap(ctrl_base); |
| 65 | |
| 66 | return 0; |
| 67 | } |
Tony Lindgren | b76c8b19 | 2013-01-11 11:24:18 -0800 | [diff] [blame] | 68 | omap_early_initcall(omap4430_phy_power_down); |
Tero Kristo | 4fd7a41 | 2012-11-09 16:30:35 +0200 | [diff] [blame] | 69 | |
Hema HK | fe5a490 | 2011-02-16 17:34:40 +0530 | [diff] [blame] | 70 | void am35x_musb_reset(void) |
| 71 | { |
| 72 | u32 regval; |
| 73 | |
| 74 | /* Reset the musb interface */ |
| 75 | regval = omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET); |
| 76 | |
| 77 | regval |= AM35XX_USBOTGSS_SW_RST; |
| 78 | omap_ctrl_writel(regval, AM35XX_CONTROL_IP_SW_RESET); |
| 79 | |
| 80 | regval &= ~AM35XX_USBOTGSS_SW_RST; |
| 81 | omap_ctrl_writel(regval, AM35XX_CONTROL_IP_SW_RESET); |
| 82 | |
| 83 | regval = omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET); |
| 84 | } |
| 85 | |
| 86 | void am35x_musb_phy_power(u8 on) |
| 87 | { |
| 88 | unsigned long timeout = jiffies + msecs_to_jiffies(100); |
| 89 | u32 devconf2; |
| 90 | |
| 91 | if (on) { |
| 92 | /* |
| 93 | * Start the on-chip PHY and its PLL. |
| 94 | */ |
| 95 | devconf2 = omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2); |
| 96 | |
| 97 | devconf2 &= ~(CONF2_RESET | CONF2_PHYPWRDN | CONF2_OTGPWRDN); |
| 98 | devconf2 |= CONF2_PHY_PLLON; |
| 99 | |
| 100 | omap_ctrl_writel(devconf2, AM35XX_CONTROL_DEVCONF2); |
| 101 | |
Masanari Iida | d008d8e | 2014-10-07 23:16:16 +0900 | [diff] [blame] | 102 | pr_info("Waiting for PHY clock good...\n"); |
Hema HK | fe5a490 | 2011-02-16 17:34:40 +0530 | [diff] [blame] | 103 | while (!(omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2) |
| 104 | & CONF2_PHYCLKGD)) { |
| 105 | cpu_relax(); |
| 106 | |
| 107 | if (time_after(jiffies, timeout)) { |
Masanari Iida | d008d8e | 2014-10-07 23:16:16 +0900 | [diff] [blame] | 108 | pr_err("musb PHY clock good timed out\n"); |
Hema HK | fe5a490 | 2011-02-16 17:34:40 +0530 | [diff] [blame] | 109 | break; |
| 110 | } |
| 111 | } |
| 112 | } else { |
| 113 | /* |
| 114 | * Power down the on-chip PHY. |
| 115 | */ |
| 116 | devconf2 = omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2); |
| 117 | |
| 118 | devconf2 &= ~CONF2_PHY_PLLON; |
| 119 | devconf2 |= CONF2_PHYPWRDN | CONF2_OTGPWRDN; |
| 120 | omap_ctrl_writel(devconf2, AM35XX_CONTROL_DEVCONF2); |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | void am35x_musb_clear_irq(void) |
| 125 | { |
| 126 | u32 regval; |
| 127 | |
| 128 | regval = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR); |
| 129 | regval |= AM35XX_USBOTGSS_INT_CLR; |
| 130 | omap_ctrl_writel(regval, AM35XX_CONTROL_LVL_INTR_CLEAR); |
| 131 | regval = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR); |
| 132 | } |
| 133 | |
Felipe Balbi | a6d2852 | 2011-05-02 12:45:05 +0300 | [diff] [blame] | 134 | void am35x_set_mode(u8 musb_mode) |
Hema HK | fe5a490 | 2011-02-16 17:34:40 +0530 | [diff] [blame] | 135 | { |
| 136 | u32 devconf2 = omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2); |
| 137 | |
| 138 | devconf2 &= ~CONF2_OTGMODE; |
| 139 | switch (musb_mode) { |
Hema HK | fe5a490 | 2011-02-16 17:34:40 +0530 | [diff] [blame] | 140 | case MUSB_HOST: /* Force VBUS valid, ID = 0 */ |
| 141 | devconf2 |= CONF2_FORCE_HOST; |
| 142 | break; |
Hema HK | fe5a490 | 2011-02-16 17:34:40 +0530 | [diff] [blame] | 143 | case MUSB_PERIPHERAL: /* Force VBUS valid, ID = 1 */ |
| 144 | devconf2 |= CONF2_FORCE_DEVICE; |
| 145 | break; |
Hema HK | fe5a490 | 2011-02-16 17:34:40 +0530 | [diff] [blame] | 146 | case MUSB_OTG: /* Don't override the VBUS/ID comparators */ |
| 147 | devconf2 |= CONF2_NO_OVERRIDE; |
| 148 | break; |
Hema HK | fe5a490 | 2011-02-16 17:34:40 +0530 | [diff] [blame] | 149 | default: |
Masanari Iida | d008d8e | 2014-10-07 23:16:16 +0900 | [diff] [blame] | 150 | pr_info("Unsupported mode %u\n", musb_mode); |
Hema HK | fe5a490 | 2011-02-16 17:34:40 +0530 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | omap_ctrl_writel(devconf2, AM35XX_CONTROL_DEVCONF2); |
| 154 | } |