blob: 033ecb45256b9a24d162d2bfa9ef440a58dcb37c [file] [log] [blame]
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001/*
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -08002 em28xx-video.c - driver for Empia EM2800/EM2820/2840 USB video capture devices
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08003
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -08004 Copyright (C) 2005 Ludovico Cavedon <cavedon@sssup.it>
5 Markus Rechberger <mrechberger@gmail.com>
Mauro Carvalho Chehab2e7c6dc2006-04-03 07:53:40 -03006 Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -08007 Sascha Sommer <saschasommer@freenet.de>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08008
Mauro Carvalho Chehab439090d2006-01-23 17:10:54 -02009 Some parts based on SN9C10x PC Camera Controllers GPL driver made
10 by Luca Risolia <luca.risolia@studio.unibo.it>
11
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080012 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
16
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 */
26
27#include <linux/init.h>
28#include <linux/list.h>
29#include <linux/module.h>
30#include <linux/kernel.h>
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -020031#include <linux/bitmap.h>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080032#include <linux/usb.h>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080033#include <linux/i2c.h>
Mauro Carvalho Chehabb296fc62005-11-08 21:38:37 -080034#include <linux/version.h>
Trent Piepho6d35c8f2007-11-01 01:16:09 -030035#include <linux/mm.h>
Ingo Molnar1e4baed2006-01-15 07:52:23 -020036#include <linux/mutex.h>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080037
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -080038#include "em28xx.h"
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -020039#include <media/v4l2-common.h>
Hans Verkuil2474ed42006-03-19 12:35:57 -030040#include <media/msp3400.h>
Mauro Carvalho Chehabed086312008-01-24 06:59:20 -030041#include <media/tuner.h>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080042
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -080043#define DRIVER_AUTHOR "Ludovico Cavedon <cavedon@sssup.it>, " \
44 "Markus Rechberger <mrechberger@gmail.com>, " \
Mauro Carvalho Chehab2e7c6dc2006-04-03 07:53:40 -030045 "Mauro Carvalho Chehab <mchehab@infradead.org>, " \
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -080046 "Sascha Sommer <saschasommer@freenet.de>"
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080047
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -080048#define DRIVER_NAME "em28xx"
49#define DRIVER_DESC "Empia em28xx based USB video device driver"
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -030050#define EM28XX_VERSION_CODE KERNEL_VERSION(0, 1, 0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080051
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -080052#define em28xx_videodbg(fmt, arg...) do {\
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080053 if (video_debug) \
54 printk(KERN_INFO "%s %s :"fmt, \
Harvey Harrisond80e1342008-04-08 23:20:00 -030055 dev->name, __func__ , ##arg); } while (0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080056
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -030057static unsigned int isoc_debug;
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -030058module_param(isoc_debug, int, 0644);
59MODULE_PARM_DESC(isoc_debug, "enable debug messages [isoc transfers]");
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -030060
61#define em28xx_isocdbg(fmt, arg...) do {\
62 if (isoc_debug) \
63 printk(KERN_INFO "%s %s :"fmt, \
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -030064 dev->name, __func__ , ##arg); } while (0)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -030065
66#define BUFFER_TIMEOUT msecs_to_jiffies(2000) /* 2 seconds */
67
68/* Limits minimum and default number of buffers */
69#define EM28XX_MIN_BUF 4
70#define EM28XX_DEF_BUF 8
71
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080072MODULE_AUTHOR(DRIVER_AUTHOR);
73MODULE_DESCRIPTION(DRIVER_DESC);
74MODULE_LICENSE("GPL");
75
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -080076static LIST_HEAD(em28xx_devlist);
Markus Rechberger9c755412005-11-08 21:37:52 -080077
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -080078static unsigned int card[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -020079static unsigned int video_nr[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -030080static unsigned int vbi_nr[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
81static unsigned int radio_nr[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
82
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -080083module_param_array(card, int, NULL, 0444);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -020084module_param_array(video_nr, int, NULL, 0444);
85module_param_array(vbi_nr, int, NULL, 0444);
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -030086module_param_array(radio_nr, int, NULL, 0444);
87MODULE_PARM_DESC(card, "card type");
88MODULE_PARM_DESC(video_nr, "video device numbers");
89MODULE_PARM_DESC(vbi_nr, "vbi device numbers");
90MODULE_PARM_DESC(radio_nr, "radio device numbers");
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -080091
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030092static unsigned int video_debug;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080093module_param(video_debug,int,0644);
94MODULE_PARM_DESC(video_debug,"enable debug messages [video]");
95
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -020096/* Bitmask marking allocated devices from 0 to EM28XX_MAXBOARDS */
97static unsigned long em28xx_devused;
98
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080099/* supported controls */
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200100/* Common to all boards */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800101static struct v4l2_queryctrl em28xx_qctrl[] = {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800102 {
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200103 .id = V4L2_CID_AUDIO_VOLUME,
104 .type = V4L2_CTRL_TYPE_INTEGER,
105 .name = "Volume",
106 .minimum = 0x0,
107 .maximum = 0x1f,
108 .step = 0x1,
109 .default_value = 0x1f,
110 .flags = 0,
111 },{
112 .id = V4L2_CID_AUDIO_MUTE,
113 .type = V4L2_CTRL_TYPE_BOOLEAN,
114 .name = "Mute",
115 .minimum = 0,
116 .maximum = 1,
117 .step = 1,
118 .default_value = 1,
119 .flags = 0,
120 }
121};
122
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800123static struct usb_driver em28xx_usb_driver;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800124
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300125/* ------------------------------------------------------------------
126 DMA and thread functions
127 ------------------------------------------------------------------*/
128
129/*
130 * Announces that a buffer were filled and request the next
131 */
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300132static inline void buffer_filled(struct em28xx *dev,
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300133 struct em28xx_dmaqueue *dma_q,
134 struct em28xx_buffer *buf)
135{
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300136 mod_timer(&dma_q->timeout, jiffies+BUFFER_TIMEOUT);
137
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300138 /* Nobody is waiting something to be done, just return */
139 if (!waitqueue_active(&buf->vb.done)) {
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300140 printk(KERN_ERR "em28xx: buffer underrun at %ld\n",
141 jiffies);
142
143 return;
144 }
145
146 /* Advice that buffer was filled */
147 em28xx_isocdbg("[%p/%d] wakeup\n", buf, buf->vb.i);
148 buf->vb.state = VIDEOBUF_DONE;
149 buf->vb.field_count++;
150 do_gettimeofday(&buf->vb.ts);
151
152 list_del(&buf->vb.queue);
153 wake_up(&buf->vb.done);
154}
155
156/*
157 * Identify the buffer header type and properly handles
158 */
159static void em28xx_copy_video(struct em28xx *dev,
160 struct em28xx_dmaqueue *dma_q,
161 struct em28xx_buffer *buf,
162 unsigned char *p,
163 unsigned char *outp, unsigned long len)
164{
165 void *fieldstart, *startwrite, *startread;
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300166 int linesdone, currlinedone, offset, lencopy, remain;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300167
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300168 if (dev->frame_size != buf->vb.size) {
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300169 em28xx_errdev("size %i and buf.length %lu are different!\n",
170 dev->frame_size, buf->vb.size);
171 return;
172 }
173
174 if (dma_q->pos + len > buf->vb.size)
175 len = buf->vb.size - dma_q->pos;
176
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300177 if (p[0] != 0x88 && p[0] != 0x22) {
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300178 em28xx_isocdbg("frame is not complete\n");
179 len += 4;
180 } else
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300181 p += 4;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300182
183 startread = p;
184 remain = len;
185
186 /* Interlaces frame */
187 if (buf->top_field)
188 fieldstart = outp;
189 else
190 fieldstart = outp + dev->bytesperline;
191
192 linesdone = dma_q->pos / dev->bytesperline;
193 currlinedone = dma_q->pos % dev->bytesperline;
194 offset = linesdone * dev->bytesperline * 2 + currlinedone;
195 startwrite = fieldstart + offset;
196 lencopy = dev->bytesperline - currlinedone;
197 lencopy = lencopy > remain ? remain : lencopy;
198
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300199 if ((char *)startwrite + lencopy > (char *)outp + buf->vb.size) {
Mauro Carvalho Chehabea8df7e2008-04-13 14:39:29 -0300200 em28xx_isocdbg("Overflow of %zi bytes past buffer end (1)\n",
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300201 ((char *)startwrite + lencopy) -
202 ((char *)outp + buf->vb.size));
203 lencopy = remain = (char *)outp + buf->vb.size - (char *)startwrite;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300204 }
205 BUG_ON(lencopy <= 0);
206 memcpy(startwrite, startread, lencopy);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300207
208 remain -= lencopy;
209
210 while (remain > 0) {
211 startwrite += lencopy + dev->bytesperline;
212 startread += lencopy;
213 if (dev->bytesperline > remain)
214 lencopy = remain;
215 else
216 lencopy = dev->bytesperline;
217
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300218 BUG_ON(lencopy <= 0);
219
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300220 if ((char *)startwrite + lencopy > (char *)outp + buf->vb.size) {
Mauro Carvalho Chehabea8df7e2008-04-13 14:39:29 -0300221 em28xx_isocdbg("Overflow of %zi bytes past buffer end (2)\n",
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300222 ((char *)startwrite + lencopy) -
223 ((char *)outp + buf->vb.size));
224 lencopy = remain = (char *)outp + buf->vb.size -
225 (char *)startwrite;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300226 }
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300227 if (lencopy <= 0)
228 break;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300229
230 memcpy(startwrite, startread, lencopy);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300231
232 remain -= lencopy;
233 }
234
235 dma_q->pos += len;
236}
237
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300238static inline void print_err_status(struct em28xx *dev,
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300239 int packet, int status)
240{
241 char *errmsg = "Unknown";
242
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300243 switch (status) {
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300244 case -ENOENT:
245 errmsg = "unlinked synchronuously";
246 break;
247 case -ECONNRESET:
248 errmsg = "unlinked asynchronuously";
249 break;
250 case -ENOSR:
251 errmsg = "Buffer error (overrun)";
252 break;
253 case -EPIPE:
254 errmsg = "Stalled (device not responding)";
255 break;
256 case -EOVERFLOW:
257 errmsg = "Babble (bad cable?)";
258 break;
259 case -EPROTO:
260 errmsg = "Bit-stuff error (bad cable?)";
261 break;
262 case -EILSEQ:
263 errmsg = "CRC/Timeout (could be anything)";
264 break;
265 case -ETIME:
266 errmsg = "Device does not respond";
267 break;
268 }
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300269 if (packet < 0) {
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300270 em28xx_isocdbg("URB status %d [%s].\n", status, errmsg);
271 } else {
272 em28xx_isocdbg("URB packet %d, status %d [%s].\n",
273 packet, status, errmsg);
274 }
275}
276
277/*
278 * video-buf generic routine to get the next available buffer
279 */
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300280static inline int get_next_buf(struct em28xx_dmaqueue *dma_q,
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300281 struct em28xx_buffer **buf)
282{
283 struct em28xx *dev = container_of(dma_q, struct em28xx, vidq);
284
285 if (list_empty(&dma_q->active)) {
286 em28xx_isocdbg("No active queue to serve\n");
287 return 0;
288 }
289
290 *buf = list_entry(dma_q->active.next, struct em28xx_buffer, vb.queue);
291
292 return 1;
293}
294
295/*
296 * Controls the isoc copy of each urb packet
297 */
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300298static inline int em28xx_isoc_copy(struct urb *urb)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300299{
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300300 struct em28xx_buffer *buf;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300301 struct em28xx_dmaqueue *dma_q = urb->context;
302 struct em28xx *dev = container_of(dma_q, struct em28xx, vidq);
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300303 unsigned char *outp;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300304 int i, len = 0, rc = 1;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300305 unsigned char *p;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300306
307 if (!dev)
308 return 0;
309
310 if ((dev->state & DEV_DISCONNECTED) || (dev->state & DEV_MISCONFIGURED))
311 return 0;
312
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300313 if (urb->status < 0) {
314 print_err_status(dev, -1, urb->status);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300315 if (urb->status == -ENOENT)
316 return 0;
317 }
318
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300319 buf = dev->isoc_ctl.buf;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300320
321 if (!buf) {
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300322 rc = get_next_buf(dma_q, &buf);
323 if (rc <= 0)
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300324 return rc;
325 }
326
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300327 outp = videobuf_to_vmalloc(&buf->vb);
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300328
329
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300330 for (i = 0; i < urb->number_of_packets; i++) {
331 int status = urb->iso_frame_desc[i].status;
332
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300333 if (status < 0) {
334 print_err_status(dev, i, status);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300335 if (urb->iso_frame_desc[i].status != -EPROTO)
336 continue;
337 }
338
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300339 len = urb->iso_frame_desc[i].actual_length - 4;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300340
341 if (urb->iso_frame_desc[i].actual_length <= 0) {
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300342 /* em28xx_isocdbg("packet %d is empty",i); - spammy */
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300343 continue;
344 }
345 if (urb->iso_frame_desc[i].actual_length >
346 dev->max_pkt_size) {
347 em28xx_isocdbg("packet bigger than packet size");
348 continue;
349 }
350
351 p = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300352
353 /* FIXME: incomplete buffer checks where removed to make
354 logic simpler. Impacts of those changes should be evaluated
355 */
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300356 if (p[0] == 0x22 && p[1] == 0x5a) {
357 /* FIXME - are the fields the right way around? */
358 em28xx_isocdbg("Video frame, length=%i, %s\n", len,
359 (p[2] & 1)? "top" : "bottom");
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300360 em28xx_isocdbg("Current buffer is: outp = 0x%p,"
361 " len = %i\n", outp, (int)buf->vb.size);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300362
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300363 if (p[2] & 1) {
364 if (buf->receiving) {
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300365 buffer_filled(dev, dma_q, buf);
366 rc = get_next_buf(dma_q, &buf);
367 if (rc <= 0)
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300368 return rc;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300369
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300370 outp = videobuf_to_vmalloc(&buf->vb);
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300371 }
372
373 buf->top_field = 1;
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300374 } else
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300375 buf->top_field = 0;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300376 buf->receiving = 1;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300377 dma_q->pos = 0;
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300378 } else if (p[0] == 0x33 && p[1] == 0x95 && p[2] == 0x00) {
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300379 em28xx_isocdbg("VBI HEADER!!!\n");
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300380 }
381
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300382 em28xx_copy_video(dev, dma_q, buf, p, outp, len);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300383
384 /* FIXME: Should add vbi copy */
385 }
386 return rc;
387}
388
389/* ------------------------------------------------------------------
390 URB control
391 ------------------------------------------------------------------*/
392
393/*
394 * IRQ callback, called by URB callback
395 */
396static void em28xx_irq_callback(struct urb *urb)
397{
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300398 struct em28xx_dmaqueue *dma_q = urb->context;
399 struct em28xx *dev = container_of(dma_q, struct em28xx, vidq);
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300400 int rc, i;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300401 unsigned long flags;
402
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300403 spin_lock_irqsave(&dev->slock, flags);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300404
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300405 /* Copy data from URB */
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300406 rc = em28xx_isoc_copy(urb);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300407
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300408 /* Reset urb buffers */
409 for (i = 0; i < urb->number_of_packets; i++) {
410 urb->iso_frame_desc[i].status = 0;
411 urb->iso_frame_desc[i].actual_length = 0;
412 }
413 urb->status = 0;
414
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300415 urb->status = usb_submit_urb(urb, GFP_ATOMIC);
416 if (urb->status) {
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300417 em28xx_err("urb resubmit failed (error=%i)\n",
418 urb->status);
419 }
420
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300421 spin_unlock_irqrestore(&dev->slock, flags);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300422}
423
424/*
425 * Stop and Deallocate URBs
426 */
427static void em28xx_uninit_isoc(struct em28xx *dev)
428{
429 struct urb *urb;
430 int i;
431
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300432 em28xx_isocdbg("em28xx: called em28xx_uninit_isoc\n");
433
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300434 dev->isoc_ctl.nfields = -1;
435 dev->isoc_ctl.buf = NULL;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300436 for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300437 urb = dev->isoc_ctl.urb[i];
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300438 if (urb) {
439 usb_kill_urb(urb);
440 usb_unlink_urb(urb);
441 if (dev->isoc_ctl.transfer_buffer[i]) {
442 usb_buffer_free(dev->udev,
443 urb->transfer_buffer_length,
444 dev->isoc_ctl.transfer_buffer[i],
445 urb->transfer_dma);
446 }
447 usb_free_urb(urb);
448 dev->isoc_ctl.urb[i] = NULL;
449 }
450 dev->isoc_ctl.transfer_buffer[i] = NULL;
451 }
452
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300453 kfree(dev->isoc_ctl.urb);
454 kfree(dev->isoc_ctl.transfer_buffer);
455 dev->isoc_ctl.urb = NULL;
456 dev->isoc_ctl.transfer_buffer = NULL;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300457
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300458 dev->isoc_ctl.num_bufs = 0;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300459
Mauro Carvalho Chehabca21d2d2008-04-13 14:40:36 -0300460 del_timer(&dev->vidq.timeout);
Mauro Carvalho Chehab47625da2008-04-13 14:40:10 -0300461 em28xx_capture_start(dev, 0);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300462}
463
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300464
465/*
466 * Allocate URBs and start IRQ
467 */
468static int em28xx_prepare_isoc(struct em28xx *dev, int max_packets,
469 int num_bufs)
470{
471 struct em28xx_dmaqueue *dma_q = &dev->vidq;
472 int i;
473 int sb_size, pipe;
474 struct urb *urb;
475 int j, k;
476
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300477 em28xx_isocdbg("em28xx: called em28xx_prepare_isoc\n");
478
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300479 /* De-allocates all pending stuff */
480 em28xx_uninit_isoc(dev);
481
482 dev->isoc_ctl.num_bufs = num_bufs;
483
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300484 dev->isoc_ctl.urb = kzalloc(sizeof(void *)*num_bufs, GFP_KERNEL);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300485 if (!dev->isoc_ctl.urb) {
486 em28xx_errdev("cannot alloc memory for usb buffers\n");
487 return -ENOMEM;
488 }
489
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300490 dev->isoc_ctl.transfer_buffer = kzalloc(sizeof(void *)*num_bufs,
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300491 GFP_KERNEL);
492 if (!dev->isoc_ctl.urb) {
493 em28xx_errdev("cannot allocate memory for usbtransfer\n");
494 kfree(dev->isoc_ctl.urb);
495 return -ENOMEM;
496 }
497
498 dev->isoc_ctl.max_pkt_size = dev->max_pkt_size;
499
500 sb_size = max_packets * dev->isoc_ctl.max_pkt_size;
501
502 /* allocate urbs and transfer buffers */
503 for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
504 urb = usb_alloc_urb(max_packets, GFP_KERNEL);
505 if (!urb) {
506 em28xx_err("cannot alloc isoc_ctl.urb %i\n", i);
507 em28xx_uninit_isoc(dev);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300508 return -ENOMEM;
509 }
510 dev->isoc_ctl.urb[i] = urb;
511
512 dev->isoc_ctl.transfer_buffer[i] = usb_buffer_alloc(dev->udev,
513 sb_size, GFP_KERNEL, &urb->transfer_dma);
514 if (!dev->isoc_ctl.transfer_buffer[i]) {
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300515 em28xx_err("unable to allocate %i bytes for transfer"
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300516 " buffer %i%s\n",
517 sb_size, i,
518 in_interrupt()?" while in int":"");
519 em28xx_uninit_isoc(dev);
520 return -ENOMEM;
521 }
522 memset(dev->isoc_ctl.transfer_buffer[i], 0, sb_size);
523
524 /* FIXME: this is a hack - should be
525 'desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK'
526 should also be using 'desc.bInterval'
527 */
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300528 pipe = usb_rcvisocpipe(dev->udev, 0x82);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300529 usb_fill_int_urb(urb, dev->udev, pipe,
530 dev->isoc_ctl.transfer_buffer[i], sb_size,
531 em28xx_irq_callback, dma_q, 1);
532
533 urb->number_of_packets = max_packets;
534 urb->transfer_flags = URB_ISO_ASAP;
535
536 k = 0;
537 for (j = 0; j < max_packets; j++) {
538 urb->iso_frame_desc[j].offset = k;
539 urb->iso_frame_desc[j].length =
540 dev->isoc_ctl.max_pkt_size;
541 k += dev->isoc_ctl.max_pkt_size;
542 }
543 }
544
545 return 0;
546}
547
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300548static int em28xx_start_thread(struct em28xx_dmaqueue *dma_q)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300549{
550 struct em28xx *dev = container_of(dma_q, struct em28xx, vidq);
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300551 int i, rc = 0;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300552
553 em28xx_videodbg("Called em28xx_start_thread\n");
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300554
555 init_waitqueue_head(&dma_q->wq);
556
Mauro Carvalho Chehab47625da2008-04-13 14:40:10 -0300557 em28xx_capture_start(dev, 1);
558
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300559 /* submit urbs and enables IRQ */
560 for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
561 rc = usb_submit_urb(dev->isoc_ctl.urb[i], GFP_ATOMIC);
562 if (rc) {
563 em28xx_err("submit of urb %i failed (error=%i)\n", i,
564 rc);
565 em28xx_uninit_isoc(dev);
566 return rc;
567 }
568 }
569
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300570 if (rc < 0)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300571 return rc;
572
573 return 0;
574}
575
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300576static void em28xx_vid_timeout(unsigned long data)
577{
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300578 struct em28xx *dev = (struct em28xx *)data;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300579 struct em28xx_dmaqueue *vidq = &dev->vidq;
580 struct em28xx_buffer *buf;
581 unsigned long flags;
582
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300583 spin_lock_irqsave(&dev->slock, flags);
Mauro Carvalho Chehabca21d2d2008-04-13 14:40:36 -0300584
585 list_for_each_entry(buf, vidq->active.next, vb.queue) {
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300586 list_del(&buf->vb.queue);
587 buf->vb.state = VIDEOBUF_ERROR;
588 wake_up(&buf->vb.done);
589 em28xx_videodbg("em28xx/0: [%p/%d] timeout\n",
590 buf, buf->vb.i);
591 }
Mauro Carvalho Chehab47625da2008-04-13 14:40:10 -0300592 /* Instead of trying to restart, just sets timeout again */
593 mod_timer(&vidq->timeout, jiffies + BUFFER_TIMEOUT);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300594
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300595 spin_unlock_irqrestore(&dev->slock, flags);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300596}
597
598/* ------------------------------------------------------------------
599 Videobuf operations
600 ------------------------------------------------------------------*/
601
602static int
603buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
604{
605 struct em28xx_fh *fh = vq->priv_data;
606
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300607 *size = 16 * fh->dev->width * fh->dev->height >> 3;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300608 if (0 == *count)
609 *count = EM28XX_DEF_BUF;
610
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300611 if (*count < EM28XX_MIN_BUF)
612 *count = EM28XX_MIN_BUF;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300613
614 return 0;
615}
616
617static void free_buffer(struct videobuf_queue *vq, struct em28xx_buffer *buf)
618{
619 if (in_interrupt())
620 BUG();
621
622 videobuf_waiton(&buf->vb, 0, 0);
623 videobuf_vmalloc_free(&buf->vb);
624 buf->vb.state = VIDEOBUF_NEEDS_INIT;
625}
626
627static int
628buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
629 enum v4l2_field field)
630{
631 struct em28xx_fh *fh = vq->priv_data;
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300632 struct em28xx_buffer *buf = container_of(vb, struct em28xx_buffer, vb);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300633 struct em28xx *dev = fh->dev;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300634 struct em28xx_dmaqueue *vidq = &dev->vidq;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300635 int rc = 0, urb_init = 0;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300636
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300637 /* BUG_ON(NULL == fh->fmt); */
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300638
639 /* FIXME: It assumes depth = 16 */
640 /* The only currently supported format is 16 bits/pixel */
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300641 buf->vb.size = 16 * dev->width * dev->height >> 3;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300642
643 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
644 return -EINVAL;
645
646 if (buf->fmt != fh->fmt ||
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300647 buf->vb.width != dev->width ||
648 buf->vb.height != dev->height ||
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300649 buf->vb.field != field) {
650 buf->fmt = fh->fmt;
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300651 buf->vb.width = dev->width;
652 buf->vb.height = dev->height;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300653 buf->vb.field = field;
654 buf->vb.state = VIDEOBUF_NEEDS_INIT;
655 }
656
657 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300658 rc = videobuf_iolock(vq, &buf->vb, NULL);
659 if (rc < 0)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300660 goto fail;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300661 }
662
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300663 if (!dev->isoc_ctl.num_bufs)
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300664 urb_init = 1;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300665
666 if (urb_init) {
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300667 rc = em28xx_prepare_isoc(dev, EM28XX_NUM_PACKETS,
668 EM28XX_NUM_BUFS);
669 if (rc < 0)
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300670 goto fail;
671
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300672 rc = em28xx_start_thread(vidq);
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300673 if (rc < 0)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300674 goto fail;
675 }
676
677 buf->vb.state = VIDEOBUF_PREPARED;
678 return 0;
679
680fail:
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300681 free_buffer(vq, buf);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300682 return rc;
683}
684
685static void
686buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
687{
688 struct em28xx_buffer *buf = container_of(vb, struct em28xx_buffer, vb);
689 struct em28xx_fh *fh = vq->priv_data;
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300690 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300691 struct em28xx_dmaqueue *vidq = &dev->vidq;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300692
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300693 buf->vb.state = VIDEOBUF_QUEUED;
694 list_add_tail(&buf->vb.queue, &vidq->active);
695
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300696}
697
698static void buffer_release(struct videobuf_queue *vq, struct videobuf_buffer *vb)
699{
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300700 struct em28xx_buffer *buf = container_of(vb, struct em28xx_buffer, vb);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300701 struct em28xx_fh *fh = vq->priv_data;
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300702 struct em28xx *dev = (struct em28xx *)fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300703
Aidan Thorntond7aa8022008-04-13 14:38:47 -0300704 em28xx_isocdbg("em28xx: called buffer_release\n");
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300705
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -0300706 free_buffer(vq, buf);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300707}
708
709static struct videobuf_queue_ops em28xx_video_qops = {
710 .buf_setup = buffer_setup,
711 .buf_prepare = buffer_prepare,
712 .buf_queue = buffer_queue,
713 .buf_release = buffer_release,
714};
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800715
716/********************* v4l2 interface ******************************************/
717
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800718/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800719 * em28xx_config()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800720 * inits registers with sane defaults
721 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800722static int em28xx_config(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800723{
724
725 /* Sets I2C speed to 100 KHz */
Sascha Sommer2b2c93a2007-11-03 16:48:01 -0300726 if (!dev->is_em2800)
727 em28xx_write_regs_req(dev, 0x00, 0x06, "\x40", 1);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800728
729 /* enable vbi capturing */
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200730
Markus Rechberger9475fb12006-02-27 00:07:34 -0300731/* em28xx_write_regs_req(dev,0x00,0x0e,"\xC0",1); audio register */
732/* em28xx_write_regs_req(dev,0x00,0x0f,"\x80",1); clk register */
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200733 em28xx_write_regs_req(dev,0x00,0x11,"\x51",1);
734
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800735 dev->mute = 1; /* maybe not the right place... */
736 dev->volume = 0x1f;
Mauro Carvalho Chehab539c96d2008-01-05 09:53:54 -0300737
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800738 em28xx_outfmt_set_yuv422(dev);
739 em28xx_colorlevels_set_default(dev);
740 em28xx_compression_disable(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800741
742 return 0;
743}
744
745/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800746 * em28xx_config_i2c()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800747 * configure i2c attached devices
748 */
Adrian Bunk943a4902005-12-01 00:51:35 -0800749static void em28xx_config_i2c(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800750{
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300751 struct v4l2_routing route;
752
753 route.input = INPUT(dev->ctl_input)->vmux;
754 route.output = 0;
Al Viro663d1ba2006-10-10 22:48:37 +0100755 em28xx_i2c_call_clients(dev, VIDIOC_INT_RESET, NULL);
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300756 em28xx_i2c_call_clients(dev, VIDIOC_INT_S_VIDEO_ROUTING, &route);
Mauro Carvalho Chehabf5762e42006-03-13 13:31:31 -0300757 em28xx_i2c_call_clients(dev, VIDIOC_STREAMON, NULL);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800758}
759
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800760static void video_mux(struct em28xx *dev, int index)
761{
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300762 struct v4l2_routing route;
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800763
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300764 route.input = INPUT(index)->vmux;
765 route.output = 0;
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800766 dev->ctl_input = index;
767 dev->ctl_ainput = INPUT(index)->amux;
768
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300769 em28xx_i2c_call_clients(dev, VIDIOC_INT_S_VIDEO_ROUTING, &route);
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800770
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800771 if (dev->has_msp34xx) {
Mauro Carvalho Chehab9bb13a62006-01-09 15:25:37 -0200772 if (dev->i2s_speed)
773 em28xx_i2c_call_clients(dev, VIDIOC_INT_I2S_CLOCK_FREQ, &dev->i2s_speed);
Hans Verkuil2474ed42006-03-19 12:35:57 -0300774 route.input = dev->ctl_ainput;
Hans Verkuil07151722006-04-01 18:03:23 -0300775 route.output = MSP_OUTPUT(MSP_SC_IN_DSP_SCART1);
Hans Verkuil2474ed42006-03-19 12:35:57 -0300776 /* Note: this is msp3400 specific */
777 em28xx_i2c_call_clients(dev, VIDIOC_INT_S_AUDIO_ROUTING, &route);
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800778 }
Mauro Carvalho Chehab539c96d2008-01-05 09:53:54 -0300779
Mauro Carvalho Chehab00b87302008-02-06 18:34:13 -0300780 em28xx_audio_analog_set(dev);
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800781}
782
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -0300783/* Usage lock check functions */
784static int res_get(struct em28xx_fh *fh)
785{
786 struct em28xx *dev = fh->dev;
787 int rc = 0;
788
789 /* This instance already has stream_on */
790 if (fh->stream_on)
791 return rc;
792
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -0300793 if (dev->stream_on)
Mauro Carvalho Chehabe74153d2008-04-13 14:55:38 -0300794 return -EINVAL;
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -0300795
Mauro Carvalho Chehabe74153d2008-04-13 14:55:38 -0300796 mutex_lock(&dev->lock);
797 dev->stream_on = 1;
798 fh->stream_on = 1;
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -0300799 mutex_unlock(&dev->lock);
800 return rc;
801}
802
803static int res_check(struct em28xx_fh *fh)
804{
805 return (fh->stream_on);
806}
807
808static void res_free(struct em28xx_fh *fh)
809{
810 struct em28xx *dev = fh->dev;
811
812 mutex_lock(&dev->lock);
813 fh->stream_on = 0;
814 dev->stream_on = 0;
815 mutex_unlock(&dev->lock);
816}
817
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800818/*
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300819 * em28xx_get_ctrl()
820 * return the current saturation, brightness or contrast, mute state
821 */
822static int em28xx_get_ctrl(struct em28xx *dev, struct v4l2_control *ctrl)
823{
824 switch (ctrl->id) {
825 case V4L2_CID_AUDIO_MUTE:
826 ctrl->value = dev->mute;
827 return 0;
828 case V4L2_CID_AUDIO_VOLUME:
829 ctrl->value = dev->volume;
830 return 0;
831 default:
832 return -EINVAL;
833 }
834}
835
836/*
837 * em28xx_set_ctrl()
838 * mute or set new saturation, brightness or contrast
839 */
840static int em28xx_set_ctrl(struct em28xx *dev, const struct v4l2_control *ctrl)
841{
842 switch (ctrl->id) {
843 case V4L2_CID_AUDIO_MUTE:
844 if (ctrl->value != dev->mute) {
845 dev->mute = ctrl->value;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300846 return em28xx_audio_analog_set(dev);
847 }
848 return 0;
849 case V4L2_CID_AUDIO_VOLUME:
850 dev->volume = ctrl->value;
851 return em28xx_audio_analog_set(dev);
852 default:
853 return -EINVAL;
854 }
855}
856
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300857static int check_dev(struct em28xx *dev)
858{
859 if (dev->state & DEV_DISCONNECTED) {
860 em28xx_errdev("v4l2 ioctl: device not present\n");
861 return -ENODEV;
862 }
863
864 if (dev->state & DEV_MISCONFIGURED) {
865 em28xx_errdev("v4l2 ioctl: device is misconfigured; "
866 "close and open it again\n");
867 return -EIO;
868 }
869 return 0;
870}
871
872static void get_scale(struct em28xx *dev,
873 unsigned int width, unsigned int height,
874 unsigned int *hscale, unsigned int *vscale)
875{
876 unsigned int maxw = norm_maxw(dev);
877 unsigned int maxh = norm_maxh(dev);
878
879 *hscale = (((unsigned long)maxw) << 12) / width - 4096L;
880 if (*hscale >= 0x4000)
881 *hscale = 0x3fff;
882
883 *vscale = (((unsigned long)maxh) << 12) / height - 4096L;
884 if (*vscale >= 0x4000)
885 *vscale = 0x3fff;
886}
887
888/* ------------------------------------------------------------------
889 IOCTL vidioc handling
890 ------------------------------------------------------------------*/
891
892static int vidioc_g_fmt_cap(struct file *file, void *priv,
893 struct v4l2_format *f)
894{
895 struct em28xx_fh *fh = priv;
896 struct em28xx *dev = fh->dev;
897
898 mutex_lock(&dev->lock);
899
900 f->fmt.pix.width = dev->width;
901 f->fmt.pix.height = dev->height;
902 f->fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;
903 f->fmt.pix.bytesperline = dev->bytesperline;
904 f->fmt.pix.sizeimage = dev->frame_size;
905 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
906
907 /* FIXME: TOP? NONE? BOTTOM? ALTENATE? */
908 f->fmt.pix.field = dev->interlaced ?
909 V4L2_FIELD_INTERLACED : V4L2_FIELD_TOP;
910
911 mutex_unlock(&dev->lock);
912 return 0;
913}
914
915static int vidioc_try_fmt_cap(struct file *file, void *priv,
916 struct v4l2_format *f)
917{
918 struct em28xx_fh *fh = priv;
919 struct em28xx *dev = fh->dev;
920 int width = f->fmt.pix.width;
921 int height = f->fmt.pix.height;
922 unsigned int maxw = norm_maxw(dev);
923 unsigned int maxh = norm_maxh(dev);
924 unsigned int hscale, vscale;
925
926 /* width must even because of the YUYV format
927 height must be even because of interlacing */
928 height &= 0xfffe;
929 width &= 0xfffe;
930
931 if (height < 32)
932 height = 32;
933 if (height > maxh)
934 height = maxh;
935 if (width < 48)
936 width = 48;
937 if (width > maxw)
938 width = maxw;
939
940 mutex_lock(&dev->lock);
941
942 if (dev->is_em2800) {
943 /* the em2800 can only scale down to 50% */
944 if (height % (maxh / 2))
945 height = maxh;
946 if (width % (maxw / 2))
947 width = maxw;
948 /* according to empiatech support */
949 /* the MaxPacketSize is to small to support */
950 /* framesizes larger than 640x480 @ 30 fps */
951 /* or 640x576 @ 25 fps. As this would cut */
952 /* of a part of the image we prefer */
953 /* 360x576 or 360x480 for now */
954 if (width == maxw && height == maxh)
955 width /= 2;
956 }
957
958 get_scale(dev, width, height, &hscale, &vscale);
959
960 width = (((unsigned long)maxw) << 12) / (hscale + 4096L);
961 height = (((unsigned long)maxh) << 12) / (vscale + 4096L);
962
963 f->fmt.pix.width = width;
964 f->fmt.pix.height = height;
965 f->fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;
966 f->fmt.pix.bytesperline = width * 2;
967 f->fmt.pix.sizeimage = width * 2 * height;
968 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
969 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
970
971 mutex_unlock(&dev->lock);
972 return 0;
973}
974
975static int vidioc_s_fmt_cap(struct file *file, void *priv,
976 struct v4l2_format *f)
977{
978 struct em28xx_fh *fh = priv;
979 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -0300980 int rc;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300981
982 rc = check_dev(dev);
983 if (rc < 0)
984 return rc;
985
986 vidioc_try_fmt_cap(file, priv, f);
987
988 mutex_lock(&dev->lock);
989
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300990 /* set new image size */
991 dev->width = f->fmt.pix.width;
992 dev->height = f->fmt.pix.height;
993 dev->frame_size = dev->width * dev->height * 2;
994 dev->field_size = dev->frame_size >> 1;
995 dev->bytesperline = dev->width * 2;
996 get_scale(dev, dev->width, dev->height, &dev->hscale, &dev->vscale);
997
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300998 em28xx_set_alternate(dev);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -0300999 em28xx_resolution_set(dev);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001000
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001001 mutex_unlock(&dev->lock);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001002 return 0;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001003}
1004
1005static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *norm)
1006{
1007 struct em28xx_fh *fh = priv;
1008 struct em28xx *dev = fh->dev;
1009 struct v4l2_format f;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001010 int rc;
1011
1012 rc = check_dev(dev);
1013 if (rc < 0)
1014 return rc;
1015
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001016 mutex_lock(&dev->lock);
Mauro Carvalho Chehab7d497f82007-11-11 14:15:34 -03001017 dev->norm = *norm;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001018 mutex_unlock(&dev->lock);
1019
1020 /* Adjusts width/height, if needed */
1021 f.fmt.pix.width = dev->width;
1022 f.fmt.pix.height = dev->height;
1023 vidioc_try_fmt_cap(file, priv, &f);
1024
1025 mutex_lock(&dev->lock);
1026
1027 /* set new image size */
1028 dev->width = f.fmt.pix.width;
1029 dev->height = f.fmt.pix.height;
1030 dev->frame_size = dev->width * dev->height * 2;
1031 dev->field_size = dev->frame_size >> 1;
1032 dev->bytesperline = dev->width * 2;
1033 get_scale(dev, dev->width, dev->height, &dev->hscale, &dev->vscale);
1034
1035 em28xx_resolution_set(dev);
Mauro Carvalho Chehab7d497f82007-11-11 14:15:34 -03001036 em28xx_i2c_call_clients(dev, VIDIOC_S_STD, &dev->norm);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001037
1038 mutex_unlock(&dev->lock);
1039 return 0;
1040}
1041
1042static const char *iname[] = {
1043 [EM28XX_VMUX_COMPOSITE1] = "Composite1",
1044 [EM28XX_VMUX_COMPOSITE2] = "Composite2",
1045 [EM28XX_VMUX_COMPOSITE3] = "Composite3",
1046 [EM28XX_VMUX_COMPOSITE4] = "Composite4",
1047 [EM28XX_VMUX_SVIDEO] = "S-Video",
1048 [EM28XX_VMUX_TELEVISION] = "Television",
1049 [EM28XX_VMUX_CABLE] = "Cable TV",
1050 [EM28XX_VMUX_DVB] = "DVB",
1051 [EM28XX_VMUX_DEBUG] = "for debug only",
1052};
1053
1054static int vidioc_enum_input(struct file *file, void *priv,
1055 struct v4l2_input *i)
1056{
1057 struct em28xx_fh *fh = priv;
1058 struct em28xx *dev = fh->dev;
1059 unsigned int n;
1060
1061 n = i->index;
1062 if (n >= MAX_EM28XX_INPUT)
1063 return -EINVAL;
1064 if (0 == INPUT(n)->type)
1065 return -EINVAL;
1066
1067 i->index = n;
1068 i->type = V4L2_INPUT_TYPE_CAMERA;
1069
1070 strcpy(i->name, iname[INPUT(n)->type]);
1071
1072 if ((EM28XX_VMUX_TELEVISION == INPUT(n)->type) ||
1073 (EM28XX_VMUX_CABLE == INPUT(n)->type))
1074 i->type = V4L2_INPUT_TYPE_TUNER;
1075
Mauro Carvalho Chehab7d497f82007-11-11 14:15:34 -03001076 i->std = dev->vdev->tvnorms;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001077
1078 return 0;
1079}
1080
1081static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
1082{
1083 struct em28xx_fh *fh = priv;
1084 struct em28xx *dev = fh->dev;
1085
1086 *i = dev->ctl_input;
1087
1088 return 0;
1089}
1090
1091static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
1092{
1093 struct em28xx_fh *fh = priv;
1094 struct em28xx *dev = fh->dev;
1095 int rc;
1096
1097 rc = check_dev(dev);
1098 if (rc < 0)
1099 return rc;
1100
1101 if (i >= MAX_EM28XX_INPUT)
1102 return -EINVAL;
1103 if (0 == INPUT(i)->type)
1104 return -EINVAL;
1105
1106 mutex_lock(&dev->lock);
1107
1108 video_mux(dev, i);
1109
1110 mutex_unlock(&dev->lock);
1111 return 0;
1112}
1113
1114static int vidioc_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
1115{
1116 struct em28xx_fh *fh = priv;
1117 struct em28xx *dev = fh->dev;
1118 unsigned int index = a->index;
1119
1120 if (a->index > 1)
1121 return -EINVAL;
1122
1123 index = dev->ctl_ainput;
1124
1125 if (index == 0) {
1126 strcpy(a->name, "Television");
1127 } else {
1128 strcpy(a->name, "Line In");
1129 }
1130 a->capability = V4L2_AUDCAP_STEREO;
1131 a->index = index;
1132
1133 return 0;
1134}
1135
1136static int vidioc_s_audio(struct file *file, void *priv, struct v4l2_audio *a)
1137{
1138 struct em28xx_fh *fh = priv;
1139 struct em28xx *dev = fh->dev;
1140
1141 if (a->index != dev->ctl_ainput)
1142 return -EINVAL;
1143
1144 return 0;
1145}
1146
1147static int vidioc_queryctrl(struct file *file, void *priv,
1148 struct v4l2_queryctrl *qc)
1149{
1150 struct em28xx_fh *fh = priv;
1151 struct em28xx *dev = fh->dev;
1152 int id = qc->id;
1153 int i;
1154 int rc;
1155
1156 rc = check_dev(dev);
1157 if (rc < 0)
1158 return rc;
1159
1160 memset(qc, 0, sizeof(*qc));
1161
1162 qc->id = id;
1163
1164 if (!dev->has_msp34xx) {
1165 for (i = 0; i < ARRAY_SIZE(em28xx_qctrl); i++) {
1166 if (qc->id && qc->id == em28xx_qctrl[i].id) {
1167 memcpy(qc, &(em28xx_qctrl[i]), sizeof(*qc));
1168 return 0;
1169 }
1170 }
1171 }
1172 mutex_lock(&dev->lock);
1173 em28xx_i2c_call_clients(dev, VIDIOC_QUERYCTRL, qc);
1174 mutex_unlock(&dev->lock);
1175
1176 if (qc->type)
1177 return 0;
1178 else
1179 return -EINVAL;
1180}
1181
1182static int vidioc_g_ctrl(struct file *file, void *priv,
1183 struct v4l2_control *ctrl)
1184{
1185 struct em28xx_fh *fh = priv;
1186 struct em28xx *dev = fh->dev;
1187 int rc;
1188
1189 rc = check_dev(dev);
1190 if (rc < 0)
1191 return rc;
1192 mutex_lock(&dev->lock);
1193
1194 if (!dev->has_msp34xx)
1195 rc = em28xx_get_ctrl(dev, ctrl);
1196 else
1197 rc = -EINVAL;
1198
1199 if (rc == -EINVAL) {
1200 em28xx_i2c_call_clients(dev, VIDIOC_G_CTRL, ctrl);
1201 rc = 0;
1202 }
1203
1204 mutex_unlock(&dev->lock);
1205 return rc;
1206}
1207
1208static int vidioc_s_ctrl(struct file *file, void *priv,
1209 struct v4l2_control *ctrl)
1210{
1211 struct em28xx_fh *fh = priv;
1212 struct em28xx *dev = fh->dev;
1213 u8 i;
1214 int rc;
1215
1216 rc = check_dev(dev);
1217 if (rc < 0)
1218 return rc;
1219
1220 mutex_lock(&dev->lock);
1221
1222 if (dev->has_msp34xx)
1223 em28xx_i2c_call_clients(dev, VIDIOC_S_CTRL, ctrl);
1224 else {
1225 rc = 1;
1226 for (i = 0; i < ARRAY_SIZE(em28xx_qctrl); i++) {
1227 if (ctrl->id == em28xx_qctrl[i].id) {
1228 if (ctrl->value < em28xx_qctrl[i].minimum ||
1229 ctrl->value > em28xx_qctrl[i].maximum) {
1230 rc = -ERANGE;
1231 break;
1232 }
1233
1234 rc = em28xx_set_ctrl(dev, ctrl);
1235 break;
1236 }
1237 }
1238 }
1239
1240 /* Control not found - try to send it to the attached devices */
1241 if (rc == 1) {
1242 em28xx_i2c_call_clients(dev, VIDIOC_S_CTRL, ctrl);
1243 rc = 0;
1244 }
1245
1246 mutex_unlock(&dev->lock);
1247 return rc;
1248}
1249
1250static int vidioc_g_tuner(struct file *file, void *priv,
1251 struct v4l2_tuner *t)
1252{
1253 struct em28xx_fh *fh = priv;
1254 struct em28xx *dev = fh->dev;
1255 int rc;
1256
1257 rc = check_dev(dev);
1258 if (rc < 0)
1259 return rc;
1260
1261 if (0 != t->index)
1262 return -EINVAL;
1263
1264 strcpy(t->name, "Tuner");
1265
1266 mutex_lock(&dev->lock);
1267
1268 em28xx_i2c_call_clients(dev, VIDIOC_G_TUNER, t);
1269
1270 mutex_unlock(&dev->lock);
1271 return 0;
1272}
1273
1274static int vidioc_s_tuner(struct file *file, void *priv,
1275 struct v4l2_tuner *t)
1276{
1277 struct em28xx_fh *fh = priv;
1278 struct em28xx *dev = fh->dev;
1279 int rc;
1280
1281 rc = check_dev(dev);
1282 if (rc < 0)
1283 return rc;
1284
1285 if (0 != t->index)
1286 return -EINVAL;
1287
1288 mutex_lock(&dev->lock);
1289
1290 em28xx_i2c_call_clients(dev, VIDIOC_S_TUNER, t);
1291
1292 mutex_unlock(&dev->lock);
1293 return 0;
1294}
1295
1296static int vidioc_g_frequency(struct file *file, void *priv,
1297 struct v4l2_frequency *f)
1298{
1299 struct em28xx_fh *fh = priv;
1300 struct em28xx *dev = fh->dev;
1301
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001302 f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001303 f->frequency = dev->ctl_freq;
1304
1305 return 0;
1306}
1307
1308static int vidioc_s_frequency(struct file *file, void *priv,
1309 struct v4l2_frequency *f)
1310{
1311 struct em28xx_fh *fh = priv;
1312 struct em28xx *dev = fh->dev;
1313 int rc;
1314
1315 rc = check_dev(dev);
1316 if (rc < 0)
1317 return rc;
1318
1319 if (0 != f->tuner)
1320 return -EINVAL;
1321
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001322 if (unlikely(0 == fh->radio && f->type != V4L2_TUNER_ANALOG_TV))
1323 return -EINVAL;
1324 if (unlikely(1 == fh->radio && f->type != V4L2_TUNER_RADIO))
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001325 return -EINVAL;
1326
1327 mutex_lock(&dev->lock);
1328
1329 dev->ctl_freq = f->frequency;
1330 em28xx_i2c_call_clients(dev, VIDIOC_S_FREQUENCY, f);
1331
1332 mutex_unlock(&dev->lock);
1333 return 0;
1334}
1335
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001336#ifdef CONFIG_VIDEO_ADV_DEBUG
1337static int em28xx_reg_len(int reg)
1338{
1339 switch (reg) {
1340 case AC97LSB_REG:
1341 case HSCALELOW_REG:
1342 case VSCALELOW_REG:
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001343 return 2;
1344 default:
1345 return 1;
1346 }
1347}
1348
1349static int vidioc_g_register(struct file *file, void *priv,
1350 struct v4l2_register *reg)
1351{
1352 struct em28xx_fh *fh = priv;
1353 struct em28xx *dev = fh->dev;
1354 int ret;
1355
1356 if (!v4l2_chip_match_host(reg->match_type, reg->match_chip))
1357 return -EINVAL;
1358
1359 if (em28xx_reg_len(reg->reg) == 1) {
1360 ret = em28xx_read_reg(dev, reg->reg);
1361 if (ret < 0)
1362 return ret;
1363
1364 reg->val = ret;
1365 } else {
Mauro Carvalho Chehab0df81302008-02-06 15:56:16 -03001366 u64 val = 0;
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001367 ret = em28xx_read_reg_req_len(dev, USB_REQ_GET_STATUS,
1368 reg->reg, (char *)&val, 2);
1369 if (ret < 0)
1370 return ret;
1371
Mauro Carvalho Chehab0df81302008-02-06 15:56:16 -03001372 reg->val = cpu_to_le64((__u64)val);
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001373 }
1374
1375 return 0;
1376}
1377
1378static int vidioc_s_register(struct file *file, void *priv,
1379 struct v4l2_register *reg)
1380{
1381 struct em28xx_fh *fh = priv;
1382 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehab0df81302008-02-06 15:56:16 -03001383 u64 buf;
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001384
Mauro Carvalho Chehab0df81302008-02-06 15:56:16 -03001385 buf = le64_to_cpu((__u64)reg->val);
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001386
1387 return em28xx_write_regs(dev, reg->reg, (char *)&buf,
1388 em28xx_reg_len(reg->reg));
1389}
1390#endif
1391
1392
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001393static int vidioc_cropcap(struct file *file, void *priv,
1394 struct v4l2_cropcap *cc)
1395{
1396 struct em28xx_fh *fh = priv;
1397 struct em28xx *dev = fh->dev;
1398
1399 if (cc->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1400 return -EINVAL;
1401
1402 cc->bounds.left = 0;
1403 cc->bounds.top = 0;
1404 cc->bounds.width = dev->width;
1405 cc->bounds.height = dev->height;
1406 cc->defrect = cc->bounds;
1407 cc->pixelaspect.numerator = 54; /* 4:3 FIXME: remove magic numbers */
1408 cc->pixelaspect.denominator = 59;
1409
1410 return 0;
1411}
1412
1413static int vidioc_streamon(struct file *file, void *priv,
1414 enum v4l2_buf_type type)
1415{
1416 struct em28xx_fh *fh = priv;
1417 struct em28xx *dev = fh->dev;
1418 int rc;
1419
1420 rc = check_dev(dev);
1421 if (rc < 0)
1422 return rc;
1423
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001424
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001425 if (unlikely(res_get(fh) < 0))
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001426 return -EBUSY;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001427
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001428 return (videobuf_streamon(&fh->vb_vidq));
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001429}
1430
1431static int vidioc_streamoff(struct file *file, void *priv,
1432 enum v4l2_buf_type type)
1433{
1434 struct em28xx_fh *fh = priv;
1435 struct em28xx *dev = fh->dev;
1436 int rc;
1437
1438 rc = check_dev(dev);
1439 if (rc < 0)
1440 return rc;
1441
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001442 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1443 return -EINVAL;
1444 if (type != fh->type)
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001445 return -EINVAL;
1446
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001447 videobuf_streamoff(&fh->vb_vidq);
1448 res_free(fh);
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001449
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001450 return 0;
1451}
1452
1453static int vidioc_querycap(struct file *file, void *priv,
1454 struct v4l2_capability *cap)
1455{
1456 struct em28xx_fh *fh = priv;
1457 struct em28xx *dev = fh->dev;
1458
1459 strlcpy(cap->driver, "em28xx", sizeof(cap->driver));
1460 strlcpy(cap->card, em28xx_boards[dev->model].name, sizeof(cap->card));
1461 strlcpy(cap->bus_info, dev->udev->dev.bus_id, sizeof(cap->bus_info));
1462
1463 cap->version = EM28XX_VERSION_CODE;
1464
1465 cap->capabilities =
1466 V4L2_CAP_SLICED_VBI_CAPTURE |
1467 V4L2_CAP_VIDEO_CAPTURE |
1468 V4L2_CAP_AUDIO |
1469 V4L2_CAP_READWRITE | V4L2_CAP_STREAMING;
1470
Mauro Carvalho Chehabed086312008-01-24 06:59:20 -03001471 if (dev->tuner_type != TUNER_ABSENT)
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001472 cap->capabilities |= V4L2_CAP_TUNER;
1473
1474 return 0;
1475}
1476
1477static int vidioc_enum_fmt_cap(struct file *file, void *priv,
1478 struct v4l2_fmtdesc *fmtd)
1479{
1480 if (fmtd->index != 0)
1481 return -EINVAL;
1482
1483 fmtd->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1484 strcpy(fmtd->description, "Packed YUY2");
1485 fmtd->pixelformat = V4L2_PIX_FMT_YUYV;
1486 memset(fmtd->reserved, 0, sizeof(fmtd->reserved));
1487
1488 return 0;
1489}
1490
1491/* Sliced VBI ioctls */
1492static int vidioc_g_fmt_vbi_capture(struct file *file, void *priv,
1493 struct v4l2_format *f)
1494{
1495 struct em28xx_fh *fh = priv;
1496 struct em28xx *dev = fh->dev;
1497 int rc;
1498
1499 rc = check_dev(dev);
1500 if (rc < 0)
1501 return rc;
1502
1503 mutex_lock(&dev->lock);
1504
1505 f->fmt.sliced.service_set = 0;
1506
1507 em28xx_i2c_call_clients(dev, VIDIOC_G_FMT, f);
1508
1509 if (f->fmt.sliced.service_set == 0)
1510 rc = -EINVAL;
1511
1512 mutex_unlock(&dev->lock);
1513 return rc;
1514}
1515
1516static int vidioc_try_set_vbi_capture(struct file *file, void *priv,
1517 struct v4l2_format *f)
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
1527 mutex_lock(&dev->lock);
1528 em28xx_i2c_call_clients(dev, VIDIOC_G_FMT, f);
1529 mutex_unlock(&dev->lock);
1530
1531 if (f->fmt.sliced.service_set == 0)
1532 return -EINVAL;
1533
1534 return 0;
1535}
1536
1537
1538static int vidioc_reqbufs(struct file *file, void *priv,
1539 struct v4l2_requestbuffers *rb)
1540{
1541 struct em28xx_fh *fh = priv;
1542 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001543 int rc;
1544
1545 rc = check_dev(dev);
1546 if (rc < 0)
1547 return rc;
1548
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001549 return (videobuf_reqbufs(&fh->vb_vidq, rb));
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001550}
1551
1552static int vidioc_querybuf(struct file *file, void *priv,
1553 struct v4l2_buffer *b)
1554{
1555 struct em28xx_fh *fh = priv;
1556 struct em28xx *dev = fh->dev;
1557 int rc;
1558
1559 rc = check_dev(dev);
1560 if (rc < 0)
1561 return rc;
1562
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001563 return (videobuf_querybuf(&fh->vb_vidq, b));
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001564}
1565
1566static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
1567{
1568 struct em28xx_fh *fh = priv;
1569 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001570 int rc;
1571
1572 rc = check_dev(dev);
1573 if (rc < 0)
1574 return rc;
1575
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001576 return (videobuf_qbuf(&fh->vb_vidq, b));
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001577}
1578
1579static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
1580{
1581 struct em28xx_fh *fh = priv;
1582 struct em28xx *dev = fh->dev;
1583 int rc;
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001584
1585 rc = check_dev(dev);
1586 if (rc < 0)
1587 return rc;
1588
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001589 return (videobuf_dqbuf(&fh->vb_vidq, b,
1590 file->f_flags & O_NONBLOCK));
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001591}
1592
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001593#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -03001594static int vidiocgmbuf(struct file *file, void *priv, struct video_mbuf *mbuf)
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001595{
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -03001596 struct em28xx_fh *fh = priv;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001597
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -03001598 return videobuf_cgmbuf(&fh->vb_vidq, mbuf, 8);
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001599}
1600#endif
1601
1602
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001603/* ----------------------------------------------------------- */
1604/* RADIO ESPECIFIC IOCTLS */
1605/* ----------------------------------------------------------- */
1606
1607static int radio_querycap(struct file *file, void *priv,
1608 struct v4l2_capability *cap)
1609{
1610 struct em28xx *dev = ((struct em28xx_fh *)priv)->dev;
1611
1612 strlcpy(cap->driver, "em28xx", sizeof(cap->driver));
1613 strlcpy(cap->card, em28xx_boards[dev->model].name, sizeof(cap->card));
1614 strlcpy(cap->bus_info, dev->udev->dev.bus_id, sizeof(cap->bus_info));
1615
1616 cap->version = EM28XX_VERSION_CODE;
1617 cap->capabilities = V4L2_CAP_TUNER;
1618 return 0;
1619}
1620
1621static int radio_g_tuner(struct file *file, void *priv,
1622 struct v4l2_tuner *t)
1623{
1624 struct em28xx *dev = ((struct em28xx_fh *)priv)->dev;
1625
1626 if (unlikely(t->index > 0))
1627 return -EINVAL;
1628
1629 strcpy(t->name, "Radio");
1630 t->type = V4L2_TUNER_RADIO;
1631
1632 em28xx_i2c_call_clients(dev, VIDIOC_G_TUNER, t);
1633 return 0;
1634}
1635
1636static int radio_enum_input(struct file *file, void *priv,
1637 struct v4l2_input *i)
1638{
1639 if (i->index != 0)
1640 return -EINVAL;
1641 strcpy(i->name, "Radio");
1642 i->type = V4L2_INPUT_TYPE_TUNER;
1643
1644 return 0;
1645}
1646
1647static int radio_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
1648{
1649 if (unlikely(a->index))
1650 return -EINVAL;
1651
1652 strcpy(a->name, "Radio");
1653 return 0;
1654}
1655
1656static int radio_s_tuner(struct file *file, void *priv,
1657 struct v4l2_tuner *t)
1658{
1659 struct em28xx *dev = ((struct em28xx_fh *)priv)->dev;
1660
1661 if (0 != t->index)
1662 return -EINVAL;
1663
1664 em28xx_i2c_call_clients(dev, VIDIOC_S_TUNER, t);
1665
1666 return 0;
1667}
1668
1669static int radio_s_audio(struct file *file, void *fh,
1670 struct v4l2_audio *a)
1671{
1672 return 0;
1673}
1674
1675static int radio_s_input(struct file *file, void *fh, unsigned int i)
1676{
1677 return 0;
1678}
1679
1680static int radio_queryctrl(struct file *file, void *priv,
1681 struct v4l2_queryctrl *qc)
1682{
1683 int i;
1684
1685 if (qc->id < V4L2_CID_BASE ||
1686 qc->id >= V4L2_CID_LASTP1)
1687 return -EINVAL;
1688
1689 for (i = 0; i < ARRAY_SIZE(em28xx_qctrl); i++) {
1690 if (qc->id && qc->id == em28xx_qctrl[i].id) {
1691 memcpy(qc, &(em28xx_qctrl[i]), sizeof(*qc));
1692 return 0;
1693 }
1694 }
1695
1696 return -EINVAL;
1697}
1698
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001699/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001700 * em28xx_v4l2_open()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001701 * inits the device and starts isoc transfer
1702 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001703static int em28xx_v4l2_open(struct inode *inode, struct file *filp)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001704{
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001705 int minor = iminor(inode);
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001706 int errCode = 0, radio = 0;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001707 struct em28xx *h,*dev = NULL;
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001708 struct em28xx_fh *fh;
Aidan Thorntond7aa8022008-04-13 14:38:47 -03001709 enum v4l2_buf_type fh_type = 0;
Markus Rechberger9c755412005-11-08 21:37:52 -08001710
Trent Piephoa991f442007-10-10 05:37:43 -03001711 list_for_each_entry(h, &em28xx_devlist, devlist) {
Markus Rechberger9c755412005-11-08 21:37:52 -08001712 if (h->vdev->minor == minor) {
1713 dev = h;
Aidan Thorntond7aa8022008-04-13 14:38:47 -03001714 fh_type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001715 }
1716 if (h->vbi_dev->minor == minor) {
1717 dev = h;
Aidan Thorntond7aa8022008-04-13 14:38:47 -03001718 fh_type = V4L2_BUF_TYPE_VBI_CAPTURE;
Markus Rechberger9c755412005-11-08 21:37:52 -08001719 }
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001720 if (h->radio_dev &&
1721 h->radio_dev->minor == minor) {
1722 radio = 1;
1723 dev = h;
1724 }
Markus Rechberger9c755412005-11-08 21:37:52 -08001725 }
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001726 if (NULL == dev)
1727 return -ENODEV;
Markus Rechberger9c755412005-11-08 21:37:52 -08001728
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001729 em28xx_videodbg("open minor=%d type=%s users=%d\n",
Aidan Thorntond7aa8022008-04-13 14:38:47 -03001730 minor, v4l2_type_names[fh_type], dev->users);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001731
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001732 fh = kzalloc(sizeof(struct em28xx_fh), GFP_KERNEL);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001733
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001734 if (!fh) {
1735 em28xx_errdev("em28xx-video.c: Out of memory?!\n");
1736 return -ENOMEM;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001737 }
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001738 mutex_lock(&dev->lock);
1739 fh->dev = dev;
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001740 fh->radio = radio;
Aidan Thorntond7aa8022008-04-13 14:38:47 -03001741 fh->type = fh_type;
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001742 filp->private_data = fh;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001743
Aidan Thorntond7aa8022008-04-13 14:38:47 -03001744 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE && dev->users == 0) {
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001745 dev->width = norm_maxw(dev);
1746 dev->height = norm_maxh(dev);
1747 dev->frame_size = dev->width * dev->height * 2;
1748 dev->field_size = dev->frame_size >> 1; /*both_fileds ? dev->frame_size>>1 : dev->frame_size; */
1749 dev->bytesperline = dev->width * 2;
1750 dev->hscale = 0;
1751 dev->vscale = 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001752
Mauro Carvalho Chehab3687e1e2008-02-08 15:44:25 -03001753 em28xx_set_alternate(dev);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001754 em28xx_resolution_set(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001755
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001756 }
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001757 if (fh->radio) {
1758 em28xx_videodbg("video_open: setting radio device\n");
1759 em28xx_i2c_call_clients(dev, AUDC_SET_RADIO, NULL);
1760 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001761
1762 dev->users++;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001763
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001764 videobuf_queue_vmalloc_init(&fh->vb_vidq, &em28xx_video_qops,
1765 NULL, &dev->slock, fh->type, V4L2_FIELD_INTERLACED,
1766 sizeof(struct em28xx_buffer), fh);
1767
Ingo Molnar3593cab2006-02-07 06:49:14 -02001768 mutex_unlock(&dev->lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001769 return errCode;
1770}
1771
1772/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001773 * em28xx_realease_resources()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001774 * unregisters the v4l2,i2c and usb devices
1775 * called when the device gets disconected or at module unload
1776*/
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001777static void em28xx_release_resources(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001778{
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001779
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001780 /*FIXME: I2C IR should be disconnected */
1781
1782 em28xx_info("V4L2 devices /dev/video%d and /dev/vbi%d deregistered\n",
1783 dev->vdev->minor-MINOR_VFL_TYPE_GRABBER_MIN,
1784 dev->vbi_dev->minor-MINOR_VFL_TYPE_VBI_MIN);
Markus Rechberger9c755412005-11-08 21:37:52 -08001785 list_del(&dev->devlist);
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001786 if (dev->radio_dev) {
1787 if (-1 != dev->radio_dev->minor)
1788 video_unregister_device(dev->radio_dev);
1789 else
1790 video_device_release(dev->radio_dev);
1791 dev->radio_dev = NULL;
1792 }
1793 if (dev->vbi_dev) {
1794 if (-1 != dev->vbi_dev->minor)
1795 video_unregister_device(dev->vbi_dev);
1796 else
1797 video_device_release(dev->vbi_dev);
1798 dev->vbi_dev = NULL;
1799 }
1800 if (dev->vdev) {
1801 if (-1 != dev->vdev->minor)
1802 video_unregister_device(dev->vdev);
1803 else
1804 video_device_release(dev->vdev);
1805 dev->vdev = NULL;
1806 }
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001807 em28xx_i2c_unregister(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001808 usb_put_dev(dev->udev);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001809
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001810 /* Mark device as unused */
1811 em28xx_devused&=~(1<<dev->devno);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001812}
1813
1814/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001815 * em28xx_v4l2_close()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001816 * stops streaming and deallocates all resources allocated by the v4l2 calls and ioctls
1817 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001818static int em28xx_v4l2_close(struct inode *inode, struct file *filp)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001819{
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001820 struct em28xx_fh *fh = filp->private_data;
1821 struct em28xx *dev = fh->dev;
1822 int errCode;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001823
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -08001824 em28xx_videodbg("users=%d\n", dev->users);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001825
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -03001826
1827 if (res_check(fh))
1828 res_free(fh);
1829
Ingo Molnar3593cab2006-02-07 06:49:14 -02001830 mutex_lock(&dev->lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001831
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001832 if (dev->users == 1) {
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001833 videobuf_stop(&fh->vb_vidq);
1834 videobuf_mmap_free(&fh->vb_vidq);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001835
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001836 /* the device is already disconnect,
1837 free the remaining resources */
1838 if (dev->state & DEV_DISCONNECTED) {
1839 em28xx_release_resources(dev);
1840 mutex_unlock(&dev->lock);
1841 kfree(dev);
1842 return 0;
1843 }
1844
Aidan Thorntond7aa8022008-04-13 14:38:47 -03001845 /* do this before setting alternate! */
1846 em28xx_uninit_isoc(dev);
1847
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001848 /* set alternate 0 */
1849 dev->alt = 0;
1850 em28xx_videodbg("setting alternate 0\n");
1851 errCode = usb_set_interface(dev->udev, 0, 0);
1852 if (errCode < 0) {
1853 em28xx_errdev("cannot change alternate number to "
1854 "0 (error=%i)\n", errCode);
1855 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001856 }
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001857 kfree(fh);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001858 dev->users--;
1859 wake_up_interruptible_nr(&dev->open, 1);
Ingo Molnar3593cab2006-02-07 06:49:14 -02001860 mutex_unlock(&dev->lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001861 return 0;
1862}
1863
1864/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001865 * em28xx_v4l2_read()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001866 * will allocate buffers when called for the first time
1867 */
1868static ssize_t
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001869em28xx_v4l2_read(struct file *filp, char __user * buf, size_t count,
Mauro Carvalho Chehabf245e542008-04-13 14:41:23 -03001870 loff_t *pos)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001871{
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001872 struct em28xx_fh *fh = filp->private_data;
1873 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001874 int rc;
1875
1876 rc = check_dev(dev);
1877 if (rc < 0)
1878 return rc;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001879
Mauro Carvalho Chehab9e31ced2007-11-11 01:13:49 -03001880 /* FIXME: read() is not prepared to allow changing the video
1881 resolution while streaming. Seems a bug at em28xx_set_fmt
1882 */
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -03001883
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001884 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
1885 if (unlikely(res_get(fh)))
1886 return -EBUSY;
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -03001887
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001888 return videobuf_read_stream(&fh->vb_vidq, buf, count, pos, 0,
1889 filp->f_flags & O_NONBLOCK);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001890 }
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001891 return 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001892}
1893
1894/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001895 * em28xx_v4l2_poll()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001896 * will allocate buffers when called for the first time
1897 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001898static unsigned int em28xx_v4l2_poll(struct file *filp, poll_table * wait)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001899{
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001900 struct em28xx_fh *fh = filp->private_data;
1901 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001902 int rc;
1903
1904 rc = check_dev(dev);
1905 if (rc < 0)
1906 return rc;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001907
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -03001908 if (unlikely(res_get(fh) < 0))
1909 return POLLERR;
1910
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001911 if (V4L2_BUF_TYPE_VIDEO_CAPTURE != fh->type)
1912 return POLLERR;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001913
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001914 return videobuf_poll_stream(filp, &fh->vb_vidq, wait);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001915}
1916
1917/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001918 * em28xx_v4l2_mmap()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001919 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001920static int em28xx_v4l2_mmap(struct file *filp, struct vm_area_struct *vma)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001921{
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001922 struct em28xx_fh *fh = filp->private_data;
1923 struct em28xx *dev = fh->dev;
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001924 int rc;
Markus Rechberger9c755412005-11-08 21:37:52 -08001925
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -03001926 if (unlikely(res_get(fh) < 0))
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001927 return -EBUSY;
Mauro Carvalho Chehaba2254522007-11-11 01:08:26 -03001928
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001929 rc = check_dev(dev);
1930 if (rc < 0)
1931 return rc;
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03001932
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001933 rc = videobuf_mmap_mapper(&fh->vb_vidq, vma);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001934
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001935 em28xx_videodbg("vma start=0x%08lx, size=%ld, ret=%d\n",
1936 (unsigned long)vma->vm_start,
1937 (unsigned long)vma->vm_end-(unsigned long)vma->vm_start,
1938 rc);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001939
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03001940 return rc;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001941}
1942
Arjan van de Venfa027c22007-02-12 00:55:33 -08001943static const struct file_operations em28xx_v4l_fops = {
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001944 .owner = THIS_MODULE,
1945 .open = em28xx_v4l2_open,
1946 .release = em28xx_v4l2_close,
1947 .read = em28xx_v4l2_read,
1948 .poll = em28xx_v4l2_poll,
1949 .mmap = em28xx_v4l2_mmap,
1950 .ioctl = video_ioctl2,
1951 .llseek = no_llseek,
1952 .compat_ioctl = v4l_compat_ioctl32,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001953};
1954
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03001955static const struct file_operations radio_fops = {
1956 .owner = THIS_MODULE,
1957 .open = em28xx_v4l2_open,
1958 .release = em28xx_v4l2_close,
1959 .ioctl = video_ioctl2,
1960 .compat_ioctl = v4l_compat_ioctl32,
1961 .llseek = no_llseek,
1962};
1963
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03001964static const struct video_device em28xx_video_template = {
1965 .fops = &em28xx_v4l_fops,
1966 .release = video_device_release,
1967
1968 .minor = -1,
1969 .vidioc_querycap = vidioc_querycap,
1970 .vidioc_enum_fmt_cap = vidioc_enum_fmt_cap,
1971 .vidioc_g_fmt_cap = vidioc_g_fmt_cap,
1972 .vidioc_try_fmt_cap = vidioc_try_fmt_cap,
1973 .vidioc_s_fmt_cap = vidioc_s_fmt_cap,
1974 .vidioc_g_audio = vidioc_g_audio,
1975 .vidioc_s_audio = vidioc_s_audio,
1976 .vidioc_cropcap = vidioc_cropcap,
1977
1978 .vidioc_g_fmt_vbi_capture = vidioc_g_fmt_vbi_capture,
1979 .vidioc_try_fmt_vbi_capture = vidioc_try_set_vbi_capture,
1980 .vidioc_s_fmt_vbi_capture = vidioc_try_set_vbi_capture,
1981
1982 .vidioc_reqbufs = vidioc_reqbufs,
1983 .vidioc_querybuf = vidioc_querybuf,
1984 .vidioc_qbuf = vidioc_qbuf,
1985 .vidioc_dqbuf = vidioc_dqbuf,
1986 .vidioc_s_std = vidioc_s_std,
1987 .vidioc_enum_input = vidioc_enum_input,
1988 .vidioc_g_input = vidioc_g_input,
1989 .vidioc_s_input = vidioc_s_input,
1990 .vidioc_queryctrl = vidioc_queryctrl,
1991 .vidioc_g_ctrl = vidioc_g_ctrl,
1992 .vidioc_s_ctrl = vidioc_s_ctrl,
1993 .vidioc_streamon = vidioc_streamon,
1994 .vidioc_streamoff = vidioc_streamoff,
1995 .vidioc_g_tuner = vidioc_g_tuner,
1996 .vidioc_s_tuner = vidioc_s_tuner,
1997 .vidioc_g_frequency = vidioc_g_frequency,
1998 .vidioc_s_frequency = vidioc_s_frequency,
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03001999#ifdef CONFIG_VIDEO_ADV_DEBUG
2000 .vidioc_g_register = vidioc_g_register,
2001 .vidioc_s_register = vidioc_s_register,
2002#endif
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002003#ifdef CONFIG_VIDEO_V4L1_COMPAT
2004 .vidiocgmbuf = vidiocgmbuf,
2005#endif
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002006
2007 .tvnorms = V4L2_STD_ALL,
Mauro Carvalho Chehab7d497f82007-11-11 14:15:34 -03002008 .current_norm = V4L2_STD_PAL,
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002009};
2010
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002011static struct video_device em28xx_radio_template = {
2012 .name = "em28xx-radio",
2013 .type = VID_TYPE_TUNER,
2014 .fops = &radio_fops,
2015 .minor = -1,
2016 .vidioc_querycap = radio_querycap,
2017 .vidioc_g_tuner = radio_g_tuner,
2018 .vidioc_enum_input = radio_enum_input,
2019 .vidioc_g_audio = radio_g_audio,
2020 .vidioc_s_tuner = radio_s_tuner,
2021 .vidioc_s_audio = radio_s_audio,
2022 .vidioc_s_input = radio_s_input,
2023 .vidioc_queryctrl = radio_queryctrl,
2024 .vidioc_g_ctrl = vidioc_g_ctrl,
2025 .vidioc_s_ctrl = vidioc_s_ctrl,
2026 .vidioc_g_frequency = vidioc_g_frequency,
2027 .vidioc_s_frequency = vidioc_s_frequency,
Mauro Carvalho Chehab1e7ad562008-02-06 09:00:41 -03002028#ifdef CONFIG_VIDEO_ADV_DEBUG
2029 .vidioc_g_register = vidioc_g_register,
2030 .vidioc_s_register = vidioc_s_register,
2031#endif
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002032};
2033
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002034/******************************** usb interface *****************************************/
2035
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -03002036
2037static LIST_HEAD(em28xx_extension_devlist);
2038static DEFINE_MUTEX(em28xx_extension_devlist_lock);
2039
2040int em28xx_register_extension(struct em28xx_ops *ops)
2041{
2042 struct em28xx *h, *dev = NULL;
2043
2044 list_for_each_entry(h, &em28xx_devlist, devlist)
2045 dev = h;
2046
2047 mutex_lock(&em28xx_extension_devlist_lock);
2048 list_add_tail(&ops->next, &em28xx_extension_devlist);
2049 if (dev)
2050 ops->init(dev);
2051
2052 printk(KERN_INFO "Em28xx: Initialized (%s) extension\n", ops->name);
2053 mutex_unlock(&em28xx_extension_devlist_lock);
2054
2055 return 0;
2056}
2057EXPORT_SYMBOL(em28xx_register_extension);
2058
2059void em28xx_unregister_extension(struct em28xx_ops *ops)
2060{
2061 struct em28xx *h, *dev = NULL;
2062
2063 list_for_each_entry(h, &em28xx_devlist, devlist)
2064 dev = h;
2065
2066 if (dev)
2067 ops->fini(dev);
2068
2069 mutex_lock(&em28xx_extension_devlist_lock);
2070 printk(KERN_INFO "Em28xx: Removed (%s) extension\n", ops->name);
2071 list_del(&ops->next);
2072 mutex_unlock(&em28xx_extension_devlist_lock);
2073}
2074EXPORT_SYMBOL(em28xx_unregister_extension);
2075
Adrian Bunk532fe652008-01-28 22:10:48 -03002076static struct video_device *em28xx_vdev_init(struct em28xx *dev,
2077 const struct video_device *template,
2078 const int type,
2079 const char *type_name)
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002080{
2081 struct video_device *vfd;
2082
2083 vfd = video_device_alloc();
2084 if (NULL == vfd)
2085 return NULL;
2086 *vfd = *template;
2087 vfd->minor = -1;
2088 vfd->dev = &dev->udev->dev;
2089 vfd->release = video_device_release;
2090 vfd->type = type;
2091
2092 snprintf(vfd->name, sizeof(vfd->name), "%s %s",
2093 dev->name, type_name);
2094
2095 return vfd;
2096}
2097
2098
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002099/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002100 * em28xx_init_dev()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002101 * allocates and inits the device structs, registers i2c bus and v4l device
2102 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002103static int em28xx_init_dev(struct em28xx **devhandle, struct usb_device *udev,
Mauro Carvalho Chehab03910cc2007-11-03 21:20:59 -03002104 int minor)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002105{
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -03002106 struct em28xx_ops *ops = NULL;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002107 struct em28xx *dev = *devhandle;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002108 int retval = -ENOMEM;
Mauro Carvalho Chehab7d497f82007-11-11 14:15:34 -03002109 int errCode;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002110 unsigned int maxh, maxw;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002111
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002112 dev->udev = udev;
Ingo Molnar3593cab2006-02-07 06:49:14 -02002113 mutex_init(&dev->lock);
Aidan Thorntond7aa8022008-04-13 14:38:47 -03002114 spin_lock_init(&dev->slock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002115 init_waitqueue_head(&dev->open);
Mauro Carvalho Chehaba3a048c2007-11-10 22:21:01 -03002116 init_waitqueue_head(&dev->wait_frame);
2117 init_waitqueue_head(&dev->wait_stream);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002118
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002119 dev->em28xx_write_regs = em28xx_write_regs;
2120 dev->em28xx_read_reg = em28xx_read_reg;
2121 dev->em28xx_read_reg_req_len = em28xx_read_reg_req_len;
2122 dev->em28xx_write_regs_req = em28xx_write_regs_req;
2123 dev->em28xx_read_reg_req = em28xx_read_reg_req;
Sascha Sommerfad7b952007-11-04 08:06:48 -03002124 dev->is_em2800 = em28xx_boards[dev->model].is_em2800;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002125
Mauro Carvalho Chehabd7448a82008-01-05 09:59:03 -03002126 errCode = em28xx_read_reg(dev, CHIPID_REG);
2127 if (errCode >= 0)
2128 em28xx_info("em28xx chip ID = %d\n", errCode);
2129
Mauro Carvalho Chehab03910cc2007-11-03 21:20:59 -03002130 em28xx_pre_card_setup(dev);
2131
2132 errCode = em28xx_config(dev);
2133 if (errCode) {
2134 em28xx_errdev("error configuring device\n");
2135 em28xx_devused &= ~(1<<dev->devno);
2136 kfree(dev);
2137 return -ENOMEM;
2138 }
2139
Mauro Carvalho Chehab03910cc2007-11-03 21:20:59 -03002140 /* register i2c bus */
2141 em28xx_i2c_register(dev);
2142
2143 /* Do board specific init and eeprom reading */
2144 em28xx_card_setup(dev);
2145
Mauro Carvalho Chehab3abee532008-01-05 17:01:41 -03002146 /* Configure audio */
2147 em28xx_audio_analog_set(dev);
2148
Mauro Carvalho Chehab03910cc2007-11-03 21:20:59 -03002149 /* configure the device */
2150 em28xx_config_i2c(dev);
2151
Mauro Carvalho Chehab7d497f82007-11-11 14:15:34 -03002152 /* set default norm */
2153 dev->norm = em28xx_video_template.current_norm;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002154
2155 maxw = norm_maxw(dev);
2156 maxh = norm_maxh(dev);
2157
2158 /* set default image size */
2159 dev->width = maxw;
2160 dev->height = maxh;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002161 dev->interlaced = EM28XX_INTERLACED_DEFAULT;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002162 dev->field_size = dev->width * dev->height;
2163 dev->frame_size =
2164 dev->interlaced ? dev->field_size << 1 : dev->field_size;
2165 dev->bytesperline = dev->width * 2;
2166 dev->hscale = 0;
2167 dev->vscale = 0;
2168 dev->ctl_input = 2;
2169
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002170 errCode = em28xx_config(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002171
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002172 list_add_tail(&dev->devlist, &em28xx_devlist);
2173
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002174 /* allocate and fill video video_device struct */
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002175 dev->vdev = em28xx_vdev_init(dev, &em28xx_video_template,
2176 VID_TYPE_CAPTURE, "video");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002177 if (NULL == dev->vdev) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002178 em28xx_errdev("cannot allocate video_device.\n");
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002179 goto fail_unreg;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002180 }
Mauro Carvalho Chehabed086312008-01-24 06:59:20 -03002181 if (dev->tuner_type != TUNER_ABSENT)
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002182 dev->vdev->type |= VID_TYPE_TUNER;
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002183
2184 /* register v4l2 video video_device */
2185 retval = video_register_device(dev->vdev, VFL_TYPE_GRABBER,
2186 video_nr[dev->devno]);
2187 if (retval) {
2188 em28xx_errdev("unable to register video device (error=%i).\n",
2189 retval);
2190 goto fail_unreg;
2191 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002192
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002193 /* Allocate and fill vbi video_device struct */
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002194 dev->vbi_dev = em28xx_vdev_init(dev, &em28xx_video_template,
2195 VFL_TYPE_VBI, "vbi");
2196 /* register v4l2 vbi video_device */
2197 if (video_register_device(dev->vbi_dev, VFL_TYPE_VBI,
2198 vbi_nr[dev->devno]) < 0) {
2199 em28xx_errdev("unable to register vbi device\n");
2200 retval = -ENODEV;
2201 goto fail_unreg;
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002202 }
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002203
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002204 if (em28xx_boards[dev->model].radio.type == EM28XX_RADIO) {
2205 dev->radio_dev = em28xx_vdev_init(dev, &em28xx_radio_template,
2206 VFL_TYPE_RADIO, "radio");
2207 if (NULL == dev->radio_dev) {
2208 em28xx_errdev("cannot allocate video_device.\n");
2209 goto fail_unreg;
2210 }
2211 retval = video_register_device(dev->radio_dev, VFL_TYPE_RADIO,
2212 radio_nr[dev->devno]);
2213 if (retval < 0) {
2214 em28xx_errdev("can't register radio device\n");
2215 goto fail_unreg;
2216 }
2217 em28xx_info("Registered radio device as /dev/radio%d\n",
2218 dev->radio_dev->minor & 0x1f);
2219 }
2220
Mauro Carvalho Chehabad0ebb92008-04-13 14:37:52 -03002221 /* init video dma queues */
2222 INIT_LIST_HEAD(&dev->vidq.active);
2223 INIT_LIST_HEAD(&dev->vidq.queued);
2224
2225 dev->vidq.timeout.function = em28xx_vid_timeout;
2226 dev->vidq.timeout.data = (unsigned long)dev;
2227 init_timer(&dev->vidq.timeout);
2228
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002229
Sascha Sommer5a804152007-11-03 21:22:38 -03002230 if (dev->has_msp34xx) {
2231 /* Send a reset to other chips via gpio */
2232 em28xx_write_regs_req(dev, 0x00, 0x08, "\xf7", 1);
2233 msleep(3);
2234 em28xx_write_regs_req(dev, 0x00, 0x08, "\xff", 1);
2235 msleep(3);
Sascha Sommer5a804152007-11-03 21:22:38 -03002236 }
Mauro Carvalho Chehab195a4ef2007-11-11 13:17:17 -03002237
Sascha Sommer5a804152007-11-03 21:22:38 -03002238 video_mux(dev, 0);
2239
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002240 em28xx_info("V4L2 device registered as /dev/video%d and /dev/vbi%d\n",
2241 dev->vdev->minor-MINOR_VFL_TYPE_GRABBER_MIN,
2242 dev->vbi_dev->minor-MINOR_VFL_TYPE_VBI_MIN);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002243
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -03002244 mutex_lock(&em28xx_extension_devlist_lock);
2245 if (!list_empty(&em28xx_extension_devlist)) {
2246 list_for_each_entry(ops, &em28xx_extension_devlist, next) {
2247 if (ops->id)
2248 ops->init(dev);
2249 }
2250 }
2251 mutex_unlock(&em28xx_extension_devlist_lock);
2252
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002253 return 0;
Mauro Carvalho Chehab0be43752008-01-05 17:22:01 -03002254
2255fail_unreg:
2256 em28xx_release_resources(dev);
2257 mutex_unlock(&dev->lock);
2258 kfree(dev);
2259 return retval;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002260}
2261
Mauro Carvalho Chehabd7448a82008-01-05 09:59:03 -03002262#if defined(CONFIG_MODULES) && defined(MODULE)
2263static void request_module_async(struct work_struct *work)
2264{
2265 struct em28xx *dev = container_of(work,
2266 struct em28xx, request_module_wk);
2267
Mauro Carvalho Chehab3f4dfe22008-01-06 09:54:17 -03002268 if (dev->has_audio_class)
2269 request_module("snd-usb-audio");
2270 else
Mauro Carvalho Chehabd7448a82008-01-05 09:59:03 -03002271 request_module("em28xx-alsa");
2272}
2273
2274static void request_modules(struct em28xx *dev)
2275{
2276 INIT_WORK(&dev->request_module_wk, request_module_async);
2277 schedule_work(&dev->request_module_wk);
2278}
2279#else
2280#define request_modules(dev)
2281#endif /* CONFIG_MODULES */
2282
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002283/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002284 * em28xx_usb_probe()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002285 * checks for supported devices
2286 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002287static int em28xx_usb_probe(struct usb_interface *interface,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002288 const struct usb_device_id *id)
2289{
2290 const struct usb_endpoint_descriptor *endpoint;
2291 struct usb_device *udev;
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -08002292 struct usb_interface *uif;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002293 struct em28xx *dev = NULL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002294 int retval = -ENODEV;
Mauro Carvalho Chehab03910cc2007-11-03 21:20:59 -03002295 int i, nr, ifnum;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002296
2297 udev = usb_get_dev(interface_to_usbdev(interface));
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -08002298 ifnum = interface->altsetting[0].desc.bInterfaceNumber;
2299
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002300 /* Check to see next free device and mark as used */
2301 nr=find_first_zero_bit(&em28xx_devused,EM28XX_MAXBOARDS);
2302 em28xx_devused|=1<<nr;
Mauro Carvalho Chehab91cad0f2005-11-08 21:38:13 -08002303
2304 /* Don't register audio interfaces */
2305 if (interface->altsetting[0].desc.bInterfaceClass == USB_CLASS_AUDIO) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002306 em28xx_err(DRIVER_NAME " audio device (%04x:%04x): interface %i, class %i\n",
Mauro Carvalho Chehab91cad0f2005-11-08 21:38:13 -08002307 udev->descriptor.idVendor,udev->descriptor.idProduct,
2308 ifnum,
2309 interface->altsetting[0].desc.bInterfaceClass);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002310
2311 em28xx_devused&=~(1<<nr);
Mauro Carvalho Chehab91cad0f2005-11-08 21:38:13 -08002312 return -ENODEV;
2313 }
2314
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002315 em28xx_err(DRIVER_NAME " new video device (%04x:%04x): interface %i, class %i\n",
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -08002316 udev->descriptor.idVendor,udev->descriptor.idProduct,
2317 ifnum,
2318 interface->altsetting[0].desc.bInterfaceClass);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002319
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -08002320 endpoint = &interface->cur_altsetting->endpoint[1].desc;
2321
Michael Opdenacker59c51592007-05-09 08:57:56 +02002322 /* check if the device has the iso in endpoint at the correct place */
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002323 if ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) !=
2324 USB_ENDPOINT_XFER_ISOC) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002325 em28xx_err(DRIVER_NAME " probing error: endpoint is non-ISO endpoint!\n");
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002326 em28xx_devused&=~(1<<nr);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002327 return -ENODEV;
2328 }
2329 if ((endpoint->bEndpointAddress & USB_ENDPOINT_DIR_MASK) == USB_DIR_OUT) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002330 em28xx_err(DRIVER_NAME " probing error: endpoint is ISO OUT endpoint!\n");
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002331 em28xx_devused&=~(1<<nr);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002332 return -ENODEV;
2333 }
2334
Mauro Carvalho Chehab19478842006-03-14 17:24:57 -03002335 if (nr >= EM28XX_MAXBOARDS) {
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -08002336 printk (DRIVER_NAME ": Supports only %i em28xx boards.\n",EM28XX_MAXBOARDS);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002337 em28xx_devused&=~(1<<nr);
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08002338 return -ENOMEM;
2339 }
2340
2341 /* allocate memory for our device state and initialize it */
Panagiotis Issaris74081872006-01-11 19:40:56 -02002342 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08002343 if (dev == NULL) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002344 em28xx_err(DRIVER_NAME ": out of memory!\n");
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002345 em28xx_devused&=~(1<<nr);
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08002346 return -ENOMEM;
2347 }
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08002348
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002349 snprintf(dev->name, 29, "em28xx #%d", nr);
Mauro Carvalho Chehab03910cc2007-11-03 21:20:59 -03002350 dev->devno = nr;
2351 dev->model = id->driver_info;
Mauro Carvalho Chehab3687e1e2008-02-08 15:44:25 -03002352 dev->alt = -1;
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002353
Mauro Carvalho Chehabd7448a82008-01-05 09:59:03 -03002354 /* Checks if audio is provided by some interface */
2355 for (i = 0; i < udev->config->desc.bNumInterfaces; i++) {
2356 uif = udev->config->interface[i];
2357 if (uif->altsetting[0].desc.bInterfaceClass == USB_CLASS_AUDIO) {
2358 dev->has_audio_class = 1;
2359 break;
2360 }
2361 }
2362
2363 printk(KERN_INFO DRIVER_NAME " %s usb audio class\n",
2364 dev->has_audio_class ? "Has" : "Doesn't have");
2365
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -08002366 /* compute alternate max packet sizes */
2367 uif = udev->actconfig->interface[0];
2368
2369 dev->num_alt=uif->num_altsetting;
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002370 em28xx_info("Alternate settings: %i\n",dev->num_alt);
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -08002371// dev->alt_max_pkt_size = kmalloc(sizeof(*dev->alt_max_pkt_size)*
2372 dev->alt_max_pkt_size = kmalloc(32*
2373 dev->num_alt,GFP_KERNEL);
2374 if (dev->alt_max_pkt_size == NULL) {
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002375 em28xx_errdev("out of memory!\n");
2376 em28xx_devused&=~(1<<nr);
Jesper Juhl1207cf842007-08-09 23:02:36 +02002377 kfree(dev);
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -08002378 return -ENOMEM;
2379 }
2380
2381 for (i = 0; i < dev->num_alt ; i++) {
2382 u16 tmp = le16_to_cpu(uif->altsetting[i].endpoint[1].desc.
2383 wMaxPacketSize);
2384 dev->alt_max_pkt_size[i] =
2385 (tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002386 em28xx_info("Alternate setting %i, max size= %i\n",i,
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -08002387 dev->alt_max_pkt_size[i]);
2388 }
2389
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002390 if ((card[nr]>=0)&&(card[nr]<em28xx_bcount))
Mauro Carvalho Chehab03910cc2007-11-03 21:20:59 -03002391 dev->model = card[nr];
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08002392
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002393 /* allocate device struct */
Mauro Carvalho Chehab03910cc2007-11-03 21:20:59 -03002394 retval = em28xx_init_dev(&dev, udev, nr);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002395 if (retval)
2396 return retval;
2397
Mauro Carvalho Chehab03910cc2007-11-03 21:20:59 -03002398 em28xx_info("Found %s\n", em28xx_boards[dev->model].name);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002399
2400 /* save our data pointer in this interface device */
2401 usb_set_intfdata(interface, dev);
Mauro Carvalho Chehabd7448a82008-01-05 09:59:03 -03002402
2403 request_modules(dev);
2404
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002405 return 0;
2406}
2407
2408/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002409 * em28xx_usb_disconnect()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002410 * called when the device gets diconencted
2411 * video device will be unregistered on v4l2_close in case it is still open
2412 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002413static void em28xx_usb_disconnect(struct usb_interface *interface)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002414{
Sascha Sommer5a804152007-11-03 21:22:38 -03002415 struct em28xx *dev;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -03002416 struct em28xx_ops *ops = NULL;
Sascha Sommer5a804152007-11-03 21:22:38 -03002417
2418 dev = usb_get_intfdata(interface);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002419 usb_set_intfdata(interface, NULL);
2420
2421 if (!dev)
2422 return;
2423
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002424 em28xx_info("disconnecting %s\n", dev->vdev->name);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002425
Sascha Sommer5a804152007-11-03 21:22:38 -03002426 /* wait until all current v4l2 io is finished then deallocate resources */
2427 mutex_lock(&dev->lock);
2428
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002429 wake_up_interruptible_all(&dev->open);
2430
2431 if (dev->users) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002432 em28xx_warn
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002433 ("device /dev/video%d is open! Deregistration and memory "
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002434 "deallocation are deferred on close.\n",
2435 dev->vdev->minor-MINOR_VFL_TYPE_GRABBER_MIN);
2436
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002437 dev->state |= DEV_MISCONFIGURED;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002438 em28xx_uninit_isoc(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002439 dev->state |= DEV_DISCONNECTED;
2440 wake_up_interruptible(&dev->wait_frame);
2441 wake_up_interruptible(&dev->wait_stream);
2442 } else {
2443 dev->state |= DEV_DISCONNECTED;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002444 em28xx_release_resources(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002445 }
Ingo Molnar3593cab2006-02-07 06:49:14 -02002446 mutex_unlock(&dev->lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002447
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -03002448 mutex_lock(&em28xx_extension_devlist_lock);
2449 if (!list_empty(&em28xx_extension_devlist)) {
2450 list_for_each_entry(ops, &em28xx_extension_devlist, next) {
2451 ops->fini(dev);
2452 }
2453 }
2454 mutex_unlock(&em28xx_extension_devlist_lock);
2455
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -08002456 if (!dev->users) {
2457 kfree(dev->alt_max_pkt_size);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002458 kfree(dev);
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -08002459 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002460}
2461
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002462static struct usb_driver em28xx_usb_driver = {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002463 .name = "em28xx",
2464 .probe = em28xx_usb_probe,
2465 .disconnect = em28xx_usb_disconnect,
2466 .id_table = em28xx_id_table,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002467};
2468
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002469static int __init em28xx_module_init(void)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002470{
2471 int result;
2472
2473 printk(KERN_INFO DRIVER_NAME " v4l2 driver version %d.%d.%d loaded\n",
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002474 (EM28XX_VERSION_CODE >> 16) & 0xff,
2475 (EM28XX_VERSION_CODE >> 8) & 0xff, EM28XX_VERSION_CODE & 0xff);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002476#ifdef SNAPSHOT
2477 printk(KERN_INFO DRIVER_NAME " snapshot date %04d-%02d-%02d\n",
2478 SNAPSHOT / 10000, (SNAPSHOT / 100) % 100, SNAPSHOT % 100);
2479#endif
2480
2481 /* register this driver with the USB subsystem */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002482 result = usb_register(&em28xx_usb_driver);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002483 if (result)
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002484 em28xx_err(DRIVER_NAME
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002485 " usb_register failed. Error number %d.\n", result);
2486
2487 return result;
2488}
2489
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002490static void __exit em28xx_module_exit(void)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002491{
2492 /* deregister this driver with the USB subsystem */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002493 usb_deregister(&em28xx_usb_driver);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002494}
2495
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002496module_init(em28xx_module_init);
2497module_exit(em28xx_module_exit);