blob: 0966017ca745ab328696e29be39d347366e988f0 [file] [log] [blame]
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -08002 em28xx-core.c - driver for Empia EM2800/EM2820/2840 USB video capture devices
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08003
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -08004 Copyright (C) 2005 Ludovico Cavedon <cavedon@sssup.it>
5 Markus Rechberger <mrechberger@gmail.com>
Mauro Carvalho Chehab2e7c6dc2006-04-03 07:53:40 -03006 Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -08007 Sascha Sommer <saschasommer@freenet.de>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08008
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24#include <linux/init.h>
25#include <linux/list.h>
26#include <linux/module.h>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080027#include <linux/usb.h>
28#include <linux/vmalloc.h>
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080029
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -080030#include "em28xx.h"
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080031
32/* #define ENABLE_DEBUG_ISOC_FRAMES */
33
Mauro Carvalho Chehabd21838d2006-01-09 15:25:21 -020034static unsigned int core_debug = 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080035module_param(core_debug,int,0644);
36MODULE_PARM_DESC(core_debug,"enable debug messages [core]");
37
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -080038#define em28xx_coredbg(fmt, arg...) do {\
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080039 if (core_debug) \
40 printk(KERN_INFO "%s %s :"fmt, \
Jean Delvaref85c6572005-12-19 08:53:59 -020041 dev->name, __FUNCTION__ , ##arg); } while (0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080042
Mauro Carvalho Chehabd21838d2006-01-09 15:25:21 -020043static unsigned int reg_debug = 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080044module_param(reg_debug,int,0644);
45MODULE_PARM_DESC(reg_debug,"enable debug messages [URB reg]");
46
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -080047#define em28xx_regdbg(fmt, arg...) do {\
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080048 if (reg_debug) \
49 printk(KERN_INFO "%s %s :"fmt, \
Jean Delvaref85c6572005-12-19 08:53:59 -020050 dev->name, __FUNCTION__ , ##arg); } while (0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080051
Mauro Carvalho Chehabd21838d2006-01-09 15:25:21 -020052static unsigned int isoc_debug = 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080053module_param(isoc_debug,int,0644);
Paul Vriens55b8b2d2005-11-08 21:37:29 -080054MODULE_PARM_DESC(isoc_debug,"enable debug messages [isoc transfers]");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080055
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -080056#define em28xx_isocdbg(fmt, arg...) do {\
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080057 if (isoc_debug) \
58 printk(KERN_INFO "%s %s :"fmt, \
Jean Delvaref85c6572005-12-19 08:53:59 -020059 dev->name, __FUNCTION__ , ##arg); } while (0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080060
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -080061static int alt = EM28XX_PINOUT;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080062module_param(alt, int, 0644);
63MODULE_PARM_DESC(alt, "alternate setting to use for video endpoint");
64
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -080065
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080066/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -080067 * em28xx_request_buffers()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080068 * allocate a number of buffers
69 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -080070u32 em28xx_request_buffers(struct em28xx *dev, u32 count)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080071{
72 const size_t imagesize = PAGE_ALIGN(dev->frame_size); /*needs to be page aligned cause the buffers can be mapped individually! */
73 void *buff = NULL;
74 u32 i;
Mauro Carvalho Chehab3687e1e2008-02-08 15:44:25 -030075 em28xx_coredbg("requested %i buffers with size %zi\n",
76 count, imagesize);
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -080077 if (count > EM28XX_NUM_FRAMES)
78 count = EM28XX_NUM_FRAMES;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080079
80 dev->num_frames = count;
81 while (dev->num_frames > 0) {
Sascha Sommer3639c862005-12-12 00:37:30 -080082 if ((buff = vmalloc_32(dev->num_frames * imagesize))) {
83 memset(buff, 0, dev->num_frames * imagesize);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080084 break;
Sascha Sommer3639c862005-12-12 00:37:30 -080085 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -080086 dev->num_frames--;
87 }
88
89 for (i = 0; i < dev->num_frames; i++) {
90 dev->frame[i].bufmem = buff + i * imagesize;
91 dev->frame[i].buf.index = i;
92 dev->frame[i].buf.m.offset = i * imagesize;
93 dev->frame[i].buf.length = dev->frame_size;
94 dev->frame[i].buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
95 dev->frame[i].buf.sequence = 0;
96 dev->frame[i].buf.field = V4L2_FIELD_NONE;
97 dev->frame[i].buf.memory = V4L2_MEMORY_MMAP;
98 dev->frame[i].buf.flags = 0;
99 }
100 return dev->num_frames;
101}
102
103/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800104 * em28xx_queue_unusedframes()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800105 * add all frames that are not currently in use to the inbuffer queue
106 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800107void em28xx_queue_unusedframes(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800108{
109 unsigned long lock_flags;
110 u32 i;
111
112 for (i = 0; i < dev->num_frames; i++)
113 if (dev->frame[i].state == F_UNUSED) {
114 dev->frame[i].state = F_QUEUED;
115 spin_lock_irqsave(&dev->queue_lock, lock_flags);
116 list_add_tail(&dev->frame[i].frame, &dev->inqueue);
117 spin_unlock_irqrestore(&dev->queue_lock, lock_flags);
118 }
119}
120
121/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800122 * em28xx_release_buffers()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800123 * free frame buffers
124 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800125void em28xx_release_buffers(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800126{
127 if (dev->num_frames) {
Sascha Sommer3639c862005-12-12 00:37:30 -0800128 vfree(dev->frame[0].bufmem);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800129 dev->num_frames = 0;
130 }
131}
132
133/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800134 * em28xx_read_reg_req()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800135 * reads data from the usb device specifying bRequest
136 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800137int em28xx_read_reg_req_len(struct em28xx *dev, u8 req, u16 reg,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800138 char *buf, int len)
139{
140 int ret, byte;
141
Markus Rechberger9f387242006-02-07 06:49:11 -0200142 if (dev->state & DEV_DISCONNECTED)
143 return(-ENODEV);
144
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800145 em28xx_regdbg("req=%02x, reg=%02x ", req, reg);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800146
147 ret = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0), req,
148 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
149 0x0000, reg, buf, len, HZ);
150
151 if (reg_debug){
152 printk(ret < 0 ? " failed!\n" : "%02x values: ", ret);
153 for (byte = 0; byte < len; byte++) {
Mauro Carvalho Chehab0da51762008-02-06 15:55:19 -0300154 printk(" %02x", (unsigned char)buf[byte]);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800155 }
156 printk("\n");
157 }
158
159 return ret;
160}
161
162/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800163 * em28xx_read_reg_req()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800164 * reads data from the usb device specifying bRequest
165 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800166int em28xx_read_reg_req(struct em28xx *dev, u8 req, u16 reg)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800167{
168 u8 val;
169 int ret;
170
Markus Rechberger9f387242006-02-07 06:49:11 -0200171 if (dev->state & DEV_DISCONNECTED)
172 return(-ENODEV);
173
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800174 em28xx_regdbg("req=%02x, reg=%02x:", req, reg);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800175
176 ret = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0), req,
177 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
178 0x0000, reg, &val, 1, HZ);
179
180 if (reg_debug)
Mauro Carvalho Chehab0da51762008-02-06 15:55:19 -0300181 printk(ret < 0 ? " failed!\n" :
182 "%02x\n", (unsigned char) val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800183
184 if (ret < 0)
185 return ret;
186
187 return val;
188}
189
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800190int em28xx_read_reg(struct em28xx *dev, u16 reg)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800191{
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800192 return em28xx_read_reg_req(dev, USB_REQ_GET_STATUS, reg);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800193}
194
195/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800196 * em28xx_write_regs_req()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800197 * sends data to the usb device, specifying bRequest
198 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800199int em28xx_write_regs_req(struct em28xx *dev, u8 req, u16 reg, char *buf,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800200 int len)
201{
202 int ret;
203
204 /*usb_control_msg seems to expect a kmalloced buffer */
Markus Rechberger9f387242006-02-07 06:49:11 -0200205 unsigned char *bufs;
206
207 if (dev->state & DEV_DISCONNECTED)
208 return(-ENODEV);
209
210 bufs = kmalloc(len, GFP_KERNEL);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800211
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800212 em28xx_regdbg("req=%02x reg=%02x:", req, reg);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800213
214 if (reg_debug) {
215 int i;
216 for (i = 0; i < len; ++i)
217 printk (" %02x", (unsigned char)buf[i]);
218 printk ("\n");
219 }
220
221 if (!bufs)
222 return -ENOMEM;
223 memcpy(bufs, buf, len);
224 ret = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0), req,
225 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
226 0x0000, reg, bufs, len, HZ);
Markus Rechberger9f387242006-02-07 06:49:11 -0200227 msleep(5); /* FIXME: magic number */
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800228 kfree(bufs);
229 return ret;
230}
231
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800232int em28xx_write_regs(struct em28xx *dev, u16 reg, char *buf, int len)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800233{
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800234 return em28xx_write_regs_req(dev, USB_REQ_GET_STATUS, reg, buf, len);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800235}
236
237/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800238 * em28xx_write_reg_bits()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800239 * sets only some bits (specified by bitmask) of a register, by first reading
240 * the actual value
241 */
Adrian Bunk532fe652008-01-28 22:10:48 -0300242static int em28xx_write_reg_bits(struct em28xx *dev, u16 reg, u8 val,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800243 u8 bitmask)
244{
245 int oldval;
246 u8 newval;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800247 if ((oldval = em28xx_read_reg(dev, reg)) < 0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800248 return oldval;
249 newval = (((u8) oldval) & ~bitmask) | (val & bitmask);
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800250 return em28xx_write_regs(dev, reg, &newval, 1);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800251}
252
253/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800254 * em28xx_write_ac97()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800255 * write a 16 bit value to the specified AC97 address (LSB first!)
256 */
Mauro Carvalho Chehab539c96d2008-01-05 09:53:54 -0300257static int em28xx_write_ac97(struct em28xx *dev, u8 reg, u8 *val)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800258{
Mauro Carvalho Chehab00b87302008-02-06 18:34:13 -0300259 int ret, i;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800260 u8 addr = reg & 0x7f;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800261 if ((ret = em28xx_write_regs(dev, AC97LSB_REG, val, 2)) < 0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800262 return ret;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800263 if ((ret = em28xx_write_regs(dev, AC97ADDR_REG, &addr, 1)) < 0)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800264 return ret;
Mauro Carvalho Chehab00b87302008-02-06 18:34:13 -0300265
266 /* Wait up to 50 ms for AC97 command to complete */
267 for (i = 0; i < 10; i++) {
268 if ((ret = em28xx_read_reg(dev, AC97BUSY_REG)) < 0)
269 return ret;
270 if (!((u8) ret) & 0x01)
271 return 0;
272 msleep(5);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800273 }
Mauro Carvalho Chehab00b87302008-02-06 18:34:13 -0300274 em28xx_warn ("AC97 command still being executed: not handled properly!\n");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800275 return 0;
276}
277
Mauro Carvalho Chehab00b87302008-02-06 18:34:13 -0300278static int em28xx_set_audio_source(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800279{
Mauro Carvalho Chehab539c96d2008-01-05 09:53:54 -0300280 static char *enable = "\x08\x08";
281 static char *disable = "\x08\x88";
282 char *video = enable, *line = disable;
Andrew Morton1685a6f2008-02-05 07:37:21 -0300283 int ret;
Mauro Carvalho Chehab539c96d2008-01-05 09:53:54 -0300284 u8 input;
285
286 if (dev->is_em2800) {
287 if (dev->ctl_ainput)
288 input = EM2800_AUDIO_SRC_LINE;
289 else
290 input = EM2800_AUDIO_SRC_TUNER;
291
292 ret = em28xx_write_regs(dev, EM2800_AUDIOSRC_REG, &input, 1);
293 if (ret < 0)
294 return ret;
295 }
296
297 if (dev->has_msp34xx)
298 input = EM28XX_AUDIO_SRC_TUNER;
299 else {
300 switch (dev->ctl_ainput) {
301 case EM28XX_AMUX_VIDEO:
302 input = EM28XX_AUDIO_SRC_TUNER;
Mauro Carvalho Chehab539c96d2008-01-05 09:53:54 -0300303 break;
304 case EM28XX_AMUX_LINE_IN:
305 input = EM28XX_AUDIO_SRC_LINE;
Mauro Carvalho Chehab539c96d2008-01-05 09:53:54 -0300306 break;
307 case EM28XX_AMUX_AC97_VIDEO:
308 input = EM28XX_AUDIO_SRC_LINE;
309 break;
310 case EM28XX_AMUX_AC97_LINE_IN:
311 input = EM28XX_AUDIO_SRC_LINE;
312 video = disable;
313 line = enable;
314 break;
315 }
316 }
317
318 ret = em28xx_write_reg_bits(dev, AUDIOSRC_REG, input, 0xc0);
319 if (ret < 0)
320 return ret;
Mauro Carvalho Chehab00b87302008-02-06 18:34:13 -0300321 msleep(5);
Mauro Carvalho Chehab539c96d2008-01-05 09:53:54 -0300322
Mauro Carvalho Chehab7463dda2008-02-05 22:29:26 -0300323 /* Sets AC97 mixer registers
324 This is seems to be needed, even for non-ac97 configs
325 */
Mauro Carvalho Chehab539c96d2008-01-05 09:53:54 -0300326 ret = em28xx_write_ac97(dev, VIDEO_AC97, video);
327 if (ret < 0)
328 return ret;
329
330 ret = em28xx_write_ac97(dev, LINE_IN_AC97, line);
331
332 return ret;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800333}
334
Mauro Carvalho Chehab539c96d2008-01-05 09:53:54 -0300335int em28xx_audio_analog_set(struct em28xx *dev)
336{
337 int ret;
338 char s[2] = { 0x00, 0x00 };
Mauro Carvalho Chehab3abee532008-01-05 17:01:41 -0300339 u8 xclk = 0x07;
Mauro Carvalho Chehab539c96d2008-01-05 09:53:54 -0300340
341 s[0] |= 0x1f - dev->volume;
342 s[1] |= 0x1f - dev->volume;
343
Mauro Carvalho Chehab00b87302008-02-06 18:34:13 -0300344 /* Mute */
345 s[1] |= 0x80;
Mauro Carvalho Chehab539c96d2008-01-05 09:53:54 -0300346 ret = em28xx_write_ac97(dev, MASTER_AC97, s);
Mauro Carvalho Chehab00b87302008-02-06 18:34:13 -0300347
Mauro Carvalho Chehab539c96d2008-01-05 09:53:54 -0300348 if (ret < 0)
349 return ret;
350
Mauro Carvalho Chehab3abee532008-01-05 17:01:41 -0300351 if (dev->has_12mhz_i2s)
352 xclk |= 0x20;
353
354 if (!dev->mute)
355 xclk |= 0x80;
356
357 ret = em28xx_write_reg_bits(dev, XCLK_REG, xclk, 0xa7);
Mauro Carvalho Chehab539c96d2008-01-05 09:53:54 -0300358 if (ret < 0)
359 return ret;
Mauro Carvalho Chehab3abee532008-01-05 17:01:41 -0300360 msleep(10);
Mauro Carvalho Chehab539c96d2008-01-05 09:53:54 -0300361
362 /* Selects the proper audio input */
363 ret = em28xx_set_audio_source(dev);
364
Mauro Carvalho Chehab00b87302008-02-06 18:34:13 -0300365 /* Unmute device */
366 if (!dev->mute)
367 s[1] &= ~0x80;
368 ret = em28xx_write_ac97(dev, MASTER_AC97, s);
369
Mauro Carvalho Chehab539c96d2008-01-05 09:53:54 -0300370 return ret;
371}
372EXPORT_SYMBOL_GPL(em28xx_audio_analog_set);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800373
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800374int em28xx_colorlevels_set_default(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800375{
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800376 em28xx_write_regs(dev, YGAIN_REG, "\x10", 1); /* contrast */
377 em28xx_write_regs(dev, YOFFSET_REG, "\x00", 1); /* brightness */
378 em28xx_write_regs(dev, UVGAIN_REG, "\x10", 1); /* saturation */
379 em28xx_write_regs(dev, UOFFSET_REG, "\x00", 1);
380 em28xx_write_regs(dev, VOFFSET_REG, "\x00", 1);
381 em28xx_write_regs(dev, SHARPNESS_REG, "\x00", 1);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800382
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800383 em28xx_write_regs(dev, GAMMA_REG, "\x20", 1);
384 em28xx_write_regs(dev, RGAIN_REG, "\x20", 1);
385 em28xx_write_regs(dev, GGAIN_REG, "\x20", 1);
386 em28xx_write_regs(dev, BGAIN_REG, "\x20", 1);
387 em28xx_write_regs(dev, ROFFSET_REG, "\x00", 1);
388 em28xx_write_regs(dev, GOFFSET_REG, "\x00", 1);
389 return em28xx_write_regs(dev, BOFFSET_REG, "\x00", 1);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800390}
391
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800392int em28xx_capture_start(struct em28xx *dev, int start)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800393{
394 int ret;
395 /* FIXME: which is the best order? */
396 /* video registers are sampled by VREF */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800397 if ((ret = em28xx_write_reg_bits(dev, USBSUSP_REG, start ? 0x10 : 0x00,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800398 0x10)) < 0)
399 return ret;
400 /* enable video capture */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800401 return em28xx_write_regs(dev, VINENABLE_REG, start ? "\x67" : "\x27", 1);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800402}
403
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800404int em28xx_outfmt_set_yuv422(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800405{
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800406 em28xx_write_regs(dev, OUTFMT_REG, "\x34", 1);
407 em28xx_write_regs(dev, VINMODE_REG, "\x10", 1);
408 return em28xx_write_regs(dev, VINCTRL_REG, "\x11", 1);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800409}
410
Adrian Bunkadcb0fa2006-05-22 10:31:42 -0300411static int em28xx_accumulator_set(struct em28xx *dev, u8 xmin, u8 xmax,
412 u8 ymin, u8 ymax)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800413{
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800414 em28xx_coredbg("em28xx Scale: (%d,%d)-(%d,%d)\n", xmin, ymin, xmax, ymax);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800415
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800416 em28xx_write_regs(dev, XMIN_REG, &xmin, 1);
417 em28xx_write_regs(dev, XMAX_REG, &xmax, 1);
418 em28xx_write_regs(dev, YMIN_REG, &ymin, 1);
419 return em28xx_write_regs(dev, YMAX_REG, &ymax, 1);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800420}
421
Adrian Bunkadcb0fa2006-05-22 10:31:42 -0300422static int em28xx_capture_area_set(struct em28xx *dev, u8 hstart, u8 vstart,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800423 u16 width, u16 height)
424{
425 u8 cwidth = width;
426 u8 cheight = height;
427 u8 overflow = (height >> 7 & 0x02) | (width >> 8 & 0x01);
428
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800429 em28xx_coredbg("em28xx Area Set: (%d,%d)\n", (width | (overflow & 2) << 7),
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800430 (height | (overflow & 1) << 8));
431
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800432 em28xx_write_regs(dev, HSTART_REG, &hstart, 1);
433 em28xx_write_regs(dev, VSTART_REG, &vstart, 1);
434 em28xx_write_regs(dev, CWIDTH_REG, &cwidth, 1);
435 em28xx_write_regs(dev, CHEIGHT_REG, &cheight, 1);
436 return em28xx_write_regs(dev, OFLOW_REG, &overflow, 1);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800437}
438
Adrian Bunkadcb0fa2006-05-22 10:31:42 -0300439static int em28xx_scaler_set(struct em28xx *dev, u16 h, u16 v)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800440{
Sascha Sommer52c02fc2005-11-08 21:38:10 -0800441 u8 mode;
442 /* the em2800 scaler only supports scaling down to 50% */
443 if(dev->is_em2800)
444 mode = (v ? 0x20 : 0x00) | (h ? 0x10 : 0x00);
445 else {
446 u8 buf[2];
447 buf[0] = h;
448 buf[1] = h >> 8;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800449 em28xx_write_regs(dev, HSCALELOW_REG, (char *)buf, 2);
Sascha Sommer52c02fc2005-11-08 21:38:10 -0800450 buf[0] = v;
451 buf[1] = v >> 8;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800452 em28xx_write_regs(dev, VSCALELOW_REG, (char *)buf, 2);
Sascha Sommer52c02fc2005-11-08 21:38:10 -0800453 /* it seems that both H and V scalers must be active to work correctly */
454 mode = (h || v)? 0x30: 0x00;
Sascha Sommer74458e62005-11-08 21:37:33 -0800455 }
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800456 return em28xx_write_reg_bits(dev, COMPR_REG, mode, 0x30);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800457}
458
459/* FIXME: this only function read values from dev */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800460int em28xx_resolution_set(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800461{
462 int width, height;
463 width = norm_maxw(dev);
464 height = norm_maxh(dev) >> 1;
465
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800466 em28xx_outfmt_set_yuv422(dev);
467 em28xx_accumulator_set(dev, 1, (width - 4) >> 2, 1, (height - 4) >> 2);
468 em28xx_capture_area_set(dev, 0, 0, width >> 2, height >> 2);
469 return em28xx_scaler_set(dev, dev->hscale, dev->vscale);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800470}
471
472
473/******************* isoc transfer handling ****************************/
474
475#ifdef ENABLE_DEBUG_ISOC_FRAMES
David Howells7d12e782006-10-05 14:55:46 +0100476static void em28xx_isoc_dump(struct urb *urb)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800477{
478 int len = 0;
479 int ntrans = 0;
480 int i;
481
482 printk(KERN_DEBUG "isocIrq: sf=%d np=%d ec=%x\n",
483 urb->start_frame, urb->number_of_packets,
484 urb->error_count);
485 for (i = 0; i < urb->number_of_packets; i++) {
486 unsigned char *buf =
487 urb->transfer_buffer +
488 urb->iso_frame_desc[i].offset;
489 int alen = urb->iso_frame_desc[i].actual_length;
490 if (alen > 0) {
491 if (buf[0] == 0x88) {
492 ntrans++;
493 len += alen;
494 } else if (buf[0] == 0x22) {
495 printk(KERN_DEBUG
496 "= l=%d nt=%d bpp=%d\n",
497 len - 4 * ntrans, ntrans,
498 ntrans == 0 ? 0 : len / ntrans);
499 ntrans = 1;
500 len = alen;
501 } else
502 printk(KERN_DEBUG "!\n");
503 }
504 printk(KERN_DEBUG " n=%d s=%d al=%d %x\n", i,
505 urb->iso_frame_desc[i].status,
506 urb->iso_frame_desc[i].actual_length,
507 (unsigned int)
508 *((unsigned char *)(urb->transfer_buffer +
509 urb->iso_frame_desc[i].
510 offset)));
511 }
512}
513#endif
514
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800515static inline int em28xx_isoc_video(struct em28xx *dev,struct em28xx_frame_t **f,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800516 unsigned long *lock_flags, unsigned char buf)
517{
518 if (!(buf & 0x01)) {
519 if ((*f)->state == F_GRABBING) {
520 /*previous frame is incomplete */
521 if ((*f)->fieldbytesused < dev->field_size) {
522 (*f)->state = F_ERROR;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800523 em28xx_isocdbg ("dropping incomplete bottom field (%i missing bytes)",
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800524 dev->field_size-(*f)->fieldbytesused);
525 } else {
526 (*f)->state = F_DONE;
527 (*f)->buf.bytesused = dev->frame_size;
528 }
529 }
530 if ((*f)->state == F_DONE || (*f)->state == F_ERROR) {
531 /* move current frame to outqueue and get next free buffer from inqueue */
532 spin_lock_irqsave(&dev-> queue_lock, *lock_flags);
533 list_move_tail(&(*f)->frame, &dev->outqueue);
534 if (!list_empty(&dev->inqueue))
535 (*f) = list_entry(dev-> inqueue.next,
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800536 struct em28xx_frame_t,frame);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800537 else
538 (*f) = NULL;
539 spin_unlock_irqrestore(&dev->queue_lock,*lock_flags);
540 }
541 if (!(*f)) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800542 em28xx_isocdbg ("new frame but no buffer is free");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800543 return -1;
544 }
545 do_gettimeofday(&(*f)->buf.timestamp);
546 (*f)->buf.sequence = ++dev->frame_count;
547 (*f)->buf.field = V4L2_FIELD_INTERLACED;
548 (*f)->state = F_GRABBING;
549 (*f)->buf.bytesused = 0;
550 (*f)->top_field = 1;
551 (*f)->fieldbytesused = 0;
552 } else {
553 /* acquiring bottom field */
554 if ((*f)->state == F_GRABBING) {
555 if (!(*f)->top_field) {
556 (*f)->state = F_ERROR;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800557 em28xx_isocdbg ("unexpected begin of bottom field; discarding it");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800558 } else if ((*f)-> fieldbytesused < dev->field_size - 172) {
559 (*f)->state = F_ERROR;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800560 em28xx_isocdbg ("dropping incomplete top field (%i missing bytes)",
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800561 dev->field_size-(*f)->fieldbytesused);
562 } else {
563 (*f)->top_field = 0;
564 (*f)->fieldbytesused = 0;
565 }
566 }
567 }
568 return (0);
569}
570
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800571static inline void em28xx_isoc_video_copy(struct em28xx *dev,
572 struct em28xx_frame_t **f, unsigned char *buf, int len)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800573{
574 void *fieldstart, *startwrite, *startread;
575 int linesdone, currlinedone, offset, lencopy,remain;
576
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -0800577 if(dev->frame_size != (*f)->buf.length){
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800578 em28xx_err("frame_size %i and buf.length %i are different!!!\n",dev->frame_size,(*f)->buf.length);
Mauro Carvalho Chehab596d92d2005-11-08 21:37:24 -0800579 return;
580 }
581
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800582 if ((*f)->fieldbytesused + len > dev->field_size)
583 len =dev->field_size - (*f)->fieldbytesused;
Mauro Carvalho Chehabfeff0482005-11-08 21:38:16 -0800584
585 if (buf[0] != 0x88 && buf[0] != 0x22) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800586 em28xx_isocdbg("frame is not complete\n");
Mauro Carvalho Chehabfeff0482005-11-08 21:38:16 -0800587 startread = buf;
588 len+=4;
589 } else
590 startread = buf + 4;
591
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800592 remain = len;
Mauro Carvalho Chehabfeff0482005-11-08 21:38:16 -0800593
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800594 if ((*f)->top_field)
595 fieldstart = (*f)->bufmem;
596 else
597 fieldstart = (*f)->bufmem + dev->bytesperline;
598
599 linesdone = (*f)->fieldbytesused / dev->bytesperline;
600 currlinedone = (*f)->fieldbytesused % dev->bytesperline;
601 offset = linesdone * dev->bytesperline * 2 + currlinedone;
602 startwrite = fieldstart + offset;
603 lencopy = dev->bytesperline - currlinedone;
604 lencopy = lencopy > remain ? remain : lencopy;
605
606 memcpy(startwrite, startread, lencopy);
607 remain -= lencopy;
608
609 while (remain > 0) {
610 startwrite += lencopy + dev->bytesperline;
611 startread += lencopy;
612 if (dev->bytesperline > remain)
613 lencopy = remain;
614 else
615 lencopy = dev->bytesperline;
616
617 memcpy(startwrite, startread, lencopy);
618 remain -= lencopy;
619 }
620
621 (*f)->fieldbytesused += len;
622}
623
624/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800625 * em28xx_isoIrq()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800626 * handles the incoming isoc urbs and fills the frames from our inqueue
627 */
David Howells7d12e782006-10-05 14:55:46 +0100628static void em28xx_isocIrq(struct urb *urb)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800629{
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800630 struct em28xx *dev = urb->context;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800631 int i, status;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800632 struct em28xx_frame_t **f;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800633 unsigned long lock_flags;
634
635 if (!dev)
636 return;
637#ifdef ENABLE_DEBUG_ISOC_FRAMES
638 if (isoc_debug>1)
David Howells7d12e782006-10-05 14:55:46 +0100639 em28xx_isoc_dump(urb);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800640#endif
641
642 if (urb->status == -ENOENT)
643 return;
644
645 f = &dev->frame_current;
646
647 if (dev->stream == STREAM_INTERRUPT) {
648 dev->stream = STREAM_OFF;
649 if ((*f))
650 (*f)->state = F_QUEUED;
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800651 em28xx_isocdbg("stream interrupted");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800652 wake_up_interruptible(&dev->wait_stream);
653 }
654
655 if ((dev->state & DEV_DISCONNECTED) || (dev->state & DEV_MISCONFIGURED))
656 return;
657
658 if (dev->stream == STREAM_ON && !list_empty(&dev->inqueue)) {
659 if (!(*f))
660 (*f) = list_entry(dev->inqueue.next,
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800661 struct em28xx_frame_t, frame);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800662
663 for (i = 0; i < urb->number_of_packets; i++) {
664 unsigned char *buf = urb->transfer_buffer +
665 urb->iso_frame_desc[i].offset;
666 int len = urb->iso_frame_desc[i].actual_length - 4;
667
668 if (urb->iso_frame_desc[i].status) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800669 em28xx_isocdbg("data error: [%d] len=%d, status=%d", i,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800670 urb->iso_frame_desc[i].actual_length,
671 urb->iso_frame_desc[i].status);
Mauro Carvalho Chehabfeff0482005-11-08 21:38:16 -0800672 if (urb->iso_frame_desc[i].status != -EPROTO)
673 continue;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800674 }
675 if (urb->iso_frame_desc[i].actual_length <= 0) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800676 em28xx_isocdbg("packet %d is empty",i);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800677 continue;
678 }
679 if (urb->iso_frame_desc[i].actual_length >
Mauro Carvalho Chehab3687e1e2008-02-08 15:44:25 -0300680 urb->iso_frame_desc[i].length) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800681 em28xx_isocdbg("packet bigger than packet size");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800682 continue;
683 }
684 /*new frame */
685 if (buf[0] == 0x22 && buf[1] == 0x5a) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800686 em28xx_isocdbg("Video frame, length=%i!",len);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800687
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800688 if (em28xx_isoc_video(dev,f,&lock_flags,buf[2]))
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800689 break;
690 } else if (buf[0]==0x33 && buf[1]==0x95 && buf[2]==0x00) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800691 em28xx_isocdbg("VBI HEADER!!!");
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800692 }
693
694 /* actual copying */
695 if ((*f)->state == F_GRABBING) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800696 em28xx_isoc_video_copy(dev,f,buf, len);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800697 }
698 }
699 }
700
701 for (i = 0; i < urb->number_of_packets; i++) {
702 urb->iso_frame_desc[i].status = 0;
703 urb->iso_frame_desc[i].actual_length = 0;
704 }
705
706 urb->status = 0;
707 if ((status = usb_submit_urb(urb, GFP_ATOMIC))) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800708 em28xx_errdev("resubmit of urb failed (error=%i)\n", status);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800709 dev->state |= DEV_MISCONFIGURED;
710 }
711 wake_up_interruptible(&dev->wait_frame);
712 return;
713}
714
715/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800716 * em28xx_uninit_isoc()
717 * deallocates the buffers and urbs allocated during em28xx_init_iosc()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800718 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800719void em28xx_uninit_isoc(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800720{
721 int i;
722
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800723 for (i = 0; i < EM28XX_NUM_BUFS; i++) {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800724 if (dev->urb[i]) {
725 usb_kill_urb(dev->urb[i]);
Mauro Carvalho Chehab3687e1e2008-02-08 15:44:25 -0300726 if (dev->transfer_buffer[i]) {
727 usb_buffer_free(dev->udev,
728 dev->urb[i]->transfer_buffer_length,
729 dev->transfer_buffer[i],
730 dev->urb[i]->transfer_dma);
Markus Rechberger02f74272005-11-08 21:37:46 -0800731 }
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800732 usb_free_urb(dev->urb[i]);
733 }
734 dev->urb[i] = NULL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800735 dev->transfer_buffer[i] = NULL;
736 }
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800737 em28xx_capture_start(dev, 0);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800738}
739
740/*
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800741 * em28xx_init_isoc()
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800742 * allocates transfer buffers and submits the urbs for isoc transfer
743 */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800744int em28xx_init_isoc(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800745{
Florin Malitae7222ca2007-10-15 12:59:18 -0300746 /* change interface to 3 which allows the biggest packet sizes */
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800747 int i, errCode;
Mauro Carvalho Chehab3687e1e2008-02-08 15:44:25 -0300748 int sb_size;
749
750 em28xx_set_alternate(dev);
751 sb_size = EM28XX_NUM_PACKETS * dev->max_pkt_size;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800752
753 /* reset streaming vars */
754 dev->frame_current = NULL;
755 dev->frame_count = 0;
756
757 /* allocate urbs */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800758 for (i = 0; i < EM28XX_NUM_BUFS; i++) {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800759 struct urb *urb;
Mauro Carvalho Chehab3687e1e2008-02-08 15:44:25 -0300760 int j;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800761 /* allocate transfer buffer */
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800762 urb = usb_alloc_urb(EM28XX_NUM_PACKETS, GFP_KERNEL);
Markus Rechberger02f74272005-11-08 21:37:46 -0800763 if (!urb){
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800764 em28xx_errdev("cannot alloc urb %i\n", i);
765 em28xx_uninit_isoc(dev);
Markus Rechberger02f74272005-11-08 21:37:46 -0800766 return -ENOMEM;
767 }
Mauro Carvalho Chehab3687e1e2008-02-08 15:44:25 -0300768 dev->transfer_buffer[i] = usb_buffer_alloc(dev->udev, sb_size,
769 GFP_KERNEL,
770 &urb->transfer_dma);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800771 if (!dev->transfer_buffer[i]) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800772 em28xx_errdev
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800773 ("unable to allocate %i bytes for transfer buffer %i\n",
774 sb_size, i);
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800775 em28xx_uninit_isoc(dev);
Florin Malitae7222ca2007-10-15 12:59:18 -0300776 usb_free_urb(urb);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800777 return -ENOMEM;
778 }
779 memset(dev->transfer_buffer[i], 0, sb_size);
Markus Rechberger02f74272005-11-08 21:37:46 -0800780 urb->dev = dev->udev;
781 urb->context = dev;
782 urb->pipe = usb_rcvisocpipe(dev->udev, 0x82);
783 urb->transfer_flags = URB_ISO_ASAP;
784 urb->interval = 1;
785 urb->transfer_buffer = dev->transfer_buffer[i];
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800786 urb->complete = em28xx_isocIrq;
787 urb->number_of_packets = EM28XX_NUM_PACKETS;
Markus Rechberger02f74272005-11-08 21:37:46 -0800788 urb->transfer_buffer_length = sb_size;
Mauro Carvalho Chehab3687e1e2008-02-08 15:44:25 -0300789 for (j = 0; j < EM28XX_NUM_PACKETS; j++) {
790 urb->iso_frame_desc[j].offset = j * dev->max_pkt_size;
791 urb->iso_frame_desc[j].length = dev->max_pkt_size;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800792 }
Markus Rechberger02f74272005-11-08 21:37:46 -0800793 dev->urb[i] = urb;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800794 }
795
796 /* submit urbs */
Mauro Carvalho Chehab3687e1e2008-02-08 15:44:25 -0300797 em28xx_coredbg("Submitting %d urbs of %d packets (%d each)\n",
798 EM28XX_NUM_BUFS, EM28XX_NUM_PACKETS, dev->max_pkt_size);
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800799 for (i = 0; i < EM28XX_NUM_BUFS; i++) {
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800800 errCode = usb_submit_urb(dev->urb[i], GFP_KERNEL);
801 if (errCode) {
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800802 em28xx_errdev("submit of urb %i failed (error=%i)\n", i,
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800803 errCode);
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800804 em28xx_uninit_isoc(dev);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800805 return errCode;
806 }
807 }
808
809 return 0;
810}
811
Mauro Carvalho Chehab3acf2802005-11-08 21:38:27 -0800812int em28xx_set_alternate(struct em28xx *dev)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800813{
814 int errCode, prev_alt = dev->alt;
Mauro Carvalho Chehab3687e1e2008-02-08 15:44:25 -0300815 int i;
816 unsigned int min_pkt_size = dev->bytesperline+4;
817
818 /* When image size is bigger than a ceirtain value,
819 the frame size should be increased, otherwise, only
820 green screen will be received.
821 */
822 if (dev->frame_size > 720*240*2)
823 min_pkt_size *= 2;
824
825 for (i = 0; i < dev->num_alt; i++)
826 if (dev->alt_max_pkt_size[i] >= min_pkt_size)
827 break;
828 dev->alt = i;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800829
830 if (dev->alt != prev_alt) {
Mauro Carvalho Chehab3687e1e2008-02-08 15:44:25 -0300831 em28xx_coredbg("minimum isoc packet size: %u (alt=%d)\n",
832 min_pkt_size, dev->alt);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800833 dev->max_pkt_size = dev->alt_max_pkt_size[dev->alt];
Mauro Carvalho Chehab3687e1e2008-02-08 15:44:25 -0300834 em28xx_coredbg("setting alternate %d with wMaxPacketSize=%u\n",
835 dev->alt, dev->max_pkt_size);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800836 errCode = usb_set_interface(dev->udev, 0, dev->alt);
837 if (errCode < 0) {
Mauro Carvalho Chehab9d4d9c02005-11-08 21:38:52 -0800838 em28xx_errdev ("cannot change alternate number to %d (error=%i)\n",
Mauro Carvalho Chehab3687e1e2008-02-08 15:44:25 -0300839 dev->alt, errCode);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800840 return errCode;
841 }
842 }
843 return 0;
844}