ehci-pci.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*-
  2. * Copyright (c) 2007-2008, Juniper Networks, Inc.
  3. * All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation version 2 of
  8. * the License.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  18. * MA 02111-1307 USA
  19. */
  20. #include <common.h>
  21. #include <pci.h>
  22. #include <usb.h>
  23. #include "ehci.h"
  24. #include "ehci-core.h"
  25. #ifdef CONFIG_PCI_EHCI_DEVICE
  26. static struct pci_device_id ehci_pci_ids[] = {
  27. /* Please add supported PCI EHCI controller ids here */
  28. {0, 0}
  29. };
  30. #endif
  31. /*
  32. * Create the appropriate control structures to manage
  33. * a new EHCI host controller.
  34. */
  35. int ehci_hcd_init(void)
  36. {
  37. pci_dev_t pdev;
  38. uint32_t addr;
  39. pdev = pci_find_devices(ehci_pci_ids, CONFIG_PCI_EHCI_DEVICE);
  40. if (pdev == -1) {
  41. printf("EHCI host controller not found\n");
  42. return -1;
  43. }
  44. pci_read_config_dword(pdev, PCI_BASE_ADDRESS_0, &addr);
  45. hccr = (struct ehci_hccr *)addr;
  46. hcor = (struct ehci_hcor *)((uint32_t) hccr +
  47. HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
  48. return 0;
  49. }
  50. /*
  51. * Destroy the appropriate control structures corresponding
  52. * the the EHCI host controller.
  53. */
  54. int ehci_hcd_stop(void)
  55. {
  56. return 0;
  57. }