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
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"
26 #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 7)
27 static const char version[] = "2.1.7";
29 MODULE_AUTHOR("Jean-Francois Moine <http://moinejf.free.fr>");
30 MODULE_DESCRIPTION("Syntek DV4000 (STK014) USB Camera Driver");
31 MODULE_LICENSE("GPL");
33 /* specific webcam descriptor */
35 struct gspca_dev gspca_dev; /* !! must be the first item */
37 unsigned char brightness;
38 unsigned char contrast;
40 unsigned char lightfreq;
43 /* global parameters */
44 static int sd_quant = 7; /* <= 4 KO - 7: good (enough!) */
46 /* V4L2 controls supported by the driver */
47 static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val);
48 static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val);
49 static int sd_setcontrast(struct gspca_dev *gspca_dev, __s32 val);
50 static int sd_getcontrast(struct gspca_dev *gspca_dev, __s32 *val);
51 static int sd_setcolors(struct gspca_dev *gspca_dev, __s32 val);
52 static int sd_getcolors(struct gspca_dev *gspca_dev, __s32 *val);
53 static int sd_setfreq(struct gspca_dev *gspca_dev, __s32 val);
54 static int sd_getfreq(struct gspca_dev *gspca_dev, __s32 *val);
56 static struct ctrl sd_ctrls[] = {
59 .id = V4L2_CID_BRIGHTNESS,
60 .type = V4L2_CTRL_TYPE_INTEGER,
65 #define BRIGHTNESS_DEF 127
66 .default_value = BRIGHTNESS_DEF,
68 .set = sd_setbrightness,
69 .get = sd_getbrightness,
73 .id = V4L2_CID_CONTRAST,
74 .type = V4L2_CTRL_TYPE_INTEGER,
79 #define CONTRAST_DEF 127
80 .default_value = CONTRAST_DEF,
82 .set = sd_setcontrast,
83 .get = sd_getcontrast,
87 .id = V4L2_CID_SATURATION,
88 .type = V4L2_CTRL_TYPE_INTEGER,
94 .default_value = COLOR_DEF,
101 .id = V4L2_CID_POWER_LINE_FREQUENCY,
102 .type = V4L2_CTRL_TYPE_MENU,
103 .name = "Light frequency filter",
105 .maximum = 2, /* 0: 0, 1: 50Hz, 2:60Hz */
108 .default_value = FREQ_DEF,
115 static struct v4l2_pix_format vga_mode[] = {
116 {320, 240, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
118 .sizeimage = 320 * 240 * 3 / 8 + 590,
119 .colorspace = V4L2_COLORSPACE_JPEG,
121 {640, 480, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
123 .sizeimage = 640 * 480 * 3 / 8 + 590,
124 .colorspace = V4L2_COLORSPACE_JPEG,
128 /* -- read a register -- */
129 static int reg_r(struct gspca_dev *gspca_dev,
132 struct usb_device *dev = gspca_dev->dev;
135 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
137 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
140 gspca_dev->usb_buf, 1,
143 PDEBUG(D_ERR, "reg_r err %d", ret);
146 return gspca_dev->usb_buf[0];
149 /* -- write a register -- */
150 static int reg_w(struct gspca_dev *gspca_dev,
151 __u16 index, __u16 value)
153 struct usb_device *dev = gspca_dev->dev;
156 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
158 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
165 PDEBUG(D_ERR, "reg_w err %d", ret);
169 /* -- get a bulk value (4 bytes) -- */
170 static int rcv_val(struct gspca_dev *gspca_dev,
173 struct usb_device *dev = gspca_dev->dev;
176 reg_w(gspca_dev, 0x634, (ads >> 16) & 0xff);
177 reg_w(gspca_dev, 0x635, (ads >> 8) & 0xff);
178 reg_w(gspca_dev, 0x636, ads & 0xff);
179 reg_w(gspca_dev, 0x637, 0);
180 reg_w(gspca_dev, 0x638, 4); /* len & 0xff */
181 reg_w(gspca_dev, 0x639, 0); /* len >> 8 */
182 reg_w(gspca_dev, 0x63a, 0);
183 reg_w(gspca_dev, 0x63b, 0);
184 reg_w(gspca_dev, 0x630, 5);
185 ret = usb_bulk_msg(dev,
186 usb_rcvbulkpipe(dev, 5),
190 500); /* timeout in milliseconds */
194 /* -- send a bulk value -- */
195 static int snd_val(struct gspca_dev *gspca_dev,
199 struct usb_device *dev = gspca_dev->dev;
203 if (ads == 0x003f08) {
204 ret = reg_r(gspca_dev, 0x0704);
207 ret = reg_r(gspca_dev, 0x0705);
210 seq = ret; /* keep the sequence number */
211 ret = reg_r(gspca_dev, 0x0650);
214 reg_w(gspca_dev, 0x654, seq);
216 reg_w(gspca_dev, 0x654, (ads >> 16) & 0xff);
218 reg_w(gspca_dev, 0x655, (ads >> 8) & 0xff);
219 reg_w(gspca_dev, 0x656, ads & 0xff);
220 reg_w(gspca_dev, 0x657, 0);
221 reg_w(gspca_dev, 0x658, 0x04); /* size */
222 reg_w(gspca_dev, 0x659, 0);
223 reg_w(gspca_dev, 0x65a, 0);
224 reg_w(gspca_dev, 0x65b, 0);
225 reg_w(gspca_dev, 0x650, 5);
226 gspca_dev->usb_buf[0] = val >> 24;
227 gspca_dev->usb_buf[1] = val >> 16;
228 gspca_dev->usb_buf[2] = val >> 8;
229 gspca_dev->usb_buf[3] = val;
230 ret = usb_bulk_msg(dev,
231 usb_sndbulkpipe(dev, 6),
235 500); /* timeout in milliseconds */
238 if (ads == 0x003f08) {
241 reg_w(gspca_dev, 0x705, seq);
245 PDEBUG(D_ERR, "snd_val err %d", ret);
249 /* set a camera parameter */
250 static int set_par(struct gspca_dev *gspca_dev,
253 return snd_val(gspca_dev, 0x003f08, parval);
256 static void setbrightness(struct gspca_dev *gspca_dev)
258 struct sd *sd = (struct sd *) gspca_dev;
261 parval = 0x06000000 /* whiteness */
262 + (sd->brightness << 16);
263 set_par(gspca_dev, parval);
266 static void setcontrast(struct gspca_dev *gspca_dev)
268 struct sd *sd = (struct sd *) gspca_dev;
271 parval = 0x07000000 /* contrast */
272 + (sd->contrast << 16);
273 set_par(gspca_dev, parval);
276 static void setcolors(struct gspca_dev *gspca_dev)
278 struct sd *sd = (struct sd *) gspca_dev;
281 parval = 0x08000000 /* saturation */
282 + (sd->colors << 16);
283 set_par(gspca_dev, parval);
286 static void setfreq(struct gspca_dev *gspca_dev)
288 struct sd *sd = (struct sd *) gspca_dev;
290 set_par(gspca_dev, sd->lightfreq == 1
291 ? 0x33640000 /* 50 Hz */
292 : 0x33780000); /* 60 Hz */
295 /* this function is called at probe time */
296 static int sd_config(struct gspca_dev *gspca_dev,
297 const struct usb_device_id *id)
299 struct sd *sd = (struct sd *) gspca_dev;
300 struct cam *cam = &gspca_dev->cam;
302 cam->dev_name = (char *) id->driver_info;
304 gspca_dev->cam.cam_mode = vga_mode;
305 gspca_dev->cam.nmodes = ARRAY_SIZE(vga_mode);
306 sd->brightness = BRIGHTNESS_DEF;
307 sd->contrast = CONTRAST_DEF;
308 sd->colors = COLOR_DEF;
309 sd->lightfreq = FREQ_DEF;
313 /* this function is called at open time */
314 static int sd_open(struct gspca_dev *gspca_dev)
318 /* check if the device responds */
319 usb_set_interface(gspca_dev->dev, gspca_dev->iface, 1);
320 ret = reg_r(gspca_dev, 0x0740);
324 PDEBUG(D_ERR|D_STREAM, "init reg: 0x%02x", ret);
330 /* -- start the camera -- */
331 static void sd_start(struct gspca_dev *gspca_dev)
335 /* work on alternate 1 */
336 usb_set_interface(gspca_dev->dev, gspca_dev->iface, 1);
338 set_par(gspca_dev, 0x10000000);
339 set_par(gspca_dev, 0x00000000);
340 set_par(gspca_dev, 0x8002e001);
341 set_par(gspca_dev, 0x14000000);
342 if (gspca_dev->width > 320)
343 value = 0x8002e001; /* 640x480 */
345 value = 0x4001f000; /* 320x240 */
346 set_par(gspca_dev, value);
347 ret = usb_set_interface(gspca_dev->dev,
351 PDEBUG(D_ERR|D_STREAM, "set intf %d %d failed",
352 gspca_dev->iface, gspca_dev->alt);
355 ret = reg_r(gspca_dev, 0x0630);
358 rcv_val(gspca_dev, 0x000020); /* << (value ff ff ff ff) */
359 ret = reg_r(gspca_dev, 0x0650);
362 snd_val(gspca_dev, 0x000020, 0xffffffff);
363 reg_w(gspca_dev, 0x0620, 0);
364 reg_w(gspca_dev, 0x0630, 0);
365 reg_w(gspca_dev, 0x0640, 0);
366 reg_w(gspca_dev, 0x0650, 0);
367 reg_w(gspca_dev, 0x0660, 0);
368 setbrightness(gspca_dev); /* whiteness */
369 setcontrast(gspca_dev); /* contrast */
370 setcolors(gspca_dev); /* saturation */
371 set_par(gspca_dev, 0x09800000); /* Red ? */
372 set_par(gspca_dev, 0x0a800000); /* Green ? */
373 set_par(gspca_dev, 0x0b800000); /* Blue ? */
374 set_par(gspca_dev, 0x0d030000); /* Gamma ? */
375 setfreq(gspca_dev); /* light frequency */
377 /* start the video flow */
378 set_par(gspca_dev, 0x01000000);
379 set_par(gspca_dev, 0x01000000);
380 PDEBUG(D_STREAM, "camera started alt: 0x%02x", gspca_dev->alt);
383 PDEBUG(D_ERR|D_STREAM, "camera start err %d", ret);
386 static void sd_stopN(struct gspca_dev *gspca_dev)
388 struct usb_device *dev = gspca_dev->dev;
390 set_par(gspca_dev, 0x02000000);
391 set_par(gspca_dev, 0x02000000);
392 usb_set_interface(dev, gspca_dev->iface, 1);
393 reg_r(gspca_dev, 0x0630);
394 rcv_val(gspca_dev, 0x000020); /* << (value ff ff ff ff) */
395 reg_r(gspca_dev, 0x0650);
396 snd_val(gspca_dev, 0x000020, 0xffffffff);
397 reg_w(gspca_dev, 0x0620, 0);
398 reg_w(gspca_dev, 0x0630, 0);
399 reg_w(gspca_dev, 0x0640, 0);
400 reg_w(gspca_dev, 0x0650, 0);
401 reg_w(gspca_dev, 0x0660, 0);
402 PDEBUG(D_STREAM, "camera stopped");
405 static void sd_stop0(struct gspca_dev *gspca_dev)
409 static void sd_close(struct gspca_dev *gspca_dev)
413 static void sd_pkt_scan(struct gspca_dev *gspca_dev,
414 struct gspca_frame *frame, /* target */
415 __u8 *data, /* isoc packet */
416 int len) /* iso packet length */
418 static unsigned char ffd9[] = {0xff, 0xd9};
420 /* a frame starts with:
422 * - 0x08 0x00 - length (little endian ?!)
423 * - 4 bytes = size of whole frame (BE - including header)
426 * - .. JPEG image with escape sequences (ff 00)
427 * (without ending - ff d9)
429 if (data[0] == 0xff && data[1] == 0xfe) {
430 frame = gspca_frame_add(gspca_dev, LAST_PACKET, frame,
433 /* put the JPEG 411 header */
434 jpeg_put_header(gspca_dev, frame, sd_quant, 0x22);
436 /* beginning of the frame */
438 gspca_frame_add(gspca_dev, INTER_PACKET, frame,
439 data + STKHDRSZ, len - STKHDRSZ);
443 gspca_frame_add(gspca_dev, INTER_PACKET, frame, data, len);
446 static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val)
448 struct sd *sd = (struct sd *) gspca_dev;
450 sd->brightness = val;
451 if (gspca_dev->streaming)
452 setbrightness(gspca_dev);
456 static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val)
458 struct sd *sd = (struct sd *) gspca_dev;
460 *val = sd->brightness;
464 static int sd_setcontrast(struct gspca_dev *gspca_dev, __s32 val)
466 struct sd *sd = (struct sd *) gspca_dev;
469 if (gspca_dev->streaming)
470 setcontrast(gspca_dev);
474 static int sd_getcontrast(struct gspca_dev *gspca_dev, __s32 *val)
476 struct sd *sd = (struct sd *) gspca_dev;
482 static int sd_setcolors(struct gspca_dev *gspca_dev, __s32 val)
484 struct sd *sd = (struct sd *) gspca_dev;
487 if (gspca_dev->streaming)
488 setcolors(gspca_dev);
492 static int sd_getcolors(struct gspca_dev *gspca_dev, __s32 *val)
494 struct sd *sd = (struct sd *) gspca_dev;
500 static int sd_setfreq(struct gspca_dev *gspca_dev, __s32 val)
502 struct sd *sd = (struct sd *) gspca_dev;
505 if (gspca_dev->streaming)
510 static int sd_getfreq(struct gspca_dev *gspca_dev, __s32 *val)
512 struct sd *sd = (struct sd *) gspca_dev;
514 *val = sd->lightfreq;
518 static int sd_querymenu(struct gspca_dev *gspca_dev,
519 struct v4l2_querymenu *menu)
522 case V4L2_CID_POWER_LINE_FREQUENCY:
523 switch (menu->index) {
524 case 1: /* V4L2_CID_POWER_LINE_FREQUENCY_50HZ */
525 strcpy((char *) menu->name, "50 Hz");
527 case 2: /* V4L2_CID_POWER_LINE_FREQUENCY_60HZ */
528 strcpy((char *) menu->name, "60 Hz");
536 /* sub-driver description */
537 static const struct sd_desc sd_desc = {
540 .nctrls = ARRAY_SIZE(sd_ctrls),
547 .pkt_scan = sd_pkt_scan,
548 .querymenu = sd_querymenu,
551 /* -- module initialisation -- */
552 #define DVNM(name) .driver_info = (kernel_ulong_t) name
553 static const __devinitdata struct usb_device_id device_table[] = {
554 {USB_DEVICE(0x05e1, 0x0893), DVNM("Syntek DV4000")},
557 MODULE_DEVICE_TABLE(usb, device_table);
559 /* -- device connect -- */
560 static int sd_probe(struct usb_interface *intf,
561 const struct usb_device_id *id)
563 return gspca_dev_probe(intf, id, &sd_desc, sizeof(struct sd),
567 static struct usb_driver sd_driver = {
569 .id_table = device_table,
571 .disconnect = gspca_disconnect,
574 /* -- module insert / remove -- */
575 static int __init sd_mod_init(void)
577 if (usb_register(&sd_driver) < 0)
579 info("v%s registered", version);
582 static void __exit sd_mod_exit(void)
584 usb_deregister(&sd_driver);
585 info("deregistered");
588 module_init(sd_mod_init);
589 module_exit(sd_mod_exit);
591 module_param_named(quant, sd_quant, int, 0644);
592 MODULE_PARM_DESC(quant, "Quantization index (0..8)");