ehci-exynos.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /*
  2. * SAMSUNG EXYNOS USB HOST EHCI Controller
  3. *
  4. * Copyright (C) 2012 Samsung Electronics Co.Ltd
  5. * Vivek Gautam <gautam.vivek@samsung.com>
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (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., 51 Franklin Street, Fifth Floor, Boston,
  20. * MA 02110-1301 USA
  21. */
  22. #include <common.h>
  23. #include <usb.h>
  24. #include <asm/arch/cpu.h>
  25. #include <asm/arch/ehci.h>
  26. #include <asm/arch/system.h>
  27. #include <asm/arch/power.h>
  28. #include "ehci.h"
  29. /* Setup the EHCI host controller. */
  30. static void setup_usb_phy(struct exynos_usb_phy *usb)
  31. {
  32. set_usbhost_mode(USB20_PHY_CFG_HOST_LINK_EN);
  33. set_usbhost_phy_ctrl(POWER_USB_HOST_PHY_CTRL_EN);
  34. clrbits_le32(&usb->usbphyctrl0,
  35. HOST_CTRL0_FSEL_MASK |
  36. HOST_CTRL0_COMMONON_N |
  37. /* HOST Phy setting */
  38. HOST_CTRL0_PHYSWRST |
  39. HOST_CTRL0_PHYSWRSTALL |
  40. HOST_CTRL0_SIDDQ |
  41. HOST_CTRL0_FORCESUSPEND |
  42. HOST_CTRL0_FORCESLEEP);
  43. setbits_le32(&usb->usbphyctrl0,
  44. /* Setting up the ref freq */
  45. (CLK_24MHZ << 16) |
  46. /* HOST Phy setting */
  47. HOST_CTRL0_LINKSWRST |
  48. HOST_CTRL0_UTMISWRST);
  49. udelay(10);
  50. clrbits_le32(&usb->usbphyctrl0,
  51. HOST_CTRL0_LINKSWRST |
  52. HOST_CTRL0_UTMISWRST);
  53. udelay(20);
  54. /* EHCI Ctrl setting */
  55. setbits_le32(&usb->ehcictrl,
  56. EHCICTRL_ENAINCRXALIGN |
  57. EHCICTRL_ENAINCR4 |
  58. EHCICTRL_ENAINCR8 |
  59. EHCICTRL_ENAINCR16);
  60. }
  61. /* Reset the EHCI host controller. */
  62. static void reset_usb_phy(struct exynos_usb_phy *usb)
  63. {
  64. /* HOST_PHY reset */
  65. setbits_le32(&usb->usbphyctrl0,
  66. HOST_CTRL0_PHYSWRST |
  67. HOST_CTRL0_PHYSWRSTALL |
  68. HOST_CTRL0_SIDDQ |
  69. HOST_CTRL0_FORCESUSPEND |
  70. HOST_CTRL0_FORCESLEEP);
  71. set_usbhost_phy_ctrl(POWER_USB_HOST_PHY_CTRL_DISABLE);
  72. }
  73. /*
  74. * EHCI-initialization
  75. * Create the appropriate control structures to manage
  76. * a new EHCI host controller.
  77. */
  78. int ehci_hcd_init(int index, struct ehci_hccr **hccr, struct ehci_hcor **hcor)
  79. {
  80. struct exynos_usb_phy *usb;
  81. usb = (struct exynos_usb_phy *)samsung_get_base_usb_phy();
  82. setup_usb_phy(usb);
  83. *hccr = (struct ehci_hccr *)samsung_get_base_usb_ehci();
  84. *hcor = (struct ehci_hcor *)((uint32_t) *hccr
  85. + HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
  86. debug("Exynos5-ehci: init hccr %x and hcor %x hc_length %d\n",
  87. (uint32_t)*hccr, (uint32_t)*hcor,
  88. (uint32_t)HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
  89. return 0;
  90. }
  91. /*
  92. * Destroy the appropriate control structures corresponding
  93. * the EHCI host controller.
  94. */
  95. int ehci_hcd_stop(int index)
  96. {
  97. struct exynos_usb_phy *usb;
  98. usb = (struct exynos_usb_phy *)samsung_get_base_usb_phy();
  99. reset_usb_phy(usb);
  100. return 0;
  101. }