2 * IXP4XX EHCI Host Controller Driver
4 * Author: Vladimir Barinov <vbarinov@embeddedalley.com>
6 * Based on "ehci-fsl.c" by Randy Vinson <rvinson@mvista.com>
8 * 2007 (c) MontaVista Software, Inc. This file is licensed under
9 * the terms of the GNU General Public License version 2. This program
10 * is licensed "as is" without any warranty of any kind, whether express
14 #include <linux/platform_device.h>
16 static int ixp4xx_ehci_init(struct usb_hcd *hcd)
18 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
21 ehci->big_endian_desc = 1;
22 ehci->big_endian_mmio = 1;
24 ehci->caps = hcd->regs + 0x100;
25 ehci->regs = hcd->regs + 0x100
26 + HC_LENGTH(ehci_readl(ehci, &ehci->caps->hc_capbase));
27 ehci->hcs_params = ehci_readl(ehci, &ehci->caps->hcs_params);
32 retval = ehci_init(hcd);
36 ehci_port_power(ehci, 0);
41 static const struct hc_driver ixp4xx_ehci_hc_driver = {
42 .description = hcd_name,
43 .product_desc = "IXP4XX EHCI Host Controller",
44 .hcd_priv_size = sizeof(struct ehci_hcd),
46 .flags = HCD_MEMORY | HCD_USB2,
47 .reset = ixp4xx_ehci_init,
50 .shutdown = ehci_shutdown,
51 .urb_enqueue = ehci_urb_enqueue,
52 .urb_dequeue = ehci_urb_dequeue,
53 .endpoint_disable = ehci_endpoint_disable,
54 .get_frame_number = ehci_get_frame,
55 .hub_status_data = ehci_hub_status_data,
56 .hub_control = ehci_hub_control,
57 #if defined(CONFIG_PM)
58 .bus_suspend = ehci_bus_suspend,
59 .bus_resume = ehci_bus_resume,
61 .relinquish_port = ehci_relinquish_port,
62 .port_handed_over = ehci_port_handed_over,
65 static int ixp4xx_ehci_probe(struct platform_device *pdev)
68 const struct hc_driver *driver = &ixp4xx_ehci_hc_driver;
76 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
79 "Found HC with no IRQ. Check %s setup!\n",
80 dev_name(&pdev->dev));
85 hcd = usb_create_hcd(driver, &pdev->dev, dev_name(&pdev->dev));
91 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
94 "Found HC with no register addr. Check %s setup!\n",
95 dev_name(&pdev->dev));
97 goto fail_request_resource;
99 hcd->rsrc_start = res->start;
100 hcd->rsrc_len = res->end - res->start + 1;
102 if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len,
103 driver->description)) {
104 dev_dbg(&pdev->dev, "controller already in use\n");
106 goto fail_request_resource;
109 hcd->regs = ioremap_nocache(hcd->rsrc_start, hcd->rsrc_len);
110 if (hcd->regs == NULL) {
111 dev_dbg(&pdev->dev, "error mapping memory\n");
116 retval = usb_add_hcd(hcd, irq, IRQF_SHARED);
125 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
126 fail_request_resource:
129 dev_err(&pdev->dev, "init %s fail, %d\n", dev_name(&pdev->dev), retval);
133 static int ixp4xx_ehci_remove(struct platform_device *pdev)
135 struct usb_hcd *hcd = platform_get_drvdata(pdev);
139 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
145 MODULE_ALIAS("platform:ixp4xx-ehci");
147 static struct platform_driver ixp4xx_ehci_driver = {
148 .probe = ixp4xx_ehci_probe,
149 .remove = ixp4xx_ehci_remove,
151 .name = "ixp4xx-ehci",