/linux-4.4.14/drivers/usb/host/ |
H A D | ohci-hub.c | 52 ohci->hc_control = ohci_readl (ohci, &ohci->regs->control); 59 (void) ohci_readl (ohci, &ohci->regs->control); variable 78 ohci->hc_control = ohci_readl (ohci, &ohci->regs->control); 104 temp = ohci_readl(ohci, portstat); 126 (void) ohci_readl (ohci, &ohci->regs->control); variable 158 ohci->hc_control = ohci_readl (ohci, &ohci->regs->control); 176 (void) ohci_readl (ohci, &ohci->regs->control); variable 214 temp = ohci_readl (ohci, &ohci->regs->control); 246 (void) ohci_readl (ohci, &ohci->regs->control); variable 255 (void) ohci_readl (ohci, &ohci->regs->control); variable 293 (void) ohci_readl (ohci, &ohci->regs->control); variable 351 rhsc_enable = ohci_readl(ohci, &ohci->regs->intrenable) & ohci_root_hub_state_changes() 441 if (ohci_readl(ohci, &ohci->regs->intrenable) & OHCI_INTR_RHSC) ohci_root_hub_state_changes() 478 ohci_readl (ohci, &ohci->regs->roothub.a) & RH_A_NDP); ohci_hub_status_data() 495 rhsc_status = ohci_readl(ohci, &ohci->regs->intrstatus) & ohci_hub_status_data() 584 status = ohci_readl(ohci, &ohci->regs->roothub.portstatus [port]); ohci_start_port_reset() 618 u16 now = ohci_readl(ohci, &ohci->regs->fmnumber); root_port_reset() 632 temp = ohci_readl (ohci, portstat); root_port_reset() 660 now = ohci_readl(ohci, &ohci->regs->fmnumber); root_port_reset() 733 // ohci_readl (ohci, &ohci->regs->roothub.portstatus [wIndex]); ohci_hub_control()
|
H A D | ohci-dbg.c | 105 temp = ohci_readl (controller, ®s->revision) & 0xff; ohci_dump_status() 112 temp = ohci_readl (controller, ®s->control); ohci_dump_status() 127 temp = ohci_readl (controller, ®s->cmdstatus); ohci_dump_status() 138 ohci_readl (controller, ®s->intrstatus), ohci_dump_status() 141 ohci_readl (controller, ®s->intrenable), ohci_dump_status() 146 ohci_readl (controller, ®s->ed_periodcurrent), ohci_dump_status() 150 ohci_readl (controller, ®s->ed_controlhead), ohci_dump_status() 153 ohci_readl (controller, ®s->ed_controlcurrent), ohci_dump_status() 157 ohci_readl (controller, ®s->ed_bulkhead), ohci_dump_status() 160 ohci_readl (controller, ®s->ed_bulkcurrent), ohci_dump_status() 164 ohci_readl (controller, ®s->donehead), next, size); ohci_dump_status() 623 rdata = ohci_readl (ohci, ®s->fminterval); fill_registers_buffer() 631 rdata = ohci_readl (ohci, ®s->fmremaining); fill_registers_buffer() 638 rdata = ohci_readl (ohci, ®s->periodicstart); fill_registers_buffer() 644 rdata = ohci_readl (ohci, ®s->lsthresh); fill_registers_buffer()
|
H A D | ohci-hcd.c | 408 ohci->hc_control = ohci_readl (ohci, &ohci->regs->control); ohci_usb_reset() 428 ohci_readl(ohci, &ohci->regs->cmdstatus); /* flush the writes */ ohci_shutdown() 461 if (!no_handshake && ohci_readl (ohci, ohci_init() 475 while (ohci_readl (ohci, &ohci->regs->control) & OHCI_CTRL_IR) { ohci_init() 491 if (ohci_readl (ohci, &ohci->regs->control) & OHCI_CTRL_RWC) ohci_init() 536 val = ohci_readl (ohci, &ohci->regs->fminterval); ohci_run() 573 (void) ohci_readl (ohci, &ohci->regs->control); ohci_run() 585 while ((ohci_readl (ohci, &ohci->regs->cmdstatus) & OHCI_HCR) != 0) { ohci_run() 606 (void) ohci_readl (ohci, &ohci->regs->control); ohci_run() 622 if ((ohci_readl (ohci, &ohci->regs->fminterval) & 0x3fff0000) == 0 ohci_run() 623 || !ohci_readl (ohci, &ohci->regs->periodicstart)) { ohci_run() 631 ohci_readl (ohci, &ohci->regs->fminterval), ohci_run() 632 ohci_readl (ohci, &ohci->regs->periodicstart)); ohci_run() 674 (void) ohci_readl (ohci, &ohci->regs->control); ohci_run() 745 status = ohci_readl(ohci, &ohci->regs->intrstatus); io_watchdog_func() 840 ohci->prev_donehead = ohci_readl(ohci, io_watchdog_func() 863 ints = ohci_readl(ohci, ®s->intrstatus); ohci_irq() 876 ints &= ohci_readl(ohci, ®s->intrenable); ohci_irq() 958 (void) ohci_readl (ohci, &ohci->regs->control); ohci_irq() 1079 (void)ohci_readl(ohci, &ohci->regs->intrdisable); ohci_suspend() 1108 ohci->hc_control = ohci_readl(ohci, &ohci->regs->control); ohci_resume() 1135 ohci_readl(ohci, &ohci->regs->intrenable); ohci_resume()
|
H A D | ohci.h | 584 #define ohci_readl(o,r) _ohci_readl(o,r) macro 696 u32 fit = ohci_readl(ohci, &ohci->regs->fminterval) & FIT; periodic_reinit() 709 u32 temp = ohci_readl (hc, &hc->regs->roothub.register); \ 714 temp = ohci_readl (hc, &hc->regs->roothub.register); \ 720 { return ohci_readl (hc, &hc->regs->roothub.b); } roothub_status() 722 { return ohci_readl (hc, &hc->regs->roothub.status); } roothub_portstatus()
|
H A D | ohci-at91.c | 620 ohci->hc_control = ohci_readl(ohci, &ohci->regs->control); ohci_hcd_at91_drv_suspend() 626 (void) ohci_readl (ohci, &ohci->regs->control); ohci_hcd_at91_drv_suspend()
|
H A D | ohci-da8xx.c | 113 rh_a = ohci_readl(ohci, &ohci->regs->roothub.a); ohci_da8xx_init()
|
H A D | ohci-q.c | 339 // a ohci_readl() later syncs CLE with the HC ed_deschedule() 365 // a ohci_readl() later syncs BLE with the HC ed_deschedule() 496 (void) ohci_readl (ohci, &ohci->regs->control); start_ed_unlink()
|