Home
last modified time | relevance | path

Searched full:isoc (Results 1 – 25 of 310) sorted by relevance

12345678910>>...13

/kernel/linux/linux-6.6/drivers/media/usb/dvb-usb-v2/
Dusb_urb.c8 * BULK and ISOC USB data transfers in a generic way.
28 __func__, ptype == PIPE_ISOCHRONOUS ? "isoc" : "bulk", in usb_urb_complete()
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()
[all …]
Dmxl111sf.c29 module_param_named(isoc, dvb_usb_mxl111sf_isoc, int, 0644);
30 MODULE_PARM_DESC(isoc, "enable usb isoc xfer (0=bulk, 1=isoc).");
1051 stream->u.isoc.framesperurb = framesperurb; in mxl111sf_stream_config_isoc()
1052 stream->u.isoc.framesize = framesize; in mxl111sf_stream_config_isoc()
1053 stream->u.isoc.interval = 1; in mxl111sf_stream_config_isoc()
1060 * isoc EP4/ISOC/5/96/564
1110 * isoc EP6/ISOC/5/24/3072
1152 * isoc EP5/ISOC/5/96/200/RAW
1194 * isoc EP6/ISOC/5/24/3072 EP4/ISOC/5/96/564 EP5/ISOC/5/96/200/RAW
1263 * tp isoc EP6/ISOC/5/24/3072 EP4/ISOC/5/96/564 EP6/ISOC/5/24/3072/RAW
[all …]
Dmxl111sf.h81 /* use usb alt setting 1 for EP4 ISOC transfer (dvb-t),
85 EP5 ISOC transfer (atsc-mh),
86 EP6 ISOC transfer (atsc/qam),
/kernel/linux/linux-5.10/drivers/media/usb/dvb-usb-v2/
Dusb_urb.c8 * BULK and ISOC USB data transfers in a generic way.
28 __func__, ptype == PIPE_ISOCHRONOUS ? "isoc" : "bulk", in usb_urb_complete()
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()
[all …]
Dmxl111sf.c29 module_param_named(isoc, dvb_usb_mxl111sf_isoc, int, 0644);
30 MODULE_PARM_DESC(isoc, "enable usb isoc xfer (0=bulk, 1=isoc).");
1051 stream->u.isoc.framesperurb = framesperurb; in mxl111sf_stream_config_isoc()
1052 stream->u.isoc.framesize = framesize; in mxl111sf_stream_config_isoc()
1053 stream->u.isoc.interval = 1; in mxl111sf_stream_config_isoc()
1060 * isoc EP4/ISOC/5/96/564
1110 * isoc EP6/ISOC/5/24/3072
1152 * isoc EP5/ISOC/5/96/200/RAW
1194 * isoc EP6/ISOC/5/24/3072 EP4/ISOC/5/96/564 EP5/ISOC/5/96/200/RAW
1263 * tp isoc EP6/ISOC/5/24/3072 EP4/ISOC/5/96/564 EP6/ISOC/5/24/3072/RAW
[all …]
Dmxl111sf.h81 /* use usb alt setting 1 for EP4 ISOC transfer (dvb-t),
85 EP5 ISOC transfer (atsc-mh),
86 EP6 ISOC transfer (atsc/qam),
/kernel/linux/linux-6.6/drivers/media/usb/dvb-usb/
Dusb-urb.c8 * BULK and ISOC USB data transfers in a generic way.
23 ptype == PIPE_ISOCHRONOUS ? "isoc" : "bulk", in usb_urb_complete()
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()
/kernel/linux/linux-5.10/drivers/media/usb/dvb-usb/
Dusb-urb.c8 * BULK and ISOC USB data transfers in a generic way.
23 ptype == PIPE_ISOCHRONOUS ? "isoc" : "bulk", in usb_urb_complete()
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()
/kernel/linux/linux-6.6/drivers/media/usb/em28xx/
Dem28xx.h170 /* number of buffers for isoc transfers */
178 * isoc transfers: number of packets for each buffer
214 * @max_pkt_size: max packet size of isoc transaction
217 * @urb: urb for isoc/bulk transfers
218 * @buf: transfer buffers for isoc/bulk transfer
231 * @analog_bufs: isoc/bulk transfer buffers for analog mode
232 * @digital_bufs: isoc/bulk transfer buffers for digital mode
711 // Isoc control struct
721 u8 analog_ep_isoc; // address of isoc endpoint for analog
723 u8 dvb_ep_isoc_ts2; // address of isoc endpoint for DVB TS2
[all …]
/kernel/linux/linux-5.10/drivers/media/usb/em28xx/
Dem28xx.h179 /* number of buffers for isoc transfers */
187 * isoc transfers: number of packets for each buffer
223 * @max_pkt_size: max packet size of isoc transaction
226 * @urb: urb for isoc/bulk transfers
227 * @buf: transfer buffers for isoc/bulk transfer
240 * @analog_bufs: isoc/bulk transfer buffers for analog mode
241 * @digital_bufs: isoc/bulk transfer buffers for digital mode
722 // Isoc control struct
732 u8 analog_ep_isoc; // address of isoc endpoint for analog
734 u8 dvb_ep_isoc_ts2; // address of isoc endpoint for DVB TS2
[all …]
/kernel/linux/linux-5.10/drivers/media/usb/stk1160/
Dstk1160.h26 /* Number of buffers for isoc transfers */
88 /* max packet size of isoc transaction */
94 /* urb for isoc transfers */
97 /* transfer buffers for isoc transfer */
120 /* isoc control struct */
126 /* max packet size of isoc transaction */
/kernel/linux/linux-5.10/drivers/media/usb/tm6000/
Dtm6000-usb-isoc.h13 /* max packet size of isoc transaction */
19 /* urb for isoc transfers */
22 /* transfer buffers for isoc transfer */
/kernel/linux/linux-6.6/drivers/media/usb/au0828/
Dau0828.h119 /* max packet size of isoc transaction */
125 /* urb for isoc transfers */
128 /* transfer buffers for isoc transfer */
149 /* isoc urb callback */
245 /* Isoc control struct */
253 int max_pkt_size; /* max packet size of isoc transaction */
256 struct urb *urb[AU0828_MAX_ISO_BUFS]; /* urb for isoc transfers */
257 char *transfer_buffer[AU0828_MAX_ISO_BUFS];/* transfer buffers for isoc
/kernel/linux/linux-5.10/drivers/media/usb/au0828/
Dau0828.h119 /* max packet size of isoc transaction */
125 /* urb for isoc transfers */
128 /* transfer buffers for isoc transfer */
149 /* isoc urb callback */
245 /* Isoc control struct */
253 int max_pkt_size; /* max packet size of isoc transaction */
256 struct urb *urb[AU0828_MAX_ISO_BUFS]; /* urb for isoc transfers */
257 char *transfer_buffer[AU0828_MAX_ISO_BUFS];/* transfer buffers for isoc
/kernel/linux/linux-6.6/drivers/media/usb/stk1160/
Dstk1160.h28 /* Number of buffers for isoc transfers */
98 /* max packet size of isoc transaction */
126 /* isoc control struct */
132 /* max packet size of isoc transaction */
/kernel/linux/linux-5.10/drivers/media/usb/gspca/
Dbenq.c132 u8 *data, /* isoc packet */ in sd_pkt_scan()
146 gspca_dbg(gspca_dev, D_PACK, "sd isoc irq\n"); in sd_isoc_irq()
174 gspca_err(gspca_dev, "ISOC bad lengths %d / %d\n", in sd_isoc_irq()
184 pr_err("ISOC data error: [%d] status=%d\n", in sd_isoc_irq()
Dgspca.h62 u8 bulk; /* image transfer by 0:isoc / 1:bulk */
63 u8 npkt; /* number of packets in an ISOC message
203 u16 pkt_size; /* ISOC packet size */
/kernel/linux/linux-6.6/drivers/media/usb/gspca/
Dbenq.c132 u8 *data, /* isoc packet */ in sd_pkt_scan()
146 gspca_dbg(gspca_dev, D_PACK, "sd isoc irq\n"); in sd_isoc_irq()
174 gspca_err(gspca_dev, "ISOC bad lengths %d / %d\n", in sd_isoc_irq()
184 pr_err("ISOC data error: [%d] status=%d\n", in sd_isoc_irq()
Dgspca.h62 u8 bulk; /* image transfer by 0:isoc / 1:bulk */
63 u8 npkt; /* number of packets in an ISOC message
203 u16 pkt_size; /* ISOC packet size */
/kernel/linux/linux-5.10/sound/firewire/bebob/
Dbebob_stream.c281 "fail to get channel position for isoc %s plug 0: %d\n", in map_data_channels()
303 "fail to get section type for isoc %s plug 0: %d\n", in map_data_channels()
662 // Furthermore, some devices transfer isoc packets with in snd_bebob_stream_start_duplex()
832 "fail to get stream format %d for isoc %s plug %d:%d\n", in fill_stream_formations()
895 /* the number of plugs for isoc in/out, ext in/out */ in snd_bebob_stream_discover()
899 "fail to get info for isoc/external in/out plugs: %d\n", in snd_bebob_stream_discover()
905 * This module supports at least one isoc input plug and one isoc in snd_bebob_stream_discover()
918 "fail to get type for isoc in plug 0: %d\n", err); in snd_bebob_stream_discover()
933 "fail to get type for isoc out plug 0: %d\n", err); in snd_bebob_stream_discover()
/kernel/linux/linux-6.6/drivers/media/usb/cx231xx/
Dcx231xx.h95 /* number of buffers for isoc transfers */
109 /* time to wait when stopping the isoc transfer */
149 /* max packet size of isoc transaction */
155 /* urb for isoc transfers */
158 /* transfer buffers for isoc transfer */
178 /* isoc urb callback */
422 int max_pkt_size; /* max packet size of isoc transaction */
495 /* Isoc control struct */
504 int max_pkt_size; /* max packet size of isoc transaction */
/kernel/linux/linux-5.10/drivers/media/usb/cx231xx/
Dcx231xx.h95 /* number of buffers for isoc transfers */
109 /* time to wait when stopping the isoc transfer */
149 /* max packet size of isoc transaction */
155 /* urb for isoc transfers */
158 /* transfer buffers for isoc transfer */
178 /* isoc urb callback */
422 int max_pkt_size; /* max packet size of isoc transaction */
497 /* Isoc control struct */
506 int max_pkt_size; /* max packet size of isoc transaction */
/kernel/linux/linux-5.10/sound/firewire/oxfw/
Doxfw-stream.c592 "fail to get current stream format for isoc %s plug %d:%d\n", in assume_stream_formats()
667 "fail to get stream format %d for isoc %s plug %d:%d\n", in fill_stream_formats()
703 "fail to get stream format %d for isoc %s plug %d:%d\n", in fill_stream_formats()
723 /* the number of plugs for isoc in/out, ext in/out */ in snd_oxfw_stream_discover()
727 "fail to get info for isoc/external in/out plugs: %d\n", in snd_oxfw_stream_discover()
742 // The oPCR is not available for isoc communication. in snd_oxfw_stream_discover()
770 // The iPCR is not available for isoc communication. in snd_oxfw_stream_discover()
/kernel/linux/linux-6.6/sound/firewire/oxfw/
Doxfw-stream.c607 "fail to get current stream format for isoc %s plug %d:%d\n", in assume_stream_formats()
682 "fail to get stream format %d for isoc %s plug %d:%d\n", in fill_stream_formats()
718 "fail to get stream format %d for isoc %s plug %d:%d\n", in fill_stream_formats()
738 /* the number of plugs for isoc in/out, ext in/out */ in snd_oxfw_stream_discover()
742 "fail to get info for isoc/external in/out plugs: %d\n", in snd_oxfw_stream_discover()
757 // The oPCR is not available for isoc communication. in snd_oxfw_stream_discover()
785 // The iPCR is not available for isoc communication. in snd_oxfw_stream_discover()
/kernel/linux/linux-6.6/sound/firewire/bebob/
Dbebob_stream.c280 "fail to get channel position for isoc %s plug 0: %d\n", in map_data_channels()
302 "fail to get section type for isoc %s plug 0: %d\n", in map_data_channels()
788 "Fail to get type for isoc %d plug 0: %d\n", plug_dir, err); in fill_stream_formations()
808 "fail to get stream format %d for isoc %d plug %d:%d\n", in fill_stream_formations()
914 /* the number of plugs for isoc in/out, ext in/out */ in snd_bebob_stream_discover()
918 "fail to get info for isoc/external in/out plugs: %d\n", in snd_bebob_stream_discover()
924 * This module supports at least one isoc input plug and one isoc in snd_bebob_stream_discover()

12345678910>>...13