ehci-fsl.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * (C) Copyright 2009 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 "ehci.h"
  29. #include "ehci-core.h"
  30. /*
  31. * Create the appropriate control structures to manage
  32. * a new EHCI host controller.
  33. *
  34. * Excerpts from linux ehci fsl driver.
  35. */
  36. int ehci_hcd_init(void)
  37. {
  38. struct usb_ehci *ehci;
  39. ehci = (struct usb_ehci *)CONFIG_SYS_MPC8xxx_USB_ADDR;
  40. hccr = (struct ehci_hccr *)((uint32_t)&ehci->caplength);
  41. hcor = (struct ehci_hcor *)((uint32_t) hccr +
  42. HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
  43. /* Set to Host mode */
  44. setbits_le32(&ehci->usbmode, CM_HOST);
  45. out_be32(&ehci->snoop1, SNOOP_SIZE_2GB);
  46. out_be32(&ehci->snoop2, 0x80000000 | SNOOP_SIZE_2GB);
  47. /* Init phy */
  48. if (!strcmp(getenv("usb_phy_type"), "utmi"))
  49. out_le32(&(hcor->or_portsc[0]), PORT_PTS_UTMI);
  50. else
  51. out_le32(&(hcor->or_portsc[0]), PORT_PTS_ULPI);
  52. /* Enable interface. */
  53. setbits_be32(&ehci->control, USB_EN);
  54. out_be32(&ehci->prictrl, 0x0000000c);
  55. out_be32(&ehci->age_cnt_limit, 0x00000040);
  56. out_be32(&ehci->sictrl, 0x00000001);
  57. in_le32(&ehci->usbmode);
  58. return 0;
  59. }
  60. /*
  61. * Destroy the appropriate control structures corresponding
  62. * the the EHCI host controller.
  63. */
  64. int ehci_hcd_stop(void)
  65. {
  66. return 0;
  67. }