Lines Matching defs:ohci

8  * [ uhci code and gregs ohci fragments ]
38 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
40 ohci->flags = OHCI_QUIRK_AMD756;
41 ohci_dbg (ohci, "AMD756 erratum 4 workaround\n");
53 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
55 ohci_dbg (ohci, "WARNING: OPTi workarounds unavailable\n");
72 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
74 ohci->flags |= OHCI_QUIRK_SUPERIO;
75 ohci_dbg (ohci, "Using NSC SuperIO setup\n");
88 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
90 ohci->flags |= OHCI_QUIRK_ZFMICRO;
91 ohci_dbg(ohci, "enabled Compaq ZFMicro chipset quirks\n");
101 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
109 ohci->flags |= OHCI_QUIRK_BE_MMIO;
110 ohci_dbg (ohci, "enabled big endian Toshiba quirk\n");
113 ohci_err (ohci, "unsupported big endian Toshiba quirk\n");
123 struct ohci_hcd *ohci = container_of(work, struct ohci_hcd, nec_work);
126 status = ohci_init(ohci);
128 ohci_err(ohci, "Restarting NEC controller failed in %s, %d\n",
133 status = ohci_restart(ohci);
135 ohci_err(ohci, "Restarting NEC controller failed in %s, %d\n",
141 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
143 ohci->flags |= OHCI_QUIRK_NEC;
144 INIT_WORK(&ohci->nec_work, ohci_quirk_nec_worker);
145 ohci_dbg (ohci, "enabled NEC chipset lost interrupt quirk\n");
152 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
157 ohci->flags |= OHCI_QUIRK_AMD_PLL;
168 ohci->flags |= OHCI_QUIRK_AMD_PREFETCH;
169 ohci_dbg(ohci, "enabled AMD prefetch quirk\n");
178 static void sb800_prefetch(struct ohci_hcd *ohci, int on)
183 pdev = to_pci_dev(ohci_to_hcd(ohci)->self.controller);
251 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
260 int (*quirk)(struct usb_hcd *ohci);
266 ohci_hcd_init (ohci);
267 return ohci_init (ohci);
275 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
287 ohci->hc_control |= OHCI_CTRL_RWC;
291 ret = ohci_run (ohci);
293 ohci_err (ohci, "can't start\n");
303 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
312 spin_lock_irqsave (&ohci->lock, flags);
313 if (ohci->rh_state != OHCI_RH_SUSPENDED) {
317 ohci_writel(ohci, OHCI_INTR_MIE, &ohci->regs->intrdisable);
318 (void)ohci_readl(ohci, &ohci->regs->intrdisable);
322 spin_unlock_irqrestore (&ohci->lock, flags);