| /linux/drivers/usb/core/ |
| H A D | config.c | 140 if (usb_endpoint_xfer_control(&ep->desc) && desc->bMaxBurst != 0) { in usb_parse_ss_endpoint_companion() 142 desc->bMaxBurst, cfgno, inum, asnum, ep->desc.bEndpointAddress); in usb_parse_ss_endpoint_companion() 143 ep->ss_ep_comp.bMaxBurst = 0; in usb_parse_ss_endpoint_companion() 144 } else if (desc->bMaxBurst > 15) { in usb_parse_ss_endpoint_companion() 146 desc->bMaxBurst, cfgno, inum, asnum, ep->desc.bEndpointAddress); in usb_parse_ss_endpoint_companion() 147 ep->ss_ep_comp.bMaxBurst = 15; in usb_parse_ss_endpoint_companion() 173 max_tx = (desc->bMaxBurst + 1) * in usb_parse_ss_endpoint_companion() 178 (desc->bMaxBurst + 1); in usb_parse_ss_endpoint_companion()
|
| H A D | urb.c | 457 int burst = 1 + ep->ss_ep_comp.bMaxBurst; in usb_submit_urb()
|
| /linux/drivers/usb/gadget/function/ |
| H A D | f_sourcesink.c | 195 .bMaxBurst = 0, 212 .bMaxBurst = 0, 230 .bMaxBurst = 0, 248 .bMaxBurst = 0, 335 ss_source_comp_desc.bMaxBurst = ss->bulk_maxburst; in sourcesink_bind() 336 ss_sink_comp_desc.bMaxBurst = ss->bulk_maxburst; in sourcesink_bind() 426 ss_iso_source_comp_desc.bMaxBurst = ss->isoc_maxburst; in sourcesink_bind() 435 ss_iso_sink_comp_desc.bMaxBurst = ss->isoc_maxburst; in sourcesink_bind()
|
| H A D | f_loopback.c | 117 .bMaxBurst = 0, 133 .bMaxBurst = 0,
|
| H A D | f_tcm.c | 2092 .bMaxBurst = 15, 2100 .bMaxBurst = 15, 2135 .bMaxBurst = 15, 2142 .bMaxBurst = 15,
|
| H A D | f_uvc.c | 99 .bMaxBurst = 0, 728 uvc_ss_streaming_comp.bMaxBurst = opts->streaming_maxburst; in uvc_function_bind()
|
| H A D | f_uac2.c | 365 .bMaxBurst = 0, 415 .bMaxBurst = 0, 499 .bMaxBurst = 0,
|
| H A D | f_uac1.c | 309 .bMaxBurst = 0, 328 .bMaxBurst = 0,
|
| H A D | f_mass_storage.c | 3103 fsg_ss_bulk_in_comp_desc.bMaxBurst = max_burst; in fsg_bind() 3107 fsg_ss_bulk_out_comp_desc.bMaxBurst = max_burst; in fsg_bind()
|
| H A D | f_ncm.c | 378 .bMaxBurst = 15,
|
| /linux/tools/testing/selftests/bpf/progs/ |
| H A D | btf_dump_test_case_packing.c | 107 char bMaxBurst; member
|
| /linux/tools/usb/ |
| H A D | ffs-test.c | 202 .bMaxBurst = 0, 217 .bMaxBurst = 0,
|
| /linux/net/9p/ |
| H A D | trans_usbg.c | 602 .bMaxBurst = 0, 618 .bMaxBurst = 0,
|
| /linux/drivers/usb/gadget/udc/bdc/ |
| H A D | bdc_cmd.c | 170 mbs = comp_desc->bMaxBurst; in bdc_config_ep()
|
| /linux/drivers/usb/cdns3/ |
| H A D | cdns3-gadget.c | 2105 u8 maxburst = priv_ep->bMaxBurst; in cdns3_ep_config() 2129 buffering = (priv_ep->bMaxBurst + 1) * (priv_ep->mult + 1) - 1; in cdns3_ep_config() 2298 priv_ep->bMaxBurst = comp_desc->bMaxBurst; in cdns3_gadget_match_ep() 3106 n = (priv_ep->mult + 1) * (priv_ep->bMaxBurst + 1); in cdns3_gadget_check_config()
|
| H A D | cdns3-gadget.h | 1172 u8 bMaxBurst; member
|
| H A D | cdnsp-ring.c | 2168 * devices can burst up to bMaxBurst number of packets per service interval. 2182 max_burst = preq->pep->endpoint.comp_desc->bMaxBurst; 2191 * must contain (bMaxBurst + 1) number of packets, but the last burst can 2192 * contain 1 to (bMaxBurst + 1) packets. in cdnsp_get_last_burst_packet_count() 2203 /* bMaxBurst is zero based: 0 means 1 packet per burst. */ in cdnsp_get_last_burst_packet_count() 2204 max_burst = preq->pep->endpoint.comp_desc->bMaxBurst; in cdnsp_get_last_burst_packet_count()
|
| H A D | cdnsp-mem.c | 879 return pep->endpoint.comp_desc->bMaxBurst; in cdnsp_get_endpoint_max_burst()
|
| /linux/drivers/usb/mtu3/ |
| H A D | mtu3_gadget.c | 86 burst = comp_desc->bMaxBurst; in mtu3_ep_enable()
|
| /linux/drivers/usb/gadget/ |
| H A D | composite.c | 257 _ep->maxburst = comp_desc->bMaxBurst + 1; in config_ep_by_speed_and_alt() 260 if (comp_desc->bMaxBurst != 0) in config_ep_by_speed_and_alt()
|
| /linux/Documentation/usb/ |
| H A D | gadget_uvc.rst | 362 # streaming_maxburst sets bMaxBurst. Valid values are 1..15
|
| /linux/drivers/usb/host/ |
| H A D | xhci-ring.c | 3898 * devices can burst up to bMaxBurst number of packets per service interval. in xhci_queue_ctrl_tx() 3911 max_burst = urb->ep->ss_ep_comp.bMaxBurst; in xhci_queue_ctrl_tx() 3920 * must contain (bMaxBurst + 1) number of packets, but the last burst can 3921 * contain 1 to (bMaxBurst + 1) packets. 3933 /* bMaxBurst is zero based: 0 means 1 packet per burst */ in xhci_get_burst_count() 3934 max_burst = urb->ep->ss_ep_comp.bMaxBurst; in xhci_get_burst_count()
|
| /linux/drivers/usb/misc/ |
| H A D | usbtest.c | 355 * (1 + ep->ss_ep_comp.bMaxBurst); in ss_isoc_get_packet_num()
|
| /linux/drivers/usb/gadget/udc/ |
| H A D | tegra-xudc.c | 1628 maxburst = comp_desc->bMaxBurst; in tegra_xudc_ep_context_setup()
|