Home
last modified time | relevance | path

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

/linux-6.12.1/drivers/usb/host/
Dxhci-mem.c776 struct xhci_tt_bw_info *tt_info, *next; in xhci_free_tt_info() local
788 list_for_each_entry_safe(tt_info, next, tt_list_head, tt_list) { in xhci_free_tt_info()
790 if (tt_info->slot_id == slot_id) { in xhci_free_tt_info()
792 list_del(&tt_info->tt_list); in xhci_free_tt_info()
793 kfree(tt_info); in xhci_free_tt_info()
805 struct xhci_tt_bw_info *tt_info; in xhci_alloc_tt_info() local
815 for (i = 0; i < num_ports; i++, tt_info++) { in xhci_alloc_tt_info()
818 tt_info = kzalloc_node(sizeof(*tt_info), mem_flags, in xhci_alloc_tt_info()
820 if (!tt_info) in xhci_alloc_tt_info()
822 INIT_LIST_HEAD(&tt_info->tt_list); in xhci_alloc_tt_info()
[all …]
Dxhci.c2273 struct xhci_tt_bw_info *tt_info; in xhci_check_tt_bw_table() local
2277 tt_info = virt_dev->tt_info; in xhci_check_tt_bw_table()
2284 if (old_active_eps == 0 && tt_info->active_eps != 0) { in xhci_check_tt_bw_table()
2391 if (virt_dev->tt_info) { in xhci_check_bw_table()
2402 virt_dev->tt_info->slot_id, in xhci_check_bw_table()
2403 virt_dev->tt_info->ttport); in xhci_check_bw_table()
2503 if (!virt_dev->tt_info && virt_dev->udev->speed == USB_SPEED_HIGH) { in xhci_check_bw_table()
2561 struct xhci_tt_bw_info *tt_info) in xhci_drop_ep_from_interval_table() argument
2612 if (tt_info) in xhci_drop_ep_from_interval_table()
2613 tt_info->active_eps -= 1; in xhci_drop_ep_from_interval_table()
[all …]
Dxhci-trace.h364 __field(u32, tt_info)
370 __entry->tt_info = le64_to_cpu(ctx->tt_info);
375 __entry->tt_info, __entry->state)
Dxhci.h346 __le32 tt_info; member
745 struct xhci_tt_bw_info *tt_info; member
2243 u32 info, u32 info2, u32 tt_info, u32 state) in xhci_decode_slot_context() argument
2284 tt_info & TT_SLOT, (tt_info & TT_PORT) >> 8, in xhci_decode_slot_context()
2285 GET_TT_THINK_TIME(tt_info), GET_INTR_TARGET(tt_info), in xhci_decode_slot_context()
Dxhci-debugfs.c273 le32_to_cpu(slot_ctx->tt_info), in xhci_slot_context_show()
Dxhci-ring.c2550 le32_to_cpu(slot_ctx->tt_info) & TT_SLOT) in process_bulk_intr_td()