2 * Copyright (c) 2013,2016 Lubomir Rintel
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions, and the following disclaimer,
10 * without modification.
11 * 2. The name of the author may not be used to endorse or promote products
12 * derived from this software without specific prior written permission.
14 * Alternatively, this software may be distributed under the terms of the
15 * GNU General Public License ("GPL").
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 * Fushicai USBTV007 Audio-Video Grabber Driver
33 * http://www.fushicai.com/products_detail/&productId=d05449ee-b690-42f9-a661-aa7353894bed.html
35 * Following LWN articles were very useful in construction of this driver:
36 * Video4Linux2 API series: http://lwn.net/Articles/203924/
37 * videobuf2 API explanation: http://lwn.net/Articles/447435/
38 * Thanks go to Jonathan Corbet for providing this quality documentation.
41 * No physical hardware was harmed running Windows during the
42 * reverse-engineering activity
45 #include <media/v4l2-ioctl.h>
46 #include <media/videobuf2-v4l2.h>
50 static struct usbtv_norm_params norm_params
[] = {
52 .norm
= V4L2_STD_525_60
,
57 .norm
= V4L2_STD_625_50
,
63 static int usbtv_configure_for_norm(struct usbtv
*usbtv
, v4l2_std_id norm
)
66 struct usbtv_norm_params
*params
= NULL
;
68 for (i
= 0; i
< ARRAY_SIZE(norm_params
); i
++) {
69 if (norm_params
[i
].norm
& norm
) {
70 params
= &norm_params
[i
];
76 usbtv
->width
= params
->cap_width
;
77 usbtv
->height
= params
->cap_height
;
78 usbtv
->n_chunks
= usbtv
->width
* usbtv
->height
87 static int usbtv_select_input(struct usbtv
*usbtv
, int input
)
91 static const u16 composite
[][2] = {
92 { USBTV_BASE
+ 0x0105, 0x0060 },
93 { USBTV_BASE
+ 0x011f, 0x00f2 },
94 { USBTV_BASE
+ 0x0127, 0x0060 },
95 { USBTV_BASE
+ 0x00ae, 0x0010 },
96 { USBTV_BASE
+ 0x0239, 0x0060 },
99 static const u16 svideo
[][2] = {
100 { USBTV_BASE
+ 0x0105, 0x0010 },
101 { USBTV_BASE
+ 0x011f, 0x00ff },
102 { USBTV_BASE
+ 0x0127, 0x0060 },
103 { USBTV_BASE
+ 0x00ae, 0x0030 },
104 { USBTV_BASE
+ 0x0239, 0x0060 },
108 case USBTV_COMPOSITE_INPUT
:
109 ret
= usbtv_set_regs(usbtv
, composite
, ARRAY_SIZE(composite
));
111 case USBTV_SVIDEO_INPUT
:
112 ret
= usbtv_set_regs(usbtv
, svideo
, ARRAY_SIZE(svideo
));
119 usbtv
->input
= input
;
124 static uint16_t usbtv_norm_to_16f_reg(v4l2_std_id norm
)
126 /* NTSC M/M-JP/M-KR */
127 if (norm
& V4L2_STD_NTSC
)
130 if (norm
& V4L2_STD_PAL
)
132 /* SECAM B/D/G/H/K/K1/L/Lc */
133 if (norm
& V4L2_STD_SECAM
)
135 if (norm
& V4L2_STD_NTSC_443
)
137 if (norm
& (V4L2_STD_PAL_M
| V4L2_STD_PAL_60
))
139 /* Fallback to automatic detection for other standards */
143 static int usbtv_select_norm(struct usbtv
*usbtv
, v4l2_std_id norm
)
146 /* These are the series of register values used to configure the
147 * decoder for a specific standard.
148 * The first 21 register writes are copied from the
149 * Settings\DecoderDefaults registry keys present in the Windows driver
150 * .INF file, and control various image tuning parameters (color
151 * correction, sharpness, ...).
153 static const u16 pal
[][2] = {
154 /* "AVPAL" tuning sequence from .INF file */
155 { USBTV_BASE
+ 0x0003, 0x0004 },
156 { USBTV_BASE
+ 0x001a, 0x0068 },
157 { USBTV_BASE
+ 0x0100, 0x00d3 },
158 { USBTV_BASE
+ 0x010e, 0x0072 },
159 { USBTV_BASE
+ 0x010f, 0x00a2 },
160 { USBTV_BASE
+ 0x0112, 0x00b0 },
161 { USBTV_BASE
+ 0x0115, 0x0015 },
162 { USBTV_BASE
+ 0x0117, 0x0001 },
163 { USBTV_BASE
+ 0x0118, 0x002c },
164 { USBTV_BASE
+ 0x012d, 0x0010 },
165 { USBTV_BASE
+ 0x012f, 0x0020 },
166 { USBTV_BASE
+ 0x0220, 0x002e },
167 { USBTV_BASE
+ 0x0225, 0x0008 },
168 { USBTV_BASE
+ 0x024e, 0x0002 },
169 { USBTV_BASE
+ 0x024f, 0x0002 },
170 { USBTV_BASE
+ 0x0254, 0x0059 },
171 { USBTV_BASE
+ 0x025a, 0x0016 },
172 { USBTV_BASE
+ 0x025b, 0x0035 },
173 { USBTV_BASE
+ 0x0263, 0x0017 },
174 { USBTV_BASE
+ 0x0266, 0x0016 },
175 { USBTV_BASE
+ 0x0267, 0x0036 },
176 /* End image tuning */
177 { USBTV_BASE
+ 0x024e, 0x0002 },
178 { USBTV_BASE
+ 0x024f, 0x0002 },
181 static const u16 ntsc
[][2] = {
182 /* "AVNTSC" tuning sequence from .INF file */
183 { USBTV_BASE
+ 0x0003, 0x0004 },
184 { USBTV_BASE
+ 0x001a, 0x0079 },
185 { USBTV_BASE
+ 0x0100, 0x00d3 },
186 { USBTV_BASE
+ 0x010e, 0x0068 },
187 { USBTV_BASE
+ 0x010f, 0x009c },
188 { USBTV_BASE
+ 0x0112, 0x00f0 },
189 { USBTV_BASE
+ 0x0115, 0x0015 },
190 { USBTV_BASE
+ 0x0117, 0x0000 },
191 { USBTV_BASE
+ 0x0118, 0x00fc },
192 { USBTV_BASE
+ 0x012d, 0x0004 },
193 { USBTV_BASE
+ 0x012f, 0x0008 },
194 { USBTV_BASE
+ 0x0220, 0x002e },
195 { USBTV_BASE
+ 0x0225, 0x0008 },
196 { USBTV_BASE
+ 0x024e, 0x0002 },
197 { USBTV_BASE
+ 0x024f, 0x0001 },
198 { USBTV_BASE
+ 0x0254, 0x005f },
199 { USBTV_BASE
+ 0x025a, 0x0012 },
200 { USBTV_BASE
+ 0x025b, 0x0001 },
201 { USBTV_BASE
+ 0x0263, 0x001c },
202 { USBTV_BASE
+ 0x0266, 0x0011 },
203 { USBTV_BASE
+ 0x0267, 0x0005 },
204 /* End image tuning */
205 { USBTV_BASE
+ 0x024e, 0x0002 },
206 { USBTV_BASE
+ 0x024f, 0x0002 },
209 static const u16 secam
[][2] = {
210 /* "AVSECAM" tuning sequence from .INF file */
211 { USBTV_BASE
+ 0x0003, 0x0004 },
212 { USBTV_BASE
+ 0x001a, 0x0073 },
213 { USBTV_BASE
+ 0x0100, 0x00dc },
214 { USBTV_BASE
+ 0x010e, 0x0072 },
215 { USBTV_BASE
+ 0x010f, 0x00a2 },
216 { USBTV_BASE
+ 0x0112, 0x0090 },
217 { USBTV_BASE
+ 0x0115, 0x0035 },
218 { USBTV_BASE
+ 0x0117, 0x0001 },
219 { USBTV_BASE
+ 0x0118, 0x0030 },
220 { USBTV_BASE
+ 0x012d, 0x0004 },
221 { USBTV_BASE
+ 0x012f, 0x0008 },
222 { USBTV_BASE
+ 0x0220, 0x002d },
223 { USBTV_BASE
+ 0x0225, 0x0028 },
224 { USBTV_BASE
+ 0x024e, 0x0008 },
225 { USBTV_BASE
+ 0x024f, 0x0002 },
226 { USBTV_BASE
+ 0x0254, 0x0069 },
227 { USBTV_BASE
+ 0x025a, 0x0016 },
228 { USBTV_BASE
+ 0x025b, 0x0035 },
229 { USBTV_BASE
+ 0x0263, 0x0021 },
230 { USBTV_BASE
+ 0x0266, 0x0016 },
231 { USBTV_BASE
+ 0x0267, 0x0036 },
232 /* End image tuning */
233 { USBTV_BASE
+ 0x024e, 0x0002 },
234 { USBTV_BASE
+ 0x024f, 0x0002 },
237 ret
= usbtv_configure_for_norm(usbtv
, norm
);
240 /* Masks for norms using a NTSC or PAL color encoding. */
241 static const v4l2_std_id ntsc_mask
=
242 V4L2_STD_NTSC
| V4L2_STD_NTSC_443
;
243 static const v4l2_std_id pal_mask
=
244 V4L2_STD_PAL
| V4L2_STD_PAL_60
| V4L2_STD_PAL_M
;
246 if (norm
& ntsc_mask
)
247 ret
= usbtv_set_regs(usbtv
, ntsc
, ARRAY_SIZE(ntsc
));
248 else if (norm
& pal_mask
)
249 ret
= usbtv_set_regs(usbtv
, pal
, ARRAY_SIZE(pal
));
250 else if (norm
& V4L2_STD_SECAM
)
251 ret
= usbtv_set_regs(usbtv
, secam
, ARRAY_SIZE(secam
));
257 /* Configure the decoder for the color standard */
258 const u16 cfg
[][2] = {
259 { USBTV_BASE
+ 0x016f, usbtv_norm_to_16f_reg(norm
) }
261 ret
= usbtv_set_regs(usbtv
, cfg
, ARRAY_SIZE(cfg
));
267 static int usbtv_setup_capture(struct usbtv
*usbtv
)
270 static const u16 setup
[][2] = {
271 /* These seem to enable the device. */
272 { USBTV_BASE
+ 0x0008, 0x0001 },
273 { USBTV_BASE
+ 0x01d0, 0x00ff },
274 { USBTV_BASE
+ 0x01d9, 0x0002 },
276 /* These seem to influence color parameters, such as
277 * brightness, etc. */
278 { USBTV_BASE
+ 0x0239, 0x0040 },
279 { USBTV_BASE
+ 0x0240, 0x0000 },
280 { USBTV_BASE
+ 0x0241, 0x0000 },
281 { USBTV_BASE
+ 0x0242, 0x0002 },
282 { USBTV_BASE
+ 0x0243, 0x0080 },
283 { USBTV_BASE
+ 0x0244, 0x0012 },
284 { USBTV_BASE
+ 0x0245, 0x0090 },
285 { USBTV_BASE
+ 0x0246, 0x0000 },
287 { USBTV_BASE
+ 0x0278, 0x002d },
288 { USBTV_BASE
+ 0x0279, 0x000a },
289 { USBTV_BASE
+ 0x027a, 0x0032 },
293 { USBTV_BASE
+ 0x00ac, 0x00c0 },
294 { USBTV_BASE
+ 0x00ad, 0x0000 },
295 { USBTV_BASE
+ 0x00a2, 0x0012 },
296 { USBTV_BASE
+ 0x00a3, 0x00e0 },
297 { USBTV_BASE
+ 0x00a4, 0x0028 },
298 { USBTV_BASE
+ 0x00a5, 0x0082 },
299 { USBTV_BASE
+ 0x00a7, 0x0080 },
300 { USBTV_BASE
+ 0x0000, 0x0014 },
301 { USBTV_BASE
+ 0x0006, 0x0003 },
302 { USBTV_BASE
+ 0x0090, 0x0099 },
303 { USBTV_BASE
+ 0x0091, 0x0090 },
304 { USBTV_BASE
+ 0x0094, 0x0068 },
305 { USBTV_BASE
+ 0x0095, 0x0070 },
306 { USBTV_BASE
+ 0x009c, 0x0030 },
307 { USBTV_BASE
+ 0x009d, 0x00c0 },
308 { USBTV_BASE
+ 0x009e, 0x00e0 },
309 { USBTV_BASE
+ 0x0019, 0x0006 },
310 { USBTV_BASE
+ 0x008c, 0x00ba },
311 { USBTV_BASE
+ 0x0101, 0x00ff },
312 { USBTV_BASE
+ 0x010c, 0x00b3 },
313 { USBTV_BASE
+ 0x01b2, 0x0080 },
314 { USBTV_BASE
+ 0x01b4, 0x00a0 },
315 { USBTV_BASE
+ 0x014c, 0x00ff },
316 { USBTV_BASE
+ 0x014d, 0x00ca },
317 { USBTV_BASE
+ 0x0113, 0x0053 },
318 { USBTV_BASE
+ 0x0119, 0x008a },
319 { USBTV_BASE
+ 0x013c, 0x0003 },
320 { USBTV_BASE
+ 0x0150, 0x009c },
321 { USBTV_BASE
+ 0x0151, 0x0071 },
322 { USBTV_BASE
+ 0x0152, 0x00c6 },
323 { USBTV_BASE
+ 0x0153, 0x0084 },
324 { USBTV_BASE
+ 0x0154, 0x00bc },
325 { USBTV_BASE
+ 0x0155, 0x00a0 },
326 { USBTV_BASE
+ 0x0156, 0x00a0 },
327 { USBTV_BASE
+ 0x0157, 0x009c },
328 { USBTV_BASE
+ 0x0158, 0x001f },
329 { USBTV_BASE
+ 0x0159, 0x0006 },
330 { USBTV_BASE
+ 0x015d, 0x0000 },
333 ret
= usbtv_set_regs(usbtv
, setup
, ARRAY_SIZE(setup
));
337 ret
= usbtv_select_norm(usbtv
, usbtv
->norm
);
341 ret
= usbtv_select_input(usbtv
, usbtv
->input
);
345 ret
= v4l2_ctrl_handler_setup(&usbtv
->ctrl
);
352 /* Copy data from chunk into a frame buffer, deinterlacing the data
353 * into every second line. Unfortunately, they don't align nicely into
354 * 720 pixel lines, as the chunk is 240 words long, which is 480 pixels.
355 * Therefore, we break down the chunk into two halves before copying,
356 * so that we can interleave a line if needed.
358 * Each "chunk" is 240 words; a word in this context equals 4 bytes.
359 * Image format is YUYV/YUV 4:2:2, consisting of Y Cr Y Cb, defining two
360 * pixels, the Cr and Cb shared between the two pixels, but each having
361 * separate Y values. Thus, the 240 words equal 480 pixels. It therefore,
362 * takes 1.5 chunks to make a 720 pixel-wide line for the frame.
363 * The image is interlaced, so there is a "scan" of odd lines, followed
364 * by "scan" of even numbered lines.
366 * Following code is writing the chunks in correct sequence, skipping
367 * the rows based on "odd" value.
368 * line 1: chunk[0][ 0..479] chunk[0][480..959] chunk[1][ 0..479]
369 * line 3: chunk[1][480..959] chunk[2][ 0..479] chunk[2][480..959]
372 static void usbtv_chunk_to_vbuf(u32
*frame
, __be32
*src
, int chunk_no
, int odd
)
376 for (half
= 0; half
< 2; half
++) {
377 int part_no
= chunk_no
* 2 + half
;
378 int line
= part_no
/ 3;
379 int part_index
= (line
* 2 + !odd
) * 3 + (part_no
% 3);
381 u32
*dst
= &frame
[part_index
* USBTV_CHUNK
/2];
383 memcpy(dst
, src
, USBTV_CHUNK
/2 * sizeof(*src
));
384 src
+= USBTV_CHUNK
/2;
388 /* Called for each 256-byte image chunk.
389 * First word identifies the chunk, followed by 240 words of image
390 * data and padding. */
391 static void usbtv_image_chunk(struct usbtv
*usbtv
, __be32
*chunk
)
393 int frame_id
, odd
, chunk_no
;
395 struct usbtv_buf
*buf
;
398 /* Ignore corrupted lines. */
399 if (!USBTV_MAGIC_OK(chunk
))
401 frame_id
= USBTV_FRAME_ID(chunk
);
402 odd
= USBTV_ODD(chunk
);
403 chunk_no
= USBTV_CHUNK_NO(chunk
);
404 if (chunk_no
>= usbtv
->n_chunks
)
407 /* Beginning of a frame. */
409 usbtv
->frame_id
= frame_id
;
410 usbtv
->chunks_done
= 0;
413 if (usbtv
->frame_id
!= frame_id
)
416 spin_lock_irqsave(&usbtv
->buflock
, flags
);
417 if (list_empty(&usbtv
->bufs
)) {
418 /* No free buffers. Userspace likely too slow. */
419 spin_unlock_irqrestore(&usbtv
->buflock
, flags
);
423 /* First available buffer. */
424 buf
= list_first_entry(&usbtv
->bufs
, struct usbtv_buf
, list
);
425 frame
= vb2_plane_vaddr(&buf
->vb
.vb2_buf
, 0);
427 /* Copy the chunk data. */
428 usbtv_chunk_to_vbuf(frame
, &chunk
[1], chunk_no
, odd
);
429 usbtv
->chunks_done
++;
431 /* Last chunk in a field */
432 if (chunk_no
== usbtv
->n_chunks
-1) {
433 /* Last chunk in a frame, signalling an end */
434 if (odd
&& !usbtv
->last_odd
) {
435 int size
= vb2_plane_size(&buf
->vb
.vb2_buf
, 0);
436 enum vb2_buffer_state state
= usbtv
->chunks_done
==
441 buf
->vb
.field
= V4L2_FIELD_INTERLACED
;
442 buf
->vb
.sequence
= usbtv
->sequence
++;
443 buf
->vb
.vb2_buf
.timestamp
= ktime_get_ns();
444 vb2_set_plane_payload(&buf
->vb
.vb2_buf
, 0, size
);
445 vb2_buffer_done(&buf
->vb
.vb2_buf
, state
);
446 list_del(&buf
->list
);
448 usbtv
->last_odd
= odd
;
451 spin_unlock_irqrestore(&usbtv
->buflock
, flags
);
454 /* Got image data. Each packet contains a number of 256-word chunks we
455 * compose the image from. */
456 static void usbtv_iso_cb(struct urb
*ip
)
460 struct usbtv
*usbtv
= (struct usbtv
*)ip
->context
;
462 switch (ip
->status
) {
466 /* Device disconnected or capture stopped? */
472 /* Unknown error. Retry. */
474 dev_warn(usbtv
->dev
, "Bad response for ISO request.\n");
478 for (i
= 0; i
< ip
->number_of_packets
; i
++) {
479 int size
= ip
->iso_frame_desc
[i
].actual_length
;
480 unsigned char *data
= ip
->transfer_buffer
+
481 ip
->iso_frame_desc
[i
].offset
;
484 for (offset
= 0; USBTV_CHUNK_SIZE
* offset
< size
; offset
++)
485 usbtv_image_chunk(usbtv
,
486 (__be32
*)&data
[USBTV_CHUNK_SIZE
* offset
]);
490 ret
= usb_submit_urb(ip
, GFP_ATOMIC
);
492 dev_warn(usbtv
->dev
, "Could not resubmit ISO URB\n");
495 static struct urb
*usbtv_setup_iso_transfer(struct usbtv
*usbtv
)
498 int size
= usbtv
->iso_size
;
501 ip
= usb_alloc_urb(USBTV_ISOC_PACKETS
, GFP_KERNEL
);
505 ip
->dev
= usbtv
->udev
;
507 ip
->pipe
= usb_rcvisocpipe(usbtv
->udev
, USBTV_VIDEO_ENDP
);
509 ip
->transfer_flags
= URB_ISO_ASAP
;
510 ip
->transfer_buffer
= kcalloc(USBTV_ISOC_PACKETS
, size
,
512 if (!ip
->transfer_buffer
) {
516 ip
->complete
= usbtv_iso_cb
;
517 ip
->number_of_packets
= USBTV_ISOC_PACKETS
;
518 ip
->transfer_buffer_length
= size
* USBTV_ISOC_PACKETS
;
519 for (i
= 0; i
< USBTV_ISOC_PACKETS
; i
++) {
520 ip
->iso_frame_desc
[i
].offset
= size
* i
;
521 ip
->iso_frame_desc
[i
].length
= size
;
527 static void usbtv_stop(struct usbtv
*usbtv
)
532 /* Cancel running transfers. */
533 for (i
= 0; i
< USBTV_ISOC_TRANSFERS
; i
++) {
534 struct urb
*ip
= usbtv
->isoc_urbs
[i
];
539 kfree(ip
->transfer_buffer
);
541 usbtv
->isoc_urbs
[i
] = NULL
;
544 /* Return buffers to userspace. */
545 spin_lock_irqsave(&usbtv
->buflock
, flags
);
546 while (!list_empty(&usbtv
->bufs
)) {
547 struct usbtv_buf
*buf
= list_first_entry(&usbtv
->bufs
,
548 struct usbtv_buf
, list
);
549 vb2_buffer_done(&buf
->vb
.vb2_buf
, VB2_BUF_STATE_ERROR
);
550 list_del(&buf
->list
);
552 spin_unlock_irqrestore(&usbtv
->buflock
, flags
);
555 static int usbtv_start(struct usbtv
*usbtv
)
560 usbtv_audio_suspend(usbtv
);
562 ret
= usb_set_interface(usbtv
->udev
, 0, 0);
566 ret
= usbtv_setup_capture(usbtv
);
570 ret
= usb_set_interface(usbtv
->udev
, 0, 1);
574 usbtv_audio_resume(usbtv
);
576 for (i
= 0; i
< USBTV_ISOC_TRANSFERS
; i
++) {
579 ip
= usbtv_setup_iso_transfer(usbtv
);
584 usbtv
->isoc_urbs
[i
] = ip
;
586 ret
= usb_submit_urb(ip
, GFP_KERNEL
);
598 static int usbtv_querycap(struct file
*file
, void *priv
,
599 struct v4l2_capability
*cap
)
601 struct usbtv
*dev
= video_drvdata(file
);
603 strscpy(cap
->driver
, "usbtv", sizeof(cap
->driver
));
604 strscpy(cap
->card
, "usbtv", sizeof(cap
->card
));
605 usb_make_path(dev
->udev
, cap
->bus_info
, sizeof(cap
->bus_info
));
609 static int usbtv_enum_input(struct file
*file
, void *priv
,
610 struct v4l2_input
*i
)
612 struct usbtv
*dev
= video_drvdata(file
);
615 case USBTV_COMPOSITE_INPUT
:
616 strscpy(i
->name
, "Composite", sizeof(i
->name
));
618 case USBTV_SVIDEO_INPUT
:
619 strscpy(i
->name
, "S-Video", sizeof(i
->name
));
625 i
->type
= V4L2_INPUT_TYPE_CAMERA
;
626 i
->std
= dev
->vdev
.tvnorms
;
630 static int usbtv_enum_fmt_vid_cap(struct file
*file
, void *priv
,
631 struct v4l2_fmtdesc
*f
)
636 f
->pixelformat
= V4L2_PIX_FMT_YUYV
;
640 static int usbtv_fmt_vid_cap(struct file
*file
, void *priv
,
641 struct v4l2_format
*f
)
643 struct usbtv
*usbtv
= video_drvdata(file
);
645 f
->fmt
.pix
.width
= usbtv
->width
;
646 f
->fmt
.pix
.height
= usbtv
->height
;
647 f
->fmt
.pix
.pixelformat
= V4L2_PIX_FMT_YUYV
;
648 f
->fmt
.pix
.field
= V4L2_FIELD_INTERLACED
;
649 f
->fmt
.pix
.bytesperline
= usbtv
->width
* 2;
650 f
->fmt
.pix
.sizeimage
= (f
->fmt
.pix
.bytesperline
* f
->fmt
.pix
.height
);
651 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
656 static int usbtv_g_std(struct file
*file
, void *priv
, v4l2_std_id
*norm
)
658 struct usbtv
*usbtv
= video_drvdata(file
);
663 static int usbtv_s_std(struct file
*file
, void *priv
, v4l2_std_id norm
)
666 struct usbtv
*usbtv
= video_drvdata(file
);
668 if (norm
& USBTV_TV_STD
)
669 ret
= usbtv_select_norm(usbtv
, norm
);
674 static int usbtv_g_input(struct file
*file
, void *priv
, unsigned int *i
)
676 struct usbtv
*usbtv
= video_drvdata(file
);
681 static int usbtv_s_input(struct file
*file
, void *priv
, unsigned int i
)
683 struct usbtv
*usbtv
= video_drvdata(file
);
685 return usbtv_select_input(usbtv
, i
);
688 static struct v4l2_ioctl_ops usbtv_ioctl_ops
= {
689 .vidioc_querycap
= usbtv_querycap
,
690 .vidioc_enum_input
= usbtv_enum_input
,
691 .vidioc_enum_fmt_vid_cap
= usbtv_enum_fmt_vid_cap
,
692 .vidioc_g_fmt_vid_cap
= usbtv_fmt_vid_cap
,
693 .vidioc_try_fmt_vid_cap
= usbtv_fmt_vid_cap
,
694 .vidioc_s_fmt_vid_cap
= usbtv_fmt_vid_cap
,
695 .vidioc_g_std
= usbtv_g_std
,
696 .vidioc_s_std
= usbtv_s_std
,
697 .vidioc_g_input
= usbtv_g_input
,
698 .vidioc_s_input
= usbtv_s_input
,
700 .vidioc_reqbufs
= vb2_ioctl_reqbufs
,
701 .vidioc_prepare_buf
= vb2_ioctl_prepare_buf
,
702 .vidioc_querybuf
= vb2_ioctl_querybuf
,
703 .vidioc_create_bufs
= vb2_ioctl_create_bufs
,
704 .vidioc_qbuf
= vb2_ioctl_qbuf
,
705 .vidioc_dqbuf
= vb2_ioctl_dqbuf
,
706 .vidioc_streamon
= vb2_ioctl_streamon
,
707 .vidioc_streamoff
= vb2_ioctl_streamoff
,
710 static const struct v4l2_file_operations usbtv_fops
= {
711 .owner
= THIS_MODULE
,
712 .unlocked_ioctl
= video_ioctl2
,
713 .mmap
= vb2_fop_mmap
,
714 .open
= v4l2_fh_open
,
715 .release
= vb2_fop_release
,
716 .read
= vb2_fop_read
,
717 .poll
= vb2_fop_poll
,
720 static int usbtv_queue_setup(struct vb2_queue
*vq
,
721 unsigned int *nbuffers
,
722 unsigned int *nplanes
, unsigned int sizes
[], struct device
*alloc_devs
[])
724 struct usbtv
*usbtv
= vb2_get_drv_priv(vq
);
725 unsigned size
= USBTV_CHUNK
* usbtv
->n_chunks
* 2 * sizeof(u32
);
727 if (vq
->num_buffers
+ *nbuffers
< 2)
728 *nbuffers
= 2 - vq
->num_buffers
;
730 return sizes
[0] < size
? -EINVAL
: 0;
737 static void usbtv_buf_queue(struct vb2_buffer
*vb
)
739 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
740 struct usbtv
*usbtv
= vb2_get_drv_priv(vb
->vb2_queue
);
741 struct usbtv_buf
*buf
= container_of(vbuf
, struct usbtv_buf
, vb
);
744 if (usbtv
->udev
== NULL
) {
745 vb2_buffer_done(vb
, VB2_BUF_STATE_ERROR
);
749 spin_lock_irqsave(&usbtv
->buflock
, flags
);
750 list_add_tail(&buf
->list
, &usbtv
->bufs
);
751 spin_unlock_irqrestore(&usbtv
->buflock
, flags
);
754 static int usbtv_start_streaming(struct vb2_queue
*vq
, unsigned int count
)
756 struct usbtv
*usbtv
= vb2_get_drv_priv(vq
);
758 if (usbtv
->udev
== NULL
)
763 return usbtv_start(usbtv
);
766 static void usbtv_stop_streaming(struct vb2_queue
*vq
)
768 struct usbtv
*usbtv
= vb2_get_drv_priv(vq
);
774 static const struct vb2_ops usbtv_vb2_ops
= {
775 .queue_setup
= usbtv_queue_setup
,
776 .buf_queue
= usbtv_buf_queue
,
777 .start_streaming
= usbtv_start_streaming
,
778 .stop_streaming
= usbtv_stop_streaming
,
779 .wait_prepare
= vb2_ops_wait_prepare
,
780 .wait_finish
= vb2_ops_wait_finish
,
783 static int usbtv_s_ctrl(struct v4l2_ctrl
*ctrl
)
785 struct usbtv
*usbtv
= container_of(ctrl
->handler
, struct usbtv
,
791 data
= kmalloc(3, GFP_KERNEL
);
796 * Read in the current brightness/contrast registers. We need them
797 * both, because the values are for some reason interleaved.
799 if (ctrl
->id
== V4L2_CID_BRIGHTNESS
|| ctrl
->id
== V4L2_CID_CONTRAST
) {
800 ret
= usb_control_msg(usbtv
->udev
,
801 usb_rcvctrlpipe(usbtv
->udev
, 0), USBTV_CONTROL_REG
,
802 USB_DIR_IN
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
803 0, USBTV_BASE
+ 0x0244, (void *)data
, 3,
804 USB_CTRL_GET_TIMEOUT
);
810 case V4L2_CID_BRIGHTNESS
:
811 index
= USBTV_BASE
+ 0x0244;
814 data
[0] |= (ctrl
->val
>> 8) & 0xf;
815 data
[2] = ctrl
->val
& 0xff;
817 case V4L2_CID_CONTRAST
:
818 index
= USBTV_BASE
+ 0x0244;
821 data
[0] |= (ctrl
->val
>> 4) & 0xf0;
822 data
[1] = ctrl
->val
& 0xff;
824 case V4L2_CID_SATURATION
:
825 index
= USBTV_BASE
+ 0x0242;
826 data
[0] = ctrl
->val
>> 8;
827 data
[1] = ctrl
->val
& 0xff;
831 index
= USBTV_BASE
+ 0x0240;
834 data
[0] = 0x92 + (ctrl
->val
>> 8);
835 data
[1] = ctrl
->val
& 0xff;
837 data
[0] = 0x82 + (-ctrl
->val
>> 8);
838 data
[1] = -ctrl
->val
& 0xff;
841 case V4L2_CID_SHARPNESS
:
842 index
= USBTV_BASE
+ 0x0239;
852 ret
= usb_control_msg(usbtv
->udev
, usb_sndctrlpipe(usbtv
->udev
, 0),
854 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
855 0, index
, (void *)data
, size
, USB_CTRL_SET_TIMEOUT
);
859 dev_warn(usbtv
->dev
, "Failed to submit a control request.\n");
865 static const struct v4l2_ctrl_ops usbtv_ctrl_ops
= {
866 .s_ctrl
= usbtv_s_ctrl
,
869 static void usbtv_release(struct v4l2_device
*v4l2_dev
)
871 struct usbtv
*usbtv
= container_of(v4l2_dev
, struct usbtv
, v4l2_dev
);
873 v4l2_device_unregister(&usbtv
->v4l2_dev
);
874 v4l2_ctrl_handler_free(&usbtv
->ctrl
);
875 vb2_queue_release(&usbtv
->vb2q
);
879 int usbtv_video_init(struct usbtv
*usbtv
)
883 (void)usbtv_configure_for_norm(usbtv
, V4L2_STD_525_60
);
885 spin_lock_init(&usbtv
->buflock
);
886 mutex_init(&usbtv
->v4l2_lock
);
887 mutex_init(&usbtv
->vb2q_lock
);
888 INIT_LIST_HEAD(&usbtv
->bufs
);
890 /* videobuf2 structure */
891 usbtv
->vb2q
.type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
892 usbtv
->vb2q
.io_modes
= VB2_MMAP
| VB2_USERPTR
| VB2_READ
;
893 usbtv
->vb2q
.drv_priv
= usbtv
;
894 usbtv
->vb2q
.buf_struct_size
= sizeof(struct usbtv_buf
);
895 usbtv
->vb2q
.ops
= &usbtv_vb2_ops
;
896 usbtv
->vb2q
.mem_ops
= &vb2_vmalloc_memops
;
897 usbtv
->vb2q
.timestamp_flags
= V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC
;
898 usbtv
->vb2q
.lock
= &usbtv
->vb2q_lock
;
899 ret
= vb2_queue_init(&usbtv
->vb2q
);
901 dev_warn(usbtv
->dev
, "Could not initialize videobuf2 queue\n");
906 v4l2_ctrl_handler_init(&usbtv
->ctrl
, 4);
907 v4l2_ctrl_new_std(&usbtv
->ctrl
, &usbtv_ctrl_ops
,
908 V4L2_CID_CONTRAST
, 0, 0x3ff, 1, 0x1d0);
909 v4l2_ctrl_new_std(&usbtv
->ctrl
, &usbtv_ctrl_ops
,
910 V4L2_CID_BRIGHTNESS
, 0, 0x3ff, 1, 0x1c0);
911 v4l2_ctrl_new_std(&usbtv
->ctrl
, &usbtv_ctrl_ops
,
912 V4L2_CID_SATURATION
, 0, 0x3ff, 1, 0x200);
913 v4l2_ctrl_new_std(&usbtv
->ctrl
, &usbtv_ctrl_ops
,
914 V4L2_CID_HUE
, -0xdff, 0xdff, 1, 0x000);
915 v4l2_ctrl_new_std(&usbtv
->ctrl
, &usbtv_ctrl_ops
,
916 V4L2_CID_SHARPNESS
, 0x0, 0xff, 1, 0x60);
917 ret
= usbtv
->ctrl
.error
;
919 dev_warn(usbtv
->dev
, "Could not initialize controls\n");
924 usbtv
->v4l2_dev
.ctrl_handler
= &usbtv
->ctrl
;
925 usbtv
->v4l2_dev
.release
= usbtv_release
;
926 ret
= v4l2_device_register(usbtv
->dev
, &usbtv
->v4l2_dev
);
928 dev_warn(usbtv
->dev
, "Could not register v4l2 device\n");
932 /* Video structure */
933 strscpy(usbtv
->vdev
.name
, "usbtv", sizeof(usbtv
->vdev
.name
));
934 usbtv
->vdev
.v4l2_dev
= &usbtv
->v4l2_dev
;
935 usbtv
->vdev
.release
= video_device_release_empty
;
936 usbtv
->vdev
.fops
= &usbtv_fops
;
937 usbtv
->vdev
.ioctl_ops
= &usbtv_ioctl_ops
;
938 usbtv
->vdev
.tvnorms
= USBTV_TV_STD
;
939 usbtv
->vdev
.queue
= &usbtv
->vb2q
;
940 usbtv
->vdev
.lock
= &usbtv
->v4l2_lock
;
941 usbtv
->vdev
.device_caps
= V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_READWRITE
|
943 video_set_drvdata(&usbtv
->vdev
, usbtv
);
944 ret
= video_register_device(&usbtv
->vdev
, VFL_TYPE_GRABBER
, -1);
946 dev_warn(usbtv
->dev
, "Could not register video device\n");
953 v4l2_device_unregister(&usbtv
->v4l2_dev
);
956 v4l2_ctrl_handler_free(&usbtv
->ctrl
);
957 vb2_queue_release(&usbtv
->vb2q
);
962 void usbtv_video_free(struct usbtv
*usbtv
)
964 mutex_lock(&usbtv
->vb2q_lock
);
965 mutex_lock(&usbtv
->v4l2_lock
);
968 video_unregister_device(&usbtv
->vdev
);
969 v4l2_device_disconnect(&usbtv
->v4l2_dev
);
971 mutex_unlock(&usbtv
->v4l2_lock
);
972 mutex_unlock(&usbtv
->vb2q_lock
);
974 v4l2_device_put(&usbtv
->v4l2_dev
);