Lines Matching refs:trb_buff_len
507 u32 trb_buff_len; in cdns2_ep_tx_isoc() local
541 enqd_len += trb_buff_len) { in cdns2_ep_tx_isoc()
549 trb_buff_len = TRB_BUFF_LEN_UP_TO_BOUNDARY(trb_dma); in cdns2_ep_tx_isoc()
550 trb_buff_len = min(trb_buff_len, remaining_packet_size); in cdns2_ep_tx_isoc()
551 trb_buff_len = min(trb_buff_len, block_length); in cdns2_ep_tx_isoc()
553 if (trb_buff_len > full_len - enqd_len) in cdns2_ep_tx_isoc()
554 trb_buff_len = full_len - enqd_len; in cdns2_ep_tx_isoc()
564 if (enqd_len + trb_buff_len >= full_len || !pep->dir) in cdns2_ep_tx_isoc()
580 if (enqd_len + trb_buff_len < full_len) in cdns2_ep_tx_isoc()
583 length = TRB_LEN(trb_buff_len) | in cdns2_ep_tx_isoc()
584 TRB_BURST(pep->pdev->burst_opt[trb_buff_len]); in cdns2_ep_tx_isoc()
591 trb_dma += trb_buff_len; in cdns2_ep_tx_isoc()
592 sent_len = trb_buff_len; in cdns2_ep_tx_isoc()
605 remaining_packet_size -= trb_buff_len; in cdns2_ep_tx_isoc()