blob: ab079d9256c463a0c9889841ed3e0946969f1929 [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 Chehab3acf2802005-11-08 21:38:27 -0800127static struct v4l2_queryctrl em28xx_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,
136 .flags = 0,
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
Mauro Carvalho Chehabcb784722008-04-13 15:06:52 -0300166 dev->isoc_ctl.buf = NULL;
167
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300168 list_del(&buf->vb.queue);
169 wake_up(&buf->vb.done);
170}
171
172/*
173 * Identify the buffer header type and properly handles
174 */
175static void em28xx_copy_video(struct em28xx *dev,
176 struct em28xx_dmaqueue *dma_q,
177 struct em28xx_buffer *buf,
178 unsigned char *p,
179 unsigned char *outp, unsigned long len)
180{
181 void *fieldstart, *startwrite, *startread;
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300182 int linesdone, currlinedone, offset, lencopy, remain;
Mauro Carvalho Chehab44dc7332008-04-13 15:11:08 -0300183 int bytesperline = dev->width << 1;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300184
185 if (dma_q->pos + len > buf->vb.size)
186 len = buf->vb.size - dma_q->pos;
187
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300188 if (p[0] != 0x88 && p[0] != 0x22) {
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300189 em28xx_isocdbg("frame is not complete\n");
190 len += 4;
191 } else
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300192 p += 4;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300193
194 startread = p;
195 remain = len;
196
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -0300197 if (dev->progressive)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300198 fieldstart = outp;
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -0300199 else {
200 /* Interlaces two half frames */
201 if (buf->top_field)
202 fieldstart = outp;
203 else
204 fieldstart = outp + bytesperline;
205 }
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300206
Mauro Carvalho Chehab44dc7332008-04-13 15:11:08 -0300207 linesdone = dma_q->pos / bytesperline;
208 currlinedone = dma_q->pos % bytesperline;
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -0300209
210 if (dev->progressive)
211 offset = linesdone * bytesperline + currlinedone;
212 else
213 offset = linesdone * bytesperline * 2 + currlinedone;
214
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300215 startwrite = fieldstart + offset;
Mauro Carvalho Chehab44dc7332008-04-13 15:11:08 -0300216 lencopy = bytesperline - currlinedone;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300217 lencopy = lencopy > remain ? remain : lencopy;
218
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300219 if ((char *)startwrite + lencopy > (char *)outp + buf->vb.size) {
Mauro Carvalho Chehabea8df7e2008-04-13 14:39:29 -0300220 em28xx_isocdbg("Overflow of %zi bytes past buffer end (1)\n",
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300221 ((char *)startwrite + lencopy) -
222 ((char *)outp + buf->vb.size));
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300223 remain = (char *)outp + buf->vb.size - (char *)startwrite;
224 lencopy = remain;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300225 }
Aidan Thorntone0fadfd342008-04-13 14:56:02 -0300226 if (lencopy <= 0)
227 return;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300228 memcpy(startwrite, startread, lencopy);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300229
230 remain -= lencopy;
231
232 while (remain > 0) {
Mauro Carvalho Chehab44dc7332008-04-13 15:11:08 -0300233 startwrite += lencopy + bytesperline;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300234 startread += lencopy;
Mauro Carvalho Chehab44dc7332008-04-13 15:11:08 -0300235 if (bytesperline > remain)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300236 lencopy = remain;
237 else
Mauro Carvalho Chehab44dc7332008-04-13 15:11:08 -0300238 lencopy = bytesperline;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300239
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300240 if ((char *)startwrite + lencopy > (char *)outp +
241 buf->vb.size) {
Mauro Carvalho Chehabea8df7e2008-04-13 14:39:29 -0300242 em28xx_isocdbg("Overflow of %zi bytes past buffer end (2)\n",
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300243 ((char *)startwrite + lencopy) -
244 ((char *)outp + buf->vb.size));
245 lencopy = remain = (char *)outp + buf->vb.size -
246 (char *)startwrite;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300247 }
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300248 if (lencopy <= 0)
249 break;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300250
251 memcpy(startwrite, startread, lencopy);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300252
253 remain -= lencopy;
254 }
255
256 dma_q->pos += len;
257}
258
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300259static inline void print_err_status(struct em28xx *dev,
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300260 int packet, int status)
261{
262 char *errmsg = "Unknown";
263
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300264 switch (status) {
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300265 case -ENOENT:
266 errmsg = "unlinked synchronuously";
267 break;
268 case -ECONNRESET:
269 errmsg = "unlinked asynchronuously";
270 break;
271 case -ENOSR:
272 errmsg = "Buffer error (overrun)";
273 break;
274 case -EPIPE:
275 errmsg = "Stalled (device not responding)";
276 break;
277 case -EOVERFLOW:
278 errmsg = "Babble (bad cable?)";
279 break;
280 case -EPROTO:
281 errmsg = "Bit-stuff error (bad cable?)";
282 break;
283 case -EILSEQ:
284 errmsg = "CRC/Timeout (could be anything)";
285 break;
286 case -ETIME:
287 errmsg = "Device does not respond";
288 break;
289 }
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300290 if (packet < 0) {
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300291 em28xx_isocdbg("URB status %d [%s].\n", status, errmsg);
292 } else {
293 em28xx_isocdbg("URB packet %d, status %d [%s].\n",
294 packet, status, errmsg);
295 }
296}
297
298/*
299 * video-buf generic routine to get the next available buffer
300 */
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300301static inline void get_next_buf(struct em28xx_dmaqueue *dma_q,
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300302 struct em28xx_buffer **buf)
303{
304 struct em28xx *dev = container_of(dma_q, struct em28xx, vidq);
Mauro Carvalho Chehabdbecb442008-04-13 15:08:55 -0300305 char *outp;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300306
Mauro Carvalho Chehabdbecb442008-04-13 15:08:55 -0300307 if (list_empty(&dma_q->active)) {
308 em28xx_isocdbg("No active queue to serve\n");
309 dev->isoc_ctl.buf = NULL;
Mauro Carvalho Chehabdbecb442008-04-13 15:08:55 -0300310 *buf = NULL;
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300311 return;
Mauro Carvalho Chehabdbecb442008-04-13 15:08:55 -0300312 }
313
Mauro Carvalho Chehabdbecb442008-04-13 15:08:55 -0300314 /* Get the next buffer */
315 *buf = list_entry(dma_q->active.next, struct em28xx_buffer, vb.queue);
316
Mauro Carvalho Chehabdbecb442008-04-13 15:08:55 -0300317 /* Cleans up buffer - Usefull for testing for frame/URB loss */
318 outp = videobuf_to_vmalloc(&(*buf)->vb);
319 memset(outp, 0, (*buf)->vb.size);
Mauro Carvalho Chehabcb784722008-04-13 15:06:52 -0300320
321 dev->isoc_ctl.buf = *buf;
322
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300323 return;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300324}
325
326/*
327 * Controls the isoc copy of each urb packet
328 */
Aidan Thornton579f72e2008-04-17 21:40:16 -0300329static inline int em28xx_isoc_copy(struct em28xx *dev, struct urb *urb)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300330{
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300331 struct em28xx_buffer *buf;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300332 struct em28xx_dmaqueue *dma_q = urb->context;
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300333 unsigned char *outp = NULL;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300334 int i, len = 0, rc = 1;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300335 unsigned char *p;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300336
337 if (!dev)
338 return 0;
339
340 if ((dev->state & DEV_DISCONNECTED) || (dev->state & DEV_MISCONFIGURED))
341 return 0;
342
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300343 if (urb->status < 0) {
344 print_err_status(dev, -1, urb->status);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300345 if (urb->status == -ENOENT)
346 return 0;
347 }
348
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300349 buf = dev->isoc_ctl.buf;
350 if (buf != NULL)
351 outp = videobuf_to_vmalloc(&buf->vb);
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300352
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300353 for (i = 0; i < urb->number_of_packets; i++) {
354 int status = urb->iso_frame_desc[i].status;
355
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300356 if (status < 0) {
357 print_err_status(dev, i, status);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300358 if (urb->iso_frame_desc[i].status != -EPROTO)
359 continue;
360 }
361
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300362 len = urb->iso_frame_desc[i].actual_length - 4;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300363
364 if (urb->iso_frame_desc[i].actual_length <= 0) {
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300365 /* em28xx_isocdbg("packet %d is empty",i); - spammy */
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300366 continue;
367 }
368 if (urb->iso_frame_desc[i].actual_length >
369 dev->max_pkt_size) {
370 em28xx_isocdbg("packet bigger than packet size");
371 continue;
372 }
373
374 p = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300375
376 /* FIXME: incomplete buffer checks where removed to make
377 logic simpler. Impacts of those changes should be evaluated
378 */
Mauro Carvalho Chehabb4916f82008-04-13 15:09:14 -0300379 if (p[0] == 0x33 && p[1] == 0x95 && p[2] == 0x00) {
380 em28xx_isocdbg("VBI HEADER!!!\n");
381 /* FIXME: Should add vbi copy */
382 continue;
383 }
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300384 if (p[0] == 0x22 && p[1] == 0x5a) {
Mauro Carvalho Chehab78bb3942008-04-13 14:56:25 -0300385 em28xx_isocdbg("Video frame %d, length=%i, %s\n", p[2],
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300386 len, (p[2] & 1) ? "odd" : "even");
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300387
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -0300388 if (dev->progressive || !(p[2] & 1)) {
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300389 if (buf != NULL)
390 buffer_filled(dev, dma_q, buf);
391 get_next_buf(dma_q, &buf);
392 if (buf == NULL)
393 outp = NULL;
394 else
395 outp = videobuf_to_vmalloc(&buf->vb);
Aidan Thorntone0fadfd342008-04-13 14:56:02 -0300396 }
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300397
398 if (buf != NULL) {
399 if (p[2] & 1)
400 buf->top_field = 0;
401 else
402 buf->top_field = 1;
403 }
Mauro Carvalho Chehabb4916f82008-04-13 15:09:14 -0300404
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300405 dma_q->pos = 0;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300406 }
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300407 if (buf != NULL)
408 em28xx_copy_video(dev, dma_q, buf, p, outp, len);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300409 }
410 return rc;
411}
412
413/* ------------------------------------------------------------------
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300414 Videobuf operations
415 ------------------------------------------------------------------*/
416
417static int
418buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
419{
420 struct em28xx_fh *fh = vq->priv_data;
Mauro Carvalho Chehabd2d9fbf2008-04-17 21:38:53 -0300421 struct em28xx *dev = fh->dev;
422 struct v4l2_frequency f;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300423
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -0300424 *size = (fh->dev->width * fh->dev->height * dev->format->depth + 7) >> 3;
425
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300426 if (0 == *count)
427 *count = EM28XX_DEF_BUF;
428
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300429 if (*count < EM28XX_MIN_BUF)
430 *count = EM28XX_MIN_BUF;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300431
Mauro Carvalho Chehab381aaba2008-12-20 07:43:34 -0300432 /* Ask tuner to go to analog or radio mode */
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300433 memset(&f, 0, sizeof(f));
Mauro Carvalho Chehabd2d9fbf2008-04-17 21:38:53 -0300434 f.frequency = dev->ctl_freq;
Mauro Carvalho Chehab381aaba2008-12-20 07:43:34 -0300435 f.type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Mauro Carvalho Chehabd2d9fbf2008-04-17 21:38:53 -0300436
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -0300437 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_frequency, &f);
Mauro Carvalho Chehabd2d9fbf2008-04-17 21:38:53 -0300438
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300439 return 0;
440}
441
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300442/* This is called *without* dev->slock held; please keep it that way */
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300443static void free_buffer(struct videobuf_queue *vq, struct em28xx_buffer *buf)
444{
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300445 struct em28xx_fh *fh = vq->priv_data;
446 struct em28xx *dev = fh->dev;
447 unsigned long flags = 0;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300448 if (in_interrupt())
449 BUG();
450
Aidan Thornton3b5fa922008-04-13 15:09:36 -0300451 /* We used to wait for the buffer to finish here, but this didn't work
452 because, as we were keeping the state as VIDEOBUF_QUEUED,
453 videobuf_queue_cancel marked it as finished for us.
454 (Also, it could wedge forever if the hardware was misconfigured.)
455
456 This should be safe; by the time we get here, the buffer isn't
457 queued anymore. If we ever start marking the buffers as
458 VIDEOBUF_ACTIVE, it won't be, though.
459 */
460 spin_lock_irqsave(&dev->slock, flags);
461 if (dev->isoc_ctl.buf == buf)
462 dev->isoc_ctl.buf = NULL;
463 spin_unlock_irqrestore(&dev->slock, flags);
464
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300465 videobuf_vmalloc_free(&buf->vb);
466 buf->vb.state = VIDEOBUF_NEEDS_INIT;
467}
468
469static int
470buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
471 enum v4l2_field field)
472{
473 struct em28xx_fh *fh = vq->priv_data;
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300474 struct em28xx_buffer *buf = container_of(vb, struct em28xx_buffer, vb);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300475 struct em28xx *dev = fh->dev;
476 int rc = 0, urb_init = 0;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300477
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -0300478 buf->vb.size = (fh->dev->width * fh->dev->height * dev->format->depth + 7) >> 3;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300479
480 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
481 return -EINVAL;
482
Brandon Philips05612972008-04-13 14:57:01 -0300483 buf->vb.width = dev->width;
484 buf->vb.height = dev->height;
485 buf->vb.field = field;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300486
487 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300488 rc = videobuf_iolock(vq, &buf->vb, NULL);
489 if (rc < 0)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300490 goto fail;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300491 }
492
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300493 if (!dev->isoc_ctl.num_bufs)
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300494 urb_init = 1;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300495
496 if (urb_init) {
Aidan Thornton579f72e2008-04-17 21:40:16 -0300497 rc = em28xx_init_isoc(dev, EM28XX_NUM_PACKETS,
498 EM28XX_NUM_BUFS, dev->max_pkt_size,
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300499 em28xx_isoc_copy);
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300500 if (rc < 0)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300501 goto fail;
502 }
503
504 buf->vb.state = VIDEOBUF_PREPARED;
505 return 0;
506
507fail:
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300508 free_buffer(vq, buf);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300509 return rc;
510}
511
512static void
513buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
514{
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300515 struct em28xx_buffer *buf = container_of(vb,
516 struct em28xx_buffer,
517 vb);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300518 struct em28xx_fh *fh = vq->priv_data;
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300519 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300520 struct em28xx_dmaqueue *vidq = &dev->vidq;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300521
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300522 buf->vb.state = VIDEOBUF_QUEUED;
523 list_add_tail(&buf->vb.queue, &vidq->active);
524
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300525}
526
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300527static void buffer_release(struct videobuf_queue *vq,
528 struct videobuf_buffer *vb)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300529{
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300530 struct em28xx_buffer *buf = container_of(vb,
531 struct em28xx_buffer,
532 vb);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300533 struct em28xx_fh *fh = vq->priv_data;
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300534 struct em28xx *dev = (struct em28xx *)fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300535
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300536 em28xx_isocdbg("em28xx: called buffer_release\n");
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300537
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300538 free_buffer(vq, buf);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300539}
540
541static struct videobuf_queue_ops em28xx_video_qops = {
542 .buf_setup = buffer_setup,
543 .buf_prepare = buffer_prepare,
544 .buf_queue = buffer_queue,
545 .buf_release = buffer_release,
546};
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800547
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300548/********************* v4l2 interface **************************************/
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800549
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800550static void video_mux(struct em28xx *dev, int index)
551{
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800552 dev->ctl_input = index;
553 dev->ctl_ainput = INPUT(index)->amux;
Mauro Carvalho Chehab35ae6f02008-11-20 12:40:51 -0300554 dev->ctl_aoutput = INPUT(index)->aout;
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800555
Mauro Carvalho Chehabe879b8e2008-11-20 13:39:39 -0300556 if (!dev->ctl_aoutput)
557 dev->ctl_aoutput = EM28XX_AOUT_MASTER;
558
Hans Verkuil5325b422009-04-02 11:26:22 -0300559 v4l2_device_call_all(&dev->v4l2_dev, 0, video, s_routing,
560 INPUT(index)->vmux, 0, 0);
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800561
Mauro Carvalho Chehab505b6d02008-11-25 09:39:50 -0300562 if (dev->board.has_msp34xx) {
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300563 if (dev->i2s_speed) {
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -0300564 v4l2_device_call_all(&dev->v4l2_dev, 0, audio,
565 s_i2s_clock_freq, dev->i2s_speed);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300566 }
Hans Verkuil2474ed42006-03-19 12:35:57 -0300567 /* Note: this is msp3400 specific */
Hans Verkuil5325b422009-04-02 11:26:22 -0300568 v4l2_device_call_all(&dev->v4l2_dev, 0, audio, s_routing,
569 dev->ctl_ainput, MSP_OUTPUT(MSP_SC_IN_DSP_SCART1), 0);
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800570 }
Mauro Carvalho Chehab539c96d2008-01-05 09:53:54 -0300571
Vitaly Wool2bd1d9e2009-03-04 08:27:52 -0300572 if (dev->board.adecoder != EM28XX_NOADECODER) {
Hans Verkuil5325b422009-04-02 11:26:22 -0300573 v4l2_device_call_all(&dev->v4l2_dev, 0, audio, s_routing,
574 dev->ctl_ainput, dev->ctl_aoutput, 0);
Vitaly Wool2bd1d9e2009-03-04 08:27:52 -0300575 }
576
Mauro Carvalho Chehab00b87302008-02-06 18:34:13 -0300577 em28xx_audio_analog_set(dev);
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800578}
579
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -0300580/* Usage lock check functions */
581static int res_get(struct em28xx_fh *fh)
582{
583 struct em28xx *dev = fh->dev;
584 int rc = 0;
585
586 /* This instance already has stream_on */
587 if (fh->stream_on)
588 return rc;
589
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -0300590 if (dev->stream_on)
Mauro Carvalho Chehab29b59412008-12-16 20:19:24 -0300591 return -EBUSY;
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -0300592
Mauro Carvalho Chehabe74153d2008-04-13 14:55:38 -0300593 dev->stream_on = 1;
594 fh->stream_on = 1;
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -0300595 return rc;
596}
597
598static int res_check(struct em28xx_fh *fh)
599{
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300600 return fh->stream_on;
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -0300601}
602
603static void res_free(struct em28xx_fh *fh)
604{
605 struct em28xx *dev = fh->dev;
606
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -0300607 fh->stream_on = 0;
608 dev->stream_on = 0;
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -0300609}
610
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800611/*
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300612 * em28xx_get_ctrl()
613 * return the current saturation, brightness or contrast, mute state
614 */
615static int em28xx_get_ctrl(struct em28xx *dev, struct v4l2_control *ctrl)
616{
617 switch (ctrl->id) {
618 case V4L2_CID_AUDIO_MUTE:
619 ctrl->value = dev->mute;
620 return 0;
621 case V4L2_CID_AUDIO_VOLUME:
622 ctrl->value = dev->volume;
623 return 0;
624 default:
625 return -EINVAL;
626 }
627}
628
629/*
630 * em28xx_set_ctrl()
631 * mute or set new saturation, brightness or contrast
632 */
633static int em28xx_set_ctrl(struct em28xx *dev, const struct v4l2_control *ctrl)
634{
635 switch (ctrl->id) {
636 case V4L2_CID_AUDIO_MUTE:
637 if (ctrl->value != dev->mute) {
638 dev->mute = ctrl->value;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300639 return em28xx_audio_analog_set(dev);
640 }
641 return 0;
642 case V4L2_CID_AUDIO_VOLUME:
643 dev->volume = ctrl->value;
644 return em28xx_audio_analog_set(dev);
645 default:
646 return -EINVAL;
647 }
648}
649
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300650static int check_dev(struct em28xx *dev)
651{
652 if (dev->state & DEV_DISCONNECTED) {
653 em28xx_errdev("v4l2 ioctl: device not present\n");
654 return -ENODEV;
655 }
656
657 if (dev->state & DEV_MISCONFIGURED) {
658 em28xx_errdev("v4l2 ioctl: device is misconfigured; "
659 "close and open it again\n");
660 return -EIO;
661 }
662 return 0;
663}
664
665static void get_scale(struct em28xx *dev,
666 unsigned int width, unsigned int height,
667 unsigned int *hscale, unsigned int *vscale)
668{
Mauro Carvalho Chehab55699962009-07-13 20:15:02 -0300669 unsigned int maxw = norm_maxw(dev);
670 unsigned int maxh = norm_maxh(dev);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300671
672 *hscale = (((unsigned long)maxw) << 12) / width - 4096L;
673 if (*hscale >= 0x4000)
674 *hscale = 0x3fff;
675
676 *vscale = (((unsigned long)maxh) << 12) / height - 4096L;
677 if (*vscale >= 0x4000)
678 *vscale = 0x3fff;
679}
680
681/* ------------------------------------------------------------------
682 IOCTL vidioc handling
683 ------------------------------------------------------------------*/
684
Hans Verkuil78b526a2008-05-28 12:16:41 -0300685static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300686 struct v4l2_format *f)
687{
688 struct em28xx_fh *fh = priv;
689 struct em28xx *dev = fh->dev;
690
691 mutex_lock(&dev->lock);
692
693 f->fmt.pix.width = dev->width;
694 f->fmt.pix.height = dev->height;
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -0300695 f->fmt.pix.pixelformat = dev->format->fourcc;
696 f->fmt.pix.bytesperline = (dev->width * dev->format->depth + 7) >> 3;
Mauro Carvalho Chehab44dc7332008-04-13 15:11:08 -0300697 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline * dev->height;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300698 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
699
700 /* FIXME: TOP? NONE? BOTTOM? ALTENATE? */
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -0300701 if (dev->progressive)
702 f->fmt.pix.field = V4L2_FIELD_NONE;
703 else
704 f->fmt.pix.field = dev->interlaced ?
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300705 V4L2_FIELD_INTERLACED : V4L2_FIELD_TOP;
706
707 mutex_unlock(&dev->lock);
708 return 0;
709}
710
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -0300711static struct em28xx_fmt *format_by_fourcc(unsigned int fourcc)
712{
713 unsigned int i;
714
715 for (i = 0; i < ARRAY_SIZE(format); i++)
716 if (format[i].fourcc == fourcc)
717 return &format[i];
718
719 return NULL;
720}
721
Hans Verkuil78b526a2008-05-28 12:16:41 -0300722static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300723 struct v4l2_format *f)
724{
725 struct em28xx_fh *fh = priv;
726 struct em28xx *dev = fh->dev;
Trent Piephoccb83402009-05-30 21:45:46 -0300727 unsigned int width = f->fmt.pix.width;
728 unsigned int height = f->fmt.pix.height;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300729 unsigned int maxw = norm_maxw(dev);
730 unsigned int maxh = norm_maxh(dev);
731 unsigned int hscale, vscale;
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -0300732 struct em28xx_fmt *fmt;
733
734 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
735 if (!fmt) {
736 em28xx_videodbg("Fourcc format (%08x) invalid.\n",
737 f->fmt.pix.pixelformat);
738 return -EINVAL;
739 }
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300740
Mauro Carvalho Chehab55699962009-07-13 20:15:02 -0300741 if (dev->board.is_em2800) {
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300742 /* the em2800 can only scale down to 50% */
Trent Piephoccb83402009-05-30 21:45:46 -0300743 height = height > (3 * maxh / 4) ? maxh : maxh / 2;
744 width = width > (3 * maxw / 4) ? maxw : maxw / 2;
745 /* According to empiatech support the MaxPacketSize is too small
746 * to support framesizes larger than 640x480 @ 30 fps or 640x576
747 * @ 25 fps. As this would cut of a part of the image we prefer
748 * 360x576 or 360x480 for now */
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300749 if (width == maxw && height == maxh)
750 width /= 2;
Trent Piephoccb83402009-05-30 21:45:46 -0300751 } else {
752 /* width must even because of the YUYV format
753 height must be even because of interlacing */
754 v4l_bound_align_image(&width, 48, maxw, 1, &height, 32, maxh, 1, 0);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300755 }
756
757 get_scale(dev, width, height, &hscale, &vscale);
758
759 width = (((unsigned long)maxw) << 12) / (hscale + 4096L);
760 height = (((unsigned long)maxh) << 12) / (vscale + 4096L);
761
762 f->fmt.pix.width = width;
763 f->fmt.pix.height = height;
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -0300764 f->fmt.pix.pixelformat = fmt->fourcc;
765 f->fmt.pix.bytesperline = (dev->width * fmt->depth + 7) >> 3;
766 f->fmt.pix.sizeimage = f->fmt.pix.bytesperline * height;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300767 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -0300768 if (dev->progressive)
769 f->fmt.pix.field = V4L2_FIELD_NONE;
770 else
771 f->fmt.pix.field = dev->interlaced ?
772 V4L2_FIELD_INTERLACED : V4L2_FIELD_TOP;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300773
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300774 return 0;
775}
776
Mauro Carvalho Chehabed5f1432009-07-02 17:34:04 -0300777static int em28xx_set_video_format(struct em28xx *dev, unsigned int fourcc,
778 unsigned width, unsigned height)
779{
780 struct em28xx_fmt *fmt;
781
Mauro Carvalho Chehabed5f1432009-07-02 17:34:04 -0300782 fmt = format_by_fourcc(fourcc);
783 if (!fmt)
784 return -EINVAL;
785
786 dev->format = fmt;
787 dev->width = width;
788 dev->height = height;
789
790 /* set new image size */
791 get_scale(dev, dev->width, dev->height, &dev->hscale, &dev->vscale);
792
793 em28xx_set_alternate(dev);
794 em28xx_resolution_set(dev);
795
796 return 0;
797}
798
Hans Verkuil78b526a2008-05-28 12:16:41 -0300799static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300800 struct v4l2_format *f)
801{
802 struct em28xx_fh *fh = priv;
803 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300804 int rc;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300805
806 rc = check_dev(dev);
807 if (rc < 0)
808 return rc;
809
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300810 mutex_lock(&dev->lock);
811
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -0300812 vidioc_try_fmt_vid_cap(file, priv, f);
813
Brandon Philips05612972008-04-13 14:57:01 -0300814 if (videobuf_queue_is_busy(&fh->vb_vidq)) {
815 em28xx_errdev("%s queue busy\n", __func__);
816 rc = -EBUSY;
817 goto out;
818 }
819
Aidan Thornton0ea13e62008-04-13 15:02:24 -0300820 if (dev->stream_on && !fh->stream_on) {
821 em28xx_errdev("%s device in use by another fh\n", __func__);
822 rc = -EBUSY;
823 goto out;
824 }
825
Mauro Carvalho Chehabed5f1432009-07-02 17:34:04 -0300826 rc = em28xx_set_video_format(dev, f->fmt.pix.pixelformat,
827 f->fmt.pix.width, f->fmt.pix.height);
Brandon Philips05612972008-04-13 14:57:01 -0300828
829out:
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300830 mutex_unlock(&dev->lock);
Brandon Philips05612972008-04-13 14:57:01 -0300831 return rc;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300832}
833
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300834static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *norm)
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300835{
836 struct em28xx_fh *fh = priv;
837 struct em28xx *dev = fh->dev;
838 struct v4l2_format f;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300839 int rc;
840
841 rc = check_dev(dev);
842 if (rc < 0)
843 return rc;
844
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300845 mutex_lock(&dev->lock);
Mauro Carvalho Chehab7d497f82007-11-11 14:15:34 -0300846 dev->norm = *norm;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300847
848 /* Adjusts width/height, if needed */
849 f.fmt.pix.width = dev->width;
850 f.fmt.pix.height = dev->height;
Hans Verkuil78b526a2008-05-28 12:16:41 -0300851 vidioc_try_fmt_vid_cap(file, priv, &f);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300852
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300853 /* set new image size */
854 dev->width = f.fmt.pix.width;
855 dev->height = f.fmt.pix.height;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300856 get_scale(dev, dev->width, dev->height, &dev->hscale, &dev->vscale);
857
858 em28xx_resolution_set(dev);
Hans Verkuilf41737e2009-04-01 03:52:39 -0300859 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_std, dev->norm);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300860
861 mutex_unlock(&dev->lock);
862 return 0;
863}
864
Mauro Carvalho Chehabd96ecda2009-08-06 21:53:59 -0300865static int vidioc_g_parm(struct file *file, void *priv,
866 struct v4l2_streamparm *p)
867{
868 struct em28xx_fh *fh = priv;
869 struct em28xx *dev = fh->dev;
870 int rc = 0;
871
872 if (p->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
873 return -EINVAL;
874
875 if (dev->board.is_webcam)
876 rc = v4l2_device_call_until_err(&dev->v4l2_dev, 0,
877 video, g_parm, p);
878 else
879 v4l2_video_std_frame_period(dev->norm,
880 &p->parm.capture.timeperframe);
881
882 return rc;
883}
884
885static int vidioc_s_parm(struct file *file, void *priv,
886 struct v4l2_streamparm *p)
887{
888 struct em28xx_fh *fh = priv;
889 struct em28xx *dev = fh->dev;
890
891 if (!dev->board.is_webcam)
892 return -EINVAL;
893
894 if (p->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
895 return -EINVAL;
896
897 return v4l2_device_call_until_err(&dev->v4l2_dev, 0, video, s_parm, p);
898}
899
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300900static const char *iname[] = {
901 [EM28XX_VMUX_COMPOSITE1] = "Composite1",
902 [EM28XX_VMUX_COMPOSITE2] = "Composite2",
903 [EM28XX_VMUX_COMPOSITE3] = "Composite3",
904 [EM28XX_VMUX_COMPOSITE4] = "Composite4",
905 [EM28XX_VMUX_SVIDEO] = "S-Video",
906 [EM28XX_VMUX_TELEVISION] = "Television",
907 [EM28XX_VMUX_CABLE] = "Cable TV",
908 [EM28XX_VMUX_DVB] = "DVB",
909 [EM28XX_VMUX_DEBUG] = "for debug only",
910};
911
912static int vidioc_enum_input(struct file *file, void *priv,
913 struct v4l2_input *i)
914{
915 struct em28xx_fh *fh = priv;
916 struct em28xx *dev = fh->dev;
917 unsigned int n;
918
919 n = i->index;
920 if (n >= MAX_EM28XX_INPUT)
921 return -EINVAL;
922 if (0 == INPUT(n)->type)
923 return -EINVAL;
924
925 i->index = n;
926 i->type = V4L2_INPUT_TYPE_CAMERA;
927
928 strcpy(i->name, iname[INPUT(n)->type]);
929
930 if ((EM28XX_VMUX_TELEVISION == INPUT(n)->type) ||
931 (EM28XX_VMUX_CABLE == INPUT(n)->type))
932 i->type = V4L2_INPUT_TYPE_TUNER;
933
Mauro Carvalho Chehab7d497f82007-11-11 14:15:34 -0300934 i->std = dev->vdev->tvnorms;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300935
936 return 0;
937}
938
939static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
940{
941 struct em28xx_fh *fh = priv;
942 struct em28xx *dev = fh->dev;
943
944 *i = dev->ctl_input;
945
946 return 0;
947}
948
949static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
950{
951 struct em28xx_fh *fh = priv;
952 struct em28xx *dev = fh->dev;
953 int rc;
954
955 rc = check_dev(dev);
956 if (rc < 0)
957 return rc;
958
959 if (i >= MAX_EM28XX_INPUT)
960 return -EINVAL;
961 if (0 == INPUT(i)->type)
962 return -EINVAL;
963
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -0300964 dev->ctl_input = i;
965
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300966 mutex_lock(&dev->lock);
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -0300967 video_mux(dev, dev->ctl_input);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300968 mutex_unlock(&dev->lock);
969 return 0;
970}
971
972static int vidioc_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
973{
974 struct em28xx_fh *fh = priv;
975 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300976
Mauro Carvalho Chehab35ae6f02008-11-20 12:40:51 -0300977 switch (a->index) {
978 case EM28XX_AMUX_VIDEO:
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300979 strcpy(a->name, "Television");
Mauro Carvalho Chehab35ae6f02008-11-20 12:40:51 -0300980 break;
981 case EM28XX_AMUX_LINE_IN:
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300982 strcpy(a->name, "Line In");
Mauro Carvalho Chehab35ae6f02008-11-20 12:40:51 -0300983 break;
984 case EM28XX_AMUX_VIDEO2:
985 strcpy(a->name, "Television alt");
986 break;
987 case EM28XX_AMUX_PHONE:
988 strcpy(a->name, "Phone");
989 break;
990 case EM28XX_AMUX_MIC:
991 strcpy(a->name, "Mic");
992 break;
993 case EM28XX_AMUX_CD:
994 strcpy(a->name, "CD");
995 break;
996 case EM28XX_AMUX_AUX:
997 strcpy(a->name, "Aux");
998 break;
999 case EM28XX_AMUX_PCM_OUT:
1000 strcpy(a->name, "PCM");
1001 break;
1002 default:
1003 return -EINVAL;
1004 }
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -03001005
Mauro Carvalho Chehab35ae6f02008-11-20 12:40:51 -03001006 a->index = dev->ctl_ainput;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001007 a->capability = V4L2_AUDCAP_STEREO;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001008
1009 return 0;
1010}
1011
1012static int vidioc_s_audio(struct file *file, void *priv, struct v4l2_audio *a)
1013{
1014 struct em28xx_fh *fh = priv;
1015 struct em28xx *dev = fh->dev;
1016
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03001017
1018 if (a->index >= MAX_EM28XX_INPUT)
1019 return -EINVAL;
1020 if (0 == INPUT(a->index)->type)
1021 return -EINVAL;
1022
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001023 mutex_lock(&dev->lock);
1024
Mauro Carvalho Chehab35ae6f02008-11-20 12:40:51 -03001025 dev->ctl_ainput = INPUT(a->index)->amux;
1026 dev->ctl_aoutput = INPUT(a->index)->aout;
Mauro Carvalho Chehabe879b8e2008-11-20 13:39:39 -03001027
1028 if (!dev->ctl_aoutput)
1029 dev->ctl_aoutput = EM28XX_AOUT_MASTER;
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001030
1031 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001032 return 0;
1033}
1034
1035static int vidioc_queryctrl(struct file *file, void *priv,
1036 struct v4l2_queryctrl *qc)
1037{
1038 struct em28xx_fh *fh = priv;
1039 struct em28xx *dev = fh->dev;
1040 int id = qc->id;
1041 int i;
1042 int rc;
1043
1044 rc = check_dev(dev);
1045 if (rc < 0)
1046 return rc;
1047
1048 memset(qc, 0, sizeof(*qc));
1049
1050 qc->id = id;
1051
Mauro Carvalho Chehab505b6d02008-11-25 09:39:50 -03001052 if (!dev->board.has_msp34xx) {
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001053 for (i = 0; i < ARRAY_SIZE(em28xx_qctrl); i++) {
1054 if (qc->id && qc->id == em28xx_qctrl[i].id) {
1055 memcpy(qc, &(em28xx_qctrl[i]), sizeof(*qc));
1056 return 0;
1057 }
1058 }
1059 }
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001060
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001061 mutex_lock(&dev->lock);
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001062 v4l2_device_call_all(&dev->v4l2_dev, 0, core, queryctrl, qc);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001063 mutex_unlock(&dev->lock);
1064
1065 if (qc->type)
1066 return 0;
1067 else
1068 return -EINVAL;
1069}
1070
1071static int vidioc_g_ctrl(struct file *file, void *priv,
1072 struct v4l2_control *ctrl)
1073{
1074 struct em28xx_fh *fh = priv;
1075 struct em28xx *dev = fh->dev;
1076 int rc;
1077
1078 rc = check_dev(dev);
1079 if (rc < 0)
1080 return rc;
Mauro Carvalho Chehabb6070f02008-12-22 06:20:32 -03001081 rc = 0;
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001082
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001083 mutex_lock(&dev->lock);
1084
Mauro Carvalho Chehabb6070f02008-12-22 06:20:32 -03001085 if (dev->board.has_msp34xx)
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001086 v4l2_device_call_all(&dev->v4l2_dev, 0, core, g_ctrl, ctrl);
Hans Verkuil07f7db42009-01-21 17:06:42 -03001087 else {
Mauro Carvalho Chehabb6070f02008-12-22 06:20:32 -03001088 rc = em28xx_get_ctrl(dev, ctrl);
Hans Verkuil07f7db42009-01-21 17:06:42 -03001089 if (rc < 0) {
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001090 v4l2_device_call_all(&dev->v4l2_dev, 0, core, g_ctrl, ctrl);
Hans Verkuil07f7db42009-01-21 17:06:42 -03001091 rc = 0;
1092 }
1093 }
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001094
1095 mutex_unlock(&dev->lock);
1096 return rc;
1097}
1098
1099static int vidioc_s_ctrl(struct file *file, void *priv,
1100 struct v4l2_control *ctrl)
1101{
1102 struct em28xx_fh *fh = priv;
1103 struct em28xx *dev = fh->dev;
1104 u8 i;
1105 int rc;
1106
1107 rc = check_dev(dev);
1108 if (rc < 0)
1109 return rc;
1110
1111 mutex_lock(&dev->lock);
1112
Mauro Carvalho Chehab505b6d02008-11-25 09:39:50 -03001113 if (dev->board.has_msp34xx)
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001114 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_ctrl, ctrl);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001115 else {
1116 rc = 1;
1117 for (i = 0; i < ARRAY_SIZE(em28xx_qctrl); i++) {
1118 if (ctrl->id == em28xx_qctrl[i].id) {
1119 if (ctrl->value < em28xx_qctrl[i].minimum ||
1120 ctrl->value > em28xx_qctrl[i].maximum) {
1121 rc = -ERANGE;
1122 break;
1123 }
1124
1125 rc = em28xx_set_ctrl(dev, ctrl);
1126 break;
1127 }
1128 }
1129 }
1130
1131 /* Control not found - try to send it to the attached devices */
1132 if (rc == 1) {
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001133 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_ctrl, ctrl);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001134 rc = 0;
1135 }
1136
1137 mutex_unlock(&dev->lock);
1138 return rc;
1139}
1140
1141static int vidioc_g_tuner(struct file *file, void *priv,
1142 struct v4l2_tuner *t)
1143{
1144 struct em28xx_fh *fh = priv;
1145 struct em28xx *dev = fh->dev;
1146 int rc;
1147
1148 rc = check_dev(dev);
1149 if (rc < 0)
1150 return rc;
1151
1152 if (0 != t->index)
1153 return -EINVAL;
1154
1155 strcpy(t->name, "Tuner");
1156
1157 mutex_lock(&dev->lock);
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001158 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_tuner, t);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001159 mutex_unlock(&dev->lock);
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001160
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001161 return 0;
1162}
1163
1164static int vidioc_s_tuner(struct file *file, void *priv,
1165 struct v4l2_tuner *t)
1166{
1167 struct em28xx_fh *fh = priv;
1168 struct em28xx *dev = fh->dev;
1169 int rc;
1170
1171 rc = check_dev(dev);
1172 if (rc < 0)
1173 return rc;
1174
1175 if (0 != t->index)
1176 return -EINVAL;
1177
1178 mutex_lock(&dev->lock);
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001179 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_tuner, t);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001180 mutex_unlock(&dev->lock);
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001181
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001182 return 0;
1183}
1184
1185static int vidioc_g_frequency(struct file *file, void *priv,
1186 struct v4l2_frequency *f)
1187{
1188 struct em28xx_fh *fh = priv;
1189 struct em28xx *dev = fh->dev;
1190
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001191 mutex_lock(&dev->lock);
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001192 f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001193 f->frequency = dev->ctl_freq;
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001194 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001195
1196 return 0;
1197}
1198
1199static int vidioc_s_frequency(struct file *file, void *priv,
1200 struct v4l2_frequency *f)
1201{
1202 struct em28xx_fh *fh = priv;
1203 struct em28xx *dev = fh->dev;
1204 int rc;
1205
1206 rc = check_dev(dev);
1207 if (rc < 0)
1208 return rc;
1209
1210 if (0 != f->tuner)
1211 return -EINVAL;
1212
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001213 if (unlikely(0 == fh->radio && f->type != V4L2_TUNER_ANALOG_TV))
1214 return -EINVAL;
1215 if (unlikely(1 == fh->radio && f->type != V4L2_TUNER_RADIO))
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001216 return -EINVAL;
1217
1218 mutex_lock(&dev->lock);
1219
1220 dev->ctl_freq = f->frequency;
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001221 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_frequency, f);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001222
1223 mutex_unlock(&dev->lock);
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001224
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001225 return 0;
1226}
1227
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001228#ifdef CONFIG_VIDEO_ADV_DEBUG
1229static int em28xx_reg_len(int reg)
1230{
1231 switch (reg) {
Mauro Carvalho Chehab41facaa2008-04-17 21:44:58 -03001232 case EM28XX_R40_AC97LSB:
1233 case EM28XX_R30_HSCALELOW:
1234 case EM28XX_R32_VSCALELOW:
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001235 return 2;
1236 default:
1237 return 1;
1238 }
1239}
1240
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001241static int vidioc_g_chip_ident(struct file *file, void *priv,
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001242 struct v4l2_dbg_chip_ident *chip)
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001243{
1244 struct em28xx_fh *fh = priv;
1245 struct em28xx *dev = fh->dev;
1246
1247 chip->ident = V4L2_IDENT_NONE;
1248 chip->revision = 0;
1249
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001250 v4l2_device_call_all(&dev->v4l2_dev, 0, core, g_chip_ident, chip);
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001251
1252 return 0;
1253}
1254
1255
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001256static int vidioc_g_register(struct file *file, void *priv,
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001257 struct v4l2_dbg_register *reg)
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001258{
1259 struct em28xx_fh *fh = priv;
1260 struct em28xx *dev = fh->dev;
1261 int ret;
1262
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001263 switch (reg->match.type) {
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001264 case V4L2_CHIP_MATCH_AC97:
Mauro Carvalho Chehab531c98e2008-12-22 13:18:27 -03001265 mutex_lock(&dev->lock);
1266 ret = em28xx_read_ac97(dev, reg->reg);
1267 mutex_unlock(&dev->lock);
1268 if (ret < 0)
1269 return ret;
1270
1271 reg->val = ret;
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001272 reg->size = 1;
Mauro Carvalho Chehab531c98e2008-12-22 13:18:27 -03001273 return 0;
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001274 case V4L2_CHIP_MATCH_I2C_DRIVER:
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001275 v4l2_device_call_all(&dev->v4l2_dev, 0, core, g_register, reg);
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001276 return 0;
1277 case V4L2_CHIP_MATCH_I2C_ADDR:
1278 /* Not supported yet */
1279 return -EINVAL;
1280 default:
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001281 if (!v4l2_chip_match_host(&reg->match))
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001282 return -EINVAL;
Mauro Carvalho Chehab531c98e2008-12-22 13:18:27 -03001283 }
1284
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001285 /* Match host */
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001286 reg->size = em28xx_reg_len(reg->reg);
1287 if (reg->size == 1) {
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001288 mutex_lock(&dev->lock);
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001289 ret = em28xx_read_reg(dev, reg->reg);
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001290 mutex_unlock(&dev->lock);
1291
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001292 if (ret < 0)
1293 return ret;
1294
1295 reg->val = ret;
1296 } else {
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001297 __le16 val = 0;
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001298 mutex_lock(&dev->lock);
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001299 ret = em28xx_read_reg_req_len(dev, USB_REQ_GET_STATUS,
1300 reg->reg, (char *)&val, 2);
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001301 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001302 if (ret < 0)
1303 return ret;
1304
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001305 reg->val = le16_to_cpu(val);
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001306 }
1307
1308 return 0;
1309}
1310
1311static int vidioc_s_register(struct file *file, void *priv,
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001312 struct v4l2_dbg_register *reg)
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001313{
1314 struct em28xx_fh *fh = priv;
1315 struct em28xx *dev = fh->dev;
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001316 __le16 buf;
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001317 int rc;
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001318
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001319 switch (reg->match.type) {
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001320 case V4L2_CHIP_MATCH_AC97:
Mauro Carvalho Chehab531c98e2008-12-22 13:18:27 -03001321 mutex_lock(&dev->lock);
1322 rc = em28xx_write_ac97(dev, reg->reg, reg->val);
1323 mutex_unlock(&dev->lock);
1324
1325 return rc;
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001326 case V4L2_CHIP_MATCH_I2C_DRIVER:
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001327 v4l2_device_call_all(&dev->v4l2_dev, 0, core, s_register, reg);
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001328 return 0;
1329 case V4L2_CHIP_MATCH_I2C_ADDR:
1330 /* Not supported yet */
1331 return -EINVAL;
1332 default:
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001333 if (!v4l2_chip_match_host(&reg->match))
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001334 return -EINVAL;
Mauro Carvalho Chehab531c98e2008-12-22 13:18:27 -03001335 }
1336
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001337 /* Match host */
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001338 buf = cpu_to_le16(reg->val);
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001339
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001340 mutex_lock(&dev->lock);
1341 rc = em28xx_write_regs(dev, reg->reg, (char *)&buf,
1342 em28xx_reg_len(reg->reg));
1343 mutex_unlock(&dev->lock);
1344
1345 return rc;
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001346}
1347#endif
1348
1349
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001350static int vidioc_cropcap(struct file *file, void *priv,
1351 struct v4l2_cropcap *cc)
1352{
1353 struct em28xx_fh *fh = priv;
1354 struct em28xx *dev = fh->dev;
1355
1356 if (cc->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1357 return -EINVAL;
1358
1359 cc->bounds.left = 0;
1360 cc->bounds.top = 0;
1361 cc->bounds.width = dev->width;
1362 cc->bounds.height = dev->height;
1363 cc->defrect = cc->bounds;
1364 cc->pixelaspect.numerator = 54; /* 4:3 FIXME: remove magic numbers */
1365 cc->pixelaspect.denominator = 59;
1366
1367 return 0;
1368}
1369
1370static int vidioc_streamon(struct file *file, void *priv,
1371 enum v4l2_buf_type type)
1372{
1373 struct em28xx_fh *fh = priv;
1374 struct em28xx *dev = fh->dev;
1375 int rc;
1376
1377 rc = check_dev(dev);
1378 if (rc < 0)
1379 return rc;
1380
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001381
Mauro Carvalho Chehab29b59412008-12-16 20:19:24 -03001382 mutex_lock(&dev->lock);
1383 rc = res_get(fh);
Mauro Carvalho Chehab29b59412008-12-16 20:19:24 -03001384
Mauro Carvalho Chehab5db0b5e2008-12-22 06:14:31 -03001385 if (likely(rc >= 0))
1386 rc = videobuf_streamon(&fh->vb_vidq);
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001387
1388 mutex_unlock(&dev->lock);
1389
1390 return rc;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001391}
1392
1393static int vidioc_streamoff(struct file *file, void *priv,
1394 enum v4l2_buf_type type)
1395{
1396 struct em28xx_fh *fh = priv;
1397 struct em28xx *dev = fh->dev;
1398 int rc;
1399
1400 rc = check_dev(dev);
1401 if (rc < 0)
1402 return rc;
1403
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001404 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1405 return -EINVAL;
1406 if (type != fh->type)
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001407 return -EINVAL;
1408
Mauro Carvalho Chehab78313642008-12-16 20:00:49 -03001409 mutex_lock(&dev->lock);
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001410
1411 videobuf_streamoff(&fh->vb_vidq);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001412 res_free(fh);
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001413
Mauro Carvalho Chehab78313642008-12-16 20:00:49 -03001414 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001415
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001416 return 0;
1417}
1418
1419static int vidioc_querycap(struct file *file, void *priv,
1420 struct v4l2_capability *cap)
1421{
1422 struct em28xx_fh *fh = priv;
1423 struct em28xx *dev = fh->dev;
1424
1425 strlcpy(cap->driver, "em28xx", sizeof(cap->driver));
1426 strlcpy(cap->card, em28xx_boards[dev->model].name, sizeof(cap->card));
Thierry MERLEcb977162009-01-20 18:01:33 -03001427 usb_make_path(dev->udev, cap->bus_info, sizeof(cap->bus_info));
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001428
1429 cap->version = EM28XX_VERSION_CODE;
1430
1431 cap->capabilities =
1432 V4L2_CAP_SLICED_VBI_CAPTURE |
1433 V4L2_CAP_VIDEO_CAPTURE |
1434 V4L2_CAP_AUDIO |
1435 V4L2_CAP_READWRITE | V4L2_CAP_STREAMING;
1436
Mauro Carvalho Chehabed086312008-01-24 06:59:20 -03001437 if (dev->tuner_type != TUNER_ABSENT)
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001438 cap->capabilities |= V4L2_CAP_TUNER;
1439
1440 return 0;
1441}
1442
Hans Verkuil78b526a2008-05-28 12:16:41 -03001443static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -03001444 struct v4l2_fmtdesc *f)
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001445{
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -03001446 if (unlikely(f->index >= ARRAY_SIZE(format)))
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001447 return -EINVAL;
1448
Mauro Carvalho Chehabbddcf632008-12-20 09:06:37 -03001449 strlcpy(f->description, format[f->index].name, sizeof(f->description));
1450 f->pixelformat = format[f->index].fourcc;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001451
1452 return 0;
1453}
1454
1455/* Sliced VBI ioctls */
Hans Verkuil78b526a2008-05-28 12:16:41 -03001456static int vidioc_g_fmt_sliced_vbi_cap(struct file *file, void *priv,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001457 struct v4l2_format *f)
1458{
1459 struct em28xx_fh *fh = priv;
1460 struct em28xx *dev = fh->dev;
1461 int rc;
1462
1463 rc = check_dev(dev);
1464 if (rc < 0)
1465 return rc;
1466
1467 mutex_lock(&dev->lock);
1468
1469 f->fmt.sliced.service_set = 0;
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001470 v4l2_device_call_all(&dev->v4l2_dev, 0, video, g_fmt, f);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001471
1472 if (f->fmt.sliced.service_set == 0)
1473 rc = -EINVAL;
1474
1475 mutex_unlock(&dev->lock);
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001476
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001477 return rc;
1478}
1479
Hans Verkuil78b526a2008-05-28 12:16:41 -03001480static int vidioc_try_set_sliced_vbi_cap(struct file *file, void *priv,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001481 struct v4l2_format *f)
1482{
1483 struct em28xx_fh *fh = priv;
1484 struct em28xx *dev = fh->dev;
1485 int rc;
1486
1487 rc = check_dev(dev);
1488 if (rc < 0)
1489 return rc;
1490
1491 mutex_lock(&dev->lock);
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001492 v4l2_device_call_all(&dev->v4l2_dev, 0, video, g_fmt, f);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001493 mutex_unlock(&dev->lock);
1494
1495 if (f->fmt.sliced.service_set == 0)
1496 return -EINVAL;
1497
1498 return 0;
1499}
1500
1501
1502static int vidioc_reqbufs(struct file *file, void *priv,
1503 struct v4l2_requestbuffers *rb)
1504{
1505 struct em28xx_fh *fh = priv;
1506 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001507 int rc;
1508
1509 rc = check_dev(dev);
1510 if (rc < 0)
1511 return rc;
1512
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -03001513 return videobuf_reqbufs(&fh->vb_vidq, rb);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001514}
1515
1516static int vidioc_querybuf(struct file *file, void *priv,
1517 struct v4l2_buffer *b)
1518{
1519 struct em28xx_fh *fh = priv;
1520 struct em28xx *dev = fh->dev;
1521 int rc;
1522
1523 rc = check_dev(dev);
1524 if (rc < 0)
1525 return rc;
1526
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -03001527 return videobuf_querybuf(&fh->vb_vidq, b);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001528}
1529
1530static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
1531{
1532 struct em28xx_fh *fh = priv;
1533 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001534 int rc;
1535
1536 rc = check_dev(dev);
1537 if (rc < 0)
1538 return rc;
1539
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -03001540 return videobuf_qbuf(&fh->vb_vidq, b);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001541}
1542
1543static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
1544{
1545 struct em28xx_fh *fh = priv;
1546 struct em28xx *dev = fh->dev;
1547 int rc;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001548
1549 rc = check_dev(dev);
1550 if (rc < 0)
1551 return rc;
1552
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -03001553 return videobuf_dqbuf(&fh->vb_vidq, b, file->f_flags & O_NONBLOCK);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001554}
1555
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001556#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -03001557static int vidiocgmbuf(struct file *file, void *priv, struct video_mbuf *mbuf)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001558{
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -03001559 struct em28xx_fh *fh = priv;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001560
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -03001561 return videobuf_cgmbuf(&fh->vb_vidq, mbuf, 8);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001562}
1563#endif
1564
1565
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001566/* ----------------------------------------------------------- */
1567/* RADIO ESPECIFIC IOCTLS */
1568/* ----------------------------------------------------------- */
1569
1570static int radio_querycap(struct file *file, void *priv,
1571 struct v4l2_capability *cap)
1572{
1573 struct em28xx *dev = ((struct em28xx_fh *)priv)->dev;
1574
1575 strlcpy(cap->driver, "em28xx", sizeof(cap->driver));
1576 strlcpy(cap->card, em28xx_boards[dev->model].name, sizeof(cap->card));
Thierry MERLEcb977162009-01-20 18:01:33 -03001577 usb_make_path(dev->udev, cap->bus_info, sizeof(cap->bus_info));
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001578
1579 cap->version = EM28XX_VERSION_CODE;
1580 cap->capabilities = V4L2_CAP_TUNER;
1581 return 0;
1582}
1583
1584static int radio_g_tuner(struct file *file, void *priv,
1585 struct v4l2_tuner *t)
1586{
1587 struct em28xx *dev = ((struct em28xx_fh *)priv)->dev;
1588
1589 if (unlikely(t->index > 0))
1590 return -EINVAL;
1591
1592 strcpy(t->name, "Radio");
1593 t->type = V4L2_TUNER_RADIO;
1594
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001595 mutex_lock(&dev->lock);
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001596 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, g_tuner, t);
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001597 mutex_unlock(&dev->lock);
1598
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001599 return 0;
1600}
1601
1602static int radio_enum_input(struct file *file, void *priv,
1603 struct v4l2_input *i)
1604{
1605 if (i->index != 0)
1606 return -EINVAL;
1607 strcpy(i->name, "Radio");
1608 i->type = V4L2_INPUT_TYPE_TUNER;
1609
1610 return 0;
1611}
1612
1613static int radio_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
1614{
1615 if (unlikely(a->index))
1616 return -EINVAL;
1617
1618 strcpy(a->name, "Radio");
1619 return 0;
1620}
1621
1622static int radio_s_tuner(struct file *file, void *priv,
1623 struct v4l2_tuner *t)
1624{
1625 struct em28xx *dev = ((struct em28xx_fh *)priv)->dev;
1626
1627 if (0 != t->index)
1628 return -EINVAL;
1629
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001630 mutex_lock(&dev->lock);
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001631 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_tuner, t);
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001632 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001633
1634 return 0;
1635}
1636
1637static int radio_s_audio(struct file *file, void *fh,
1638 struct v4l2_audio *a)
1639{
1640 return 0;
1641}
1642
1643static int radio_s_input(struct file *file, void *fh, unsigned int i)
1644{
1645 return 0;
1646}
1647
1648static int radio_queryctrl(struct file *file, void *priv,
1649 struct v4l2_queryctrl *qc)
1650{
1651 int i;
1652
1653 if (qc->id < V4L2_CID_BASE ||
1654 qc->id >= V4L2_CID_LASTP1)
1655 return -EINVAL;
1656
1657 for (i = 0; i < ARRAY_SIZE(em28xx_qctrl); i++) {
1658 if (qc->id && qc->id == em28xx_qctrl[i].id) {
1659 memcpy(qc, &(em28xx_qctrl[i]), sizeof(*qc));
1660 return 0;
1661 }
1662 }
1663
1664 return -EINVAL;
1665}
1666
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001667/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001668 * em28xx_v4l2_open()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001669 * inits the device and starts isoc transfer
1670 */
Hans Verkuilbec43662008-12-30 06:58:20 -03001671static int em28xx_v4l2_open(struct file *filp)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001672{
Hans Verkuilbec43662008-12-30 06:58:20 -03001673 int minor = video_devdata(filp)->minor;
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03001674 int errCode = 0, radio;
1675 struct em28xx *dev;
1676 enum v4l2_buf_type fh_type;
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001677 struct em28xx_fh *fh;
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -03001678 enum v4l2_field field;
Markus Rechberger9c755412005-11-08 21:37:52 -08001679
Hans Verkuilbec43662008-12-30 06:58:20 -03001680 dev = em28xx_get_device(minor, &fh_type, &radio);
Mauro Carvalho Chehabefc52a92008-12-16 22:04:56 -03001681
Mauro Carvalho Chehab818a5572008-11-20 10:30:26 -03001682 if (NULL == dev)
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001683 return -ENODEV;
Mauro Carvalho Chehab818a5572008-11-20 10:30:26 -03001684
1685 mutex_lock(&dev->lock);
Markus Rechberger9c755412005-11-08 21:37:52 -08001686
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001687 em28xx_videodbg("open minor=%d type=%s users=%d\n",
Aidan Thorntond7aa8022008-04-13 14:38:47 -03001688 minor, v4l2_type_names[fh_type], dev->users);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001689
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001690
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -03001691 fh = kzalloc(sizeof(struct em28xx_fh), GFP_KERNEL);
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001692 if (!fh) {
1693 em28xx_errdev("em28xx-video.c: Out of memory?!\n");
Mauro Carvalho Chehab818a5572008-11-20 10:30:26 -03001694 mutex_unlock(&dev->lock);
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001695 return -ENOMEM;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001696 }
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001697 fh->dev = dev;
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001698 fh->radio = radio;
Aidan Thorntond7aa8022008-04-13 14:38:47 -03001699 fh->type = fh_type;
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001700 filp->private_data = fh;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001701
Aidan Thorntond7aa8022008-04-13 14:38:47 -03001702 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE && dev->users == 0) {
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -03001703 em28xx_set_mode(dev, EM28XX_ANALOG_MODE);
Mauro Carvalho Chehab3687e1e2008-02-08 15:44:25 -03001704 em28xx_set_alternate(dev);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001705 em28xx_resolution_set(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001706
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -03001707 /* Needed, since GPIO might have disabled power of
1708 some i2c device
1709 */
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03001710 em28xx_wake_i2c(dev);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -03001711
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001712 }
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001713 if (fh->radio) {
1714 em28xx_videodbg("video_open: setting radio device\n");
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03001715 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_radio);
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001716 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001717
1718 dev->users++;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001719
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -03001720 if (dev->progressive)
1721 field = V4L2_FIELD_NONE;
1722 else
1723 field = V4L2_FIELD_INTERLACED;
1724
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001725 videobuf_queue_vmalloc_init(&fh->vb_vidq, &em28xx_video_qops,
Mauro Carvalho Chehabc2a6b542009-08-08 03:14:55 -03001726 NULL, &dev->slock, fh->type, field,
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001727 sizeof(struct em28xx_buffer), fh);
1728
Ingo Molnar3593cab2006-02-07 06:49:14 -02001729 mutex_unlock(&dev->lock);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -03001730
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001731 return errCode;
1732}
1733
1734/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001735 * em28xx_realease_resources()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001736 * unregisters the v4l2,i2c and usb devices
1737 * called when the device gets disconected or at module unload
1738*/
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03001739void em28xx_release_analog_resources(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001740{
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001741
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001742 /*FIXME: I2C IR should be disconnected */
1743
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001744 if (dev->radio_dev) {
1745 if (-1 != dev->radio_dev->minor)
1746 video_unregister_device(dev->radio_dev);
1747 else
1748 video_device_release(dev->radio_dev);
1749 dev->radio_dev = NULL;
1750 }
1751 if (dev->vbi_dev) {
Devin Heitmueller49240442008-11-12 02:05:15 -03001752 em28xx_info("V4L2 device /dev/vbi%d deregistered\n",
1753 dev->vbi_dev->num);
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001754 if (-1 != dev->vbi_dev->minor)
1755 video_unregister_device(dev->vbi_dev);
1756 else
1757 video_device_release(dev->vbi_dev);
1758 dev->vbi_dev = NULL;
1759 }
1760 if (dev->vdev) {
Devin Heitmueller49240442008-11-12 02:05:15 -03001761 em28xx_info("V4L2 device /dev/video%d deregistered\n",
1762 dev->vdev->num);
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001763 if (-1 != dev->vdev->minor)
1764 video_unregister_device(dev->vdev);
1765 else
1766 video_device_release(dev->vdev);
1767 dev->vdev = NULL;
1768 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001769}
1770
1771/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001772 * em28xx_v4l2_close()
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -03001773 * stops streaming and deallocates all resources allocated by the v4l2
1774 * calls and ioctls
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001775 */
Hans Verkuilbec43662008-12-30 06:58:20 -03001776static int em28xx_v4l2_close(struct file *filp)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001777{
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001778 struct em28xx_fh *fh = filp->private_data;
1779 struct em28xx *dev = fh->dev;
1780 int errCode;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001781
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -08001782 em28xx_videodbg("users=%d\n", dev->users);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001783
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -03001784
Mauro Carvalho Chehab78313642008-12-16 20:00:49 -03001785 mutex_lock(&dev->lock);
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -03001786 if (res_check(fh))
1787 res_free(fh);
1788
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001789 if (dev->users == 1) {
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001790 videobuf_stop(&fh->vb_vidq);
1791 videobuf_mmap_free(&fh->vb_vidq);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001792
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001793 /* the device is already disconnect,
1794 free the remaining resources */
1795 if (dev->state & DEV_DISCONNECTED) {
1796 em28xx_release_resources(dev);
1797 mutex_unlock(&dev->lock);
1798 kfree(dev);
1799 return 0;
1800 }
1801
Mauro Carvalho Chehabeb6c9632008-12-05 10:39:12 -03001802 /* Save some power by putting tuner to sleep */
Hans Verkuil7c9fc9d2009-04-01 03:49:59 -03001803 v4l2_device_call_all(&dev->v4l2_dev, 0, tuner, s_standby);
Mauro Carvalho Chehabeb6c9632008-12-05 10:39:12 -03001804
Aidan Thorntond7aa8022008-04-13 14:38:47 -03001805 /* do this before setting alternate! */
1806 em28xx_uninit_isoc(dev);
Mauro Carvalho Chehab2fe3e2e2008-11-27 09:10:40 -03001807 em28xx_set_mode(dev, EM28XX_SUSPEND);
Aidan Thorntond7aa8022008-04-13 14:38:47 -03001808
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001809 /* set alternate 0 */
1810 dev->alt = 0;
1811 em28xx_videodbg("setting alternate 0\n");
1812 errCode = usb_set_interface(dev->udev, 0, 0);
1813 if (errCode < 0) {
1814 em28xx_errdev("cannot change alternate number to "
1815 "0 (error=%i)\n", errCode);
1816 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001817 }
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001818 kfree(fh);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001819 dev->users--;
1820 wake_up_interruptible_nr(&dev->open, 1);
Ingo Molnar3593cab2006-02-07 06:49:14 -02001821 mutex_unlock(&dev->lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001822 return 0;
1823}
1824
1825/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001826 * em28xx_v4l2_read()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001827 * will allocate buffers when called for the first time
1828 */
1829static ssize_t
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -03001830em28xx_v4l2_read(struct file *filp, char __user *buf, size_t count,
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -03001831 loff_t *pos)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001832{
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001833 struct em28xx_fh *fh = filp->private_data;
1834 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001835 int rc;
1836
1837 rc = check_dev(dev);
1838 if (rc < 0)
1839 return rc;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001840
Mauro Carvalho Chehab9e31ced2007-11-11 01:13:49 -03001841 /* FIXME: read() is not prepared to allow changing the video
1842 resolution while streaming. Seems a bug at em28xx_set_fmt
1843 */
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -03001844
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001845 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
Mauro Carvalho Chehab29b59412008-12-16 20:19:24 -03001846 mutex_lock(&dev->lock);
1847 rc = res_get(fh);
1848 mutex_unlock(&dev->lock);
1849
1850 if (unlikely(rc < 0))
1851 return rc;
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -03001852
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001853 return videobuf_read_stream(&fh->vb_vidq, buf, count, pos, 0,
1854 filp->f_flags & O_NONBLOCK);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001855 }
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001856 return 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001857}
1858
1859/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001860 * em28xx_v4l2_poll()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001861 * will allocate buffers when called for the first time
1862 */
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -03001863static unsigned int em28xx_v4l2_poll(struct file *filp, poll_table *wait)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001864{
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001865 struct em28xx_fh *fh = filp->private_data;
1866 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001867 int rc;
1868
1869 rc = check_dev(dev);
1870 if (rc < 0)
1871 return rc;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001872
Mauro Carvalho Chehab29b59412008-12-16 20:19:24 -03001873 mutex_lock(&dev->lock);
1874 rc = res_get(fh);
1875 mutex_unlock(&dev->lock);
1876
1877 if (unlikely(rc < 0))
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -03001878 return POLLERR;
1879
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001880 if (V4L2_BUF_TYPE_VIDEO_CAPTURE != fh->type)
1881 return POLLERR;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001882
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001883 return videobuf_poll_stream(filp, &fh->vb_vidq, wait);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001884}
1885
1886/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001887 * em28xx_v4l2_mmap()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001888 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001889static int em28xx_v4l2_mmap(struct file *filp, struct vm_area_struct *vma)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001890{
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001891 struct em28xx_fh *fh = filp->private_data;
1892 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001893 int rc;
Markus Rechberger9c755412005-11-08 21:37:52 -08001894
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001895 rc = check_dev(dev);
1896 if (rc < 0)
1897 return rc;
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001898
Mauro Carvalho Chehab29b59412008-12-16 20:19:24 -03001899 mutex_lock(&dev->lock);
1900 rc = res_get(fh);
1901 mutex_unlock(&dev->lock);
1902
1903 if (unlikely(rc < 0))
1904 return rc;
1905
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001906 rc = videobuf_mmap_mapper(&fh->vb_vidq, vma);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001907
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001908 em28xx_videodbg("vma start=0x%08lx, size=%ld, ret=%d\n",
1909 (unsigned long)vma->vm_start,
1910 (unsigned long)vma->vm_end-(unsigned long)vma->vm_start,
1911 rc);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001912
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001913 return rc;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001914}
1915
Hans Verkuilbec43662008-12-30 06:58:20 -03001916static const struct v4l2_file_operations em28xx_v4l_fops = {
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001917 .owner = THIS_MODULE,
1918 .open = em28xx_v4l2_open,
1919 .release = em28xx_v4l2_close,
1920 .read = em28xx_v4l2_read,
1921 .poll = em28xx_v4l2_poll,
1922 .mmap = em28xx_v4l2_mmap,
1923 .ioctl = video_ioctl2,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001924};
1925
Hans Verkuila3998102008-07-21 02:57:38 -03001926static const struct v4l2_ioctl_ops video_ioctl_ops = {
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001927 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001928 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1929 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1930 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1931 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001932 .vidioc_g_audio = vidioc_g_audio,
1933 .vidioc_s_audio = vidioc_s_audio,
1934 .vidioc_cropcap = vidioc_cropcap,
1935
Hans Verkuil78b526a2008-05-28 12:16:41 -03001936 .vidioc_g_fmt_sliced_vbi_cap = vidioc_g_fmt_sliced_vbi_cap,
1937 .vidioc_try_fmt_sliced_vbi_cap = vidioc_try_set_sliced_vbi_cap,
1938 .vidioc_s_fmt_sliced_vbi_cap = vidioc_try_set_sliced_vbi_cap,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001939
1940 .vidioc_reqbufs = vidioc_reqbufs,
1941 .vidioc_querybuf = vidioc_querybuf,
1942 .vidioc_qbuf = vidioc_qbuf,
1943 .vidioc_dqbuf = vidioc_dqbuf,
1944 .vidioc_s_std = vidioc_s_std,
Mauro Carvalho Chehabd96ecda2009-08-06 21:53:59 -03001945 .vidioc_g_parm = vidioc_g_parm,
1946 .vidioc_s_parm = vidioc_s_parm,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001947 .vidioc_enum_input = vidioc_enum_input,
1948 .vidioc_g_input = vidioc_g_input,
1949 .vidioc_s_input = vidioc_s_input,
1950 .vidioc_queryctrl = vidioc_queryctrl,
1951 .vidioc_g_ctrl = vidioc_g_ctrl,
1952 .vidioc_s_ctrl = vidioc_s_ctrl,
1953 .vidioc_streamon = vidioc_streamon,
1954 .vidioc_streamoff = vidioc_streamoff,
1955 .vidioc_g_tuner = vidioc_g_tuner,
1956 .vidioc_s_tuner = vidioc_s_tuner,
1957 .vidioc_g_frequency = vidioc_g_frequency,
1958 .vidioc_s_frequency = vidioc_s_frequency,
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001959#ifdef CONFIG_VIDEO_ADV_DEBUG
1960 .vidioc_g_register = vidioc_g_register,
1961 .vidioc_s_register = vidioc_s_register,
Mauro Carvalho Chehab14983d82008-12-22 20:58:41 -03001962 .vidioc_g_chip_ident = vidioc_g_chip_ident,
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001963#endif
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001964#ifdef CONFIG_VIDEO_V4L1_COMPAT
1965 .vidiocgmbuf = vidiocgmbuf,
1966#endif
Hans Verkuila3998102008-07-21 02:57:38 -03001967};
1968
1969static const struct video_device em28xx_video_template = {
1970 .fops = &em28xx_v4l_fops,
1971 .release = video_device_release,
1972 .ioctl_ops = &video_ioctl_ops,
1973
1974 .minor = -1,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001975
1976 .tvnorms = V4L2_STD_ALL,
Mauro Carvalho Chehab7d497f82007-11-11 14:15:34 -03001977 .current_norm = V4L2_STD_PAL,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001978};
1979
Hans Verkuilbec43662008-12-30 06:58:20 -03001980static const struct v4l2_file_operations radio_fops = {
Hans Verkuila3998102008-07-21 02:57:38 -03001981 .owner = THIS_MODULE,
1982 .open = em28xx_v4l2_open,
1983 .release = em28xx_v4l2_close,
1984 .ioctl = video_ioctl2,
Hans Verkuila3998102008-07-21 02:57:38 -03001985};
1986
1987static const struct v4l2_ioctl_ops radio_ioctl_ops = {
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001988 .vidioc_querycap = radio_querycap,
1989 .vidioc_g_tuner = radio_g_tuner,
1990 .vidioc_enum_input = radio_enum_input,
1991 .vidioc_g_audio = radio_g_audio,
1992 .vidioc_s_tuner = radio_s_tuner,
1993 .vidioc_s_audio = radio_s_audio,
1994 .vidioc_s_input = radio_s_input,
1995 .vidioc_queryctrl = radio_queryctrl,
1996 .vidioc_g_ctrl = vidioc_g_ctrl,
1997 .vidioc_s_ctrl = vidioc_s_ctrl,
1998 .vidioc_g_frequency = vidioc_g_frequency,
1999 .vidioc_s_frequency = vidioc_s_frequency,
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03002000#ifdef CONFIG_VIDEO_ADV_DEBUG
2001 .vidioc_g_register = vidioc_g_register,
2002 .vidioc_s_register = vidioc_s_register,
2003#endif
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002004};
2005
Hans Verkuila3998102008-07-21 02:57:38 -03002006static struct video_device em28xx_radio_template = {
2007 .name = "em28xx-radio",
Hans Verkuila3998102008-07-21 02:57:38 -03002008 .fops = &radio_fops,
2009 .ioctl_ops = &radio_ioctl_ops,
2010 .minor = -1,
2011};
2012
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -03002013/******************************** usb interface ******************************/
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002014
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -03002015
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -03002016
Adrian Bunk532fe652008-01-28 22:10:48 -03002017static struct video_device *em28xx_vdev_init(struct em28xx *dev,
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -03002018 const struct video_device *template,
2019 const char *type_name)
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002020{
2021 struct video_device *vfd;
2022
2023 vfd = video_device_alloc();
2024 if (NULL == vfd)
2025 return NULL;
Douglas Schilling Landgraff2cf2502009-03-31 17:10:58 -03002026
2027 *vfd = *template;
2028 vfd->minor = -1;
2029 vfd->v4l2_dev = &dev->v4l2_dev;
2030 vfd->release = video_device_release;
2031 vfd->debug = video_debug;
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002032
2033 snprintf(vfd->name, sizeof(vfd->name), "%s %s",
2034 dev->name, type_name);
2035
2036 return vfd;
2037}
2038
Mauro Carvalho Chehab2e5ef2d2008-12-28 22:26:36 -03002039int em28xx_register_analog_devices(struct em28xx *dev)
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002040{
Robert Krakora6e7b9ea2009-01-18 21:59:34 -03002041 u8 val;
Mauro Carvalho Chehab2e5ef2d2008-12-28 22:26:36 -03002042 int ret;
2043
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002044 printk(KERN_INFO "%s: v4l2 driver version %d.%d.%d\n",
2045 dev->name,
2046 (EM28XX_VERSION_CODE >> 16) & 0xff,
2047 (EM28XX_VERSION_CODE >> 8) & 0xff, EM28XX_VERSION_CODE & 0xff);
2048
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002049 /* set default norm */
2050 dev->norm = em28xx_video_template.current_norm;
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002051 dev->interlaced = EM28XX_INTERLACED_DEFAULT;
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03002052 dev->ctl_input = 0;
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002053
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03002054 /* Analog specific initialization */
2055 dev->format = &format[0];
Mauro Carvalho Chehabed5f1432009-07-02 17:34:04 -03002056 em28xx_set_video_format(dev, format[0].fourcc,
2057 norm_maxw(dev), norm_maxh(dev));
2058
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03002059 video_mux(dev, dev->ctl_input);
2060
2061 /* Audio defaults */
2062 dev->mute = 1;
2063 dev->volume = 0x1f;
2064
2065 /* enable vbi capturing */
2066
2067/* em28xx_write_reg(dev, EM28XX_R0E_AUDIOSRC, 0xc0); audio register */
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -03002068 val = (u8)em28xx_read_reg(dev, EM28XX_R0F_XCLK);
2069 em28xx_write_reg(dev, EM28XX_R0F_XCLK,
2070 (EM28XX_XCLK_AUDIO_UNMUTE | val));
Mauro Carvalho Chehab24c3c412009-01-07 22:49:25 -03002071 em28xx_write_reg(dev, EM28XX_R11_VINCTRL, 0x51);
2072
2073 em28xx_set_outfmt(dev);
2074 em28xx_colorlevels_set_default(dev);
2075 em28xx_compression_disable(dev);
Mauro Carvalho Chehab1a23f812008-12-28 22:18:14 -03002076
Mauro Carvalho Chehab818a5572008-11-20 10:30:26 -03002077 /* allocate and fill video video_device struct */
2078 dev->vdev = em28xx_vdev_init(dev, &em28xx_video_template, "video");
2079 if (!dev->vdev) {
2080 em28xx_errdev("cannot allocate video_device.\n");
2081 return -ENODEV;
2082 }
2083
2084 /* register v4l2 video video_device */
2085 ret = video_register_device(dev->vdev, VFL_TYPE_GRABBER,
2086 video_nr[dev->devno]);
2087 if (ret) {
2088 em28xx_errdev("unable to register video device (error=%i).\n",
2089 ret);
2090 return ret;
2091 }
2092
2093 /* Allocate and fill vbi video_device struct */
2094 dev->vbi_dev = em28xx_vdev_init(dev, &em28xx_video_template, "vbi");
2095
2096 /* register v4l2 vbi video_device */
2097 ret = video_register_device(dev->vbi_dev, VFL_TYPE_VBI,
2098 vbi_nr[dev->devno]);
2099 if (ret < 0) {
2100 em28xx_errdev("unable to register vbi device\n");
2101 return ret;
2102 }
2103
2104 if (em28xx_boards[dev->model].radio.type == EM28XX_RADIO) {
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -03002105 dev->radio_dev = em28xx_vdev_init(dev, &em28xx_radio_template,
2106 "radio");
Mauro Carvalho Chehab818a5572008-11-20 10:30:26 -03002107 if (!dev->radio_dev) {
2108 em28xx_errdev("cannot allocate video_device.\n");
2109 return -ENODEV;
2110 }
2111 ret = video_register_device(dev->radio_dev, VFL_TYPE_RADIO,
2112 radio_nr[dev->devno]);
2113 if (ret < 0) {
2114 em28xx_errdev("can't register radio device\n");
2115 return ret;
2116 }
2117 em28xx_info("Registered radio device as /dev/radio%d\n",
2118 dev->radio_dev->num);
2119 }
2120
2121 em28xx_info("V4L2 device registered as /dev/video%d and /dev/vbi%d\n",
2122 dev->vdev->num, dev->vbi_dev->num);
2123
2124 return 0;
2125}