ehci-ppc4xx.c 789 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * (C) Copyright 2010, Chris Zhang <chris@seamicro.com>
  3. *
  4. * Author: Chris Zhang <chris@seamicro.com>
  5. * This code is based on ehci freescale driver
  6. *
  7. * SPDX-License-Identifier: GPL-2.0+
  8. */
  9. #include <common.h>
  10. #include <usb.h>
  11. #include <asm/io.h>
  12. #include "ehci.h"
  13. /*
  14. * Create the appropriate control structures to manage
  15. * a new EHCI host controller.
  16. */
  17. int ehci_hcd_init(int index, enum usb_init_type init,
  18. struct ehci_hccr **hccr, struct ehci_hcor **hcor)
  19. {
  20. *hccr = (struct ehci_hccr *)(CONFIG_SYS_PPC4XX_USB_ADDR);
  21. *hcor = (struct ehci_hcor *)((uint32_t) *hccr +
  22. HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
  23. return 0;
  24. }
  25. /*
  26. * Destroy the appropriate control structures corresponding
  27. * the the EHCI host controller.
  28. */
  29. int ehci_hcd_stop(int index)
  30. {
  31. return 0;
  32. }