V4L/DVB (9079): gspca: Return error code from stream start functions.
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / media / video / gspca / stk014.c
blobd9d64911f22a21220e73f0aa05ea5e415419ea87
1 /*
2 * Syntek DV4000 (STK014) subdriver
4 * Copyright (C) 2008 Jean-Francois Moine (http://moinejf.free.fr)
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #define MODULE_NAME "stk014"
23 #include "gspca.h"
24 #include "jpeg.h"
26 MODULE_AUTHOR("Jean-Francois Moine <http://moinejf.free.fr>");
27 MODULE_DESCRIPTION("Syntek DV4000 (STK014) USB Camera Driver");
28 MODULE_LICENSE("GPL");
30 /* specific webcam descriptor */
31 struct sd {
32 struct gspca_dev gspca_dev; /* !! must be the first item */
34 unsigned char brightness;
35 unsigned char contrast;
36 unsigned char colors;
37 unsigned char lightfreq;
40 /* global parameters */
41 static int sd_quant = 7; /* <= 4 KO - 7: good (enough!) */
43 /* V4L2 controls supported by the driver */
44 static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val);
45 static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val);
46 static int sd_setcontrast(struct gspca_dev *gspca_dev, __s32 val);
47 static int sd_getcontrast(struct gspca_dev *gspca_dev, __s32 *val);
48 static int sd_setcolors(struct gspca_dev *gspca_dev, __s32 val);
49 static int sd_getcolors(struct gspca_dev *gspca_dev, __s32 *val);
50 static int sd_setfreq(struct gspca_dev *gspca_dev, __s32 val);
51 static int sd_getfreq(struct gspca_dev *gspca_dev, __s32 *val);
53 static struct ctrl sd_ctrls[] = {
56 .id = V4L2_CID_BRIGHTNESS,
57 .type = V4L2_CTRL_TYPE_INTEGER,
58 .name = "Brightness",
59 .minimum = 0,
60 .maximum = 255,
61 .step = 1,
62 #define BRIGHTNESS_DEF 127
63 .default_value = BRIGHTNESS_DEF,
65 .set = sd_setbrightness,
66 .get = sd_getbrightness,
70 .id = V4L2_CID_CONTRAST,
71 .type = V4L2_CTRL_TYPE_INTEGER,
72 .name = "Contrast",
73 .minimum = 0,
74 .maximum = 255,
75 .step = 1,
76 #define CONTRAST_DEF 127
77 .default_value = CONTRAST_DEF,
79 .set = sd_setcontrast,
80 .get = sd_getcontrast,
84 .id = V4L2_CID_SATURATION,
85 .type = V4L2_CTRL_TYPE_INTEGER,
86 .name = "Color",
87 .minimum = 0,
88 .maximum = 255,
89 .step = 1,
90 #define COLOR_DEF 127
91 .default_value = COLOR_DEF,
93 .set = sd_setcolors,
94 .get = sd_getcolors,
98 .id = V4L2_CID_POWER_LINE_FREQUENCY,
99 .type = V4L2_CTRL_TYPE_MENU,
100 .name = "Light frequency filter",
101 .minimum = 1,
102 .maximum = 2, /* 0: 0, 1: 50Hz, 2:60Hz */
103 .step = 1,
104 #define FREQ_DEF 1
105 .default_value = FREQ_DEF,
107 .set = sd_setfreq,
108 .get = sd_getfreq,
112 static struct v4l2_pix_format vga_mode[] = {
113 {320, 240, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
114 .bytesperline = 320,
115 .sizeimage = 320 * 240 * 3 / 8 + 590,
116 .colorspace = V4L2_COLORSPACE_JPEG,
117 .priv = 1},
118 {640, 480, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
119 .bytesperline = 640,
120 .sizeimage = 640 * 480 * 3 / 8 + 590,
121 .colorspace = V4L2_COLORSPACE_JPEG,
122 .priv = 0},
125 /* -- read a register -- */
126 static int reg_r(struct gspca_dev *gspca_dev,
127 __u16 index)
129 struct usb_device *dev = gspca_dev->dev;
130 int ret;
132 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
133 0x00,
134 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
135 0x00,
136 index,
137 gspca_dev->usb_buf, 1,
138 500);
139 if (ret < 0) {
140 PDEBUG(D_ERR, "reg_r err %d", ret);
141 return ret;
143 return gspca_dev->usb_buf[0];
146 /* -- write a register -- */
147 static int reg_w(struct gspca_dev *gspca_dev,
148 __u16 index, __u16 value)
150 struct usb_device *dev = gspca_dev->dev;
151 int ret;
153 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
154 0x01,
155 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
156 value,
157 index,
158 NULL,
160 500);
161 if (ret < 0)
162 PDEBUG(D_ERR, "reg_w err %d", ret);
163 return ret;
166 /* -- get a bulk value (4 bytes) -- */
167 static int rcv_val(struct gspca_dev *gspca_dev,
168 int ads)
170 struct usb_device *dev = gspca_dev->dev;
171 int alen, ret;
173 reg_w(gspca_dev, 0x634, (ads >> 16) & 0xff);
174 reg_w(gspca_dev, 0x635, (ads >> 8) & 0xff);
175 reg_w(gspca_dev, 0x636, ads & 0xff);
176 reg_w(gspca_dev, 0x637, 0);
177 reg_w(gspca_dev, 0x638, 4); /* len & 0xff */
178 reg_w(gspca_dev, 0x639, 0); /* len >> 8 */
179 reg_w(gspca_dev, 0x63a, 0);
180 reg_w(gspca_dev, 0x63b, 0);
181 reg_w(gspca_dev, 0x630, 5);
182 ret = usb_bulk_msg(dev,
183 usb_rcvbulkpipe(dev, 5),
184 gspca_dev->usb_buf,
185 4, /* length */
186 &alen,
187 500); /* timeout in milliseconds */
188 return ret;
191 /* -- send a bulk value -- */
192 static int snd_val(struct gspca_dev *gspca_dev,
193 int ads,
194 unsigned int val)
196 struct usb_device *dev = gspca_dev->dev;
197 int alen, ret;
198 __u8 seq = 0;
200 if (ads == 0x003f08) {
201 ret = reg_r(gspca_dev, 0x0704);
202 if (ret < 0)
203 goto ko;
204 ret = reg_r(gspca_dev, 0x0705);
205 if (ret < 0)
206 goto ko;
207 seq = ret; /* keep the sequence number */
208 ret = reg_r(gspca_dev, 0x0650);
209 if (ret < 0)
210 goto ko;
211 reg_w(gspca_dev, 0x654, seq);
212 } else {
213 reg_w(gspca_dev, 0x654, (ads >> 16) & 0xff);
215 reg_w(gspca_dev, 0x655, (ads >> 8) & 0xff);
216 reg_w(gspca_dev, 0x656, ads & 0xff);
217 reg_w(gspca_dev, 0x657, 0);
218 reg_w(gspca_dev, 0x658, 0x04); /* size */
219 reg_w(gspca_dev, 0x659, 0);
220 reg_w(gspca_dev, 0x65a, 0);
221 reg_w(gspca_dev, 0x65b, 0);
222 reg_w(gspca_dev, 0x650, 5);
223 gspca_dev->usb_buf[0] = val >> 24;
224 gspca_dev->usb_buf[1] = val >> 16;
225 gspca_dev->usb_buf[2] = val >> 8;
226 gspca_dev->usb_buf[3] = val;
227 ret = usb_bulk_msg(dev,
228 usb_sndbulkpipe(dev, 6),
229 gspca_dev->usb_buf,
231 &alen,
232 500); /* timeout in milliseconds */
233 if (ret < 0)
234 goto ko;
235 if (ads == 0x003f08) {
236 seq += 4;
237 seq &= 0x3f;
238 reg_w(gspca_dev, 0x705, seq);
240 return ret;
242 PDEBUG(D_ERR, "snd_val err %d", ret);
243 return ret;
246 /* set a camera parameter */
247 static int set_par(struct gspca_dev *gspca_dev,
248 int parval)
250 return snd_val(gspca_dev, 0x003f08, parval);
253 static void setbrightness(struct gspca_dev *gspca_dev)
255 struct sd *sd = (struct sd *) gspca_dev;
256 int parval;
258 parval = 0x06000000 /* whiteness */
259 + (sd->brightness << 16);
260 set_par(gspca_dev, parval);
263 static void setcontrast(struct gspca_dev *gspca_dev)
265 struct sd *sd = (struct sd *) gspca_dev;
266 int parval;
268 parval = 0x07000000 /* contrast */
269 + (sd->contrast << 16);
270 set_par(gspca_dev, parval);
273 static void setcolors(struct gspca_dev *gspca_dev)
275 struct sd *sd = (struct sd *) gspca_dev;
276 int parval;
278 parval = 0x08000000 /* saturation */
279 + (sd->colors << 16);
280 set_par(gspca_dev, parval);
283 static void setfreq(struct gspca_dev *gspca_dev)
285 struct sd *sd = (struct sd *) gspca_dev;
287 set_par(gspca_dev, sd->lightfreq == 1
288 ? 0x33640000 /* 50 Hz */
289 : 0x33780000); /* 60 Hz */
292 /* this function is called at probe time */
293 static int sd_config(struct gspca_dev *gspca_dev,
294 const struct usb_device_id *id)
296 struct sd *sd = (struct sd *) gspca_dev;
297 struct cam *cam = &gspca_dev->cam;
299 cam->epaddr = 0x02;
300 gspca_dev->cam.cam_mode = vga_mode;
301 gspca_dev->cam.nmodes = ARRAY_SIZE(vga_mode);
302 sd->brightness = BRIGHTNESS_DEF;
303 sd->contrast = CONTRAST_DEF;
304 sd->colors = COLOR_DEF;
305 sd->lightfreq = FREQ_DEF;
306 return 0;
309 /* this function is called at probe and resume time */
310 static int sd_init(struct gspca_dev *gspca_dev)
312 int ret;
314 /* check if the device responds */
315 usb_set_interface(gspca_dev->dev, gspca_dev->iface, 1);
316 ret = reg_r(gspca_dev, 0x0740);
317 if (ret < 0)
318 return ret;
319 if (ret != 0xff) {
320 PDEBUG(D_ERR|D_STREAM, "init reg: 0x%02x", ret);
321 return -1;
323 return 0;
326 /* -- start the camera -- */
327 static int sd_start(struct gspca_dev *gspca_dev)
329 int ret, value;
331 /* work on alternate 1 */
332 usb_set_interface(gspca_dev->dev, gspca_dev->iface, 1);
334 set_par(gspca_dev, 0x10000000);
335 set_par(gspca_dev, 0x00000000);
336 set_par(gspca_dev, 0x8002e001);
337 set_par(gspca_dev, 0x14000000);
338 if (gspca_dev->width > 320)
339 value = 0x8002e001; /* 640x480 */
340 else
341 value = 0x4001f000; /* 320x240 */
342 set_par(gspca_dev, value);
343 ret = usb_set_interface(gspca_dev->dev,
344 gspca_dev->iface,
345 gspca_dev->alt);
346 if (ret < 0) {
347 PDEBUG(D_ERR|D_STREAM, "set intf %d %d failed",
348 gspca_dev->iface, gspca_dev->alt);
349 goto out;
351 ret = reg_r(gspca_dev, 0x0630);
352 if (ret < 0)
353 goto out;
354 rcv_val(gspca_dev, 0x000020); /* << (value ff ff ff ff) */
355 ret = reg_r(gspca_dev, 0x0650);
356 if (ret < 0)
357 goto out;
358 snd_val(gspca_dev, 0x000020, 0xffffffff);
359 reg_w(gspca_dev, 0x0620, 0);
360 reg_w(gspca_dev, 0x0630, 0);
361 reg_w(gspca_dev, 0x0640, 0);
362 reg_w(gspca_dev, 0x0650, 0);
363 reg_w(gspca_dev, 0x0660, 0);
364 setbrightness(gspca_dev); /* whiteness */
365 setcontrast(gspca_dev); /* contrast */
366 setcolors(gspca_dev); /* saturation */
367 set_par(gspca_dev, 0x09800000); /* Red ? */
368 set_par(gspca_dev, 0x0a800000); /* Green ? */
369 set_par(gspca_dev, 0x0b800000); /* Blue ? */
370 set_par(gspca_dev, 0x0d030000); /* Gamma ? */
371 setfreq(gspca_dev); /* light frequency */
373 /* start the video flow */
374 set_par(gspca_dev, 0x01000000);
375 set_par(gspca_dev, 0x01000000);
376 PDEBUG(D_STREAM, "camera started alt: 0x%02x", gspca_dev->alt);
377 return 0;
378 out:
379 PDEBUG(D_ERR|D_STREAM, "camera start err %d", ret);
380 return ret;
383 static void sd_stopN(struct gspca_dev *gspca_dev)
385 struct usb_device *dev = gspca_dev->dev;
387 set_par(gspca_dev, 0x02000000);
388 set_par(gspca_dev, 0x02000000);
389 usb_set_interface(dev, gspca_dev->iface, 1);
390 reg_r(gspca_dev, 0x0630);
391 rcv_val(gspca_dev, 0x000020); /* << (value ff ff ff ff) */
392 reg_r(gspca_dev, 0x0650);
393 snd_val(gspca_dev, 0x000020, 0xffffffff);
394 reg_w(gspca_dev, 0x0620, 0);
395 reg_w(gspca_dev, 0x0630, 0);
396 reg_w(gspca_dev, 0x0640, 0);
397 reg_w(gspca_dev, 0x0650, 0);
398 reg_w(gspca_dev, 0x0660, 0);
399 PDEBUG(D_STREAM, "camera stopped");
402 static void sd_pkt_scan(struct gspca_dev *gspca_dev,
403 struct gspca_frame *frame, /* target */
404 __u8 *data, /* isoc packet */
405 int len) /* iso packet length */
407 static unsigned char ffd9[] = {0xff, 0xd9};
409 /* a frame starts with:
410 * - 0xff 0xfe
411 * - 0x08 0x00 - length (little endian ?!)
412 * - 4 bytes = size of whole frame (BE - including header)
413 * - 0x00 0x0c
414 * - 0xff 0xd8
415 * - .. JPEG image with escape sequences (ff 00)
416 * (without ending - ff d9)
418 if (data[0] == 0xff && data[1] == 0xfe) {
419 frame = gspca_frame_add(gspca_dev, LAST_PACKET, frame,
420 ffd9, 2);
422 /* put the JPEG 411 header */
423 jpeg_put_header(gspca_dev, frame, sd_quant, 0x22);
425 /* beginning of the frame */
426 #define STKHDRSZ 12
427 gspca_frame_add(gspca_dev, INTER_PACKET, frame,
428 data + STKHDRSZ, len - STKHDRSZ);
429 #undef STKHDRSZ
430 return;
432 gspca_frame_add(gspca_dev, INTER_PACKET, frame, data, len);
435 static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val)
437 struct sd *sd = (struct sd *) gspca_dev;
439 sd->brightness = val;
440 if (gspca_dev->streaming)
441 setbrightness(gspca_dev);
442 return 0;
445 static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val)
447 struct sd *sd = (struct sd *) gspca_dev;
449 *val = sd->brightness;
450 return 0;
453 static int sd_setcontrast(struct gspca_dev *gspca_dev, __s32 val)
455 struct sd *sd = (struct sd *) gspca_dev;
457 sd->contrast = val;
458 if (gspca_dev->streaming)
459 setcontrast(gspca_dev);
460 return 0;
463 static int sd_getcontrast(struct gspca_dev *gspca_dev, __s32 *val)
465 struct sd *sd = (struct sd *) gspca_dev;
467 *val = sd->contrast;
468 return 0;
471 static int sd_setcolors(struct gspca_dev *gspca_dev, __s32 val)
473 struct sd *sd = (struct sd *) gspca_dev;
475 sd->colors = val;
476 if (gspca_dev->streaming)
477 setcolors(gspca_dev);
478 return 0;
481 static int sd_getcolors(struct gspca_dev *gspca_dev, __s32 *val)
483 struct sd *sd = (struct sd *) gspca_dev;
485 *val = sd->colors;
486 return 0;
489 static int sd_setfreq(struct gspca_dev *gspca_dev, __s32 val)
491 struct sd *sd = (struct sd *) gspca_dev;
493 sd->lightfreq = val;
494 if (gspca_dev->streaming)
495 setfreq(gspca_dev);
496 return 0;
499 static int sd_getfreq(struct gspca_dev *gspca_dev, __s32 *val)
501 struct sd *sd = (struct sd *) gspca_dev;
503 *val = sd->lightfreq;
504 return 0;
507 static int sd_querymenu(struct gspca_dev *gspca_dev,
508 struct v4l2_querymenu *menu)
510 switch (menu->id) {
511 case V4L2_CID_POWER_LINE_FREQUENCY:
512 switch (menu->index) {
513 case 1: /* V4L2_CID_POWER_LINE_FREQUENCY_50HZ */
514 strcpy((char *) menu->name, "50 Hz");
515 return 0;
516 case 2: /* V4L2_CID_POWER_LINE_FREQUENCY_60HZ */
517 strcpy((char *) menu->name, "60 Hz");
518 return 0;
520 break;
522 return -EINVAL;
525 /* sub-driver description */
526 static const struct sd_desc sd_desc = {
527 .name = MODULE_NAME,
528 .ctrls = sd_ctrls,
529 .nctrls = ARRAY_SIZE(sd_ctrls),
530 .config = sd_config,
531 .init = sd_init,
532 .start = sd_start,
533 .stopN = sd_stopN,
534 .pkt_scan = sd_pkt_scan,
535 .querymenu = sd_querymenu,
538 /* -- module initialisation -- */
539 static const __devinitdata struct usb_device_id device_table[] = {
540 {USB_DEVICE(0x05e1, 0x0893)},
543 MODULE_DEVICE_TABLE(usb, device_table);
545 /* -- device connect -- */
546 static int sd_probe(struct usb_interface *intf,
547 const struct usb_device_id *id)
549 return gspca_dev_probe(intf, id, &sd_desc, sizeof(struct sd),
550 THIS_MODULE);
553 static struct usb_driver sd_driver = {
554 .name = MODULE_NAME,
555 .id_table = device_table,
556 .probe = sd_probe,
557 .disconnect = gspca_disconnect,
558 #ifdef CONFIG_PM
559 .suspend = gspca_suspend,
560 .resume = gspca_resume,
561 #endif
564 /* -- module insert / remove -- */
565 static int __init sd_mod_init(void)
567 if (usb_register(&sd_driver) < 0)
568 return -1;
569 info("registered");
570 return 0;
572 static void __exit sd_mod_exit(void)
574 usb_deregister(&sd_driver);
575 info("deregistered");
578 module_init(sd_mod_init);
579 module_exit(sd_mod_exit);
581 module_param_named(quant, sd_quant, int, 0644);
582 MODULE_PARM_DESC(quant, "Quantization index (0..8)");