2 * drivers/usb/host/ehci-vt8500.c
4 * Copyright (C) 2010 Alexey Charkov <alchark@gmail.com>
6 * Based on ehci-au1xxx.c
8 * This software is licensed under the terms of the GNU General Public
9 * License version 2, as published by the Free Software Foundation, and
10 * may be copied, distributed, and modified under those terms.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
19 #include <linux/platform_device.h>
21 static int ehci_update_device(struct usb_hcd
*hcd
, struct usb_device
*udev
)
23 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
26 if (!udev
->parent
) /* udev is root hub itself, impossible */
28 /* we only support lpm device connected to root hub yet */
29 if (ehci
->has_lpm
&& !udev
->parent
->parent
) {
30 rc
= ehci_lpm_set_da(ehci
, udev
->devnum
, udev
->portnum
);
32 rc
= ehci_lpm_check(ehci
, udev
->portnum
);
37 static const struct hc_driver vt8500_ehci_hc_driver
= {
38 .description
= hcd_name
,
39 .product_desc
= "VT8500 EHCI",
40 .hcd_priv_size
= sizeof(struct ehci_hcd
),
43 * generic hardware linkage
46 .flags
= HCD_MEMORY
| HCD_USB2
,
49 * basic lifecycle operations
54 .shutdown
= ehci_shutdown
,
57 * managing i/o requests and associated device resources
59 .urb_enqueue
= ehci_urb_enqueue
,
60 .urb_dequeue
= ehci_urb_dequeue
,
61 .endpoint_disable
= ehci_endpoint_disable
,
62 .endpoint_reset
= ehci_endpoint_reset
,
67 .get_frame_number
= ehci_get_frame
,
72 .hub_status_data
= ehci_hub_status_data
,
73 .hub_control
= ehci_hub_control
,
74 .bus_suspend
= ehci_bus_suspend
,
75 .bus_resume
= ehci_bus_resume
,
76 .relinquish_port
= ehci_relinquish_port
,
77 .port_handed_over
= ehci_port_handed_over
,
80 * call back when device connected and addressed
82 .update_device
= ehci_update_device
,
84 .clear_tt_buffer_complete
= ehci_clear_tt_buffer_complete
,
87 static int vt8500_ehci_drv_probe(struct platform_device
*pdev
)
90 struct ehci_hcd
*ehci
;
97 if (pdev
->resource
[1].flags
!= IORESOURCE_IRQ
) {
98 pr_debug("resource[1] is not IORESOURCE_IRQ");
101 hcd
= usb_create_hcd(&vt8500_ehci_hc_driver
, &pdev
->dev
, "VT8500");
105 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
106 hcd
->rsrc_start
= res
->start
;
107 hcd
->rsrc_len
= resource_size(res
);
109 if (!request_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
, hcd_name
)) {
110 pr_debug("request_mem_region failed");
115 hcd
->regs
= ioremap(hcd
->rsrc_start
, hcd
->rsrc_len
);
117 pr_debug("ioremap failed");
122 ehci
= hcd_to_ehci(hcd
);
123 ehci
->caps
= hcd
->regs
;
124 ehci
->regs
= hcd
->regs
+
125 HC_LENGTH(ehci
, readl(&ehci
->caps
->hc_capbase
));
127 dbg_hcs_params(ehci
, "reset");
128 dbg_hcc_params(ehci
, "reset");
130 /* cache this readonly data; minimize chip reads */
131 ehci
->hcs_params
= readl(&ehci
->caps
->hcs_params
);
133 ehci_port_power(ehci
, 1);
135 ret
= usb_add_hcd(hcd
, pdev
->resource
[1].start
,
136 IRQF_DISABLED
| IRQF_SHARED
);
138 platform_set_drvdata(pdev
, hcd
);
144 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
150 static int vt8500_ehci_drv_remove(struct platform_device
*pdev
)
152 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
156 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
158 platform_set_drvdata(pdev
, NULL
);
163 static struct platform_driver vt8500_ehci_driver
= {
164 .probe
= vt8500_ehci_drv_probe
,
165 .remove
= vt8500_ehci_drv_remove
,
166 .shutdown
= usb_hcd_platform_shutdown
,
168 .name
= "vt8500-ehci",
169 .owner
= THIS_MODULE
,
173 MODULE_ALIAS("platform:vt8500-ehci");