Home
last modified time | relevance | path

Searched refs:think_time (Results 1 – 11 of 11) sorted by relevance

/OK3568_Linux_fs/u-boot/common/
H A Dusb_hub.c737 hub->tt.think_time = 666; in usb_hub_configure()
739 8, hub->tt.think_time); in usb_hub_configure()
743 hub->tt.think_time = 666 * 2; in usb_hub_configure()
745 16, hub->tt.think_time); in usb_hub_configure()
748 hub->tt.think_time = 666 * 3; in usb_hub_configure()
750 24, hub->tt.think_time); in usb_hub_configure()
753 hub->tt.think_time = 666 * 4; in usb_hub_configure()
755 32, hub->tt.think_time); in usb_hub_configure()
/OK3568_Linux_fs/u-boot/drivers/usb/host/
H A Dxhci.c1417 unsigned think_time; in xhci_update_hub_device() local
1463 think_time = hub->tt.think_time; in xhci_update_hub_device()
1464 if (think_time != 0) in xhci_update_hub_device()
1465 think_time = (think_time / 666) - 1; in xhci_update_hub_device()
1467 slot_ctx->tt_info |= cpu_to_le32(TT_THINK_TIME(think_time)); in xhci_update_hub_device()
/OK3568_Linux_fs/u-boot/include/
H A Dusb_defs.h321 unsigned think_time; /* think time in ns */ member
/OK3568_Linux_fs/kernel/drivers/usb/host/
H A Dehci-q.c835 int think_time; in qh_make() local
850 think_time = tt ? tt->think_time : 0; in qh_make()
851 qh->ps.tt_usecs = NS_TO_US(think_time + in qh_make()
H A Dehci-sched.c1065 int think_time; in iso_stream_init() local
1076 think_time = dev->tt->think_time; in iso_stream_init()
1077 stream->ps.tt_usecs = NS_TO_US(think_time + usb_calc_bus_time( in iso_stream_init()
H A Dxhci.c5082 unsigned think_time; in xhci_update_hub_device() local
5151 think_time = tt->think_time; in xhci_update_hub_device()
5152 if (think_time != 0) in xhci_update_hub_device()
5153 think_time = (think_time / 666) - 1; in xhci_update_hub_device()
5156 cpu_to_le32(TT_THINK_TIME(think_time)); in xhci_update_hub_device()
H A Doxu210hp-hcd.c1830 int think_time; in qh_make() local
1845 think_time = tt ? tt->think_time : 0; in qh_make()
1846 qh->tt_usecs = NS_TO_US(think_time + in qh_make()
H A Dfotg210-hcd.c2771 int think_time; in qh_make() local
2786 think_time = tt ? tt->think_time : 0; in qh_make()
2787 qh->tt_usecs = NS_TO_US(think_time + in qh_make()
/OK3568_Linux_fs/kernel/drivers/usb/core/
H A Dhub.c1536 hub->tt.think_time = 666; in hub_configure()
1539 8, hub->tt.think_time); in hub_configure()
1543 hub->tt.think_time = 666 * 2; in hub_configure()
1546 16, hub->tt.think_time); in hub_configure()
1549 hub->tt.think_time = 666 * 3; in hub_configure()
1552 24, hub->tt.think_time); in hub_configure()
1555 hub->tt.think_time = 666 * 4; in hub_configure()
1558 32, hub->tt.think_time); in hub_configure()
/OK3568_Linux_fs/kernel/include/linux/usb/
H A Dhcd.h569 unsigned think_time; /* think time in ns */ member
/OK3568_Linux_fs/kernel/drivers/usb/dwc2/
H A Dhcd_queue.c1564 device_ns += dwc_tt->usb_tt->think_time; in dwc2_qh_init()