Lines Matching refs:t

1655 	unsigned		size, t;  in registers_show()  local
1672 t = scnprintf(next, size, "%s version " DRIVER_VERSION in registers_show()
1685 size -= t; in registers_show()
1686 next += t; in registers_show()
1701 t = scnprintf(next, size, in registers_show()
1706 size -= t; in registers_show()
1707 next += t; in registers_show()
1723 t = scnprintf(next, size, in registers_show()
1744 size -= t; in registers_show()
1745 next += t; in registers_show()
1747 t = scnprintf(next, size, in registers_show()
1755 size -= t; in registers_show()
1756 next += t; in registers_show()
1761 t = scnprintf(next, size, in registers_show()
1769 size -= t; in registers_show()
1770 next += t; in registers_show()
1777 t = scnprintf(next, size, "\nirqs: "); in registers_show()
1778 size -= t; in registers_show()
1779 next += t; in registers_show()
1786 t = scnprintf(next, size, " %s/%lu", ep->ep.name, ep->irqs); in registers_show()
1787 size -= t; in registers_show()
1788 next += t; in registers_show()
1791 t = scnprintf(next, size, "\n"); in registers_show()
1792 size -= t; in registers_show()
1793 next += t; in registers_show()
1818 int t; in queues_show() local
1826 t = d->bEndpointAddress; in queues_show()
1827 t = scnprintf(next, size, in queues_show()
1829 ep->ep.name, t & USB_ENDPOINT_NUMBER_MASK, in queues_show()
1830 (t & USB_DIR_IN) ? "in" : "out", in queues_show()
1836 t = scnprintf(next, size, "ep0 max 64 pio %s\n", in queues_show()
1838 if (t <= 0 || t > size) in queues_show()
1840 size -= t; in queues_show()
1841 next += t; in queues_show()
1844 t = scnprintf(next, size, "\t(nothing queued)\n"); in queues_show()
1845 if (t <= 0 || t > size) in queues_show()
1847 size -= t; in queues_show()
1848 next += t; in queues_show()
1853 t = scnprintf(next, size, in queues_show()
1860 t = scnprintf(next, size, in queues_show()
1864 if (t <= 0 || t > size) in queues_show()
1866 size -= t; in queues_show()
1867 next += t; in queues_show()
1873 t = scnprintf(next, size, "\t td %08x " in queues_show()
1879 if (t <= 0 || t > size) in queues_show()
1881 size -= t; in queues_show()
1882 next += t; in queues_show()
2519 u32 t; in handle_ep_small() local
2530 t = readl(&ep->regs->ep_stat); in handle_ep_small()
2534 ep->ep.name, t, req ? &req->req : NULL); in handle_ep_small()
2537 writel(t & ~BIT(NAK_OUT_PACKETS), &ep->regs->ep_stat); in handle_ep_small()
2540 writel(t, &ep->regs->ep_stat); in handle_ep_small()
2555 if (t & BIT(DATA_OUT_PING_TOKEN_INTERRUPT)) { in handle_ep_small()
2564 } else if (t & BIT(DATA_IN_TOKEN_INTERRUPT)) { in handle_ep_small()
2575 if (t & BIT(DATA_IN_TOKEN_INTERRUPT)) { in handle_ep_small()
2582 } else if (((t & BIT(DATA_OUT_PING_TOKEN_INTERRUPT)) && in handle_ep_small()
2601 if (t & BIT(SHORT_PACKET_TRANSFERRED_INTERRUPT)) { in handle_ep_small()
2613 for (count = 0; ; t = readl(&ep->regs->ep_stat)) { in handle_ep_small()
2630 if (likely(t & BIT(FIFO_EMPTY))) { in handle_ep_small()
2672 t = readl(&ep->regs->ep_avail); in handle_ep_small()
2674 (ep->out_overflow || t) in handle_ep_small()
2693 ep->ep.name, t); in handle_ep_small()
2697 } else if (t & BIT(DATA_PACKET_RECEIVED_INTERRUPT)) { in handle_ep_small()
2702 } else if (t & BIT(DATA_PACKET_TRANSMITTED_INTERRUPT)) { in handle_ep_small()
2751 if (t & BIT(DATA_PACKET_TRANSMITTED_INTERRUPT)) in handle_ep_small()
3332 u32 t; in handle_stat0_irqs() local
3335 t = BIT(num); in handle_stat0_irqs()
3336 if ((scratch & t) == 0) in handle_stat0_irqs()
3338 scratch ^= t; in handle_stat0_irqs()