Home
last modified time | relevance | path

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

/Linux-v5.15/drivers/usb/host/
Dxhci.c1528 struct xhci_input_control_ctx *ctrl_ctx; in xhci_check_maxpacket() local
1561 ctrl_ctx = xhci_get_input_control_ctx(command->in_ctx); in xhci_check_maxpacket()
1562 if (!ctrl_ctx) { in xhci_check_maxpacket()
1577 ctrl_ctx->add_flags = cpu_to_le32(EP0_FLAG); in xhci_check_maxpacket()
1578 ctrl_ctx->drop_flags = 0; in xhci_check_maxpacket()
1586 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG); in xhci_check_maxpacket()
1880 struct xhci_input_control_ctx *ctrl_ctx; in xhci_drop_endpoint() local
1904 ctrl_ctx = xhci_get_input_control_ctx(in_ctx); in xhci_drop_endpoint()
1905 if (!ctrl_ctx) { in xhci_drop_endpoint()
1917 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.h795 #define EP_IS_ADDED(ctrl_ctx, i) \ argument
796 (le32_to_cpu(ctrl_ctx->add_flags) & (1 << (i + 1)))
797 #define EP_IS_DROPPED(ctrl_ctx, i) \ argument
798 (le32_to_cpu(ctrl_ctx->drop_flags) & (1 << (i + 1)))
2028 struct xhci_input_control_ctx *ctrl_ctx,
Dxhci-mem.c1546 struct xhci_input_control_ctx *ctrl_ctx, in xhci_update_bw_info() argument
1562 if (!EP_IS_ADDED(ctrl_ctx, i) && EP_IS_DROPPED(ctrl_ctx, i)) { in xhci_update_bw_info()
1568 if (EP_IS_ADDED(ctrl_ctx, i)) { in xhci_update_bw_info()
Dxhci-ring.c1528 struct xhci_input_control_ctx *ctrl_ctx; in xhci_handle_cmd_config_ep() local
1545 ctrl_ctx = xhci_get_input_control_ctx(virt_dev->in_ctx); in xhci_handle_cmd_config_ep()
1546 if (!ctrl_ctx) { in xhci_handle_cmd_config_ep()
1551 add_flags = le32_to_cpu(ctrl_ctx->add_flags); in xhci_handle_cmd_config_ep()
1552 drop_flags = le32_to_cpu(ctrl_ctx->drop_flags); in xhci_handle_cmd_config_ep()
/Linux-v5.15/drivers/usb/cdns3/
Dcdnsp-gadget.c441 struct cdnsp_input_control_ctx *ctrl_ctx; in cdnsp_zero_in_ctx() local
446 ctrl_ctx = cdnsp_get_input_control_ctx(&pdev->in_ctx); in cdnsp_zero_in_ctx()
454 ctrl_ctx->drop_flags = 0; in cdnsp_zero_in_ctx()
455 ctrl_ctx->add_flags = 0; in cdnsp_zero_in_ctx()
642 struct cdnsp_input_control_ctx *ctrl_ctx; in cdnsp_update_eps_configuration() local
648 ctrl_ctx = cdnsp_get_input_control_ctx(&pdev->in_ctx); in cdnsp_update_eps_configuration()
651 if (ctrl_ctx->add_flags == 0 && ctrl_ctx->drop_flags == 0) in cdnsp_update_eps_configuration()
654 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG); in cdnsp_update_eps_configuration()
655 ctrl_ctx->add_flags &= cpu_to_le32(~EP0_FLAG); in cdnsp_update_eps_configuration()
656 ctrl_ctx->drop_flags &= cpu_to_le32(~(SLOT_FLAG | EP0_FLAG)); in cdnsp_update_eps_configuration()
[all …]
/Linux-v5.15/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()