| /Linux-v5.4/drivers/media/usb/dvb-usb-v2/ |
| D | usb_urb.c | 173 stream->props.u.isoc.framesperurb, GFP_ATOMIC); in usb_urb_alloc_isoc_urbs() 189 urb->interval = stream->props.u.isoc.interval; in usb_urb_alloc_isoc_urbs() 190 urb->number_of_packets = stream->props.u.isoc.framesperurb; in usb_urb_alloc_isoc_urbs() 191 urb->transfer_buffer_length = stream->props.u.isoc.framesize * in usb_urb_alloc_isoc_urbs() 192 stream->props.u.isoc.framesperurb; in usb_urb_alloc_isoc_urbs() 195 for (j = 0; j < stream->props.u.isoc.framesperurb; j++) { in usb_urb_alloc_isoc_urbs() 198 stream->props.u.isoc.framesize; in usb_urb_alloc_isoc_urbs() 199 frame_offset += stream->props.u.isoc.framesize; in usb_urb_alloc_isoc_urbs() 262 buf_size = props->u.isoc.framesize * props->u.isoc.framesperurb; in usb_urb_reconfig() 285 props->u.isoc.framesperurb == in usb_urb_reconfig() [all …]
|
| D | dvb_usb.h | 81 .isoc = { \ 156 } isoc; member
|
| D | mxl111sf.c | 29 module_param_named(isoc, dvb_usb_mxl111sf_isoc, int, 0644); 30 MODULE_PARM_DESC(isoc, "enable usb isoc xfer (0=bulk, 1=isoc)."); 1053 stream->u.isoc.framesperurb = framesperurb; in mxl111sf_stream_config_isoc() 1054 stream->u.isoc.framesize = framesize; in mxl111sf_stream_config_isoc() 1055 stream->u.isoc.interval = 1; in mxl111sf_stream_config_isoc()
|
| /Linux-v5.4/drivers/media/usb/dvb-usb/ |
| D | usb-urb.c | 173 stream->props.u.isoc.framesize*stream->props.u.isoc.framesperurb)) < 0) in usb_isoc_urb_init() 181 stream->urb_list[i] = usb_alloc_urb(stream->props.u.isoc.framesperurb, GFP_KERNEL); in usb_isoc_urb_init() 196 urb->interval = stream->props.u.isoc.interval; in usb_isoc_urb_init() 197 urb->number_of_packets = stream->props.u.isoc.framesperurb; in usb_isoc_urb_init() 202 for (j = 0; j < stream->props.u.isoc.framesperurb; j++) { in usb_isoc_urb_init() 204 urb->iso_frame_desc[j].length = stream->props.u.isoc.framesize; in usb_isoc_urb_init() 205 frame_offset += stream->props.u.isoc.framesize; in usb_isoc_urb_init()
|
| D | ttusb2.c | 669 .isoc = { 724 .isoc = { 785 .isoc = { 804 .isoc = {
|
| D | dvb-usb.h | 118 } isoc; member
|
| D | pctv452e.c | 975 .isoc = { 1028 .isoc = {
|
| D | technisat-usb2.c | 726 .isoc = {
|
| D | m920x.c | 1174 .isoc = {
|
| /Linux-v5.4/Documentation/devicetree/bindings/usb/ |
| D | atmel-usb.txt | 103 - atmel,can-isoc: Boolean to specify if the endpoint support ISOC. 127 atmel,can-isoc; 135 atmel,can-isoc; 157 atmel,can-isoc; 165 atmel,can-isoc;
|
| D | dwc3.txt | 42 - snps,dis-start-transfer-quirk: when set, disable isoc START TRANSFER command
|
| /Linux-v5.4/arch/arm/boot/dts/ |
| D | sama5d2.dtsi | 137 atmel,can-isoc; 145 atmel,can-isoc; 153 atmel,can-isoc; 161 atmel,can-isoc; 169 atmel,can-isoc; 177 atmel,can-isoc; 185 atmel,can-isoc; 192 atmel,can-isoc; 199 atmel,can-isoc; 206 atmel,can-isoc; [all …]
|
| D | sama5d4.dtsi | 120 atmel,can-isoc; 128 atmel,can-isoc; 136 atmel,can-isoc; 144 atmel,can-isoc; 152 atmel,can-isoc; 160 atmel,can-isoc; 168 atmel,can-isoc; 175 atmel,can-isoc; 182 atmel,can-isoc; 189 atmel,can-isoc; [all …]
|
| D | at91sam9rl.dtsi | 323 atmel,can-isoc; 331 atmel,can-isoc; 353 atmel,can-isoc; 361 atmel,can-isoc;
|
| D | at91sam9x5.dtsi | 891 atmel,can-isoc; 899 atmel,can-isoc; 921 atmel,can-isoc; 929 atmel,can-isoc;
|
| D | at91sam9g45.dtsi | 1219 atmel,can-isoc; 1227 atmel,can-isoc; 1249 atmel,can-isoc; 1257 atmel,can-isoc;
|
| D | sama5d3.dtsi | 1417 atmel,can-isoc; 1425 atmel,can-isoc;
|
| /Linux-v5.4/drivers/bluetooth/ |
| D | btusb.c | 447 struct usb_interface *isoc; member 1484 struct usb_interface *intf = data->isoc; in __set_isoc_interface() 1488 if (!data->isoc) in __set_isoc_interface() 1533 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf); in btusb_work() 1587 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf); in btusb_work() 3826 data->isoc = NULL; in btusb_probe() 3829 data->isoc = usb_ifnum_to_if(data->udev, ifnum_base + 1); in btusb_probe() 3842 data->isoc = NULL; in btusb_probe() 3883 if (data->isoc) { in btusb_probe() 3885 data->isoc, data); in btusb_probe() [all …]
|
| /Linux-v5.4/include/linux/usb/ |
| D | hcd.h | 651 int isoc, int bytecount);
|
| /Linux-v5.4/drivers/usb/core/ |
| D | hcd.c | 1085 long usb_calc_bus_time (int speed, int is_input, int isoc, int bytecount) in usb_calc_bus_time() argument 1099 if (isoc) { in usb_calc_bus_time() 1108 if (isoc) in usb_calc_bus_time()
|
| /Linux-v5.4/drivers/usb/host/ |
| D | isp1362-hcd.c | 877 list_for_each_entry_safe(ep, tmp, &isp1362_hcd->isoc, schedule) { in start_iso_transfers() 1354 list_add_tail(&ep->schedule, &isp1362_hcd->isoc); in isp1362_urb_enqueue() 2147 list_for_each_entry(ep, &isp1362_hcd->isoc, schedule) { in isp1362_show() 2678 INIT_LIST_HEAD(&isp1362_hcd->isoc); in isp1362_probe()
|
| D | isp1362.h | 464 struct list_head isoc; member
|
| /Linux-v5.4/Documentation/media/dvb-drivers/ |
| D | dvb-usb.rst | 24 (bulk and isoc are supported)
|
| /Linux-v5.4/drivers/usb/gadget/function/ |
| D | f_fs.c | 199 unsigned char isoc; /* P: ffs->eps_lock */ member 970 if (halt && epfile->isoc) in ffs_epfile_io() 1977 epfile->isoc = usb_endpoint_xfer_isoc(ep->ep->desc); in ffs_func_eps_enable()
|