2 * Copyright (c) 2007-2008, Juniper Networks, Inc.
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
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.
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,
25 #include "usb_ehci_core.h"
27 #ifdef CONFIG_PCI_EHCI_DEVICE
28 static struct pci_device_id ehci_pci_ids[] = {
29 /* Please add supported PCI EHCI controller ids here */
35 * Create the appropriate control structures to manage
36 * a new EHCI host controller.
38 int ehci_hcd_init(void)
43 pdev = pci_find_devices(ehci_pci_ids, CONFIG_PCI_EHCI_DEVICE);
45 printf("EHCI host controller not found\n");
49 pci_read_config_dword(pdev, PCI_BASE_ADDRESS_0, &addr);
50 hccr = (struct ehci_hccr *)addr;
51 hcor = (struct ehci_hcor *)((uint32_t) hccr +
52 HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
58 * Destroy the appropriate control structures corresponding
59 * the the EHCI host controller.
61 int ehci_hcd_stop(void)