omap_phy_internal.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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. #include <linux/types.h>
  24. #include <linux/delay.h>
  25. #include <linux/clk.h>
  26. #include <linux/io.h>
  27. #include <linux/err.h>
  28. #include <linux/usb.h>
  29. #include <plat/usb.h>
  30. #include "control.h"
  31. void am35x_musb_reset(void)
  32. {
  33. u32 regval;
  34. /* Reset the musb interface */
  35. regval = omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET);
  36. regval |= AM35XX_USBOTGSS_SW_RST;
  37. omap_ctrl_writel(regval, AM35XX_CONTROL_IP_SW_RESET);
  38. regval &= ~AM35XX_USBOTGSS_SW_RST;
  39. omap_ctrl_writel(regval, AM35XX_CONTROL_IP_SW_RESET);
  40. regval = omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET);
  41. }
  42. void am35x_musb_phy_power(u8 on)
  43. {
  44. unsigned long timeout = jiffies + msecs_to_jiffies(100);
  45. u32 devconf2;
  46. if (on) {
  47. /*
  48. * Start the on-chip PHY and its PLL.
  49. */
  50. devconf2 = omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2);
  51. devconf2 &= ~(CONF2_RESET | CONF2_PHYPWRDN | CONF2_OTGPWRDN);
  52. devconf2 |= CONF2_PHY_PLLON;
  53. omap_ctrl_writel(devconf2, AM35XX_CONTROL_DEVCONF2);
  54. pr_info(KERN_INFO "Waiting for PHY clock good...\n");
  55. while (!(omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2)
  56. & CONF2_PHYCLKGD)) {
  57. cpu_relax();
  58. if (time_after(jiffies, timeout)) {
  59. pr_err(KERN_ERR "musb PHY clock good timed out\n");
  60. break;
  61. }
  62. }
  63. } else {
  64. /*
  65. * Power down the on-chip PHY.
  66. */
  67. devconf2 = omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2);
  68. devconf2 &= ~CONF2_PHY_PLLON;
  69. devconf2 |= CONF2_PHYPWRDN | CONF2_OTGPWRDN;
  70. omap_ctrl_writel(devconf2, AM35XX_CONTROL_DEVCONF2);
  71. }
  72. }
  73. void am35x_musb_clear_irq(void)
  74. {
  75. u32 regval;
  76. regval = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR);
  77. regval |= AM35XX_USBOTGSS_INT_CLR;
  78. omap_ctrl_writel(regval, AM35XX_CONTROL_LVL_INTR_CLEAR);
  79. regval = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR);
  80. }
  81. void am35x_set_mode(u8 musb_mode)
  82. {
  83. u32 devconf2 = omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2);
  84. devconf2 &= ~CONF2_OTGMODE;
  85. switch (musb_mode) {
  86. case MUSB_HOST: /* Force VBUS valid, ID = 0 */
  87. devconf2 |= CONF2_FORCE_HOST;
  88. break;
  89. case MUSB_PERIPHERAL: /* Force VBUS valid, ID = 1 */
  90. devconf2 |= CONF2_FORCE_DEVICE;
  91. break;
  92. case MUSB_OTG: /* Don't override the VBUS/ID comparators */
  93. devconf2 |= CONF2_NO_OVERRIDE;
  94. break;
  95. default:
  96. pr_info(KERN_INFO "Unsupported mode %u\n", musb_mode);
  97. }
  98. omap_ctrl_writel(devconf2, AM35XX_CONTROL_DEVCONF2);
  99. }
  100. void ti81xx_musb_phy_power(u8 on)
  101. {
  102. void __iomem *scm_base = NULL;
  103. u32 usbphycfg;
  104. scm_base = ioremap(TI81XX_SCM_BASE, SZ_2K);
  105. if (!scm_base) {
  106. pr_err("system control module ioremap failed\n");
  107. return;
  108. }
  109. usbphycfg = __raw_readl(scm_base + USBCTRL0);
  110. if (on) {
  111. if (cpu_is_ti816x()) {
  112. usbphycfg |= TI816X_USBPHY0_NORMAL_MODE;
  113. usbphycfg &= ~TI816X_USBPHY_REFCLK_OSC;
  114. } else if (cpu_is_ti814x()) {
  115. usbphycfg &= ~(USBPHY_CM_PWRDN | USBPHY_OTG_PWRDN
  116. | USBPHY_DPINPUT | USBPHY_DMINPUT);
  117. usbphycfg |= (USBPHY_OTGVDET_EN | USBPHY_OTGSESSEND_EN
  118. | USBPHY_DPOPBUFCTL | USBPHY_DMOPBUFCTL);
  119. }
  120. } else {
  121. if (cpu_is_ti816x())
  122. usbphycfg &= ~TI816X_USBPHY0_NORMAL_MODE;
  123. else if (cpu_is_ti814x())
  124. usbphycfg |= USBPHY_CM_PWRDN | USBPHY_OTG_PWRDN;
  125. }
  126. __raw_writel(usbphycfg, scm_base + USBCTRL0);
  127. iounmap(scm_base);
  128. }