ehci-mxs.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /*
  2. * Freescale i.MX28 USB Host driver
  3. *
  4. * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
  5. * on behalf of DENX Software Engineering GmbH
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. #include <common.h>
  22. #include <asm/io.h>
  23. #include <asm/arch/imx-regs.h>
  24. #include "ehci.h"
  25. #if (CONFIG_EHCI_MXS_PORT != 0) && (CONFIG_EHCI_MXS_PORT != 1)
  26. #error "MXS EHCI: Invalid port selected!"
  27. #endif
  28. #ifndef CONFIG_EHCI_MXS_PORT
  29. #error "MXS EHCI: Please define correct port using CONFIG_EHCI_MXS_PORT!"
  30. #endif
  31. static struct ehci_mxs {
  32. struct mxs_usb_regs *usb_regs;
  33. struct mxs_usbphy_regs *phy_regs;
  34. } ehci_mxs;
  35. int mxs_ehci_get_port(struct ehci_mxs *mxs_usb, int port)
  36. {
  37. uint32_t usb_base, phy_base;
  38. switch (port) {
  39. case 0:
  40. usb_base = MXS_USBCTRL0_BASE;
  41. phy_base = MXS_USBPHY0_BASE;
  42. break;
  43. case 1:
  44. usb_base = MXS_USBCTRL1_BASE;
  45. phy_base = MXS_USBPHY1_BASE;
  46. break;
  47. default:
  48. printf("CONFIG_EHCI_MXS_PORT (port = %d)\n", port);
  49. return -1;
  50. }
  51. mxs_usb->usb_regs = (struct mxs_usb_regs *)usb_base;
  52. mxs_usb->phy_regs = (struct mxs_usbphy_regs *)phy_base;
  53. return 0;
  54. }
  55. /* This DIGCTL register ungates clock to USB */
  56. #define HW_DIGCTL_CTRL 0x8001c000
  57. #define HW_DIGCTL_CTRL_USB0_CLKGATE (1 << 2)
  58. #define HW_DIGCTL_CTRL_USB1_CLKGATE (1 << 16)
  59. int ehci_hcd_init(int index, struct ehci_hccr **hccr, struct ehci_hcor **hcor)
  60. {
  61. int ret;
  62. uint32_t usb_base, cap_base;
  63. struct mxs_register_32 *digctl_ctrl =
  64. (struct mxs_register_32 *)HW_DIGCTL_CTRL;
  65. struct mxs_clkctrl_regs *clkctrl_regs =
  66. (struct mxs_clkctrl_regs *)MXS_CLKCTRL_BASE;
  67. ret = mxs_ehci_get_port(&ehci_mxs, CONFIG_EHCI_MXS_PORT);
  68. if (ret)
  69. return ret;
  70. /* Reset the PHY block */
  71. writel(USBPHY_CTRL_SFTRST, &ehci_mxs.phy_regs->hw_usbphy_ctrl_set);
  72. udelay(10);
  73. writel(USBPHY_CTRL_SFTRST | USBPHY_CTRL_CLKGATE,
  74. &ehci_mxs.phy_regs->hw_usbphy_ctrl_clr);
  75. /* Enable USB clock */
  76. writel(CLKCTRL_PLL0CTRL0_EN_USB_CLKS | CLKCTRL_PLL0CTRL0_POWER,
  77. &clkctrl_regs->hw_clkctrl_pll0ctrl0_set);
  78. writel(CLKCTRL_PLL1CTRL0_EN_USB_CLKS | CLKCTRL_PLL1CTRL0_POWER,
  79. &clkctrl_regs->hw_clkctrl_pll1ctrl0_set);
  80. writel(HW_DIGCTL_CTRL_USB0_CLKGATE | HW_DIGCTL_CTRL_USB1_CLKGATE,
  81. &digctl_ctrl->reg_clr);
  82. /* Start USB PHY */
  83. writel(0, &ehci_mxs.phy_regs->hw_usbphy_pwd);
  84. /* Enable UTMI+ Level 2 and Level 3 compatibility */
  85. writel(USBPHY_CTRL_ENUTMILEVEL3 | USBPHY_CTRL_ENUTMILEVEL2 | 1,
  86. &ehci_mxs.phy_regs->hw_usbphy_ctrl_set);
  87. usb_base = ((uint32_t)ehci_mxs.usb_regs) + 0x100;
  88. *hccr = (struct ehci_hccr *)usb_base;
  89. cap_base = ehci_readl(&(*hccr)->cr_capbase);
  90. *hcor = (struct ehci_hcor *)(usb_base + HC_LENGTH(cap_base));
  91. return 0;
  92. }
  93. int ehci_hcd_stop(int index)
  94. {
  95. int ret;
  96. uint32_t usb_base, cap_base, tmp;
  97. struct mxs_register_32 *digctl_ctrl =
  98. (struct mxs_register_32 *)HW_DIGCTL_CTRL;
  99. struct mxs_clkctrl_regs *clkctrl_regs =
  100. (struct mxs_clkctrl_regs *)MXS_CLKCTRL_BASE;
  101. struct ehci_hccr *hccr;
  102. struct ehci_hcor *hcor;
  103. ret = mxs_ehci_get_port(&ehci_mxs, CONFIG_EHCI_MXS_PORT);
  104. if (ret)
  105. return ret;
  106. /* Stop the USB port */
  107. usb_base = ((uint32_t)ehci_mxs.usb_regs) + 0x100;
  108. hccr = (struct ehci_hccr *)usb_base;
  109. cap_base = ehci_readl(&hccr->cr_capbase);
  110. hcor = (struct ehci_hcor *)(usb_base + HC_LENGTH(cap_base));
  111. tmp = ehci_readl(&hcor->or_usbcmd);
  112. tmp &= ~CMD_RUN;
  113. ehci_writel(tmp, &hcor->or_usbcmd);
  114. /* Disable the PHY */
  115. tmp = USBPHY_PWD_RXPWDRX | USBPHY_PWD_RXPWDDIFF |
  116. USBPHY_PWD_RXPWD1PT1 | USBPHY_PWD_RXPWDENV |
  117. USBPHY_PWD_TXPWDV2I | USBPHY_PWD_TXPWDIBIAS |
  118. USBPHY_PWD_TXPWDFS;
  119. writel(tmp, &ehci_mxs.phy_regs->hw_usbphy_pwd);
  120. /* Disable USB clock */
  121. writel(CLKCTRL_PLL0CTRL0_EN_USB_CLKS,
  122. &clkctrl_regs->hw_clkctrl_pll0ctrl0_clr);
  123. writel(CLKCTRL_PLL1CTRL0_EN_USB_CLKS,
  124. &clkctrl_regs->hw_clkctrl_pll1ctrl0_clr);
  125. /* Gate off the USB clock */
  126. writel(HW_DIGCTL_CTRL_USB0_CLKGATE | HW_DIGCTL_CTRL_USB1_CLKGATE,
  127. &digctl_ctrl->reg_set);
  128. return 0;
  129. }