Home
last modified time | relevance | path

Searched refs:tt_info (Results 1 – 6 of 6) sorted by relevance

/linux-5.19.10/drivers/usb/host/
Dxhci-mem.c790 struct xhci_tt_bw_info *tt_info, *next; in xhci_free_tt_info() local
803 list_for_each_entry_safe(tt_info, next, tt_list_head, tt_list) { in xhci_free_tt_info()
805 if (tt_info->slot_id == slot_id) { in xhci_free_tt_info()
807 list_del(&tt_info->tt_list); in xhci_free_tt_info()
808 kfree(tt_info); in xhci_free_tt_info()
820 struct xhci_tt_bw_info *tt_info; in xhci_alloc_tt_info() local
830 for (i = 0; i < num_ports; i++, tt_info++) { in xhci_alloc_tt_info()
833 tt_info = kzalloc_node(sizeof(*tt_info), mem_flags, in xhci_alloc_tt_info()
835 if (!tt_info) in xhci_alloc_tt_info()
837 INIT_LIST_HEAD(&tt_info->tt_list); in xhci_alloc_tt_info()
[all …]
Dxhci.c2376 struct xhci_tt_bw_info *tt_info; in xhci_check_tt_bw_table() local
2380 tt_info = virt_dev->tt_info; in xhci_check_tt_bw_table()
2387 if (old_active_eps == 0 && tt_info->active_eps != 0) { in xhci_check_tt_bw_table()
2494 if (virt_dev->tt_info) { in xhci_check_bw_table()
2505 virt_dev->tt_info->slot_id, in xhci_check_bw_table()
2506 virt_dev->tt_info->ttport); in xhci_check_bw_table()
2606 if (!virt_dev->tt_info && virt_dev->udev->speed == USB_SPEED_HIGH) { in xhci_check_bw_table()
2666 struct xhci_tt_bw_info *tt_info) in xhci_drop_ep_from_interval_table() argument
2720 if (tt_info) in xhci_drop_ep_from_interval_table()
2721 tt_info->active_eps -= 1; in xhci_drop_ep_from_interval_table()
[all …]
Dxhci-trace.h369 __field(u32, tt_info)
376 __entry->tt_info = le64_to_cpu(ctx->tt_info);
381 __entry->tt_info, __entry->state)
Dxhci.h625 __le32 tt_info; member
1022 struct xhci_tt_bw_info *tt_info; member
2520 u32 info, u32 info2, u32 tt_info, u32 state) in xhci_decode_slot_context() argument
2561 tt_info & TT_SLOT, (tt_info & TT_PORT) >> 8, in xhci_decode_slot_context()
2562 GET_TT_THINK_TIME(tt_info), GET_INTR_TARGET(tt_info), in xhci_decode_slot_context()
Dxhci-debugfs.c272 le32_to_cpu(slot_ctx->tt_info), in xhci_slot_context_show()
Dxhci-ring.c2488 le32_to_cpu(slot_ctx->tt_info) & TT_SLOT) in process_bulk_intr_td()