2 * Sunplus spca561 subdriver
4 * Copyright (C) 2004 Michel Xhaard mxhaard@magic.fr
6 * V4L2 by Jean-Francois Moine <http://moinejf.free.fr>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #define MODULE_NAME "spca561"
27 MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>");
28 MODULE_DESCRIPTION("GSPCA/SPCA561 USB Camera Driver");
29 MODULE_LICENSE("GPL");
31 /* specific webcam descriptor */
33 struct gspca_dev gspca_dev; /* !! must be the first item */
35 unsigned short contrast;
41 #define AG_CNT_START 13
44 /* V4L2 controls supported by the driver */
45 static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val);
46 static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val);
47 static int sd_setcontrast(struct gspca_dev *gspca_dev, __s32 val);
48 static int sd_getcontrast(struct gspca_dev *gspca_dev, __s32 *val);
49 static int sd_setautogain(struct gspca_dev *gspca_dev, __s32 val);
50 static int sd_getautogain(struct gspca_dev *gspca_dev, __s32 *val);
52 static struct ctrl sd_ctrls[] = {
53 #define SD_BRIGHTNESS 0
56 .id = V4L2_CID_BRIGHTNESS,
57 .type = V4L2_CTRL_TYPE_INTEGER,
64 .set = sd_setbrightness,
65 .get = sd_getbrightness,
70 .id = V4L2_CID_CONTRAST,
71 .type = V4L2_CTRL_TYPE_INTEGER,
76 .default_value = 0x2000,
78 .set = sd_setcontrast,
79 .get = sd_getcontrast,
84 .id = V4L2_CID_AUTOGAIN,
85 .type = V4L2_CTRL_TYPE_BOOLEAN,
92 .set = sd_setautogain,
93 .get = sd_getautogain,
97 static struct v4l2_pix_format sif_mode[] = {
98 {160, 120, V4L2_PIX_FMT_SGBRG8, V4L2_FIELD_NONE,
100 .sizeimage = 160 * 120,
101 .colorspace = V4L2_COLORSPACE_SRGB,
103 {176, 144, V4L2_PIX_FMT_SGBRG8, V4L2_FIELD_NONE,
105 .sizeimage = 176 * 144,
106 .colorspace = V4L2_COLORSPACE_SRGB,
108 {320, 240, V4L2_PIX_FMT_SPCA561, V4L2_FIELD_NONE,
110 .sizeimage = 320 * 240 * 4 / 8,
111 .colorspace = V4L2_COLORSPACE_SRGB,
113 {352, 288, V4L2_PIX_FMT_SPCA561, V4L2_FIELD_NONE,
115 .sizeimage = 352 * 288 * 4 / 8,
116 .colorspace = V4L2_COLORSPACE_SRGB,
121 * Initialization data
122 * I'm not very sure how to split initialization from open data
123 * chunks. For now, we'll consider everything as initialization
125 /* Frame packet header offsets for the spca561 */
126 #define SPCA561_OFFSET_SNAP 1
127 #define SPCA561_OFFSET_TYPE 2
128 #define SPCA561_OFFSET_COMPRESS 3
129 #define SPCA561_OFFSET_FRAMSEQ 4
130 #define SPCA561_OFFSET_GPIO 5
131 #define SPCA561_OFFSET_USBBUFF 6
132 #define SPCA561_OFFSET_WIN2GRAVE 7
133 #define SPCA561_OFFSET_WIN2RAVE 8
134 #define SPCA561_OFFSET_WIN2BAVE 9
135 #define SPCA561_OFFSET_WIN2GBAVE 10
136 #define SPCA561_OFFSET_WIN1GRAVE 11
137 #define SPCA561_OFFSET_WIN1RAVE 12
138 #define SPCA561_OFFSET_WIN1BAVE 13
139 #define SPCA561_OFFSET_WIN1GBAVE 14
140 #define SPCA561_OFFSET_FREQ 15
141 #define SPCA561_OFFSET_VSYNC 16
142 #define SPCA561_OFFSET_DATA 1
143 #define SPCA561_INDEX_I2C_BASE 0x8800
144 #define SPCA561_SNAPBIT 0x20
145 #define SPCA561_SNAPCTRL 0x40
151 static void reg_w_val(struct usb_device *dev, __u16 index, __u16 value)
155 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
157 USB_TYPE_VENDOR | USB_RECIP_DEVICE,
158 value, index, NULL, 0, 500);
159 PDEBUG(D_USBO, "reg write: 0x%02x:0x%02x", index, value);
161 PDEBUG(D_ERR, "reg write: error %d", ret);
164 static void write_vector(struct gspca_dev *gspca_dev,
165 const __u16 data[][2])
167 struct usb_device *dev = gspca_dev->dev;
171 while (data[i][1] != 0) {
172 reg_w_val(dev, data[i][1], data[i][0]);
177 /* read 'len' bytes to gspca_dev->usb_buf */
178 static void reg_r(struct gspca_dev *gspca_dev,
179 __u16 index, __u16 length)
181 usb_control_msg(gspca_dev->dev,
182 usb_rcvctrlpipe(gspca_dev->dev, 0),
184 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
186 index, gspca_dev->usb_buf, length, 500);
189 static void reg_w_buf(struct gspca_dev *gspca_dev,
190 __u16 index, const __u8 *buffer, __u16 len)
192 memcpy(gspca_dev->usb_buf, buffer, len);
193 usb_control_msg(gspca_dev->dev,
194 usb_sndctrlpipe(gspca_dev->dev, 0),
196 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
198 index, gspca_dev->usb_buf, len, 500);
201 static void i2c_init(struct gspca_dev *gspca_dev, __u8 mode)
203 reg_w_val(gspca_dev->dev, 0x92, 0x8804);
204 reg_w_val(gspca_dev->dev, mode, 0x8802);
207 static void i2c_write(struct gspca_dev *gspca_dev, __u16 valeur, __u16 reg)
214 DataHight = valeur >> 8;
215 reg_w_val(gspca_dev->dev, reg, 0x8801);
216 reg_w_val(gspca_dev->dev, DataLow, 0x8805);
217 reg_w_val(gspca_dev->dev, DataHight, 0x8800);
219 reg_r(gspca_dev, 0x8803, 1);
220 if (!gspca_dev->usb_buf[0])
225 static int i2c_read(struct gspca_dev *gspca_dev, __u16 reg, __u8 mode)
231 reg_w_val(gspca_dev->dev, 0x92, 0x8804);
232 reg_w_val(gspca_dev->dev, reg, 0x8801);
233 reg_w_val(gspca_dev->dev, (mode | 0x01), 0x8802);
235 reg_r(gspca_dev, 0x8803, 1);
236 if (!gspca_dev->usb_buf)
241 reg_r(gspca_dev, 0x8800, 1);
242 value = gspca_dev->usb_buf[0];
243 reg_r(gspca_dev, 0x8805, 1);
244 vallsb = gspca_dev->usb_buf[0];
245 return ((int) value << 8) | vallsb;
248 static const __u16 spca561_init_data[][2] = {
249 {0x0000, 0x8114}, /* Software GPIO output data */
250 {0x0001, 0x8114}, /* Software GPIO output data */
251 {0x0000, 0x8112}, /* Some kind of reset */
252 {0x0003, 0x8701}, /* PCLK clock delay adjustment */
253 {0x0001, 0x8703}, /* HSYNC from cmos inverted */
254 {0x0011, 0x8118}, /* Enable and conf sensor */
255 {0x0001, 0x8118}, /* Conf sensor */
256 {0x0092, 0x8804}, /* I know nothing about these */
257 {0x0010, 0x8802}, /* 0x88xx registers, so I won't */
259 {0x000d, 0x8805}, /* sensor default setting */
260 {0x0001, 0x8801}, /* 1 <- 0x0d */
263 {0x0002, 0x8801}, /* 2 <- 0x18 */
266 {0x0004, 0x8801}, /* 4 <- 0x01 0x65 */
269 {0x0005, 0x8801}, /* 5 <- 0x21 */
272 {0x0007, 0x8801}, /* 7 <- 0xaa */
275 {0x0020, 0x8801}, /* 0x20 <- 0x15 0x04 */
278 {0x0039, 0x8801}, /* 0x39 <- 0x02 */
281 {0x0035, 0x8801}, /* 0x35 <- 0x10 */
284 {0x0009, 0x8801}, /* 0x09 <- 0x10 0x49 */
287 {0x0028, 0x8801}, /* 0x28 <- 0x0b */
290 {0x003b, 0x8801}, /* 0x3b <- 0x0f */
293 {0x003c, 0x8801}, /* 0x3c <- 0x00 */
296 {0x0018, 0x8601}, /* Pixel/line selection for color separation */
297 {0x0000, 0x8602}, /* Optical black level for user setting */
298 {0x0060, 0x8604}, /* Optical black horizontal offset */
299 {0x0002, 0x8605}, /* Optical black vertical offset */
300 {0x0000, 0x8603}, /* Non-automatic optical black level */
301 {0x0002, 0x865b}, /* Horizontal offset for valid pixels */
302 {0x0000, 0x865f}, /* Vertical valid pixels window (x2) */
303 {0x00b0, 0x865d}, /* Horizontal valid pixels window (x2) */
304 {0x0090, 0x865e}, /* Vertical valid lines window (x2) */
305 {0x00e0, 0x8406}, /* Memory buffer threshold */
306 {0x0000, 0x8660}, /* Compensation memory stuff */
307 {0x0002, 0x8201}, /* Output address for r/w serial EEPROM */
308 {0x0008, 0x8200}, /* Clear valid bit for serial EEPROM */
309 {0x0001, 0x8200}, /* OprMode to be executed by hardware */
310 {0x0007, 0x8201}, /* Output address for r/w serial EEPROM */
311 {0x0008, 0x8200}, /* Clear valid bit for serial EEPROM */
312 {0x0001, 0x8200}, /* OprMode to be executed by hardware */
313 {0x0010, 0x8660}, /* Compensation memory stuff */
314 {0x0018, 0x8660}, /* Compensation memory stuff */
316 {0x0004, 0x8611}, /* R offset for white balance */
317 {0x0004, 0x8612}, /* Gr offset for white balance */
318 {0x0007, 0x8613}, /* B offset for white balance */
319 {0x0000, 0x8614}, /* Gb offset for white balance */
320 {0x008c, 0x8651}, /* R gain for white balance */
321 {0x008c, 0x8652}, /* Gr gain for white balance */
322 {0x00b5, 0x8653}, /* B gain for white balance */
323 {0x008c, 0x8654}, /* Gb gain for white balance */
324 {0x0002, 0x8502}, /* Maximum average bit rate stuff */
327 {0x0087, 0x8700}, /* Set master clock (96Mhz????) */
328 {0x0081, 0x8702}, /* Master clock output enable */
330 {0x0000, 0x8500}, /* Set image type (352x288 no compression) */
331 /* Originally was 0x0010 (352x288 compression) */
333 {0x0002, 0x865b}, /* Horizontal offset for valid pixels */
334 {0x0003, 0x865c}, /* Vertical offset for valid lines */
335 /***************//* sensor active */
336 {0x0003, 0x8801}, /* 0x03 <- 0x01 0x21 //289 */
339 {0x0004, 0x8801}, /* 0x04 <- 0x01 0x65 //357 */
342 {0x0005, 0x8801}, /* 0x05 <- 0x2f */
345 {0x0006, 0x8801}, /* 0x06 <- 0 */
348 {0x000a, 0x8801}, /* 0x0a <- 2 */
351 {0x0009, 0x8801}, /* 0x09 <- 0x1061 */
354 {0x0035, 0x8801}, /* 0x35 <-0x14 */
357 {0x0030, 0x8112}, /* ISO and drop packet enable */
358 {0x0000, 0x8112}, /* Some kind of reset ???? */
359 {0x0009, 0x8118}, /* Enable sensor and set standby */
360 {0x0000, 0x8114}, /* Software GPIO output data */
361 {0x0000, 0x8114}, /* Software GPIO output data */
362 {0x0001, 0x8114}, /* Software GPIO output data */
363 {0x0000, 0x8112}, /* Some kind of reset ??? */
384 {0x0007, 0x8801}, /* mode 0xaa */
388 {0x0015, 0x8800}, /* mode 0x0415 */
412 {0x0087, 0x8700}, /* overwrite by start */
415 /* {0x0010, 0x8500}, -- Previous line was this */
419 {0x0003, 0x8801}, /* 0x121-> 289 */
422 {0x0004, 0x8801}, /* 0x165 -> 357 */
425 {0x0005, 0x8801}, /* 0x2f //blanking control colonne */
428 {0x0006, 0x8801}, /* 0x00 //blanking mode row */
431 {0x000a, 0x8801}, /* 0x01 //0x02 */
434 {0x0009, 0x8801}, /* 0x1061 - setexposure times && pixel clock
435 * 0001 0 | 000 0110 0001 */
436 {0x0061, 0x8805}, /* 61 31 */
437 {0x0008, 0x8800}, /* 08 */
438 {0x0035, 0x8801}, /* 0x14 - set gain general */
439 {0x001f, 0x8805}, /* 0x14 */
445 static void sensor_reset(struct gspca_dev *gspca_dev)
447 reg_w_val(gspca_dev->dev, 0x8631, 0xc8);
448 reg_w_val(gspca_dev->dev, 0x8634, 0xc8);
449 reg_w_val(gspca_dev->dev, 0x8112, 0x00);
450 reg_w_val(gspca_dev->dev, 0x8114, 0x00);
451 reg_w_val(gspca_dev->dev, 0x8118, 0x21);
452 i2c_init(gspca_dev, 0x14);
453 i2c_write(gspca_dev, 1, 0x0d);
454 i2c_write(gspca_dev, 0, 0x0d);
457 /******************** QC Express etch2 stuff ********************/
458 static const __u16 Pb100_1map8300[][2] = {
462 {0x8303, 0x0125}, /* image area */
473 static const __u16 Pb100_2map8300[][2] = {
480 static const __u16 spca561_161rev12A_data1[][2] = {
485 {0x04, 0x8802}, /* windows uses 08 */
488 static const __u16 spca561_161rev12A_data2[][2] = {
496 {0x07, 0x8201}, /* windows uses 02 */
501 {0x01, 0x8114}, /* windows uses 00 */
508 {0x00, 0x8610}, /* *red */
509 {0x00, 0x8611}, /* 3f *green */
510 {0x00, 0x8612}, /* green *blue */
511 {0x00, 0x8613}, /* blue *green */
512 {0x35, 0x8614}, /* green *red */
513 {0x35, 0x8615}, /* 40 *green */
514 {0x35, 0x8616}, /* 7a *blue */
515 {0x35, 0x8617}, /* 40 *green */
517 {0x0c, 0x8620}, /* 0c */
518 {0xc8, 0x8631}, /* c8 */
519 {0xc8, 0x8634}, /* c8 */
520 {0x23, 0x8635}, /* 23 */
521 {0x1f, 0x8636}, /* 1f */
522 {0xdd, 0x8637}, /* dd */
523 {0xe1, 0x8638}, /* e1 */
524 {0x1d, 0x8639}, /* 1d */
525 {0x21, 0x863a}, /* 21 */
526 {0xe3, 0x863b}, /* e3 */
527 {0xdf, 0x863c}, /* df */
533 static void sensor_mapwrite(struct gspca_dev *gspca_dev,
534 const __u16 sensormap[][2])
539 while (sensormap[i][0]) {
540 usbval[0] = sensormap[i][1];
541 usbval[1] = sensormap[i][1] >> 8;
542 reg_w_buf(gspca_dev, sensormap[i][0], usbval, 2);
546 static void init_161rev12A(struct gspca_dev *gspca_dev)
548 sensor_reset(gspca_dev);
549 write_vector(gspca_dev, spca561_161rev12A_data1);
550 sensor_mapwrite(gspca_dev, Pb100_1map8300);
551 write_vector(gspca_dev, spca561_161rev12A_data2);
552 sensor_mapwrite(gspca_dev, Pb100_2map8300);
555 /* this function is called at probe time */
556 static int sd_config(struct gspca_dev *gspca_dev,
557 const struct usb_device_id *id)
559 struct sd *sd = (struct sd *) gspca_dev;
561 __u16 vendor, product;
564 /* Read frm global register the USB product and vendor IDs, just to
565 * prove that we can communicate with the device. This works, which
566 * confirms at we are communicating properly and that the device
568 reg_r(gspca_dev, 0x8104, 1);
569 data1 = gspca_dev->usb_buf[0];
570 reg_r(gspca_dev, 0x8105, 1);
571 data2 = gspca_dev->usb_buf[0];
572 vendor = (data2 << 8) | data1;
573 reg_r(gspca_dev, 0x8106, 1);
574 data1 = gspca_dev->usb_buf[0];
575 reg_r(gspca_dev, 0x8107, 1);
576 data2 = gspca_dev->usb_buf[0];
577 product = (data2 << 8) | data1;
578 if (vendor != id->idVendor || product != id->idProduct) {
579 PDEBUG(D_PROBE, "Bad vendor / product from device");
583 cam = &gspca_dev->cam;
584 cam->dev_name = (char *) id->driver_info;
586 gspca_dev->nbalt = 7 + 1; /* choose alternate 7 first */
587 cam->cam_mode = sif_mode;
588 cam->nmodes = sizeof sif_mode / sizeof sif_mode[0];
590 sd->chip_revision = id->driver_info;
591 sd->brightness = sd_ctrls[SD_BRIGHTNESS].qctrl.default_value;
592 sd->contrast = sd_ctrls[SD_CONTRAST].qctrl.default_value;
593 sd->autogain = sd_ctrls[SD_AUTOGAIN].qctrl.default_value;
597 /* this function is called at open time */
598 static int sd_open(struct gspca_dev *gspca_dev)
600 struct sd *sd = (struct sd *) gspca_dev;
602 switch (sd->chip_revision) {
604 PDEBUG(D_STREAM, "Chip revision id: 072a");
605 write_vector(gspca_dev, spca561_init_data);
609 PDEBUG(D_STREAM, "Chip revision id: 012a");
610 init_161rev12A(gspca_dev);
616 static void setcontrast(struct gspca_dev *gspca_dev)
618 struct sd *sd = (struct sd *) gspca_dev;
619 struct usb_device *dev = gspca_dev->dev;
623 switch (sd->chip_revision) {
625 lowb = sd->contrast >> 8;
626 reg_w_val(dev, lowb, 0x8651);
627 reg_w_val(dev, lowb, 0x8652);
628 reg_w_val(dev, lowb, 0x8653);
629 reg_w_val(dev, lowb, 0x8654);
633 { 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00 };
635 /* Write camera sensor settings */
636 expotimes = (sd->contrast >> 5) & 0x07ff;
637 Reg8391[0] = expotimes & 0xff; /* exposure */
638 Reg8391[1] = 0x18 | (expotimes >> 8);
639 Reg8391[2] = sd->brightness; /* gain */
640 reg_w_buf(gspca_dev, 0x8391, Reg8391, 8);
641 reg_w_buf(gspca_dev, 0x8390, Reg8391, 8);
647 static void setautogain(struct gspca_dev *gspca_dev)
649 struct sd *sd = (struct sd *) gspca_dev;
651 if (sd->chip_revision == Rev072A) {
653 sd->ag_cnt = AG_CNT_START;
659 static void sd_start(struct gspca_dev *gspca_dev)
661 struct sd *sd = (struct sd *) gspca_dev;
662 struct usb_device *dev = gspca_dev->dev;
664 __u8 Reg8307[] = { 0xaa, 0x00 };
667 mode = gspca_dev->cam.cam_mode[(int) gspca_dev->curr_mode].priv;
668 switch (sd->chip_revision) {
683 reg_w_val(dev, 0x8500, mode); /* mode */
684 reg_w_val(dev, 0x8700, Clck); /* 0x27 clock */
685 reg_w_val(dev, 0x8112, 0x10 | 0x20);
686 setautogain(gspca_dev);
703 /* Use compression on 320x240 and above */
704 reg_w_val(dev, 0x8500, 0x10 | mode);
706 /* I couldn't get the compression to work below 320x240
707 * Fortunately at these resolutions the bandwidth
708 * is sufficient to push raw frames at ~20fps */
709 reg_w_val(dev, 0x8500, mode);
710 } /* -- qq@kuku.eu.org */
711 reg_w_buf(gspca_dev, 0x8307, Reg8307, 2);
712 reg_w_val(gspca_dev->dev, 0x8700, Clck);
713 /* 0x8f 0x85 0x27 clock */
714 reg_w_val(gspca_dev->dev, 0x8112, 0x1e | 0x20);
715 reg_w_val(gspca_dev->dev, 0x850b, 0x03);
716 setcontrast(gspca_dev);
721 static void sd_stopN(struct gspca_dev *gspca_dev)
723 reg_w_val(gspca_dev->dev, 0x8112, 0x20);
726 static void sd_stop0(struct gspca_dev *gspca_dev)
730 /* this function is called at close time */
731 static void sd_close(struct gspca_dev *gspca_dev)
733 reg_w_val(gspca_dev->dev, 0x8114, 0);
736 static void do_autogain(struct gspca_dev *gspca_dev)
738 struct sd *sd = (struct sd *) gspca_dev;
744 __u8 luma_mean = 110;
745 __u8 luma_delta = 20;
750 if (--sd->ag_cnt >= 0)
752 sd->ag_cnt = AG_CNT_START;
754 switch (sd->chip_revision) {
756 reg_r(gspca_dev, 0x8621, 1);
757 Gr = gspca_dev->usb_buf[0];
758 reg_r(gspca_dev, 0x8622, 1);
759 R = gspca_dev->usb_buf[0];
760 reg_r(gspca_dev, 0x8623, 1);
761 B = gspca_dev->usb_buf[0];
762 reg_r(gspca_dev, 0x8624, 1);
763 Gb = gspca_dev->usb_buf[0];
764 y = (77 * R + 75 * (Gr + Gb) + 29 * B) >> 8;
765 /* u= (128*B-(43*(Gr+Gb+R))) >> 8; */
766 /* v= (128*R-(53*(Gr+Gb))-21*B) >> 8; */
767 /* PDEBUG(D_CONF,"reading Y %d U %d V %d ",y,u,v); */
769 if (y < luma_mean - luma_delta ||
770 y > luma_mean + luma_delta) {
771 expotimes = i2c_read(gspca_dev, 0x09, 0x10);
773 expotimes = expotimes & 0x07ff;
775 "Exposition Times 0x%03X Clock 0x%04X ",
776 expotimes,pixelclk); */
777 gainG = i2c_read(gspca_dev, 0x35, 0x10);
779 "reading Gain register %d", gainG); */
781 expotimes += (luma_mean - y) >> spring;
782 gainG += (luma_mean - y) / 50;
784 "compute expotimes %d gain %d",
791 i2c_write(gspca_dev, gainG, 0x35);
793 if (expotimes >= 0x0256)
795 else if (expotimes < 4)
797 i2c_write(gspca_dev, expotimes | pixelclk, 0x09);
801 /* sensor registers is access and memory mapped to 0x8300 */
802 /* readind all 0x83xx block the sensor */
804 * The data from the header seem wrong where is the luma
805 * and chroma mean value
806 * at the moment set exposure in contrast set
812 static void sd_pkt_scan(struct gspca_dev *gspca_dev,
813 struct gspca_frame *frame, /* target */
814 __u8 *data, /* isoc packet */
815 int len) /* iso packet length */
818 case 0: /* start of frame */
819 frame = gspca_frame_add(gspca_dev, LAST_PACKET, frame,
821 data += SPCA561_OFFSET_DATA;
822 len -= SPCA561_OFFSET_DATA;
823 if (data[1] & 0x10) {
824 /* compressed bayer */
825 gspca_frame_add(gspca_dev, FIRST_PACKET,
828 /* raw bayer (with a header, which we skip) */
831 gspca_frame_add(gspca_dev, FIRST_PACKET,
835 case 0xff: /* drop */
836 /* gspca_dev->last_packet_type = DISCARD_PACKET; */
841 gspca_frame_add(gspca_dev, INTER_PACKET, frame, data, len);
844 static void setbrightness(struct gspca_dev *gspca_dev)
846 struct sd *sd = (struct sd *) gspca_dev;
849 switch (sd->chip_revision) {
851 value = sd->brightness;
852 reg_w_val(gspca_dev->dev, value, 0x8611);
853 reg_w_val(gspca_dev->dev, value, 0x8612);
854 reg_w_val(gspca_dev->dev, value, 0x8613);
855 reg_w_val(gspca_dev->dev, value, 0x8614);
859 setcontrast(gspca_dev);
864 static void getbrightness(struct gspca_dev *gspca_dev)
866 struct sd *sd = (struct sd *) gspca_dev;
869 switch (sd->chip_revision) {
872 reg_r(gspca_dev, 0x8611, 1);
873 tot += gspca_dev->usb_buf[0];
874 reg_r(gspca_dev, 0x8612, 1);
875 tot += gspca_dev->usb_buf[0];
876 reg_r(gspca_dev, 0x8613, 1);
877 tot += gspca_dev->usb_buf[0];
878 reg_r(gspca_dev, 0x8614, 1);
879 tot += gspca_dev->usb_buf[0];
880 sd->brightness = tot >> 2;
884 /* no way to read sensor settings */
889 static void getcontrast(struct gspca_dev *gspca_dev)
891 struct sd *sd = (struct sd *) gspca_dev;
894 switch (sd->chip_revision) {
897 reg_r(gspca_dev, 0x8651, 1);
898 tot += gspca_dev->usb_buf[0];
899 reg_r(gspca_dev, 0x8652, 1);
900 tot += gspca_dev->usb_buf[0];
901 reg_r(gspca_dev, 0x8653, 1);
902 tot += gspca_dev->usb_buf[0];
903 reg_r(gspca_dev, 0x8654, 1);
904 tot += gspca_dev->usb_buf[0];
905 sd->contrast = tot << 6;
909 /* no way to read sensor settings */
912 PDEBUG(D_CONF, "get contrast %d", sd->contrast);
915 static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val)
917 struct sd *sd = (struct sd *) gspca_dev;
919 sd->brightness = val;
920 if (gspca_dev->streaming)
921 setbrightness(gspca_dev);
925 static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val)
927 struct sd *sd = (struct sd *) gspca_dev;
929 getbrightness(gspca_dev);
930 *val = sd->brightness;
934 static int sd_setcontrast(struct gspca_dev *gspca_dev, __s32 val)
936 struct sd *sd = (struct sd *) gspca_dev;
939 if (gspca_dev->streaming)
940 setcontrast(gspca_dev);
944 static int sd_getcontrast(struct gspca_dev *gspca_dev, __s32 *val)
946 struct sd *sd = (struct sd *) gspca_dev;
948 getcontrast(gspca_dev);
953 static int sd_setautogain(struct gspca_dev *gspca_dev, __s32 val)
955 struct sd *sd = (struct sd *) gspca_dev;
958 if (gspca_dev->streaming)
959 setautogain(gspca_dev);
963 static int sd_getautogain(struct gspca_dev *gspca_dev, __s32 *val)
965 struct sd *sd = (struct sd *) gspca_dev;
971 /* sub-driver description */
972 static const struct sd_desc sd_desc = {
975 .nctrls = ARRAY_SIZE(sd_ctrls),
982 .pkt_scan = sd_pkt_scan,
983 .dq_callback = do_autogain,
986 /* -- module initialisation -- */
987 static const __devinitdata struct usb_device_id device_table[] = {
988 {USB_DEVICE(0x041e, 0x401a), .driver_info = Rev072A},
989 {USB_DEVICE(0x041e, 0x403b), .driver_info = Rev012A},
990 {USB_DEVICE(0x0458, 0x7004), .driver_info = Rev072A},
991 {USB_DEVICE(0x046d, 0x0928), .driver_info = Rev012A},
992 {USB_DEVICE(0x046d, 0x0929), .driver_info = Rev012A},
993 {USB_DEVICE(0x046d, 0x092a), .driver_info = Rev012A},
994 {USB_DEVICE(0x046d, 0x092b), .driver_info = Rev012A},
995 {USB_DEVICE(0x046d, 0x092c), .driver_info = Rev012A},
996 {USB_DEVICE(0x046d, 0x092d), .driver_info = Rev012A},
997 {USB_DEVICE(0x046d, 0x092e), .driver_info = Rev012A},
998 {USB_DEVICE(0x046d, 0x092f), .driver_info = Rev012A},
999 {USB_DEVICE(0x04fc, 0x0561), .driver_info = Rev072A},
1000 {USB_DEVICE(0x060b, 0xa001), .driver_info = Rev072A},
1001 {USB_DEVICE(0x10fd, 0x7e50), .driver_info = Rev072A},
1002 {USB_DEVICE(0xabcd, 0xcdee), .driver_info = Rev072A},
1006 MODULE_DEVICE_TABLE(usb, device_table);
1008 /* -- device connect -- */
1009 static int sd_probe(struct usb_interface *intf,
1010 const struct usb_device_id *id)
1012 return gspca_dev_probe(intf, id, &sd_desc, sizeof(struct sd),
1016 static struct usb_driver sd_driver = {
1017 .name = MODULE_NAME,
1018 .id_table = device_table,
1020 .disconnect = gspca_disconnect,
1023 /* -- module insert / remove -- */
1024 static int __init sd_mod_init(void)
1026 if (usb_register(&sd_driver) < 0)
1028 PDEBUG(D_PROBE, "registered");
1031 static void __exit sd_mod_exit(void)
1033 usb_deregister(&sd_driver);
1034 PDEBUG(D_PROBE, "deregistered");
1037 module_init(sd_mod_init);
1038 module_exit(sd_mod_exit);