blob: 62182e311060d09497c01c7bb8081435fb3b6951 [file] [log] [blame]
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001/*
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -03002 em28xx-video.c - driver for Empia EM2800/EM2820/2840 USB
3 video capture devices
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08004
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -08005 Copyright (C) 2005 Ludovico Cavedon <cavedon@sssup.it>
6 Markus Rechberger <mrechberger@gmail.com>
Mauro Carvalho Chehab2e7c6dc2006-04-03 07:53:40 -03007 Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -08008 Sascha Sommer <saschasommer@freenet.de>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08009
Mauro Carvalho Chehab439090d2006-01-23 17:10:54 -020010 Some parts based on SN9C10x PC Camera Controllers GPL driver made
11 by Luca Risolia <luca.risolia@studio.unibo.it>
12
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080013 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 */
27
28#include <linux/init.h>
29#include <linux/list.h>
30#include <linux/module.h>
31#include <linux/kernel.h>
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -020032#include <linux/bitmap.h>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080033#include <linux/usb.h>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080034#include <linux/i2c.h>
Trent Piepho6d35c8f2007-11-01 01:16:09 -030035#include <linux/mm.h>
Ingo Molnar1e4baed2006-01-15 07:52:23 -020036#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080038
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -080039#include "em28xx.h"
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -020040#include <media/v4l2-common.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030041#include <media/v4l2-ioctl.h>
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -030042#include <media/v4l2-chip-ident.h>
Hans Verkuil2474ed42006-03-19 12:35:57 -030043#include <media/msp3400.h>
Mauro Carvalho Chehabed086312008-01-24 06:59:20 -030044#include <media/tuner.h>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080045
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -080046#define DRIVER_AUTHOR "Ludovico Cavedon <cavedon@sssup.it>, " \
47 "Markus Rechberger <mrechberger@gmail.com>, " \
Mauro Carvalho Chehab2e7c6dc2006-04-03 07:53:40 -030048 "Mauro Carvalho Chehab <mchehab@infradead.org>, " \
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -080049 "Sascha Sommer <saschasommer@freenet.de>"
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080050
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -080051#define DRIVER_DESC "Empia em28xx based USB video device driver"
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -030052
53#define EM28XX_VERSION "0.1.3"
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080054
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -080055#define em28xx_videodbg(fmt, arg...) do {\
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080056 if (video_debug) \
57 printk(KERN_INFO "%s %s :"fmt, \
Harvey Harrisond80e1342008-04-08 23:20:00 -030058 dev->name, __func__ , ##arg); } while (0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080059
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -030060static unsigned int isoc_debug;
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -030061module_param(isoc_debug, int, 0644);
62MODULE_PARM_DESC(isoc_debug, "enable debug messages [isoc transfers]");
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -030063
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -030064#define em28xx_isocdbg(fmt, arg...) \
65do {\
66 if (isoc_debug) { \
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -030067 printk(KERN_INFO "%s %s :"fmt, \
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -030068 dev->name, __func__ , ##arg); \
69 } \
70 } while (0)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -030071
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080072MODULE_AUTHOR(DRIVER_AUTHOR);
73MODULE_DESCRIPTION(DRIVER_DESC);
74MODULE_LICENSE("GPL");
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -030075MODULE_VERSION(EM28XX_VERSION);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080076
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -020077static unsigned int video_nr[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -030078static unsigned int vbi_nr[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
79static unsigned int radio_nr[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
80
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -020081module_param_array(video_nr, int, NULL, 0444);
82module_param_array(vbi_nr, int, NULL, 0444);
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -030083module_param_array(radio_nr, int, NULL, 0444);
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -030084MODULE_PARM_DESC(video_nr, "video device numbers");
85MODULE_PARM_DESC(vbi_nr, "vbi device numbers");
86MODULE_PARM_DESC(radio_nr, "radio device numbers");
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -080087
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030088static unsigned int video_debug;
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -030089module_param(video_debug, int, 0644);
90MODULE_PARM_DESC(video_debug, "enable debug messages [video]");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080091
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -030092/* supported video standards */
93static struct em28xx_fmt format[] = {
94 {
Mauro Carvalho Chehab58fc1ce2009-07-03 02:54:18 -030095 .name = "16 bpp YUY2, 4:2:2, packed",
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -030096 .fourcc = V4L2_PIX_FMT_YUYV,
97 .depth = 16,
Devin Heitmueller3fbf9302008-12-29 23:34:37 -030098 .reg = EM28XX_OUTFMT_YUV422_Y0UY1V,
Mauro Carvalho Chehab43cb9fe2009-06-30 08:36:17 -030099 }, {
Mauro Carvalho Chehab58fc1ce2009-07-03 02:54:18 -0300100 .name = "16 bpp RGB 565, LE",
Mauro Carvalho Chehab43cb9fe2009-06-30 08:36:17 -0300101 .fourcc = V4L2_PIX_FMT_RGB565,
102 .depth = 16,
Mauro Carvalho Chehab58fc1ce2009-07-03 02:54:18 -0300103 .reg = EM28XX_OUTFMT_RGB_16_656,
104 }, {
105 .name = "8 bpp Bayer BGBG..GRGR",
106 .fourcc = V4L2_PIX_FMT_SBGGR8,
107 .depth = 8,
108 .reg = EM28XX_OUTFMT_RGB_8_BGBG,
109 }, {
110 .name = "8 bpp Bayer GRGR..BGBG",
111 .fourcc = V4L2_PIX_FMT_SGRBG8,
112 .depth = 8,
113 .reg = EM28XX_OUTFMT_RGB_8_GRGR,
114 }, {
115 .name = "8 bpp Bayer GBGB..RGRG",
116 .fourcc = V4L2_PIX_FMT_SGBRG8,
117 .depth = 8,
118 .reg = EM28XX_OUTFMT_RGB_8_GBGB,
119 }, {
120 .name = "12 bpp YUV411",
121 .fourcc = V4L2_PIX_FMT_YUV411P,
122 .depth = 12,
123 .reg = EM28XX_OUTFMT_YUV411,
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -0300124 },
125};
126
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800127/* supported controls */
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200128/* Common to all boards */
Mauro Carvalho Chehabed10daa2009-07-19 09:10:06 -0300129static struct v4l2_queryctrl ac97_qctrl[] = {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800130 {
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200131 .id = V4L2_CID_AUDIO_VOLUME,
132 .type = V4L2_CTRL_TYPE_INTEGER,
133 .name = "Volume",
134 .minimum = 0x0,
135 .maximum = 0x1f,
136 .step = 0x1,
137 .default_value = 0x1f,
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -0300138 .flags = V4L2_CTRL_FLAG_SLIDER,
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300139 }, {
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200140 .id = V4L2_CID_AUDIO_MUTE,
141 .type = V4L2_CTRL_TYPE_BOOLEAN,
142 .name = "Mute",
143 .minimum = 0,
144 .maximum = 1,
145 .step = 1,
146 .default_value = 1,
147 .flags = 0,
148 }
149};
150
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300151/* ------------------------------------------------------------------
152 DMA and thread functions
153 ------------------------------------------------------------------*/
154
155/*
156 * Announces that a buffer were filled and request the next
157 */
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300158static inline void buffer_filled(struct em28xx *dev,
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300159 struct em28xx_dmaqueue *dma_q,
160 struct em28xx_buffer *buf)
161{
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300162 /* Advice that buffer was filled */
163 em28xx_isocdbg("[%p/%d] wakeup\n", buf, buf->vb.i);
164 buf->vb.state = VIDEOBUF_DONE;
165 buf->vb.field_count++;
166 do_gettimeofday(&buf->vb.ts);
167
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300168 dev->isoc_ctl.vid_buf = NULL;
169
170 list_del(&buf->vb.queue);
171 wake_up(&buf->vb.done);
172}
173
174static inline void vbi_buffer_filled(struct em28xx *dev,
175 struct em28xx_dmaqueue *dma_q,
176 struct em28xx_buffer *buf)
177{
178 /* Advice that buffer was filled */
179 em28xx_isocdbg("[%p/%d] wakeup\n", buf, buf->vb.i);
180
181 buf->vb.state = VIDEOBUF_DONE;
182 buf->vb.field_count++;
183 do_gettimeofday(&buf->vb.ts);
184
185 dev->isoc_ctl.vbi_buf = NULL;
Mauro Carvalho Chehabcb784722008-04-13 15:06:52 -0300186
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300187 list_del(&buf->vb.queue);
188 wake_up(&buf->vb.done);
189}
190
191/*
192 * Identify the buffer header type and properly handles
193 */
194static void em28xx_copy_video(struct em28xx *dev,
195 struct em28xx_dmaqueue *dma_q,
196 struct em28xx_buffer *buf,
197 unsigned char *p,
198 unsigned char *outp, unsigned long len)
199{
200 void *fieldstart, *startwrite, *startread;
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300201 int linesdone, currlinedone, offset, lencopy, remain;
Mauro Carvalho Chehab44dc7332008-04-13 15:11:08 -0300202 int bytesperline = dev->width << 1;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300203
204 if (dma_q->pos + len > buf->vb.size)
205 len = buf->vb.size - dma_q->pos;
206
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300207 startread = p;
208 remain = len;
209
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -0300210 if (dev->progressive)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300211 fieldstart = outp;
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -0300212 else {
213 /* Interlaces two half frames */
214 if (buf->top_field)
215 fieldstart = outp;
216 else
217 fieldstart = outp + bytesperline;
218 }
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300219
Mauro Carvalho Chehab44dc7332008-04-13 15:11:08 -0300220 linesdone = dma_q->pos / bytesperline;
221 currlinedone = dma_q->pos % bytesperline;
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -0300222
223 if (dev->progressive)
224 offset = linesdone * bytesperline + currlinedone;
225 else
226 offset = linesdone * bytesperline * 2 + currlinedone;
227
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300228 startwrite = fieldstart + offset;
Mauro Carvalho Chehab44dc7332008-04-13 15:11:08 -0300229 lencopy = bytesperline - currlinedone;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300230 lencopy = lencopy > remain ? remain : lencopy;
231
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300232 if ((char *)startwrite + lencopy > (char *)outp + buf->vb.size) {
Mauro Carvalho Chehabea8df7e2008-04-13 14:39:29 -0300233 em28xx_isocdbg("Overflow of %zi bytes past buffer end (1)\n",
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300234 ((char *)startwrite + lencopy) -
235 ((char *)outp + buf->vb.size));
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300236 remain = (char *)outp + buf->vb.size - (char *)startwrite;
237 lencopy = remain;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300238 }
Aidan Thorntone0fadfd2008-04-13 14:56:02 -0300239 if (lencopy <= 0)
240 return;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300241 memcpy(startwrite, startread, lencopy);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300242
243 remain -= lencopy;
244
245 while (remain > 0) {
Mauro Carvalho Chehab44dc7332008-04-13 15:11:08 -0300246 startwrite += lencopy + bytesperline;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300247 startread += lencopy;
Mauro Carvalho Chehab44dc7332008-04-13 15:11:08 -0300248 if (bytesperline > remain)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300249 lencopy = remain;
250 else
Mauro Carvalho Chehab44dc7332008-04-13 15:11:08 -0300251 lencopy = bytesperline;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300252
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300253 if ((char *)startwrite + lencopy > (char *)outp +
254 buf->vb.size) {
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300255 em28xx_isocdbg("Overflow of %zi bytes past buffer end"
256 "(2)\n",
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300257 ((char *)startwrite + lencopy) -
258 ((char *)outp + buf->vb.size));
259 lencopy = remain = (char *)outp + buf->vb.size -
260 (char *)startwrite;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300261 }
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300262 if (lencopy <= 0)
263 break;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300264
265 memcpy(startwrite, startread, lencopy);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300266
267 remain -= lencopy;
268 }
269
270 dma_q->pos += len;
271}
272
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300273static void em28xx_copy_vbi(struct em28xx *dev,
274 struct em28xx_dmaqueue *dma_q,
275 struct em28xx_buffer *buf,
276 unsigned char *p,
277 unsigned char *outp, unsigned long len)
278{
279 void *startwrite, *startread;
280 int offset;
Julia Lawall6b81bef2010-08-27 02:57:18 -0300281 int bytesperline;
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300282
283 if (dev == NULL) {
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300284 em28xx_isocdbg("dev is null\n");
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300285 return;
286 }
Julia Lawall6b81bef2010-08-27 02:57:18 -0300287 bytesperline = dev->vbi_width;
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300288
289 if (dma_q == NULL) {
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300290 em28xx_isocdbg("dma_q is null\n");
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300291 return;
292 }
293 if (buf == NULL) {
294 return;
295 }
296 if (p == NULL) {
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300297 em28xx_isocdbg("p is null\n");
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300298 return;
299 }
300 if (outp == NULL) {
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300301 em28xx_isocdbg("outp is null\n");
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300302 return;
303 }
304
305 if (dma_q->pos + len > buf->vb.size)
306 len = buf->vb.size - dma_q->pos;
307
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300308 startread = p;
309
310 startwrite = outp + dma_q->pos;
311 offset = dma_q->pos;
312
313 /* Make sure the bottom field populates the second half of the frame */
314 if (buf->top_field == 0) {
Devin Heitmueller66d9cba2009-11-24 23:17:25 -0300315 startwrite += bytesperline * dev->vbi_height;
316 offset += bytesperline * dev->vbi_height;
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300317 }
318
319 memcpy(startwrite, startread, len);
320 dma_q->pos += len;
321}
322
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300323static inline void print_err_status(struct em28xx *dev,
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300324 int packet, int status)
325{
326 char *errmsg = "Unknown";
327
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300328 switch (status) {
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300329 case -ENOENT:
330 errmsg = "unlinked synchronuously";
331 break;
332 case -ECONNRESET:
333 errmsg = "unlinked asynchronuously";
334 break;
335 case -ENOSR:
336 errmsg = "Buffer error (overrun)";
337 break;
338 case -EPIPE:
339 errmsg = "Stalled (device not responding)";
340 break;
341 case -EOVERFLOW:
342 errmsg = "Babble (bad cable?)";
343 break;
344 case -EPROTO:
345 errmsg = "Bit-stuff error (bad cable?)";
346 break;
347 case -EILSEQ:
348 errmsg = "CRC/Timeout (could be anything)";
349 break;
350 case -ETIME:
351 errmsg = "Device does not respond";
352 break;
353 }
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300354 if (packet < 0) {
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300355 em28xx_isocdbg("URB status %d [%s].\n", status, errmsg);
356 } else {
357 em28xx_isocdbg("URB packet %d, status %d [%s].\n",
358 packet, status, errmsg);
359 }
360}
361
362/*
363 * video-buf generic routine to get the next available buffer
364 */
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300365static inline void get_next_buf(struct em28xx_dmaqueue *dma_q,
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300366 struct em28xx_buffer **buf)
367{
368 struct em28xx *dev = container_of(dma_q, struct em28xx, vidq);
Mauro Carvalho Chehabdbecb442008-04-13 15:08:55 -0300369 char *outp;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300370
Mauro Carvalho Chehabdbecb442008-04-13 15:08:55 -0300371 if (list_empty(&dma_q->active)) {
372 em28xx_isocdbg("No active queue to serve\n");
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300373 dev->isoc_ctl.vid_buf = NULL;
Mauro Carvalho Chehabdbecb442008-04-13 15:08:55 -0300374 *buf = NULL;
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300375 return;
Mauro Carvalho Chehabdbecb442008-04-13 15:08:55 -0300376 }
377
Mauro Carvalho Chehabdbecb442008-04-13 15:08:55 -0300378 /* Get the next buffer */
379 *buf = list_entry(dma_q->active.next, struct em28xx_buffer, vb.queue);
380
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300381 /* Cleans up buffer - Useful for testing for frame/URB loss */
Mauro Carvalho Chehabdbecb442008-04-13 15:08:55 -0300382 outp = videobuf_to_vmalloc(&(*buf)->vb);
383 memset(outp, 0, (*buf)->vb.size);
Mauro Carvalho Chehabcb784722008-04-13 15:06:52 -0300384
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300385 dev->isoc_ctl.vid_buf = *buf;
386
387 return;
388}
389
390/*
391 * video-buf generic routine to get the next available VBI buffer
392 */
393static inline void vbi_get_next_buf(struct em28xx_dmaqueue *dma_q,
394 struct em28xx_buffer **buf)
395{
396 struct em28xx *dev = container_of(dma_q, struct em28xx, vbiq);
397 char *outp;
398
399 if (list_empty(&dma_q->active)) {
400 em28xx_isocdbg("No active queue to serve\n");
401 dev->isoc_ctl.vbi_buf = NULL;
402 *buf = NULL;
403 return;
404 }
405
406 /* Get the next buffer */
407 *buf = list_entry(dma_q->active.next, struct em28xx_buffer, vb.queue);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300408 /* Cleans up buffer - Useful for testing for frame/URB loss */
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300409 outp = videobuf_to_vmalloc(&(*buf)->vb);
410 memset(outp, 0x00, (*buf)->vb.size);
411
412 dev->isoc_ctl.vbi_buf = *buf;
Mauro Carvalho Chehabcb784722008-04-13 15:06:52 -0300413
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300414 return;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300415}
416
417/*
418 * Controls the isoc copy of each urb packet
419 */
Aidan Thornton579f72e2008-04-17 21:40:16 -0300420static inline int em28xx_isoc_copy(struct em28xx *dev, struct urb *urb)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300421{
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300422 struct em28xx_buffer *buf;
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300423 struct em28xx_dmaqueue *dma_q = &dev->vidq;
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300424 unsigned char *outp = NULL;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300425 int i, len = 0, rc = 1;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300426 unsigned char *p;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300427
428 if (!dev)
429 return 0;
430
431 if ((dev->state & DEV_DISCONNECTED) || (dev->state & DEV_MISCONFIGURED))
432 return 0;
433
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300434 if (urb->status < 0) {
435 print_err_status(dev, -1, urb->status);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300436 if (urb->status == -ENOENT)
437 return 0;
438 }
439
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300440 buf = dev->isoc_ctl.vid_buf;
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300441 if (buf != NULL)
442 outp = videobuf_to_vmalloc(&buf->vb);
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300443
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300444 for (i = 0; i < urb->number_of_packets; i++) {
445 int status = urb->iso_frame_desc[i].status;
446
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300447 if (status < 0) {
448 print_err_status(dev, i, status);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300449 if (urb->iso_frame_desc[i].status != -EPROTO)
450 continue;
451 }
452
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300453 len = urb->iso_frame_desc[i].actual_length - 4;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300454
455 if (urb->iso_frame_desc[i].actual_length <= 0) {
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300456 /* em28xx_isocdbg("packet %d is empty",i); - spammy */
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300457 continue;
458 }
459 if (urb->iso_frame_desc[i].actual_length >
460 dev->max_pkt_size) {
461 em28xx_isocdbg("packet bigger than packet size");
462 continue;
463 }
464
465 p = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300466
467 /* FIXME: incomplete buffer checks where removed to make
468 logic simpler. Impacts of those changes should be evaluated
469 */
Mauro Carvalho Chehabb4916f82008-04-13 15:09:14 -0300470 if (p[0] == 0x33 && p[1] == 0x95 && p[2] == 0x00) {
471 em28xx_isocdbg("VBI HEADER!!!\n");
472 /* FIXME: Should add vbi copy */
473 continue;
474 }
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300475 if (p[0] == 0x22 && p[1] == 0x5a) {
Mauro Carvalho Chehab78bb3942008-04-13 14:56:25 -0300476 em28xx_isocdbg("Video frame %d, length=%i, %s\n", p[2],
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300477 len, (p[2] & 1) ? "odd" : "even");
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300478
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -0300479 if (dev->progressive || !(p[2] & 1)) {
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300480 if (buf != NULL)
481 buffer_filled(dev, dma_q, buf);
482 get_next_buf(dma_q, &buf);
483 if (buf == NULL)
484 outp = NULL;
485 else
486 outp = videobuf_to_vmalloc(&buf->vb);
Aidan Thorntone0fadfd2008-04-13 14:56:02 -0300487 }
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300488
489 if (buf != NULL) {
490 if (p[2] & 1)
491 buf->top_field = 0;
492 else
493 buf->top_field = 1;
494 }
Mauro Carvalho Chehabb4916f82008-04-13 15:09:14 -0300495
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300496 dma_q->pos = 0;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300497 }
Devin Heitmueller5fee3342010-01-22 02:34:32 -0300498 if (buf != NULL) {
499 if (p[0] != 0x88 && p[0] != 0x22) {
500 em28xx_isocdbg("frame is not complete\n");
501 len += 4;
502 } else {
503 p += 4;
504 }
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300505 em28xx_copy_video(dev, dma_q, buf, p, outp, len);
Devin Heitmueller5fee3342010-01-22 02:34:32 -0300506 }
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300507 }
508 return rc;
509}
510
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300511/* Version of isoc handler that takes into account a mixture of video and
512 VBI data */
513static inline int em28xx_isoc_copy_vbi(struct em28xx *dev, struct urb *urb)
514{
515 struct em28xx_buffer *buf, *vbi_buf;
516 struct em28xx_dmaqueue *dma_q = &dev->vidq;
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300517 struct em28xx_dmaqueue *vbi_dma_q = &dev->vbiq;
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300518 unsigned char *outp = NULL;
519 unsigned char *vbioutp = NULL;
520 int i, len = 0, rc = 1;
521 unsigned char *p;
522 int vbi_size;
523
524 if (!dev)
525 return 0;
526
527 if ((dev->state & DEV_DISCONNECTED) || (dev->state & DEV_MISCONFIGURED))
528 return 0;
529
530 if (urb->status < 0) {
531 print_err_status(dev, -1, urb->status);
532 if (urb->status == -ENOENT)
533 return 0;
534 }
535
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300536 buf = dev->isoc_ctl.vid_buf;
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300537 if (buf != NULL)
538 outp = videobuf_to_vmalloc(&buf->vb);
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300539
540 vbi_buf = dev->isoc_ctl.vbi_buf;
541 if (vbi_buf != NULL)
542 vbioutp = videobuf_to_vmalloc(&vbi_buf->vb);
543
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300544 for (i = 0; i < urb->number_of_packets; i++) {
545 int status = urb->iso_frame_desc[i].status;
546
547 if (status < 0) {
548 print_err_status(dev, i, status);
549 if (urb->iso_frame_desc[i].status != -EPROTO)
550 continue;
551 }
552
Devin Heitmueller5fee3342010-01-22 02:34:32 -0300553 len = urb->iso_frame_desc[i].actual_length;
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300554 if (urb->iso_frame_desc[i].actual_length <= 0) {
555 /* em28xx_isocdbg("packet %d is empty",i); - spammy */
556 continue;
557 }
558 if (urb->iso_frame_desc[i].actual_length >
559 dev->max_pkt_size) {
560 em28xx_isocdbg("packet bigger than packet size");
561 continue;
562 }
563
564 p = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
565
566 /* capture type 0 = vbi start
567 capture type 1 = video start
568 capture type 2 = video in progress */
569 if (p[0] == 0x33 && p[1] == 0x95) {
570 dev->capture_type = 0;
571 dev->vbi_read = 0;
572 em28xx_isocdbg("VBI START HEADER!!!\n");
573 dev->cur_field = p[2];
Devin Heitmueller5fee3342010-01-22 02:34:32 -0300574 p += 4;
575 len -= 4;
576 } else if (p[0] == 0x88 && p[1] == 0x88 &&
577 p[2] == 0x88 && p[3] == 0x88) {
578 /* continuation */
579 p += 4;
580 len -= 4;
581 } else if (p[0] == 0x22 && p[1] == 0x5a) {
582 /* start video */
583 p += 4;
584 len -= 4;
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300585 }
586
Devin Heitmueller66d9cba2009-11-24 23:17:25 -0300587 vbi_size = dev->vbi_width * dev->vbi_height;
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300588
589 if (dev->capture_type == 0) {
590 if (dev->vbi_read >= vbi_size) {
591 /* We've already read all the VBI data, so
592 treat the rest as video */
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300593 em28xx_isocdbg("dev->vbi_read > vbi_size\n");
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300594 } else if ((dev->vbi_read + len) < vbi_size) {
595 /* This entire frame is VBI data */
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300596 if (dev->vbi_read == 0 &&
597 (!(dev->cur_field & 1))) {
598 /* Brand new frame */
599 if (vbi_buf != NULL)
600 vbi_buffer_filled(dev,
601 vbi_dma_q,
602 vbi_buf);
603 vbi_get_next_buf(vbi_dma_q, &vbi_buf);
604 if (vbi_buf == NULL)
605 vbioutp = NULL;
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300606 else
607 vbioutp = videobuf_to_vmalloc(
608 &vbi_buf->vb);
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300609 }
610
611 if (dev->vbi_read == 0) {
612 vbi_dma_q->pos = 0;
613 if (vbi_buf != NULL) {
614 if (dev->cur_field & 1)
615 vbi_buf->top_field = 0;
616 else
617 vbi_buf->top_field = 1;
618 }
619 }
620
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300621 dev->vbi_read += len;
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300622 em28xx_copy_vbi(dev, vbi_dma_q, vbi_buf, p,
623 vbioutp, len);
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300624 } else {
625 /* Some of this frame is VBI data and some is
626 video data */
627 int vbi_data_len = vbi_size - dev->vbi_read;
628 dev->vbi_read += vbi_data_len;
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300629 em28xx_copy_vbi(dev, vbi_dma_q, vbi_buf, p,
630 vbioutp, vbi_data_len);
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300631 dev->capture_type = 1;
632 p += vbi_data_len;
633 len -= vbi_data_len;
634 }
635 }
636
637 if (dev->capture_type == 1) {
638 dev->capture_type = 2;
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300639 if (dev->progressive || !(dev->cur_field & 1)) {
640 if (buf != NULL)
641 buffer_filled(dev, dma_q, buf);
642 get_next_buf(dma_q, &buf);
643 if (buf == NULL)
644 outp = NULL;
645 else
646 outp = videobuf_to_vmalloc(&buf->vb);
647 }
648 if (buf != NULL) {
649 if (dev->cur_field & 1)
650 buf->top_field = 0;
651 else
652 buf->top_field = 1;
653 }
654
655 dma_q->pos = 0;
656 }
Devin Heitmueller5fee3342010-01-22 02:34:32 -0300657
658 if (buf != NULL && dev->capture_type == 2) {
Devin Heitmueller2584bc42010-06-13 17:00:23 -0300659 if (len >= 4 && p[0] == 0x88 && p[1] == 0x88 &&
Devin Heitmueller5fee3342010-01-22 02:34:32 -0300660 p[2] == 0x88 && p[3] == 0x88) {
661 p += 4;
662 len -= 4;
663 }
Devin Heitmueller2584bc42010-06-13 17:00:23 -0300664 if (len >= 4 && p[0] == 0x22 && p[1] == 0x5a) {
Devin Heitmueller5fee3342010-01-22 02:34:32 -0300665 em28xx_isocdbg("Video frame %d, len=%i, %s\n",
666 p[2], len, (p[2] & 1) ?
667 "odd" : "even");
668 p += 4;
669 len -= 4;
670 }
671
672 if (len > 0)
673 em28xx_copy_video(dev, dma_q, buf, p, outp,
674 len);
675 }
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300676 }
677 return rc;
678}
679
680
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300681/* ------------------------------------------------------------------
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300682 Videobuf operations
683 ------------------------------------------------------------------*/
684
685static int
686buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
687{
688 struct em28xx_fh *fh = vq->priv_data;
Mauro Carvalho Chehabd2d9fbf2008-04-17 21:38:53 -0300689 struct em28xx *dev = fh->dev;
690 struct v4l2_frequency f;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300691
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300692 *size = (fh->dev->width * fh->dev->height * dev->format->depth + 7)
693 >> 3;
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -0300694
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300695 if (0 == *count)
696 *count = EM28XX_DEF_BUF;
697
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300698 if (*count < EM28XX_MIN_BUF)
699 *count = EM28XX_MIN_BUF;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300700
Mauro Carvalho Chehab381aaba2008-12-20 07:43:34 -0300701 /* Ask tuner to go to analog or radio mode */
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300702 memset(&f, 0, sizeof(f));
Mauro Carvalho Chehabd2d9fbf2008-04-17 21:38:53 -0300703 f.frequency = dev->ctl_freq;
Mauro Carvalho Chehab381aaba2008-12-20 07:43:34 -0300704 f.type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Mauro Carvalho Chehabd2d9fbf2008-04-17 21:38:53 -0300705
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -0300706 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_frequency, &f);
Mauro Carvalho Chehabd2d9fbf2008-04-17 21:38:53 -0300707
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300708 return 0;
709}
710
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300711/* This is called *without* dev->slock held; please keep it that way */
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300712static void free_buffer(struct videobuf_queue *vq, struct em28xx_buffer *buf)
713{
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300714 struct em28xx_fh *fh = vq->priv_data;
715 struct em28xx *dev = fh->dev;
716 unsigned long flags = 0;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300717 if (in_interrupt())
718 BUG();
719
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300720 /* We used to wait for the buffer to finish here, but this didn't work
721 because, as we were keeping the state as VIDEOBUF_QUEUED,
722 videobuf_queue_cancel marked it as finished for us.
723 (Also, it could wedge forever if the hardware was misconfigured.)
724
725 This should be safe; by the time we get here, the buffer isn't
726 queued anymore. If we ever start marking the buffers as
727 VIDEOBUF_ACTIVE, it won't be, though.
728 */
729 spin_lock_irqsave(&dev->slock, flags);
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300730 if (dev->isoc_ctl.vid_buf == buf)
731 dev->isoc_ctl.vid_buf = NULL;
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300732 spin_unlock_irqrestore(&dev->slock, flags);
733
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300734 videobuf_vmalloc_free(&buf->vb);
735 buf->vb.state = VIDEOBUF_NEEDS_INIT;
736}
737
738static int
739buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
740 enum v4l2_field field)
741{
742 struct em28xx_fh *fh = vq->priv_data;
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300743 struct em28xx_buffer *buf = container_of(vb, struct em28xx_buffer, vb);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300744 struct em28xx *dev = fh->dev;
745 int rc = 0, urb_init = 0;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300746
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300747 buf->vb.size = (fh->dev->width * fh->dev->height * dev->format->depth
748 + 7) >> 3;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300749
750 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
751 return -EINVAL;
752
Brandon Philips05612972008-04-13 14:57:01 -0300753 buf->vb.width = dev->width;
754 buf->vb.height = dev->height;
755 buf->vb.field = field;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300756
757 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300758 rc = videobuf_iolock(vq, &buf->vb, NULL);
759 if (rc < 0)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300760 goto fail;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300761 }
762
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300763 if (!dev->isoc_ctl.num_bufs)
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300764 urb_init = 1;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300765
766 if (urb_init) {
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300767 if (em28xx_vbi_supported(dev) == 1)
768 rc = em28xx_init_isoc(dev, EM28XX_NUM_PACKETS,
769 EM28XX_NUM_BUFS,
770 dev->max_pkt_size,
771 em28xx_isoc_copy_vbi);
772 else
773 rc = em28xx_init_isoc(dev, EM28XX_NUM_PACKETS,
774 EM28XX_NUM_BUFS,
775 dev->max_pkt_size,
776 em28xx_isoc_copy);
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300777 if (rc < 0)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300778 goto fail;
779 }
780
781 buf->vb.state = VIDEOBUF_PREPARED;
782 return 0;
783
784fail:
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300785 free_buffer(vq, buf);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300786 return rc;
787}
788
789static void
790buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
791{
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300792 struct em28xx_buffer *buf = container_of(vb,
793 struct em28xx_buffer,
794 vb);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300795 struct em28xx_fh *fh = vq->priv_data;
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300796 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300797 struct em28xx_dmaqueue *vidq = &dev->vidq;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300798
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300799 buf->vb.state = VIDEOBUF_QUEUED;
800 list_add_tail(&buf->vb.queue, &vidq->active);
801
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300802}
803
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300804static void buffer_release(struct videobuf_queue *vq,
805 struct videobuf_buffer *vb)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300806{
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300807 struct em28xx_buffer *buf = container_of(vb,
808 struct em28xx_buffer,
809 vb);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300810 struct em28xx_fh *fh = vq->priv_data;
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300811 struct em28xx *dev = (struct em28xx *)fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300812
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300813 em28xx_isocdbg("em28xx: called buffer_release\n");
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300814
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300815 free_buffer(vq, buf);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300816}
817
818static struct videobuf_queue_ops em28xx_video_qops = {
819 .buf_setup = buffer_setup,
820 .buf_prepare = buffer_prepare,
821 .buf_queue = buffer_queue,
822 .buf_release = buffer_release,
823};
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800824
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300825/********************* v4l2 interface **************************************/
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800826
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800827static void video_mux(struct em28xx *dev, int index)
828{
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800829 dev->ctl_input = index;
830 dev->ctl_ainput = INPUT(index)->amux;
Mauro Carvalho Chehab35ae6f02008-11-20 12:40:51 -0300831 dev->ctl_aoutput = INPUT(index)->aout;
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800832
Mauro Carvalho Chehabe879b8e2008-11-20 13:39:39 -0300833 if (!dev->ctl_aoutput)
834 dev->ctl_aoutput = EM28XX_AOUT_MASTER;
835
Hans Verkuil5325b422009-04-02 11:26:22 -0300836 v4l2_device_call_all(&dev->v4l2_dev, 0, video, s_routing,
837 INPUT(index)->vmux, 0, 0);
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800838
Mauro Carvalho Chehab505b6d02008-11-25 09:39:50 -0300839 if (dev->board.has_msp34xx) {
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300840 if (dev->i2s_speed) {
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -0300841 v4l2_device_call_all(&dev->v4l2_dev, 0, audio,
842 s_i2s_clock_freq, dev->i2s_speed);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300843 }
Hans Verkuil2474ed42006-03-19 12:35:57 -0300844 /* Note: this is msp3400 specific */
Hans Verkuil5325b422009-04-02 11:26:22 -0300845 v4l2_device_call_all(&dev->v4l2_dev, 0, audio, s_routing,
846 dev->ctl_ainput, MSP_OUTPUT(MSP_SC_IN_DSP_SCART1), 0);
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800847 }
Mauro Carvalho Chehab539c96d2008-01-05 09:53:54 -0300848
Vitaly Wool2bd1d9e2009-03-04 08:27:52 -0300849 if (dev->board.adecoder != EM28XX_NOADECODER) {
Hans Verkuil5325b422009-04-02 11:26:22 -0300850 v4l2_device_call_all(&dev->v4l2_dev, 0, audio, s_routing,
851 dev->ctl_ainput, dev->ctl_aoutput, 0);
Vitaly Wool2bd1d9e2009-03-04 08:27:52 -0300852 }
853
Mauro Carvalho Chehab00b87302008-02-06 18:34:13 -0300854 em28xx_audio_analog_set(dev);
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800855}
856
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -0300857/* Usage lock check functions */
Devin Heitmueller8c873d32009-09-03 00:23:27 -0300858static int res_get(struct em28xx_fh *fh, unsigned int bit)
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -0300859{
860 struct em28xx *dev = fh->dev;
861
Devin Heitmueller8c873d32009-09-03 00:23:27 -0300862 if (fh->resources & bit)
863 /* have it already allocated */
864 return 1;
865
866 /* is it free? */
Devin Heitmueller8c873d32009-09-03 00:23:27 -0300867 if (dev->resources & bit) {
868 /* no, someone else uses it */
Devin Heitmueller8c873d32009-09-03 00:23:27 -0300869 return 0;
870 }
871 /* it's free, grab it */
872 fh->resources |= bit;
873 dev->resources |= bit;
874 em28xx_videodbg("res: get %d\n", bit);
Devin Heitmueller8c873d32009-09-03 00:23:27 -0300875 return 1;
876}
877
878static int res_check(struct em28xx_fh *fh, unsigned int bit)
879{
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300880 return fh->resources & bit;
Devin Heitmueller8c873d32009-09-03 00:23:27 -0300881}
882
883static int res_locked(struct em28xx *dev, unsigned int bit)
884{
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300885 return dev->resources & bit;
Devin Heitmueller8c873d32009-09-03 00:23:27 -0300886}
887
888static void res_free(struct em28xx_fh *fh, unsigned int bits)
889{
890 struct em28xx *dev = fh->dev;
891
892 BUG_ON((fh->resources & bits) != bits);
893
Devin Heitmueller8c873d32009-09-03 00:23:27 -0300894 fh->resources &= ~bits;
895 dev->resources &= ~bits;
896 em28xx_videodbg("res: put %d\n", bits);
Devin Heitmueller8c873d32009-09-03 00:23:27 -0300897}
898
899static int get_ressource(struct em28xx_fh *fh)
900{
901 switch (fh->type) {
902 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
903 return EM28XX_RESOURCE_VIDEO;
904 case V4L2_BUF_TYPE_VBI_CAPTURE:
905 return EM28XX_RESOURCE_VBI;
906 default:
907 BUG();
908 return 0;
909 }
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -0300910}
911
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800912/*
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -0300913 * ac97_queryctrl()
914 * return the ac97 supported controls
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300915 */
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -0300916static int ac97_queryctrl(struct v4l2_queryctrl *qc)
917{
918 int i;
919
920 for (i = 0; i < ARRAY_SIZE(ac97_qctrl); i++) {
921 if (qc->id && qc->id == ac97_qctrl[i].id) {
922 memcpy(qc, &(ac97_qctrl[i]), sizeof(*qc));
923 return 0;
924 }
925 }
926
927 /* Control is not ac97 related */
928 return 1;
929}
930
931/*
932 * ac97_get_ctrl()
933 * return the current values for ac97 mute and volume
934 */
935static int ac97_get_ctrl(struct em28xx *dev, struct v4l2_control *ctrl)
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300936{
937 switch (ctrl->id) {
938 case V4L2_CID_AUDIO_MUTE:
939 ctrl->value = dev->mute;
940 return 0;
941 case V4L2_CID_AUDIO_VOLUME:
942 ctrl->value = dev->volume;
943 return 0;
944 default:
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -0300945 /* Control is not ac97 related */
946 return 1;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300947 }
948}
949
950/*
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -0300951 * ac97_set_ctrl()
952 * set values for ac97 mute and volume
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300953 */
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -0300954static int ac97_set_ctrl(struct em28xx *dev, const struct v4l2_control *ctrl)
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300955{
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -0300956 int i;
957
958 for (i = 0; i < ARRAY_SIZE(ac97_qctrl); i++)
959 if (ctrl->id == ac97_qctrl[i].id)
960 goto handle;
961
962 /* Announce that hasn't handle it */
963 return 1;
964
965handle:
966 if (ctrl->value < ac97_qctrl[i].minimum ||
967 ctrl->value > ac97_qctrl[i].maximum)
968 return -ERANGE;
969
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300970 switch (ctrl->id) {
971 case V4L2_CID_AUDIO_MUTE:
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -0300972 dev->mute = ctrl->value;
973 break;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300974 case V4L2_CID_AUDIO_VOLUME:
975 dev->volume = ctrl->value;
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -0300976 break;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300977 }
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -0300978
979 return em28xx_audio_analog_set(dev);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300980}
981
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300982static int check_dev(struct em28xx *dev)
983{
984 if (dev->state & DEV_DISCONNECTED) {
985 em28xx_errdev("v4l2 ioctl: device not present\n");
986 return -ENODEV;
987 }
988
989 if (dev->state & DEV_MISCONFIGURED) {
990 em28xx_errdev("v4l2 ioctl: device is misconfigured; "
991 "close and open it again\n");
992 return -EIO;
993 }
994 return 0;
995}
996
997static void get_scale(struct em28xx *dev,
998 unsigned int width, unsigned int height,
999 unsigned int *hscale, unsigned int *vscale)
1000{
Mauro Carvalho Chehab55699962009-07-13 20:15:02 -03001001 unsigned int maxw = norm_maxw(dev);
1002 unsigned int maxh = norm_maxh(dev);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001003
1004 *hscale = (((unsigned long)maxw) << 12) / width - 4096L;
1005 if (*hscale >= 0x4000)
1006 *hscale = 0x3fff;
1007
1008 *vscale = (((unsigned long)maxh) << 12) / height - 4096L;
1009 if (*vscale >= 0x4000)
1010 *vscale = 0x3fff;
1011}
1012
1013/* ------------------------------------------------------------------
1014 IOCTL vidioc handling
1015 ------------------------------------------------------------------*/
1016
Hans Verkuil78b526a2008-05-28 12:16:41 -03001017static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001018 struct v4l2_format *f)
1019{
1020 struct em28xx_fh *fh = priv;
1021 struct em28xx *dev = fh->dev;
1022
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001023 f->fmt.pix.width = dev->width;
1024 f->fmt.pix.height = dev->height;
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -03001025 f->fmt.pix.pixelformat = dev->format->fourcc;
1026 f->fmt.pix.bytesperline = (dev->width * dev->format->depth + 7) >> 3;
Mauro Carvalho Chehab44dc7332008-04-13 15:11:08 -03001027 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline * dev->height;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001028 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
1029
1030 /* FIXME: TOP? NONE? BOTTOM? ALTENATE? */
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -03001031 if (dev->progressive)
1032 f->fmt.pix.field = V4L2_FIELD_NONE;
1033 else
1034 f->fmt.pix.field = dev->interlaced ?
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001035 V4L2_FIELD_INTERLACED : V4L2_FIELD_TOP;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001036 return 0;
1037}
1038
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -03001039static struct em28xx_fmt *format_by_fourcc(unsigned int fourcc)
1040{
1041 unsigned int i;
1042
1043 for (i = 0; i < ARRAY_SIZE(format); i++)
1044 if (format[i].fourcc == fourcc)
1045 return &format[i];
1046
1047 return NULL;
1048}
1049
Hans Verkuil78b526a2008-05-28 12:16:41 -03001050static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001051 struct v4l2_format *f)
1052{
1053 struct em28xx_fh *fh = priv;
1054 struct em28xx *dev = fh->dev;
Trent Piephoccb83402009-05-30 21:45:46 -03001055 unsigned int width = f->fmt.pix.width;
1056 unsigned int height = f->fmt.pix.height;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001057 unsigned int maxw = norm_maxw(dev);
1058 unsigned int maxh = norm_maxh(dev);
1059 unsigned int hscale, vscale;
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -03001060 struct em28xx_fmt *fmt;
1061
1062 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1063 if (!fmt) {
1064 em28xx_videodbg("Fourcc format (%08x) invalid.\n",
1065 f->fmt.pix.pixelformat);
1066 return -EINVAL;
1067 }
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001068
Mauro Carvalho Chehab55699962009-07-13 20:15:02 -03001069 if (dev->board.is_em2800) {
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001070 /* the em2800 can only scale down to 50% */
Trent Piephoccb83402009-05-30 21:45:46 -03001071 height = height > (3 * maxh / 4) ? maxh : maxh / 2;
1072 width = width > (3 * maxw / 4) ? maxw : maxw / 2;
Trent Piephoccb83402009-05-30 21:45:46 -03001073 } else {
1074 /* width must even because of the YUYV format
1075 height must be even because of interlacing */
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -03001076 v4l_bound_align_image(&width, 48, maxw, 1, &height, 32, maxh,
1077 1, 0);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001078 }
1079
1080 get_scale(dev, width, height, &hscale, &vscale);
1081
1082 width = (((unsigned long)maxw) << 12) / (hscale + 4096L);
1083 height = (((unsigned long)maxh) << 12) / (vscale + 4096L);
1084
1085 f->fmt.pix.width = width;
1086 f->fmt.pix.height = height;
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -03001087 f->fmt.pix.pixelformat = fmt->fourcc;
1088 f->fmt.pix.bytesperline = (dev->width * fmt->depth + 7) >> 3;
1089 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline * height;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001090 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -03001091 if (dev->progressive)
1092 f->fmt.pix.field = V4L2_FIELD_NONE;
1093 else
1094 f->fmt.pix.field = dev->interlaced ?
1095 V4L2_FIELD_INTERLACED : V4L2_FIELD_TOP;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001096
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001097 return 0;
1098}
1099
Mauro Carvalho Chehabed5f1432009-07-02 17:34:04 -03001100static int em28xx_set_video_format(struct em28xx *dev, unsigned int fourcc,
1101 unsigned width, unsigned height)
1102{
1103 struct em28xx_fmt *fmt;
1104
Mauro Carvalho Chehabed5f1432009-07-02 17:34:04 -03001105 fmt = format_by_fourcc(fourcc);
1106 if (!fmt)
1107 return -EINVAL;
1108
1109 dev->format = fmt;
1110 dev->width = width;
1111 dev->height = height;
1112
1113 /* set new image size */
1114 get_scale(dev, dev->width, dev->height, &dev->hscale, &dev->vscale);
1115
1116 em28xx_set_alternate(dev);
1117 em28xx_resolution_set(dev);
1118
1119 return 0;
1120}
1121
Hans Verkuil78b526a2008-05-28 12:16:41 -03001122static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001123 struct v4l2_format *f)
1124{
1125 struct em28xx_fh *fh = priv;
1126 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001127 int rc;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001128
1129 rc = check_dev(dev);
1130 if (rc < 0)
1131 return rc;
1132
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001133 vidioc_try_fmt_vid_cap(file, priv, f);
1134
Brandon Philips05612972008-04-13 14:57:01 -03001135 if (videobuf_queue_is_busy(&fh->vb_vidq)) {
1136 em28xx_errdev("%s queue busy\n", __func__);
Hans Verkuil0499a5a2010-09-26 07:34:45 -03001137 return -EBUSY;
Brandon Philips05612972008-04-13 14:57:01 -03001138 }
1139
Hans Verkuil0499a5a2010-09-26 07:34:45 -03001140 return em28xx_set_video_format(dev, f->fmt.pix.pixelformat,
Mauro Carvalho Chehabed5f1432009-07-02 17:34:04 -03001141 f->fmt.pix.width, f->fmt.pix.height);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001142}
1143
Devin Heitmueller19bf0032009-09-11 00:40:18 -03001144static int vidioc_g_std(struct file *file, void *priv, v4l2_std_id *norm)
1145{
1146 struct em28xx_fh *fh = priv;
1147 struct em28xx *dev = fh->dev;
Devin Heitmueller19bf0032009-09-11 00:40:18 -03001148 int rc;
1149
1150 rc = check_dev(dev);
1151 if (rc < 0)
1152 return rc;
1153
1154 *norm = dev->norm;
1155
1156 return 0;
1157}
1158
Mauro Carvalho Chehabd56ae6f2011-10-04 09:53:00 -03001159static int vidioc_querystd(struct file *file, void *priv, v4l2_std_id *norm)
1160{
1161 struct em28xx_fh *fh = priv;
1162 struct em28xx *dev = fh->dev;
1163 int rc;
1164
1165 rc = check_dev(dev);
1166 if (rc < 0)
1167 return rc;
1168
1169 v4l2_device_call_all(&dev->v4l2_dev, 0, video, querystd, norm);
1170
1171 return 0;
1172}
1173
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -03001174static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *norm)
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001175{
1176 struct em28xx_fh *fh = priv;
1177 struct em28xx *dev = fh->dev;
1178 struct v4l2_format f;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001179 int rc;
1180
1181 rc = check_dev(dev);
1182 if (rc < 0)
1183 return rc;
1184
Mauro Carvalho Chehab7d497f82007-11-11 14:15:34 -03001185 dev->norm = *norm;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001186
1187 /* Adjusts width/height, if needed */
1188 f.fmt.pix.width = dev->width;
1189 f.fmt.pix.height = dev->height;
Hans Verkuil78b526a2008-05-28 12:16:41 -03001190 vidioc_try_fmt_vid_cap(file, priv, &f);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001191
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001192 /* set new image size */
1193 dev->width = f.fmt.pix.width;
1194 dev->height = f.fmt.pix.height;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001195 get_scale(dev, dev->width, dev->height, &dev->hscale, &dev->vscale);
1196
1197 em28xx_resolution_set(dev);
Hans Verkuilf41737e2009-04-01 03:52:39 -03001198 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_std, dev->norm);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001199
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001200 return 0;
1201}
1202
Mauro Carvalho Chehabd96ecda2009-08-06 21:53:59 -03001203static int vidioc_g_parm(struct file *file, void *priv,
1204 struct v4l2_streamparm *p)
1205{
1206 struct em28xx_fh *fh = priv;
1207 struct em28xx *dev = fh->dev;
1208 int rc = 0;
1209
1210 if (p->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1211 return -EINVAL;
1212
1213 if (dev->board.is_webcam)
1214 rc = v4l2_device_call_until_err(&dev->v4l2_dev, 0,
1215 video, g_parm, p);
1216 else
1217 v4l2_video_std_frame_period(dev->norm,
1218 &p->parm.capture.timeperframe);
1219
1220 return rc;
1221}
1222
1223static int vidioc_s_parm(struct file *file, void *priv,
1224 struct v4l2_streamparm *p)
1225{
1226 struct em28xx_fh *fh = priv;
1227 struct em28xx *dev = fh->dev;
1228
1229 if (!dev->board.is_webcam)
1230 return -EINVAL;
1231
1232 if (p->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1233 return -EINVAL;
1234
1235 return v4l2_device_call_until_err(&dev->v4l2_dev, 0, video, s_parm, p);
1236}
1237
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001238static const char *iname[] = {
1239 [EM28XX_VMUX_COMPOSITE1] = "Composite1",
1240 [EM28XX_VMUX_COMPOSITE2] = "Composite2",
1241 [EM28XX_VMUX_COMPOSITE3] = "Composite3",
1242 [EM28XX_VMUX_COMPOSITE4] = "Composite4",
1243 [EM28XX_VMUX_SVIDEO] = "S-Video",
1244 [EM28XX_VMUX_TELEVISION] = "Television",
1245 [EM28XX_VMUX_CABLE] = "Cable TV",
1246 [EM28XX_VMUX_DVB] = "DVB",
1247 [EM28XX_VMUX_DEBUG] = "for debug only",
1248};
1249
1250static int vidioc_enum_input(struct file *file, void *priv,
1251 struct v4l2_input *i)
1252{
1253 struct em28xx_fh *fh = priv;
1254 struct em28xx *dev = fh->dev;
1255 unsigned int n;
1256
1257 n = i->index;
1258 if (n >= MAX_EM28XX_INPUT)
1259 return -EINVAL;
1260 if (0 == INPUT(n)->type)
1261 return -EINVAL;
1262
1263 i->index = n;
1264 i->type = V4L2_INPUT_TYPE_CAMERA;
1265
1266 strcpy(i->name, iname[INPUT(n)->type]);
1267
1268 if ((EM28XX_VMUX_TELEVISION == INPUT(n)->type) ||
1269 (EM28XX_VMUX_CABLE == INPUT(n)->type))
1270 i->type = V4L2_INPUT_TYPE_TUNER;
1271
Mauro Carvalho Chehab7d497f82007-11-11 14:15:34 -03001272 i->std = dev->vdev->tvnorms;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001273
1274 return 0;
1275}
1276
1277static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
1278{
1279 struct em28xx_fh *fh = priv;
1280 struct em28xx *dev = fh->dev;
1281
1282 *i = dev->ctl_input;
1283
1284 return 0;
1285}
1286
1287static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
1288{
1289 struct em28xx_fh *fh = priv;
1290 struct em28xx *dev = fh->dev;
1291 int rc;
1292
1293 rc = check_dev(dev);
1294 if (rc < 0)
1295 return rc;
1296
1297 if (i >= MAX_EM28XX_INPUT)
1298 return -EINVAL;
1299 if (0 == INPUT(i)->type)
1300 return -EINVAL;
1301
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03001302 dev->ctl_input = i;
1303
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03001304 video_mux(dev, dev->ctl_input);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001305 return 0;
1306}
1307
1308static int vidioc_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
1309{
1310 struct em28xx_fh *fh = priv;
1311 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001312
Mauro Carvalho Chehab6c428b52009-08-04 19:52:37 -03001313 if (!dev->audio_mode.has_audio)
1314 return -EINVAL;
1315
Mauro Carvalho Chehab35ae6f02008-11-20 12:40:51 -03001316 switch (a->index) {
1317 case EM28XX_AMUX_VIDEO:
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001318 strcpy(a->name, "Television");
Mauro Carvalho Chehab35ae6f02008-11-20 12:40:51 -03001319 break;
1320 case EM28XX_AMUX_LINE_IN:
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001321 strcpy(a->name, "Line In");
Mauro Carvalho Chehab35ae6f02008-11-20 12:40:51 -03001322 break;
1323 case EM28XX_AMUX_VIDEO2:
1324 strcpy(a->name, "Television alt");
1325 break;
1326 case EM28XX_AMUX_PHONE:
1327 strcpy(a->name, "Phone");
1328 break;
1329 case EM28XX_AMUX_MIC:
1330 strcpy(a->name, "Mic");
1331 break;
1332 case EM28XX_AMUX_CD:
1333 strcpy(a->name, "CD");
1334 break;
1335 case EM28XX_AMUX_AUX:
1336 strcpy(a->name, "Aux");
1337 break;
1338 case EM28XX_AMUX_PCM_OUT:
1339 strcpy(a->name, "PCM");
1340 break;
1341 default:
1342 return -EINVAL;
1343 }
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -03001344
Mauro Carvalho Chehab35ae6f02008-11-20 12:40:51 -03001345 a->index = dev->ctl_ainput;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001346 a->capability = V4L2_AUDCAP_STEREO;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001347
1348 return 0;
1349}
1350
1351static int vidioc_s_audio(struct file *file, void *priv, struct v4l2_audio *a)
1352{
1353 struct em28xx_fh *fh = priv;
1354 struct em28xx *dev = fh->dev;
1355
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03001356
Mauro Carvalho Chehab6c428b52009-08-04 19:52:37 -03001357 if (!dev->audio_mode.has_audio)
1358 return -EINVAL;
1359
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03001360 if (a->index >= MAX_EM28XX_INPUT)
1361 return -EINVAL;
1362 if (0 == INPUT(a->index)->type)
1363 return -EINVAL;
1364
Mauro Carvalho Chehab35ae6f02008-11-20 12:40:51 -03001365 dev->ctl_ainput = INPUT(a->index)->amux;
1366 dev->ctl_aoutput = INPUT(a->index)->aout;
Mauro Carvalho Chehabe879b8e2008-11-20 13:39:39 -03001367
1368 if (!dev->ctl_aoutput)
1369 dev->ctl_aoutput = EM28XX_AOUT_MASTER;
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001370
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001371 return 0;
1372}
1373
1374static int vidioc_queryctrl(struct file *file, void *priv,
1375 struct v4l2_queryctrl *qc)
1376{
1377 struct em28xx_fh *fh = priv;
1378 struct em28xx *dev = fh->dev;
1379 int id = qc->id;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001380 int rc;
1381
1382 rc = check_dev(dev);
1383 if (rc < 0)
1384 return rc;
1385
1386 memset(qc, 0, sizeof(*qc));
1387
1388 qc->id = id;
1389
Hans Verkuil0499a5a2010-09-26 07:34:45 -03001390 /* enumerate AC97 controls */
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -03001391 if (dev->audio_mode.ac97 != EM28XX_NO_AC97) {
1392 rc = ac97_queryctrl(qc);
1393 if (!rc)
1394 return 0;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001395 }
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001396
Hans Verkuil0499a5a2010-09-26 07:34:45 -03001397 /* enumerate V4L2 device controls */
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001398 v4l2_device_call_all(&dev->v4l2_dev, 0, core, queryctrl, qc);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001399
1400 if (qc->type)
1401 return 0;
1402 else
1403 return -EINVAL;
1404}
1405
Mauro Carvalho Chehabfb8decf2011-02-22 01:00:58 -03001406/*
1407 * FIXME: This is an indirect way to check if a control exists at a
1408 * subdev. Instead of that hack, maybe the better would be to change all
1409 * subdevs to return -ENOIOCTLCMD, if an ioctl is not supported.
1410 */
1411static int check_subdev_ctrl(struct em28xx *dev, int id)
1412{
1413 struct v4l2_queryctrl qc;
1414
1415 memset(&qc, 0, sizeof(qc));
1416 qc.id = id;
1417
1418 /* enumerate V4L2 device controls */
1419 v4l2_device_call_all(&dev->v4l2_dev, 0, core, queryctrl, &qc);
1420
1421 if (qc.type)
1422 return 0;
1423 else
1424 return -EINVAL;
1425}
1426
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001427static int vidioc_g_ctrl(struct file *file, void *priv,
1428 struct v4l2_control *ctrl)
1429{
1430 struct em28xx_fh *fh = priv;
1431 struct em28xx *dev = fh->dev;
1432 int rc;
1433
1434 rc = check_dev(dev);
1435 if (rc < 0)
1436 return rc;
Mauro Carvalho Chehabb6070f02008-12-22 06:20:32 -03001437 rc = 0;
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001438
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -03001439 /* Set an AC97 control */
1440 if (dev->audio_mode.ac97 != EM28XX_NO_AC97)
1441 rc = ac97_get_ctrl(dev, ctrl);
1442 else
1443 rc = 1;
1444
1445 /* It were not an AC97 control. Sends it to the v4l2 dev interface */
1446 if (rc == 1) {
Mauro Carvalho Chehabfb8decf2011-02-22 01:00:58 -03001447 if (check_subdev_ctrl(dev, ctrl->id))
1448 return -EINVAL;
1449
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001450 v4l2_device_call_all(&dev->v4l2_dev, 0, core, g_ctrl, ctrl);
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -03001451 rc = 0;
Hans Verkuil07f7db42009-01-21 17:06:42 -03001452 }
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001453
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001454 return rc;
1455}
1456
1457static int vidioc_s_ctrl(struct file *file, void *priv,
1458 struct v4l2_control *ctrl)
1459{
1460 struct em28xx_fh *fh = priv;
1461 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001462 int rc;
1463
1464 rc = check_dev(dev);
1465 if (rc < 0)
1466 return rc;
1467
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -03001468 /* Set an AC97 control */
1469 if (dev->audio_mode.ac97 != EM28XX_NO_AC97)
1470 rc = ac97_set_ctrl(dev, ctrl);
1471 else
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001472 rc = 1;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001473
Mauro Carvalho Chehab73c6f462009-07-29 01:42:02 -03001474 /* It isn't an AC97 control. Sends it to the v4l2 dev interface */
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001475 if (rc == 1) {
Mauro Carvalho Chehabfb8decf2011-02-22 01:00:58 -03001476 rc = check_subdev_ctrl(dev, ctrl->id);
1477 if (!rc)
1478 v4l2_device_call_all(&dev->v4l2_dev, 0,
1479 core, s_ctrl, ctrl);
Mauro Carvalho Chehab73c6f462009-07-29 01:42:02 -03001480 /*
1481 * In the case of non-AC97 volume controls, we still need
1482 * to do some setups at em28xx, in order to mute/unmute
1483 * and to adjust audio volume. However, the value ranges
1484 * should be checked by the corresponding V4L subdriver.
1485 */
1486 switch (ctrl->id) {
1487 case V4L2_CID_AUDIO_MUTE:
1488 dev->mute = ctrl->value;
1489 rc = em28xx_audio_analog_set(dev);
1490 break;
1491 case V4L2_CID_AUDIO_VOLUME:
1492 dev->volume = ctrl->value;
1493 rc = em28xx_audio_analog_set(dev);
1494 }
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001495 }
Mauro Carvalho Chehab78e51562011-02-22 00:27:41 -03001496 return (rc < 0) ? rc : 0;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001497}
1498
1499static int vidioc_g_tuner(struct file *file, void *priv,
1500 struct v4l2_tuner *t)
1501{
1502 struct em28xx_fh *fh = priv;
1503 struct em28xx *dev = fh->dev;
1504 int rc;
1505
1506 rc = check_dev(dev);
1507 if (rc < 0)
1508 return rc;
1509
1510 if (0 != t->index)
1511 return -EINVAL;
1512
1513 strcpy(t->name, "Tuner");
Hans Verkuil0eed42e2010-05-01 18:06:50 -03001514 t->type = V4L2_TUNER_ANALOG_TV;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001515
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001516 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_tuner, t);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001517 return 0;
1518}
1519
1520static int vidioc_s_tuner(struct file *file, void *priv,
1521 struct v4l2_tuner *t)
1522{
1523 struct em28xx_fh *fh = priv;
1524 struct em28xx *dev = fh->dev;
1525 int rc;
1526
1527 rc = check_dev(dev);
1528 if (rc < 0)
1529 return rc;
1530
1531 if (0 != t->index)
1532 return -EINVAL;
1533
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001534 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_tuner, t);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001535 return 0;
1536}
1537
1538static int vidioc_g_frequency(struct file *file, void *priv,
1539 struct v4l2_frequency *f)
1540{
1541 struct em28xx_fh *fh = priv;
1542 struct em28xx *dev = fh->dev;
1543
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001544 f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001545 f->frequency = dev->ctl_freq;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001546 return 0;
1547}
1548
1549static int vidioc_s_frequency(struct file *file, void *priv,
1550 struct v4l2_frequency *f)
1551{
1552 struct em28xx_fh *fh = priv;
1553 struct em28xx *dev = fh->dev;
1554 int rc;
1555
1556 rc = check_dev(dev);
1557 if (rc < 0)
1558 return rc;
1559
1560 if (0 != f->tuner)
1561 return -EINVAL;
1562
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001563 if (unlikely(0 == fh->radio && f->type != V4L2_TUNER_ANALOG_TV))
1564 return -EINVAL;
1565 if (unlikely(1 == fh->radio && f->type != V4L2_TUNER_RADIO))
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001566 return -EINVAL;
1567
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001568 dev->ctl_freq = f->frequency;
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001569 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_frequency, f);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001570
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001571 return 0;
1572}
1573
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001574#ifdef CONFIG_VIDEO_ADV_DEBUG
1575static int em28xx_reg_len(int reg)
1576{
1577 switch (reg) {
Mauro Carvalho Chehab41facaa2008-04-17 21:44:58 -03001578 case EM28XX_R40_AC97LSB:
1579 case EM28XX_R30_HSCALELOW:
1580 case EM28XX_R32_VSCALELOW:
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001581 return 2;
1582 default:
1583 return 1;
1584 }
1585}
1586
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001587static int vidioc_g_chip_ident(struct file *file, void *priv,
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001588 struct v4l2_dbg_chip_ident *chip)
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001589{
1590 struct em28xx_fh *fh = priv;
1591 struct em28xx *dev = fh->dev;
1592
1593 chip->ident = V4L2_IDENT_NONE;
1594 chip->revision = 0;
1595
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001596 v4l2_device_call_all(&dev->v4l2_dev, 0, core, g_chip_ident, chip);
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001597
1598 return 0;
1599}
1600
1601
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001602static int vidioc_g_register(struct file *file, void *priv,
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001603 struct v4l2_dbg_register *reg)
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001604{
1605 struct em28xx_fh *fh = priv;
1606 struct em28xx *dev = fh->dev;
1607 int ret;
1608
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001609 switch (reg->match.type) {
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001610 case V4L2_CHIP_MATCH_AC97:
Mauro Carvalho Chehab531c98e2008-12-22 13:18:27 -03001611 ret = em28xx_read_ac97(dev, reg->reg);
Mauro Carvalho Chehab531c98e2008-12-22 13:18:27 -03001612 if (ret < 0)
1613 return ret;
1614
1615 reg->val = ret;
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001616 reg->size = 1;
Mauro Carvalho Chehab531c98e2008-12-22 13:18:27 -03001617 return 0;
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001618 case V4L2_CHIP_MATCH_I2C_DRIVER:
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001619 v4l2_device_call_all(&dev->v4l2_dev, 0, core, g_register, reg);
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001620 return 0;
1621 case V4L2_CHIP_MATCH_I2C_ADDR:
Mauro Carvalho Chehab4efa2d72009-08-09 19:39:23 -03001622 /* TODO: is this correct? */
1623 v4l2_device_call_all(&dev->v4l2_dev, 0, core, g_register, reg);
1624 return 0;
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001625 default:
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001626 if (!v4l2_chip_match_host(&reg->match))
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001627 return -EINVAL;
Mauro Carvalho Chehab531c98e2008-12-22 13:18:27 -03001628 }
1629
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001630 /* Match host */
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001631 reg->size = em28xx_reg_len(reg->reg);
1632 if (reg->size == 1) {
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001633 ret = em28xx_read_reg(dev, reg->reg);
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001634
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001635 if (ret < 0)
1636 return ret;
1637
1638 reg->val = ret;
1639 } else {
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001640 __le16 val = 0;
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001641 ret = em28xx_read_reg_req_len(dev, USB_REQ_GET_STATUS,
1642 reg->reg, (char *)&val, 2);
1643 if (ret < 0)
1644 return ret;
1645
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001646 reg->val = le16_to_cpu(val);
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001647 }
1648
1649 return 0;
1650}
1651
1652static int vidioc_s_register(struct file *file, void *priv,
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001653 struct v4l2_dbg_register *reg)
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001654{
1655 struct em28xx_fh *fh = priv;
1656 struct em28xx *dev = fh->dev;
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001657 __le16 buf;
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001658
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001659 switch (reg->match.type) {
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001660 case V4L2_CHIP_MATCH_AC97:
Hans Verkuil0499a5a2010-09-26 07:34:45 -03001661 return em28xx_write_ac97(dev, reg->reg, reg->val);
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001662 case V4L2_CHIP_MATCH_I2C_DRIVER:
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001663 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_register, reg);
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001664 return 0;
1665 case V4L2_CHIP_MATCH_I2C_ADDR:
Mauro Carvalho Chehab4efa2d72009-08-09 19:39:23 -03001666 /* TODO: is this correct? */
1667 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_register, reg);
1668 return 0;
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001669 default:
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001670 if (!v4l2_chip_match_host(&reg->match))
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001671 return -EINVAL;
Mauro Carvalho Chehab531c98e2008-12-22 13:18:27 -03001672 }
1673
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001674 /* Match host */
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001675 buf = cpu_to_le16(reg->val);
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001676
Hans Verkuil0499a5a2010-09-26 07:34:45 -03001677 return em28xx_write_regs(dev, reg->reg, (char *)&buf,
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001678 em28xx_reg_len(reg->reg));
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001679}
1680#endif
1681
1682
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001683static int vidioc_cropcap(struct file *file, void *priv,
1684 struct v4l2_cropcap *cc)
1685{
1686 struct em28xx_fh *fh = priv;
1687 struct em28xx *dev = fh->dev;
1688
1689 if (cc->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1690 return -EINVAL;
1691
1692 cc->bounds.left = 0;
1693 cc->bounds.top = 0;
1694 cc->bounds.width = dev->width;
1695 cc->bounds.height = dev->height;
1696 cc->defrect = cc->bounds;
1697 cc->pixelaspect.numerator = 54; /* 4:3 FIXME: remove magic numbers */
1698 cc->pixelaspect.denominator = 59;
1699
1700 return 0;
1701}
1702
1703static int vidioc_streamon(struct file *file, void *priv,
1704 enum v4l2_buf_type type)
1705{
1706 struct em28xx_fh *fh = priv;
1707 struct em28xx *dev = fh->dev;
Devin Heitmueller8c873d32009-09-03 00:23:27 -03001708 int rc = -EINVAL;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001709
1710 rc = check_dev(dev);
1711 if (rc < 0)
1712 return rc;
1713
Devin Heitmueller8c873d32009-09-03 00:23:27 -03001714 if (unlikely(type != fh->type))
1715 return -EINVAL;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001716
Devin Heitmueller8c873d32009-09-03 00:23:27 -03001717 em28xx_videodbg("vidioc_streamon fh=%p t=%d fh->res=%d dev->res=%d\n",
1718 fh, type, fh->resources, dev->resources);
Mauro Carvalho Chehab29b59412008-12-16 20:19:24 -03001719
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -03001720 if (unlikely(!res_get(fh, get_ressource(fh))))
Devin Heitmueller8c873d32009-09-03 00:23:27 -03001721 return -EBUSY;
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001722
Devin Heitmueller8c873d32009-09-03 00:23:27 -03001723 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
1724 rc = videobuf_streamon(&fh->vb_vidq);
1725 else if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE)
1726 rc = videobuf_streamon(&fh->vb_vbiq);
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001727
1728 return rc;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001729}
1730
1731static int vidioc_streamoff(struct file *file, void *priv,
1732 enum v4l2_buf_type type)
1733{
1734 struct em28xx_fh *fh = priv;
1735 struct em28xx *dev = fh->dev;
1736 int rc;
1737
1738 rc = check_dev(dev);
1739 if (rc < 0)
1740 return rc;
1741
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001742 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
1743 fh->type != V4L2_BUF_TYPE_VBI_CAPTURE)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001744 return -EINVAL;
1745 if (type != fh->type)
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001746 return -EINVAL;
1747
Devin Heitmueller8c873d32009-09-03 00:23:27 -03001748 em28xx_videodbg("vidioc_streamoff fh=%p t=%d fh->res=%d dev->res=%d\n",
1749 fh, type, fh->resources, dev->resources);
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001750
Devin Heitmueller8c873d32009-09-03 00:23:27 -03001751 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
Hans Verkuil3ea2b672010-12-29 14:28:13 -03001752 if (res_check(fh, EM28XX_RESOURCE_VIDEO)) {
1753 videobuf_streamoff(&fh->vb_vidq);
1754 res_free(fh, EM28XX_RESOURCE_VIDEO);
1755 }
Devin Heitmueller8c873d32009-09-03 00:23:27 -03001756 } else if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
Hans Verkuil3ea2b672010-12-29 14:28:13 -03001757 if (res_check(fh, EM28XX_RESOURCE_VBI)) {
1758 videobuf_streamoff(&fh->vb_vbiq);
1759 res_free(fh, EM28XX_RESOURCE_VBI);
1760 }
Devin Heitmueller8c873d32009-09-03 00:23:27 -03001761 }
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001762
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001763 return 0;
1764}
1765
1766static int vidioc_querycap(struct file *file, void *priv,
1767 struct v4l2_capability *cap)
1768{
1769 struct em28xx_fh *fh = priv;
1770 struct em28xx *dev = fh->dev;
1771
1772 strlcpy(cap->driver, "em28xx", sizeof(cap->driver));
1773 strlcpy(cap->card, em28xx_boards[dev->model].name, sizeof(cap->card));
Thierry MERLEcb977162009-01-20 18:01:33 -03001774 usb_make_path(dev->udev, cap->bus_info, sizeof(cap->bus_info));
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001775
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001776 cap->capabilities =
1777 V4L2_CAP_SLICED_VBI_CAPTURE |
1778 V4L2_CAP_VIDEO_CAPTURE |
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001779 V4L2_CAP_READWRITE | V4L2_CAP_STREAMING;
1780
Devin Heitmueller04146142009-09-11 00:08:44 -03001781 if (dev->vbi_dev)
1782 cap->capabilities |= V4L2_CAP_VBI_CAPTURE;
1783
Mauro Carvalho Chehab6c428b52009-08-04 19:52:37 -03001784 if (dev->audio_mode.has_audio)
1785 cap->capabilities |= V4L2_CAP_AUDIO;
1786
Mauro Carvalho Chehabed086312008-01-24 06:59:20 -03001787 if (dev->tuner_type != TUNER_ABSENT)
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001788 cap->capabilities |= V4L2_CAP_TUNER;
1789
1790 return 0;
1791}
1792
Hans Verkuil78b526a2008-05-28 12:16:41 -03001793static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -03001794 struct v4l2_fmtdesc *f)
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001795{
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -03001796 if (unlikely(f->index >= ARRAY_SIZE(format)))
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001797 return -EINVAL;
1798
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -03001799 strlcpy(f->description, format[f->index].name, sizeof(f->description));
1800 f->pixelformat = format[f->index].fourcc;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001801
1802 return 0;
1803}
1804
1805/* Sliced VBI ioctls */
Hans Verkuil78b526a2008-05-28 12:16:41 -03001806static int vidioc_g_fmt_sliced_vbi_cap(struct file *file, void *priv,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001807 struct v4l2_format *f)
1808{
1809 struct em28xx_fh *fh = priv;
1810 struct em28xx *dev = fh->dev;
1811 int rc;
1812
1813 rc = check_dev(dev);
1814 if (rc < 0)
1815 return rc;
1816
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001817 f->fmt.sliced.service_set = 0;
Hans Verkuil4a61ecb2010-03-14 12:39:27 -03001818 v4l2_device_call_all(&dev->v4l2_dev, 0, vbi, g_sliced_fmt, &f->fmt.sliced);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001819
1820 if (f->fmt.sliced.service_set == 0)
1821 rc = -EINVAL;
1822
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001823 return rc;
1824}
1825
Hans Verkuil78b526a2008-05-28 12:16:41 -03001826static int vidioc_try_set_sliced_vbi_cap(struct file *file, void *priv,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001827 struct v4l2_format *f)
1828{
1829 struct em28xx_fh *fh = priv;
1830 struct em28xx *dev = fh->dev;
1831 int rc;
1832
1833 rc = check_dev(dev);
1834 if (rc < 0)
1835 return rc;
1836
Hans Verkuil4a61ecb2010-03-14 12:39:27 -03001837 v4l2_device_call_all(&dev->v4l2_dev, 0, vbi, g_sliced_fmt, &f->fmt.sliced);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001838
1839 if (f->fmt.sliced.service_set == 0)
1840 return -EINVAL;
1841
1842 return 0;
1843}
1844
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001845/* RAW VBI ioctls */
1846
1847static int vidioc_g_fmt_vbi_cap(struct file *file, void *priv,
1848 struct v4l2_format *format)
1849{
Devin Heitmueller66d9cba2009-11-24 23:17:25 -03001850 struct em28xx_fh *fh = priv;
1851 struct em28xx *dev = fh->dev;
1852
1853 format->fmt.vbi.samples_per_line = dev->vbi_width;
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001854 format->fmt.vbi.sample_format = V4L2_PIX_FMT_GREY;
1855 format->fmt.vbi.offset = 0;
1856 format->fmt.vbi.flags = 0;
Devin Heitmueller66d9cba2009-11-24 23:17:25 -03001857 format->fmt.vbi.sampling_rate = 6750000 * 4 / 2;
1858 format->fmt.vbi.count[0] = dev->vbi_height;
1859 format->fmt.vbi.count[1] = dev->vbi_height;
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001860
1861 /* Varies by video standard (NTSC, PAL, etc.) */
Devin Heitmueller66d9cba2009-11-24 23:17:25 -03001862 if (dev->norm & V4L2_STD_525_60) {
1863 /* NTSC */
1864 format->fmt.vbi.start[0] = 10;
1865 format->fmt.vbi.start[1] = 273;
1866 } else if (dev->norm & V4L2_STD_625_50) {
1867 /* PAL */
1868 format->fmt.vbi.start[0] = 6;
1869 format->fmt.vbi.start[1] = 318;
1870 }
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001871
1872 return 0;
1873}
1874
1875static int vidioc_s_fmt_vbi_cap(struct file *file, void *priv,
1876 struct v4l2_format *format)
1877{
Devin Heitmueller66d9cba2009-11-24 23:17:25 -03001878 struct em28xx_fh *fh = priv;
1879 struct em28xx *dev = fh->dev;
1880
1881 format->fmt.vbi.samples_per_line = dev->vbi_width;
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001882 format->fmt.vbi.sample_format = V4L2_PIX_FMT_GREY;
1883 format->fmt.vbi.offset = 0;
1884 format->fmt.vbi.flags = 0;
Devin Heitmueller66d9cba2009-11-24 23:17:25 -03001885 format->fmt.vbi.sampling_rate = 6750000 * 4 / 2;
1886 format->fmt.vbi.count[0] = dev->vbi_height;
1887 format->fmt.vbi.count[1] = dev->vbi_height;
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001888
1889 /* Varies by video standard (NTSC, PAL, etc.) */
Devin Heitmueller66d9cba2009-11-24 23:17:25 -03001890 if (dev->norm & V4L2_STD_525_60) {
1891 /* NTSC */
1892 format->fmt.vbi.start[0] = 10;
1893 format->fmt.vbi.start[1] = 273;
1894 } else if (dev->norm & V4L2_STD_625_50) {
1895 /* PAL */
1896 format->fmt.vbi.start[0] = 6;
1897 format->fmt.vbi.start[1] = 318;
1898 }
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001899
1900 return 0;
1901}
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001902
1903static int vidioc_reqbufs(struct file *file, void *priv,
1904 struct v4l2_requestbuffers *rb)
1905{
1906 struct em28xx_fh *fh = priv;
1907 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001908 int rc;
1909
1910 rc = check_dev(dev);
1911 if (rc < 0)
1912 return rc;
1913
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001914 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
1915 return videobuf_reqbufs(&fh->vb_vidq, rb);
1916 else
1917 return videobuf_reqbufs(&fh->vb_vbiq, rb);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001918}
1919
1920static int vidioc_querybuf(struct file *file, void *priv,
1921 struct v4l2_buffer *b)
1922{
1923 struct em28xx_fh *fh = priv;
1924 struct em28xx *dev = fh->dev;
1925 int rc;
1926
1927 rc = check_dev(dev);
1928 if (rc < 0)
1929 return rc;
1930
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001931 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
1932 return videobuf_querybuf(&fh->vb_vidq, b);
1933 else {
1934 /* FIXME: I'm not sure yet whether this is a bug in zvbi or
1935 the videobuf framework, but we probably shouldn't be
1936 returning a buffer larger than that which was asked for.
1937 At a minimum, it causes a crash in zvbi since it does
1938 a memcpy based on the source buffer length */
1939 int result = videobuf_querybuf(&fh->vb_vbiq, b);
Devin Heitmueller66d9cba2009-11-24 23:17:25 -03001940 b->length = dev->vbi_width * dev->vbi_height * 2;
1941
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001942 return result;
1943 }
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001944}
1945
1946static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
1947{
1948 struct em28xx_fh *fh = priv;
1949 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001950 int rc;
1951
1952 rc = check_dev(dev);
1953 if (rc < 0)
1954 return rc;
1955
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001956 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
1957 return videobuf_qbuf(&fh->vb_vidq, b);
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -03001958 else
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001959 return videobuf_qbuf(&fh->vb_vbiq, b);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001960}
1961
1962static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
1963{
1964 struct em28xx_fh *fh = priv;
1965 struct em28xx *dev = fh->dev;
1966 int rc;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001967
1968 rc = check_dev(dev);
1969 if (rc < 0)
1970 return rc;
1971
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001972 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
1973 return videobuf_dqbuf(&fh->vb_vidq, b, file->f_flags &
1974 O_NONBLOCK);
1975 else
1976 return videobuf_dqbuf(&fh->vb_vbiq, b, file->f_flags &
1977 O_NONBLOCK);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001978}
1979
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001980/* ----------------------------------------------------------- */
1981/* RADIO ESPECIFIC IOCTLS */
1982/* ----------------------------------------------------------- */
1983
1984static int radio_querycap(struct file *file, void *priv,
1985 struct v4l2_capability *cap)
1986{
1987 struct em28xx *dev = ((struct em28xx_fh *)priv)->dev;
1988
1989 strlcpy(cap->driver, "em28xx", sizeof(cap->driver));
1990 strlcpy(cap->card, em28xx_boards[dev->model].name, sizeof(cap->card));
Thierry MERLEcb977162009-01-20 18:01:33 -03001991 usb_make_path(dev->udev, cap->bus_info, sizeof(cap->bus_info));
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001992
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001993 cap->capabilities = V4L2_CAP_TUNER;
1994 return 0;
1995}
1996
1997static int radio_g_tuner(struct file *file, void *priv,
1998 struct v4l2_tuner *t)
1999{
2000 struct em28xx *dev = ((struct em28xx_fh *)priv)->dev;
2001
2002 if (unlikely(t->index > 0))
2003 return -EINVAL;
2004
2005 strcpy(t->name, "Radio");
2006 t->type = V4L2_TUNER_RADIO;
2007
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03002008 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_tuner, t);
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03002009
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002010 return 0;
2011}
2012
2013static int radio_enum_input(struct file *file, void *priv,
2014 struct v4l2_input *i)
2015{
2016 if (i->index != 0)
2017 return -EINVAL;
2018 strcpy(i->name, "Radio");
2019 i->type = V4L2_INPUT_TYPE_TUNER;
2020
2021 return 0;
2022}
2023
2024static int radio_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
2025{
2026 if (unlikely(a->index))
2027 return -EINVAL;
2028
2029 strcpy(a->name, "Radio");
2030 return 0;
2031}
2032
2033static int radio_s_tuner(struct file *file, void *priv,
2034 struct v4l2_tuner *t)
2035{
2036 struct em28xx *dev = ((struct em28xx_fh *)priv)->dev;
2037
2038 if (0 != t->index)
2039 return -EINVAL;
2040
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03002041 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_tuner, t);
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002042
2043 return 0;
2044}
2045
2046static int radio_s_audio(struct file *file, void *fh,
2047 struct v4l2_audio *a)
2048{
2049 return 0;
2050}
2051
2052static int radio_s_input(struct file *file, void *fh, unsigned int i)
2053{
2054 return 0;
2055}
2056
2057static int radio_queryctrl(struct file *file, void *priv,
2058 struct v4l2_queryctrl *qc)
2059{
2060 int i;
2061
2062 if (qc->id < V4L2_CID_BASE ||
2063 qc->id >= V4L2_CID_LASTP1)
2064 return -EINVAL;
2065
Mauro Carvalho Chehabed10daa2009-07-19 09:10:06 -03002066 for (i = 0; i < ARRAY_SIZE(ac97_qctrl); i++) {
2067 if (qc->id && qc->id == ac97_qctrl[i].id) {
2068 memcpy(qc, &(ac97_qctrl[i]), sizeof(*qc));
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002069 return 0;
2070 }
2071 }
2072
2073 return -EINVAL;
2074}
2075
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002076/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002077 * em28xx_v4l2_open()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002078 * inits the device and starts isoc transfer
2079 */
Hans Verkuilbec43662008-12-30 06:58:20 -03002080static int em28xx_v4l2_open(struct file *filp)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002081{
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02002082 int errCode = 0, radio = 0;
2083 struct video_device *vdev = video_devdata(filp);
2084 struct em28xx *dev = video_drvdata(filp);
2085 enum v4l2_buf_type fh_type = 0;
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002086 struct em28xx_fh *fh;
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -03002087 enum v4l2_field field;
Markus Rechberger9c755412005-11-08 21:37:52 -08002088
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02002089 switch (vdev->vfl_type) {
2090 case VFL_TYPE_GRABBER:
2091 fh_type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
2092 break;
2093 case VFL_TYPE_VBI:
2094 fh_type = V4L2_BUF_TYPE_VBI_CAPTURE;
2095 break;
2096 case VFL_TYPE_RADIO:
2097 radio = 1;
2098 break;
2099 }
Mauro Carvalho Chehab818a5572008-11-20 10:30:26 -03002100
Laurent Pinchart50462eb2009-12-10 11:47:13 -02002101 em28xx_videodbg("open dev=%s type=%s users=%d\n",
2102 video_device_node_name(vdev), v4l2_type_names[fh_type],
2103 dev->users);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002104
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002105
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -03002106 fh = kzalloc(sizeof(struct em28xx_fh), GFP_KERNEL);
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002107 if (!fh) {
2108 em28xx_errdev("em28xx-video.c: Out of memory?!\n");
2109 return -ENOMEM;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002110 }
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002111 fh->dev = dev;
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002112 fh->radio = radio;
Aidan Thorntond7aa8022008-04-13 14:38:47 -03002113 fh->type = fh_type;
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002114 filp->private_data = fh;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002115
Aidan Thorntond7aa8022008-04-13 14:38:47 -03002116 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE && dev->users == 0) {
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -03002117 em28xx_set_mode(dev, EM28XX_ANALOG_MODE);
Mauro Carvalho Chehab3687e1e2008-02-08 15:44:25 -03002118 em28xx_set_alternate(dev);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002119 em28xx_resolution_set(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002120
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -03002121 /* Needed, since GPIO might have disabled power of
2122 some i2c device
2123 */
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002124 em28xx_wake_i2c(dev);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -03002125
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002126 }
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002127 if (fh->radio) {
2128 em28xx_videodbg("video_open: setting radio device\n");
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03002129 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_radio);
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002130 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002131
2132 dev->users++;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002133
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -03002134 if (dev->progressive)
2135 field = V4L2_FIELD_NONE;
2136 else
2137 field = V4L2_FIELD_INTERLACED;
2138
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002139 videobuf_queue_vmalloc_init(&fh->vb_vidq, &em28xx_video_qops,
2140 NULL, &dev->slock,
2141 V4L2_BUF_TYPE_VIDEO_CAPTURE, field,
Hans Verkuil0499a5a2010-09-26 07:34:45 -03002142 sizeof(struct em28xx_buffer), fh, &dev->lock);
Devin Heitmueller28abf0832009-09-01 01:54:54 -03002143
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002144 videobuf_queue_vmalloc_init(&fh->vb_vbiq, &em28xx_vbi_qops,
2145 NULL, &dev->slock,
2146 V4L2_BUF_TYPE_VBI_CAPTURE,
2147 V4L2_FIELD_SEQ_TB,
Hans Verkuil0499a5a2010-09-26 07:34:45 -03002148 sizeof(struct em28xx_buffer), fh, &dev->lock);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -03002149
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002150 return errCode;
2151}
2152
2153/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002154 * em28xx_realease_resources()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002155 * unregisters the v4l2,i2c and usb devices
2156 * called when the device gets disconected or at module unload
2157*/
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002158void em28xx_release_analog_resources(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002159{
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002160
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002161 /*FIXME: I2C IR should be disconnected */
2162
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002163 if (dev->radio_dev) {
Laurent Pinchartf0813b42009-11-27 13:57:30 -03002164 if (video_is_registered(dev->radio_dev))
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002165 video_unregister_device(dev->radio_dev);
2166 else
2167 video_device_release(dev->radio_dev);
2168 dev->radio_dev = NULL;
2169 }
2170 if (dev->vbi_dev) {
Laurent Pinchart38c7c032009-11-27 13:57:15 -03002171 em28xx_info("V4L2 device %s deregistered\n",
2172 video_device_node_name(dev->vbi_dev));
Laurent Pinchartf0813b42009-11-27 13:57:30 -03002173 if (video_is_registered(dev->vbi_dev))
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002174 video_unregister_device(dev->vbi_dev);
2175 else
2176 video_device_release(dev->vbi_dev);
2177 dev->vbi_dev = NULL;
2178 }
2179 if (dev->vdev) {
Laurent Pinchart38c7c032009-11-27 13:57:15 -03002180 em28xx_info("V4L2 device %s deregistered\n",
2181 video_device_node_name(dev->vdev));
Laurent Pinchartf0813b42009-11-27 13:57:30 -03002182 if (video_is_registered(dev->vdev))
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002183 video_unregister_device(dev->vdev);
2184 else
2185 video_device_release(dev->vdev);
2186 dev->vdev = NULL;
2187 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002188}
2189
2190/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002191 * em28xx_v4l2_close()
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -03002192 * stops streaming and deallocates all resources allocated by the v4l2
2193 * calls and ioctls
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002194 */
Hans Verkuilbec43662008-12-30 06:58:20 -03002195static int em28xx_v4l2_close(struct file *filp)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002196{
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002197 struct em28xx_fh *fh = filp->private_data;
2198 struct em28xx *dev = fh->dev;
2199 int errCode;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002200
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -08002201 em28xx_videodbg("users=%d\n", dev->users);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002202
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002203 if (res_check(fh, EM28XX_RESOURCE_VIDEO)) {
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002204 videobuf_stop(&fh->vb_vidq);
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002205 res_free(fh, EM28XX_RESOURCE_VIDEO);
2206 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002207
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002208 if (res_check(fh, EM28XX_RESOURCE_VBI)) {
2209 videobuf_stop(&fh->vb_vbiq);
2210 res_free(fh, EM28XX_RESOURCE_VBI);
2211 }
2212
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -03002213 if (dev->users == 1) {
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002214 /* the device is already disconnect,
2215 free the remaining resources */
2216 if (dev->state & DEV_DISCONNECTED) {
2217 em28xx_release_resources(dev);
Chris Rankin16e3d2f2011-09-04 15:38:14 -03002218 kfree(dev->alt_max_pkt_size);
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002219 kfree(dev);
2220 return 0;
2221 }
2222
Mauro Carvalho Chehabeb6c9632008-12-05 10:39:12 -03002223 /* Save some power by putting tuner to sleep */
Laurent Pinchart622b8282009-10-05 10:48:17 -03002224 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_power, 0);
Mauro Carvalho Chehabeb6c9632008-12-05 10:39:12 -03002225
Aidan Thorntond7aa8022008-04-13 14:38:47 -03002226 /* do this before setting alternate! */
2227 em28xx_uninit_isoc(dev);
Mauro Carvalho Chehab2fe3e2e2008-11-27 09:10:40 -03002228 em28xx_set_mode(dev, EM28XX_SUSPEND);
Aidan Thorntond7aa8022008-04-13 14:38:47 -03002229
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002230 /* set alternate 0 */
2231 dev->alt = 0;
2232 em28xx_videodbg("setting alternate 0\n");
2233 errCode = usb_set_interface(dev->udev, 0, 0);
2234 if (errCode < 0) {
2235 em28xx_errdev("cannot change alternate number to "
2236 "0 (error=%i)\n", errCode);
2237 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002238 }
Devin Heitmueller28abf0832009-09-01 01:54:54 -03002239
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002240 videobuf_mmap_free(&fh->vb_vidq);
2241 videobuf_mmap_free(&fh->vb_vbiq);
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002242 kfree(fh);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002243 dev->users--;
2244 wake_up_interruptible_nr(&dev->open, 1);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002245 return 0;
2246}
2247
2248/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002249 * em28xx_v4l2_read()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002250 * will allocate buffers when called for the first time
2251 */
2252static ssize_t
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -03002253em28xx_v4l2_read(struct file *filp, char __user *buf, size_t count,
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -03002254 loff_t *pos)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002255{
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002256 struct em28xx_fh *fh = filp->private_data;
2257 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002258 int rc;
2259
2260 rc = check_dev(dev);
2261 if (rc < 0)
2262 return rc;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002263
Mauro Carvalho Chehab9e31ced2007-11-11 01:13:49 -03002264 /* FIXME: read() is not prepared to allow changing the video
2265 resolution while streaming. Seems a bug at em28xx_set_fmt
2266 */
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -03002267
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002268 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002269 if (res_locked(dev, EM28XX_RESOURCE_VIDEO))
2270 return -EBUSY;
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -03002271
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002272 return videobuf_read_stream(&fh->vb_vidq, buf, count, pos, 0,
2273 filp->f_flags & O_NONBLOCK);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002274 }
Devin Heitmueller28abf0832009-09-01 01:54:54 -03002275
2276
2277 if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002278 if (!res_get(fh, EM28XX_RESOURCE_VBI))
2279 return -EBUSY;
Devin Heitmueller28abf0832009-09-01 01:54:54 -03002280
2281 return videobuf_read_stream(&fh->vb_vbiq, buf, count, pos, 0,
2282 filp->f_flags & O_NONBLOCK);
2283 }
2284
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002285 return 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002286}
2287
2288/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002289 * em28xx_v4l2_poll()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002290 * will allocate buffers when called for the first time
2291 */
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -03002292static unsigned int em28xx_v4l2_poll(struct file *filp, poll_table *wait)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002293{
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002294 struct em28xx_fh *fh = filp->private_data;
2295 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002296 int rc;
2297
2298 rc = check_dev(dev);
2299 if (rc < 0)
2300 return rc;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002301
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002302 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
2303 if (!res_get(fh, EM28XX_RESOURCE_VIDEO))
2304 return POLLERR;
Devin Heitmueller28abf0832009-09-01 01:54:54 -03002305 return videobuf_poll_stream(filp, &fh->vb_vidq, wait);
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002306 } else if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
2307 if (!res_get(fh, EM28XX_RESOURCE_VBI))
2308 return POLLERR;
Devin Heitmueller28abf0832009-09-01 01:54:54 -03002309 return videobuf_poll_stream(filp, &fh->vb_vbiq, wait);
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002310 } else {
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002311 return POLLERR;
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002312 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002313}
2314
2315/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002316 * em28xx_v4l2_mmap()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002317 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002318static int em28xx_v4l2_mmap(struct file *filp, struct vm_area_struct *vma)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002319{
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002320 struct em28xx_fh *fh = filp->private_data;
2321 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002322 int rc;
Markus Rechberger9c755412005-11-08 21:37:52 -08002323
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002324 rc = check_dev(dev);
2325 if (rc < 0)
2326 return rc;
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002327
Devin Heitmueller91f6dce2009-09-02 22:23:23 -03002328 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
2329 rc = videobuf_mmap_mapper(&fh->vb_vidq, vma);
2330 else if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE)
2331 rc = videobuf_mmap_mapper(&fh->vb_vbiq, vma);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002332
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002333 em28xx_videodbg("vma start=0x%08lx, size=%ld, ret=%d\n",
2334 (unsigned long)vma->vm_start,
2335 (unsigned long)vma->vm_end-(unsigned long)vma->vm_start,
2336 rc);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002337
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002338 return rc;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002339}
2340
Hans Verkuilbec43662008-12-30 06:58:20 -03002341static const struct v4l2_file_operations em28xx_v4l_fops = {
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002342 .owner = THIS_MODULE,
2343 .open = em28xx_v4l2_open,
2344 .release = em28xx_v4l2_close,
2345 .read = em28xx_v4l2_read,
2346 .poll = em28xx_v4l2_poll,
2347 .mmap = em28xx_v4l2_mmap,
Hans Verkuil0499a5a2010-09-26 07:34:45 -03002348 .unlocked_ioctl = video_ioctl2,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002349};
2350
Hans Verkuila3998102008-07-21 02:57:38 -03002351static const struct v4l2_ioctl_ops video_ioctl_ops = {
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002352 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03002353 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
2354 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
2355 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
2356 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Devin Heitmueller28abf0832009-09-01 01:54:54 -03002357 .vidioc_g_fmt_vbi_cap = vidioc_g_fmt_vbi_cap,
2358 .vidioc_s_fmt_vbi_cap = vidioc_s_fmt_vbi_cap,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002359 .vidioc_g_audio = vidioc_g_audio,
2360 .vidioc_s_audio = vidioc_s_audio,
2361 .vidioc_cropcap = vidioc_cropcap,
2362
Hans Verkuil78b526a2008-05-28 12:16:41 -03002363 .vidioc_g_fmt_sliced_vbi_cap = vidioc_g_fmt_sliced_vbi_cap,
2364 .vidioc_try_fmt_sliced_vbi_cap = vidioc_try_set_sliced_vbi_cap,
2365 .vidioc_s_fmt_sliced_vbi_cap = vidioc_try_set_sliced_vbi_cap,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002366
2367 .vidioc_reqbufs = vidioc_reqbufs,
2368 .vidioc_querybuf = vidioc_querybuf,
2369 .vidioc_qbuf = vidioc_qbuf,
2370 .vidioc_dqbuf = vidioc_dqbuf,
Devin Heitmueller19bf0032009-09-11 00:40:18 -03002371 .vidioc_g_std = vidioc_g_std,
Mauro Carvalho Chehabd56ae6f2011-10-04 09:53:00 -03002372 .vidioc_querystd = vidioc_querystd,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002373 .vidioc_s_std = vidioc_s_std,
Mauro Carvalho Chehabd96ecda2009-08-06 21:53:59 -03002374 .vidioc_g_parm = vidioc_g_parm,
2375 .vidioc_s_parm = vidioc_s_parm,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002376 .vidioc_enum_input = vidioc_enum_input,
2377 .vidioc_g_input = vidioc_g_input,
2378 .vidioc_s_input = vidioc_s_input,
2379 .vidioc_queryctrl = vidioc_queryctrl,
2380 .vidioc_g_ctrl = vidioc_g_ctrl,
2381 .vidioc_s_ctrl = vidioc_s_ctrl,
2382 .vidioc_streamon = vidioc_streamon,
2383 .vidioc_streamoff = vidioc_streamoff,
2384 .vidioc_g_tuner = vidioc_g_tuner,
2385 .vidioc_s_tuner = vidioc_s_tuner,
2386 .vidioc_g_frequency = vidioc_g_frequency,
2387 .vidioc_s_frequency = vidioc_s_frequency,
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03002388#ifdef CONFIG_VIDEO_ADV_DEBUG
2389 .vidioc_g_register = vidioc_g_register,
2390 .vidioc_s_register = vidioc_s_register,
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03002391 .vidioc_g_chip_ident = vidioc_g_chip_ident,
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03002392#endif
Hans Verkuila3998102008-07-21 02:57:38 -03002393};
2394
2395static const struct video_device em28xx_video_template = {
2396 .fops = &em28xx_v4l_fops,
2397 .release = video_device_release,
2398 .ioctl_ops = &video_ioctl_ops,
2399
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002400 .tvnorms = V4L2_STD_ALL,
Devin Heitmueller19bf0032009-09-11 00:40:18 -03002401 .current_norm = V4L2_STD_PAL,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002402};
2403
Hans Verkuilbec43662008-12-30 06:58:20 -03002404static const struct v4l2_file_operations radio_fops = {
Hans Verkuila3998102008-07-21 02:57:38 -03002405 .owner = THIS_MODULE,
2406 .open = em28xx_v4l2_open,
2407 .release = em28xx_v4l2_close,
Hans Verkuil8fd0bda2010-12-18 09:59:51 -03002408 .unlocked_ioctl = video_ioctl2,
Hans Verkuila3998102008-07-21 02:57:38 -03002409};
2410
2411static const struct v4l2_ioctl_ops radio_ioctl_ops = {
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002412 .vidioc_querycap = radio_querycap,
2413 .vidioc_g_tuner = radio_g_tuner,
2414 .vidioc_enum_input = radio_enum_input,
2415 .vidioc_g_audio = radio_g_audio,
2416 .vidioc_s_tuner = radio_s_tuner,
2417 .vidioc_s_audio = radio_s_audio,
2418 .vidioc_s_input = radio_s_input,
2419 .vidioc_queryctrl = radio_queryctrl,
2420 .vidioc_g_ctrl = vidioc_g_ctrl,
2421 .vidioc_s_ctrl = vidioc_s_ctrl,
2422 .vidioc_g_frequency = vidioc_g_frequency,
2423 .vidioc_s_frequency = vidioc_s_frequency,
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03002424#ifdef CONFIG_VIDEO_ADV_DEBUG
2425 .vidioc_g_register = vidioc_g_register,
2426 .vidioc_s_register = vidioc_s_register,
2427#endif
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002428};
2429
Hans Verkuila3998102008-07-21 02:57:38 -03002430static struct video_device em28xx_radio_template = {
2431 .name = "em28xx-radio",
Hans Verkuila3998102008-07-21 02:57:38 -03002432 .fops = &radio_fops,
2433 .ioctl_ops = &radio_ioctl_ops,
Hans Verkuila3998102008-07-21 02:57:38 -03002434};
2435
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -03002436/******************************** usb interface ******************************/
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002437
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -03002438
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -03002439
Adrian Bunk532fe652008-01-28 22:10:48 -03002440static struct video_device *em28xx_vdev_init(struct em28xx *dev,
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -03002441 const struct video_device *template,
2442 const char *type_name)
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002443{
2444 struct video_device *vfd;
2445
2446 vfd = video_device_alloc();
2447 if (NULL == vfd)
2448 return NULL;
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03002449
2450 *vfd = *template;
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03002451 vfd->v4l2_dev = &dev->v4l2_dev;
2452 vfd->release = video_device_release;
2453 vfd->debug = video_debug;
Hans Verkuil0499a5a2010-09-26 07:34:45 -03002454 vfd->lock = &dev->lock;
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002455
2456 snprintf(vfd->name, sizeof(vfd->name), "%s %s",
2457 dev->name, type_name);
2458
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02002459 video_set_drvdata(vfd, dev);
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002460 return vfd;
2461}
2462
Mauro Carvalho Chehab2e5ef2d2008-12-28 22:26:36 -03002463int em28xx_register_analog_devices(struct em28xx *dev)
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002464{
Robert Krakora6e7b9ea2009-01-18 21:59:34 -03002465 u8 val;
Mauro Carvalho Chehab2e5ef2d2008-12-28 22:26:36 -03002466 int ret;
2467
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -03002468 printk(KERN_INFO "%s: v4l2 driver version %s\n",
2469 dev->name, EM28XX_VERSION);
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002470
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002471 /* set default norm */
2472 dev->norm = em28xx_video_template.current_norm;
Hans Verkuild5906dd2010-09-26 07:45:15 -03002473 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_std, dev->norm);
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002474 dev->interlaced = EM28XX_INTERLACED_DEFAULT;
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03002475 dev->ctl_input = 0;
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002476
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03002477 /* Analog specific initialization */
2478 dev->format = &format[0];
Mauro Carvalho Chehabed5f1432009-07-02 17:34:04 -03002479 em28xx_set_video_format(dev, format[0].fourcc,
2480 norm_maxw(dev), norm_maxh(dev));
2481
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03002482 video_mux(dev, dev->ctl_input);
2483
2484 /* Audio defaults */
2485 dev->mute = 1;
2486 dev->volume = 0x1f;
2487
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03002488/* em28xx_write_reg(dev, EM28XX_R0E_AUDIOSRC, 0xc0); audio register */
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -03002489 val = (u8)em28xx_read_reg(dev, EM28XX_R0F_XCLK);
2490 em28xx_write_reg(dev, EM28XX_R0F_XCLK,
2491 (EM28XX_XCLK_AUDIO_UNMUTE | val));
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03002492
2493 em28xx_set_outfmt(dev);
2494 em28xx_colorlevels_set_default(dev);
2495 em28xx_compression_disable(dev);
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002496
Mauro Carvalho Chehab818a5572008-11-20 10:30:26 -03002497 /* allocate and fill video video_device struct */
2498 dev->vdev = em28xx_vdev_init(dev, &em28xx_video_template, "video");
2499 if (!dev->vdev) {
2500 em28xx_errdev("cannot allocate video_device.\n");
2501 return -ENODEV;
2502 }
2503
2504 /* register v4l2 video video_device */
2505 ret = video_register_device(dev->vdev, VFL_TYPE_GRABBER,
2506 video_nr[dev->devno]);
2507 if (ret) {
2508 em28xx_errdev("unable to register video device (error=%i).\n",
2509 ret);
2510 return ret;
2511 }
2512
2513 /* Allocate and fill vbi video_device struct */
Devin Heitmueller290c0cf2009-09-11 00:01:06 -03002514 if (em28xx_vbi_supported(dev) == 1) {
2515 dev->vbi_dev = em28xx_vdev_init(dev, &em28xx_video_template,
2516 "vbi");
Mauro Carvalho Chehab818a5572008-11-20 10:30:26 -03002517
Devin Heitmueller290c0cf2009-09-11 00:01:06 -03002518 /* register v4l2 vbi video_device */
2519 ret = video_register_device(dev->vbi_dev, VFL_TYPE_VBI,
2520 vbi_nr[dev->devno]);
2521 if (ret < 0) {
2522 em28xx_errdev("unable to register vbi device\n");
2523 return ret;
2524 }
Mauro Carvalho Chehab818a5572008-11-20 10:30:26 -03002525 }
2526
2527 if (em28xx_boards[dev->model].radio.type == EM28XX_RADIO) {
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -03002528 dev->radio_dev = em28xx_vdev_init(dev, &em28xx_radio_template,
2529 "radio");
Mauro Carvalho Chehab818a5572008-11-20 10:30:26 -03002530 if (!dev->radio_dev) {
2531 em28xx_errdev("cannot allocate video_device.\n");
2532 return -ENODEV;
2533 }
2534 ret = video_register_device(dev->radio_dev, VFL_TYPE_RADIO,
2535 radio_nr[dev->devno]);
2536 if (ret < 0) {
2537 em28xx_errdev("can't register radio device\n");
2538 return ret;
2539 }
Laurent Pinchart38c7c032009-11-27 13:57:15 -03002540 em28xx_info("Registered radio device as %s\n",
2541 video_device_node_name(dev->radio_dev));
Mauro Carvalho Chehab818a5572008-11-20 10:30:26 -03002542 }
2543
Laurent Pinchart38c7c032009-11-27 13:57:15 -03002544 em28xx_info("V4L2 video device registered as %s\n",
2545 video_device_node_name(dev->vdev));
Devin Heitmueller290c0cf2009-09-11 00:01:06 -03002546
2547 if (dev->vbi_dev)
Laurent Pinchart38c7c032009-11-27 13:57:15 -03002548 em28xx_info("V4L2 VBI device registered as %s\n",
2549 video_device_node_name(dev->vbi_dev));
Mauro Carvalho Chehab818a5572008-11-20 10:30:26 -03002550
2551 return 0;
2552}