blob: f56ae4852165e1dba939527a7e70c870f7aaf663 [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
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>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080035#include <linux/video_decoder.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 Chehabd5e52652005-11-08 21:37:32 -080039#include <media/tuner.h>
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -020040#include <media/v4l2-common.h>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080041
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -080042#define DRIVER_AUTHOR "Ludovico Cavedon <cavedon@sssup.it>, " \
43 "Markus Rechberger <mrechberger@gmail.com>, " \
44 "Mauro Carvalho Chehab <mchehab@brturbo.com.br>, " \
45 "Sascha Sommer <saschasommer@freenet.de>"
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080046
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -080047#define DRIVER_NAME "em28xx"
48#define DRIVER_DESC "Empia em28xx based USB video device driver"
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -080049#define EM28XX_VERSION_CODE KERNEL_VERSION(0, 0, 1)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080050
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -080051#define em28xx_videodbg(fmt, arg...) do {\
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080052 if (video_debug) \
53 printk(KERN_INFO "%s %s :"fmt, \
Jean Delvaref85c6572005-12-19 08:53:59 -020054 dev->name, __FUNCTION__ , ##arg); } while (0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080055
56MODULE_AUTHOR(DRIVER_AUTHOR);
57MODULE_DESCRIPTION(DRIVER_DESC);
58MODULE_LICENSE("GPL");
59
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -080060static LIST_HEAD(em28xx_devlist);
Markus Rechberger9c755412005-11-08 21:37:52 -080061
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -080062static unsigned int card[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -020063static unsigned int video_nr[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
64static unsigned int vbi_nr[] = {[0 ... (EM28XX_MAXBOARDS - 1)] = UNSET };
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -080065module_param_array(card, int, NULL, 0444);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -020066module_param_array(video_nr, int, NULL, 0444);
67module_param_array(vbi_nr, int, NULL, 0444);
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -080068MODULE_PARM_DESC(card,"card type");
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -020069MODULE_PARM_DESC(video_nr,"video device numbers");
70MODULE_PARM_DESC(vbi_nr,"vbi device numbers");
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -080071
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080072static int tuner = -1;
73module_param(tuner, int, 0444);
74MODULE_PARM_DESC(tuner, "tuner type");
75
76static unsigned int video_debug = 0;
77module_param(video_debug,int,0644);
78MODULE_PARM_DESC(video_debug,"enable debug messages [video]");
79
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -020080/* Bitmask marking allocated devices from 0 to EM28XX_MAXBOARDS */
81static unsigned long em28xx_devused;
82
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080083/* supported tv norms */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -080084static struct em28xx_tvnorm tvnorms[] = {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080085 {
86 .name = "PAL",
87 .id = V4L2_STD_PAL,
88 .mode = VIDEO_MODE_PAL,
89 }, {
90 .name = "NTSC",
91 .id = V4L2_STD_NTSC,
92 .mode = VIDEO_MODE_NTSC,
93 }, {
94 .name = "SECAM",
95 .id = V4L2_STD_SECAM,
96 .mode = VIDEO_MODE_SECAM,
97 }, {
98 .name = "PAL-M",
99 .id = V4L2_STD_PAL_M,
100 .mode = VIDEO_MODE_PAL,
101 }
102};
103
Markus Rechbergera38a7d42005-11-08 21:38:06 -0800104static const unsigned char saa7114_i2c_init[] = {
105 0x00,0x00,0x01,0x08,0x02,0xc4,0x03,0x30,0x04,0x90,0x05,0x90,0x06,0xeb,0x07,0xe0,
106 0x08,0x88,0x09,0x40,0x0a,0x80,0x0b,0x44,0x0c,0x40,0x0d,0x00,0x0e,0x81,0x0f,0x2a,
107 0x10,0x06,0x11,0x00,0x12,0xc8,0x13,0x80,0x14,0x00,0x15,0x11,0x16,0x01,0x17,0x42,
108 0x18,0x40,0x19,0x80,0x40,0x00,0x41,0xff,0x42,0xff,0x43,0xff,0x44,0xff,0x45,0xff,
109 0x46,0xff,0x47,0xff,0x48,0xff,0x49,0xff,0x4a,0xff,0x4b,0xff,0x4c,0xff,0x4d,0xff,
110 0x4e,0xff,0x4f,0xff,0x50,0xff,0x51,0xff,0x52,0xff,0x53,0xff,0x54,0x5f,0x55,0xff,
111 0x56,0xff,0x57,0xff,0x58,0x00,0x59,0x47,0x5a,0x03,0x5b,0x03,0x5d,0x3e,0x5e,0x00,
112 0x80,0x1c,0x83,0x01,0x84,0xa5,0x85,0x10,0x86,0x45,0x87,0x41,0x88,0xf0,0x88,0x00,
113 0x88,0xf0,0x90,0x00,0x91,0x08,0x92,0x00,0x93,0x80,0x94,0x08,0x95,0x00,0x96,0xc0,
114 0x97,0x02,0x98,0x13,0x99,0x00,0x9a,0x38,0x9b,0x01,0x9c,0x80,0x9d,0x02,0x9e,0x06,
115 0x9f,0x01,0xa0,0x01,0xa1,0x00,0xa2,0x00,0xa4,0x80,0xa5,0x36,0xa6,0x36,0xa8,0x67,
116 0xa9,0x04,0xaa,0x00,0xac,0x33,0xad,0x02,0xae,0x00,0xb0,0xcd,0xb1,0x04,0xb2,0xcd,
117 0xb3,0x04,0xb4,0x01,0xb8,0x00,0xb9,0x00,0xba,0x00,0xbb,0x00,0xbc,0x00,0xbd,0x00,
118 0xbe,0x00,0xbf,0x00
119};
120
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800121#define TVNORMS ARRAY_SIZE(tvnorms)
122
123/* supported controls */
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200124/* Common to all boards */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800125static struct v4l2_queryctrl em28xx_qctrl[] = {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800126 {
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200127 .id = V4L2_CID_AUDIO_VOLUME,
128 .type = V4L2_CTRL_TYPE_INTEGER,
129 .name = "Volume",
130 .minimum = 0x0,
131 .maximum = 0x1f,
132 .step = 0x1,
133 .default_value = 0x1f,
134 .flags = 0,
135 },{
136 .id = V4L2_CID_AUDIO_MUTE,
137 .type = V4L2_CTRL_TYPE_BOOLEAN,
138 .name = "Mute",
139 .minimum = 0,
140 .maximum = 1,
141 .step = 1,
142 .default_value = 1,
143 .flags = 0,
144 }
145};
146
147/* FIXME: These are specific to saa711x - should be moved to its code */
148static struct v4l2_queryctrl saa711x_qctrl[] = {
149 {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800150 .id = V4L2_CID_BRIGHTNESS,
151 .type = V4L2_CTRL_TYPE_INTEGER,
152 .name = "Brightness",
153 .minimum = -128,
154 .maximum = 127,
155 .step = 1,
156 .default_value = 0,
157 .flags = 0,
158 },{
159 .id = V4L2_CID_CONTRAST,
160 .type = V4L2_CTRL_TYPE_INTEGER,
161 .name = "Contrast",
162 .minimum = 0x0,
163 .maximum = 0x1f,
164 .step = 0x1,
165 .default_value = 0x10,
166 .flags = 0,
167 },{
168 .id = V4L2_CID_SATURATION,
169 .type = V4L2_CTRL_TYPE_INTEGER,
170 .name = "Saturation",
171 .minimum = 0x0,
172 .maximum = 0x1f,
173 .step = 0x1,
174 .default_value = 0x10,
175 .flags = 0,
176 },{
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800177 .id = V4L2_CID_RED_BALANCE,
178 .type = V4L2_CTRL_TYPE_INTEGER,
179 .name = "Red chroma balance",
180 .minimum = -128,
181 .maximum = 127,
182 .step = 1,
183 .default_value = 0,
184 .flags = 0,
185 },{
186 .id = V4L2_CID_BLUE_BALANCE,
187 .type = V4L2_CTRL_TYPE_INTEGER,
188 .name = "Blue chroma balance",
189 .minimum = -128,
190 .maximum = 127,
191 .step = 1,
192 .default_value = 0,
193 .flags = 0,
194 },{
195 .id = V4L2_CID_GAMMA,
196 .type = V4L2_CTRL_TYPE_INTEGER,
197 .name = "Gamma",
198 .minimum = 0x0,
199 .maximum = 0x3f,
200 .step = 0x1,
201 .default_value = 0x20,
202 .flags = 0,
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200203 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800204};
205
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800206static struct usb_driver em28xx_usb_driver;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800207
Ingo Molnar1e4baed2006-01-15 07:52:23 -0200208static DEFINE_MUTEX(em28xx_sysfs_lock);
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800209static DECLARE_RWSEM(em28xx_disconnect);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800210
211/********************* v4l2 interface ******************************************/
212
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800213/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800214 * em28xx_config()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800215 * inits registers with sane defaults
216 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800217static int em28xx_config(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800218{
219
220 /* Sets I2C speed to 100 KHz */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800221 em28xx_write_regs_req(dev, 0x00, 0x06, "\x40", 1);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800222
223 /* enable vbi capturing */
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200224
Markus Rechberger9475fb12006-02-27 00:07:34 -0300225/* em28xx_write_regs_req(dev,0x00,0x0e,"\xC0",1); audio register */
226/* em28xx_write_regs_req(dev,0x00,0x0f,"\x80",1); clk register */
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200227 em28xx_write_regs_req(dev,0x00,0x11,"\x51",1);
228
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800229 em28xx_audio_usb_mute(dev, 1);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800230 dev->mute = 1; /* maybe not the right place... */
231 dev->volume = 0x1f;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800232 em28xx_audio_analog_set(dev);
233 em28xx_audio_analog_setup(dev);
234 em28xx_outfmt_set_yuv422(dev);
235 em28xx_colorlevels_set_default(dev);
236 em28xx_compression_disable(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800237
238 return 0;
239}
240
241/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800242 * em28xx_config_i2c()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800243 * configure i2c attached devices
244 */
Adrian Bunk943a4902005-12-01 00:51:35 -0800245static void em28xx_config_i2c(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800246{
247 struct v4l2_frequency f;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800248 struct video_decoder_init em28xx_vdi = {.data = NULL };
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800249
250
251 /* configure decoder */
Markus Rechbergera38a7d42005-11-08 21:38:06 -0800252 if(dev->model == EM2820_BOARD_MSI_VOX_USB_2){
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800253 em28xx_vdi.data=saa7114_i2c_init;
254 em28xx_vdi.len=sizeof(saa7114_i2c_init);
Markus Rechbergera38a7d42005-11-08 21:38:06 -0800255 }
256
257
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800258 em28xx_i2c_call_clients(dev, DECODER_INIT, &em28xx_vdi);
259 em28xx_i2c_call_clients(dev, DECODER_SET_INPUT, &dev->ctl_input);
260/* em28xx_i2c_call_clients(dev,DECODER_SET_PICTURE, &dev->vpic); */
261/* em28xx_i2c_call_clients(dev,DECODER_SET_NORM,&dev->tvnorm->id); */
262/* em28xx_i2c_call_clients(dev,DECODER_ENABLE_OUTPUT,&output); */
263/* em28xx_i2c_call_clients(dev,DECODER_DUMP, NULL); */
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800264
265 /* configure tuner */
266 f.tuner = 0;
267 f.type = V4L2_TUNER_ANALOG_TV;
268 f.frequency = 9076; /* FIXME:remove magic number */
269 dev->ctl_freq = f.frequency;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800270 em28xx_i2c_call_clients(dev, VIDIOC_S_FREQUENCY, &f);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800271
272 /* configure tda9887 */
273
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800274
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800275/* em28xx_i2c_call_clients(dev,VIDIOC_S_STD,&dev->tvnorm->id); */
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800276}
277
278/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800279 * em28xx_empty_framequeues()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800280 * prepare queues for incoming and outgoing frames
281 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800282static void em28xx_empty_framequeues(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800283{
284 u32 i;
285
286 INIT_LIST_HEAD(&dev->inqueue);
287 INIT_LIST_HEAD(&dev->outqueue);
288
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800289 for (i = 0; i < EM28XX_NUM_FRAMES; i++) {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800290 dev->frame[i].state = F_UNUSED;
291 dev->frame[i].buf.bytesused = 0;
292 }
293}
294
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800295static void video_mux(struct em28xx *dev, int index)
296{
297 int input, ainput;
298
299 input = INPUT(index)->vmux;
300 dev->ctl_input = index;
301 dev->ctl_ainput = INPUT(index)->amux;
302
303 em28xx_i2c_call_clients(dev, DECODER_SET_INPUT, &input);
304
305
306 em28xx_videodbg("Setting input index=%d, vmux=%d, amux=%d\n",index,input,dev->ctl_ainput);
307
308 if (dev->has_msp34xx) {
Mauro Carvalho Chehab9bb13a62006-01-09 15:25:37 -0200309 if (dev->i2s_speed)
310 em28xx_i2c_call_clients(dev, VIDIOC_INT_I2S_CLOCK_FREQ, &dev->i2s_speed);
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800311 em28xx_i2c_call_clients(dev, VIDIOC_S_AUDIO, &dev->ctl_ainput);
312 ainput = EM28XX_AUDIO_SRC_TUNER;
313 em28xx_audio_source(dev, ainput);
314 } else {
315 switch (dev->ctl_ainput) {
Markus Rechberger9475fb12006-02-27 00:07:34 -0300316 case 0:
317 ainput = EM28XX_AUDIO_SRC_TUNER;
318 break;
319 default:
320 ainput = EM28XX_AUDIO_SRC_LINE;
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800321 }
322 em28xx_audio_source(dev, ainput);
323 }
324}
325
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800326/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800327 * em28xx_v4l2_open()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800328 * inits the device and starts isoc transfer
329 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800330static int em28xx_v4l2_open(struct inode *inode, struct file *filp)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800331{
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800332 int minor = iminor(inode);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800333 int errCode = 0;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800334 struct em28xx *h,*dev = NULL;
Markus Rechberger9c755412005-11-08 21:37:52 -0800335 struct list_head *list;
336
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800337 list_for_each(list,&em28xx_devlist) {
338 h = list_entry(list, struct em28xx, devlist);
Markus Rechberger9c755412005-11-08 21:37:52 -0800339 if (h->vdev->minor == minor) {
340 dev = h;
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200341 dev->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
342 }
343 if (h->vbi_dev->minor == minor) {
344 dev = h;
345 dev->type = V4L2_BUF_TYPE_VBI_CAPTURE;
Markus Rechberger9c755412005-11-08 21:37:52 -0800346 }
347 }
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200348 if (NULL == dev)
349 return -ENODEV;
Markus Rechberger9c755412005-11-08 21:37:52 -0800350
351 filp->private_data=dev;
352
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200353 em28xx_videodbg("open minor=%d type=%s users=%d\n",
354 minor,v4l2_type_names[dev->type],dev->users);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800355
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800356 if (!down_read_trylock(&em28xx_disconnect))
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800357 return -ERESTARTSYS;
358
359 if (dev->users) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800360 em28xx_warn("this driver can be opened only once\n");
361 up_read(&em28xx_disconnect);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800362 return -EBUSY;
363 }
364
Ingo Molnar3593cab2006-02-07 06:49:14 -0200365 mutex_init(&dev->fileop_lock); /* to 1 == available */
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800366 spin_lock_init(&dev->queue_lock);
367 init_waitqueue_head(&dev->wait_frame);
368 init_waitqueue_head(&dev->wait_stream);
369
Ingo Molnar3593cab2006-02-07 06:49:14 -0200370 mutex_lock(&dev->lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800371
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200372 if (dev->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
373 em28xx_set_alternate(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800374
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200375 dev->width = norm_maxw(dev);
376 dev->height = norm_maxh(dev);
377 dev->frame_size = dev->width * dev->height * 2;
378 dev->field_size = dev->frame_size >> 1; /*both_fileds ? dev->frame_size>>1 : dev->frame_size; */
379 dev->bytesperline = dev->width * 2;
380 dev->hscale = 0;
381 dev->vscale = 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800382
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200383 em28xx_capture_start(dev, 1);
384 em28xx_resolution_set(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800385
Markus Rechbergere5d4a562006-02-07 06:49:13 -0200386 /* device needs to be initialized before isoc transfer */
387 video_mux(dev, 0);
388
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200389 /* start the transfer */
390 errCode = em28xx_init_isoc(dev);
391 if (errCode)
392 goto err;
393
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200394 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800395
396 dev->users++;
397 filp->private_data = dev;
398 dev->io = IO_NONE;
399 dev->stream = STREAM_OFF;
400 dev->num_frames = 0;
401
402 /* prepare queues */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800403 em28xx_empty_framequeues(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800404
405 dev->state |= DEV_INITIALIZED;
406
Ingo Molnar3593cab2006-02-07 06:49:14 -0200407err:
408 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800409 up_read(&em28xx_disconnect);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800410 return errCode;
411}
412
413/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800414 * em28xx_realease_resources()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800415 * unregisters the v4l2,i2c and usb devices
416 * called when the device gets disconected or at module unload
417*/
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800418static void em28xx_release_resources(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800419{
Ingo Molnar1e4baed2006-01-15 07:52:23 -0200420 mutex_lock(&em28xx_sysfs_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800421
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200422 /*FIXME: I2C IR should be disconnected */
423
424 em28xx_info("V4L2 devices /dev/video%d and /dev/vbi%d deregistered\n",
425 dev->vdev->minor-MINOR_VFL_TYPE_GRABBER_MIN,
426 dev->vbi_dev->minor-MINOR_VFL_TYPE_VBI_MIN);
Markus Rechberger9c755412005-11-08 21:37:52 -0800427 list_del(&dev->devlist);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800428 video_unregister_device(dev->vdev);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200429 video_unregister_device(dev->vbi_dev);
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800430 em28xx_i2c_unregister(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800431 usb_put_dev(dev->udev);
Ingo Molnar1e4baed2006-01-15 07:52:23 -0200432 mutex_unlock(&em28xx_sysfs_lock);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200433
434
435 /* Mark device as unused */
436 em28xx_devused&=~(1<<dev->devno);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800437}
438
439/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800440 * em28xx_v4l2_close()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800441 * stops streaming and deallocates all resources allocated by the v4l2 calls and ioctls
442 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800443static int em28xx_v4l2_close(struct inode *inode, struct file *filp)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800444{
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800445 int errCode;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800446 struct em28xx *dev=filp->private_data;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800447
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800448 em28xx_videodbg("users=%d\n", dev->users);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800449
Ingo Molnar3593cab2006-02-07 06:49:14 -0200450 mutex_lock(&dev->lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800451
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800452 em28xx_uninit_isoc(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800453
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800454 em28xx_release_buffers(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800455
456 /* the device is already disconnect, free the remaining resources */
457 if (dev->state & DEV_DISCONNECTED) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800458 em28xx_release_resources(dev);
Ingo Molnar3593cab2006-02-07 06:49:14 -0200459 mutex_unlock(&dev->lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800460 kfree(dev);
461 return 0;
462 }
463
464 /* set alternate 0 */
465 dev->alt = 0;
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800466 em28xx_videodbg("setting alternate 0\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800467 errCode = usb_set_interface(dev->udev, 0, 0);
468 if (errCode < 0) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800469 em28xx_errdev ("cannot change alternate number to 0 (error=%i)\n",
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800470 errCode);
471 }
472
473 dev->users--;
474 wake_up_interruptible_nr(&dev->open, 1);
Ingo Molnar3593cab2006-02-07 06:49:14 -0200475 mutex_unlock(&dev->lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800476 return 0;
477}
478
479/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800480 * em28xx_v4l2_read()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800481 * will allocate buffers when called for the first time
482 */
483static ssize_t
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800484em28xx_v4l2_read(struct file *filp, char __user * buf, size_t count,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800485 loff_t * f_pos)
486{
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800487 struct em28xx_frame_t *f, *i;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800488 unsigned long lock_flags;
489 int ret = 0;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800490 struct em28xx *dev = filp->private_data;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800491
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200492 if (dev->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
493 em28xx_videodbg("V4l2_Buf_type_videocapture is set\n");
494 }
495 if (dev->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
496 em28xx_videodbg("V4L2_BUF_TYPE_VBI_CAPTURE is set\n");
497 em28xx_videodbg("not supported yet! ...\n");
498 if (copy_to_user(buf, "", 1)) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200499 mutex_unlock(&dev->fileop_lock);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200500 return -EFAULT;
501 }
502 return (1);
503 }
504 if (dev->type == V4L2_BUF_TYPE_SLICED_VBI_CAPTURE) {
505 em28xx_videodbg("V4L2_BUF_TYPE_SLICED_VBI_CAPTURE is set\n");
506 em28xx_videodbg("not supported yet! ...\n");
507 if (copy_to_user(buf, "", 1)) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200508 mutex_unlock(&dev->fileop_lock);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200509 return -EFAULT;
510 }
511 return (1);
512 }
513
Ingo Molnar3593cab2006-02-07 06:49:14 -0200514 if (mutex_lock_interruptible(&dev->fileop_lock))
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800515 return -ERESTARTSYS;
516
517 if (dev->state & DEV_DISCONNECTED) {
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800518 em28xx_videodbg("device not present\n");
Ingo Molnar3593cab2006-02-07 06:49:14 -0200519 mutex_unlock(&dev->fileop_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800520 return -ENODEV;
521 }
522
523 if (dev->state & DEV_MISCONFIGURED) {
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800524 em28xx_videodbg("device misconfigured; close and open it again\n");
Ingo Molnar3593cab2006-02-07 06:49:14 -0200525 mutex_unlock(&dev->fileop_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800526 return -EIO;
527 }
528
529 if (dev->io == IO_MMAP) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800530 em28xx_videodbg ("IO method is set to mmap; close and open"
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800531 " the device again to choose the read method\n");
Ingo Molnar3593cab2006-02-07 06:49:14 -0200532 mutex_unlock(&dev->fileop_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800533 return -EINVAL;
534 }
535
536 if (dev->io == IO_NONE) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800537 if (!em28xx_request_buffers(dev, EM28XX_NUM_READ_FRAMES)) {
538 em28xx_errdev("read failed, not enough memory\n");
Ingo Molnar3593cab2006-02-07 06:49:14 -0200539 mutex_unlock(&dev->fileop_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800540 return -ENOMEM;
541 }
542 dev->io = IO_READ;
543 dev->stream = STREAM_ON;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800544 em28xx_queue_unusedframes(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800545 }
546
547 if (!count) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200548 mutex_unlock(&dev->fileop_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800549 return 0;
550 }
551
552 if (list_empty(&dev->outqueue)) {
553 if (filp->f_flags & O_NONBLOCK) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200554 mutex_unlock(&dev->fileop_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800555 return -EAGAIN;
556 }
557 ret = wait_event_interruptible
558 (dev->wait_frame,
559 (!list_empty(&dev->outqueue)) ||
560 (dev->state & DEV_DISCONNECTED));
561 if (ret) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200562 mutex_unlock(&dev->fileop_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800563 return ret;
564 }
565 if (dev->state & DEV_DISCONNECTED) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200566 mutex_unlock(&dev->fileop_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800567 return -ENODEV;
568 }
569 }
570
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800571 f = list_entry(dev->outqueue.prev, struct em28xx_frame_t, frame);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800572
573 spin_lock_irqsave(&dev->queue_lock, lock_flags);
574 list_for_each_entry(i, &dev->outqueue, frame)
575 i->state = F_UNUSED;
576 INIT_LIST_HEAD(&dev->outqueue);
577 spin_unlock_irqrestore(&dev->queue_lock, lock_flags);
578
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800579 em28xx_queue_unusedframes(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800580
581 if (count > f->buf.length)
582 count = f->buf.length;
583
584 if (copy_to_user(buf, f->bufmem, count)) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200585 mutex_unlock(&dev->fileop_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800586 return -EFAULT;
587 }
588 *f_pos += count;
589
Ingo Molnar3593cab2006-02-07 06:49:14 -0200590 mutex_unlock(&dev->fileop_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800591
592 return count;
593}
594
595/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800596 * em28xx_v4l2_poll()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800597 * will allocate buffers when called for the first time
598 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800599static unsigned int em28xx_v4l2_poll(struct file *filp, poll_table * wait)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800600{
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800601 unsigned int mask = 0;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800602 struct em28xx *dev = filp->private_data;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800603
Ingo Molnar3593cab2006-02-07 06:49:14 -0200604 if (mutex_lock_interruptible(&dev->fileop_lock))
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800605 return POLLERR;
606
607 if (dev->state & DEV_DISCONNECTED) {
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800608 em28xx_videodbg("device not present\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800609 } else if (dev->state & DEV_MISCONFIGURED) {
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800610 em28xx_videodbg("device is misconfigured; close and open it again\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800611 } else {
612 if (dev->io == IO_NONE) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800613 if (!em28xx_request_buffers
614 (dev, EM28XX_NUM_READ_FRAMES)) {
615 em28xx_warn
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800616 ("poll() failed, not enough memory\n");
617 } else {
618 dev->io = IO_READ;
619 dev->stream = STREAM_ON;
620 }
621 }
622
623 if (dev->io == IO_READ) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800624 em28xx_queue_unusedframes(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800625 poll_wait(filp, &dev->wait_frame, wait);
626
627 if (!list_empty(&dev->outqueue))
628 mask |= POLLIN | POLLRDNORM;
629
Ingo Molnar3593cab2006-02-07 06:49:14 -0200630 mutex_unlock(&dev->fileop_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800631
632 return mask;
633 }
634 }
635
Ingo Molnar3593cab2006-02-07 06:49:14 -0200636 mutex_unlock(&dev->fileop_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800637 return POLLERR;
638}
639
640/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800641 * em28xx_vm_open()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800642 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800643static void em28xx_vm_open(struct vm_area_struct *vma)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800644{
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800645 struct em28xx_frame_t *f = vma->vm_private_data;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800646 f->vma_use_count++;
647}
648
649/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800650 * em28xx_vm_close()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800651 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800652static void em28xx_vm_close(struct vm_area_struct *vma)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800653{
654 /* NOTE: buffers are not freed here */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800655 struct em28xx_frame_t *f = vma->vm_private_data;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800656 f->vma_use_count--;
657}
658
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800659static struct vm_operations_struct em28xx_vm_ops = {
660 .open = em28xx_vm_open,
661 .close = em28xx_vm_close,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800662};
663
664/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800665 * em28xx_v4l2_mmap()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800666 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800667static int em28xx_v4l2_mmap(struct file *filp, struct vm_area_struct *vma)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800668{
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800669 unsigned long size = vma->vm_end - vma->vm_start,
Sascha Sommer3639c862005-12-12 00:37:30 -0800670 start = vma->vm_start;
671 void *pos;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800672 u32 i;
Markus Rechberger9c755412005-11-08 21:37:52 -0800673
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800674 struct em28xx *dev = filp->private_data;
Markus Rechberger9c755412005-11-08 21:37:52 -0800675
Ingo Molnar3593cab2006-02-07 06:49:14 -0200676 if (mutex_lock_interruptible(&dev->fileop_lock))
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800677 return -ERESTARTSYS;
678
679 if (dev->state & DEV_DISCONNECTED) {
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800680 em28xx_videodbg("mmap: device not present\n");
Ingo Molnar3593cab2006-02-07 06:49:14 -0200681 mutex_unlock(&dev->fileop_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800682 return -ENODEV;
683 }
684
685 if (dev->state & DEV_MISCONFIGURED) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800686 em28xx_videodbg ("mmap: Device is misconfigured; close and "
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800687 "open it again\n");
Ingo Molnar3593cab2006-02-07 06:49:14 -0200688 mutex_unlock(&dev->fileop_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800689 return -EIO;
690 }
691
692 if (dev->io != IO_MMAP || !(vma->vm_flags & VM_WRITE) ||
693 size != PAGE_ALIGN(dev->frame[0].buf.length)) {
Ingo Molnar3593cab2006-02-07 06:49:14 -0200694 mutex_unlock(&dev->fileop_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800695 return -EINVAL;
696 }
697
698 for (i = 0; i < dev->num_frames; i++) {
699 if ((dev->frame[i].buf.m.offset >> PAGE_SHIFT) == vma->vm_pgoff)
700 break;
701 }
702 if (i == dev->num_frames) {
Mauro Carvalho Chehabeac94352005-11-08 21:38:43 -0800703 em28xx_videodbg("mmap: user supplied mapping address is out of range\n");
Ingo Molnar3593cab2006-02-07 06:49:14 -0200704 mutex_unlock(&dev->fileop_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800705 return -EINVAL;
706 }
707
708 /* VM_IO is eventually going to replace PageReserved altogether */
709 vma->vm_flags |= VM_IO;
710 vma->vm_flags |= VM_RESERVED; /* avoid to swap out this VMA */
711
Sascha Sommer3639c862005-12-12 00:37:30 -0800712 pos = dev->frame[i].bufmem;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800713 while (size > 0) { /* size is page-aligned */
Sascha Sommer3639c862005-12-12 00:37:30 -0800714 if (vm_insert_page(vma, start, vmalloc_to_page(pos))) {
715 em28xx_videodbg("mmap: vm_insert_page failed\n");
Ingo Molnar3593cab2006-02-07 06:49:14 -0200716 mutex_unlock(&dev->fileop_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800717 return -EAGAIN;
718 }
719 start += PAGE_SIZE;
720 pos += PAGE_SIZE;
721 size -= PAGE_SIZE;
722 }
723
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800724 vma->vm_ops = &em28xx_vm_ops;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800725 vma->vm_private_data = &dev->frame[i];
726
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800727 em28xx_vm_open(vma);
Ingo Molnar3593cab2006-02-07 06:49:14 -0200728 mutex_unlock(&dev->fileop_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800729 return 0;
730}
731
732/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800733 * em28xx_get_ctrl()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800734 * return the current saturation, brightness or contrast, mute state
735 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800736static int em28xx_get_ctrl(struct em28xx *dev, struct v4l2_control *ctrl)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800737{
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800738 switch (ctrl->id) {
739 case V4L2_CID_AUDIO_MUTE:
740 ctrl->value = dev->mute;
741 return 0;
742 case V4L2_CID_AUDIO_VOLUME:
743 ctrl->value = dev->volume;
744 return 0;
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200745 default:
746 return -EINVAL;
747 }
748}
749
750/*FIXME: should be moved to saa711x */
751static int saa711x_get_ctrl(struct em28xx *dev, struct v4l2_control *ctrl)
752{
753 s32 tmp;
754 switch (ctrl->id) {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800755 case V4L2_CID_BRIGHTNESS:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800756 if ((tmp = em28xx_brightness_get(dev)) < 0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800757 return -EIO;
758 ctrl->value = (s32) ((s8) tmp); /* FIXME: clenaer way to extend sign? */
759 return 0;
760 case V4L2_CID_CONTRAST:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800761 if ((ctrl->value = em28xx_contrast_get(dev)) < 0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800762 return -EIO;
763 return 0;
764 case V4L2_CID_SATURATION:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800765 if ((ctrl->value = em28xx_saturation_get(dev)) < 0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800766 return -EIO;
767 return 0;
768 case V4L2_CID_RED_BALANCE:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800769 if ((tmp = em28xx_v_balance_get(dev)) < 0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800770 return -EIO;
771 ctrl->value = (s32) ((s8) tmp); /* FIXME: clenaer way to extend sign? */
772 return 0;
773 case V4L2_CID_BLUE_BALANCE:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800774 if ((tmp = em28xx_u_balance_get(dev)) < 0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800775 return -EIO;
776 ctrl->value = (s32) ((s8) tmp); /* FIXME: clenaer way to extend sign? */
777 return 0;
778 case V4L2_CID_GAMMA:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800779 if ((ctrl->value = em28xx_gamma_get(dev)) < 0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800780 return -EIO;
781 return 0;
782 default:
783 return -EINVAL;
784 }
785}
786
787/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800788 * em28xx_set_ctrl()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800789 * mute or set new saturation, brightness or contrast
790 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800791static int em28xx_set_ctrl(struct em28xx *dev, const struct v4l2_control *ctrl)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800792{
793 switch (ctrl->id) {
794 case V4L2_CID_AUDIO_MUTE:
795 if (ctrl->value != dev->mute) {
796 dev->mute = ctrl->value;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800797 em28xx_audio_usb_mute(dev, ctrl->value);
798 return em28xx_audio_analog_set(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800799 }
800 return 0;
801 case V4L2_CID_AUDIO_VOLUME:
802 dev->volume = ctrl->value;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800803 return em28xx_audio_analog_set(dev);
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200804 default:
805 return -EINVAL;
806 }
807}
808
809/*FIXME: should be moved to saa711x */
810static int saa711x_set_ctrl(struct em28xx *dev, const struct v4l2_control *ctrl)
811{
812 switch (ctrl->id) {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800813 case V4L2_CID_BRIGHTNESS:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800814 return em28xx_brightness_set(dev, ctrl->value);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800815 case V4L2_CID_CONTRAST:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800816 return em28xx_contrast_set(dev, ctrl->value);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800817 case V4L2_CID_SATURATION:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800818 return em28xx_saturation_set(dev, ctrl->value);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800819 case V4L2_CID_RED_BALANCE:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800820 return em28xx_v_balance_set(dev, ctrl->value);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800821 case V4L2_CID_BLUE_BALANCE:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800822 return em28xx_u_balance_set(dev, ctrl->value);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800823 case V4L2_CID_GAMMA:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800824 return em28xx_gamma_set(dev, ctrl->value);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800825 default:
826 return -EINVAL;
827 }
828}
829
830/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800831 * em28xx_stream_interrupt()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800832 * stops streaming
833 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800834static int em28xx_stream_interrupt(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800835{
836 int ret = 0;
837
838 /* stop reading from the device */
839
840 dev->stream = STREAM_INTERRUPT;
841 ret = wait_event_timeout(dev->wait_stream,
842 (dev->stream == STREAM_OFF) ||
843 (dev->state & DEV_DISCONNECTED),
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800844 EM28XX_URB_TIMEOUT);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800845 if (dev->state & DEV_DISCONNECTED)
846 return -ENODEV;
847 else if (ret) {
848 dev->state |= DEV_MISCONFIGURED;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800849 em28xx_videodbg("device is misconfigured; close and "
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200850 "open /dev/video%d again\n",
851 dev->vdev->minor-MINOR_VFL_TYPE_GRABBER_MIN);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800852 return ret;
853 }
854
855 return 0;
856}
857
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800858static int em28xx_set_norm(struct em28xx *dev, int width, int height)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800859{
860 unsigned int hscale, vscale;
861 unsigned int maxh, maxw;
862
863 maxw = norm_maxw(dev);
864 maxh = norm_maxh(dev);
865
866 /* width must even because of the YUYV format */
867 /* height must be even because of interlacing */
868 height &= 0xfffe;
869 width &= 0xfffe;
870
871 if (height < 32)
872 height = 32;
873 if (height > maxh)
874 height = maxh;
875 if (width < 48)
876 width = 48;
877 if (width > maxw)
878 width = maxw;
879
880 if ((hscale = (((unsigned long)maxw) << 12) / width - 4096L) >= 0x4000)
881 hscale = 0x3fff;
882 width = (((unsigned long)maxw) << 12) / (hscale + 4096L);
883
884 if ((vscale = (((unsigned long)maxh) << 12) / height - 4096L) >= 0x4000)
885 vscale = 0x3fff;
886 height = (((unsigned long)maxh) << 12) / (vscale + 4096L);
887
888 /* set new image size */
889 dev->width = width;
890 dev->height = height;
891 dev->frame_size = dev->width * dev->height * 2;
892 dev->field_size = dev->frame_size >> 1; /*both_fileds ? dev->frame_size>>1 : dev->frame_size; */
893 dev->bytesperline = dev->width * 2;
894 dev->hscale = hscale;
895 dev->vscale = vscale;
896
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800897 em28xx_resolution_set(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800898
899 return 0;
900}
901
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200902static int em28xx_get_fmt(struct em28xx *dev, struct v4l2_format *format)
903{
904 em28xx_videodbg("VIDIOC_G_FMT: type=%s\n",
905 (format->type ==V4L2_BUF_TYPE_VIDEO_CAPTURE) ?
906 "V4L2_BUF_TYPE_VIDEO_CAPTURE" :
907 (format->type ==V4L2_BUF_TYPE_VBI_CAPTURE) ?
908 "V4L2_BUF_TYPE_VBI_CAPTURE" :
909 (format->type ==V4L2_CAP_SLICED_VBI_CAPTURE) ?
910 "V4L2_BUF_TYPE_SLICED_VBI_CAPTURE " :
911 "not supported");
912
Mauro Carvalho Chehab2d50f842006-01-23 17:11:08 -0200913 switch (format->type) {
914 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
915 {
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200916 format->fmt.pix.width = dev->width;
917 format->fmt.pix.height = dev->height;
918 format->fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;
919 format->fmt.pix.bytesperline = dev->bytesperline;
920 format->fmt.pix.sizeimage = dev->frame_size;
921 format->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
922 format->fmt.pix.field = dev->interlaced ? V4L2_FIELD_INTERLACED : V4L2_FIELD_TOP; /* FIXME: TOP? NONE? BOTTOM? ALTENATE? */
923
924 em28xx_videodbg("VIDIOC_G_FMT: %dx%d\n", dev->width,
925 dev->height);
Mauro Carvalho Chehab2d50f842006-01-23 17:11:08 -0200926 break;
927 }
928
929 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
930 {
931 format->fmt.sliced.service_set=0;
932
933 em28xx_i2c_call_clients(dev,VIDIOC_G_FMT,format);
934
935 if (format->fmt.sliced.service_set==0)
936 return -EINVAL;
937
938 break;
939 }
940
941 default:
942 return -EINVAL;
943 }
944 return (0);
945}
946
947static int em28xx_set_fmt(struct em28xx *dev, unsigned int cmd, struct v4l2_format *format)
948{
949 u32 i;
950 int ret = 0;
951 int width = format->fmt.pix.width;
952 int height = format->fmt.pix.height;
953 unsigned int hscale, vscale;
954 unsigned int maxh, maxw;
955
956 maxw = norm_maxw(dev);
957 maxh = norm_maxh(dev);
958
959 em28xx_videodbg("%s: type=%s\n",
960 cmd == VIDIOC_TRY_FMT ?
961 "VIDIOC_TRY_FMT" : "VIDIOC_S_FMT",
962 format->type == V4L2_BUF_TYPE_VIDEO_CAPTURE ?
963 "V4L2_BUF_TYPE_VIDEO_CAPTURE" :
964 format->type == V4L2_BUF_TYPE_VBI_CAPTURE ?
965 "V4L2_BUF_TYPE_VBI_CAPTURE " :
966 "not supported");
967
968 if (format->type == V4L2_BUF_TYPE_SLICED_VBI_CAPTURE) {
969 em28xx_i2c_call_clients(dev,VIDIOC_G_FMT,format);
970
971 if (format->fmt.sliced.service_set==0)
972 return -EINVAL;
973
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200974 return 0;
975 }
976
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -0200977
Mauro Carvalho Chehab2d50f842006-01-23 17:11:08 -0200978 if (format->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
979 return -EINVAL;
980
981 em28xx_videodbg("%s: requested %dx%d\n",
982 cmd == VIDIOC_TRY_FMT ?
983 "VIDIOC_TRY_FMT" : "VIDIOC_S_FMT",
984 format->fmt.pix.width, format->fmt.pix.height);
985
986 /* FIXME: Move some code away from here */
987 /* width must even because of the YUYV format */
988 /* height must be even because of interlacing */
989 height &= 0xfffe;
990 width &= 0xfffe;
991
992 if (height < 32)
993 height = 32;
994 if (height > maxh)
995 height = maxh;
996 if (width < 48)
997 width = 48;
998 if (width > maxw)
999 width = maxw;
1000
1001 if(dev->is_em2800){
1002 /* the em2800 can only scale down to 50% */
1003 if(height % (maxh / 2))
1004 height=maxh;
1005 if(width % (maxw / 2))
1006 width=maxw;
1007 /* according to empiatech support */
1008 /* the MaxPacketSize is to small to support */
1009 /* framesizes larger than 640x480 @ 30 fps */
1010 /* or 640x576 @ 25 fps. As this would cut */
1011 /* of a part of the image we prefer */
1012 /* 360x576 or 360x480 for now */
1013 if(width == maxw && height == maxh)
1014 width /= 2;
1015 }
1016
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001017 if ((hscale = (((unsigned long)maxw) << 12) / width - 4096L) >= 0x4000)
Mauro Carvalho Chehab2d50f842006-01-23 17:11:08 -02001018 hscale = 0x3fff;
Mauro Carvalho Chehab2d50f842006-01-23 17:11:08 -02001019
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001020 width = (((unsigned long)maxw) << 12) / (hscale + 4096L);
1021
1022 if ((vscale = (((unsigned long)maxh) << 12) / height - 4096L) >= 0x4000)
Mauro Carvalho Chehab2d50f842006-01-23 17:11:08 -02001023 vscale = 0x3fff;
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001024
1025 height = (((unsigned long)maxh) << 12) / (vscale + 4096L);
Mauro Carvalho Chehab2d50f842006-01-23 17:11:08 -02001026
1027 format->fmt.pix.width = width;
1028 format->fmt.pix.height = height;
1029 format->fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;
1030 format->fmt.pix.bytesperline = width * 2;
1031 format->fmt.pix.sizeimage = width * 2 * height;
1032 format->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
1033 format->fmt.pix.field = V4L2_FIELD_INTERLACED;
1034
1035 em28xx_videodbg("%s: returned %dx%d (%d, %d)\n",
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001036 cmd == VIDIOC_TRY_FMT ?
1037 "VIDIOC_TRY_FMT" :"VIDIOC_S_FMT",
1038 format->fmt.pix.width, format->fmt.pix.height, hscale, vscale);
Mauro Carvalho Chehab2d50f842006-01-23 17:11:08 -02001039
1040 if (cmd == VIDIOC_TRY_FMT)
1041 return 0;
1042
1043 for (i = 0; i < dev->num_frames; i++)
1044 if (dev->frame[i].vma_use_count) {
1045 em28xx_videodbg("VIDIOC_S_FMT failed. "
1046 "Unmap the buffers first.\n");
1047 return -EINVAL;
1048 }
1049
1050 /* stop io in case it is already in progress */
1051 if (dev->stream == STREAM_ON) {
1052 em28xx_videodbg("VIDIOC_SET_FMT: interupting stream\n");
1053 if ((ret = em28xx_stream_interrupt(dev)))
1054 return ret;
1055 }
1056
1057 em28xx_release_buffers(dev);
1058 dev->io = IO_NONE;
1059
1060 /* set new image size */
1061 dev->width = width;
1062 dev->height = height;
1063 dev->frame_size = dev->width * dev->height * 2;
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001064 dev->field_size = dev->frame_size >> 1;
Mauro Carvalho Chehab2d50f842006-01-23 17:11:08 -02001065 dev->bytesperline = dev->width * 2;
1066 dev->hscale = hscale;
1067 dev->vscale = vscale;
1068 em28xx_uninit_isoc(dev);
1069 em28xx_set_alternate(dev);
1070 em28xx_capture_start(dev, 1);
1071 em28xx_resolution_set(dev);
1072 em28xx_init_isoc(dev);
1073
1074 return 0;
1075}
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001076
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001077/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001078 * em28xx_v4l2_do_ioctl()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001079 * This function is _not_ called directly, but from
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001080 * em28xx_v4l2_ioctl. Userspace
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001081 * copying is done already, arg is a kernel pointer.
1082 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001083static int em28xx_do_ioctl(struct inode *inode, struct file *filp,
1084 struct em28xx *dev, unsigned int cmd, void *arg,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001085 v4l2_kioctl driver_ioctl)
1086{
1087 int ret;
1088
1089 switch (cmd) {
1090 /* ---------- tv norms ---------- */
1091 case VIDIOC_ENUMSTD:
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001092 {
1093 struct v4l2_standard *e = arg;
1094 unsigned int i;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001095
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001096 i = e->index;
1097 if (i >= TVNORMS)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001098 return -EINVAL;
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001099 ret = v4l2_video_std_construct(e, tvnorms[e->index].id,
1100 tvnorms[e->index].name);
1101 e->index = i;
1102 if (ret < 0)
1103 return ret;
1104 return 0;
1105 }
1106 case VIDIOC_G_STD:
1107 {
1108 v4l2_std_id *id = arg;
1109
1110 *id = dev->tvnorm->id;
1111 return 0;
1112 }
1113 case VIDIOC_S_STD:
1114 {
1115 v4l2_std_id *id = arg;
1116 unsigned int i;
1117
1118 for (i = 0; i < TVNORMS; i++)
1119 if (*id == tvnorms[i].id)
1120 break;
1121 if (i == TVNORMS)
1122 for (i = 0; i < TVNORMS; i++)
1123 if (*id & tvnorms[i].id)
1124 break;
1125 if (i == TVNORMS)
1126 return -EINVAL;
1127
Ingo Molnar3593cab2006-02-07 06:49:14 -02001128 mutex_lock(&dev->lock);
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001129 dev->tvnorm = &tvnorms[i];
1130
1131 em28xx_set_norm(dev, dev->width, dev->height);
1132
1133 em28xx_i2c_call_clients(dev, DECODER_SET_NORM,
1134 &tvnorms[i].mode);
1135 em28xx_i2c_call_clients(dev, VIDIOC_S_STD,
1136 &dev->tvnorm->id);
1137
Ingo Molnar3593cab2006-02-07 06:49:14 -02001138 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001139
1140 return 0;
1141 }
1142
1143 /* ------ input switching ---------- */
1144 case VIDIOC_ENUMINPUT:
1145 {
1146 struct v4l2_input *i = arg;
1147 unsigned int n;
1148 static const char *iname[] = {
1149 [EM28XX_VMUX_COMPOSITE1] = "Composite1",
1150 [EM28XX_VMUX_COMPOSITE2] = "Composite2",
1151 [EM28XX_VMUX_COMPOSITE3] = "Composite3",
1152 [EM28XX_VMUX_COMPOSITE4] = "Composite4",
1153 [EM28XX_VMUX_SVIDEO] = "S-Video",
1154 [EM28XX_VMUX_TELEVISION] = "Television",
1155 [EM28XX_VMUX_CABLE] = "Cable TV",
1156 [EM28XX_VMUX_DVB] = "DVB",
1157 [EM28XX_VMUX_DEBUG] = "for debug only",
1158 };
1159
1160 n = i->index;
1161 if (n >= MAX_EM28XX_INPUT)
1162 return -EINVAL;
1163 if (0 == INPUT(n)->type)
1164 return -EINVAL;
1165 memset(i, 0, sizeof(*i));
1166 i->index = n;
1167 i->type = V4L2_INPUT_TYPE_CAMERA;
1168 strcpy(i->name, iname[INPUT(n)->type]);
1169 if ((EM28XX_VMUX_TELEVISION == INPUT(n)->type) ||
1170 (EM28XX_VMUX_CABLE == INPUT(n)->type))
1171 i->type = V4L2_INPUT_TYPE_TUNER;
1172 for (n = 0; n < ARRAY_SIZE(tvnorms); n++)
1173 i->std |= tvnorms[n].id;
1174 return 0;
1175 }
1176 case VIDIOC_G_INPUT:
1177 {
1178 int *i = arg;
1179 *i = dev->ctl_input;
1180
1181 return 0;
1182 }
1183 case VIDIOC_S_INPUT:
1184 {
1185 int *index = arg;
1186
1187 if (*index >= MAX_EM28XX_INPUT)
1188 return -EINVAL;
1189 if (0 == INPUT(*index)->type)
1190 return -EINVAL;
1191
Ingo Molnar3593cab2006-02-07 06:49:14 -02001192 mutex_lock(&dev->lock);
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001193 video_mux(dev, *index);
Ingo Molnar3593cab2006-02-07 06:49:14 -02001194 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001195
1196 return 0;
1197 }
1198 case VIDIOC_G_AUDIO:
1199 {
1200 struct v4l2_audio *a = arg;
1201 unsigned int index = a->index;
1202
1203 if (a->index > 1)
1204 return -EINVAL;
1205 memset(a, 0, sizeof(*a));
1206 index = dev->ctl_ainput;
1207
1208 if (index == 0) {
1209 strcpy(a->name, "Television");
1210 } else {
1211 strcpy(a->name, "Line In");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001212 }
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001213 a->capability = V4L2_AUDCAP_STEREO;
1214 a->index = index;
1215 return 0;
1216 }
1217 case VIDIOC_S_AUDIO:
1218 {
1219 struct v4l2_audio *a = arg;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001220
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001221 if (a->index != dev->ctl_ainput)
1222 return -EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001223
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001224 return 0;
1225 }
1226
1227 /* --- controls ---------------------------------------------- */
1228 case VIDIOC_QUERYCTRL:
1229 {
1230 struct v4l2_queryctrl *qc = arg;
1231 int i, id=qc->id;
1232
1233 memset(qc,0,sizeof(*qc));
1234 qc->id=id;
1235
1236 if (!dev->has_msp34xx) {
1237 for (i = 0; i < ARRAY_SIZE(em28xx_qctrl); i++) {
1238 if (qc->id && qc->id == em28xx_qctrl[i].id) {
1239 memcpy(qc, &(em28xx_qctrl[i]),
1240 sizeof(*qc));
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -02001241 return 0;
1242 }
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001243 }
1244 }
1245 if (dev->decoder == EM28XX_TVP5150) {
1246 em28xx_i2c_call_clients(dev,cmd,qc);
1247 if (qc->type)
1248 return 0;
1249 else
1250 return -EINVAL;
1251 }
1252 for (i = 0; i < ARRAY_SIZE(saa711x_qctrl); i++) {
1253 if (qc->id && qc->id == saa711x_qctrl[i].id) {
1254 memcpy(qc, &(saa711x_qctrl[i]),
1255 sizeof(*qc));
1256 return 0;
1257 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001258 }
1259
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001260 return -EINVAL;
1261 }
1262 case VIDIOC_G_CTRL:
1263 {
1264 struct v4l2_control *ctrl = arg;
1265 int retval=-EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001266
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001267 if (!dev->has_msp34xx)
1268 retval=em28xx_get_ctrl(dev, ctrl);
1269 if (retval==-EINVAL) {
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -02001270 if (dev->decoder == EM28XX_TVP5150) {
1271 em28xx_i2c_call_clients(dev,cmd,arg);
1272 return 0;
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -02001273 }
1274
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001275 return saa711x_get_ctrl(dev, ctrl);
1276 } else return retval;
1277 }
1278 case VIDIOC_S_CTRL:
1279 {
1280 struct v4l2_control *ctrl = arg;
1281 u8 i;
1282
1283 if (!dev->has_msp34xx){
1284 for (i = 0; i < ARRAY_SIZE(em28xx_qctrl); i++) {
1285 if (ctrl->id == em28xx_qctrl[i].id) {
1286 if (ctrl->value <
1287 em28xx_qctrl[i].minimum
1288 || ctrl->value >
1289 em28xx_qctrl[i].maximum)
1290 return -ERANGE;
1291 return em28xx_set_ctrl(dev, ctrl);
1292 }
1293 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001294 }
1295
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001296 if (dev->decoder == EM28XX_TVP5150) {
1297 em28xx_i2c_call_clients(dev,cmd,arg);
1298 return 0;
1299 } else if (!dev->has_msp34xx) {
1300 for (i = 0; i < ARRAY_SIZE(em28xx_qctrl); i++) {
1301 if (ctrl->id == em28xx_qctrl[i].id) {
1302 if (ctrl->value <
1303 em28xx_qctrl[i].minimum
1304 || ctrl->value >
1305 em28xx_qctrl[i].maximum)
1306 return -ERANGE;
1307 return em28xx_set_ctrl(dev, ctrl);
1308 }
1309 }
1310 for (i = 0; i < ARRAY_SIZE(saa711x_qctrl); i++) {
1311 if (ctrl->id == saa711x_qctrl[i].id) {
1312 if (ctrl->value <
1313 saa711x_qctrl[i].minimum
1314 || ctrl->value >
1315 saa711x_qctrl[i].maximum)
1316 return -ERANGE;
1317 return saa711x_set_ctrl(dev, ctrl);
1318 }
1319 }
1320 }
1321
1322 return -EINVAL;
1323 }
1324 /* --- tuner ioctls ------------------------------------------ */
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001325 case VIDIOC_G_TUNER:
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001326 {
1327 struct v4l2_tuner *t = arg;
1328 int status = 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001329
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001330 if (0 != t->index)
1331 return -EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001332
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001333 memset(t, 0, sizeof(*t));
1334 strcpy(t->name, "Tuner");
1335 t->type = V4L2_TUNER_ANALOG_TV;
1336 t->capability = V4L2_TUNER_CAP_NORM;
1337 t->rangehigh = 0xffffffffUL; /* FIXME: set correct range */
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001338/* t->signal = 0xffff;*/
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001339/* em28xx_i2c_call_clients(dev,VIDIOC_G_TUNER,t);*/
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001340 /* No way to get signal strength? */
Ingo Molnar3593cab2006-02-07 06:49:14 -02001341 mutex_lock(&dev->lock);
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001342 em28xx_i2c_call_clients(dev, DECODER_GET_STATUS,
1343 &status);
Ingo Molnar3593cab2006-02-07 06:49:14 -02001344 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001345 t->signal =
1346 (status & DECODER_STATUS_GOOD) != 0 ? 0xffff : 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001347
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001348 em28xx_videodbg("VIDIO_G_TUNER: signal=%x, afc=%x\n", t->signal,
1349 t->afc);
1350 return 0;
1351 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001352 case VIDIOC_S_TUNER:
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001353 {
1354 struct v4l2_tuner *t = arg;
1355 int status = 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001356
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001357 if (0 != t->index)
1358 return -EINVAL;
1359 memset(t, 0, sizeof(*t));
1360 strcpy(t->name, "Tuner");
1361 t->type = V4L2_TUNER_ANALOG_TV;
1362 t->capability = V4L2_TUNER_CAP_NORM;
1363 t->rangehigh = 0xffffffffUL; /* FIXME: set correct range */
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001364/* t->signal = 0xffff; */
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001365 /* No way to get signal strength? */
Ingo Molnar3593cab2006-02-07 06:49:14 -02001366 mutex_lock(&dev->lock);
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001367 em28xx_i2c_call_clients(dev, DECODER_GET_STATUS,
1368 &status);
Ingo Molnar3593cab2006-02-07 06:49:14 -02001369 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001370 t->signal =
1371 (status & DECODER_STATUS_GOOD) != 0 ? 0xffff : 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001372
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001373 em28xx_videodbg("VIDIO_S_TUNER: signal=%x, afc=%x\n",
1374 t->signal, t->afc);
1375 return 0;
1376 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001377 case VIDIOC_G_FREQUENCY:
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001378 {
1379 struct v4l2_frequency *f = arg;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001380
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001381 memset(f, 0, sizeof(*f));
1382 f->type = V4L2_TUNER_ANALOG_TV;
1383 f->frequency = dev->ctl_freq;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001384
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001385 return 0;
1386 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001387 case VIDIOC_S_FREQUENCY:
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001388 {
1389 struct v4l2_frequency *f = arg;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001390
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001391 if (0 != f->tuner)
1392 return -EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001393
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001394 if (V4L2_TUNER_ANALOG_TV != f->type)
1395 return -EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001396
Ingo Molnar3593cab2006-02-07 06:49:14 -02001397 mutex_lock(&dev->lock);
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001398 dev->ctl_freq = f->frequency;
1399 em28xx_i2c_call_clients(dev, VIDIOC_S_FREQUENCY, f);
Ingo Molnar3593cab2006-02-07 06:49:14 -02001400 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001401 return 0;
1402 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001403 case VIDIOC_CROPCAP:
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001404 {
1405 struct v4l2_cropcap *cc = arg;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001406
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001407 if (cc->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1408 return -EINVAL;
1409 cc->bounds.left = 0;
1410 cc->bounds.top = 0;
1411 cc->bounds.width = dev->width;
1412 cc->bounds.height = dev->height;
1413 cc->defrect = cc->bounds;
1414 cc->pixelaspect.numerator = 54; /* 4:3 FIXME: remove magic numbers */
1415 cc->pixelaspect.denominator = 59;
1416 return 0;
1417 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001418 case VIDIOC_STREAMON:
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001419 {
1420 int *type = arg;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001421
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001422 if (*type != V4L2_BUF_TYPE_VIDEO_CAPTURE
1423 || dev->io != IO_MMAP)
1424 return -EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001425
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001426 if (list_empty(&dev->inqueue))
1427 return -EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001428
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001429 dev->stream = STREAM_ON; /* FIXME: Start video capture here? */
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001430
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001431 em28xx_videodbg("VIDIOC_STREAMON: starting stream\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001432
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001433 return 0;
1434 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001435 case VIDIOC_STREAMOFF:
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001436 {
1437 int *type = arg;
1438 int ret;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001439
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001440 if (*type != V4L2_BUF_TYPE_VIDEO_CAPTURE
1441 || dev->io != IO_MMAP)
1442 return -EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001443
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001444 if (dev->stream == STREAM_ON) {
1445 em28xx_videodbg ("VIDIOC_STREAMOFF: interrupting stream\n");
1446 if ((ret = em28xx_stream_interrupt(dev)))
1447 return ret;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001448 }
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001449 em28xx_empty_framequeues(dev);
1450
1451 return 0;
1452 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001453 default:
1454 return v4l_compat_translate_ioctl(inode, filp, cmd, arg,
1455 driver_ioctl);
1456 }
1457 return 0;
1458}
1459
1460/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001461 * em28xx_v4l2_do_ioctl()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001462 * This function is _not_ called directly, but from
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001463 * em28xx_v4l2_ioctl. Userspace
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001464 * copying is done already, arg is a kernel pointer.
1465 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001466static int em28xx_video_do_ioctl(struct inode *inode, struct file *filp,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001467 unsigned int cmd, void *arg)
1468{
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001469 struct em28xx *dev = filp->private_data;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001470
1471 if (!dev)
1472 return -ENODEV;
1473
1474 if (video_debug > 1)
Michael Krufky5e453dc2006-01-09 15:32:31 -02001475 v4l_print_ioctl(dev->name,cmd);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001476
1477 switch (cmd) {
1478
1479 /* --- capabilities ------------------------------------------ */
1480 case VIDIOC_QUERYCAP:
1481 {
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001482 struct v4l2_capability *cap = arg;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001483
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001484 memset(cap, 0, sizeof(*cap));
1485 strlcpy(cap->driver, "em28xx", sizeof(cap->driver));
1486 strlcpy(cap->card, em28xx_boards[dev->model].name,
1487 sizeof(cap->card));
1488 strlcpy(cap->bus_info, dev->udev->dev.bus_id,
1489 sizeof(cap->bus_info));
1490 cap->version = EM28XX_VERSION_CODE;
1491 cap->capabilities =
1492 V4L2_CAP_SLICED_VBI_CAPTURE |
1493 V4L2_CAP_VIDEO_CAPTURE |
1494 V4L2_CAP_AUDIO |
1495 V4L2_CAP_READWRITE | V4L2_CAP_STREAMING;
1496 if (dev->has_tuner)
1497 cap->capabilities |= V4L2_CAP_TUNER;
1498 return 0;
1499 }
1500 /* --- capture ioctls ---------------------------------------- */
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001501 case VIDIOC_ENUM_FMT:
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001502 {
1503 struct v4l2_fmtdesc *fmtd = arg;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001504
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001505 if (fmtd->index != 0)
1506 return -EINVAL;
1507 memset(fmtd, 0, sizeof(*fmtd));
1508 fmtd->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1509 strcpy(fmtd->description, "Packed YUY2");
1510 fmtd->pixelformat = V4L2_PIX_FMT_YUYV;
1511 memset(fmtd->reserved, 0, sizeof(fmtd->reserved));
1512 return 0;
1513 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001514 case VIDIOC_G_FMT:
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001515 return em28xx_get_fmt(dev, (struct v4l2_format *) arg);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001516
1517 case VIDIOC_TRY_FMT:
1518 case VIDIOC_S_FMT:
Mauro Carvalho Chehab2d50f842006-01-23 17:11:08 -02001519 return em28xx_set_fmt(dev, cmd, (struct v4l2_format *)arg);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001520
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001521 case VIDIOC_REQBUFS:
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001522 {
1523 struct v4l2_requestbuffers *rb = arg;
1524 u32 i;
1525 int ret;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001526
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001527 if (rb->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
1528 rb->memory != V4L2_MEMORY_MMAP)
1529 return -EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001530
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001531 if (dev->io == IO_READ) {
1532 em28xx_videodbg ("method is set to read;"
1533 " close and open the device again to"
1534 " choose the mmap I/O method\n");
1535 return -EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001536 }
1537
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001538 for (i = 0; i < dev->num_frames; i++)
1539 if (dev->frame[i].vma_use_count) {
1540 em28xx_videodbg ("VIDIOC_REQBUFS failed; previous buffers are still mapped\n");
1541 return -EINVAL;
1542 }
1543
1544 if (dev->stream == STREAM_ON) {
1545 em28xx_videodbg("VIDIOC_REQBUFS: interrupting stream\n");
1546 if ((ret = em28xx_stream_interrupt(dev)))
1547 return ret;
1548 }
1549
1550 em28xx_empty_framequeues(dev);
1551
1552 em28xx_release_buffers(dev);
1553 if (rb->count)
1554 rb->count =
1555 em28xx_request_buffers(dev, rb->count);
1556
1557 dev->frame_current = NULL;
1558
1559 em28xx_videodbg ("VIDIOC_REQBUFS: setting io method to mmap: num bufs %i\n",
1560 rb->count);
1561 dev->io = rb->count ? IO_MMAP : IO_NONE;
1562 return 0;
1563 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001564 case VIDIOC_QUERYBUF:
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001565 {
1566 struct v4l2_buffer *b = arg;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001567
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001568 if (b->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
1569 b->index >= dev->num_frames || dev->io != IO_MMAP)
1570 return -EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001571
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001572 memcpy(b, &dev->frame[b->index].buf, sizeof(*b));
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001573
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001574 if (dev->frame[b->index].vma_use_count) {
1575 b->flags |= V4L2_BUF_FLAG_MAPPED;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001576 }
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001577 if (dev->frame[b->index].state == F_DONE)
1578 b->flags |= V4L2_BUF_FLAG_DONE;
1579 else if (dev->frame[b->index].state != F_UNUSED)
1580 b->flags |= V4L2_BUF_FLAG_QUEUED;
1581 return 0;
1582 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001583 case VIDIOC_QBUF:
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001584 {
1585 struct v4l2_buffer *b = arg;
1586 unsigned long lock_flags;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001587
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001588 if (b->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
1589 b->index >= dev->num_frames || dev->io != IO_MMAP) {
1590 return -EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001591 }
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001592
1593 if (dev->frame[b->index].state != F_UNUSED) {
1594 return -EAGAIN;
1595 }
1596 dev->frame[b->index].state = F_QUEUED;
1597
1598 /* add frame to fifo */
1599 spin_lock_irqsave(&dev->queue_lock, lock_flags);
1600 list_add_tail(&dev->frame[b->index].frame,
1601 &dev->inqueue);
1602 spin_unlock_irqrestore(&dev->queue_lock, lock_flags);
1603
1604 return 0;
1605 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001606 case VIDIOC_DQBUF:
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001607 {
1608 struct v4l2_buffer *b = arg;
1609 struct em28xx_frame_t *f;
1610 unsigned long lock_flags;
1611 int ret = 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001612
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001613 if (b->type != V4L2_BUF_TYPE_VIDEO_CAPTURE
1614 || dev->io != IO_MMAP)
1615 return -EINVAL;
1616
1617 if (list_empty(&dev->outqueue)) {
1618 if (dev->stream == STREAM_OFF)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001619 return -EINVAL;
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001620 if (filp->f_flags & O_NONBLOCK)
1621 return -EAGAIN;
1622 ret = wait_event_interruptible
1623 (dev->wait_frame,
1624 (!list_empty(&dev->outqueue)) ||
1625 (dev->state & DEV_DISCONNECTED));
1626 if (ret)
1627 return ret;
1628 if (dev->state & DEV_DISCONNECTED)
1629 return -ENODEV;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001630 }
Mauro Carvalho Chehab9aeb4b02006-01-23 17:11:09 -02001631
1632 spin_lock_irqsave(&dev->queue_lock, lock_flags);
1633 f = list_entry(dev->outqueue.next,
1634 struct em28xx_frame_t, frame);
1635 list_del(dev->outqueue.next);
1636 spin_unlock_irqrestore(&dev->queue_lock, lock_flags);
1637
1638 f->state = F_UNUSED;
1639 memcpy(b, &f->buf, sizeof(*b));
1640
1641 if (f->vma_use_count)
1642 b->flags |= V4L2_BUF_FLAG_MAPPED;
1643
1644 return 0;
1645 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001646 default:
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001647 return em28xx_do_ioctl(inode, filp, dev, cmd, arg,
1648 em28xx_video_do_ioctl);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001649 }
1650 return 0;
1651}
1652
1653/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001654 * em28xx_v4l2_ioctl()
1655 * handle v4l2 ioctl the main action happens in em28xx_v4l2_do_ioctl()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001656 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001657static int em28xx_v4l2_ioctl(struct inode *inode, struct file *filp,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001658 unsigned int cmd, unsigned long arg)
1659{
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001660 int ret = 0;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001661 struct em28xx *dev = filp->private_data;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001662
Ingo Molnar3593cab2006-02-07 06:49:14 -02001663 if (mutex_lock_interruptible(&dev->fileop_lock))
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001664 return -ERESTARTSYS;
1665
1666 if (dev->state & DEV_DISCONNECTED) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001667 em28xx_errdev("v4l2 ioctl: device not present\n");
Ingo Molnar3593cab2006-02-07 06:49:14 -02001668 mutex_unlock(&dev->fileop_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001669 return -ENODEV;
1670 }
1671
1672 if (dev->state & DEV_MISCONFIGURED) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001673 em28xx_errdev
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001674 ("v4l2 ioctl: device is misconfigured; close and open it again\n");
Ingo Molnar3593cab2006-02-07 06:49:14 -02001675 mutex_unlock(&dev->fileop_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001676 return -EIO;
1677 }
1678
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001679 ret = video_usercopy(inode, filp, cmd, arg, em28xx_video_do_ioctl);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001680
Ingo Molnar3593cab2006-02-07 06:49:14 -02001681 mutex_unlock(&dev->fileop_lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001682
1683 return ret;
1684}
1685
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001686static struct file_operations em28xx_v4l_fops = {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001687 .owner = THIS_MODULE,
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001688 .open = em28xx_v4l2_open,
1689 .release = em28xx_v4l2_close,
1690 .ioctl = em28xx_v4l2_ioctl,
1691 .read = em28xx_v4l2_read,
1692 .poll = em28xx_v4l2_poll,
1693 .mmap = em28xx_v4l2_mmap,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001694 .llseek = no_llseek,
Mauro Carvalho Chehab17cbe2e2006-01-09 15:24:58 -02001695 .compat_ioctl = v4l_compat_ioctl32,
1696
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001697};
1698
1699/******************************** usb interface *****************************************/
1700
1701/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001702 * em28xx_init_dev()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001703 * allocates and inits the device structs, registers i2c bus and v4l device
1704 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001705static int em28xx_init_dev(struct em28xx **devhandle, struct usb_device *udev,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001706 int minor, int model)
1707{
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001708 struct em28xx *dev = *devhandle;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001709 int retval = -ENOMEM;
1710 int errCode, i;
1711 unsigned int maxh, maxw;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001712
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001713 dev->udev = udev;
1714 dev->model = model;
Ingo Molnar3593cab2006-02-07 06:49:14 -02001715 mutex_init(&dev->lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001716 init_waitqueue_head(&dev->open);
1717
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001718 dev->em28xx_write_regs = em28xx_write_regs;
1719 dev->em28xx_read_reg = em28xx_read_reg;
1720 dev->em28xx_read_reg_req_len = em28xx_read_reg_req_len;
1721 dev->em28xx_write_regs_req = em28xx_write_regs_req;
1722 dev->em28xx_read_reg_req = em28xx_read_reg_req;
1723 dev->is_em2800 = em28xx_boards[model].is_em2800;
1724 dev->has_tuner = em28xx_boards[model].has_tuner;
1725 dev->has_msp34xx = em28xx_boards[model].has_msp34xx;
1726 dev->tda9887_conf = em28xx_boards[model].tda9887_conf;
1727 dev->decoder = em28xx_boards[model].decoder;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001728
1729 if (tuner >= 0)
1730 dev->tuner_type = tuner;
1731 else
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001732 dev->tuner_type = em28xx_boards[model].tuner_type;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001733
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001734 dev->video_inputs = em28xx_boards[model].vchannels;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001735
1736 for (i = 0; i < TVNORMS; i++)
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001737 if (em28xx_boards[model].norm == tvnorms[i].mode)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001738 break;
1739 if (i == TVNORMS)
1740 i = 0;
1741
1742 dev->tvnorm = &tvnorms[i]; /* set default norm */
1743
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001744 em28xx_videodbg("tvnorm=%s\n", dev->tvnorm->name);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001745
1746 maxw = norm_maxw(dev);
1747 maxh = norm_maxh(dev);
1748
1749 /* set default image size */
1750 dev->width = maxw;
1751 dev->height = maxh;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001752 dev->interlaced = EM28XX_INTERLACED_DEFAULT;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001753 dev->field_size = dev->width * dev->height;
1754 dev->frame_size =
1755 dev->interlaced ? dev->field_size << 1 : dev->field_size;
1756 dev->bytesperline = dev->width * 2;
1757 dev->hscale = 0;
1758 dev->vscale = 0;
1759 dev->ctl_input = 2;
1760
1761 /* setup video picture settings for saa7113h */
1762 memset(&dev->vpic, 0, sizeof(dev->vpic));
1763 dev->vpic.colour = 128 << 8;
1764 dev->vpic.hue = 128 << 8;
1765 dev->vpic.brightness = 128 << 8;
1766 dev->vpic.contrast = 192 << 8;
1767 dev->vpic.whiteness = 128 << 8; /* This one isn't used */
1768 dev->vpic.depth = 16;
1769 dev->vpic.palette = VIDEO_PALETTE_YUV422;
1770
Markus Rechbergera94e95b2006-01-23 17:11:10 -02001771 em28xx_pre_card_setup(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001772#ifdef CONFIG_MODULES
1773 /* request some modules */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001774 if (dev->decoder == EM28XX_SAA7113 || dev->decoder == EM28XX_SAA7114)
Mauro Carvalho Chehab91cad0f2005-11-08 21:38:13 -08001775 request_module("saa711x");
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001776 if (dev->decoder == EM28XX_TVP5150)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001777 request_module("tvp5150");
1778 if (dev->has_tuner)
1779 request_module("tuner");
1780 if (dev->tda9887_conf)
1781 request_module("tda9887");
1782#endif
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001783 errCode = em28xx_config(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001784 if (errCode) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001785 em28xx_errdev("error configuring device\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001786 kfree(dev);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001787 em28xx_devused&=~(1<<dev->devno);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001788 return -ENOMEM;
1789 }
1790
Ingo Molnar3593cab2006-02-07 06:49:14 -02001791 mutex_lock(&dev->lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001792 /* register i2c bus */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001793 em28xx_i2c_register(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001794
1795 /* Do board specific init and eeprom reading */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001796 em28xx_card_setup(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001797
1798 /* configure the device */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001799 em28xx_config_i2c(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001800
Ingo Molnar3593cab2006-02-07 06:49:14 -02001801 mutex_unlock(&dev->lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001802
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001803 errCode = em28xx_config(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001804
1805#ifdef CONFIG_MODULES
1806 if (dev->has_msp34xx)
1807 request_module("msp3400");
1808#endif
1809 /* allocate and fill v4l2 device struct */
1810 dev->vdev = video_device_alloc();
1811 if (NULL == dev->vdev) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001812 em28xx_errdev("cannot allocate video_device.\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001813 kfree(dev);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001814 em28xx_devused&=~(1<<dev->devno);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001815 return -ENOMEM;
1816 }
1817
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001818 dev->vbi_dev = video_device_alloc();
1819 if (NULL == dev->vbi_dev) {
1820 em28xx_errdev("cannot allocate video_device.\n");
1821 kfree(dev->vdev);
1822 kfree(dev);
1823 em28xx_devused&=~(1<<dev->devno);
1824 return -ENOMEM;
1825 }
1826
1827 /* Fills VBI device info */
1828 dev->vbi_dev->type = VFL_TYPE_VBI;
1829 dev->vbi_dev->hardware = 0;
1830 dev->vbi_dev->fops = &em28xx_v4l_fops;
1831 dev->vbi_dev->minor = -1;
1832 dev->vbi_dev->dev = &dev->udev->dev;
1833 dev->vbi_dev->release = video_device_release;
1834 snprintf(dev->vbi_dev->name, sizeof(dev->vbi_dev->name), "%s#%d %s",
1835 "em28xx",dev->devno,"vbi");
1836
1837 /* Fills CAPTURE device info */
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001838 dev->vdev->type = VID_TYPE_CAPTURE;
1839 if (dev->has_tuner)
1840 dev->vdev->type |= VID_TYPE_TUNER;
1841 dev->vdev->hardware = 0;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001842 dev->vdev->fops = &em28xx_v4l_fops;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001843 dev->vdev->minor = -1;
1844 dev->vdev->dev = &dev->udev->dev;
1845 dev->vdev->release = video_device_release;
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001846 snprintf(dev->vdev->name, sizeof(dev->vbi_dev->name), "%s#%d %s",
1847 "em28xx",dev->devno,"video");
1848
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001849 list_add_tail(&dev->devlist,&em28xx_devlist);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001850
1851 /* register v4l2 device */
Ingo Molnar3593cab2006-02-07 06:49:14 -02001852 mutex_lock(&dev->lock);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001853 if ((retval = video_register_device(dev->vdev, VFL_TYPE_GRABBER,
1854 video_nr[dev->devno]))) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001855 em28xx_errdev("unable to register video device (error=%i).\n",
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001856 retval);
Ingo Molnar3593cab2006-02-07 06:49:14 -02001857 mutex_unlock(&dev->lock);
Markus Rechberger9c755412005-11-08 21:37:52 -08001858 list_del(&dev->devlist);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001859 video_device_release(dev->vdev);
1860 kfree(dev);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001861 em28xx_devused&=~(1<<dev->devno);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001862 return -ENODEV;
1863 }
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001864
1865 if (video_register_device(dev->vbi_dev, VFL_TYPE_VBI,
1866 vbi_nr[dev->devno]) < 0) {
1867 printk("unable to register vbi device\n");
Ingo Molnar3593cab2006-02-07 06:49:14 -02001868 mutex_unlock(&dev->lock);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001869 list_del(&dev->devlist);
1870 video_device_release(dev->vbi_dev);
1871 video_device_release(dev->vdev);
1872 kfree(dev);
1873 em28xx_devused&=~(1<<dev->devno);
1874 return -ENODEV;
1875 } else {
1876 printk("registered VBI\n");
1877 }
1878
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001879 if (dev->has_msp34xx) {
1880 /* Send a reset to other chips via gpio */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001881 em28xx_write_regs_req(dev, 0x00, 0x08, "\xf7", 1);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001882 udelay(2500);
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001883 em28xx_write_regs_req(dev, 0x00, 0x08, "\xff", 1);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001884 udelay(2500);
1885
1886 }
1887 video_mux(dev, 0);
1888
Ingo Molnar3593cab2006-02-07 06:49:14 -02001889 mutex_unlock(&dev->lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001890
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001891 em28xx_info("V4L2 device registered as /dev/video%d and /dev/vbi%d\n",
1892 dev->vdev->minor-MINOR_VFL_TYPE_GRABBER_MIN,
1893 dev->vbi_dev->minor-MINOR_VFL_TYPE_VBI_MIN);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001894
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001895 return 0;
1896}
1897
1898/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001899 * em28xx_usb_probe()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001900 * checks for supported devices
1901 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001902static int em28xx_usb_probe(struct usb_interface *interface,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001903 const struct usb_device_id *id)
1904{
1905 const struct usb_endpoint_descriptor *endpoint;
1906 struct usb_device *udev;
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -08001907 struct usb_interface *uif;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001908 struct em28xx *dev = NULL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001909 int retval = -ENODEV;
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -08001910 int model,i,nr,ifnum;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001911
1912 udev = usb_get_dev(interface_to_usbdev(interface));
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -08001913 ifnum = interface->altsetting[0].desc.bInterfaceNumber;
1914
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001915 /* Check to see next free device and mark as used */
1916 nr=find_first_zero_bit(&em28xx_devused,EM28XX_MAXBOARDS);
1917 em28xx_devused|=1<<nr;
Mauro Carvalho Chehab91cad0f2005-11-08 21:38:13 -08001918
1919 /* Don't register audio interfaces */
1920 if (interface->altsetting[0].desc.bInterfaceClass == USB_CLASS_AUDIO) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001921 em28xx_err(DRIVER_NAME " audio device (%04x:%04x): interface %i, class %i\n",
Mauro Carvalho Chehab91cad0f2005-11-08 21:38:13 -08001922 udev->descriptor.idVendor,udev->descriptor.idProduct,
1923 ifnum,
1924 interface->altsetting[0].desc.bInterfaceClass);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001925
1926 em28xx_devused&=~(1<<nr);
Mauro Carvalho Chehab91cad0f2005-11-08 21:38:13 -08001927 return -ENODEV;
1928 }
1929
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001930 em28xx_err(DRIVER_NAME " new video device (%04x:%04x): interface %i, class %i\n",
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -08001931 udev->descriptor.idVendor,udev->descriptor.idProduct,
1932 ifnum,
1933 interface->altsetting[0].desc.bInterfaceClass);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001934
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -08001935 endpoint = &interface->cur_altsetting->endpoint[1].desc;
1936
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001937 /* check if the the device has the iso in endpoint at the correct place */
1938 if ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) !=
1939 USB_ENDPOINT_XFER_ISOC) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001940 em28xx_err(DRIVER_NAME " probing error: endpoint is non-ISO endpoint!\n");
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001941 em28xx_devused&=~(1<<nr);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001942 return -ENODEV;
1943 }
1944 if ((endpoint->bEndpointAddress & USB_ENDPOINT_DIR_MASK) == USB_DIR_OUT) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001945 em28xx_err(DRIVER_NAME " probing error: endpoint is ISO OUT endpoint!\n");
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001946 em28xx_devused&=~(1<<nr);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001947 return -ENODEV;
1948 }
1949
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08001950 model=id->driver_info;
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08001951
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001952 if (nr > EM28XX_MAXBOARDS) {
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -08001953 printk (DRIVER_NAME ": Supports only %i em28xx boards.\n",EM28XX_MAXBOARDS);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001954 em28xx_devused&=~(1<<nr);
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08001955 return -ENOMEM;
1956 }
1957
1958 /* allocate memory for our device state and initialize it */
Panagiotis Issaris74081872006-01-11 19:40:56 -02001959 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08001960 if (dev == NULL) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001961 em28xx_err(DRIVER_NAME ": out of memory!\n");
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001962 em28xx_devused&=~(1<<nr);
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08001963 return -ENOMEM;
1964 }
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08001965
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001966 snprintf(dev->name, 29, "em28xx #%d", nr);
1967 dev->devno=nr;
1968
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -08001969 /* compute alternate max packet sizes */
1970 uif = udev->actconfig->interface[0];
1971
1972 dev->num_alt=uif->num_altsetting;
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001973 em28xx_info("Alternate settings: %i\n",dev->num_alt);
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -08001974// dev->alt_max_pkt_size = kmalloc(sizeof(*dev->alt_max_pkt_size)*
1975 dev->alt_max_pkt_size = kmalloc(32*
1976 dev->num_alt,GFP_KERNEL);
1977 if (dev->alt_max_pkt_size == NULL) {
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001978 em28xx_errdev("out of memory!\n");
1979 em28xx_devused&=~(1<<nr);
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -08001980 return -ENOMEM;
1981 }
1982
1983 for (i = 0; i < dev->num_alt ; i++) {
1984 u16 tmp = le16_to_cpu(uif->altsetting[i].endpoint[1].desc.
1985 wMaxPacketSize);
1986 dev->alt_max_pkt_size[i] =
1987 (tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001988 em28xx_info("Alternate setting %i, max size= %i\n",i,
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -08001989 dev->alt_max_pkt_size[i]);
1990 }
1991
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08001992 if ((card[nr]>=0)&&(card[nr]<em28xx_bcount))
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08001993 model=card[nr];
1994
1995 if ((model==EM2800_BOARD_UNKNOWN)||(model==EM2820_BOARD_UNKNOWN)) {
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001996 em28xx_errdev( "Your board has no eeprom inside it and thus can't\n"
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08001997 "%s: be autodetected. Please pass card=<n> insmod option to\n"
1998 "%s: workaround that. Redirect complaints to the vendor of\n"
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02001999 "%s: the TV card. Generic type will be used."
2000 "%s: Best regards,\n"
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08002001 "%s: -- tux\n",
2002 dev->name,dev->name,dev->name,dev->name,dev->name);
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002003 em28xx_errdev("%s: Here is a list of valid choices for the card=<n> insmod option:\n",
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08002004 dev->name);
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002005 for (i = 0; i < em28xx_bcount; i++) {
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002006 em28xx_errdev(" card=%d -> %s\n", i,
2007 em28xx_boards[i].name);
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -08002008 }
2009 }
2010
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002011 /* allocate device struct */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002012 retval = em28xx_init_dev(&dev, udev, nr, model);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002013 if (retval)
2014 return retval;
2015
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002016 em28xx_info("Found %s\n", em28xx_boards[model].name);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002017
2018 /* save our data pointer in this interface device */
2019 usb_set_intfdata(interface, dev);
2020 return 0;
2021}
2022
2023/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002024 * em28xx_usb_disconnect()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002025 * called when the device gets diconencted
2026 * video device will be unregistered on v4l2_close in case it is still open
2027 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002028static void em28xx_usb_disconnect(struct usb_interface *interface)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002029{
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002030 struct em28xx *dev = usb_get_intfdata(interface);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002031 usb_set_intfdata(interface, NULL);
2032
2033 if (!dev)
2034 return;
2035
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002036 down_write(&em28xx_disconnect);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002037
Ingo Molnar3593cab2006-02-07 06:49:14 -02002038 mutex_lock(&dev->lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002039
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002040 em28xx_info("disconnecting %s\n", dev->vdev->name);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002041
2042 wake_up_interruptible_all(&dev->open);
2043
2044 if (dev->users) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002045 em28xx_warn
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002046 ("device /dev/video%d is open! Deregistration and memory "
Mauro Carvalho Chehabe5589be2006-01-23 17:11:08 -02002047 "deallocation are deferred on close.\n",
2048 dev->vdev->minor-MINOR_VFL_TYPE_GRABBER_MIN);
2049
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002050 dev->state |= DEV_MISCONFIGURED;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002051 em28xx_uninit_isoc(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002052 dev->state |= DEV_DISCONNECTED;
2053 wake_up_interruptible(&dev->wait_frame);
2054 wake_up_interruptible(&dev->wait_stream);
2055 } else {
2056 dev->state |= DEV_DISCONNECTED;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002057 em28xx_release_resources(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002058 }
2059
Ingo Molnar3593cab2006-02-07 06:49:14 -02002060 mutex_unlock(&dev->lock);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002061
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -08002062 if (!dev->users) {
2063 kfree(dev->alt_max_pkt_size);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002064 kfree(dev);
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -08002065 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002066
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002067 up_write(&em28xx_disconnect);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002068}
2069
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002070static struct usb_driver em28xx_usb_driver = {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002071 .name = "em28xx",
2072 .probe = em28xx_usb_probe,
2073 .disconnect = em28xx_usb_disconnect,
2074 .id_table = em28xx_id_table,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002075};
2076
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002077static int __init em28xx_module_init(void)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002078{
2079 int result;
2080
2081 printk(KERN_INFO DRIVER_NAME " v4l2 driver version %d.%d.%d loaded\n",
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002082 (EM28XX_VERSION_CODE >> 16) & 0xff,
2083 (EM28XX_VERSION_CODE >> 8) & 0xff, EM28XX_VERSION_CODE & 0xff);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002084#ifdef SNAPSHOT
2085 printk(KERN_INFO DRIVER_NAME " snapshot date %04d-%02d-%02d\n",
2086 SNAPSHOT / 10000, (SNAPSHOT / 100) % 100, SNAPSHOT % 100);
2087#endif
2088
2089 /* register this driver with the USB subsystem */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002090 result = usb_register(&em28xx_usb_driver);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002091 if (result)
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002092 em28xx_err(DRIVER_NAME
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002093 " usb_register failed. Error number %d.\n", result);
2094
2095 return result;
2096}
2097
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002098static void __exit em28xx_module_exit(void)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002099{
2100 /* deregister this driver with the USB subsystem */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002101 usb_deregister(&em28xx_usb_driver);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08002102}
2103
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002104module_init(em28xx_module_init);
2105module_exit(em28xx_module_exit);