blob: 0408727b79c674851c8598cb57ba1c81cb566ea6 [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>
Mauro Carvalho Chehabb296fc62005-11-08 21:38:37 -080035#include <linux/version.h>
Trent Piepho6d35c8f2007-11-01 01:16:09 -030036#include <linux/mm.h>
Ingo Molnar1e4baed2006-01-15 07:52:23 -020037#include <linux/mutex.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"
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -030052#define EM28XX_VERSION_CODE KERNEL_VERSION(0, 1, 2)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080053
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -080054#define em28xx_videodbg(fmt, arg...) do {\
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080055 if (video_debug) \
56 printk(KERN_INFO "%s %s :"fmt, \
Harvey Harrisond80e1342008-04-08 23:20:00 -030057 dev->name, __func__ , ##arg); } while (0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080058
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -030059static unsigned int isoc_debug;
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -030060module_param(isoc_debug, int, 0644);
61MODULE_PARM_DESC(isoc_debug, "enable debug messages [isoc transfers]");
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -030062
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -030063#define em28xx_isocdbg(fmt, arg...) \
64do {\
65 if (isoc_debug) { \
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -030066 printk(KERN_INFO "%s %s :"fmt, \
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -030067 dev->name, __func__ , ##arg); \
68 } \
69 } while (0)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -030070
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080071MODULE_AUTHOR(DRIVER_AUTHOR);
72MODULE_DESCRIPTION(DRIVER_DESC);
73MODULE_LICENSE("GPL");
74
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -020075static unsigned int video_nr[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -030076static unsigned int vbi_nr[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
77static unsigned int radio_nr[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
78
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -020079module_param_array(video_nr, int, NULL, 0444);
80module_param_array(vbi_nr, int, NULL, 0444);
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -030081module_param_array(radio_nr, int, NULL, 0444);
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -030082MODULE_PARM_DESC(video_nr, "video device numbers");
83MODULE_PARM_DESC(vbi_nr, "vbi device numbers");
84MODULE_PARM_DESC(radio_nr, "radio device numbers");
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -080085
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030086static unsigned int video_debug;
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -030087module_param(video_debug, int, 0644);
88MODULE_PARM_DESC(video_debug, "enable debug messages [video]");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080089
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -030090/* supported video standards */
91static struct em28xx_fmt format[] = {
92 {
Mauro Carvalho Chehab58fc1ce2009-07-03 02:54:18 -030093 .name = "16 bpp YUY2, 4:2:2, packed",
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -030094 .fourcc = V4L2_PIX_FMT_YUYV,
95 .depth = 16,
Devin Heitmueller3fbf9302008-12-29 23:34:37 -030096 .reg = EM28XX_OUTFMT_YUV422_Y0UY1V,
Mauro Carvalho Chehab43cb9fe2009-06-30 08:36:17 -030097 }, {
Mauro Carvalho Chehab58fc1ce2009-07-03 02:54:18 -030098 .name = "16 bpp RGB 565, LE",
Mauro Carvalho Chehab43cb9fe2009-06-30 08:36:17 -030099 .fourcc = V4L2_PIX_FMT_RGB565,
100 .depth = 16,
Mauro Carvalho Chehab58fc1ce2009-07-03 02:54:18 -0300101 .reg = EM28XX_OUTFMT_RGB_16_656,
102 }, {
103 .name = "8 bpp Bayer BGBG..GRGR",
104 .fourcc = V4L2_PIX_FMT_SBGGR8,
105 .depth = 8,
106 .reg = EM28XX_OUTFMT_RGB_8_BGBG,
107 }, {
108 .name = "8 bpp Bayer GRGR..BGBG",
109 .fourcc = V4L2_PIX_FMT_SGRBG8,
110 .depth = 8,
111 .reg = EM28XX_OUTFMT_RGB_8_GRGR,
112 }, {
113 .name = "8 bpp Bayer GBGB..RGRG",
114 .fourcc = V4L2_PIX_FMT_SGBRG8,
115 .depth = 8,
116 .reg = EM28XX_OUTFMT_RGB_8_GBGB,
117 }, {
118 .name = "12 bpp YUV411",
119 .fourcc = V4L2_PIX_FMT_YUV411P,
120 .depth = 12,
121 .reg = EM28XX_OUTFMT_YUV411,
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -0300122 },
123};
124
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800125/* supported controls */
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200126/* Common to all boards */
Mauro Carvalho Chehabed10daa2009-07-19 09:10:06 -0300127static struct v4l2_queryctrl ac97_qctrl[] = {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800128 {
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200129 .id = V4L2_CID_AUDIO_VOLUME,
130 .type = V4L2_CTRL_TYPE_INTEGER,
131 .name = "Volume",
132 .minimum = 0x0,
133 .maximum = 0x1f,
134 .step = 0x1,
135 .default_value = 0x1f,
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -0300136 .flags = V4L2_CTRL_FLAG_SLIDER,
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300137 }, {
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200138 .id = V4L2_CID_AUDIO_MUTE,
139 .type = V4L2_CTRL_TYPE_BOOLEAN,
140 .name = "Mute",
141 .minimum = 0,
142 .maximum = 1,
143 .step = 1,
144 .default_value = 1,
145 .flags = 0,
146 }
147};
148
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300149/* ------------------------------------------------------------------
150 DMA and thread functions
151 ------------------------------------------------------------------*/
152
153/*
154 * Announces that a buffer were filled and request the next
155 */
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300156static inline void buffer_filled(struct em28xx *dev,
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300157 struct em28xx_dmaqueue *dma_q,
158 struct em28xx_buffer *buf)
159{
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300160 /* Advice that buffer was filled */
161 em28xx_isocdbg("[%p/%d] wakeup\n", buf, buf->vb.i);
162 buf->vb.state = VIDEOBUF_DONE;
163 buf->vb.field_count++;
164 do_gettimeofday(&buf->vb.ts);
165
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300166 dev->isoc_ctl.vid_buf = NULL;
167
168 list_del(&buf->vb.queue);
169 wake_up(&buf->vb.done);
170}
171
172static inline void vbi_buffer_filled(struct em28xx *dev,
173 struct em28xx_dmaqueue *dma_q,
174 struct em28xx_buffer *buf)
175{
176 /* Advice that buffer was filled */
177 em28xx_isocdbg("[%p/%d] wakeup\n", buf, buf->vb.i);
178
179 buf->vb.state = VIDEOBUF_DONE;
180 buf->vb.field_count++;
181 do_gettimeofday(&buf->vb.ts);
182
183 dev->isoc_ctl.vbi_buf = NULL;
Mauro Carvalho Chehabcb784722008-04-13 15:06:52 -0300184
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300185 list_del(&buf->vb.queue);
186 wake_up(&buf->vb.done);
187}
188
189/*
190 * Identify the buffer header type and properly handles
191 */
192static void em28xx_copy_video(struct em28xx *dev,
193 struct em28xx_dmaqueue *dma_q,
194 struct em28xx_buffer *buf,
195 unsigned char *p,
196 unsigned char *outp, unsigned long len)
197{
198 void *fieldstart, *startwrite, *startread;
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300199 int linesdone, currlinedone, offset, lencopy, remain;
Mauro Carvalho Chehab44dc7332008-04-13 15:11:08 -0300200 int bytesperline = dev->width << 1;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300201
202 if (dma_q->pos + len > buf->vb.size)
203 len = buf->vb.size - dma_q->pos;
204
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300205 if (p[0] != 0x88 && p[0] != 0x22) {
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300206 em28xx_isocdbg("frame is not complete\n");
207 len += 4;
208 } else
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300209 p += 4;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300210
211 startread = p;
212 remain = len;
213
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -0300214 if (dev->progressive)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300215 fieldstart = outp;
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -0300216 else {
217 /* Interlaces two half frames */
218 if (buf->top_field)
219 fieldstart = outp;
220 else
221 fieldstart = outp + bytesperline;
222 }
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300223
Mauro Carvalho Chehab44dc7332008-04-13 15:11:08 -0300224 linesdone = dma_q->pos / bytesperline;
225 currlinedone = dma_q->pos % bytesperline;
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -0300226
227 if (dev->progressive)
228 offset = linesdone * bytesperline + currlinedone;
229 else
230 offset = linesdone * bytesperline * 2 + currlinedone;
231
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300232 startwrite = fieldstart + offset;
Mauro Carvalho Chehab44dc7332008-04-13 15:11:08 -0300233 lencopy = bytesperline - currlinedone;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300234 lencopy = lencopy > remain ? remain : lencopy;
235
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300236 if ((char *)startwrite + lencopy > (char *)outp + buf->vb.size) {
Mauro Carvalho Chehabea8df7e2008-04-13 14:39:29 -0300237 em28xx_isocdbg("Overflow of %zi bytes past buffer end (1)\n",
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300238 ((char *)startwrite + lencopy) -
239 ((char *)outp + buf->vb.size));
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300240 remain = (char *)outp + buf->vb.size - (char *)startwrite;
241 lencopy = remain;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300242 }
Aidan Thorntone0fadfd342008-04-13 14:56:02 -0300243 if (lencopy <= 0)
244 return;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300245 memcpy(startwrite, startread, lencopy);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300246
247 remain -= lencopy;
248
249 while (remain > 0) {
Mauro Carvalho Chehab44dc7332008-04-13 15:11:08 -0300250 startwrite += lencopy + bytesperline;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300251 startread += lencopy;
Mauro Carvalho Chehab44dc7332008-04-13 15:11:08 -0300252 if (bytesperline > remain)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300253 lencopy = remain;
254 else
Mauro Carvalho Chehab44dc7332008-04-13 15:11:08 -0300255 lencopy = bytesperline;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300256
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300257 if ((char *)startwrite + lencopy > (char *)outp +
258 buf->vb.size) {
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300259 em28xx_isocdbg("Overflow of %zi bytes past buffer end"
260 "(2)\n",
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300261 ((char *)startwrite + lencopy) -
262 ((char *)outp + buf->vb.size));
263 lencopy = remain = (char *)outp + buf->vb.size -
264 (char *)startwrite;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300265 }
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300266 if (lencopy <= 0)
267 break;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300268
269 memcpy(startwrite, startread, lencopy);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300270
271 remain -= lencopy;
272 }
273
274 dma_q->pos += len;
275}
276
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300277static void em28xx_copy_vbi(struct em28xx *dev,
278 struct em28xx_dmaqueue *dma_q,
279 struct em28xx_buffer *buf,
280 unsigned char *p,
281 unsigned char *outp, unsigned long len)
282{
283 void *startwrite, *startread;
284 int offset;
285 int bytesperline = 720;
286
287 if (dev == NULL) {
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300288 em28xx_isocdbg("dev is null\n");
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300289 return;
290 }
291
292 if (dma_q == NULL) {
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300293 em28xx_isocdbg("dma_q is null\n");
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300294 return;
295 }
296 if (buf == NULL) {
297 return;
298 }
299 if (p == NULL) {
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300300 em28xx_isocdbg("p is null\n");
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300301 return;
302 }
303 if (outp == NULL) {
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300304 em28xx_isocdbg("outp is null\n");
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300305 return;
306 }
307
308 if (dma_q->pos + len > buf->vb.size)
309 len = buf->vb.size - dma_q->pos;
310
311 if ((p[0] == 0x33 && p[1] == 0x95) ||
312 (p[0] == 0x88 && p[1] == 0x88)) {
313 /* Header field, advance past it */
314 p += 4;
315 } else {
316 len += 4;
317 }
318
319 startread = p;
320
321 startwrite = outp + dma_q->pos;
322 offset = dma_q->pos;
323
324 /* Make sure the bottom field populates the second half of the frame */
325 if (buf->top_field == 0) {
326 startwrite += bytesperline * 0x0c;
327 offset += bytesperline * 0x0c;
328 }
329
330 memcpy(startwrite, startread, len);
331 dma_q->pos += len;
332}
333
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300334static inline void print_err_status(struct em28xx *dev,
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300335 int packet, int status)
336{
337 char *errmsg = "Unknown";
338
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300339 switch (status) {
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300340 case -ENOENT:
341 errmsg = "unlinked synchronuously";
342 break;
343 case -ECONNRESET:
344 errmsg = "unlinked asynchronuously";
345 break;
346 case -ENOSR:
347 errmsg = "Buffer error (overrun)";
348 break;
349 case -EPIPE:
350 errmsg = "Stalled (device not responding)";
351 break;
352 case -EOVERFLOW:
353 errmsg = "Babble (bad cable?)";
354 break;
355 case -EPROTO:
356 errmsg = "Bit-stuff error (bad cable?)";
357 break;
358 case -EILSEQ:
359 errmsg = "CRC/Timeout (could be anything)";
360 break;
361 case -ETIME:
362 errmsg = "Device does not respond";
363 break;
364 }
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300365 if (packet < 0) {
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300366 em28xx_isocdbg("URB status %d [%s].\n", status, errmsg);
367 } else {
368 em28xx_isocdbg("URB packet %d, status %d [%s].\n",
369 packet, status, errmsg);
370 }
371}
372
373/*
374 * video-buf generic routine to get the next available buffer
375 */
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300376static inline void get_next_buf(struct em28xx_dmaqueue *dma_q,
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300377 struct em28xx_buffer **buf)
378{
379 struct em28xx *dev = container_of(dma_q, struct em28xx, vidq);
Mauro Carvalho Chehabdbecb442008-04-13 15:08:55 -0300380 char *outp;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300381
Mauro Carvalho Chehabdbecb442008-04-13 15:08:55 -0300382 if (list_empty(&dma_q->active)) {
383 em28xx_isocdbg("No active queue to serve\n");
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300384 dev->isoc_ctl.vid_buf = NULL;
Mauro Carvalho Chehabdbecb442008-04-13 15:08:55 -0300385 *buf = NULL;
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300386 return;
Mauro Carvalho Chehabdbecb442008-04-13 15:08:55 -0300387 }
388
Mauro Carvalho Chehabdbecb442008-04-13 15:08:55 -0300389 /* Get the next buffer */
390 *buf = list_entry(dma_q->active.next, struct em28xx_buffer, vb.queue);
391
Mauro Carvalho Chehabdbecb442008-04-13 15:08:55 -0300392 /* Cleans up buffer - Usefull for testing for frame/URB loss */
393 outp = videobuf_to_vmalloc(&(*buf)->vb);
394 memset(outp, 0, (*buf)->vb.size);
Mauro Carvalho Chehabcb784722008-04-13 15:06:52 -0300395
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300396 dev->isoc_ctl.vid_buf = *buf;
397
398 return;
399}
400
401/*
402 * video-buf generic routine to get the next available VBI buffer
403 */
404static inline void vbi_get_next_buf(struct em28xx_dmaqueue *dma_q,
405 struct em28xx_buffer **buf)
406{
407 struct em28xx *dev = container_of(dma_q, struct em28xx, vbiq);
408 char *outp;
409
410 if (list_empty(&dma_q->active)) {
411 em28xx_isocdbg("No active queue to serve\n");
412 dev->isoc_ctl.vbi_buf = NULL;
413 *buf = NULL;
414 return;
415 }
416
417 /* Get the next buffer */
418 *buf = list_entry(dma_q->active.next, struct em28xx_buffer, vb.queue);
419 /* Cleans up buffer - Usefull for testing for frame/URB loss */
420 outp = videobuf_to_vmalloc(&(*buf)->vb);
421 memset(outp, 0x00, (*buf)->vb.size);
422
423 dev->isoc_ctl.vbi_buf = *buf;
Mauro Carvalho Chehabcb784722008-04-13 15:06:52 -0300424
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300425 return;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300426}
427
428/*
429 * Controls the isoc copy of each urb packet
430 */
Aidan Thornton579f72e2008-04-17 21:40:16 -0300431static inline int em28xx_isoc_copy(struct em28xx *dev, struct urb *urb)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300432{
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300433 struct em28xx_buffer *buf;
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300434 struct em28xx_dmaqueue *dma_q = &dev->vidq;
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300435 unsigned char *outp = NULL;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300436 int i, len = 0, rc = 1;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300437 unsigned char *p;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300438
439 if (!dev)
440 return 0;
441
442 if ((dev->state & DEV_DISCONNECTED) || (dev->state & DEV_MISCONFIGURED))
443 return 0;
444
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300445 if (urb->status < 0) {
446 print_err_status(dev, -1, urb->status);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300447 if (urb->status == -ENOENT)
448 return 0;
449 }
450
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300451 buf = dev->isoc_ctl.vid_buf;
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300452 if (buf != NULL)
453 outp = videobuf_to_vmalloc(&buf->vb);
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300454
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300455 for (i = 0; i < urb->number_of_packets; i++) {
456 int status = urb->iso_frame_desc[i].status;
457
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300458 if (status < 0) {
459 print_err_status(dev, i, status);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300460 if (urb->iso_frame_desc[i].status != -EPROTO)
461 continue;
462 }
463
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300464 len = urb->iso_frame_desc[i].actual_length - 4;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300465
466 if (urb->iso_frame_desc[i].actual_length <= 0) {
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300467 /* em28xx_isocdbg("packet %d is empty",i); - spammy */
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300468 continue;
469 }
470 if (urb->iso_frame_desc[i].actual_length >
471 dev->max_pkt_size) {
472 em28xx_isocdbg("packet bigger than packet size");
473 continue;
474 }
475
476 p = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300477
478 /* FIXME: incomplete buffer checks where removed to make
479 logic simpler. Impacts of those changes should be evaluated
480 */
Mauro Carvalho Chehabb4916f82008-04-13 15:09:14 -0300481 if (p[0] == 0x33 && p[1] == 0x95 && p[2] == 0x00) {
482 em28xx_isocdbg("VBI HEADER!!!\n");
483 /* FIXME: Should add vbi copy */
484 continue;
485 }
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300486 if (p[0] == 0x22 && p[1] == 0x5a) {
Mauro Carvalho Chehab78bb3942008-04-13 14:56:25 -0300487 em28xx_isocdbg("Video frame %d, length=%i, %s\n", p[2],
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300488 len, (p[2] & 1) ? "odd" : "even");
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300489
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -0300490 if (dev->progressive || !(p[2] & 1)) {
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300491 if (buf != NULL)
492 buffer_filled(dev, dma_q, buf);
493 get_next_buf(dma_q, &buf);
494 if (buf == NULL)
495 outp = NULL;
496 else
497 outp = videobuf_to_vmalloc(&buf->vb);
Aidan Thorntone0fadfd342008-04-13 14:56:02 -0300498 }
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300499
500 if (buf != NULL) {
501 if (p[2] & 1)
502 buf->top_field = 0;
503 else
504 buf->top_field = 1;
505 }
Mauro Carvalho Chehabb4916f82008-04-13 15:09:14 -0300506
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300507 dma_q->pos = 0;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300508 }
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300509 if (buf != NULL)
510 em28xx_copy_video(dev, dma_q, buf, p, outp, len);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300511 }
512 return rc;
513}
514
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300515/* Version of isoc handler that takes into account a mixture of video and
516 VBI data */
517static inline int em28xx_isoc_copy_vbi(struct em28xx *dev, struct urb *urb)
518{
519 struct em28xx_buffer *buf, *vbi_buf;
520 struct em28xx_dmaqueue *dma_q = &dev->vidq;
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300521 struct em28xx_dmaqueue *vbi_dma_q = &dev->vbiq;
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300522 unsigned char *outp = NULL;
523 unsigned char *vbioutp = NULL;
524 int i, len = 0, rc = 1;
525 unsigned char *p;
526 int vbi_size;
527
528 if (!dev)
529 return 0;
530
531 if ((dev->state & DEV_DISCONNECTED) || (dev->state & DEV_MISCONFIGURED))
532 return 0;
533
534 if (urb->status < 0) {
535 print_err_status(dev, -1, urb->status);
536 if (urb->status == -ENOENT)
537 return 0;
538 }
539
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300540 buf = dev->isoc_ctl.vid_buf;
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300541 if (buf != NULL)
542 outp = videobuf_to_vmalloc(&buf->vb);
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300543
544 vbi_buf = dev->isoc_ctl.vbi_buf;
545 if (vbi_buf != NULL)
546 vbioutp = videobuf_to_vmalloc(&vbi_buf->vb);
547
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300548 for (i = 0; i < urb->number_of_packets; i++) {
549 int status = urb->iso_frame_desc[i].status;
550
551 if (status < 0) {
552 print_err_status(dev, i, status);
553 if (urb->iso_frame_desc[i].status != -EPROTO)
554 continue;
555 }
556
557 len = urb->iso_frame_desc[i].actual_length - 4;
558
559 if (urb->iso_frame_desc[i].actual_length <= 0) {
560 /* em28xx_isocdbg("packet %d is empty",i); - spammy */
561 continue;
562 }
563 if (urb->iso_frame_desc[i].actual_length >
564 dev->max_pkt_size) {
565 em28xx_isocdbg("packet bigger than packet size");
566 continue;
567 }
568
569 p = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
570
571 /* capture type 0 = vbi start
572 capture type 1 = video start
573 capture type 2 = video in progress */
574 if (p[0] == 0x33 && p[1] == 0x95) {
575 dev->capture_type = 0;
576 dev->vbi_read = 0;
577 em28xx_isocdbg("VBI START HEADER!!!\n");
578 dev->cur_field = p[2];
579 }
580
581 /* FIXME: get rid of hard-coded value */
582 vbi_size = 720 * 0x0c;
583
584 if (dev->capture_type == 0) {
585 if (dev->vbi_read >= vbi_size) {
586 /* We've already read all the VBI data, so
587 treat the rest as video */
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300588 em28xx_isocdbg("dev->vbi_read > vbi_size\n");
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300589 } else if ((dev->vbi_read + len) < vbi_size) {
590 /* This entire frame is VBI data */
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300591 if (dev->vbi_read == 0 &&
592 (!(dev->cur_field & 1))) {
593 /* Brand new frame */
594 if (vbi_buf != NULL)
595 vbi_buffer_filled(dev,
596 vbi_dma_q,
597 vbi_buf);
598 vbi_get_next_buf(vbi_dma_q, &vbi_buf);
599 if (vbi_buf == NULL)
600 vbioutp = NULL;
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300601 else
602 vbioutp = videobuf_to_vmalloc(
603 &vbi_buf->vb);
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300604 }
605
606 if (dev->vbi_read == 0) {
607 vbi_dma_q->pos = 0;
608 if (vbi_buf != NULL) {
609 if (dev->cur_field & 1)
610 vbi_buf->top_field = 0;
611 else
612 vbi_buf->top_field = 1;
613 }
614 }
615
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300616 dev->vbi_read += len;
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300617 em28xx_copy_vbi(dev, vbi_dma_q, vbi_buf, p,
618 vbioutp, len);
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300619 } else {
620 /* Some of this frame is VBI data and some is
621 video data */
622 int vbi_data_len = vbi_size - dev->vbi_read;
623 dev->vbi_read += vbi_data_len;
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300624 em28xx_copy_vbi(dev, vbi_dma_q, vbi_buf, p,
625 vbioutp, vbi_data_len);
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300626 dev->capture_type = 1;
627 p += vbi_data_len;
628 len -= vbi_data_len;
629 }
630 }
631
632 if (dev->capture_type == 1) {
633 dev->capture_type = 2;
634 em28xx_isocdbg("Video frame %d, length=%i, %s\n", p[2],
635 len, (p[2] & 1) ? "odd" : "even");
636
637 if (dev->progressive || !(dev->cur_field & 1)) {
638 if (buf != NULL)
639 buffer_filled(dev, dma_q, buf);
640 get_next_buf(dma_q, &buf);
641 if (buf == NULL)
642 outp = NULL;
643 else
644 outp = videobuf_to_vmalloc(&buf->vb);
645 }
646 if (buf != NULL) {
647 if (dev->cur_field & 1)
648 buf->top_field = 0;
649 else
650 buf->top_field = 1;
651 }
652
653 dma_q->pos = 0;
654 }
655 if (buf != NULL && dev->capture_type == 2)
656 em28xx_copy_video(dev, dma_q, buf, p, outp, len);
657 }
658 return rc;
659}
660
661
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300662/* ------------------------------------------------------------------
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300663 Videobuf operations
664 ------------------------------------------------------------------*/
665
666static int
667buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
668{
669 struct em28xx_fh *fh = vq->priv_data;
Mauro Carvalho Chehabd2d9fbf2008-04-17 21:38:53 -0300670 struct em28xx *dev = fh->dev;
671 struct v4l2_frequency f;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300672
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300673 *size = (fh->dev->width * fh->dev->height * dev->format->depth + 7)
674 >> 3;
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -0300675
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300676 if (0 == *count)
677 *count = EM28XX_DEF_BUF;
678
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300679 if (*count < EM28XX_MIN_BUF)
680 *count = EM28XX_MIN_BUF;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300681
Mauro Carvalho Chehab381aaba2008-12-20 07:43:34 -0300682 /* Ask tuner to go to analog or radio mode */
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300683 memset(&f, 0, sizeof(f));
Mauro Carvalho Chehabd2d9fbf2008-04-17 21:38:53 -0300684 f.frequency = dev->ctl_freq;
Mauro Carvalho Chehab381aaba2008-12-20 07:43:34 -0300685 f.type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Mauro Carvalho Chehabd2d9fbf2008-04-17 21:38:53 -0300686
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -0300687 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_frequency, &f);
Mauro Carvalho Chehabd2d9fbf2008-04-17 21:38:53 -0300688
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300689 return 0;
690}
691
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300692/* This is called *without* dev->slock held; please keep it that way */
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300693static void free_buffer(struct videobuf_queue *vq, struct em28xx_buffer *buf)
694{
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300695 struct em28xx_fh *fh = vq->priv_data;
696 struct em28xx *dev = fh->dev;
697 unsigned long flags = 0;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300698 if (in_interrupt())
699 BUG();
700
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300701 /* We used to wait for the buffer to finish here, but this didn't work
702 because, as we were keeping the state as VIDEOBUF_QUEUED,
703 videobuf_queue_cancel marked it as finished for us.
704 (Also, it could wedge forever if the hardware was misconfigured.)
705
706 This should be safe; by the time we get here, the buffer isn't
707 queued anymore. If we ever start marking the buffers as
708 VIDEOBUF_ACTIVE, it won't be, though.
709 */
710 spin_lock_irqsave(&dev->slock, flags);
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300711 if (dev->isoc_ctl.vid_buf == buf)
712 dev->isoc_ctl.vid_buf = NULL;
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300713 spin_unlock_irqrestore(&dev->slock, flags);
714
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300715 videobuf_vmalloc_free(&buf->vb);
716 buf->vb.state = VIDEOBUF_NEEDS_INIT;
717}
718
719static int
720buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
721 enum v4l2_field field)
722{
723 struct em28xx_fh *fh = vq->priv_data;
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300724 struct em28xx_buffer *buf = container_of(vb, struct em28xx_buffer, vb);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300725 struct em28xx *dev = fh->dev;
726 int rc = 0, urb_init = 0;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300727
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300728 buf->vb.size = (fh->dev->width * fh->dev->height * dev->format->depth
729 + 7) >> 3;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300730
731 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
732 return -EINVAL;
733
Brandon Philips05612972008-04-13 14:57:01 -0300734 buf->vb.width = dev->width;
735 buf->vb.height = dev->height;
736 buf->vb.field = field;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300737
738 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300739 rc = videobuf_iolock(vq, &buf->vb, NULL);
740 if (rc < 0)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300741 goto fail;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300742 }
743
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300744 if (!dev->isoc_ctl.num_bufs)
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300745 urb_init = 1;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300746
747 if (urb_init) {
Devin Heitmuellerda52a552009-09-01 01:19:46 -0300748 if (em28xx_vbi_supported(dev) == 1)
749 rc = em28xx_init_isoc(dev, EM28XX_NUM_PACKETS,
750 EM28XX_NUM_BUFS,
751 dev->max_pkt_size,
752 em28xx_isoc_copy_vbi);
753 else
754 rc = em28xx_init_isoc(dev, EM28XX_NUM_PACKETS,
755 EM28XX_NUM_BUFS,
756 dev->max_pkt_size,
757 em28xx_isoc_copy);
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300758 if (rc < 0)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300759 goto fail;
760 }
761
762 buf->vb.state = VIDEOBUF_PREPARED;
763 return 0;
764
765fail:
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300766 free_buffer(vq, buf);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300767 return rc;
768}
769
770static void
771buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
772{
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300773 struct em28xx_buffer *buf = container_of(vb,
774 struct em28xx_buffer,
775 vb);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300776 struct em28xx_fh *fh = vq->priv_data;
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300777 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300778 struct em28xx_dmaqueue *vidq = &dev->vidq;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300779
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300780 buf->vb.state = VIDEOBUF_QUEUED;
781 list_add_tail(&buf->vb.queue, &vidq->active);
782
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300783}
784
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300785static void buffer_release(struct videobuf_queue *vq,
786 struct videobuf_buffer *vb)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300787{
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300788 struct em28xx_buffer *buf = container_of(vb,
789 struct em28xx_buffer,
790 vb);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300791 struct em28xx_fh *fh = vq->priv_data;
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300792 struct em28xx *dev = (struct em28xx *)fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300793
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300794 em28xx_isocdbg("em28xx: called buffer_release\n");
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300795
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300796 free_buffer(vq, buf);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300797}
798
799static struct videobuf_queue_ops em28xx_video_qops = {
800 .buf_setup = buffer_setup,
801 .buf_prepare = buffer_prepare,
802 .buf_queue = buffer_queue,
803 .buf_release = buffer_release,
804};
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800805
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300806/********************* v4l2 interface **************************************/
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800807
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800808static void video_mux(struct em28xx *dev, int index)
809{
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800810 dev->ctl_input = index;
811 dev->ctl_ainput = INPUT(index)->amux;
Mauro Carvalho Chehab35ae6f02008-11-20 12:40:51 -0300812 dev->ctl_aoutput = INPUT(index)->aout;
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800813
Mauro Carvalho Chehabe879b8e2008-11-20 13:39:39 -0300814 if (!dev->ctl_aoutput)
815 dev->ctl_aoutput = EM28XX_AOUT_MASTER;
816
Hans Verkuil5325b422009-04-02 11:26:22 -0300817 v4l2_device_call_all(&dev->v4l2_dev, 0, video, s_routing,
818 INPUT(index)->vmux, 0, 0);
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800819
Mauro Carvalho Chehab505b6d02008-11-25 09:39:50 -0300820 if (dev->board.has_msp34xx) {
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300821 if (dev->i2s_speed) {
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -0300822 v4l2_device_call_all(&dev->v4l2_dev, 0, audio,
823 s_i2s_clock_freq, dev->i2s_speed);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300824 }
Hans Verkuil2474ed42006-03-19 12:35:57 -0300825 /* Note: this is msp3400 specific */
Hans Verkuil5325b422009-04-02 11:26:22 -0300826 v4l2_device_call_all(&dev->v4l2_dev, 0, audio, s_routing,
827 dev->ctl_ainput, MSP_OUTPUT(MSP_SC_IN_DSP_SCART1), 0);
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800828 }
Mauro Carvalho Chehab539c96d2008-01-05 09:53:54 -0300829
Vitaly Wool2bd1d9e2009-03-04 08:27:52 -0300830 if (dev->board.adecoder != EM28XX_NOADECODER) {
Hans Verkuil5325b422009-04-02 11:26:22 -0300831 v4l2_device_call_all(&dev->v4l2_dev, 0, audio, s_routing,
832 dev->ctl_ainput, dev->ctl_aoutput, 0);
Vitaly Wool2bd1d9e2009-03-04 08:27:52 -0300833 }
834
Mauro Carvalho Chehab00b87302008-02-06 18:34:13 -0300835 em28xx_audio_analog_set(dev);
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800836}
837
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -0300838/* Usage lock check functions */
Devin Heitmueller8c873d32009-09-03 00:23:27 -0300839static int res_get(struct em28xx_fh *fh, unsigned int bit)
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -0300840{
841 struct em28xx *dev = fh->dev;
842
Devin Heitmueller8c873d32009-09-03 00:23:27 -0300843 if (fh->resources & bit)
844 /* have it already allocated */
845 return 1;
846
847 /* is it free? */
848 mutex_lock(&dev->lock);
849 if (dev->resources & bit) {
850 /* no, someone else uses it */
851 mutex_unlock(&dev->lock);
852 return 0;
853 }
854 /* it's free, grab it */
855 fh->resources |= bit;
856 dev->resources |= bit;
857 em28xx_videodbg("res: get %d\n", bit);
858 mutex_unlock(&dev->lock);
859 return 1;
860}
861
862static int res_check(struct em28xx_fh *fh, unsigned int bit)
863{
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300864 return fh->resources & bit;
Devin Heitmueller8c873d32009-09-03 00:23:27 -0300865}
866
867static int res_locked(struct em28xx *dev, unsigned int bit)
868{
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -0300869 return dev->resources & bit;
Devin Heitmueller8c873d32009-09-03 00:23:27 -0300870}
871
872static void res_free(struct em28xx_fh *fh, unsigned int bits)
873{
874 struct em28xx *dev = fh->dev;
875
876 BUG_ON((fh->resources & bits) != bits);
877
878 mutex_lock(&dev->lock);
879 fh->resources &= ~bits;
880 dev->resources &= ~bits;
881 em28xx_videodbg("res: put %d\n", bits);
882 mutex_unlock(&dev->lock);
883}
884
885static int get_ressource(struct em28xx_fh *fh)
886{
887 switch (fh->type) {
888 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
889 return EM28XX_RESOURCE_VIDEO;
890 case V4L2_BUF_TYPE_VBI_CAPTURE:
891 return EM28XX_RESOURCE_VBI;
892 default:
893 BUG();
894 return 0;
895 }
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -0300896}
897
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800898/*
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -0300899 * ac97_queryctrl()
900 * return the ac97 supported controls
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300901 */
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -0300902static int ac97_queryctrl(struct v4l2_queryctrl *qc)
903{
904 int i;
905
906 for (i = 0; i < ARRAY_SIZE(ac97_qctrl); i++) {
907 if (qc->id && qc->id == ac97_qctrl[i].id) {
908 memcpy(qc, &(ac97_qctrl[i]), sizeof(*qc));
909 return 0;
910 }
911 }
912
913 /* Control is not ac97 related */
914 return 1;
915}
916
917/*
918 * ac97_get_ctrl()
919 * return the current values for ac97 mute and volume
920 */
921static int ac97_get_ctrl(struct em28xx *dev, struct v4l2_control *ctrl)
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300922{
923 switch (ctrl->id) {
924 case V4L2_CID_AUDIO_MUTE:
925 ctrl->value = dev->mute;
926 return 0;
927 case V4L2_CID_AUDIO_VOLUME:
928 ctrl->value = dev->volume;
929 return 0;
930 default:
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -0300931 /* Control is not ac97 related */
932 return 1;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300933 }
934}
935
936/*
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -0300937 * ac97_set_ctrl()
938 * set values for ac97 mute and volume
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300939 */
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -0300940static int ac97_set_ctrl(struct em28xx *dev, const struct v4l2_control *ctrl)
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300941{
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -0300942 int i;
943
944 for (i = 0; i < ARRAY_SIZE(ac97_qctrl); i++)
945 if (ctrl->id == ac97_qctrl[i].id)
946 goto handle;
947
948 /* Announce that hasn't handle it */
949 return 1;
950
951handle:
952 if (ctrl->value < ac97_qctrl[i].minimum ||
953 ctrl->value > ac97_qctrl[i].maximum)
954 return -ERANGE;
955
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300956 switch (ctrl->id) {
957 case V4L2_CID_AUDIO_MUTE:
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -0300958 dev->mute = ctrl->value;
959 break;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300960 case V4L2_CID_AUDIO_VOLUME:
961 dev->volume = ctrl->value;
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -0300962 break;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300963 }
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -0300964
965 return em28xx_audio_analog_set(dev);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300966}
967
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300968static int check_dev(struct em28xx *dev)
969{
970 if (dev->state & DEV_DISCONNECTED) {
971 em28xx_errdev("v4l2 ioctl: device not present\n");
972 return -ENODEV;
973 }
974
975 if (dev->state & DEV_MISCONFIGURED) {
976 em28xx_errdev("v4l2 ioctl: device is misconfigured; "
977 "close and open it again\n");
978 return -EIO;
979 }
980 return 0;
981}
982
983static void get_scale(struct em28xx *dev,
984 unsigned int width, unsigned int height,
985 unsigned int *hscale, unsigned int *vscale)
986{
Mauro Carvalho Chehab55699962009-07-13 20:15:02 -0300987 unsigned int maxw = norm_maxw(dev);
988 unsigned int maxh = norm_maxh(dev);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300989
990 *hscale = (((unsigned long)maxw) << 12) / width - 4096L;
991 if (*hscale >= 0x4000)
992 *hscale = 0x3fff;
993
994 *vscale = (((unsigned long)maxh) << 12) / height - 4096L;
995 if (*vscale >= 0x4000)
996 *vscale = 0x3fff;
997}
998
999/* ------------------------------------------------------------------
1000 IOCTL vidioc handling
1001 ------------------------------------------------------------------*/
1002
Hans Verkuil78b526a2008-05-28 12:16:41 -03001003static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001004 struct v4l2_format *f)
1005{
1006 struct em28xx_fh *fh = priv;
1007 struct em28xx *dev = fh->dev;
1008
1009 mutex_lock(&dev->lock);
1010
1011 f->fmt.pix.width = dev->width;
1012 f->fmt.pix.height = dev->height;
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -03001013 f->fmt.pix.pixelformat = dev->format->fourcc;
1014 f->fmt.pix.bytesperline = (dev->width * dev->format->depth + 7) >> 3;
Mauro Carvalho Chehab44dc7332008-04-13 15:11:08 -03001015 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline * dev->height;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001016 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
1017
1018 /* FIXME: TOP? NONE? BOTTOM? ALTENATE? */
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -03001019 if (dev->progressive)
1020 f->fmt.pix.field = V4L2_FIELD_NONE;
1021 else
1022 f->fmt.pix.field = dev->interlaced ?
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001023 V4L2_FIELD_INTERLACED : V4L2_FIELD_TOP;
1024
1025 mutex_unlock(&dev->lock);
1026 return 0;
1027}
1028
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -03001029static struct em28xx_fmt *format_by_fourcc(unsigned int fourcc)
1030{
1031 unsigned int i;
1032
1033 for (i = 0; i < ARRAY_SIZE(format); i++)
1034 if (format[i].fourcc == fourcc)
1035 return &format[i];
1036
1037 return NULL;
1038}
1039
Hans Verkuil78b526a2008-05-28 12:16:41 -03001040static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001041 struct v4l2_format *f)
1042{
1043 struct em28xx_fh *fh = priv;
1044 struct em28xx *dev = fh->dev;
Trent Piephoccb83402009-05-30 21:45:46 -03001045 unsigned int width = f->fmt.pix.width;
1046 unsigned int height = f->fmt.pix.height;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001047 unsigned int maxw = norm_maxw(dev);
1048 unsigned int maxh = norm_maxh(dev);
1049 unsigned int hscale, vscale;
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -03001050 struct em28xx_fmt *fmt;
1051
1052 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1053 if (!fmt) {
1054 em28xx_videodbg("Fourcc format (%08x) invalid.\n",
1055 f->fmt.pix.pixelformat);
1056 return -EINVAL;
1057 }
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001058
Mauro Carvalho Chehab55699962009-07-13 20:15:02 -03001059 if (dev->board.is_em2800) {
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001060 /* the em2800 can only scale down to 50% */
Trent Piephoccb83402009-05-30 21:45:46 -03001061 height = height > (3 * maxh / 4) ? maxh : maxh / 2;
1062 width = width > (3 * maxw / 4) ? maxw : maxw / 2;
Trent Piephoccb83402009-05-30 21:45:46 -03001063 } else {
1064 /* width must even because of the YUYV format
1065 height must be even because of interlacing */
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -03001066 v4l_bound_align_image(&width, 48, maxw, 1, &height, 32, maxh,
1067 1, 0);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001068 }
1069
1070 get_scale(dev, width, height, &hscale, &vscale);
1071
1072 width = (((unsigned long)maxw) << 12) / (hscale + 4096L);
1073 height = (((unsigned long)maxh) << 12) / (vscale + 4096L);
1074
1075 f->fmt.pix.width = width;
1076 f->fmt.pix.height = height;
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -03001077 f->fmt.pix.pixelformat = fmt->fourcc;
1078 f->fmt.pix.bytesperline = (dev->width * fmt->depth + 7) >> 3;
1079 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline * height;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001080 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -03001081 if (dev->progressive)
1082 f->fmt.pix.field = V4L2_FIELD_NONE;
1083 else
1084 f->fmt.pix.field = dev->interlaced ?
1085 V4L2_FIELD_INTERLACED : V4L2_FIELD_TOP;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001086
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001087 return 0;
1088}
1089
Mauro Carvalho Chehabed5f1432009-07-02 17:34:04 -03001090static int em28xx_set_video_format(struct em28xx *dev, unsigned int fourcc,
1091 unsigned width, unsigned height)
1092{
1093 struct em28xx_fmt *fmt;
1094
Mauro Carvalho Chehabed5f1432009-07-02 17:34:04 -03001095 fmt = format_by_fourcc(fourcc);
1096 if (!fmt)
1097 return -EINVAL;
1098
1099 dev->format = fmt;
1100 dev->width = width;
1101 dev->height = height;
1102
1103 /* set new image size */
1104 get_scale(dev, dev->width, dev->height, &dev->hscale, &dev->vscale);
1105
1106 em28xx_set_alternate(dev);
1107 em28xx_resolution_set(dev);
1108
1109 return 0;
1110}
1111
Hans Verkuil78b526a2008-05-28 12:16:41 -03001112static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001113 struct v4l2_format *f)
1114{
1115 struct em28xx_fh *fh = priv;
1116 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001117 int rc;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001118
1119 rc = check_dev(dev);
1120 if (rc < 0)
1121 return rc;
1122
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001123 mutex_lock(&dev->lock);
1124
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001125 vidioc_try_fmt_vid_cap(file, priv, f);
1126
Brandon Philips05612972008-04-13 14:57:01 -03001127 if (videobuf_queue_is_busy(&fh->vb_vidq)) {
1128 em28xx_errdev("%s queue busy\n", __func__);
1129 rc = -EBUSY;
1130 goto out;
1131 }
1132
Mauro Carvalho Chehabed5f1432009-07-02 17:34:04 -03001133 rc = em28xx_set_video_format(dev, f->fmt.pix.pixelformat,
1134 f->fmt.pix.width, f->fmt.pix.height);
Brandon Philips05612972008-04-13 14:57:01 -03001135
1136out:
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001137 mutex_unlock(&dev->lock);
Brandon Philips05612972008-04-13 14:57:01 -03001138 return rc;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001139}
1140
Devin Heitmueller19bf0032009-09-11 00:40:18 -03001141static int vidioc_g_std(struct file *file, void *priv, v4l2_std_id *norm)
1142{
1143 struct em28xx_fh *fh = priv;
1144 struct em28xx *dev = fh->dev;
Devin Heitmueller19bf0032009-09-11 00:40:18 -03001145 int rc;
1146
1147 rc = check_dev(dev);
1148 if (rc < 0)
1149 return rc;
1150
1151 *norm = dev->norm;
1152
1153 return 0;
1154}
1155
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -03001156static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *norm)
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001157{
1158 struct em28xx_fh *fh = priv;
1159 struct em28xx *dev = fh->dev;
1160 struct v4l2_format f;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001161 int rc;
1162
1163 rc = check_dev(dev);
1164 if (rc < 0)
1165 return rc;
1166
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001167 mutex_lock(&dev->lock);
Mauro Carvalho Chehab7d497f82007-11-11 14:15:34 -03001168 dev->norm = *norm;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001169
1170 /* Adjusts width/height, if needed */
1171 f.fmt.pix.width = dev->width;
1172 f.fmt.pix.height = dev->height;
Hans Verkuil78b526a2008-05-28 12:16:41 -03001173 vidioc_try_fmt_vid_cap(file, priv, &f);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001174
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001175 /* set new image size */
1176 dev->width = f.fmt.pix.width;
1177 dev->height = f.fmt.pix.height;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001178 get_scale(dev, dev->width, dev->height, &dev->hscale, &dev->vscale);
1179
1180 em28xx_resolution_set(dev);
Hans Verkuilf41737e2009-04-01 03:52:39 -03001181 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_std, dev->norm);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001182
1183 mutex_unlock(&dev->lock);
1184 return 0;
1185}
1186
Mauro Carvalho Chehabd96ecda2009-08-06 21:53:59 -03001187static int vidioc_g_parm(struct file *file, void *priv,
1188 struct v4l2_streamparm *p)
1189{
1190 struct em28xx_fh *fh = priv;
1191 struct em28xx *dev = fh->dev;
1192 int rc = 0;
1193
1194 if (p->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1195 return -EINVAL;
1196
1197 if (dev->board.is_webcam)
1198 rc = v4l2_device_call_until_err(&dev->v4l2_dev, 0,
1199 video, g_parm, p);
1200 else
1201 v4l2_video_std_frame_period(dev->norm,
1202 &p->parm.capture.timeperframe);
1203
1204 return rc;
1205}
1206
1207static int vidioc_s_parm(struct file *file, void *priv,
1208 struct v4l2_streamparm *p)
1209{
1210 struct em28xx_fh *fh = priv;
1211 struct em28xx *dev = fh->dev;
1212
1213 if (!dev->board.is_webcam)
1214 return -EINVAL;
1215
1216 if (p->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1217 return -EINVAL;
1218
1219 return v4l2_device_call_until_err(&dev->v4l2_dev, 0, video, s_parm, p);
1220}
1221
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001222static const char *iname[] = {
1223 [EM28XX_VMUX_COMPOSITE1] = "Composite1",
1224 [EM28XX_VMUX_COMPOSITE2] = "Composite2",
1225 [EM28XX_VMUX_COMPOSITE3] = "Composite3",
1226 [EM28XX_VMUX_COMPOSITE4] = "Composite4",
1227 [EM28XX_VMUX_SVIDEO] = "S-Video",
1228 [EM28XX_VMUX_TELEVISION] = "Television",
1229 [EM28XX_VMUX_CABLE] = "Cable TV",
1230 [EM28XX_VMUX_DVB] = "DVB",
1231 [EM28XX_VMUX_DEBUG] = "for debug only",
1232};
1233
1234static int vidioc_enum_input(struct file *file, void *priv,
1235 struct v4l2_input *i)
1236{
1237 struct em28xx_fh *fh = priv;
1238 struct em28xx *dev = fh->dev;
1239 unsigned int n;
1240
1241 n = i->index;
1242 if (n >= MAX_EM28XX_INPUT)
1243 return -EINVAL;
1244 if (0 == INPUT(n)->type)
1245 return -EINVAL;
1246
1247 i->index = n;
1248 i->type = V4L2_INPUT_TYPE_CAMERA;
1249
1250 strcpy(i->name, iname[INPUT(n)->type]);
1251
1252 if ((EM28XX_VMUX_TELEVISION == INPUT(n)->type) ||
1253 (EM28XX_VMUX_CABLE == INPUT(n)->type))
1254 i->type = V4L2_INPUT_TYPE_TUNER;
1255
Mauro Carvalho Chehab7d497f82007-11-11 14:15:34 -03001256 i->std = dev->vdev->tvnorms;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001257
1258 return 0;
1259}
1260
1261static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
1262{
1263 struct em28xx_fh *fh = priv;
1264 struct em28xx *dev = fh->dev;
1265
1266 *i = dev->ctl_input;
1267
1268 return 0;
1269}
1270
1271static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
1272{
1273 struct em28xx_fh *fh = priv;
1274 struct em28xx *dev = fh->dev;
1275 int rc;
1276
1277 rc = check_dev(dev);
1278 if (rc < 0)
1279 return rc;
1280
1281 if (i >= MAX_EM28XX_INPUT)
1282 return -EINVAL;
1283 if (0 == INPUT(i)->type)
1284 return -EINVAL;
1285
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03001286 dev->ctl_input = i;
1287
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001288 mutex_lock(&dev->lock);
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03001289 video_mux(dev, dev->ctl_input);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001290 mutex_unlock(&dev->lock);
1291 return 0;
1292}
1293
1294static int vidioc_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
1295{
1296 struct em28xx_fh *fh = priv;
1297 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001298
Mauro Carvalho Chehab6c428b52009-08-04 19:52:37 -03001299 if (!dev->audio_mode.has_audio)
1300 return -EINVAL;
1301
Mauro Carvalho Chehab35ae6f02008-11-20 12:40:51 -03001302 switch (a->index) {
1303 case EM28XX_AMUX_VIDEO:
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001304 strcpy(a->name, "Television");
Mauro Carvalho Chehab35ae6f02008-11-20 12:40:51 -03001305 break;
1306 case EM28XX_AMUX_LINE_IN:
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001307 strcpy(a->name, "Line In");
Mauro Carvalho Chehab35ae6f02008-11-20 12:40:51 -03001308 break;
1309 case EM28XX_AMUX_VIDEO2:
1310 strcpy(a->name, "Television alt");
1311 break;
1312 case EM28XX_AMUX_PHONE:
1313 strcpy(a->name, "Phone");
1314 break;
1315 case EM28XX_AMUX_MIC:
1316 strcpy(a->name, "Mic");
1317 break;
1318 case EM28XX_AMUX_CD:
1319 strcpy(a->name, "CD");
1320 break;
1321 case EM28XX_AMUX_AUX:
1322 strcpy(a->name, "Aux");
1323 break;
1324 case EM28XX_AMUX_PCM_OUT:
1325 strcpy(a->name, "PCM");
1326 break;
1327 default:
1328 return -EINVAL;
1329 }
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -03001330
Mauro Carvalho Chehab35ae6f02008-11-20 12:40:51 -03001331 a->index = dev->ctl_ainput;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001332 a->capability = V4L2_AUDCAP_STEREO;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001333
1334 return 0;
1335}
1336
1337static int vidioc_s_audio(struct file *file, void *priv, struct v4l2_audio *a)
1338{
1339 struct em28xx_fh *fh = priv;
1340 struct em28xx *dev = fh->dev;
1341
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03001342
Mauro Carvalho Chehab6c428b52009-08-04 19:52:37 -03001343 if (!dev->audio_mode.has_audio)
1344 return -EINVAL;
1345
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03001346 if (a->index >= MAX_EM28XX_INPUT)
1347 return -EINVAL;
1348 if (0 == INPUT(a->index)->type)
1349 return -EINVAL;
1350
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001351 mutex_lock(&dev->lock);
1352
Mauro Carvalho Chehab35ae6f02008-11-20 12:40:51 -03001353 dev->ctl_ainput = INPUT(a->index)->amux;
1354 dev->ctl_aoutput = INPUT(a->index)->aout;
Mauro Carvalho Chehabe879b8e2008-11-20 13:39:39 -03001355
1356 if (!dev->ctl_aoutput)
1357 dev->ctl_aoutput = EM28XX_AOUT_MASTER;
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001358
1359 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001360 return 0;
1361}
1362
1363static int vidioc_queryctrl(struct file *file, void *priv,
1364 struct v4l2_queryctrl *qc)
1365{
1366 struct em28xx_fh *fh = priv;
1367 struct em28xx *dev = fh->dev;
1368 int id = qc->id;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001369 int rc;
1370
1371 rc = check_dev(dev);
1372 if (rc < 0)
1373 return rc;
1374
1375 memset(qc, 0, sizeof(*qc));
1376
1377 qc->id = id;
1378
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -03001379 /* enumberate AC97 controls */
1380 if (dev->audio_mode.ac97 != EM28XX_NO_AC97) {
1381 rc = ac97_queryctrl(qc);
1382 if (!rc)
1383 return 0;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001384 }
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001385
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -03001386 /* enumberate V4L2 device controls */
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001387 mutex_lock(&dev->lock);
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001388 v4l2_device_call_all(&dev->v4l2_dev, 0, core, queryctrl, qc);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001389 mutex_unlock(&dev->lock);
1390
1391 if (qc->type)
1392 return 0;
1393 else
1394 return -EINVAL;
1395}
1396
1397static int vidioc_g_ctrl(struct file *file, void *priv,
1398 struct v4l2_control *ctrl)
1399{
1400 struct em28xx_fh *fh = priv;
1401 struct em28xx *dev = fh->dev;
1402 int rc;
1403
1404 rc = check_dev(dev);
1405 if (rc < 0)
1406 return rc;
Mauro Carvalho Chehabb6070f02008-12-22 06:20:32 -03001407 rc = 0;
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001408
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001409 mutex_lock(&dev->lock);
1410
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -03001411 /* Set an AC97 control */
1412 if (dev->audio_mode.ac97 != EM28XX_NO_AC97)
1413 rc = ac97_get_ctrl(dev, ctrl);
1414 else
1415 rc = 1;
1416
1417 /* It were not an AC97 control. Sends it to the v4l2 dev interface */
1418 if (rc == 1) {
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001419 v4l2_device_call_all(&dev->v4l2_dev, 0, core, g_ctrl, ctrl);
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -03001420 rc = 0;
Hans Verkuil07f7db42009-01-21 17:06:42 -03001421 }
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001422
1423 mutex_unlock(&dev->lock);
1424 return rc;
1425}
1426
1427static int vidioc_s_ctrl(struct file *file, void *priv,
1428 struct v4l2_control *ctrl)
1429{
1430 struct em28xx_fh *fh = priv;
1431 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001432 int rc;
1433
1434 rc = check_dev(dev);
1435 if (rc < 0)
1436 return rc;
1437
1438 mutex_lock(&dev->lock);
1439
Mauro Carvalho Chehaba98f6af2009-07-19 10:45:49 -03001440 /* Set an AC97 control */
1441 if (dev->audio_mode.ac97 != EM28XX_NO_AC97)
1442 rc = ac97_set_ctrl(dev, ctrl);
1443 else
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001444 rc = 1;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001445
Mauro Carvalho Chehab73c6f462009-07-29 01:42:02 -03001446 /* It isn't an AC97 control. Sends it to the v4l2 dev interface */
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001447 if (rc == 1) {
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001448 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_ctrl, ctrl);
Mauro Carvalho Chehab73c6f462009-07-29 01:42:02 -03001449
1450 /*
1451 * In the case of non-AC97 volume controls, we still need
1452 * to do some setups at em28xx, in order to mute/unmute
1453 * and to adjust audio volume. However, the value ranges
1454 * should be checked by the corresponding V4L subdriver.
1455 */
1456 switch (ctrl->id) {
1457 case V4L2_CID_AUDIO_MUTE:
1458 dev->mute = ctrl->value;
1459 rc = em28xx_audio_analog_set(dev);
1460 break;
1461 case V4L2_CID_AUDIO_VOLUME:
1462 dev->volume = ctrl->value;
1463 rc = em28xx_audio_analog_set(dev);
1464 }
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001465 }
1466
1467 mutex_unlock(&dev->lock);
1468 return rc;
1469}
1470
1471static int vidioc_g_tuner(struct file *file, void *priv,
1472 struct v4l2_tuner *t)
1473{
1474 struct em28xx_fh *fh = priv;
1475 struct em28xx *dev = fh->dev;
1476 int rc;
1477
1478 rc = check_dev(dev);
1479 if (rc < 0)
1480 return rc;
1481
1482 if (0 != t->index)
1483 return -EINVAL;
1484
1485 strcpy(t->name, "Tuner");
1486
1487 mutex_lock(&dev->lock);
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001488 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_tuner, t);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001489 mutex_unlock(&dev->lock);
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001490
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001491 return 0;
1492}
1493
1494static int vidioc_s_tuner(struct file *file, void *priv,
1495 struct v4l2_tuner *t)
1496{
1497 struct em28xx_fh *fh = priv;
1498 struct em28xx *dev = fh->dev;
1499 int rc;
1500
1501 rc = check_dev(dev);
1502 if (rc < 0)
1503 return rc;
1504
1505 if (0 != t->index)
1506 return -EINVAL;
1507
1508 mutex_lock(&dev->lock);
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001509 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_tuner, t);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001510 mutex_unlock(&dev->lock);
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001511
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001512 return 0;
1513}
1514
1515static int vidioc_g_frequency(struct file *file, void *priv,
1516 struct v4l2_frequency *f)
1517{
1518 struct em28xx_fh *fh = priv;
1519 struct em28xx *dev = fh->dev;
1520
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001521 mutex_lock(&dev->lock);
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001522 f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001523 f->frequency = dev->ctl_freq;
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001524 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001525
1526 return 0;
1527}
1528
1529static int vidioc_s_frequency(struct file *file, void *priv,
1530 struct v4l2_frequency *f)
1531{
1532 struct em28xx_fh *fh = priv;
1533 struct em28xx *dev = fh->dev;
1534 int rc;
1535
1536 rc = check_dev(dev);
1537 if (rc < 0)
1538 return rc;
1539
1540 if (0 != f->tuner)
1541 return -EINVAL;
1542
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001543 if (unlikely(0 == fh->radio && f->type != V4L2_TUNER_ANALOG_TV))
1544 return -EINVAL;
1545 if (unlikely(1 == fh->radio && f->type != V4L2_TUNER_RADIO))
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001546 return -EINVAL;
1547
1548 mutex_lock(&dev->lock);
1549
1550 dev->ctl_freq = f->frequency;
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001551 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_frequency, f);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001552
1553 mutex_unlock(&dev->lock);
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001554
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001555 return 0;
1556}
1557
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001558#ifdef CONFIG_VIDEO_ADV_DEBUG
1559static int em28xx_reg_len(int reg)
1560{
1561 switch (reg) {
Mauro Carvalho Chehab41facaa2008-04-17 21:44:58 -03001562 case EM28XX_R40_AC97LSB:
1563 case EM28XX_R30_HSCALELOW:
1564 case EM28XX_R32_VSCALELOW:
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001565 return 2;
1566 default:
1567 return 1;
1568 }
1569}
1570
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001571static int vidioc_g_chip_ident(struct file *file, void *priv,
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001572 struct v4l2_dbg_chip_ident *chip)
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001573{
1574 struct em28xx_fh *fh = priv;
1575 struct em28xx *dev = fh->dev;
1576
1577 chip->ident = V4L2_IDENT_NONE;
1578 chip->revision = 0;
1579
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001580 v4l2_device_call_all(&dev->v4l2_dev, 0, core, g_chip_ident, chip);
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001581
1582 return 0;
1583}
1584
1585
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001586static int vidioc_g_register(struct file *file, void *priv,
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001587 struct v4l2_dbg_register *reg)
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001588{
1589 struct em28xx_fh *fh = priv;
1590 struct em28xx *dev = fh->dev;
1591 int ret;
1592
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001593 switch (reg->match.type) {
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001594 case V4L2_CHIP_MATCH_AC97:
Mauro Carvalho Chehab531c98e2008-12-22 13:18:27 -03001595 mutex_lock(&dev->lock);
1596 ret = em28xx_read_ac97(dev, reg->reg);
1597 mutex_unlock(&dev->lock);
1598 if (ret < 0)
1599 return ret;
1600
1601 reg->val = ret;
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001602 reg->size = 1;
Mauro Carvalho Chehab531c98e2008-12-22 13:18:27 -03001603 return 0;
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001604 case V4L2_CHIP_MATCH_I2C_DRIVER:
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001605 v4l2_device_call_all(&dev->v4l2_dev, 0, core, g_register, reg);
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001606 return 0;
1607 case V4L2_CHIP_MATCH_I2C_ADDR:
Mauro Carvalho Chehab4efa2d72009-08-09 19:39:23 -03001608 /* TODO: is this correct? */
1609 v4l2_device_call_all(&dev->v4l2_dev, 0, core, g_register, reg);
1610 return 0;
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001611 default:
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001612 if (!v4l2_chip_match_host(&reg->match))
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001613 return -EINVAL;
Mauro Carvalho Chehab531c98e2008-12-22 13:18:27 -03001614 }
1615
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001616 /* Match host */
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001617 reg->size = em28xx_reg_len(reg->reg);
1618 if (reg->size == 1) {
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001619 mutex_lock(&dev->lock);
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001620 ret = em28xx_read_reg(dev, reg->reg);
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001621 mutex_unlock(&dev->lock);
1622
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001623 if (ret < 0)
1624 return ret;
1625
1626 reg->val = ret;
1627 } else {
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001628 __le16 val = 0;
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001629 mutex_lock(&dev->lock);
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001630 ret = em28xx_read_reg_req_len(dev, USB_REQ_GET_STATUS,
1631 reg->reg, (char *)&val, 2);
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001632 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001633 if (ret < 0)
1634 return ret;
1635
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001636 reg->val = le16_to_cpu(val);
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001637 }
1638
1639 return 0;
1640}
1641
1642static int vidioc_s_register(struct file *file, void *priv,
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001643 struct v4l2_dbg_register *reg)
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001644{
1645 struct em28xx_fh *fh = priv;
1646 struct em28xx *dev = fh->dev;
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001647 __le16 buf;
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001648 int rc;
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001649
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001650 switch (reg->match.type) {
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001651 case V4L2_CHIP_MATCH_AC97:
Mauro Carvalho Chehab531c98e2008-12-22 13:18:27 -03001652 mutex_lock(&dev->lock);
1653 rc = em28xx_write_ac97(dev, reg->reg, reg->val);
1654 mutex_unlock(&dev->lock);
1655
1656 return rc;
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001657 case V4L2_CHIP_MATCH_I2C_DRIVER:
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001658 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_register, reg);
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001659 return 0;
1660 case V4L2_CHIP_MATCH_I2C_ADDR:
Mauro Carvalho Chehab4efa2d72009-08-09 19:39:23 -03001661 /* TODO: is this correct? */
1662 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_register, reg);
1663 return 0;
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001664 default:
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001665 if (!v4l2_chip_match_host(&reg->match))
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001666 return -EINVAL;
Mauro Carvalho Chehab531c98e2008-12-22 13:18:27 -03001667 }
1668
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001669 /* Match host */
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001670 buf = cpu_to_le16(reg->val);
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001671
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001672 mutex_lock(&dev->lock);
1673 rc = em28xx_write_regs(dev, reg->reg, (char *)&buf,
1674 em28xx_reg_len(reg->reg));
1675 mutex_unlock(&dev->lock);
1676
1677 return rc;
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001678}
1679#endif
1680
1681
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001682static int vidioc_cropcap(struct file *file, void *priv,
1683 struct v4l2_cropcap *cc)
1684{
1685 struct em28xx_fh *fh = priv;
1686 struct em28xx *dev = fh->dev;
1687
1688 if (cc->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1689 return -EINVAL;
1690
1691 cc->bounds.left = 0;
1692 cc->bounds.top = 0;
1693 cc->bounds.width = dev->width;
1694 cc->bounds.height = dev->height;
1695 cc->defrect = cc->bounds;
1696 cc->pixelaspect.numerator = 54; /* 4:3 FIXME: remove magic numbers */
1697 cc->pixelaspect.denominator = 59;
1698
1699 return 0;
1700}
1701
1702static int vidioc_streamon(struct file *file, void *priv,
1703 enum v4l2_buf_type type)
1704{
1705 struct em28xx_fh *fh = priv;
1706 struct em28xx *dev = fh->dev;
Devin Heitmueller8c873d32009-09-03 00:23:27 -03001707 int rc = -EINVAL;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001708
1709 rc = check_dev(dev);
1710 if (rc < 0)
1711 return rc;
1712
Devin Heitmueller8c873d32009-09-03 00:23:27 -03001713 if (unlikely(type != fh->type))
1714 return -EINVAL;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001715
Devin Heitmueller8c873d32009-09-03 00:23:27 -03001716 em28xx_videodbg("vidioc_streamon fh=%p t=%d fh->res=%d dev->res=%d\n",
1717 fh, type, fh->resources, dev->resources);
Mauro Carvalho Chehab29b59412008-12-16 20:19:24 -03001718
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -03001719 if (unlikely(!res_get(fh, get_ressource(fh))))
Devin Heitmueller8c873d32009-09-03 00:23:27 -03001720 return -EBUSY;
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001721
Devin Heitmueller8c873d32009-09-03 00:23:27 -03001722 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
1723 rc = videobuf_streamon(&fh->vb_vidq);
1724 else if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE)
1725 rc = videobuf_streamon(&fh->vb_vbiq);
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001726
1727 return rc;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001728}
1729
1730static int vidioc_streamoff(struct file *file, void *priv,
1731 enum v4l2_buf_type type)
1732{
1733 struct em28xx_fh *fh = priv;
1734 struct em28xx *dev = fh->dev;
1735 int rc;
1736
1737 rc = check_dev(dev);
1738 if (rc < 0)
1739 return rc;
1740
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001741 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
1742 fh->type != V4L2_BUF_TYPE_VBI_CAPTURE)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001743 return -EINVAL;
1744 if (type != fh->type)
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001745 return -EINVAL;
1746
Devin Heitmueller8c873d32009-09-03 00:23:27 -03001747 em28xx_videodbg("vidioc_streamoff fh=%p t=%d fh->res=%d dev->res=%d\n",
1748 fh, type, fh->resources, dev->resources);
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001749
Devin Heitmueller8c873d32009-09-03 00:23:27 -03001750 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001751 videobuf_streamoff(&fh->vb_vidq);
Devin Heitmueller8c873d32009-09-03 00:23:27 -03001752 res_free(fh, EM28XX_RESOURCE_VIDEO);
1753 } else if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001754 videobuf_streamoff(&fh->vb_vbiq);
Devin Heitmueller8c873d32009-09-03 00:23:27 -03001755 res_free(fh, EM28XX_RESOURCE_VBI);
1756 }
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001757
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001758 return 0;
1759}
1760
1761static int vidioc_querycap(struct file *file, void *priv,
1762 struct v4l2_capability *cap)
1763{
1764 struct em28xx_fh *fh = priv;
1765 struct em28xx *dev = fh->dev;
1766
1767 strlcpy(cap->driver, "em28xx", sizeof(cap->driver));
1768 strlcpy(cap->card, em28xx_boards[dev->model].name, sizeof(cap->card));
Thierry MERLEcb977162009-01-20 18:01:33 -03001769 usb_make_path(dev->udev, cap->bus_info, sizeof(cap->bus_info));
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001770
1771 cap->version = EM28XX_VERSION_CODE;
1772
1773 cap->capabilities =
1774 V4L2_CAP_SLICED_VBI_CAPTURE |
1775 V4L2_CAP_VIDEO_CAPTURE |
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001776 V4L2_CAP_READWRITE | V4L2_CAP_STREAMING;
1777
Devin Heitmueller04146142009-09-11 00:08:44 -03001778 if (dev->vbi_dev)
1779 cap->capabilities |= V4L2_CAP_VBI_CAPTURE;
1780
Mauro Carvalho Chehab6c428b52009-08-04 19:52:37 -03001781 if (dev->audio_mode.has_audio)
1782 cap->capabilities |= V4L2_CAP_AUDIO;
1783
Mauro Carvalho Chehabed086312008-01-24 06:59:20 -03001784 if (dev->tuner_type != TUNER_ABSENT)
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001785 cap->capabilities |= V4L2_CAP_TUNER;
1786
1787 return 0;
1788}
1789
Hans Verkuil78b526a2008-05-28 12:16:41 -03001790static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -03001791 struct v4l2_fmtdesc *f)
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001792{
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -03001793 if (unlikely(f->index >= ARRAY_SIZE(format)))
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001794 return -EINVAL;
1795
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -03001796 strlcpy(f->description, format[f->index].name, sizeof(f->description));
1797 f->pixelformat = format[f->index].fourcc;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001798
1799 return 0;
1800}
1801
1802/* Sliced VBI ioctls */
Hans Verkuil78b526a2008-05-28 12:16:41 -03001803static int vidioc_g_fmt_sliced_vbi_cap(struct file *file, void *priv,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001804 struct v4l2_format *f)
1805{
1806 struct em28xx_fh *fh = priv;
1807 struct em28xx *dev = fh->dev;
1808 int rc;
1809
1810 rc = check_dev(dev);
1811 if (rc < 0)
1812 return rc;
1813
1814 mutex_lock(&dev->lock);
1815
1816 f->fmt.sliced.service_set = 0;
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001817 v4l2_device_call_all(&dev->v4l2_dev, 0, video, g_fmt, f);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001818
1819 if (f->fmt.sliced.service_set == 0)
1820 rc = -EINVAL;
1821
1822 mutex_unlock(&dev->lock);
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001823
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001824 return rc;
1825}
1826
Hans Verkuil78b526a2008-05-28 12:16:41 -03001827static int vidioc_try_set_sliced_vbi_cap(struct file *file, void *priv,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001828 struct v4l2_format *f)
1829{
1830 struct em28xx_fh *fh = priv;
1831 struct em28xx *dev = fh->dev;
1832 int rc;
1833
1834 rc = check_dev(dev);
1835 if (rc < 0)
1836 return rc;
1837
1838 mutex_lock(&dev->lock);
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001839 v4l2_device_call_all(&dev->v4l2_dev, 0, video, g_fmt, f);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001840 mutex_unlock(&dev->lock);
1841
1842 if (f->fmt.sliced.service_set == 0)
1843 return -EINVAL;
1844
1845 return 0;
1846}
1847
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001848/* RAW VBI ioctls */
1849
1850static int vidioc_g_fmt_vbi_cap(struct file *file, void *priv,
1851 struct v4l2_format *format)
1852{
1853 format->fmt.vbi.samples_per_line = 720;
1854 format->fmt.vbi.sample_format = V4L2_PIX_FMT_GREY;
1855 format->fmt.vbi.offset = 0;
1856 format->fmt.vbi.flags = 0;
1857
1858 /* Varies by video standard (NTSC, PAL, etc.) */
1859 /* FIXME: hard-coded for NTSC support */
1860 format->fmt.vbi.sampling_rate = 6750000 * 4 / 2; /* FIXME: ??? */
1861 format->fmt.vbi.count[0] = 12;
1862 format->fmt.vbi.count[1] = 12;
1863 format->fmt.vbi.start[0] = 10;
1864 format->fmt.vbi.start[1] = 273;
1865
1866 return 0;
1867}
1868
1869static int vidioc_s_fmt_vbi_cap(struct file *file, void *priv,
1870 struct v4l2_format *format)
1871{
1872 format->fmt.vbi.samples_per_line = 720;
1873 format->fmt.vbi.sample_format = V4L2_PIX_FMT_GREY;
1874 format->fmt.vbi.offset = 0;
1875 format->fmt.vbi.flags = 0;
1876
1877 /* Varies by video standard (NTSC, PAL, etc.) */
1878 /* FIXME: hard-coded for NTSC support */
1879 format->fmt.vbi.sampling_rate = 6750000 * 4 / 2; /* FIXME: ??? */
1880 format->fmt.vbi.count[0] = 12;
1881 format->fmt.vbi.count[1] = 12;
1882 format->fmt.vbi.start[0] = 10;
1883 format->fmt.vbi.start[1] = 273;
1884
1885 return 0;
1886}
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001887
1888static int vidioc_reqbufs(struct file *file, void *priv,
1889 struct v4l2_requestbuffers *rb)
1890{
1891 struct em28xx_fh *fh = priv;
1892 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001893 int rc;
1894
1895 rc = check_dev(dev);
1896 if (rc < 0)
1897 return rc;
1898
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001899 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
1900 return videobuf_reqbufs(&fh->vb_vidq, rb);
1901 else
1902 return videobuf_reqbufs(&fh->vb_vbiq, rb);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001903}
1904
1905static int vidioc_querybuf(struct file *file, void *priv,
1906 struct v4l2_buffer *b)
1907{
1908 struct em28xx_fh *fh = priv;
1909 struct em28xx *dev = fh->dev;
1910 int rc;
1911
1912 rc = check_dev(dev);
1913 if (rc < 0)
1914 return rc;
1915
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001916 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
1917 return videobuf_querybuf(&fh->vb_vidq, b);
1918 else {
1919 /* FIXME: I'm not sure yet whether this is a bug in zvbi or
1920 the videobuf framework, but we probably shouldn't be
1921 returning a buffer larger than that which was asked for.
1922 At a minimum, it causes a crash in zvbi since it does
1923 a memcpy based on the source buffer length */
1924 int result = videobuf_querybuf(&fh->vb_vbiq, b);
1925 b->length = 17280;
1926 return result;
1927 }
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001928}
1929
1930static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
1931{
1932 struct em28xx_fh *fh = priv;
1933 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001934 int rc;
1935
1936 rc = check_dev(dev);
1937 if (rc < 0)
1938 return rc;
1939
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001940 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
1941 return videobuf_qbuf(&fh->vb_vidq, b);
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -03001942 else
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001943 return videobuf_qbuf(&fh->vb_vbiq, b);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001944}
1945
1946static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
1947{
1948 struct em28xx_fh *fh = priv;
1949 struct em28xx *dev = fh->dev;
1950 int rc;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001951
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_dqbuf(&fh->vb_vidq, b, file->f_flags &
1958 O_NONBLOCK);
1959 else
1960 return videobuf_dqbuf(&fh->vb_vbiq, b, file->f_flags &
1961 O_NONBLOCK);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001962}
1963
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001964#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -03001965static int vidiocgmbuf(struct file *file, void *priv, struct video_mbuf *mbuf)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001966{
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -03001967 struct em28xx_fh *fh = priv;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001968
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001969 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
1970 return videobuf_cgmbuf(&fh->vb_vidq, mbuf, 8);
1971 else
1972 return videobuf_cgmbuf(&fh->vb_vbiq, mbuf, 8);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001973}
1974#endif
1975
1976
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001977/* ----------------------------------------------------------- */
1978/* RADIO ESPECIFIC IOCTLS */
1979/* ----------------------------------------------------------- */
1980
1981static int radio_querycap(struct file *file, void *priv,
1982 struct v4l2_capability *cap)
1983{
1984 struct em28xx *dev = ((struct em28xx_fh *)priv)->dev;
1985
1986 strlcpy(cap->driver, "em28xx", sizeof(cap->driver));
1987 strlcpy(cap->card, em28xx_boards[dev->model].name, sizeof(cap->card));
Thierry MERLEcb977162009-01-20 18:01:33 -03001988 usb_make_path(dev->udev, cap->bus_info, sizeof(cap->bus_info));
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001989
1990 cap->version = EM28XX_VERSION_CODE;
1991 cap->capabilities = V4L2_CAP_TUNER;
1992 return 0;
1993}
1994
1995static int radio_g_tuner(struct file *file, void *priv,
1996 struct v4l2_tuner *t)
1997{
1998 struct em28xx *dev = ((struct em28xx_fh *)priv)->dev;
1999
2000 if (unlikely(t->index > 0))
2001 return -EINVAL;
2002
2003 strcpy(t->name, "Radio");
2004 t->type = V4L2_TUNER_RADIO;
2005
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03002006 mutex_lock(&dev->lock);
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03002007 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_tuner, t);
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03002008 mutex_unlock(&dev->lock);
2009
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
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03002041 mutex_lock(&dev->lock);
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03002042 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_tuner, t);
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03002043 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002044
2045 return 0;
2046}
2047
2048static int radio_s_audio(struct file *file, void *fh,
2049 struct v4l2_audio *a)
2050{
2051 return 0;
2052}
2053
2054static int radio_s_input(struct file *file, void *fh, unsigned int i)
2055{
2056 return 0;
2057}
2058
2059static int radio_queryctrl(struct file *file, void *priv,
2060 struct v4l2_queryctrl *qc)
2061{
2062 int i;
2063
2064 if (qc->id < V4L2_CID_BASE ||
2065 qc->id >= V4L2_CID_LASTP1)
2066 return -EINVAL;
2067
Mauro Carvalho Chehabed10daa2009-07-19 09:10:06 -03002068 for (i = 0; i < ARRAY_SIZE(ac97_qctrl); i++) {
2069 if (qc->id && qc->id == ac97_qctrl[i].id) {
2070 memcpy(qc, &(ac97_qctrl[i]), sizeof(*qc));
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002071 return 0;
2072 }
2073 }
2074
2075 return -EINVAL;
2076}
2077
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002078/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002079 * em28xx_v4l2_open()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002080 * inits the device and starts isoc transfer
2081 */
Hans Verkuilbec43662008-12-30 06:58:20 -03002082static int em28xx_v4l2_open(struct file *filp)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002083{
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02002084 int errCode = 0, radio = 0;
2085 struct video_device *vdev = video_devdata(filp);
2086 struct em28xx *dev = video_drvdata(filp);
2087 enum v4l2_buf_type fh_type = 0;
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002088 struct em28xx_fh *fh;
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -03002089 enum v4l2_field field;
Markus Rechberger9c755412005-11-08 21:37:52 -08002090
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02002091 switch (vdev->vfl_type) {
2092 case VFL_TYPE_GRABBER:
2093 fh_type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
2094 break;
2095 case VFL_TYPE_VBI:
2096 fh_type = V4L2_BUF_TYPE_VBI_CAPTURE;
2097 break;
2098 case VFL_TYPE_RADIO:
2099 radio = 1;
2100 break;
2101 }
Mauro Carvalho Chehab818a5572008-11-20 10:30:26 -03002102
2103 mutex_lock(&dev->lock);
Markus Rechberger9c755412005-11-08 21:37:52 -08002104
Laurent Pinchart50462eb2009-12-10 11:47:13 -02002105 em28xx_videodbg("open dev=%s type=%s users=%d\n",
2106 video_device_node_name(vdev), v4l2_type_names[fh_type],
2107 dev->users);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002108
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002109
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -03002110 fh = kzalloc(sizeof(struct em28xx_fh), GFP_KERNEL);
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002111 if (!fh) {
2112 em28xx_errdev("em28xx-video.c: Out of memory?!\n");
Mauro Carvalho Chehab818a5572008-11-20 10:30:26 -03002113 mutex_unlock(&dev->lock);
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002114 return -ENOMEM;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002115 }
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002116 fh->dev = dev;
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002117 fh->radio = radio;
Aidan Thorntond7aa8022008-04-13 14:38:47 -03002118 fh->type = fh_type;
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002119 filp->private_data = fh;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002120
Aidan Thorntond7aa8022008-04-13 14:38:47 -03002121 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE && dev->users == 0) {
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -03002122 em28xx_set_mode(dev, EM28XX_ANALOG_MODE);
Mauro Carvalho Chehab3687e1e2008-02-08 15:44:25 -03002123 em28xx_set_alternate(dev);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002124 em28xx_resolution_set(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002125
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -03002126 /* Needed, since GPIO might have disabled power of
2127 some i2c device
2128 */
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002129 em28xx_wake_i2c(dev);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -03002130
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002131 }
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002132 if (fh->radio) {
2133 em28xx_videodbg("video_open: setting radio device\n");
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03002134 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_radio);
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002135 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002136
2137 dev->users++;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002138
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -03002139 if (dev->progressive)
2140 field = V4L2_FIELD_NONE;
2141 else
2142 field = V4L2_FIELD_INTERLACED;
2143
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002144 videobuf_queue_vmalloc_init(&fh->vb_vidq, &em28xx_video_qops,
2145 NULL, &dev->slock,
2146 V4L2_BUF_TYPE_VIDEO_CAPTURE, field,
2147 sizeof(struct em28xx_buffer), fh);
Devin Heitmueller28abf0832009-09-01 01:54:54 -03002148
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002149 videobuf_queue_vmalloc_init(&fh->vb_vbiq, &em28xx_vbi_qops,
2150 NULL, &dev->slock,
2151 V4L2_BUF_TYPE_VBI_CAPTURE,
2152 V4L2_FIELD_SEQ_TB,
2153 sizeof(struct em28xx_buffer), fh);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002154
Ingo Molnar3593cab2006-02-07 06:49:14 -02002155 mutex_unlock(&dev->lock);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -03002156
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002157 return errCode;
2158}
2159
2160/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002161 * em28xx_realease_resources()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002162 * unregisters the v4l2,i2c and usb devices
2163 * called when the device gets disconected or at module unload
2164*/
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002165void em28xx_release_analog_resources(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002166{
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002167
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002168 /*FIXME: I2C IR should be disconnected */
2169
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002170 if (dev->radio_dev) {
Laurent Pinchartf0813b42009-11-27 13:57:30 -03002171 if (video_is_registered(dev->radio_dev))
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002172 video_unregister_device(dev->radio_dev);
2173 else
2174 video_device_release(dev->radio_dev);
2175 dev->radio_dev = NULL;
2176 }
2177 if (dev->vbi_dev) {
Laurent Pinchart38c7c032009-11-27 13:57:15 -03002178 em28xx_info("V4L2 device %s deregistered\n",
2179 video_device_node_name(dev->vbi_dev));
Laurent Pinchartf0813b42009-11-27 13:57:30 -03002180 if (video_is_registered(dev->vbi_dev))
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002181 video_unregister_device(dev->vbi_dev);
2182 else
2183 video_device_release(dev->vbi_dev);
2184 dev->vbi_dev = NULL;
2185 }
2186 if (dev->vdev) {
Laurent Pinchart38c7c032009-11-27 13:57:15 -03002187 em28xx_info("V4L2 device %s deregistered\n",
2188 video_device_node_name(dev->vdev));
Laurent Pinchartf0813b42009-11-27 13:57:30 -03002189 if (video_is_registered(dev->vdev))
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002190 video_unregister_device(dev->vdev);
2191 else
2192 video_device_release(dev->vdev);
2193 dev->vdev = NULL;
2194 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002195}
2196
2197/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002198 * em28xx_v4l2_close()
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -03002199 * stops streaming and deallocates all resources allocated by the v4l2
2200 * calls and ioctls
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002201 */
Hans Verkuilbec43662008-12-30 06:58:20 -03002202static int em28xx_v4l2_close(struct file *filp)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002203{
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002204 struct em28xx_fh *fh = filp->private_data;
2205 struct em28xx *dev = fh->dev;
2206 int errCode;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002207
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -08002208 em28xx_videodbg("users=%d\n", dev->users);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002209
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002210 if (res_check(fh, EM28XX_RESOURCE_VIDEO)) {
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002211 videobuf_stop(&fh->vb_vidq);
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002212 res_free(fh, EM28XX_RESOURCE_VIDEO);
2213 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002214
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002215 if (res_check(fh, EM28XX_RESOURCE_VBI)) {
2216 videobuf_stop(&fh->vb_vbiq);
2217 res_free(fh, EM28XX_RESOURCE_VBI);
2218 }
2219
Devin Heitmuellere3ba4d32009-09-15 00:18:06 -03002220 if (dev->users == 1) {
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002221 /* the device is already disconnect,
2222 free the remaining resources */
2223 if (dev->state & DEV_DISCONNECTED) {
2224 em28xx_release_resources(dev);
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002225 kfree(dev);
2226 return 0;
2227 }
2228
Mauro Carvalho Chehabeb6c9632008-12-05 10:39:12 -03002229 /* Save some power by putting tuner to sleep */
Laurent Pinchart622b8282009-10-05 10:48:17 -03002230 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_power, 0);
Mauro Carvalho Chehabeb6c9632008-12-05 10:39:12 -03002231
Aidan Thorntond7aa8022008-04-13 14:38:47 -03002232 /* do this before setting alternate! */
2233 em28xx_uninit_isoc(dev);
Mauro Carvalho Chehab2fe3e2e2008-11-27 09:10:40 -03002234 em28xx_set_mode(dev, EM28XX_SUSPEND);
Aidan Thorntond7aa8022008-04-13 14:38:47 -03002235
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002236 /* set alternate 0 */
2237 dev->alt = 0;
2238 em28xx_videodbg("setting alternate 0\n");
2239 errCode = usb_set_interface(dev->udev, 0, 0);
2240 if (errCode < 0) {
2241 em28xx_errdev("cannot change alternate number to "
2242 "0 (error=%i)\n", errCode);
2243 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002244 }
Devin Heitmueller28abf0832009-09-01 01:54:54 -03002245
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002246 videobuf_mmap_free(&fh->vb_vidq);
2247 videobuf_mmap_free(&fh->vb_vbiq);
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002248 kfree(fh);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002249 dev->users--;
2250 wake_up_interruptible_nr(&dev->open, 1);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002251 return 0;
2252}
2253
2254/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002255 * em28xx_v4l2_read()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002256 * will allocate buffers when called for the first time
2257 */
2258static ssize_t
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -03002259em28xx_v4l2_read(struct file *filp, char __user *buf, size_t count,
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -03002260 loff_t *pos)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002261{
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002262 struct em28xx_fh *fh = filp->private_data;
2263 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002264 int rc;
2265
2266 rc = check_dev(dev);
2267 if (rc < 0)
2268 return rc;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002269
Mauro Carvalho Chehab9e31ced2007-11-11 01:13:49 -03002270 /* FIXME: read() is not prepared to allow changing the video
2271 resolution while streaming. Seems a bug at em28xx_set_fmt
2272 */
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -03002273
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002274 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002275 if (res_locked(dev, EM28XX_RESOURCE_VIDEO))
2276 return -EBUSY;
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -03002277
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002278 return videobuf_read_stream(&fh->vb_vidq, buf, count, pos, 0,
2279 filp->f_flags & O_NONBLOCK);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002280 }
Devin Heitmueller28abf0832009-09-01 01:54:54 -03002281
2282
2283 if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002284 if (!res_get(fh, EM28XX_RESOURCE_VBI))
2285 return -EBUSY;
Devin Heitmueller28abf0832009-09-01 01:54:54 -03002286
2287 return videobuf_read_stream(&fh->vb_vbiq, buf, count, pos, 0,
2288 filp->f_flags & O_NONBLOCK);
2289 }
2290
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002291 return 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002292}
2293
2294/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002295 * em28xx_v4l2_poll()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002296 * will allocate buffers when called for the first time
2297 */
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -03002298static unsigned int em28xx_v4l2_poll(struct file *filp, poll_table *wait)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002299{
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002300 struct em28xx_fh *fh = filp->private_data;
2301 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002302 int rc;
2303
2304 rc = check_dev(dev);
2305 if (rc < 0)
2306 return rc;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002307
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002308 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
2309 if (!res_get(fh, EM28XX_RESOURCE_VIDEO))
2310 return POLLERR;
Devin Heitmueller28abf0832009-09-01 01:54:54 -03002311 return videobuf_poll_stream(filp, &fh->vb_vidq, wait);
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002312 } else if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
2313 if (!res_get(fh, EM28XX_RESOURCE_VBI))
2314 return POLLERR;
Devin Heitmueller28abf0832009-09-01 01:54:54 -03002315 return videobuf_poll_stream(filp, &fh->vb_vbiq, wait);
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002316 } else {
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002317 return POLLERR;
Devin Heitmueller8c873d32009-09-03 00:23:27 -03002318 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002319}
2320
2321/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002322 * em28xx_v4l2_mmap()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002323 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002324static int em28xx_v4l2_mmap(struct file *filp, struct vm_area_struct *vma)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002325{
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002326 struct em28xx_fh *fh = filp->private_data;
2327 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002328 int rc;
Markus Rechberger9c755412005-11-08 21:37:52 -08002329
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002330 rc = check_dev(dev);
2331 if (rc < 0)
2332 return rc;
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002333
Devin Heitmueller91f6dce2009-09-02 22:23:23 -03002334 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
2335 rc = videobuf_mmap_mapper(&fh->vb_vidq, vma);
2336 else if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE)
2337 rc = videobuf_mmap_mapper(&fh->vb_vbiq, vma);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002338
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002339 em28xx_videodbg("vma start=0x%08lx, size=%ld, ret=%d\n",
2340 (unsigned long)vma->vm_start,
2341 (unsigned long)vma->vm_end-(unsigned long)vma->vm_start,
2342 rc);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002343
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002344 return rc;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002345}
2346
Hans Verkuilbec43662008-12-30 06:58:20 -03002347static const struct v4l2_file_operations em28xx_v4l_fops = {
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002348 .owner = THIS_MODULE,
2349 .open = em28xx_v4l2_open,
2350 .release = em28xx_v4l2_close,
2351 .read = em28xx_v4l2_read,
2352 .poll = em28xx_v4l2_poll,
2353 .mmap = em28xx_v4l2_mmap,
2354 .ioctl = video_ioctl2,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002355};
2356
Hans Verkuila3998102008-07-21 02:57:38 -03002357static const struct v4l2_ioctl_ops video_ioctl_ops = {
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002358 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03002359 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
2360 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
2361 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
2362 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Devin Heitmueller28abf0832009-09-01 01:54:54 -03002363 .vidioc_g_fmt_vbi_cap = vidioc_g_fmt_vbi_cap,
2364 .vidioc_s_fmt_vbi_cap = vidioc_s_fmt_vbi_cap,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002365 .vidioc_g_audio = vidioc_g_audio,
2366 .vidioc_s_audio = vidioc_s_audio,
2367 .vidioc_cropcap = vidioc_cropcap,
2368
Hans Verkuil78b526a2008-05-28 12:16:41 -03002369 .vidioc_g_fmt_sliced_vbi_cap = vidioc_g_fmt_sliced_vbi_cap,
2370 .vidioc_try_fmt_sliced_vbi_cap = vidioc_try_set_sliced_vbi_cap,
2371 .vidioc_s_fmt_sliced_vbi_cap = vidioc_try_set_sliced_vbi_cap,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002372
2373 .vidioc_reqbufs = vidioc_reqbufs,
2374 .vidioc_querybuf = vidioc_querybuf,
2375 .vidioc_qbuf = vidioc_qbuf,
2376 .vidioc_dqbuf = vidioc_dqbuf,
Devin Heitmueller19bf0032009-09-11 00:40:18 -03002377 .vidioc_g_std = vidioc_g_std,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002378 .vidioc_s_std = vidioc_s_std,
Mauro Carvalho Chehabd96ecda2009-08-06 21:53:59 -03002379 .vidioc_g_parm = vidioc_g_parm,
2380 .vidioc_s_parm = vidioc_s_parm,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002381 .vidioc_enum_input = vidioc_enum_input,
2382 .vidioc_g_input = vidioc_g_input,
2383 .vidioc_s_input = vidioc_s_input,
2384 .vidioc_queryctrl = vidioc_queryctrl,
2385 .vidioc_g_ctrl = vidioc_g_ctrl,
2386 .vidioc_s_ctrl = vidioc_s_ctrl,
2387 .vidioc_streamon = vidioc_streamon,
2388 .vidioc_streamoff = vidioc_streamoff,
2389 .vidioc_g_tuner = vidioc_g_tuner,
2390 .vidioc_s_tuner = vidioc_s_tuner,
2391 .vidioc_g_frequency = vidioc_g_frequency,
2392 .vidioc_s_frequency = vidioc_s_frequency,
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03002393#ifdef CONFIG_VIDEO_ADV_DEBUG
2394 .vidioc_g_register = vidioc_g_register,
2395 .vidioc_s_register = vidioc_s_register,
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03002396 .vidioc_g_chip_ident = vidioc_g_chip_ident,
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03002397#endif
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002398#ifdef CONFIG_VIDEO_V4L1_COMPAT
2399 .vidiocgmbuf = vidiocgmbuf,
2400#endif
Hans Verkuila3998102008-07-21 02:57:38 -03002401};
2402
2403static const struct video_device em28xx_video_template = {
2404 .fops = &em28xx_v4l_fops,
2405 .release = video_device_release,
2406 .ioctl_ops = &video_ioctl_ops,
2407
2408 .minor = -1,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002409
2410 .tvnorms = V4L2_STD_ALL,
Devin Heitmueller19bf0032009-09-11 00:40:18 -03002411 .current_norm = V4L2_STD_PAL,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002412};
2413
Hans Verkuilbec43662008-12-30 06:58:20 -03002414static const struct v4l2_file_operations radio_fops = {
Hans Verkuila3998102008-07-21 02:57:38 -03002415 .owner = THIS_MODULE,
2416 .open = em28xx_v4l2_open,
2417 .release = em28xx_v4l2_close,
2418 .ioctl = video_ioctl2,
Hans Verkuila3998102008-07-21 02:57:38 -03002419};
2420
2421static const struct v4l2_ioctl_ops radio_ioctl_ops = {
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002422 .vidioc_querycap = radio_querycap,
2423 .vidioc_g_tuner = radio_g_tuner,
2424 .vidioc_enum_input = radio_enum_input,
2425 .vidioc_g_audio = radio_g_audio,
2426 .vidioc_s_tuner = radio_s_tuner,
2427 .vidioc_s_audio = radio_s_audio,
2428 .vidioc_s_input = radio_s_input,
2429 .vidioc_queryctrl = radio_queryctrl,
2430 .vidioc_g_ctrl = vidioc_g_ctrl,
2431 .vidioc_s_ctrl = vidioc_s_ctrl,
2432 .vidioc_g_frequency = vidioc_g_frequency,
2433 .vidioc_s_frequency = vidioc_s_frequency,
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03002434#ifdef CONFIG_VIDEO_ADV_DEBUG
2435 .vidioc_g_register = vidioc_g_register,
2436 .vidioc_s_register = vidioc_s_register,
2437#endif
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002438};
2439
Hans Verkuila3998102008-07-21 02:57:38 -03002440static struct video_device em28xx_radio_template = {
2441 .name = "em28xx-radio",
Hans Verkuila3998102008-07-21 02:57:38 -03002442 .fops = &radio_fops,
2443 .ioctl_ops = &radio_ioctl_ops,
2444 .minor = -1,
2445};
2446
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -03002447/******************************** usb interface ******************************/
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002448
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -03002449
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -03002450
Adrian Bunk532fe652008-01-28 22:10:48 -03002451static struct video_device *em28xx_vdev_init(struct em28xx *dev,
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -03002452 const struct video_device *template,
2453 const char *type_name)
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002454{
2455 struct video_device *vfd;
2456
2457 vfd = video_device_alloc();
2458 if (NULL == vfd)
2459 return NULL;
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03002460
2461 *vfd = *template;
2462 vfd->minor = -1;
2463 vfd->v4l2_dev = &dev->v4l2_dev;
2464 vfd->release = video_device_release;
2465 vfd->debug = video_debug;
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002466
2467 snprintf(vfd->name, sizeof(vfd->name), "%s %s",
2468 dev->name, type_name);
2469
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -02002470 video_set_drvdata(vfd, dev);
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002471 return vfd;
2472}
2473
Mauro Carvalho Chehab2e5ef2d2008-12-28 22:26:36 -03002474int em28xx_register_analog_devices(struct em28xx *dev)
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002475{
Robert Krakora6e7b9ea2009-01-18 21:59:34 -03002476 u8 val;
Mauro Carvalho Chehab2e5ef2d2008-12-28 22:26:36 -03002477 int ret;
2478
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002479 printk(KERN_INFO "%s: v4l2 driver version %d.%d.%d\n",
2480 dev->name,
2481 (EM28XX_VERSION_CODE >> 16) & 0xff,
2482 (EM28XX_VERSION_CODE >> 8) & 0xff, EM28XX_VERSION_CODE & 0xff);
2483
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002484 /* set default norm */
2485 dev->norm = em28xx_video_template.current_norm;
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002486 dev->interlaced = EM28XX_INTERLACED_DEFAULT;
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03002487 dev->ctl_input = 0;
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002488
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03002489 /* Analog specific initialization */
2490 dev->format = &format[0];
Mauro Carvalho Chehabed5f1432009-07-02 17:34:04 -03002491 em28xx_set_video_format(dev, format[0].fourcc,
2492 norm_maxw(dev), norm_maxh(dev));
2493
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03002494 video_mux(dev, dev->ctl_input);
2495
2496 /* Audio defaults */
2497 dev->mute = 1;
2498 dev->volume = 0x1f;
2499
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03002500/* em28xx_write_reg(dev, EM28XX_R0E_AUDIOSRC, 0xc0); audio register */
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -03002501 val = (u8)em28xx_read_reg(dev, EM28XX_R0F_XCLK);
2502 em28xx_write_reg(dev, EM28XX_R0F_XCLK,
2503 (EM28XX_XCLK_AUDIO_UNMUTE | val));
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03002504
2505 em28xx_set_outfmt(dev);
2506 em28xx_colorlevels_set_default(dev);
2507 em28xx_compression_disable(dev);
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002508
Mauro Carvalho Chehab818a5572008-11-20 10:30:26 -03002509 /* allocate and fill video video_device struct */
2510 dev->vdev = em28xx_vdev_init(dev, &em28xx_video_template, "video");
2511 if (!dev->vdev) {
2512 em28xx_errdev("cannot allocate video_device.\n");
2513 return -ENODEV;
2514 }
2515
2516 /* register v4l2 video video_device */
2517 ret = video_register_device(dev->vdev, VFL_TYPE_GRABBER,
2518 video_nr[dev->devno]);
2519 if (ret) {
2520 em28xx_errdev("unable to register video device (error=%i).\n",
2521 ret);
2522 return ret;
2523 }
2524
2525 /* Allocate and fill vbi video_device struct */
Devin Heitmueller290c0cf2009-09-11 00:01:06 -03002526 if (em28xx_vbi_supported(dev) == 1) {
2527 dev->vbi_dev = em28xx_vdev_init(dev, &em28xx_video_template,
2528 "vbi");
Mauro Carvalho Chehab818a5572008-11-20 10:30:26 -03002529
Devin Heitmueller290c0cf2009-09-11 00:01:06 -03002530 /* register v4l2 vbi video_device */
2531 ret = video_register_device(dev->vbi_dev, VFL_TYPE_VBI,
2532 vbi_nr[dev->devno]);
2533 if (ret < 0) {
2534 em28xx_errdev("unable to register vbi device\n");
2535 return ret;
2536 }
Mauro Carvalho Chehab818a5572008-11-20 10:30:26 -03002537 }
2538
2539 if (em28xx_boards[dev->model].radio.type == EM28XX_RADIO) {
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -03002540 dev->radio_dev = em28xx_vdev_init(dev, &em28xx_radio_template,
2541 "radio");
Mauro Carvalho Chehab818a5572008-11-20 10:30:26 -03002542 if (!dev->radio_dev) {
2543 em28xx_errdev("cannot allocate video_device.\n");
2544 return -ENODEV;
2545 }
2546 ret = video_register_device(dev->radio_dev, VFL_TYPE_RADIO,
2547 radio_nr[dev->devno]);
2548 if (ret < 0) {
2549 em28xx_errdev("can't register radio device\n");
2550 return ret;
2551 }
Laurent Pinchart38c7c032009-11-27 13:57:15 -03002552 em28xx_info("Registered radio device as %s\n",
2553 video_device_node_name(dev->radio_dev));
Mauro Carvalho Chehab818a5572008-11-20 10:30:26 -03002554 }
2555
Laurent Pinchart38c7c032009-11-27 13:57:15 -03002556 em28xx_info("V4L2 video device registered as %s\n",
2557 video_device_node_name(dev->vdev));
Devin Heitmueller290c0cf2009-09-11 00:01:06 -03002558
2559 if (dev->vbi_dev)
Laurent Pinchart38c7c032009-11-27 13:57:15 -03002560 em28xx_info("V4L2 VBI device registered as %s\n",
2561 video_device_node_name(dev->vbi_dev));
Mauro Carvalho Chehab818a5572008-11-20 10:30:26 -03002562
2563 return 0;
2564}