Home
last modified time | relevance | path

Searched refs:tr_type (Results 1 – 5 of 5) sorted by relevance

/openbsd/sys/dev/usb/dwc2/
H A Ddwc2_hcdddma.c1307 enum dwc2_transaction_type tr_type; in dwc2_hcd_complete_xfer_ddma() local
1369 tr_type = dwc2_hcd_select_transactions(hsotg); in dwc2_hcd_complete_xfer_ddma()
1370 if (tr_type != DWC2_TRANSACTION_NONE || continue_isoc_xfer) { in dwc2_hcd_complete_xfer_ddma()
1372 if (tr_type == DWC2_TRANSACTION_NONE) in dwc2_hcd_complete_xfer_ddma()
1373 tr_type = DWC2_TRANSACTION_PERIODIC; in dwc2_hcd_complete_xfer_ddma()
1374 else if (tr_type == DWC2_TRANSACTION_NON_PERIODIC) in dwc2_hcd_complete_xfer_ddma()
1375 tr_type = DWC2_TRANSACTION_ALL; in dwc2_hcd_complete_xfer_ddma()
1377 dwc2_hcd_queue_transactions(hsotg, tr_type); in dwc2_hcd_complete_xfer_ddma()
H A Ddwc2_hcdintr.c153 enum dwc2_transaction_type tr_type; in dwc2_sof_intr() local
185 tr_type = dwc2_hcd_select_transactions(hsotg); in dwc2_sof_intr()
186 if (tr_type != DWC2_TRANSACTION_NONE) in dwc2_sof_intr()
187 dwc2_hcd_queue_transactions(hsotg, tr_type); in dwc2_sof_intr()
731 enum dwc2_transaction_type tr_type; in dwc2_release_channel() local
810 tr_type = dwc2_hcd_select_transactions(hsotg); in dwc2_release_channel()
811 if (tr_type != DWC2_TRANSACTION_NONE) in dwc2_release_channel()
812 dwc2_hcd_queue_transactions(hsotg, tr_type); in dwc2_release_channel()
H A Ddwc2_hcdqueue.c1488 enum dwc2_transaction_type tr_type; in dwc2_wait_timer_fn() local
1495 tr_type = dwc2_hcd_select_transactions(hsotg); in dwc2_wait_timer_fn()
1496 if (tr_type != DWC2_TRANSACTION_NONE) in dwc2_wait_timer_fn()
1497 dwc2_hcd_queue_transactions(hsotg, tr_type); in dwc2_wait_timer_fn()
H A Ddwc2_hcd.c1959 enum dwc2_transaction_type tr_type; in dwc2_hcd_urb_enqueue() local
1969 tr_type = dwc2_hcd_select_transactions(hsotg); in dwc2_hcd_urb_enqueue()
1970 if (tr_type != DWC2_TRANSACTION_NONE) in dwc2_hcd_urb_enqueue()
1971 dwc2_hcd_queue_transactions(hsotg, tr_type); in dwc2_hcd_urb_enqueue()
3183 enum dwc2_transaction_type tr_type) in dwc2_hcd_queue_transactions() argument
3189 if (tr_type == DWC2_TRANSACTION_PERIODIC || in dwc2_hcd_queue_transactions()
3190 tr_type == DWC2_TRANSACTION_ALL) in dwc2_hcd_queue_transactions()
3194 if (tr_type == DWC2_TRANSACTION_NON_PERIODIC || in dwc2_hcd_queue_transactions()
3195 tr_type == DWC2_TRANSACTION_ALL) { in dwc2_hcd_queue_transactions()
H A Ddwc2_hcd.h572 enum dwc2_transaction_type tr_type);