2 * OHCI HCD (Host Controller Driver) for USB.
4 * Copyright (C) 2008 Renesas Solutions Corp.
6 * Author : Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
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.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 #include <linux/platform_device.h>
25 static int ohci_sh_start(struct usb_hcd
*hcd
)
27 struct ohci_hcd
*ohci
= hcd_to_ohci(hcd
);
35 static const struct hc_driver ohci_sh_hc_driver
= {
36 .description
= hcd_name
,
37 .product_desc
= "SuperH OHCI",
38 .hcd_priv_size
= sizeof(struct ohci_hcd
),
41 * generic hardware linkage
44 .flags
= HCD_USB11
| HCD_MEMORY
,
47 * basic lifecycle operations
49 .start
= ohci_sh_start
,
51 .shutdown
= ohci_shutdown
,
54 * managing i/o requests and associated device resources
56 .urb_enqueue
= ohci_urb_enqueue
,
57 .urb_dequeue
= ohci_urb_dequeue
,
58 .endpoint_disable
= ohci_endpoint_disable
,
63 .get_frame_number
= ohci_get_frame
,
68 .hub_status_data
= ohci_hub_status_data
,
69 .hub_control
= ohci_hub_control
,
71 .bus_suspend
= ohci_bus_suspend
,
72 .bus_resume
= ohci_bus_resume
,
74 .start_port_reset
= ohci_start_port_reset
,
77 /*-------------------------------------------------------------------------*/
79 static int ohci_hcd_sh_probe(struct platform_device
*pdev
)
81 struct resource
*res
= NULL
;
82 struct usb_hcd
*hcd
= NULL
;
89 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
91 err("platform_get_resource error.");
95 irq
= platform_get_irq(pdev
, 0);
97 err("platform_get_irq error.");
102 hcd
= usb_create_hcd(&ohci_sh_hc_driver
, &pdev
->dev
, (char *)hcd_name
);
104 err("Failed to create hcd");
108 hcd
->regs
= (void __iomem
*)res
->start
;
109 hcd
->rsrc_start
= res
->start
;
110 hcd
->rsrc_len
= resource_size(res
);
111 ret
= usb_add_hcd(hcd
, irq
, IRQF_SHARED
);
113 err("Failed to add hcd");
121 static int ohci_hcd_sh_remove(struct platform_device
*pdev
)
123 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
131 static struct platform_driver ohci_hcd_sh_driver
= {
132 .probe
= ohci_hcd_sh_probe
,
133 .remove
= ohci_hcd_sh_remove
,
134 .shutdown
= usb_hcd_platform_shutdown
,
137 .owner
= THIS_MODULE
,
141 MODULE_ALIAS("platform:sh_ohci");