V4L/DVB (8513): gspca: Set the specific per webcam information in driver_info.
[linux-2.6/btrfs-unstable.git] / drivers / media / video / gspca / spca561.c
blob3b46f7dda641d3eb2389d6349b415cf186984583
1 /*
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
11 * any later version.
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"
25 #include "gspca.h"
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 */
32 struct sd {
33 struct gspca_dev gspca_dev; /* !! must be the first item */
35 unsigned short contrast;
36 __u8 brightness;
37 __u8 autogain;
39 __u8 chip_revision;
40 signed char ag_cnt;
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,
58 .name = "Brightness",
59 .minimum = 0,
60 .maximum = 63,
61 .step = 1,
62 .default_value = 32,
64 .set = sd_setbrightness,
65 .get = sd_getbrightness,
67 #define SD_CONTRAST 1
70 .id = V4L2_CID_CONTRAST,
71 .type = V4L2_CTRL_TYPE_INTEGER,
72 .name = "Contrast",
73 .minimum = 0,
74 .maximum = 0x3fff,
75 .step = 1,
76 .default_value = 0x2000,
78 .set = sd_setcontrast,
79 .get = sd_getcontrast,
81 #define SD_AUTOGAIN 2
84 .id = V4L2_CID_AUTOGAIN,
85 .type = V4L2_CTRL_TYPE_BOOLEAN,
86 .name = "Auto Gain",
87 .minimum = 0,
88 .maximum = 1,
89 .step = 1,
90 .default_value = 1,
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,
99 .bytesperline = 160,
100 .sizeimage = 160 * 120,
101 .colorspace = V4L2_COLORSPACE_SRGB,
102 .priv = 3},
103 {176, 144, V4L2_PIX_FMT_SGBRG8, V4L2_FIELD_NONE,
104 .bytesperline = 176,
105 .sizeimage = 176 * 144,
106 .colorspace = V4L2_COLORSPACE_SRGB,
107 .priv = 2},
108 {320, 240, V4L2_PIX_FMT_SPCA561, V4L2_FIELD_NONE,
109 .bytesperline = 320,
110 .sizeimage = 320 * 240 * 4 / 8,
111 .colorspace = V4L2_COLORSPACE_SRGB,
112 .priv = 1},
113 {352, 288, V4L2_PIX_FMT_SPCA561, V4L2_FIELD_NONE,
114 .bytesperline = 352,
115 .sizeimage = 352 * 288 * 4 / 8,
116 .colorspace = V4L2_COLORSPACE_SRGB,
117 .priv = 0},
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
146 enum {
147 Rev072A = 0,
148 Rev012A,
151 static void reg_w_val(struct usb_device *dev, __u16 index, __u16 value)
153 int ret;
155 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
156 0, /* request */
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);
160 if (ret < 0)
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;
168 int i;
170 i = 0;
171 while (data[i][1] != 0) {
172 reg_w_val(dev, data[i][1], data[i][0]);
173 i++;
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),
183 0, /* request */
184 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
185 0, /* value */
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),
195 0, /* request */
196 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
197 0, /* value */
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)
209 int retry = 60;
210 __u8 DataLow;
211 __u8 DataHight;
213 DataLow = valeur;
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);
218 while (retry--) {
219 reg_r(gspca_dev, 0x8803, 1);
220 if (!gspca_dev->usb_buf[0])
221 break;
225 static int i2c_read(struct gspca_dev *gspca_dev, __u16 reg, __u8 mode)
227 int retry = 60;
228 __u8 value;
229 __u8 vallsb;
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);
234 while (retry--) {
235 reg_r(gspca_dev, 0x8803, 1);
236 if (!gspca_dev->usb_buf)
237 break;
239 if (retry == 0)
240 return -1;
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 */
258 /***************/
259 {0x000d, 0x8805}, /* sensor default setting */
260 {0x0001, 0x8801}, /* 1 <- 0x0d */
261 {0x0000, 0x8800},
262 {0x0018, 0x8805},
263 {0x0002, 0x8801}, /* 2 <- 0x18 */
264 {0x0000, 0x8800},
265 {0x0065, 0x8805},
266 {0x0004, 0x8801}, /* 4 <- 0x01 0x65 */
267 {0x0001, 0x8800},
268 {0x0021, 0x8805},
269 {0x0005, 0x8801}, /* 5 <- 0x21 */
270 {0x0000, 0x8800},
271 {0x00aa, 0x8805},
272 {0x0007, 0x8801}, /* 7 <- 0xaa */
273 {0x0000, 0x8800},
274 {0x0004, 0x8805},
275 {0x0020, 0x8801}, /* 0x20 <- 0x15 0x04 */
276 {0x0015, 0x8800},
277 {0x0002, 0x8805},
278 {0x0039, 0x8801}, /* 0x39 <- 0x02 */
279 {0x0000, 0x8800},
280 {0x0010, 0x8805},
281 {0x0035, 0x8801}, /* 0x35 <- 0x10 */
282 {0x0000, 0x8800},
283 {0x0049, 0x8805},
284 {0x0009, 0x8801}, /* 0x09 <- 0x10 0x49 */
285 {0x0010, 0x8800},
286 {0x000b, 0x8805},
287 {0x0028, 0x8801}, /* 0x28 <- 0x0b */
288 {0x0000, 0x8800},
289 {0x000f, 0x8805},
290 {0x003b, 0x8801}, /* 0x3b <- 0x0f */
291 {0x0000, 0x8800},
292 {0x0000, 0x8805},
293 {0x003c, 0x8801}, /* 0x3c <- 0x00 */
294 {0x0000, 0x8800},
295 /***************/
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 */
326 {0x0011, 0x8802},
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 */
337 {0x0021, 0x8805},
338 {0x0001, 0x8800},
339 {0x0004, 0x8801}, /* 0x04 <- 0x01 0x65 //357 */
340 {0x0065, 0x8805},
341 {0x0001, 0x8800},
342 {0x0005, 0x8801}, /* 0x05 <- 0x2f */
343 {0x002f, 0x8805},
344 {0x0000, 0x8800},
345 {0x0006, 0x8801}, /* 0x06 <- 0 */
346 {0x0000, 0x8805},
347 {0x0000, 0x8800},
348 {0x000a, 0x8801}, /* 0x0a <- 2 */
349 {0x0002, 0x8805},
350 {0x0000, 0x8800},
351 {0x0009, 0x8801}, /* 0x09 <- 0x1061 */
352 {0x0061, 0x8805},
353 {0x0010, 0x8800},
354 {0x0035, 0x8801}, /* 0x35 <-0x14 */
355 {0x0014, 0x8805},
356 {0x0000, 0x8800},
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 ??? */
364 {0x0003, 0x8701},
365 {0x0001, 0x8703},
366 {0x0011, 0x8118},
367 {0x0001, 0x8118},
368 /***************/
369 {0x0092, 0x8804},
370 {0x0010, 0x8802},
371 {0x000d, 0x8805},
372 {0x0001, 0x8801},
373 {0x0000, 0x8800},
374 {0x0018, 0x8805},
375 {0x0002, 0x8801},
376 {0x0000, 0x8800},
377 {0x0065, 0x8805},
378 {0x0004, 0x8801},
379 {0x0001, 0x8800},
380 {0x0021, 0x8805},
381 {0x0005, 0x8801},
382 {0x0000, 0x8800},
383 {0x00aa, 0x8805},
384 {0x0007, 0x8801}, /* mode 0xaa */
385 {0x0000, 0x8800},
386 {0x0004, 0x8805},
387 {0x0020, 0x8801},
388 {0x0015, 0x8800}, /* mode 0x0415 */
389 {0x0002, 0x8805},
390 {0x0039, 0x8801},
391 {0x0000, 0x8800},
392 {0x0010, 0x8805},
393 {0x0035, 0x8801},
394 {0x0000, 0x8800},
395 {0x0049, 0x8805},
396 {0x0009, 0x8801},
397 {0x0010, 0x8800},
398 {0x000b, 0x8805},
399 {0x0028, 0x8801},
400 {0x0000, 0x8800},
401 {0x000f, 0x8805},
402 {0x003b, 0x8801},
403 {0x0000, 0x8800},
404 {0x0000, 0x8805},
405 {0x003c, 0x8801},
406 {0x0000, 0x8800},
407 {0x0002, 0x8502},
408 {0x0039, 0x8801},
409 {0x0000, 0x8805},
410 {0x0000, 0x8800},
412 {0x0087, 0x8700}, /* overwrite by start */
413 {0x0081, 0x8702},
414 {0x0000, 0x8500},
415 /* {0x0010, 0x8500}, -- Previous line was this */
416 {0x0002, 0x865b},
417 {0x0003, 0x865c},
418 /***************/
419 {0x0003, 0x8801}, /* 0x121-> 289 */
420 {0x0021, 0x8805},
421 {0x0001, 0x8800},
422 {0x0004, 0x8801}, /* 0x165 -> 357 */
423 {0x0065, 0x8805},
424 {0x0001, 0x8800},
425 {0x0005, 0x8801}, /* 0x2f //blanking control colonne */
426 {0x002f, 0x8805},
427 {0x0000, 0x8800},
428 {0x0006, 0x8801}, /* 0x00 //blanking mode row */
429 {0x0000, 0x8805},
430 {0x0000, 0x8800},
431 {0x000a, 0x8801}, /* 0x01 //0x02 */
432 {0x0001, 0x8805},
433 {0x0000, 0x8800},
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 */
440 {0x0000, 0x8800},
441 {0x0030, 0x8112},
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] = {
459 /* reg, value */
460 {0x8320, 0x3304},
462 {0x8303, 0x0125}, /* image area */
463 {0x8304, 0x0169},
464 {0x8328, 0x000b},
465 {0x833c, 0x0001},
467 {0x832f, 0x0419},
468 {0x8307, 0x00aa},
469 {0x8301, 0x0003},
470 {0x8302, 0x000e},
473 static const __u16 Pb100_2map8300[][2] = {
474 /* reg, value */
475 {0x8339, 0x0000},
476 {0x8307, 0x00aa},
480 static const __u16 spca561_161rev12A_data1[][2] = {
481 {0x21, 0x8118},
482 {0x01, 0x8114},
483 {0x00, 0x8112},
484 {0x92, 0x8804},
485 {0x04, 0x8802}, /* windows uses 08 */
488 static const __u16 spca561_161rev12A_data2[][2] = {
489 {0x21, 0x8118},
490 {0x10, 0x8500},
491 {0x07, 0x8601},
492 {0x07, 0x8602},
493 {0x04, 0x8501},
494 {0x21, 0x8118},
496 {0x07, 0x8201}, /* windows uses 02 */
497 {0x08, 0x8200},
498 {0x01, 0x8200},
500 {0x00, 0x8114},
501 {0x01, 0x8114}, /* windows uses 00 */
503 {0x90, 0x8604},
504 {0x00, 0x8605},
505 {0xb0, 0x8603},
507 /* sensor gains */
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 */
528 {0xf0, 0x8505},
529 {0x32, 0x850a},
533 static void sensor_mapwrite(struct gspca_dev *gspca_dev,
534 const __u16 sensormap[][2])
536 int i = 0;
537 __u8 usbval[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);
543 i++;
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;
560 struct cam *cam;
561 __u16 vendor, product;
562 __u8 data1, data2;
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
567 * is a 561. */
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");
580 return -EINVAL;
583 cam = &gspca_dev->cam;
584 cam->dev_name = (char *) id->driver_info;
585 cam->epaddr = 0x01;
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;
594 return 0;
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) {
603 case Rev072A:
604 PDEBUG(D_STREAM, "Chip revision id: 072a");
605 write_vector(gspca_dev, spca561_init_data);
606 break;
607 default:
608 /* case Rev012A: */
609 PDEBUG(D_STREAM, "Chip revision id: 012a");
610 init_161rev12A(gspca_dev);
611 break;
613 return 0;
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;
620 __u8 lowb;
621 int expotimes;
623 switch (sd->chip_revision) {
624 case Rev072A:
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);
630 break;
631 case Rev012A: {
632 __u8 Reg8391[] =
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);
642 break;
647 static void sd_start(struct gspca_dev *gspca_dev)
649 struct sd *sd = (struct sd *) gspca_dev;
650 struct usb_device *dev = gspca_dev->dev;
651 int Clck;
652 __u8 Reg8307[] = { 0xaa, 0x00 };
653 int mode;
655 mode = gspca_dev->cam.cam_mode[(int) gspca_dev->curr_mode].priv;
656 switch (sd->chip_revision) {
657 case Rev072A:
658 switch (mode) {
659 default:
660 /* case 0:
661 case 1: */
662 Clck = 0x25;
663 break;
664 case 2:
665 Clck = 0x22;
666 break;
667 case 3:
668 Clck = 0x21;
669 break;
671 reg_w_val(dev, 0x8500, mode); /* mode */
672 reg_w_val(dev, 0x8700, Clck); /* 0x27 clock */
673 reg_w_val(dev, 0x8112, 0x10 | 0x20);
674 break;
675 default:
676 /* case Rev012A: */
677 switch (mode) {
678 case 0:
679 case 1:
680 Clck = 0x8a;
681 break;
682 case 2:
683 Clck = 0x85;
684 break;
685 default:
686 Clck = 0x83;
687 break;
689 if (mode <= 1) {
690 /* Use compression on 320x240 and above */
691 reg_w_val(dev, 0x8500, 0x10 | mode);
692 } else {
693 /* I couldn't get the compression to work below 320x240
694 * Fortunately at these resolutions the bandwidth
695 * is sufficient to push raw frames at ~20fps */
696 reg_w_val(dev, 0x8500, mode);
697 } /* -- qq@kuku.eu.org */
698 reg_w_buf(gspca_dev, 0x8307, Reg8307, 2);
699 reg_w_val(gspca_dev->dev, 0x8700, Clck);
700 /* 0x8f 0x85 0x27 clock */
701 reg_w_val(gspca_dev->dev, 0x8112, 0x1e | 0x20);
702 reg_w_val(gspca_dev->dev, 0x850b, 0x03);
703 setcontrast(gspca_dev);
704 break;
708 static void sd_stopN(struct gspca_dev *gspca_dev)
710 reg_w_val(gspca_dev->dev, 0x8112, 0x20);
713 static void sd_stop0(struct gspca_dev *gspca_dev)
717 /* this function is called at close time */
718 static void sd_close(struct gspca_dev *gspca_dev)
720 reg_w_val(gspca_dev->dev, 0x8114, 0);
723 static void setautogain(struct gspca_dev *gspca_dev)
725 struct sd *sd = (struct sd *) gspca_dev;
726 int expotimes = 0;
727 int pixelclk = 0;
728 int gainG = 0;
729 __u8 R, Gr, Gb, B;
730 int y;
731 __u8 luma_mean = 110;
732 __u8 luma_delta = 20;
733 __u8 spring = 4;
735 switch (sd->chip_revision) {
736 case Rev072A:
737 reg_r(gspca_dev, 0x8621, 1);
738 Gr = gspca_dev->usb_buf[0];
739 reg_r(gspca_dev, 0x8622, 1);
740 R = gspca_dev->usb_buf[0];
741 reg_r(gspca_dev, 0x8623, 1);
742 B = gspca_dev->usb_buf[0];
743 reg_r(gspca_dev, 0x8624, 1);
744 Gb = gspca_dev->usb_buf[0];
745 y = (77 * R + 75 * (Gr + Gb) + 29 * B) >> 8;
746 /* u= (128*B-(43*(Gr+Gb+R))) >> 8; */
747 /* v= (128*R-(53*(Gr+Gb))-21*B) >> 8; */
748 /* PDEBUG(D_CONF,"reading Y %d U %d V %d ",y,u,v); */
750 if (y < luma_mean - luma_delta ||
751 y > luma_mean + luma_delta) {
752 expotimes = i2c_read(gspca_dev, 0x09, 0x10);
753 pixelclk = 0x0800;
754 expotimes = expotimes & 0x07ff;
755 /* PDEBUG(D_PACK,
756 "Exposition Times 0x%03X Clock 0x%04X ",
757 expotimes,pixelclk); */
758 gainG = i2c_read(gspca_dev, 0x35, 0x10);
759 /* PDEBUG(D_PACK,
760 "reading Gain register %d", gainG); */
762 expotimes += (luma_mean - y) >> spring;
763 gainG += (luma_mean - y) / 50;
764 /* PDEBUG(D_PACK,
765 "compute expotimes %d gain %d",
766 expotimes,gainG); */
768 if (gainG > 0x3f)
769 gainG = 0x3f;
770 else if (gainG < 4)
771 gainG = 3;
772 i2c_write(gspca_dev, gainG, 0x35);
774 if (expotimes >= 0x0256)
775 expotimes = 0x0256;
776 else if (expotimes < 4)
777 expotimes = 3;
778 i2c_write(gspca_dev, expotimes | pixelclk, 0x09);
780 break;
781 case Rev012A:
782 /* sensor registers is access and memory mapped to 0x8300 */
783 /* readind all 0x83xx block the sensor */
785 * The data from the header seem wrong where is the luma
786 * and chroma mean value
787 * at the moment set exposure in contrast set
789 break;
793 static void sd_pkt_scan(struct gspca_dev *gspca_dev,
794 struct gspca_frame *frame, /* target */
795 __u8 *data, /* isoc packet */
796 int len) /* iso packet length */
798 struct sd *sd = (struct sd *) gspca_dev;
800 switch (data[0]) {
801 case 0: /* start of frame */
802 frame = gspca_frame_add(gspca_dev, LAST_PACKET, frame,
803 data, 0);
804 if (sd->ag_cnt >= 0) {
805 if (--sd->ag_cnt < 0) {
806 sd->ag_cnt = AG_CNT_START;
807 setautogain(gspca_dev);
810 data += SPCA561_OFFSET_DATA;
811 len -= SPCA561_OFFSET_DATA;
812 if (data[1] & 0x10) {
813 /* compressed bayer */
814 gspca_frame_add(gspca_dev, FIRST_PACKET,
815 frame, data, len);
816 } else {
817 /* raw bayer (with a header, which we skip) */
818 data += 20;
819 len -= 20;
820 gspca_frame_add(gspca_dev, FIRST_PACKET,
821 frame, data, len);
823 return;
824 case 0xff: /* drop */
825 /* gspca_dev->last_packet_type = DISCARD_PACKET; */
826 return;
828 data++;
829 len--;
830 gspca_frame_add(gspca_dev, INTER_PACKET, frame, data, len);
833 static void setbrightness(struct gspca_dev *gspca_dev)
835 struct sd *sd = (struct sd *) gspca_dev;
836 __u8 value;
838 switch (sd->chip_revision) {
839 case Rev072A:
840 value = sd->brightness;
841 reg_w_val(gspca_dev->dev, value, 0x8611);
842 reg_w_val(gspca_dev->dev, value, 0x8612);
843 reg_w_val(gspca_dev->dev, value, 0x8613);
844 reg_w_val(gspca_dev->dev, value, 0x8614);
845 break;
846 default:
847 /* case Rev012A: */
848 setcontrast(gspca_dev);
849 break;
853 static void getbrightness(struct gspca_dev *gspca_dev)
855 struct sd *sd = (struct sd *) gspca_dev;
856 __u16 tot;
858 switch (sd->chip_revision) {
859 case Rev072A:
860 tot = 0;
861 reg_r(gspca_dev, 0x8611, 1);
862 tot += gspca_dev->usb_buf[0];
863 reg_r(gspca_dev, 0x8612, 1);
864 tot += gspca_dev->usb_buf[0];
865 reg_r(gspca_dev, 0x8613, 1);
866 tot += gspca_dev->usb_buf[0];
867 reg_r(gspca_dev, 0x8614, 1);
868 tot += gspca_dev->usb_buf[0];
869 sd->brightness = tot >> 2;
870 break;
871 default:
872 /* case Rev012A: */
873 /* no way to read sensor settings */
874 break;
878 static void getcontrast(struct gspca_dev *gspca_dev)
880 struct sd *sd = (struct sd *) gspca_dev;
881 __u16 tot;
883 switch (sd->chip_revision) {
884 case Rev072A:
885 tot = 0;
886 reg_r(gspca_dev, 0x8651, 1);
887 tot += gspca_dev->usb_buf[0];
888 reg_r(gspca_dev, 0x8652, 1);
889 tot += gspca_dev->usb_buf[0];
890 reg_r(gspca_dev, 0x8653, 1);
891 tot += gspca_dev->usb_buf[0];
892 reg_r(gspca_dev, 0x8654, 1);
893 tot += gspca_dev->usb_buf[0];
894 sd->contrast = tot << 6;
895 break;
896 default:
897 /* case Rev012A: */
898 /* no way to read sensor settings */
899 break;
901 PDEBUG(D_CONF, "get contrast %d", sd->contrast);
904 static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val)
906 struct sd *sd = (struct sd *) gspca_dev;
908 sd->brightness = val;
909 if (gspca_dev->streaming)
910 setbrightness(gspca_dev);
911 return 0;
914 static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val)
916 struct sd *sd = (struct sd *) gspca_dev;
918 getbrightness(gspca_dev);
919 *val = sd->brightness;
920 return 0;
923 static int sd_setcontrast(struct gspca_dev *gspca_dev, __s32 val)
925 struct sd *sd = (struct sd *) gspca_dev;
927 sd->contrast = val;
928 if (gspca_dev->streaming)
929 setcontrast(gspca_dev);
930 return 0;
933 static int sd_getcontrast(struct gspca_dev *gspca_dev, __s32 *val)
935 struct sd *sd = (struct sd *) gspca_dev;
937 getcontrast(gspca_dev);
938 *val = sd->contrast;
939 return 0;
942 static int sd_setautogain(struct gspca_dev *gspca_dev, __s32 val)
944 struct sd *sd = (struct sd *) gspca_dev;
946 sd->autogain = val;
947 if (val)
948 sd->ag_cnt = AG_CNT_START;
949 else
950 sd->ag_cnt = -1;
951 return 0;
954 static int sd_getautogain(struct gspca_dev *gspca_dev, __s32 *val)
956 struct sd *sd = (struct sd *) gspca_dev;
958 *val = sd->autogain;
959 return 0;
962 /* sub-driver description */
963 static const struct sd_desc sd_desc = {
964 .name = MODULE_NAME,
965 .ctrls = sd_ctrls,
966 .nctrls = ARRAY_SIZE(sd_ctrls),
967 .config = sd_config,
968 .open = sd_open,
969 .start = sd_start,
970 .stopN = sd_stopN,
971 .stop0 = sd_stop0,
972 .close = sd_close,
973 .pkt_scan = sd_pkt_scan,
976 /* -- module initialisation -- */
977 static const __devinitdata struct usb_device_id device_table[] = {
978 {USB_DEVICE(0x041e, 0x401a), Rev072A},
979 {USB_DEVICE(0x041e, 0x403b), Rev012A},
980 {USB_DEVICE(0x0458, 0x7004), Rev072A},
981 {USB_DEVICE(0x046d, 0x0928), Rev012A},
982 {USB_DEVICE(0x046d, 0x0929), Rev012A},
983 {USB_DEVICE(0x046d, 0x092a), Rev012A},
984 {USB_DEVICE(0x046d, 0x092b), Rev012A},
985 {USB_DEVICE(0x046d, 0x092c), Rev012A},
986 {USB_DEVICE(0x046d, 0x092d), Rev012A},
987 {USB_DEVICE(0x046d, 0x092e), Rev012A},
988 {USB_DEVICE(0x046d, 0x092f), Rev012A},
989 {USB_DEVICE(0x04fc, 0x0561), Rev072A},
990 {USB_DEVICE(0x060b, 0xa001), Rev072A},
991 {USB_DEVICE(0x10fd, 0x7e50), Rev072A},
992 {USB_DEVICE(0xabcd, 0xcdee), Rev072A},
996 MODULE_DEVICE_TABLE(usb, device_table);
998 /* -- device connect -- */
999 static int sd_probe(struct usb_interface *intf,
1000 const struct usb_device_id *id)
1002 return gspca_dev_probe(intf, id, &sd_desc, sizeof(struct sd),
1003 THIS_MODULE);
1006 static struct usb_driver sd_driver = {
1007 .name = MODULE_NAME,
1008 .id_table = device_table,
1009 .probe = sd_probe,
1010 .disconnect = gspca_disconnect,
1013 /* -- module insert / remove -- */
1014 static int __init sd_mod_init(void)
1016 if (usb_register(&sd_driver) < 0)
1017 return -1;
1018 PDEBUG(D_PROBE, "registered");
1019 return 0;
1021 static void __exit sd_mod_exit(void)
1023 usb_deregister(&sd_driver);
1024 PDEBUG(D_PROBE, "deregistered");
1027 module_init(sd_mod_init);
1028 module_exit(sd_mod_exit);