ehci-fsl.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*
  2. * (C) Copyright 2009, 2011 Freescale Semiconductor, Inc.
  3. *
  4. * (C) Copyright 2008, Excito Elektronik i Sk=E5ne AB
  5. *
  6. * Author: Tor Krill tor@excito.com
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  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., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. #include <common.h>
  24. #include <pci.h>
  25. #include <usb.h>
  26. #include <asm/io.h>
  27. #include <usb/ehci-fsl.h>
  28. #include <hwconfig.h>
  29. #include "ehci.h"
  30. /* Check USB PHY clock valid */
  31. static int usb_phy_clk_valid(struct usb_ehci *ehci)
  32. {
  33. if (!((in_be32(&ehci->control) & PHY_CLK_VALID) ||
  34. in_be32(&ehci->prictrl))) {
  35. printf("USB PHY clock invalid!\n");
  36. return 0;
  37. } else {
  38. return 1;
  39. }
  40. }
  41. /*
  42. * Create the appropriate control structures to manage
  43. * a new EHCI host controller.
  44. *
  45. * Excerpts from linux ehci fsl driver.
  46. */
  47. int ehci_hcd_init(int index, struct ehci_hccr **hccr, struct ehci_hcor **hcor)
  48. {
  49. struct usb_ehci *ehci;
  50. const char *phy_type = NULL;
  51. size_t len;
  52. #ifdef CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY
  53. char usb_phy[5];
  54. usb_phy[0] = '\0';
  55. #endif
  56. ehci = (struct usb_ehci *)CONFIG_SYS_FSL_USB_ADDR;
  57. *hccr = (struct ehci_hccr *)((uint32_t)&ehci->caplength);
  58. *hcor = (struct ehci_hcor *)((uint32_t) *hccr +
  59. HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
  60. /* Set to Host mode */
  61. setbits_le32(&ehci->usbmode, CM_HOST);
  62. out_be32(&ehci->snoop1, SNOOP_SIZE_2GB);
  63. out_be32(&ehci->snoop2, 0x80000000 | SNOOP_SIZE_2GB);
  64. /* Init phy */
  65. if (hwconfig_sub("usb1", "phy_type"))
  66. phy_type = hwconfig_subarg("usb1", "phy_type", &len);
  67. else
  68. phy_type = getenv("usb_phy_type");
  69. if (!phy_type) {
  70. #ifdef CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY
  71. /* if none specified assume internal UTMI */
  72. strcpy(usb_phy, "utmi");
  73. phy_type = usb_phy;
  74. #else
  75. printf("WARNING: USB phy type not defined !!\n");
  76. return -1;
  77. #endif
  78. }
  79. if (!strcmp(phy_type, "utmi")) {
  80. #if defined(CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY)
  81. setbits_be32(&ehci->control, PHY_CLK_SEL_UTMI);
  82. setbits_be32(&ehci->control, UTMI_PHY_EN);
  83. udelay(1000); /* delay required for PHY Clk to appear */
  84. #endif
  85. out_le32(&(*hcor)->or_portsc[0], PORT_PTS_UTMI);
  86. setbits_be32(&ehci->control, USB_EN);
  87. } else {
  88. setbits_be32(&ehci->control, PHY_CLK_SEL_ULPI);
  89. clrsetbits_be32(&ehci->control, UTMI_PHY_EN, USB_EN);
  90. udelay(1000); /* delay required for PHY Clk to appear */
  91. if (!usb_phy_clk_valid(ehci))
  92. return -EINVAL;
  93. out_le32(&(*hcor)->or_portsc[0], PORT_PTS_ULPI);
  94. }
  95. out_be32(&ehci->prictrl, 0x0000000c);
  96. out_be32(&ehci->age_cnt_limit, 0x00000040);
  97. out_be32(&ehci->sictrl, 0x00000001);
  98. in_le32(&ehci->usbmode);
  99. return 0;
  100. }
  101. /*
  102. * Destroy the appropriate control structures corresponding
  103. * the the EHCI host controller.
  104. */
  105. int ehci_hcd_stop(int index)
  106. {
  107. return 0;
  108. }