Searched refs:ohci (Results 26 - 37 of 37) sorted by relevance

12

/drivers/usb/host/
H A Dohci-sa1111.c60 struct ohci_hcd *ohci = hcd_to_ohci(hcd); local
62 ohci_hcd_init(ohci);
63 return ohci_init(ohci);
68 struct ohci_hcd *ohci = hcd_to_ohci(hcd); local
71 ret = ohci_run(ohci);
73 ohci_err(ohci, "can't start\n");
250 .name = "sa1111-ohci",
H A Dohci-ssb.c24 struct ohci_hcd ohci; /* _must_ be at the beginning. */ member in struct:ssb_ohci_device
39 struct ohci_hcd *ohci = &ohcidev->ohci; local
42 ohci_hcd_init(ohci);
43 err = ohci_init(ohci);
51 struct ohci_hcd *ohci = &ohcidev->ohci; local
54 err = ohci_run(ohci);
56 ohci_err(ohci, "can't start\n");
64 .description = "ssb-usb-ohci",
[all...]
H A Dohci-pnx8550.c14 * Modified for LH7A404 from ohci-sa1111.c
17 * Modified for PNX8550 from ohci-sa1111.c and sa-omap.c
151 struct ohci_hcd *ohci = hcd_to_ohci (hcd); local
154 ohci_dbg (ohci, "ohci_pnx8550_start, ohci:%p", ohci);
156 if ((ret = ohci_init(ohci)) < 0)
159 if ((ret = ohci_run (ohci)) < 0) {
232 MODULE_ALIAS("platform:pnx8550-ohci");
236 .name = "pnx8550-ohci",
[all...]
H A Dohci-cns3xxx.c17 struct ohci_hcd *ohci = hcd_to_ohci(hcd); local
36 ret = ohci_init(ohci);
40 ohci->num_ports = 1;
42 ret = ohci_run(ohci);
157 MODULE_ALIAS("platform:cns3xxx-ohci");
163 .name = "cns3xxx-ohci",
H A Dohci-omap3.c2 * ohci-omap3.c - driver for OHCI on OMAP3 and later processors
12 * Based on ehci-omap.c and some other ohci glue layers
49 struct ohci_hcd *ohci = hcd_to_ohci(hcd); local
56 ohci->hc_control = OHCI_CTRL_RWC;
57 writel(OHCI_CTRL_RWC, &ohci->regs->control);
59 ret = ohci_run(ohci);
145 irq = platform_get_irq_byname(pdev, "ohci-irq");
152 IORESOURCE_MEM, "ohci");
238 .name = "ohci-omap3",
242 MODULE_ALIAS("platform:ohci
[all...]
H A Dohci-sm501.c9 * SM501 Bus Glue - based on ohci-omap.c
220 struct ohci_hcd *ohci = hcd_to_ohci(platform_get_drvdata(pdev)); local
222 if (time_before(jiffies, ohci->next_statechange))
224 ohci->next_statechange = jiffies;
234 struct ohci_hcd *ohci = hcd_to_ohci(hcd); local
236 if (time_before(jiffies, ohci->next_statechange))
238 ohci->next_statechange = jiffies;
H A Dohci-s3c2410.c13 * Modified for S3C2410 from ohci-sa1111.c, ohci-omap.c and ohci-lh7a40.c
414 struct ohci_hcd *ohci = hcd_to_ohci(hcd); local
417 ret = ohci_init(ohci);
421 ret = ohci_run(ohci);
493 struct ohci_hcd *ohci = hcd_to_ohci(hcd); local
504 spin_lock_irqsave(&ohci->lock, flags);
505 if (ohci->rh_state != OHCI_RH_SUSPENDED) {
514 spin_unlock_irqrestore(&ohci
[all...]
H A Dohci-jz4740.c39 struct ohci_hcd *ohci = hcd_to_ohci(hcd); local
42 ret = ohci_init(ohci);
46 ohci->num_ports = 1;
48 ret = ohci_run(ohci);
271 .name = "jz4740-ohci",
276 MODULE_ALIAS("platform:jz4740-ohci");
H A Dohci-at91.c10 * Based on ohci-omap.c
229 struct ohci_hcd *ohci = hcd_to_ohci (hcd); local
232 if ((ret = ohci_init(ohci)) < 0)
235 ohci->num_ports = board->ports;
242 struct ohci_hcd *ohci = hcd_to_ohci (hcd); local
245 if ((ret = ohci_run(ohci)) < 0) {
499 { .compatible = "atmel,at91rm9200-ohci" },
664 struct ohci_hcd *ohci = hcd_to_ohci(hcd); local
677 ohci_usb_reset (ohci);
679 (void) ohci_readl (ohci,
[all...]
H A Dohci-nxp.c271 struct ohci_hcd *ohci = hcd_to_ohci(hcd); local
274 if ((ret = ohci_init(ohci)) < 0)
277 if ((ret = ohci_run(ohci)) < 0) {
373 struct ohci_hcd *ohci; local
472 ohci = hcd_to_ohci(hcd);
473 ohci_hcd_init(ohci);
518 MODULE_ALIAS("platform:usb-ohci");
522 .name = "usb-ohci",
H A DMakefile30 obj-$(CONFIG_USB_OHCI_HCD) += ohci-hcd.o
/drivers/mfd/
H A Domap-usb-host.c34 #define OMAP_OHCI_DEVICE "ohci-omap3"
251 struct platform_device *ohci; local
285 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ohci");
293 res = platform_get_resource_byname(pdev, IORESOURCE_IRQ, "ohci-irq");
301 ohci = omap_usbhs_alloc_child(OMAP_OHCI_DEVICE, resources, 2, ohci_data,
303 if (!ohci) {
864 * init before ehci and ohci drivers;
866 * the omap ehci and ohci probe functions are called.

Completed in 145 milliseconds

12