ehci-mx6.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. /*
  2. * Copyright (c) 2009 Daniel Mack <daniel@caiaq.de>
  3. * Copyright (C) 2010 Freescale Semiconductor, Inc.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License as published by the
  7. * Free Software Foundation; either version 2 of the License, or (at your
  8. * option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  12. * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  13. * for more details.
  14. */
  15. #include <common.h>
  16. #include <usb.h>
  17. #include <errno.h>
  18. #include <linux/compiler.h>
  19. #include <usb/ehci-fsl.h>
  20. #include <asm/io.h>
  21. #include <asm/arch/imx-regs.h>
  22. #include <asm/arch/clock.h>
  23. #include <asm/arch/mx6x_pins.h>
  24. #include <asm/imx-common/iomux-v3.h>
  25. #include "ehci.h"
  26. #include "ehci-core.h"
  27. #define USB_OTGREGS_OFFSET 0x000
  28. #define USB_H1REGS_OFFSET 0x200
  29. #define USB_H2REGS_OFFSET 0x400
  30. #define USB_H3REGS_OFFSET 0x600
  31. #define USB_OTHERREGS_OFFSET 0x800
  32. #define USB_H1_CTRL_OFFSET 0x04
  33. #define USBPHY_CTRL 0x00000030
  34. #define USBPHY_CTRL_SET 0x00000034
  35. #define USBPHY_CTRL_CLR 0x00000038
  36. #define USBPHY_CTRL_TOG 0x0000003c
  37. #define USBPHY_PWD 0x00000000
  38. #define USBPHY_CTRL_SFTRST 0x80000000
  39. #define USBPHY_CTRL_CLKGATE 0x40000000
  40. #define USBPHY_CTRL_ENUTMILEVEL3 0x00008000
  41. #define USBPHY_CTRL_ENUTMILEVEL2 0x00004000
  42. #define ANADIG_USB2_CHRG_DETECT_EN_B 0x00100000
  43. #define ANADIG_USB2_CHRG_DETECT_CHK_CHRG_B 0x00080000
  44. #define ANADIG_USB2_PLL_480_CTRL_BYPASS 0x00010000
  45. #define ANADIG_USB2_PLL_480_CTRL_ENABLE 0x00002000
  46. #define ANADIG_USB2_PLL_480_CTRL_POWER 0x00001000
  47. #define ANADIG_USB2_PLL_480_CTRL_EN_USB_CLKS 0x00000040
  48. #define UCTRL_OVER_CUR_POL (1 << 8) /* OTG Polarity of Overcurrent */
  49. #define UCTRL_OVER_CUR_DIS (1 << 7) /* Disable OTG Overcurrent Detection */
  50. /* USBCMD */
  51. #define UH1_USBCMD_OFFSET 0x140
  52. #define UCMD_RUN_STOP (1 << 0) /* controller run/stop */
  53. #define UCMD_RESET (1 << 1) /* controller reset */
  54. static void usbh1_internal_phy_clock_gate(int on)
  55. {
  56. void __iomem *phy_reg = (void __iomem *)USB_PHY1_BASE_ADDR;
  57. phy_reg += on ? USBPHY_CTRL_CLR : USBPHY_CTRL_SET;
  58. __raw_writel(USBPHY_CTRL_CLKGATE, phy_reg);
  59. }
  60. static void usbh1_power_config(void)
  61. {
  62. struct anatop_regs __iomem *anatop =
  63. (struct anatop_regs __iomem *)ANATOP_BASE_ADDR;
  64. /*
  65. * Some phy and power's special controls for host1
  66. * 1. The external charger detector needs to be disabled
  67. * or the signal at DP will be poor
  68. * 2. The PLL's power and output to usb for host 1
  69. * is totally controlled by IC, so the Software only needs
  70. * to enable them at initializtion.
  71. */
  72. __raw_writel(ANADIG_USB2_CHRG_DETECT_EN_B |
  73. ANADIG_USB2_CHRG_DETECT_CHK_CHRG_B,
  74. &anatop->usb2_chrg_detect);
  75. __raw_writel(ANADIG_USB2_PLL_480_CTRL_BYPASS,
  76. &anatop->usb2_pll_480_ctrl_clr);
  77. __raw_writel(ANADIG_USB2_PLL_480_CTRL_ENABLE |
  78. ANADIG_USB2_PLL_480_CTRL_POWER |
  79. ANADIG_USB2_PLL_480_CTRL_EN_USB_CLKS,
  80. &anatop->usb2_pll_480_ctrl_set);
  81. }
  82. static int usbh1_phy_enable(void)
  83. {
  84. void __iomem *phy_reg = (void __iomem *)USB_PHY1_BASE_ADDR;
  85. void __iomem *phy_ctrl = (void __iomem *)(phy_reg + USBPHY_CTRL);
  86. void __iomem *usb_cmd = (void __iomem *)(USBOH3_USB_BASE_ADDR +
  87. USB_H1REGS_OFFSET +
  88. UH1_USBCMD_OFFSET);
  89. u32 val;
  90. /* Stop then Reset */
  91. val = __raw_readl(usb_cmd);
  92. val &= ~UCMD_RUN_STOP;
  93. __raw_writel(val, usb_cmd);
  94. while (__raw_readl(usb_cmd) & UCMD_RUN_STOP)
  95. ;
  96. val = __raw_readl(usb_cmd);
  97. val |= UCMD_RESET;
  98. __raw_writel(val, usb_cmd);
  99. while (__raw_readl(usb_cmd) & UCMD_RESET)
  100. ;
  101. /* Reset USBPHY module */
  102. val = __raw_readl(phy_ctrl);
  103. val |= USBPHY_CTRL_SFTRST;
  104. __raw_writel(val, phy_ctrl);
  105. udelay(10);
  106. /* Remove CLKGATE and SFTRST */
  107. val = __raw_readl(phy_ctrl);
  108. val &= ~(USBPHY_CTRL_CLKGATE | USBPHY_CTRL_SFTRST);
  109. __raw_writel(val, phy_ctrl);
  110. udelay(10);
  111. /* Power up the PHY */
  112. __raw_writel(0, phy_reg + USBPHY_PWD);
  113. /* enable FS/LS device */
  114. val = __raw_readl(phy_reg + USBPHY_CTRL);
  115. val |= (USBPHY_CTRL_ENUTMILEVEL2 | USBPHY_CTRL_ENUTMILEVEL3);
  116. __raw_writel(val, phy_reg + USBPHY_CTRL);
  117. return 0;
  118. }
  119. static void usbh1_oc_config(void)
  120. {
  121. void __iomem *usb_base = (void __iomem *)USBOH3_USB_BASE_ADDR;
  122. void __iomem *usbother_base = usb_base + USB_OTHERREGS_OFFSET;
  123. u32 val;
  124. val = __raw_readl(usbother_base + USB_H1_CTRL_OFFSET);
  125. #if CONFIG_MACH_TYPE == MACH_TYPE_MX6Q_ARM2
  126. /* mx6qarm2 seems to required a different setting*/
  127. val &= ~UCTRL_OVER_CUR_POL;
  128. #else
  129. val |= UCTRL_OVER_CUR_POL;
  130. #endif
  131. __raw_writel(val, usbother_base + USB_H1_CTRL_OFFSET);
  132. val = __raw_readl(usbother_base + USB_H1_CTRL_OFFSET);
  133. val |= UCTRL_OVER_CUR_DIS;
  134. __raw_writel(val, usbother_base + USB_H1_CTRL_OFFSET);
  135. }
  136. int ehci_hcd_init(void)
  137. {
  138. struct usb_ehci *ehci;
  139. enable_usboh3_clk(1);
  140. mdelay(1);
  141. /* Do board specific initialization */
  142. board_ehci_hcd_init(CONFIG_MXC_USB_PORT);
  143. #if CONFIG_MXC_USB_PORT == 1
  144. /* USB Host 1 */
  145. usbh1_power_config();
  146. usbh1_oc_config();
  147. usbh1_internal_phy_clock_gate(1);
  148. usbh1_phy_enable();
  149. #else
  150. #error "MXC USB port not yet supported"
  151. #endif
  152. ehci = (struct usb_ehci *)(USBOH3_USB_BASE_ADDR +
  153. (0x200 * CONFIG_MXC_USB_PORT));
  154. hccr = (struct ehci_hccr *)((uint32_t)&ehci->caplength);
  155. hcor = (struct ehci_hcor *)((uint32_t)hccr +
  156. HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
  157. setbits_le32(&ehci->usbmode, CM_HOST);
  158. __raw_writel(CONFIG_MXC_USB_PORTSC, &ehci->portsc);
  159. setbits_le32(&ehci->portsc, USB_EN);
  160. mdelay(10);
  161. return 0;
  162. }
  163. int ehci_hcd_stop(void)
  164. {
  165. return 0;
  166. }