blob: 446ba3b2ac3654d8a19c6f5a45dbe0096d83d804 [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 Chehab4ac97912005-11-08 21:37:43 -08006 Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -08007 Sascha Sommer <saschasommer@freenet.de>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08008
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24#include <linux/init.h>
25#include <linux/list.h>
26#include <linux/module.h>
27#include <linux/kernel.h>
28#include <linux/usb.h>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080029#include <linux/i2c.h>
Mauro Carvalho Chehabb296fc62005-11-08 21:38:37 -080030#include <linux/version.h>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080031#include <linux/video_decoder.h>
32
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -080033#include "em28xx.h"
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080034#include <media/tuner.h>
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -020035#include <media/v4l2-common.h>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080036
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -080037#define DRIVER_AUTHOR "Ludovico Cavedon <cavedon@sssup.it>, " \
38 "Markus Rechberger <mrechberger@gmail.com>, " \
39 "Mauro Carvalho Chehab <mchehab@brturbo.com.br>, " \
40 "Sascha Sommer <saschasommer@freenet.de>"
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080041
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -080042#define DRIVER_NAME "em28xx"
43#define DRIVER_DESC "Empia em28xx based USB video device driver"
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -080044#define EM28XX_VERSION_CODE KERNEL_VERSION(0, 0, 1)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080045
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -080046#define em28xx_videodbg(fmt, arg...) do {\
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080047 if (video_debug) \
48 printk(KERN_INFO "%s %s :"fmt, \
Jean Delvaref85c6572005-12-19 08:53:59 -020049 dev->name, __FUNCTION__ , ##arg); } while (0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080050
51MODULE_AUTHOR(DRIVER_AUTHOR);
52MODULE_DESCRIPTION(DRIVER_DESC);
53MODULE_LICENSE("GPL");
54
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -080055static LIST_HEAD(em28xx_devlist);
Markus Rechberger9c755412005-11-08 21:37:52 -080056
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -080057static unsigned int card[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -080058module_param_array(card, int, NULL, 0444);
59MODULE_PARM_DESC(card,"card type");
60
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080061static int tuner = -1;
62module_param(tuner, int, 0444);
63MODULE_PARM_DESC(tuner, "tuner type");
64
65static unsigned int video_debug = 0;
66module_param(video_debug,int,0644);
67MODULE_PARM_DESC(video_debug,"enable debug messages [video]");
68
69/* supported tv norms */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -080070static struct em28xx_tvnorm tvnorms[] = {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080071 {
72 .name = "PAL",
73 .id = V4L2_STD_PAL,
74 .mode = VIDEO_MODE_PAL,
75 }, {
76 .name = "NTSC",
77 .id = V4L2_STD_NTSC,
78 .mode = VIDEO_MODE_NTSC,
79 }, {
80 .name = "SECAM",
81 .id = V4L2_STD_SECAM,
82 .mode = VIDEO_MODE_SECAM,
83 }, {
84 .name = "PAL-M",
85 .id = V4L2_STD_PAL_M,
86 .mode = VIDEO_MODE_PAL,
87 }
88};
89
Markus Rechbergera38a7d42005-11-08 21:38:06 -080090static const unsigned char saa7114_i2c_init[] = {
91 0x00,0x00,0x01,0x08,0x02,0xc4,0x03,0x30,0x04,0x90,0x05,0x90,0x06,0xeb,0x07,0xe0,
92 0x08,0x88,0x09,0x40,0x0a,0x80,0x0b,0x44,0x0c,0x40,0x0d,0x00,0x0e,0x81,0x0f,0x2a,
93 0x10,0x06,0x11,0x00,0x12,0xc8,0x13,0x80,0x14,0x00,0x15,0x11,0x16,0x01,0x17,0x42,
94 0x18,0x40,0x19,0x80,0x40,0x00,0x41,0xff,0x42,0xff,0x43,0xff,0x44,0xff,0x45,0xff,
95 0x46,0xff,0x47,0xff,0x48,0xff,0x49,0xff,0x4a,0xff,0x4b,0xff,0x4c,0xff,0x4d,0xff,
96 0x4e,0xff,0x4f,0xff,0x50,0xff,0x51,0xff,0x52,0xff,0x53,0xff,0x54,0x5f,0x55,0xff,
97 0x56,0xff,0x57,0xff,0x58,0x00,0x59,0x47,0x5a,0x03,0x5b,0x03,0x5d,0x3e,0x5e,0x00,
98 0x80,0x1c,0x83,0x01,0x84,0xa5,0x85,0x10,0x86,0x45,0x87,0x41,0x88,0xf0,0x88,0x00,
99 0x88,0xf0,0x90,0x00,0x91,0x08,0x92,0x00,0x93,0x80,0x94,0x08,0x95,0x00,0x96,0xc0,
100 0x97,0x02,0x98,0x13,0x99,0x00,0x9a,0x38,0x9b,0x01,0x9c,0x80,0x9d,0x02,0x9e,0x06,
101 0x9f,0x01,0xa0,0x01,0xa1,0x00,0xa2,0x00,0xa4,0x80,0xa5,0x36,0xa6,0x36,0xa8,0x67,
102 0xa9,0x04,0xaa,0x00,0xac,0x33,0xad,0x02,0xae,0x00,0xb0,0xcd,0xb1,0x04,0xb2,0xcd,
103 0xb3,0x04,0xb4,0x01,0xb8,0x00,0xb9,0x00,0xba,0x00,0xbb,0x00,0xbc,0x00,0xbd,0x00,
104 0xbe,0x00,0xbf,0x00
105};
106
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800107#define TVNORMS ARRAY_SIZE(tvnorms)
108
109/* supported controls */
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200110/* Common to all boards */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800111static struct v4l2_queryctrl em28xx_qctrl[] = {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800112 {
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200113 .id = V4L2_CID_AUDIO_VOLUME,
114 .type = V4L2_CTRL_TYPE_INTEGER,
115 .name = "Volume",
116 .minimum = 0x0,
117 .maximum = 0x1f,
118 .step = 0x1,
119 .default_value = 0x1f,
120 .flags = 0,
121 },{
122 .id = V4L2_CID_AUDIO_MUTE,
123 .type = V4L2_CTRL_TYPE_BOOLEAN,
124 .name = "Mute",
125 .minimum = 0,
126 .maximum = 1,
127 .step = 1,
128 .default_value = 1,
129 .flags = 0,
130 }
131};
132
133/* FIXME: These are specific to saa711x - should be moved to its code */
134static struct v4l2_queryctrl saa711x_qctrl[] = {
135 {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800136 .id = V4L2_CID_BRIGHTNESS,
137 .type = V4L2_CTRL_TYPE_INTEGER,
138 .name = "Brightness",
139 .minimum = -128,
140 .maximum = 127,
141 .step = 1,
142 .default_value = 0,
143 .flags = 0,
144 },{
145 .id = V4L2_CID_CONTRAST,
146 .type = V4L2_CTRL_TYPE_INTEGER,
147 .name = "Contrast",
148 .minimum = 0x0,
149 .maximum = 0x1f,
150 .step = 0x1,
151 .default_value = 0x10,
152 .flags = 0,
153 },{
154 .id = V4L2_CID_SATURATION,
155 .type = V4L2_CTRL_TYPE_INTEGER,
156 .name = "Saturation",
157 .minimum = 0x0,
158 .maximum = 0x1f,
159 .step = 0x1,
160 .default_value = 0x10,
161 .flags = 0,
162 },{
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800163 .id = V4L2_CID_RED_BALANCE,
164 .type = V4L2_CTRL_TYPE_INTEGER,
165 .name = "Red chroma balance",
166 .minimum = -128,
167 .maximum = 127,
168 .step = 1,
169 .default_value = 0,
170 .flags = 0,
171 },{
172 .id = V4L2_CID_BLUE_BALANCE,
173 .type = V4L2_CTRL_TYPE_INTEGER,
174 .name = "Blue chroma balance",
175 .minimum = -128,
176 .maximum = 127,
177 .step = 1,
178 .default_value = 0,
179 .flags = 0,
180 },{
181 .id = V4L2_CID_GAMMA,
182 .type = V4L2_CTRL_TYPE_INTEGER,
183 .name = "Gamma",
184 .minimum = 0x0,
185 .maximum = 0x3f,
186 .step = 0x1,
187 .default_value = 0x20,
188 .flags = 0,
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200189 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800190};
191
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800192static struct usb_driver em28xx_usb_driver;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800193
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800194static DECLARE_MUTEX(em28xx_sysfs_lock);
195static DECLARE_RWSEM(em28xx_disconnect);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800196
197/********************* v4l2 interface ******************************************/
198
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800199/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800200 * em28xx_config()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800201 * inits registers with sane defaults
202 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800203static int em28xx_config(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800204{
205
206 /* Sets I2C speed to 100 KHz */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800207 em28xx_write_regs_req(dev, 0x00, 0x06, "\x40", 1);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800208
209 /* enable vbi capturing */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800210 em28xx_audio_usb_mute(dev, 1);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800211 dev->mute = 1; /* maybe not the right place... */
212 dev->volume = 0x1f;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800213 em28xx_audio_analog_set(dev);
214 em28xx_audio_analog_setup(dev);
215 em28xx_outfmt_set_yuv422(dev);
216 em28xx_colorlevels_set_default(dev);
217 em28xx_compression_disable(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800218
219 return 0;
220}
221
222/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800223 * em28xx_config_i2c()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800224 * configure i2c attached devices
225 */
Adrian Bunk943a4902005-12-01 00:51:35 -0800226static void em28xx_config_i2c(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800227{
228 struct v4l2_frequency f;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800229 struct video_decoder_init em28xx_vdi = {.data = NULL };
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800230
231
232 /* configure decoder */
Markus Rechbergera38a7d42005-11-08 21:38:06 -0800233 if(dev->model == EM2820_BOARD_MSI_VOX_USB_2){
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800234 em28xx_vdi.data=saa7114_i2c_init;
235 em28xx_vdi.len=sizeof(saa7114_i2c_init);
Markus Rechbergera38a7d42005-11-08 21:38:06 -0800236 }
237
238
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800239 em28xx_i2c_call_clients(dev, DECODER_INIT, &em28xx_vdi);
240 em28xx_i2c_call_clients(dev, DECODER_SET_INPUT, &dev->ctl_input);
241/* em28xx_i2c_call_clients(dev,DECODER_SET_PICTURE, &dev->vpic); */
242/* em28xx_i2c_call_clients(dev,DECODER_SET_NORM,&dev->tvnorm->id); */
243/* em28xx_i2c_call_clients(dev,DECODER_ENABLE_OUTPUT,&output); */
244/* em28xx_i2c_call_clients(dev,DECODER_DUMP, NULL); */
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800245
246 /* configure tuner */
247 f.tuner = 0;
248 f.type = V4L2_TUNER_ANALOG_TV;
249 f.frequency = 9076; /* FIXME:remove magic number */
250 dev->ctl_freq = f.frequency;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800251 em28xx_i2c_call_clients(dev, VIDIOC_S_FREQUENCY, &f);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800252
253 /* configure tda9887 */
254
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800255
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800256/* em28xx_i2c_call_clients(dev,VIDIOC_S_STD,&dev->tvnorm->id); */
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800257}
258
259/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800260 * em28xx_empty_framequeues()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800261 * prepare queues for incoming and outgoing frames
262 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800263static void em28xx_empty_framequeues(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800264{
265 u32 i;
266
267 INIT_LIST_HEAD(&dev->inqueue);
268 INIT_LIST_HEAD(&dev->outqueue);
269
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800270 for (i = 0; i < EM28XX_NUM_FRAMES; i++) {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800271 dev->frame[i].state = F_UNUSED;
272 dev->frame[i].buf.bytesused = 0;
273 }
274}
275
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800276static void video_mux(struct em28xx *dev, int index)
277{
278 int input, ainput;
279
280 input = INPUT(index)->vmux;
281 dev->ctl_input = index;
282 dev->ctl_ainput = INPUT(index)->amux;
283
284 em28xx_i2c_call_clients(dev, DECODER_SET_INPUT, &input);
285
286
287 em28xx_videodbg("Setting input index=%d, vmux=%d, amux=%d\n",index,input,dev->ctl_ainput);
288
289 if (dev->has_msp34xx) {
290 em28xx_i2c_call_clients(dev, VIDIOC_S_AUDIO, &dev->ctl_ainput);
291 ainput = EM28XX_AUDIO_SRC_TUNER;
292 em28xx_audio_source(dev, ainput);
293 } else {
294 switch (dev->ctl_ainput) {
295 case 0:
296 ainput = EM28XX_AUDIO_SRC_TUNER;
297 break;
298 default:
299 ainput = EM28XX_AUDIO_SRC_LINE;
300 }
301 em28xx_audio_source(dev, ainput);
302 }
303}
304
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800305/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800306 * em28xx_v4l2_open()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800307 * inits the device and starts isoc transfer
308 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800309static int em28xx_v4l2_open(struct inode *inode, struct file *filp)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800310{
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800311 int minor = iminor(inode);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800312 int errCode = 0;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800313 struct em28xx *h,*dev = NULL;
Markus Rechberger9c755412005-11-08 21:37:52 -0800314 struct list_head *list;
315
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800316 list_for_each(list,&em28xx_devlist) {
317 h = list_entry(list, struct em28xx, devlist);
Markus Rechberger9c755412005-11-08 21:37:52 -0800318 if (h->vdev->minor == minor) {
319 dev = h;
320 }
321 }
322
323 filp->private_data=dev;
324
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800325
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800326 em28xx_videodbg("users=%d\n", dev->users);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800327
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800328 if (!down_read_trylock(&em28xx_disconnect))
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800329 return -ERESTARTSYS;
330
331 if (dev->users) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800332 em28xx_warn("this driver can be opened only once\n");
333 up_read(&em28xx_disconnect);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800334 return -EBUSY;
335 }
336
337/* if(dev->vbi_dev->minor == minor){
338 dev->type=V4L2_BUF_TYPE_VBI_CAPTURE;
339 }*/
340 if (dev->vdev->minor == minor) {
341 dev->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
342 }
343
344 init_MUTEX(&dev->fileop_lock); /* to 1 == available */
345 spin_lock_init(&dev->queue_lock);
346 init_waitqueue_head(&dev->wait_frame);
347 init_waitqueue_head(&dev->wait_stream);
348
349 down(&dev->lock);
350
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800351 em28xx_set_alternate(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800352
353 dev->width = norm_maxw(dev);
354 dev->height = norm_maxh(dev);
355 dev->frame_size = dev->width * dev->height * 2;
356 dev->field_size = dev->frame_size >> 1; /*both_fileds ? dev->frame_size>>1 : dev->frame_size; */
357 dev->bytesperline = dev->width * 2;
358 dev->hscale = 0;
359 dev->vscale = 0;
360
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800361 em28xx_capture_start(dev, 1);
362 em28xx_resolution_set(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800363
364 /* start the transfer */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800365 errCode = em28xx_init_isoc(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800366 if (errCode)
367 goto err;
368
369 dev->users++;
370 filp->private_data = dev;
371 dev->io = IO_NONE;
372 dev->stream = STREAM_OFF;
373 dev->num_frames = 0;
374
375 /* prepare queues */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800376 em28xx_empty_framequeues(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800377
378 dev->state |= DEV_INITIALIZED;
379
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800380 video_mux(dev, 0);
381
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800382 err:
383 up(&dev->lock);
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800384 up_read(&em28xx_disconnect);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800385 return errCode;
386}
387
388/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800389 * em28xx_realease_resources()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800390 * unregisters the v4l2,i2c and usb devices
391 * called when the device gets disconected or at module unload
392*/
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800393static void em28xx_release_resources(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800394{
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800395 down(&em28xx_sysfs_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800396
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800397 em28xx_info("V4L2 device /dev/video%d deregistered\n",
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800398 dev->vdev->minor);
Markus Rechberger9c755412005-11-08 21:37:52 -0800399 list_del(&dev->devlist);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800400 video_unregister_device(dev->vdev);
401/* video_unregister_device(dev->vbi_dev); */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800402 em28xx_i2c_unregister(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800403 usb_put_dev(dev->udev);
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800404 up(&em28xx_sysfs_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800405}
406
407/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800408 * em28xx_v4l2_close()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800409 * stops streaming and deallocates all resources allocated by the v4l2 calls and ioctls
410 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800411static int em28xx_v4l2_close(struct inode *inode, struct file *filp)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800412{
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800413 int errCode;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800414 struct em28xx *dev=filp->private_data;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800415
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800416 em28xx_videodbg("users=%d\n", dev->users);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800417
418 down(&dev->lock);
419
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800420 em28xx_uninit_isoc(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800421
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800422 em28xx_release_buffers(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800423
424 /* the device is already disconnect, free the remaining resources */
425 if (dev->state & DEV_DISCONNECTED) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800426 em28xx_release_resources(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800427 up(&dev->lock);
428 kfree(dev);
429 return 0;
430 }
431
432 /* set alternate 0 */
433 dev->alt = 0;
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800434 em28xx_videodbg("setting alternate 0\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800435 errCode = usb_set_interface(dev->udev, 0, 0);
436 if (errCode < 0) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800437 em28xx_errdev ("cannot change alternate number to 0 (error=%i)\n",
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800438 errCode);
439 }
440
441 dev->users--;
442 wake_up_interruptible_nr(&dev->open, 1);
443 up(&dev->lock);
444 return 0;
445}
446
447/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800448 * em28xx_v4l2_read()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800449 * will allocate buffers when called for the first time
450 */
451static ssize_t
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800452em28xx_v4l2_read(struct file *filp, char __user * buf, size_t count,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800453 loff_t * f_pos)
454{
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800455 struct em28xx_frame_t *f, *i;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800456 unsigned long lock_flags;
457 int ret = 0;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800458 struct em28xx *dev = filp->private_data;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800459
460 if (down_interruptible(&dev->fileop_lock))
461 return -ERESTARTSYS;
462
463 if (dev->state & DEV_DISCONNECTED) {
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800464 em28xx_videodbg("device not present\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800465 up(&dev->fileop_lock);
466 return -ENODEV;
467 }
468
469 if (dev->state & DEV_MISCONFIGURED) {
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800470 em28xx_videodbg("device misconfigured; close and open it again\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800471 up(&dev->fileop_lock);
472 return -EIO;
473 }
474
475 if (dev->io == IO_MMAP) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800476 em28xx_videodbg ("IO method is set to mmap; close and open"
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800477 " the device again to choose the read method\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800478 up(&dev->fileop_lock);
479 return -EINVAL;
480 }
481
482 if (dev->io == IO_NONE) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800483 if (!em28xx_request_buffers(dev, EM28XX_NUM_READ_FRAMES)) {
484 em28xx_errdev("read failed, not enough memory\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800485 up(&dev->fileop_lock);
486 return -ENOMEM;
487 }
488 dev->io = IO_READ;
489 dev->stream = STREAM_ON;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800490 em28xx_queue_unusedframes(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800491 }
492
493 if (!count) {
494 up(&dev->fileop_lock);
495 return 0;
496 }
497
498 if (list_empty(&dev->outqueue)) {
499 if (filp->f_flags & O_NONBLOCK) {
500 up(&dev->fileop_lock);
501 return -EAGAIN;
502 }
503 ret = wait_event_interruptible
504 (dev->wait_frame,
505 (!list_empty(&dev->outqueue)) ||
506 (dev->state & DEV_DISCONNECTED));
507 if (ret) {
508 up(&dev->fileop_lock);
509 return ret;
510 }
511 if (dev->state & DEV_DISCONNECTED) {
512 up(&dev->fileop_lock);
513 return -ENODEV;
514 }
515 }
516
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800517 f = list_entry(dev->outqueue.prev, struct em28xx_frame_t, frame);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800518
519 spin_lock_irqsave(&dev->queue_lock, lock_flags);
520 list_for_each_entry(i, &dev->outqueue, frame)
521 i->state = F_UNUSED;
522 INIT_LIST_HEAD(&dev->outqueue);
523 spin_unlock_irqrestore(&dev->queue_lock, lock_flags);
524
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800525 em28xx_queue_unusedframes(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800526
527 if (count > f->buf.length)
528 count = f->buf.length;
529
530 if (copy_to_user(buf, f->bufmem, count)) {
531 up(&dev->fileop_lock);
532 return -EFAULT;
533 }
534 *f_pos += count;
535
536 up(&dev->fileop_lock);
537
538 return count;
539}
540
541/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800542 * em28xx_v4l2_poll()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800543 * will allocate buffers when called for the first time
544 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800545static unsigned int em28xx_v4l2_poll(struct file *filp, poll_table * wait)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800546{
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800547 unsigned int mask = 0;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800548 struct em28xx *dev = filp->private_data;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800549
550 if (down_interruptible(&dev->fileop_lock))
551 return POLLERR;
552
553 if (dev->state & DEV_DISCONNECTED) {
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800554 em28xx_videodbg("device not present\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800555 } else if (dev->state & DEV_MISCONFIGURED) {
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800556 em28xx_videodbg("device is misconfigured; close and open it again\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800557 } else {
558 if (dev->io == IO_NONE) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800559 if (!em28xx_request_buffers
560 (dev, EM28XX_NUM_READ_FRAMES)) {
561 em28xx_warn
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800562 ("poll() failed, not enough memory\n");
563 } else {
564 dev->io = IO_READ;
565 dev->stream = STREAM_ON;
566 }
567 }
568
569 if (dev->io == IO_READ) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800570 em28xx_queue_unusedframes(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800571 poll_wait(filp, &dev->wait_frame, wait);
572
573 if (!list_empty(&dev->outqueue))
574 mask |= POLLIN | POLLRDNORM;
575
576 up(&dev->fileop_lock);
577
578 return mask;
579 }
580 }
581
582 up(&dev->fileop_lock);
583 return POLLERR;
584}
585
586/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800587 * em28xx_vm_open()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800588 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800589static void em28xx_vm_open(struct vm_area_struct *vma)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800590{
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800591 struct em28xx_frame_t *f = vma->vm_private_data;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800592 f->vma_use_count++;
593}
594
595/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800596 * em28xx_vm_close()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800597 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800598static void em28xx_vm_close(struct vm_area_struct *vma)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800599{
600 /* NOTE: buffers are not freed here */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800601 struct em28xx_frame_t *f = vma->vm_private_data;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800602 f->vma_use_count--;
603}
604
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800605static struct vm_operations_struct em28xx_vm_ops = {
606 .open = em28xx_vm_open,
607 .close = em28xx_vm_close,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800608};
609
610/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800611 * em28xx_v4l2_mmap()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800612 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800613static int em28xx_v4l2_mmap(struct file *filp, struct vm_area_struct *vma)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800614{
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800615 unsigned long size = vma->vm_end - vma->vm_start,
Sascha Sommer3639c862005-12-12 00:37:30 -0800616 start = vma->vm_start;
617 void *pos;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800618 u32 i;
Markus Rechberger9c755412005-11-08 21:37:52 -0800619
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800620 struct em28xx *dev = filp->private_data;
Markus Rechberger9c755412005-11-08 21:37:52 -0800621
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800622 if (down_interruptible(&dev->fileop_lock))
623 return -ERESTARTSYS;
624
625 if (dev->state & DEV_DISCONNECTED) {
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800626 em28xx_videodbg("mmap: device not present\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800627 up(&dev->fileop_lock);
628 return -ENODEV;
629 }
630
631 if (dev->state & DEV_MISCONFIGURED) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800632 em28xx_videodbg ("mmap: Device is misconfigured; close and "
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800633 "open it again\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800634 up(&dev->fileop_lock);
635 return -EIO;
636 }
637
638 if (dev->io != IO_MMAP || !(vma->vm_flags & VM_WRITE) ||
639 size != PAGE_ALIGN(dev->frame[0].buf.length)) {
640 up(&dev->fileop_lock);
641 return -EINVAL;
642 }
643
644 for (i = 0; i < dev->num_frames; i++) {
645 if ((dev->frame[i].buf.m.offset >> PAGE_SHIFT) == vma->vm_pgoff)
646 break;
647 }
648 if (i == dev->num_frames) {
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800649 em28xx_videodbg("mmap: user supplied mapping address is out of range\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800650 up(&dev->fileop_lock);
651 return -EINVAL;
652 }
653
654 /* VM_IO is eventually going to replace PageReserved altogether */
655 vma->vm_flags |= VM_IO;
656 vma->vm_flags |= VM_RESERVED; /* avoid to swap out this VMA */
657
Sascha Sommer3639c862005-12-12 00:37:30 -0800658 pos = dev->frame[i].bufmem;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800659 while (size > 0) { /* size is page-aligned */
Sascha Sommer3639c862005-12-12 00:37:30 -0800660 if (vm_insert_page(vma, start, vmalloc_to_page(pos))) {
661 em28xx_videodbg("mmap: vm_insert_page failed\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800662 up(&dev->fileop_lock);
663 return -EAGAIN;
664 }
665 start += PAGE_SIZE;
666 pos += PAGE_SIZE;
667 size -= PAGE_SIZE;
668 }
669
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800670 vma->vm_ops = &em28xx_vm_ops;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800671 vma->vm_private_data = &dev->frame[i];
672
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800673 em28xx_vm_open(vma);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800674 up(&dev->fileop_lock);
675 return 0;
676}
677
678/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800679 * em28xx_get_ctrl()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800680 * return the current saturation, brightness or contrast, mute state
681 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800682static int em28xx_get_ctrl(struct em28xx *dev, struct v4l2_control *ctrl)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800683{
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800684 switch (ctrl->id) {
685 case V4L2_CID_AUDIO_MUTE:
686 ctrl->value = dev->mute;
687 return 0;
688 case V4L2_CID_AUDIO_VOLUME:
689 ctrl->value = dev->volume;
690 return 0;
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200691 default:
692 return -EINVAL;
693 }
694}
695
696/*FIXME: should be moved to saa711x */
697static int saa711x_get_ctrl(struct em28xx *dev, struct v4l2_control *ctrl)
698{
699 s32 tmp;
700 switch (ctrl->id) {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800701 case V4L2_CID_BRIGHTNESS:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800702 if ((tmp = em28xx_brightness_get(dev)) < 0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800703 return -EIO;
704 ctrl->value = (s32) ((s8) tmp); /* FIXME: clenaer way to extend sign? */
705 return 0;
706 case V4L2_CID_CONTRAST:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800707 if ((ctrl->value = em28xx_contrast_get(dev)) < 0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800708 return -EIO;
709 return 0;
710 case V4L2_CID_SATURATION:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800711 if ((ctrl->value = em28xx_saturation_get(dev)) < 0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800712 return -EIO;
713 return 0;
714 case V4L2_CID_RED_BALANCE:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800715 if ((tmp = em28xx_v_balance_get(dev)) < 0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800716 return -EIO;
717 ctrl->value = (s32) ((s8) tmp); /* FIXME: clenaer way to extend sign? */
718 return 0;
719 case V4L2_CID_BLUE_BALANCE:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800720 if ((tmp = em28xx_u_balance_get(dev)) < 0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800721 return -EIO;
722 ctrl->value = (s32) ((s8) tmp); /* FIXME: clenaer way to extend sign? */
723 return 0;
724 case V4L2_CID_GAMMA:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800725 if ((ctrl->value = em28xx_gamma_get(dev)) < 0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800726 return -EIO;
727 return 0;
728 default:
729 return -EINVAL;
730 }
731}
732
733/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800734 * em28xx_set_ctrl()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800735 * mute or set new saturation, brightness or contrast
736 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800737static int em28xx_set_ctrl(struct em28xx *dev, const struct v4l2_control *ctrl)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800738{
739 switch (ctrl->id) {
740 case V4L2_CID_AUDIO_MUTE:
741 if (ctrl->value != dev->mute) {
742 dev->mute = ctrl->value;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800743 em28xx_audio_usb_mute(dev, ctrl->value);
744 return em28xx_audio_analog_set(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800745 }
746 return 0;
747 case V4L2_CID_AUDIO_VOLUME:
748 dev->volume = ctrl->value;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800749 return em28xx_audio_analog_set(dev);
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200750 default:
751 return -EINVAL;
752 }
753}
754
755/*FIXME: should be moved to saa711x */
756static int saa711x_set_ctrl(struct em28xx *dev, const struct v4l2_control *ctrl)
757{
758 switch (ctrl->id) {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800759 case V4L2_CID_BRIGHTNESS:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800760 return em28xx_brightness_set(dev, ctrl->value);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800761 case V4L2_CID_CONTRAST:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800762 return em28xx_contrast_set(dev, ctrl->value);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800763 case V4L2_CID_SATURATION:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800764 return em28xx_saturation_set(dev, ctrl->value);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800765 case V4L2_CID_RED_BALANCE:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800766 return em28xx_v_balance_set(dev, ctrl->value);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800767 case V4L2_CID_BLUE_BALANCE:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800768 return em28xx_u_balance_set(dev, ctrl->value);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800769 case V4L2_CID_GAMMA:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800770 return em28xx_gamma_set(dev, ctrl->value);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800771 default:
772 return -EINVAL;
773 }
774}
775
776/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800777 * em28xx_stream_interrupt()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800778 * stops streaming
779 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800780static int em28xx_stream_interrupt(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800781{
782 int ret = 0;
783
784 /* stop reading from the device */
785
786 dev->stream = STREAM_INTERRUPT;
787 ret = wait_event_timeout(dev->wait_stream,
788 (dev->stream == STREAM_OFF) ||
789 (dev->state & DEV_DISCONNECTED),
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800790 EM28XX_URB_TIMEOUT);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800791 if (dev->state & DEV_DISCONNECTED)
792 return -ENODEV;
793 else if (ret) {
794 dev->state |= DEV_MISCONFIGURED;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800795 em28xx_videodbg("device is misconfigured; close and "
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800796 "open /dev/video%d again\n", dev->vdev->minor);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800797 return ret;
798 }
799
800 return 0;
801}
802
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800803static int em28xx_set_norm(struct em28xx *dev, int width, int height)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800804{
805 unsigned int hscale, vscale;
806 unsigned int maxh, maxw;
807
808 maxw = norm_maxw(dev);
809 maxh = norm_maxh(dev);
810
811 /* width must even because of the YUYV format */
812 /* height must be even because of interlacing */
813 height &= 0xfffe;
814 width &= 0xfffe;
815
816 if (height < 32)
817 height = 32;
818 if (height > maxh)
819 height = maxh;
820 if (width < 48)
821 width = 48;
822 if (width > maxw)
823 width = maxw;
824
825 if ((hscale = (((unsigned long)maxw) << 12) / width - 4096L) >= 0x4000)
826 hscale = 0x3fff;
827 width = (((unsigned long)maxw) << 12) / (hscale + 4096L);
828
829 if ((vscale = (((unsigned long)maxh) << 12) / height - 4096L) >= 0x4000)
830 vscale = 0x3fff;
831 height = (((unsigned long)maxh) << 12) / (vscale + 4096L);
832
833 /* set new image size */
834 dev->width = width;
835 dev->height = height;
836 dev->frame_size = dev->width * dev->height * 2;
837 dev->field_size = dev->frame_size >> 1; /*both_fileds ? dev->frame_size>>1 : dev->frame_size; */
838 dev->bytesperline = dev->width * 2;
839 dev->hscale = hscale;
840 dev->vscale = vscale;
841
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800842 em28xx_resolution_set(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800843
844 return 0;
845}
846
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800847/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800848 * em28xx_v4l2_do_ioctl()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800849 * This function is _not_ called directly, but from
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800850 * em28xx_v4l2_ioctl. Userspace
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800851 * copying is done already, arg is a kernel pointer.
852 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800853static int em28xx_do_ioctl(struct inode *inode, struct file *filp,
854 struct em28xx *dev, unsigned int cmd, void *arg,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800855 v4l2_kioctl driver_ioctl)
856{
857 int ret;
858
859 switch (cmd) {
860 /* ---------- tv norms ---------- */
861 case VIDIOC_ENUMSTD:
862 {
863 struct v4l2_standard *e = arg;
864 unsigned int i;
865
866 i = e->index;
867 if (i >= TVNORMS)
868 return -EINVAL;
869 ret = v4l2_video_std_construct(e, tvnorms[e->index].id,
870 tvnorms[e->index].name);
871 e->index = i;
872 if (ret < 0)
873 return ret;
874 return 0;
875 }
876 case VIDIOC_G_STD:
877 {
878 v4l2_std_id *id = arg;
879
880 *id = dev->tvnorm->id;
881 return 0;
882 }
883 case VIDIOC_S_STD:
884 {
885 v4l2_std_id *id = arg;
886 unsigned int i;
887
888 for (i = 0; i < TVNORMS; i++)
889 if (*id == tvnorms[i].id)
890 break;
891 if (i == TVNORMS)
892 for (i = 0; i < TVNORMS; i++)
893 if (*id & tvnorms[i].id)
894 break;
895 if (i == TVNORMS)
896 return -EINVAL;
897
898 down(&dev->lock);
899 dev->tvnorm = &tvnorms[i];
900
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800901 em28xx_set_norm(dev, dev->width, dev->height);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800902
903/*
904 dev->width=norm_maxw(dev);
905 dev->height=norm_maxh(dev);
906 dev->frame_size=dev->width*dev->height*2;
907 dev->field_size=dev->frame_size>>1;
908 dev->bytesperline=dev->width*2;
909 dev->hscale=0;
910 dev->vscale=0;
911
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800912 em28xx_resolution_set(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800913*/
914/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800915 em28xx_uninit_isoc(dev);
916 em28xx_set_alternate(dev);
917 em28xx_capture_start(dev, 1);
918 em28xx_resolution_set(dev);
919 em28xx_init_isoc(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800920*/
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800921 em28xx_i2c_call_clients(dev, DECODER_SET_NORM,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800922 &tvnorms[i].mode);
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800923 em28xx_i2c_call_clients(dev, VIDIOC_S_STD,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800924 &dev->tvnorm->id);
925
926 up(&dev->lock);
927
928 return 0;
929 }
930
931 /* ------ input switching ---------- */
932 case VIDIOC_ENUMINPUT:
933 {
934 struct v4l2_input *i = arg;
935 unsigned int n;
936 static const char *iname[] = {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800937 [EM28XX_VMUX_COMPOSITE1] = "Composite1",
938 [EM28XX_VMUX_COMPOSITE2] = "Composite2",
939 [EM28XX_VMUX_COMPOSITE3] = "Composite3",
940 [EM28XX_VMUX_COMPOSITE4] = "Composite4",
941 [EM28XX_VMUX_SVIDEO] = "S-Video",
942 [EM28XX_VMUX_TELEVISION] = "Television",
943 [EM28XX_VMUX_CABLE] = "Cable TV",
944 [EM28XX_VMUX_DVB] = "DVB",
945 [EM28XX_VMUX_DEBUG] = "for debug only",
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800946 };
947
948 n = i->index;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800949 if (n >= MAX_EM28XX_INPUT)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800950 return -EINVAL;
951 if (0 == INPUT(n)->type)
952 return -EINVAL;
953 memset(i, 0, sizeof(*i));
954 i->index = n;
955 i->type = V4L2_INPUT_TYPE_CAMERA;
956 strcpy(i->name, iname[INPUT(n)->type]);
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800957 if ((EM28XX_VMUX_TELEVISION == INPUT(n)->type) ||
958 (EM28XX_VMUX_CABLE == INPUT(n)->type))
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800959 i->type = V4L2_INPUT_TYPE_TUNER;
960 for (n = 0; n < ARRAY_SIZE(tvnorms); n++)
961 i->std |= tvnorms[n].id;
962 return 0;
963 }
964
965 case VIDIOC_G_INPUT:
966 {
967 int *i = arg;
968 *i = dev->ctl_input;
969
970 return 0;
971 }
972
973 case VIDIOC_S_INPUT:
974 {
975 int *index = arg;
976
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800977 if (*index >= MAX_EM28XX_INPUT)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800978 return -EINVAL;
979 if (0 == INPUT(*index)->type)
980 return -EINVAL;
981
982 down(&dev->lock);
983 video_mux(dev, *index);
984 up(&dev->lock);
985
986 return 0;
987 }
988
989 case VIDIOC_G_AUDIO:
990 {
991 struct v4l2_audio *a = arg;
992 unsigned int index = a->index;
993
994 if (a->index > 1)
995 return -EINVAL;
996 memset(a, 0, sizeof(*a));
997 index = dev->ctl_ainput;
998
999 if (index == 0) {
1000 strcpy(a->name, "Television");
1001 } else {
1002 strcpy(a->name, "Line In");
1003 }
1004 a->capability = V4L2_AUDCAP_STEREO;
1005 a->index = index;
1006 return 0;
1007 }
1008
1009 case VIDIOC_S_AUDIO:
1010 {
1011 struct v4l2_audio *a = arg;
1012 if (a->index != dev->ctl_ainput)
1013 return -EINVAL;
1014
1015 return 0;
1016 }
1017
1018 /* --- controls ---------------------------------------------- */
1019 case VIDIOC_QUERYCTRL:
1020 {
1021 struct v4l2_queryctrl *qc = arg;
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -02001022 int i, id=qc->id;
1023
1024 memset(qc,0,sizeof(*qc));
1025 qc->id=id;
1026
1027 if (!dev->has_msp34xx) {
1028 for (i = 0; i < ARRAY_SIZE(em28xx_qctrl); i++) {
1029 if (qc->id && qc->id == em28xx_qctrl[i].id) {
1030 memcpy(qc, &(em28xx_qctrl[i]),
1031 sizeof(*qc));
1032 return 0;
1033 }
1034 }
1035 }
1036 if (dev->decoder == EM28XX_TVP5150) {
1037 em28xx_i2c_call_clients(dev,cmd,qc);
1038 if (qc->type)
1039 return 0;
1040 else
1041 return -EINVAL;
1042 }
1043 for (i = 0; i < ARRAY_SIZE(saa711x_qctrl); i++) {
1044 if (qc->id && qc->id == saa711x_qctrl[i].id) {
1045 memcpy(qc, &(saa711x_qctrl[i]),
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001046 sizeof(*qc));
1047 return 0;
1048 }
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -02001049 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001050
1051 return -EINVAL;
1052 }
1053
1054 case VIDIOC_G_CTRL:
1055 {
1056 struct v4l2_control *ctrl = arg;
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -02001057 int retval=-EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001058
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -02001059 if (!dev->has_msp34xx)
1060 retval=em28xx_get_ctrl(dev, ctrl);
1061 if (retval==-EINVAL) {
1062 if (dev->decoder == EM28XX_TVP5150) {
1063 em28xx_i2c_call_clients(dev,cmd,arg);
1064 return 0;
1065 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001066
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -02001067 return saa711x_get_ctrl(dev, ctrl);
1068 } else return retval;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001069 }
1070
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001071 case VIDIOC_S_CTRL:
1072 {
1073 struct v4l2_control *ctrl = arg;
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -02001074 u8 i;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001075
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -02001076 if (!dev->has_msp34xx){
1077 for (i = 0; i < ARRAY_SIZE(em28xx_qctrl); i++) {
1078 if (ctrl->id == em28xx_qctrl[i].id) {
1079 if (ctrl->value <
1080 em28xx_qctrl[i].minimum
1081 || ctrl->value >
1082 em28xx_qctrl[i].maximum)
1083 return -ERANGE;
1084 return em28xx_set_ctrl(dev, ctrl);
1085 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001086 }
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -02001087 }
1088
1089 if (dev->decoder == EM28XX_TVP5150) {
1090 em28xx_i2c_call_clients(dev,cmd,arg);
1091 return 0;
1092 } else {
1093
1094 if (!dev->has_msp34xx){
1095 for (i = 0; i < ARRAY_SIZE(em28xx_qctrl); i++) {
1096 if (ctrl->id == em28xx_qctrl[i].id) {
1097 if (ctrl->value <
1098 em28xx_qctrl[i].minimum
1099 || ctrl->value >
1100 em28xx_qctrl[i].maximum)
1101 return -ERANGE;
1102 return em28xx_set_ctrl(dev, ctrl);
1103 }
1104 }
1105 for (i = 0; i < ARRAY_SIZE(saa711x_qctrl); i++) {
1106 if (ctrl->id == saa711x_qctrl[i].id) {
1107 if (ctrl->value <
1108 saa711x_qctrl[i].minimum
1109 || ctrl->value >
1110 saa711x_qctrl[i].maximum)
1111 return -ERANGE;
1112 return saa711x_set_ctrl(dev, ctrl);
1113 }
1114 }
1115 }
1116
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001117 return -EINVAL;
1118 }
1119
1120 /* --- tuner ioctls ------------------------------------------ */
1121 case VIDIOC_G_TUNER:
1122 {
1123 struct v4l2_tuner *t = arg;
1124 int status = 0;
1125
1126 if (0 != t->index)
1127 return -EINVAL;
1128
1129 memset(t, 0, sizeof(*t));
1130 strcpy(t->name, "Tuner");
1131 t->type = V4L2_TUNER_ANALOG_TV;
1132 t->capability = V4L2_TUNER_CAP_NORM;
1133 t->rangehigh = 0xffffffffUL; /* FIXME: set correct range */
1134/* t->signal = 0xffff;*/
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001135/* em28xx_i2c_call_clients(dev,VIDIOC_G_TUNER,t);*/
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001136 /* No way to get signal strength? */
1137 down(&dev->lock);
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001138 em28xx_i2c_call_clients(dev, DECODER_GET_STATUS,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001139 &status);
1140 up(&dev->lock);
1141 t->signal =
1142 (status & DECODER_STATUS_GOOD) != 0 ? 0xffff : 0;
1143
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -08001144 em28xx_videodbg("VIDIO_G_TUNER: signal=%x, afc=%x\n", t->signal,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001145 t->afc);
1146 return 0;
1147 }
1148 case VIDIOC_S_TUNER:
1149 {
1150 struct v4l2_tuner *t = arg;
1151 int status = 0;
1152
1153 if (0 != t->index)
1154 return -EINVAL;
1155 memset(t, 0, sizeof(*t));
1156 strcpy(t->name, "Tuner");
1157 t->type = V4L2_TUNER_ANALOG_TV;
1158 t->capability = V4L2_TUNER_CAP_NORM;
1159 t->rangehigh = 0xffffffffUL; /* FIXME: set correct range */
1160/* t->signal = 0xffff; */
1161 /* No way to get signal strength? */
1162 down(&dev->lock);
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001163 em28xx_i2c_call_clients(dev, DECODER_GET_STATUS,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001164 &status);
1165 up(&dev->lock);
1166 t->signal =
1167 (status & DECODER_STATUS_GOOD) != 0 ? 0xffff : 0;
1168
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001169 em28xx_videodbg("VIDIO_S_TUNER: signal=%x, afc=%x\n",
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001170 t->signal, t->afc);
1171 return 0;
1172 }
1173 case VIDIOC_G_FREQUENCY:
1174 {
1175 struct v4l2_frequency *f = arg;
1176
1177 memset(f, 0, sizeof(*f));
1178 f->type = V4L2_TUNER_ANALOG_TV;
1179 f->frequency = dev->ctl_freq;
1180
1181 return 0;
1182 }
1183 case VIDIOC_S_FREQUENCY:
1184 {
1185 struct v4l2_frequency *f = arg;
1186
1187 if (0 != f->tuner)
1188 return -EINVAL;
1189
1190 if (V4L2_TUNER_ANALOG_TV != f->type)
1191 return -EINVAL;
1192
1193 down(&dev->lock);
1194 dev->ctl_freq = f->frequency;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001195 em28xx_i2c_call_clients(dev, VIDIOC_S_FREQUENCY, f);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001196 up(&dev->lock);
1197 return 0;
1198 }
1199
1200 case VIDIOC_CROPCAP:
1201 {
1202 struct v4l2_cropcap *cc = arg;
1203
1204 if (cc->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08001205 return -EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001206 cc->bounds.left = 0;
1207 cc->bounds.top = 0;
1208 cc->bounds.width = dev->width;
1209 cc->bounds.height = dev->height;
1210 cc->defrect = cc->bounds;
1211 cc->pixelaspect.numerator = 54; /* 4:3 FIXME: remove magic numbers */
1212 cc->pixelaspect.denominator = 59;
1213 return 0;
1214 }
1215 case VIDIOC_STREAMON:
1216 {
1217 int *type = arg;
1218
1219 if (*type != V4L2_BUF_TYPE_VIDEO_CAPTURE
1220 || dev->io != IO_MMAP)
1221 return -EINVAL;
1222
1223 if (list_empty(&dev->inqueue))
1224 return -EINVAL;
1225
1226 dev->stream = STREAM_ON; /* FIXME: Start video capture here? */
1227
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -08001228 em28xx_videodbg("VIDIOC_STREAMON: starting stream\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001229
1230 return 0;
1231 }
1232 case VIDIOC_STREAMOFF:
1233 {
1234 int *type = arg;
1235 int ret;
1236
1237 if (*type != V4L2_BUF_TYPE_VIDEO_CAPTURE
1238 || dev->io != IO_MMAP)
1239 return -EINVAL;
1240
1241 if (dev->stream == STREAM_ON) {
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -08001242 em28xx_videodbg ("VIDIOC_STREAMOFF: interrupting stream\n");
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001243 if ((ret = em28xx_stream_interrupt(dev)))
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001244 return ret;
1245 }
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001246 em28xx_empty_framequeues(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001247
1248 return 0;
1249 }
1250 default:
1251 return v4l_compat_translate_ioctl(inode, filp, cmd, arg,
1252 driver_ioctl);
1253 }
1254 return 0;
1255}
1256
1257/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001258 * em28xx_v4l2_do_ioctl()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001259 * This function is _not_ called directly, but from
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001260 * em28xx_v4l2_ioctl. Userspace
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001261 * copying is done already, arg is a kernel pointer.
1262 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001263static int em28xx_video_do_ioctl(struct inode *inode, struct file *filp,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001264 unsigned int cmd, void *arg)
1265{
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001266 struct em28xx *dev = filp->private_data;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001267
1268 if (!dev)
1269 return -ENODEV;
1270
1271 if (video_debug > 1)
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001272 em28xx_print_ioctl(dev->name,cmd);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001273
1274 switch (cmd) {
1275
1276 /* --- capabilities ------------------------------------------ */
1277 case VIDIOC_QUERYCAP:
1278 {
1279 struct v4l2_capability *cap = arg;
1280
1281 memset(cap, 0, sizeof(*cap));
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001282 strlcpy(cap->driver, "em28xx", sizeof(cap->driver));
1283 strlcpy(cap->card, em28xx_boards[dev->model].name,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001284 sizeof(cap->card));
1285 strlcpy(cap->bus_info, dev->udev->dev.bus_id,
1286 sizeof(cap->bus_info));
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001287 cap->version = EM28XX_VERSION_CODE;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001288 cap->capabilities =
1289 V4L2_CAP_VIDEO_CAPTURE |
1290 V4L2_CAP_AUDIO |
1291 V4L2_CAP_READWRITE | V4L2_CAP_STREAMING;
1292 if (dev->has_tuner)
1293 cap->capabilities |= V4L2_CAP_TUNER;
1294 return 0;
1295 }
1296
1297 /* --- capture ioctls ---------------------------------------- */
1298 case VIDIOC_ENUM_FMT:
1299 {
1300 struct v4l2_fmtdesc *fmtd = arg;
1301
1302 if (fmtd->index != 0)
1303 return -EINVAL;
1304 memset(fmtd, 0, sizeof(*fmtd));
1305 fmtd->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1306 strcpy(fmtd->description, "Packed YUY2");
1307 fmtd->pixelformat = V4L2_PIX_FMT_YUYV;
1308 memset(fmtd->reserved, 0, sizeof(fmtd->reserved));
1309 return 0;
1310 }
1311
1312 case VIDIOC_G_FMT:
1313 {
1314 struct v4l2_format *format = arg;
1315
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -08001316 em28xx_videodbg("VIDIOC_G_FMT: type=%s\n",
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001317 format->type ==
1318 V4L2_BUF_TYPE_VIDEO_CAPTURE ?
1319 "V4L2_BUF_TYPE_VIDEO_CAPTURE" : format->type ==
1320 V4L2_BUF_TYPE_VBI_CAPTURE ?
1321 "V4L2_BUF_TYPE_VBI_CAPTURE " :
1322 "not supported");
1323
1324 if (format->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1325 return -EINVAL;
1326
1327 format->fmt.pix.width = dev->width;
1328 format->fmt.pix.height = dev->height;
1329 format->fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;
1330 format->fmt.pix.bytesperline = dev->bytesperline;
1331 format->fmt.pix.sizeimage = dev->frame_size;
1332 format->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
1333 format->fmt.pix.field = dev->interlaced ? V4L2_FIELD_INTERLACED : V4L2_FIELD_TOP; /* FIXME: TOP? NONE? BOTTOM? ALTENATE? */
1334
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -08001335 em28xx_videodbg("VIDIOC_G_FMT: %dx%d\n", dev->width,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001336 dev->height);
1337 return 0;
1338 }
1339
1340 case VIDIOC_TRY_FMT:
1341 case VIDIOC_S_FMT:
1342 {
1343 struct v4l2_format *format = arg;
1344 u32 i;
1345 int ret = 0;
1346 int width = format->fmt.pix.width;
1347 int height = format->fmt.pix.height;
1348 unsigned int hscale, vscale;
1349 unsigned int maxh, maxw;
1350
1351 maxw = norm_maxw(dev);
1352 maxh = norm_maxh(dev);
1353
1354/* int both_fields; */
1355
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -08001356 em28xx_videodbg("%s: type=%s\n",
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001357 cmd ==
1358 VIDIOC_TRY_FMT ? "VIDIOC_TRY_FMT" :
1359 "VIDIOC_S_FMT",
1360 format->type ==
1361 V4L2_BUF_TYPE_VIDEO_CAPTURE ?
1362 "V4L2_BUF_TYPE_VIDEO_CAPTURE" : format->type ==
1363 V4L2_BUF_TYPE_VBI_CAPTURE ?
1364 "V4L2_BUF_TYPE_VBI_CAPTURE " :
1365 "not supported");
1366
1367 if (format->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1368 return -EINVAL;
1369
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -08001370 em28xx_videodbg("%s: requested %dx%d\n",
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001371 cmd ==
1372 VIDIOC_TRY_FMT ? "VIDIOC_TRY_FMT" :
1373 "VIDIOC_S_FMT", format->fmt.pix.width,
1374 format->fmt.pix.height);
1375
1376 /* FIXME: Move some code away from here */
1377 /* width must even because of the YUYV format */
1378 /* height must be even because of interlacing */
1379 height &= 0xfffe;
1380 width &= 0xfffe;
1381
1382 if (height < 32)
1383 height = 32;
1384 if (height > maxh)
1385 height = maxh;
1386 if (width < 48)
1387 width = 48;
1388 if (width > maxw)
1389 width = maxw;
1390
Sascha Sommer74458e62005-11-08 21:37:33 -08001391 if(dev->is_em2800){
Sascha Sommer52c02fc2005-11-08 21:38:10 -08001392 /* the em2800 can only scale down to 50% */
Sascha Sommer74458e62005-11-08 21:37:33 -08001393 if(height % (maxh / 2))
1394 height=maxh;
1395 if(width % (maxw / 2))
1396 width=maxw;
Sascha Sommer52c02fc2005-11-08 21:38:10 -08001397 /* according to empiatech support */
1398 /* the MaxPacketSize is to small to support */
1399 /* framesizes larger than 640x480 @ 30 fps */
1400 /* or 640x576 @ 25 fps. As this would cut */
1401 /* of a part of the image we prefer */
1402 /* 360x576 or 360x480 for now */
Sascha Sommer74458e62005-11-08 21:37:33 -08001403 if(width == maxw && height == maxh)
1404 width /= 2;
1405 }
1406
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001407 if ((hscale =
1408 (((unsigned long)maxw) << 12) / width - 4096L) >=
1409 0x4000)
1410 hscale = 0x3fff;
1411 width =
1412 (((unsigned long)maxw) << 12) / (hscale + 4096L);
1413
1414 if ((vscale =
1415 (((unsigned long)maxh) << 12) / height - 4096L) >=
1416 0x4000)
1417 vscale = 0x3fff;
1418 height =
1419 (((unsigned long)maxh) << 12) / (vscale + 4096L);
1420
1421 format->fmt.pix.width = width;
1422 format->fmt.pix.height = height;
1423 format->fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;
1424 format->fmt.pix.bytesperline = width * 2;
1425 format->fmt.pix.sizeimage = width * 2 * height;
1426 format->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
1427 format->fmt.pix.field = V4L2_FIELD_INTERLACED;
1428
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -08001429 em28xx_videodbg("%s: returned %dx%d (%d, %d)\n",
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001430 cmd ==
1431 VIDIOC_TRY_FMT ? "VIDIOC_TRY_FMT" :
1432 "VIDIOC_S_FMT", format->fmt.pix.width,
1433 format->fmt.pix.height, hscale, vscale);
1434
1435 if (cmd == VIDIOC_TRY_FMT)
1436 return 0;
1437
1438 for (i = 0; i < dev->num_frames; i++)
1439 if (dev->frame[i].vma_use_count) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001440 em28xx_videodbg("VIDIOC_S_FMT failed. "
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -08001441 "Unmap the buffers first.\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001442 return -EINVAL;
1443 }
1444
1445 /* stop io in case it is already in progress */
1446 if (dev->stream == STREAM_ON) {
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -08001447 em28xx_videodbg("VIDIOC_SET_FMT: interupting stream\n");
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001448 if ((ret = em28xx_stream_interrupt(dev)))
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001449 return ret;
1450 }
1451
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001452 em28xx_release_buffers(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001453 dev->io = IO_NONE;
1454
1455 /* set new image size */
1456 dev->width = width;
1457 dev->height = height;
1458 dev->frame_size = dev->width * dev->height * 2;
1459 dev->field_size = dev->frame_size >> 1; /*both_fileds ? dev->frame_size>>1 : dev->frame_size; */
1460 dev->bytesperline = dev->width * 2;
1461 dev->hscale = hscale;
1462 dev->vscale = vscale;
1463/* dev->both_fileds = both_fileds; */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001464 em28xx_uninit_isoc(dev);
1465 em28xx_set_alternate(dev);
1466 em28xx_capture_start(dev, 1);
1467 em28xx_resolution_set(dev);
1468 em28xx_init_isoc(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001469
1470 return 0;
1471 }
1472
1473 /* --- streaming capture ------------------------------------- */
1474 case VIDIOC_REQBUFS:
1475 {
1476 struct v4l2_requestbuffers *rb = arg;
1477 u32 i;
1478 int ret;
1479
1480 if (rb->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
1481 rb->memory != V4L2_MEMORY_MMAP)
1482 return -EINVAL;
1483
1484 if (dev->io == IO_READ) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001485 em28xx_videodbg ("method is set to read;"
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001486 " close and open the device again to"
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -08001487 " choose the mmap I/O method\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001488 return -EINVAL;
1489 }
1490
1491 for (i = 0; i < dev->num_frames; i++)
1492 if (dev->frame[i].vma_use_count) {
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -08001493 em28xx_videodbg ("VIDIOC_REQBUFS failed; previous buffers are still mapped\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001494 return -EINVAL;
1495 }
1496
1497 if (dev->stream == STREAM_ON) {
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -08001498 em28xx_videodbg("VIDIOC_REQBUFS: interrupting stream\n");
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001499 if ((ret = em28xx_stream_interrupt(dev)))
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001500 return ret;
1501 }
1502
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001503 em28xx_empty_framequeues(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001504
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001505 em28xx_release_buffers(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001506 if (rb->count)
1507 rb->count =
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001508 em28xx_request_buffers(dev, rb->count);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001509
1510 dev->frame_current = NULL;
1511
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -08001512 em28xx_videodbg ("VIDIOC_REQBUFS: setting io method to mmap: num bufs %i\n",
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001513 rb->count);
1514 dev->io = rb->count ? IO_MMAP : IO_NONE;
1515 return 0;
1516 }
1517
1518 case VIDIOC_QUERYBUF:
1519 {
1520 struct v4l2_buffer *b = arg;
1521
1522 if (b->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
1523 b->index >= dev->num_frames || dev->io != IO_MMAP)
1524 return -EINVAL;
1525
1526 memcpy(b, &dev->frame[b->index].buf, sizeof(*b));
1527
1528 if (dev->frame[b->index].vma_use_count) {
1529 b->flags |= V4L2_BUF_FLAG_MAPPED;
1530 }
1531 if (dev->frame[b->index].state == F_DONE)
1532 b->flags |= V4L2_BUF_FLAG_DONE;
1533 else if (dev->frame[b->index].state != F_UNUSED)
1534 b->flags |= V4L2_BUF_FLAG_QUEUED;
1535 return 0;
1536 }
1537 case VIDIOC_QBUF:
1538 {
1539 struct v4l2_buffer *b = arg;
1540 unsigned long lock_flags;
1541
1542 if (b->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
1543 b->index >= dev->num_frames || dev->io != IO_MMAP) {
1544 return -EINVAL;
1545 }
1546
1547 if (dev->frame[b->index].state != F_UNUSED) {
1548 return -EAGAIN;
1549 }
1550 dev->frame[b->index].state = F_QUEUED;
1551
1552 /* add frame to fifo */
1553 spin_lock_irqsave(&dev->queue_lock, lock_flags);
1554 list_add_tail(&dev->frame[b->index].frame,
1555 &dev->inqueue);
1556 spin_unlock_irqrestore(&dev->queue_lock, lock_flags);
1557
1558 return 0;
1559 }
1560 case VIDIOC_DQBUF:
1561 {
1562 struct v4l2_buffer *b = arg;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001563 struct em28xx_frame_t *f;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001564 unsigned long lock_flags;
1565 int ret = 0;
1566
1567 if (b->type != V4L2_BUF_TYPE_VIDEO_CAPTURE
1568 || dev->io != IO_MMAP)
1569 return -EINVAL;
1570
1571 if (list_empty(&dev->outqueue)) {
1572 if (dev->stream == STREAM_OFF)
1573 return -EINVAL;
1574 if (filp->f_flags & O_NONBLOCK)
1575 return -EAGAIN;
1576 ret = wait_event_interruptible
1577 (dev->wait_frame,
1578 (!list_empty(&dev->outqueue)) ||
1579 (dev->state & DEV_DISCONNECTED));
1580 if (ret)
1581 return ret;
1582 if (dev->state & DEV_DISCONNECTED)
1583 return -ENODEV;
1584 }
1585
1586 spin_lock_irqsave(&dev->queue_lock, lock_flags);
1587 f = list_entry(dev->outqueue.next,
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001588 struct em28xx_frame_t, frame);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001589 list_del(dev->outqueue.next);
1590 spin_unlock_irqrestore(&dev->queue_lock, lock_flags);
1591
1592 f->state = F_UNUSED;
1593 memcpy(b, &f->buf, sizeof(*b));
1594
1595 if (f->vma_use_count)
1596 b->flags |= V4L2_BUF_FLAG_MAPPED;
1597
1598 return 0;
1599 }
1600 default:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001601 return em28xx_do_ioctl(inode, filp, dev, cmd, arg,
1602 em28xx_video_do_ioctl);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001603 }
1604 return 0;
1605}
1606
1607/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001608 * em28xx_v4l2_ioctl()
1609 * handle v4l2 ioctl the main action happens in em28xx_v4l2_do_ioctl()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001610 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001611static int em28xx_v4l2_ioctl(struct inode *inode, struct file *filp,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001612 unsigned int cmd, unsigned long arg)
1613{
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001614 int ret = 0;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001615 struct em28xx *dev = filp->private_data;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001616
1617 if (down_interruptible(&dev->fileop_lock))
1618 return -ERESTARTSYS;
1619
1620 if (dev->state & DEV_DISCONNECTED) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001621 em28xx_errdev("v4l2 ioctl: device not present\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001622 up(&dev->fileop_lock);
1623 return -ENODEV;
1624 }
1625
1626 if (dev->state & DEV_MISCONFIGURED) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001627 em28xx_errdev
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001628 ("v4l2 ioctl: device is misconfigured; close and open it again\n");
1629 up(&dev->fileop_lock);
1630 return -EIO;
1631 }
1632
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001633 ret = video_usercopy(inode, filp, cmd, arg, em28xx_video_do_ioctl);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001634
1635 up(&dev->fileop_lock);
1636
1637 return ret;
1638}
1639
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001640static struct file_operations em28xx_v4l_fops = {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001641 .owner = THIS_MODULE,
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001642 .open = em28xx_v4l2_open,
1643 .release = em28xx_v4l2_close,
1644 .ioctl = em28xx_v4l2_ioctl,
1645 .read = em28xx_v4l2_read,
1646 .poll = em28xx_v4l2_poll,
1647 .mmap = em28xx_v4l2_mmap,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001648 .llseek = no_llseek,
Mauro Carvalho Chehab17cbe2e2006-01-09 15:24:58 -02001649 .compat_ioctl = v4l_compat_ioctl32,
1650
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001651};
1652
1653/******************************** usb interface *****************************************/
1654
1655/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001656 * em28xx_init_dev()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001657 * allocates and inits the device structs, registers i2c bus and v4l device
1658 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001659static int em28xx_init_dev(struct em28xx **devhandle, struct usb_device *udev,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001660 int minor, int model)
1661{
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001662 struct em28xx *dev = *devhandle;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001663 int retval = -ENOMEM;
1664 int errCode, i;
1665 unsigned int maxh, maxw;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001666
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001667 dev->udev = udev;
1668 dev->model = model;
1669 init_MUTEX(&dev->lock);
1670 init_waitqueue_head(&dev->open);
1671
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001672 dev->em28xx_write_regs = em28xx_write_regs;
1673 dev->em28xx_read_reg = em28xx_read_reg;
1674 dev->em28xx_read_reg_req_len = em28xx_read_reg_req_len;
1675 dev->em28xx_write_regs_req = em28xx_write_regs_req;
1676 dev->em28xx_read_reg_req = em28xx_read_reg_req;
1677 dev->is_em2800 = em28xx_boards[model].is_em2800;
1678 dev->has_tuner = em28xx_boards[model].has_tuner;
1679 dev->has_msp34xx = em28xx_boards[model].has_msp34xx;
1680 dev->tda9887_conf = em28xx_boards[model].tda9887_conf;
1681 dev->decoder = em28xx_boards[model].decoder;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001682
1683 if (tuner >= 0)
1684 dev->tuner_type = tuner;
1685 else
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001686 dev->tuner_type = em28xx_boards[model].tuner_type;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001687
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001688 dev->video_inputs = em28xx_boards[model].vchannels;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001689
1690 for (i = 0; i < TVNORMS; i++)
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001691 if (em28xx_boards[model].norm == tvnorms[i].mode)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001692 break;
1693 if (i == TVNORMS)
1694 i = 0;
1695
1696 dev->tvnorm = &tvnorms[i]; /* set default norm */
1697
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001698 em28xx_videodbg("tvnorm=%s\n", dev->tvnorm->name);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001699
1700 maxw = norm_maxw(dev);
1701 maxh = norm_maxh(dev);
1702
1703 /* set default image size */
1704 dev->width = maxw;
1705 dev->height = maxh;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001706 dev->interlaced = EM28XX_INTERLACED_DEFAULT;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001707 dev->field_size = dev->width * dev->height;
1708 dev->frame_size =
1709 dev->interlaced ? dev->field_size << 1 : dev->field_size;
1710 dev->bytesperline = dev->width * 2;
1711 dev->hscale = 0;
1712 dev->vscale = 0;
1713 dev->ctl_input = 2;
1714
1715 /* setup video picture settings for saa7113h */
1716 memset(&dev->vpic, 0, sizeof(dev->vpic));
1717 dev->vpic.colour = 128 << 8;
1718 dev->vpic.hue = 128 << 8;
1719 dev->vpic.brightness = 128 << 8;
1720 dev->vpic.contrast = 192 << 8;
1721 dev->vpic.whiteness = 128 << 8; /* This one isn't used */
1722 dev->vpic.depth = 16;
1723 dev->vpic.palette = VIDEO_PALETTE_YUV422;
1724
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001725#ifdef CONFIG_MODULES
1726 /* request some modules */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001727 if (dev->decoder == EM28XX_SAA7113 || dev->decoder == EM28XX_SAA7114)
Mauro Carvalho Chehab91cad0f2005-11-08 21:38:13 -08001728 request_module("saa711x");
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001729 if (dev->decoder == EM28XX_TVP5150)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001730 request_module("tvp5150");
1731 if (dev->has_tuner)
1732 request_module("tuner");
1733 if (dev->tda9887_conf)
1734 request_module("tda9887");
1735#endif
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001736 errCode = em28xx_config(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001737 if (errCode) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001738 em28xx_errdev("error configuring device\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001739 kfree(dev);
1740 return -ENOMEM;
1741 }
1742
1743 down(&dev->lock);
1744 /* register i2c bus */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001745 em28xx_i2c_register(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001746
1747 /* Do board specific init and eeprom reading */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001748 em28xx_card_setup(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001749
1750 /* configure the device */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001751 em28xx_config_i2c(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001752
1753 up(&dev->lock);
1754
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001755 errCode = em28xx_config(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001756
1757#ifdef CONFIG_MODULES
1758 if (dev->has_msp34xx)
1759 request_module("msp3400");
1760#endif
1761 /* allocate and fill v4l2 device struct */
1762 dev->vdev = video_device_alloc();
1763 if (NULL == dev->vdev) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001764 em28xx_errdev("cannot allocate video_device.\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001765 kfree(dev);
1766 return -ENOMEM;
1767 }
1768
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001769 dev->vdev->type = VID_TYPE_CAPTURE;
1770 if (dev->has_tuner)
1771 dev->vdev->type |= VID_TYPE_TUNER;
1772 dev->vdev->hardware = 0;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001773 dev->vdev->fops = &em28xx_v4l_fops;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001774 dev->vdev->minor = -1;
1775 dev->vdev->dev = &dev->udev->dev;
1776 dev->vdev->release = video_device_release;
1777 snprintf(dev->vdev->name, sizeof(dev->vdev->name), "%s",
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001778 "em28xx video");
1779 list_add_tail(&dev->devlist,&em28xx_devlist);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001780
1781 /* register v4l2 device */
1782 down(&dev->lock);
1783 if ((retval = video_register_device(dev->vdev, VFL_TYPE_GRABBER, -1))) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001784 em28xx_errdev("unable to register video device (error=%i).\n",
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001785 retval);
1786 up(&dev->lock);
Markus Rechberger9c755412005-11-08 21:37:52 -08001787 list_del(&dev->devlist);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001788 video_device_release(dev->vdev);
1789 kfree(dev);
1790 return -ENODEV;
1791 }
1792 if (dev->has_msp34xx) {
1793 /* Send a reset to other chips via gpio */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001794 em28xx_write_regs_req(dev, 0x00, 0x08, "\xf7", 1);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001795 udelay(2500);
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001796 em28xx_write_regs_req(dev, 0x00, 0x08, "\xff", 1);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001797 udelay(2500);
1798
1799 }
1800 video_mux(dev, 0);
1801
1802 up(&dev->lock);
1803
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001804 em28xx_info("V4L2 device registered as /dev/video%d\n",
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001805 dev->vdev->minor);
1806
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001807 return 0;
1808}
1809
1810/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001811 * em28xx_usb_probe()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001812 * checks for supported devices
1813 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001814static int em28xx_usb_probe(struct usb_interface *interface,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001815 const struct usb_device_id *id)
1816{
1817 const struct usb_endpoint_descriptor *endpoint;
1818 struct usb_device *udev;
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -08001819 struct usb_interface *uif;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001820 struct em28xx *dev = NULL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001821 int retval = -ENODEV;
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -08001822 int model,i,nr,ifnum;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001823
1824 udev = usb_get_dev(interface_to_usbdev(interface));
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -08001825 ifnum = interface->altsetting[0].desc.bInterfaceNumber;
1826
Mauro Carvalho Chehab91cad0f2005-11-08 21:38:13 -08001827
1828 /* Don't register audio interfaces */
1829 if (interface->altsetting[0].desc.bInterfaceClass == USB_CLASS_AUDIO) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001830 em28xx_err(DRIVER_NAME " audio device (%04x:%04x): interface %i, class %i\n",
Mauro Carvalho Chehab91cad0f2005-11-08 21:38:13 -08001831 udev->descriptor.idVendor,udev->descriptor.idProduct,
1832 ifnum,
1833 interface->altsetting[0].desc.bInterfaceClass);
1834 return -ENODEV;
1835 }
1836
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001837 em28xx_err(DRIVER_NAME " new video device (%04x:%04x): interface %i, class %i\n",
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -08001838 udev->descriptor.idVendor,udev->descriptor.idProduct,
1839 ifnum,
1840 interface->altsetting[0].desc.bInterfaceClass);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001841
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -08001842 endpoint = &interface->cur_altsetting->endpoint[1].desc;
1843
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001844 /* check if the the device has the iso in endpoint at the correct place */
1845 if ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) !=
1846 USB_ENDPOINT_XFER_ISOC) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001847 em28xx_err(DRIVER_NAME " probing error: endpoint is non-ISO endpoint!\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001848 return -ENODEV;
1849 }
1850 if ((endpoint->bEndpointAddress & USB_ENDPOINT_DIR_MASK) == USB_DIR_OUT) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001851 em28xx_err(DRIVER_NAME " probing error: endpoint is ISO OUT endpoint!\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001852 return -ENODEV;
1853 }
1854
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08001855 model=id->driver_info;
1856 nr=interface->minor;
1857
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001858 if (nr>EM28XX_MAXBOARDS) {
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -08001859 printk (DRIVER_NAME ": Supports only %i em28xx boards.\n",EM28XX_MAXBOARDS);
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08001860 return -ENOMEM;
1861 }
1862
1863 /* allocate memory for our device state and initialize it */
1864 dev = kmalloc(sizeof(*dev), GFP_KERNEL);
1865 if (dev == NULL) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001866 em28xx_err(DRIVER_NAME ": out of memory!\n");
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08001867 return -ENOMEM;
1868 }
1869 memset(dev, 0, sizeof(*dev));
1870
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -08001871 /* compute alternate max packet sizes */
1872 uif = udev->actconfig->interface[0];
1873
1874 dev->num_alt=uif->num_altsetting;
1875 printk(DRIVER_NAME ": Alternate settings: %i\n",dev->num_alt);
1876// dev->alt_max_pkt_size = kmalloc(sizeof(*dev->alt_max_pkt_size)*
1877 dev->alt_max_pkt_size = kmalloc(32*
1878 dev->num_alt,GFP_KERNEL);
1879 if (dev->alt_max_pkt_size == NULL) {
1880 em28xx_err(DRIVER_NAME ": out of memory!\n");
1881 return -ENOMEM;
1882 }
1883
1884 for (i = 0; i < dev->num_alt ; i++) {
1885 u16 tmp = le16_to_cpu(uif->altsetting[i].endpoint[1].desc.
1886 wMaxPacketSize);
1887 dev->alt_max_pkt_size[i] =
1888 (tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1);
1889 printk(DRIVER_NAME ": Alternate setting %i, max size= %i\n",i,
1890 dev->alt_max_pkt_size[i]);
1891 }
1892
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001893 snprintf(dev->name, 29, "em28xx #%d", nr);
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08001894
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001895 if ((card[nr]>=0)&&(card[nr]<em28xx_bcount))
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08001896 model=card[nr];
1897
1898 if ((model==EM2800_BOARD_UNKNOWN)||(model==EM2820_BOARD_UNKNOWN)) {
1899 printk( "%s: Your board has no eeprom inside it and thus can't\n"
1900 "%s: be autodetected. Please pass card=<n> insmod option to\n"
1901 "%s: workaround that. Redirect complaints to the vendor of\n"
1902 "%s: the TV card. Best regards,\n"
1903 "%s: -- tux\n",
1904 dev->name,dev->name,dev->name,dev->name,dev->name);
1905 printk("%s: Here is a list of valid choices for the card=<n> insmod option:\n",
1906 dev->name);
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001907 for (i = 0; i < em28xx_bcount; i++) {
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08001908 printk("%s: card=%d -> %s\n",
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001909 dev->name, i, em28xx_boards[i].name);
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08001910 }
1911 }
1912
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001913 /* allocate device struct */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001914 retval = em28xx_init_dev(&dev, udev, nr, model);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001915 if (retval)
1916 return retval;
1917
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001918 em28xx_info("Found %s\n", em28xx_boards[model].name);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001919
1920 /* save our data pointer in this interface device */
1921 usb_set_intfdata(interface, dev);
1922 return 0;
1923}
1924
1925/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001926 * em28xx_usb_disconnect()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001927 * called when the device gets diconencted
1928 * video device will be unregistered on v4l2_close in case it is still open
1929 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001930static void em28xx_usb_disconnect(struct usb_interface *interface)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001931{
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001932 struct em28xx *dev = usb_get_intfdata(interface);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001933 usb_set_intfdata(interface, NULL);
1934
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -02001935/*FIXME: IR should be disconnected */
1936
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001937 if (!dev)
1938 return;
1939
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -02001940
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001941 down_write(&em28xx_disconnect);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001942
1943 down(&dev->lock);
1944
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001945 em28xx_info("disconnecting %s\n", dev->vdev->name);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001946
1947 wake_up_interruptible_all(&dev->open);
1948
1949 if (dev->users) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001950 em28xx_warn
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001951 ("device /dev/video%d is open! Deregistration and memory "
1952 "deallocation are deferred on close.\n", dev->vdev->minor);
1953 dev->state |= DEV_MISCONFIGURED;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001954 em28xx_uninit_isoc(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001955 dev->state |= DEV_DISCONNECTED;
1956 wake_up_interruptible(&dev->wait_frame);
1957 wake_up_interruptible(&dev->wait_stream);
1958 } else {
1959 dev->state |= DEV_DISCONNECTED;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001960 em28xx_release_resources(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001961 }
1962
1963 up(&dev->lock);
1964
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -08001965 if (!dev->users) {
1966 kfree(dev->alt_max_pkt_size);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001967 kfree(dev);
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -08001968 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001969
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001970 up_write(&em28xx_disconnect);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001971}
1972
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001973static struct usb_driver em28xx_usb_driver = {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001974 .name = "em28xx",
1975 .probe = em28xx_usb_probe,
1976 .disconnect = em28xx_usb_disconnect,
1977 .id_table = em28xx_id_table,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001978};
1979
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001980static int __init em28xx_module_init(void)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001981{
1982 int result;
1983
1984 printk(KERN_INFO DRIVER_NAME " v4l2 driver version %d.%d.%d loaded\n",
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001985 (EM28XX_VERSION_CODE >> 16) & 0xff,
1986 (EM28XX_VERSION_CODE >> 8) & 0xff, EM28XX_VERSION_CODE & 0xff);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001987#ifdef SNAPSHOT
1988 printk(KERN_INFO DRIVER_NAME " snapshot date %04d-%02d-%02d\n",
1989 SNAPSHOT / 10000, (SNAPSHOT / 100) % 100, SNAPSHOT % 100);
1990#endif
1991
1992 /* register this driver with the USB subsystem */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001993 result = usb_register(&em28xx_usb_driver);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001994 if (result)
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001995 em28xx_err(DRIVER_NAME
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001996 " usb_register failed. Error number %d.\n", result);
1997
1998 return result;
1999}
2000
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002001static void __exit em28xx_module_exit(void)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002002{
2003 /* deregister this driver with the USB subsystem */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002004 usb_deregister(&em28xx_usb_driver);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002005}
2006
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002007module_init(em28xx_module_init);
2008module_exit(em28xx_module_exit);