Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/drivers/usb/host/
Dxhci.c1428 struct xhci_input_control_ctx *ctrl_ctx; in xhci_check_maxpacket() local
1461 ctrl_ctx = xhci_get_input_control_ctx(command->in_ctx); in xhci_check_maxpacket()
1462 if (!ctrl_ctx) { in xhci_check_maxpacket()
1477 ctrl_ctx->add_flags = cpu_to_le32(EP0_FLAG); in xhci_check_maxpacket()
1478 ctrl_ctx->drop_flags = 0; in xhci_check_maxpacket()
1486 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG); in xhci_check_maxpacket()
1780 struct xhci_input_control_ctx *ctrl_ctx; in xhci_drop_endpoint() local
1804 ctrl_ctx = xhci_get_input_control_ctx(in_ctx); in xhci_drop_endpoint()
1805 if (!ctrl_ctx) { in xhci_drop_endpoint()
1817 le32_to_cpu(ctrl_ctx->drop_flags) & in xhci_drop_endpoint()
[all …]
Dxhci-trace.h431 TP_PROTO(struct xhci_input_control_ctx *ctrl_ctx),
432 TP_ARGS(ctrl_ctx),
439 __entry->drop = le32_to_cpu(ctrl_ctx->drop_flags);
440 __entry->add = le32_to_cpu(ctrl_ctx->add_flags);
447 TP_PROTO(struct xhci_input_control_ctx *ctrl_ctx),
448 TP_ARGS(ctrl_ctx)
452 TP_PROTO(struct xhci_input_control_ctx *ctrl_ctx),
453 TP_ARGS(ctrl_ctx)
Dxhci.h798 #define EP_IS_ADDED(ctrl_ctx, i) \ argument
799 (le32_to_cpu(ctrl_ctx->add_flags) & (1 << (i + 1)))
800 #define EP_IS_DROPPED(ctrl_ctx, i) \ argument
801 (le32_to_cpu(ctrl_ctx->drop_flags) & (1 << (i + 1)))
2021 struct xhci_input_control_ctx *ctrl_ctx,
Dxhci-mem.c1573 struct xhci_input_control_ctx *ctrl_ctx, in xhci_update_bw_info() argument
1589 if (!EP_IS_ADDED(ctrl_ctx, i) && EP_IS_DROPPED(ctrl_ctx, i)) { in xhci_update_bw_info()
1595 if (EP_IS_ADDED(ctrl_ctx, i)) { in xhci_update_bw_info()
Dxhci-ring.c1405 struct xhci_input_control_ctx *ctrl_ctx; in xhci_handle_cmd_config_ep() local
1420 ctrl_ctx = xhci_get_input_control_ctx(virt_dev->in_ctx); in xhci_handle_cmd_config_ep()
1421 if (!ctrl_ctx) { in xhci_handle_cmd_config_ep()
1426 add_flags = le32_to_cpu(ctrl_ctx->add_flags); in xhci_handle_cmd_config_ep()
1427 drop_flags = le32_to_cpu(ctrl_ctx->drop_flags); in xhci_handle_cmd_config_ep()
/kernel/linux/linux-5.10/drivers/usb/misc/
Dusbtest.c1067 struct ctrl_ctx { struct
1089 struct ctrl_ctx *ctx = urb->context; in ctrl_complete() argument
1205 struct ctrl_ctx context; in test_ctrl_queue()