• Home
  • Raw
  • Download

Lines Matching refs:start_frame

3618 	int start_frame, ist, ret = 0;  in xhci_get_isoc_frame_id()  local
3623 start_frame = urb->start_frame + index * urb->interval; in xhci_get_isoc_frame_id()
3625 start_frame = (urb->start_frame + index * urb->interval) >> 3; in xhci_get_isoc_frame_id()
3656 start_frame &= 0x7ff; in xhci_get_isoc_frame_id()
3662 start_frame_id, end_frame_id, start_frame); in xhci_get_isoc_frame_id()
3665 if (start_frame > end_frame_id || in xhci_get_isoc_frame_id()
3666 start_frame < start_frame_id) in xhci_get_isoc_frame_id()
3669 if ((start_frame > end_frame_id && in xhci_get_isoc_frame_id()
3670 start_frame < start_frame_id)) in xhci_get_isoc_frame_id()
3677 if (ret == -EINVAL || start_frame == start_frame_id) { in xhci_get_isoc_frame_id()
3678 start_frame = start_frame_id + 1; in xhci_get_isoc_frame_id()
3681 urb->start_frame = start_frame; in xhci_get_isoc_frame_id()
3683 urb->start_frame = start_frame << 3; in xhci_get_isoc_frame_id()
3690 start_frame, current_frame_id, index, in xhci_get_isoc_frame_id()
3696 return start_frame; in xhci_get_isoc_frame_id()
3853 xep->next_frame_id = urb->start_frame + num_tds * urb->interval; in xhci_queue_isoc_tx()
3901 int start_frame; in xhci_queue_isoc_tx_prepare() local
3934 urb->start_frame = xep->next_frame_id; in xhci_queue_isoc_tx_prepare()
3939 start_frame = readl(&xhci->run_regs->microframe_index); in xhci_queue_isoc_tx_prepare()
3940 start_frame &= 0x3fff; in xhci_queue_isoc_tx_prepare()
3948 start_frame += ist + XHCI_CFC_DELAY; in xhci_queue_isoc_tx_prepare()
3949 start_frame = roundup(start_frame, 8); in xhci_queue_isoc_tx_prepare()
3957 start_frame = roundup(start_frame, urb->interval << 3); in xhci_queue_isoc_tx_prepare()
3958 urb->start_frame = start_frame >> 3; in xhci_queue_isoc_tx_prepare()
3960 start_frame = roundup(start_frame, urb->interval); in xhci_queue_isoc_tx_prepare()
3961 urb->start_frame = start_frame; in xhci_queue_isoc_tx_prepare()