Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6
[pandora-kernel.git] / drivers / media / video / gspca / sonixj.c
1 /*
2  * Sonix sn9c102p sn9c105 sn9c120 (jpeg) subdriver
3  *
4  * Copyright (C) 2009-2010 Jean-François Moine <http://moinejf.free.fr>
5  * Copyright (C) 2005 Michel Xhaard mxhaard@magic.fr
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20  */
21
22 #define MODULE_NAME "sonixj"
23
24 #include <linux/input.h>
25 #include "gspca.h"
26 #include "jpeg.h"
27
28 MODULE_AUTHOR("Jean-François Moine <http://moinejf.free.fr>");
29 MODULE_DESCRIPTION("GSPCA/SONIX JPEG USB Camera Driver");
30 MODULE_LICENSE("GPL");
31
32 static int starcam;
33
34 /* controls */
35 enum e_ctrl {
36         BRIGHTNESS,
37         CONTRAST,
38         COLORS,
39         BLUE,
40         RED,
41         GAMMA,
42         AUTOGAIN,
43         HFLIP,
44         VFLIP,
45         SHARPNESS,
46         ILLUM,
47         FREQ,
48         NCTRLS          /* number of controls */
49 };
50
51 /* specific webcam descriptor */
52 struct sd {
53         struct gspca_dev gspca_dev;     /* !! must be the first item */
54
55         struct gspca_ctrl ctrls[NCTRLS];
56
57         atomic_t avg_lum;
58         u32 exposure;
59
60         u8 quality;                     /* image quality */
61 #define QUALITY_MIN 60
62 #define QUALITY_MAX 95
63 #define QUALITY_DEF 80
64         u8 jpegqual;                    /* webcam quality */
65
66         u8 reg01;
67         u8 reg17;
68         u8 reg18;
69         u8 flags;
70
71         s8 ag_cnt;
72 #define AG_CNT_START 13
73
74         u8 bridge;
75 #define BRIDGE_SN9C102P 0
76 #define BRIDGE_SN9C105 1
77 #define BRIDGE_SN9C110 2
78 #define BRIDGE_SN9C120 3
79         u8 sensor;                      /* Type of image sensor chip */
80         u8 i2c_addr;
81
82         u8 jpeg_hdr[JPEG_HDR_SZ];
83 };
84 enum sensors {
85         SENSOR_ADCM1700,
86         SENSOR_GC0307,
87         SENSOR_HV7131R,
88         SENSOR_MI0360,
89         SENSOR_MI0360B,
90         SENSOR_MO4000,
91         SENSOR_MT9V111,
92         SENSOR_OM6802,
93         SENSOR_OV7630,
94         SENSOR_OV7648,
95         SENSOR_OV7660,
96         SENSOR_PO1030,
97         SENSOR_PO2030N,
98         SENSOR_SOI768,
99         SENSOR_SP80708,
100 };
101
102 /* device flags */
103 #define F_PDN_INV       0x01    /* inverse pin S_PWR_DN / sn_xxx tables */
104 #define F_ILLUM         0x02    /* presence of illuminator */
105
106 /* sn9c1xx definitions */
107 /* register 0x01 */
108 #define S_PWR_DN        0x01    /* sensor power down */
109 #define S_PDN_INV       0x02    /* inverse pin S_PWR_DN */
110 #define V_TX_EN         0x04    /* video transfer enable */
111 #define LED             0x08    /* output to pin LED */
112 #define SCL_SEL_OD      0x20    /* open-drain mode */
113 #define SYS_SEL_48M     0x40    /* system clock 0: 24MHz, 1: 48MHz */
114 /* register 0x17 */
115 #define MCK_SIZE_MASK   0x1f    /* sensor master clock */
116 #define SEN_CLK_EN      0x20    /* enable sensor clock */
117 #define DEF_EN          0x80    /* defect pixel by 0: soft, 1: hard */
118
119 /* V4L2 controls supported by the driver */
120 static void setbrightness(struct gspca_dev *gspca_dev);
121 static void setcontrast(struct gspca_dev *gspca_dev);
122 static void setcolors(struct gspca_dev *gspca_dev);
123 static void setredblue(struct gspca_dev *gspca_dev);
124 static void setgamma(struct gspca_dev *gspca_dev);
125 static void setautogain(struct gspca_dev *gspca_dev);
126 static void sethvflip(struct gspca_dev *gspca_dev);
127 static void setsharpness(struct gspca_dev *gspca_dev);
128 static void setillum(struct gspca_dev *gspca_dev);
129 static void setfreq(struct gspca_dev *gspca_dev);
130
131 static const struct ctrl sd_ctrls[NCTRLS] = {
132 [BRIGHTNESS] =  {
133             {
134                 .id      = V4L2_CID_BRIGHTNESS,
135                 .type    = V4L2_CTRL_TYPE_INTEGER,
136                 .name    = "Brightness",
137                 .minimum = 0,
138                 .maximum = 0xff,
139                 .step    = 1,
140                 .default_value = 0x80,
141             },
142             .set_control = setbrightness
143         },
144 [CONTRAST] = {
145             {
146                 .id      = V4L2_CID_CONTRAST,
147                 .type    = V4L2_CTRL_TYPE_INTEGER,
148                 .name    = "Contrast",
149                 .minimum = 0,
150 #define CONTRAST_MAX 127
151                 .maximum = CONTRAST_MAX,
152                 .step    = 1,
153                 .default_value = 63,
154             },
155             .set_control = setcontrast
156         },
157 [COLORS] = {
158             {
159                 .id      = V4L2_CID_SATURATION,
160                 .type    = V4L2_CTRL_TYPE_INTEGER,
161                 .name    = "Saturation",
162                 .minimum = 0,
163                 .maximum = 40,
164                 .step    = 1,
165 #define COLORS_DEF 25
166                 .default_value = COLORS_DEF,
167             },
168             .set_control = setcolors
169         },
170 [BLUE] = {
171             {
172                 .id      = V4L2_CID_BLUE_BALANCE,
173                 .type    = V4L2_CTRL_TYPE_INTEGER,
174                 .name    = "Blue Balance",
175                 .minimum = 24,
176                 .maximum = 40,
177                 .step    = 1,
178                 .default_value = 32,
179             },
180             .set_control = setredblue
181         },
182 [RED] = {
183             {
184                 .id      = V4L2_CID_RED_BALANCE,
185                 .type    = V4L2_CTRL_TYPE_INTEGER,
186                 .name    = "Red Balance",
187                 .minimum = 24,
188                 .maximum = 40,
189                 .step    = 1,
190                 .default_value = 32,
191             },
192             .set_control = setredblue
193         },
194 [GAMMA] = {
195             {
196                 .id      = V4L2_CID_GAMMA,
197                 .type    = V4L2_CTRL_TYPE_INTEGER,
198                 .name    = "Gamma",
199                 .minimum = 0,
200                 .maximum = 40,
201                 .step    = 1,
202 #define GAMMA_DEF 20
203                 .default_value = GAMMA_DEF,
204             },
205             .set_control = setgamma
206         },
207 [AUTOGAIN] = {
208             {
209                 .id      = V4L2_CID_AUTOGAIN,
210                 .type    = V4L2_CTRL_TYPE_BOOLEAN,
211                 .name    = "Auto Gain",
212                 .minimum = 0,
213                 .maximum = 1,
214                 .step    = 1,
215                 .default_value = 1
216             },
217             .set_control = setautogain
218         },
219 [HFLIP] = {
220             {
221                 .id      = V4L2_CID_HFLIP,
222                 .type    = V4L2_CTRL_TYPE_BOOLEAN,
223                 .name    = "Mirror",
224                 .minimum = 0,
225                 .maximum = 1,
226                 .step    = 1,
227                 .default_value = 0,
228             },
229             .set_control = sethvflip
230         },
231 [VFLIP] = {
232             {
233                 .id      = V4L2_CID_VFLIP,
234                 .type    = V4L2_CTRL_TYPE_BOOLEAN,
235                 .name    = "Vflip",
236                 .minimum = 0,
237                 .maximum = 1,
238                 .step    = 1,
239                 .default_value = 0,
240             },
241             .set_control = sethvflip
242         },
243 [SHARPNESS] = {
244             {
245                 .id      = V4L2_CID_SHARPNESS,
246                 .type    = V4L2_CTRL_TYPE_INTEGER,
247                 .name    = "Sharpness",
248                 .minimum = 0,
249                 .maximum = 255,
250                 .step    = 1,
251                 .default_value = 90,
252             },
253             .set_control = setsharpness
254         },
255 [ILLUM] = {
256             {
257                 .id      = V4L2_CID_ILLUMINATORS_1,
258                 .type    = V4L2_CTRL_TYPE_BOOLEAN,
259                 .name    = "Illuminator / infrared",
260                 .minimum = 0,
261                 .maximum = 1,
262                 .step    = 1,
263                 .default_value = 0,
264             },
265             .set_control = setillum
266         },
267 /* ov7630/ov7648/ov7660 only */
268 [FREQ] = {
269             {
270                 .id      = V4L2_CID_POWER_LINE_FREQUENCY,
271                 .type    = V4L2_CTRL_TYPE_MENU,
272                 .name    = "Light frequency filter",
273                 .minimum = 0,
274                 .maximum = 2,   /* 0: 0, 1: 50Hz, 2:60Hz */
275                 .step    = 1,
276                 .default_value = 1,
277             },
278             .set_control = setfreq
279         },
280 };
281
282 /* table of the disabled controls */
283 static const __u32 ctrl_dis[] = {
284 [SENSOR_ADCM1700] =     (1 << AUTOGAIN) |
285                         (1 << HFLIP) |
286                         (1 << VFLIP) |
287                         (1 << FREQ),
288
289 [SENSOR_GC0307] =       (1 << HFLIP) |
290                         (1 << VFLIP) |
291                         (1 << FREQ),
292
293 [SENSOR_HV7131R] =      (1 << HFLIP) |
294                         (1 << FREQ),
295
296 [SENSOR_MI0360] =       (1 << HFLIP) |
297                         (1 << VFLIP) |
298                         (1 << FREQ),
299
300 [SENSOR_MI0360B] =      (1 << HFLIP) |
301                         (1 << VFLIP) |
302                         (1 << FREQ),
303
304 [SENSOR_MO4000] =       (1 << HFLIP) |
305                         (1 << VFLIP) |
306                         (1 << FREQ),
307
308 [SENSOR_MT9V111] =      (1 << HFLIP) |
309                         (1 << VFLIP) |
310                         (1 << FREQ),
311
312 [SENSOR_OM6802] =       (1 << HFLIP) |
313                         (1 << VFLIP) |
314                         (1 << FREQ),
315
316 [SENSOR_OV7630] =       (1 << HFLIP),
317
318 [SENSOR_OV7648] =       (1 << HFLIP),
319
320 [SENSOR_OV7660] =       (1 << AUTOGAIN) |
321                         (1 << HFLIP) |
322                         (1 << VFLIP),
323
324 [SENSOR_PO1030] =       (1 << AUTOGAIN) |
325                         (1 << HFLIP) |
326                         (1 << VFLIP) |
327                         (1 << FREQ),
328
329 [SENSOR_PO2030N] =      (1 << AUTOGAIN) |
330                         (1 << FREQ),
331
332 [SENSOR_SOI768] =       (1 << AUTOGAIN) |
333                         (1 << HFLIP) |
334                         (1 << VFLIP) |
335                         (1 << FREQ),
336
337 [SENSOR_SP80708] =      (1 << AUTOGAIN) |
338                         (1 << HFLIP) |
339                         (1 << VFLIP) |
340                         (1 << FREQ),
341 };
342
343 static const struct v4l2_pix_format cif_mode[] = {
344         {352, 288, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
345                 .bytesperline = 352,
346                 .sizeimage = 352 * 288 * 4 / 8 + 590,
347                 .colorspace = V4L2_COLORSPACE_JPEG,
348                 .priv = 0},
349 };
350 static const struct v4l2_pix_format vga_mode[] = {
351         {160, 120, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
352                 .bytesperline = 160,
353                 .sizeimage = 160 * 120 * 4 / 8 + 590,
354                 .colorspace = V4L2_COLORSPACE_JPEG,
355                 .priv = 2},
356         {320, 240, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
357                 .bytesperline = 320,
358                 .sizeimage = 320 * 240 * 3 / 8 + 590,
359                 .colorspace = V4L2_COLORSPACE_JPEG,
360                 .priv = 1},
361         {640, 480, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
362                 .bytesperline = 640,
363                 /* Note 3 / 8 is not large enough, not even 5 / 8 is ?! */
364                 .sizeimage = 640 * 480 * 3 / 4 + 590,
365                 .colorspace = V4L2_COLORSPACE_JPEG,
366                 .priv = 0},
367 };
368
369 static const u8 sn_adcm1700[0x1c] = {
370 /*      reg0    reg1    reg2    reg3    reg4    reg5    reg6    reg7 */
371         0x00,   0x43,   0x60,   0x00,   0x1a,   0x00,   0x00,   0x00,
372 /*      reg8    reg9    rega    regb    regc    regd    rege    regf */
373         0x80,   0x51,   0x00,   0x00,   0x00,   0x00,   0x00,   0x00,
374 /*      reg10   reg11   reg12   reg13   reg14   reg15   reg16   reg17 */
375         0x03,   0x00,   0x05,   0x01,   0x05,   0x16,   0x12,   0x42,
376 /*      reg18   reg19   reg1a   reg1b */
377         0x06,   0x00,   0x00,   0x00
378 };
379
380 static const u8 sn_gc0307[0x1c] = {
381 /*      reg0    reg1    reg2    reg3    reg4    reg5    reg6    reg7 */
382         0x00,   0x61,   0x62,   0x00,   0x1a,   0x00,   0x00,   0x00,
383 /*      reg8    reg9    rega    regb    regc    regd    rege    regf */
384         0x80,   0x21,   0x00,   0x00,   0x00,   0x00,   0x00,   0x00,
385 /*      reg10   reg11   reg12   reg13   reg14   reg15   reg16   reg17 */
386         0x03,   0x00,   0x03,   0x01,   0x08,   0x28,   0x1e,   0x02,
387 /*      reg18   reg19   reg1a   reg1b */
388         0x06,   0x00,   0x00,   0x00
389 };
390
391 static const u8 sn_hv7131[0x1c] = {
392 /*      reg0    reg1    reg2    reg3    reg4    reg5    reg6    reg7 */
393         0x00,   0x03,   0x60,   0x00,   0x1a,   0x20,   0x20,   0x20,
394 /*      reg8    reg9    rega    regb    regc    regd    rege    regf */
395         0x81,   0x11,   0x00,   0x00,   0x00,   0x00,   0x00,   0x00,
396 /*      reg10   reg11   reg12   reg13   reg14   reg15   reg16   reg17 */
397         0x03,   0x00,   0x00,   0x01,   0x03,   0x28,   0x1e,   0x41,
398 /*      reg18   reg19   reg1a   reg1b */
399         0x0a,   0x00,   0x00,   0x00
400 };
401
402 static const u8 sn_mi0360[0x1c] = {
403 /*      reg0    reg1    reg2    reg3    reg4    reg5    reg6    reg7 */
404         0x00,   0x61,   0x40,   0x00,   0x1a,   0x20,   0x20,   0x20,
405 /*      reg8    reg9    rega    regb    regc    regd    rege    regf */
406         0x81,   0x5d,   0x00,   0x00,   0x00,   0x00,   0x00,   0x00,
407 /*      reg10   reg11   reg12   reg13   reg14   reg15   reg16   reg17 */
408         0x03,   0x00,   0x00,   0x02,   0x0a,   0x28,   0x1e,   0x61,
409 /*      reg18   reg19   reg1a   reg1b */
410         0x06,   0x00,   0x00,   0x00
411 };
412
413 static const u8 sn_mi0360b[0x1c] = {
414 /*      reg0    reg1    reg2    reg3    reg4    reg5    reg6    reg7 */
415         0x00,   0x61,   0x40,   0x00,   0x1a,   0x00,   0x00,   0x00,
416 /*      reg8    reg9    rega    regb    regc    regd    rege    regf */
417         0x81,   0x5d,   0x00,   0x00,   0x00,   0x00,   0x00,   0x00,
418 /*      reg10   reg11   reg12   reg13   reg14   reg15   reg16   reg17 */
419         0x03,   0x00,   0x00,   0x02,   0x0a,   0x28,   0x1e,   0x40,
420 /*      reg18   reg19   reg1a   reg1b */
421         0x06,   0x00,   0x00,   0x00
422 };
423
424 static const u8 sn_mo4000[0x1c] = {
425 /*      reg0    reg1    reg2    reg3    reg4    reg5    reg6    reg7 */
426         0x00,   0x23,   0x60,   0x00,   0x1a,   0x00,   0x20,   0x18,
427 /*      reg8    reg9    rega    regb    regc    regd    rege    regf */
428         0x81,   0x21,   0x00,   0x00,   0x00,   0x00,   0x00,   0x00,
429 /*      reg10   reg11   reg12   reg13   reg14   reg15   reg16   reg17 */
430         0x03,    0x00,  0x0b,   0x0f,   0x14,   0x28,   0x1e,   0x40,
431 /*      reg18   reg19   reg1a   reg1b */
432         0x08,   0x00,   0x00,   0x00
433 };
434
435 static const u8 sn_mt9v111[0x1c] = {
436 /*      reg0    reg1    reg2    reg3    reg4    reg5    reg6    reg7 */
437         0x00,   0x61,   0x40,   0x00,   0x1a,   0x20,   0x20,   0x20,
438 /*      reg8    reg9    rega    regb    regc    regd    rege    regf */
439         0x81,   0x5c,   0x00,   0x00,   0x00,   0x00,   0x00,   0x00,
440 /*      reg10   reg11   reg12   reg13   reg14   reg15   reg16   reg17 */
441         0x03,   0x00,   0x00,   0x02,   0x1c,   0x28,   0x1e,   0x40,
442 /*      reg18   reg19   reg1a   reg1b */
443         0x06,   0x00,   0x00,   0x00
444 };
445
446 static const u8 sn_om6802[0x1c] = {
447 /*      reg0    reg1    reg2    reg3    reg4    reg5    reg6    reg7 */
448         0x00,   0x23,   0x72,   0x00,   0x1a,   0x20,   0x20,   0x19,
449 /*      reg8    reg9    rega    regb    regc    regd    rege    regf */
450         0x80,   0x34,   0x00,   0x00,   0x00,   0x00,   0x00,   0x00,
451 /*      reg10   reg11   reg12   reg13   reg14   reg15   reg16   reg17 */
452         0x03,   0x00,   0x51,   0x01,   0x00,   0x28,   0x1e,   0x40,
453 /*      reg18   reg19   reg1a   reg1b */
454         0x05,   0x00,   0x00,   0x00
455 };
456
457 static const u8 sn_ov7630[0x1c] = {
458 /*      reg0    reg1    reg2    reg3    reg4    reg5    reg6    reg7 */
459         0x00,   0x21,   0x40,   0x00,   0x1a,   0x00,   0x00,   0x00,
460 /*      reg8    reg9    rega    regb    regc    regd    rege    regf */
461         0x81,   0x21,   0x00,   0x00,   0x00,   0x00,   0x00,   0x00,
462 /*      reg10   reg11   reg12   reg13   reg14   reg15   reg16   reg17 */
463         0x03,   0x00,   0x04,   0x01,   0x0a,   0x28,   0x1e,   0xc2,
464 /*      reg18   reg19   reg1a   reg1b */
465         0x0b,   0x00,   0x00,   0x00
466 };
467
468 static const u8 sn_ov7648[0x1c] = {
469 /*      reg0    reg1    reg2    reg3    reg4    reg5    reg6    reg7 */
470         0x00,   0x63,   0x40,   0x00,   0x1a,   0x20,   0x20,   0x20,
471 /*      reg8    reg9    rega    regb    regc    regd    rege    regf */
472         0x81,   0x21,   0x00,   0x00,   0x00,   0x00,   0x00,   0x00,
473 /*      reg10   reg11   reg12   reg13   reg14   reg15   reg16   reg17 */
474         0x03,   0x00,   0x00,   0x01,   0x00,   0x28,   0x1e,   0x00,
475 /*      reg18   reg19   reg1a   reg1b */
476         0x0b,   0x00,   0x00,   0x00
477 };
478
479 static const u8 sn_ov7660[0x1c] = {
480 /*      reg0    reg1    reg2    reg3    reg4    reg5    reg6    reg7 */
481         0x00,   0x61,   0x40,   0x00,   0x1a,   0x00,   0x00,   0x00,
482 /*      reg8    reg9    rega    regb    regc    regd    rege    regf */
483         0x81,   0x21,   0x00,   0x00,   0x00,   0x00,   0x00,   0x00,
484 /*      reg10   reg11   reg12   reg13   reg14   reg15   reg16   reg17 */
485         0x03,   0x00,   0x01,   0x01,   0x08,   0x28,   0x1e,   0x20,
486 /*      reg18   reg19   reg1a   reg1b */
487         0x07,   0x00,   0x00,   0x00
488 };
489
490 static const u8 sn_po1030[0x1c] = {
491 /*      reg0    reg1    reg2    reg3    reg4    reg5    reg6    reg7 */
492         0x00,   0x21,   0x62,   0x00,   0x1a,   0x20,   0x20,   0x20,
493 /*      reg8    reg9    rega    regb    regc    regd    rege    regf */
494         0x81,   0x6e,   0x00,   0x00,   0x00,   0x00,   0x00,   0x00,
495 /*      reg10   reg11   reg12   reg13   reg14   reg15   reg16   reg17 */
496         0x03,   0x00,   0x00,   0x06,   0x06,   0x28,   0x1e,   0x00,
497 /*      reg18   reg19   reg1a   reg1b */
498         0x07,   0x00,   0x00,   0x00
499 };
500
501 static const u8 sn_po2030n[0x1c] = {
502 /*      reg0    reg1    reg2    reg3    reg4    reg5    reg6    reg7 */
503         0x00,   0x63,   0x40,   0x00,   0x1a,   0x00,   0x00,   0x00,
504 /*      reg8    reg9    rega    regb    regc    regd    rege    regf */
505         0x81,   0x6e,   0x00,   0x00,   0x00,   0x00,   0x00,   0x00,
506 /*      reg10   reg11   reg12   reg13   reg14   reg15   reg16   reg17 */
507         0x03,   0x00,   0x00,   0x01,   0x14,   0x28,   0x1e,   0x00,
508 /*      reg18   reg19   reg1a   reg1b */
509         0x07,   0x00,   0x00,   0x00
510 };
511
512 static const u8 sn_soi768[0x1c] = {
513 /*      reg0    reg1    reg2    reg3    reg4    reg5    reg6    reg7 */
514         0x00,   0x21,   0x40,   0x00,   0x1a,   0x00,   0x00,   0x00,
515 /*      reg8    reg9    rega    regb    regc    regd    rege    regf */
516         0x81,   0x21,   0x00,   0x00,   0x00,   0x00,   0x00,   0x00,
517 /*      reg10   reg11   reg12   reg13   reg14   reg15   reg16   reg17 */
518         0x03,   0x00,   0x00,   0x01,   0x08,   0x28,   0x1e,   0x00,
519 /*      reg18   reg19   reg1a   reg1b */
520         0x07,   0x00,   0x00,   0x00
521 };
522
523 static const u8 sn_sp80708[0x1c] = {
524 /*      reg0    reg1    reg2    reg3    reg4    reg5    reg6    reg7 */
525         0x00,   0x63,   0x60,   0x00,   0x1a,   0x20,   0x20,   0x20,
526 /*      reg8    reg9    rega    regb    regc    regd    rege    regf */
527         0x81,   0x18,   0x00,   0x00,   0x00,   0x00,   0x00,   0x00,
528 /*      reg10   reg11   reg12   reg13   reg14   reg15   reg16   reg17 */
529         0x03,   0x00,   0x00,   0x03,   0x04,   0x28,   0x1e,   0x00,
530 /*      reg18   reg19   reg1a   reg1b */
531         0x07,   0x00,   0x00,   0x00
532 };
533
534 /* sequence specific to the sensors - !! index = SENSOR_xxx */
535 static const u8 *sn_tb[] = {
536 [SENSOR_ADCM1700] =     sn_adcm1700,
537 [SENSOR_GC0307] =       sn_gc0307,
538 [SENSOR_HV7131R] =      sn_hv7131,
539 [SENSOR_MI0360] =       sn_mi0360,
540 [SENSOR_MI0360B] =      sn_mi0360b,
541 [SENSOR_MO4000] =       sn_mo4000,
542 [SENSOR_MT9V111] =      sn_mt9v111,
543 [SENSOR_OM6802] =       sn_om6802,
544 [SENSOR_OV7630] =       sn_ov7630,
545 [SENSOR_OV7648] =       sn_ov7648,
546 [SENSOR_OV7660] =       sn_ov7660,
547 [SENSOR_PO1030] =       sn_po1030,
548 [SENSOR_PO2030N] =      sn_po2030n,
549 [SENSOR_SOI768] =       sn_soi768,
550 [SENSOR_SP80708] =      sn_sp80708,
551 };
552
553 /* default gamma table */
554 static const u8 gamma_def[17] = {
555         0x00, 0x2d, 0x46, 0x5a, 0x6c, 0x7c, 0x8b, 0x99,
556         0xa6, 0xb2, 0xbf, 0xca, 0xd5, 0xe0, 0xeb, 0xf5, 0xff
557 };
558 /* gamma for sensor ADCM1700 */
559 static const u8 gamma_spec_0[17] = {
560         0x0f, 0x39, 0x5a, 0x74, 0x86, 0x95, 0xa6, 0xb4,
561         0xbd, 0xc4, 0xcc, 0xd4, 0xd5, 0xde, 0xe4, 0xed, 0xf5
562 };
563 /* gamma for sensors HV7131R and MT9V111 */
564 static const u8 gamma_spec_1[17] = {
565         0x08, 0x3a, 0x52, 0x65, 0x75, 0x83, 0x91, 0x9d,
566         0xa9, 0xb4, 0xbe, 0xc8, 0xd2, 0xdb, 0xe4, 0xed, 0xf5
567 };
568 /* gamma for sensor GC0307 */
569 static const u8 gamma_spec_2[17] = {
570         0x14, 0x37, 0x50, 0x6a, 0x7c, 0x8d, 0x9d, 0xab,
571         0xb5, 0xbf, 0xc2, 0xcb, 0xd1, 0xd6, 0xdb, 0xe1, 0xeb
572 };
573 /* gamma for sensor SP80708 */
574 static const u8 gamma_spec_3[17] = {
575         0x0a, 0x2d, 0x4e, 0x68, 0x7d, 0x8f, 0x9f, 0xab,
576         0xb7, 0xc2, 0xcc, 0xd3, 0xd8, 0xde, 0xe2, 0xe5, 0xe6
577 };
578
579 /* color matrix and offsets */
580 static const u8 reg84[] = {
581         0x14, 0x00, 0x27, 0x00, 0x07, 0x00,     /* YR YG YB gains */
582         0xe8, 0x0f, 0xda, 0x0f, 0x40, 0x00,     /* UR UG UB */
583         0x3e, 0x00, 0xcd, 0x0f, 0xf7, 0x0f,     /* VR VG VB */
584         0x00, 0x00, 0x00                        /* YUV offsets */
585 };
586
587 #define DELAY   0xdd
588
589 static const u8 adcm1700_sensor_init[][8] = {
590         {0xa0, 0x51, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x10},
591         {0xb0, 0x51, 0x04, 0x08, 0x00, 0x00, 0x00, 0x10},       /* reset */
592         {DELAY, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
593         {0xb0, 0x51, 0x04, 0x00, 0x00, 0x00, 0x00, 0x10},
594         {DELAY, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
595         {0xb0, 0x51, 0x0c, 0xe0, 0x2e, 0x00, 0x00, 0x10},
596         {0xb0, 0x51, 0x10, 0x02, 0x02, 0x00, 0x00, 0x10},
597         {0xb0, 0x51, 0x14, 0x0e, 0x0e, 0x00, 0x00, 0x10},
598         {0xb0, 0x51, 0x1c, 0x00, 0x80, 0x00, 0x00, 0x10},
599         {0xb0, 0x51, 0x20, 0x01, 0x00, 0x00, 0x00, 0x10},
600         {DELAY, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
601         {0xb0, 0x51, 0x04, 0x04, 0x00, 0x00, 0x00, 0x10},
602         {DELAY, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
603         {0xb0, 0x51, 0x04, 0x01, 0x00, 0x00, 0x00, 0x10},
604         {0xa0, 0x51, 0xfe, 0x10, 0x00, 0x00, 0x00, 0x10},
605         {0xb0, 0x51, 0x14, 0x01, 0x00, 0x00, 0x00, 0x10},
606         {0xb0, 0x51, 0x32, 0x00, 0x00, 0x00, 0x00, 0x10},
607         {}
608 };
609 static const u8 adcm1700_sensor_param1[][8] = {
610         {0xb0, 0x51, 0x26, 0xf9, 0x01, 0x00, 0x00, 0x10},       /* exposure? */
611         {0xd0, 0x51, 0x1e, 0x8e, 0x8e, 0x8e, 0x8e, 0x10},
612
613         {0xa0, 0x51, 0xfe, 0x01, 0x00, 0x00, 0x00, 0x10},
614         {0xb0, 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10},
615         {0xa0, 0x51, 0xfe, 0x10, 0x00, 0x00, 0x00, 0x10},
616         {0xb0, 0x51, 0x32, 0x00, 0x72, 0x00, 0x00, 0x10},
617         {0xd0, 0x51, 0x1e, 0xbe, 0xd7, 0xe8, 0xbe, 0x10},       /* exposure? */
618
619         {0xa0, 0x51, 0xfe, 0x01, 0x00, 0x00, 0x00, 0x10},
620         {0xb0, 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10},
621         {0xa0, 0x51, 0xfe, 0x10, 0x00, 0x00, 0x00, 0x10},
622         {0xb0, 0x51, 0x32, 0x00, 0xa2, 0x00, 0x00, 0x10},
623         {}
624 };
625 static const u8 gc0307_sensor_init[][8] = {
626         {0xa0, 0x21, 0x43, 0x00, 0x00, 0x00, 0x00, 0x10},
627         {0xa0, 0x21, 0x44, 0xa2, 0x00, 0x00, 0x00, 0x10},
628         {0xa0, 0x21, 0x01, 0x6a, 0x00, 0x00, 0x00, 0x10},
629         {0xa0, 0x21, 0x02, 0x70, 0x00, 0x00, 0x00, 0x10},
630         {0xa0, 0x21, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
631         {0xa0, 0x21, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x10},
632         {0xa0, 0x21, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x10},
633         {0xa0, 0x21, 0x11, 0x05, 0x00, 0x00, 0x00, 0x10},
634         {0xa0, 0x21, 0x05, 0x00, 0x00, 0x00, 0x00, 0x10},
635         {0xa0, 0x21, 0x06, 0x00, 0x00, 0x00, 0x00, 0x10},
636         {0xa0, 0x21, 0x07, 0x00, 0x00, 0x00, 0x00, 0x10},
637         {0xa0, 0x21, 0x08, 0x02, 0x00, 0x00, 0x00, 0x10},
638         {0xa0, 0x21, 0x09, 0x01, 0x00, 0x00, 0x00, 0x10},
639         {0xa0, 0x21, 0x0a, 0xe8, 0x00, 0x00, 0x00, 0x10},
640         {0xa0, 0x21, 0x0b, 0x02, 0x00, 0x00, 0x00, 0x10},
641         {0xa0, 0x21, 0x0c, 0x80, 0x00, 0x00, 0x00, 0x10},
642         {0xa0, 0x21, 0x0d, 0x22, 0x00, 0x00, 0x00, 0x10},
643         {0xa0, 0x21, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x10},
644         {0xa0, 0x21, 0x0f, 0xb2, 0x00, 0x00, 0x00, 0x10},
645         {0xa0, 0x21, 0x12, 0x70, 0x00, 0x00, 0x00, 0x10},
646         {DELAY, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /*delay 10ms*/
647         {0xa0, 0x21, 0x13, 0x00, 0x00, 0x00, 0x00, 0x10},
648         {0xa0, 0x21, 0x15, 0xb8, 0x00, 0x00, 0x00, 0x10},
649         {0xa0, 0x21, 0x16, 0x13, 0x00, 0x00, 0x00, 0x10},
650         {0xa0, 0x21, 0x17, 0x52, 0x00, 0x00, 0x00, 0x10},
651         {0xa0, 0x21, 0x18, 0x50, 0x00, 0x00, 0x00, 0x10},
652         {0xa0, 0x21, 0x1e, 0x0d, 0x00, 0x00, 0x00, 0x10},
653         {0xa0, 0x21, 0x1f, 0x32, 0x00, 0x00, 0x00, 0x10},
654         {0xa0, 0x21, 0x61, 0x90, 0x00, 0x00, 0x00, 0x10},
655         {0xa0, 0x21, 0x63, 0x70, 0x00, 0x00, 0x00, 0x10},
656         {0xa0, 0x21, 0x65, 0x98, 0x00, 0x00, 0x00, 0x10},
657         {0xa0, 0x21, 0x67, 0x90, 0x00, 0x00, 0x00, 0x10},
658         {0xa0, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
659         {0xa0, 0x21, 0x04, 0x96, 0x00, 0x00, 0x00, 0x10},
660         {0xa0, 0x21, 0x45, 0x27, 0x00, 0x00, 0x00, 0x10},
661         {0xa0, 0x21, 0x47, 0x2c, 0x00, 0x00, 0x00, 0x10},
662         {0xa0, 0x21, 0x43, 0x47, 0x00, 0x00, 0x00, 0x10},
663         {0xa0, 0x21, 0x44, 0xd8, 0x00, 0x00, 0x00, 0x10},
664         {}
665 };
666 static const u8 gc0307_sensor_param1[][8] = {
667         {0xa0, 0x21, 0x68, 0x13, 0x00, 0x00, 0x00, 0x10},
668         {0xd0, 0x21, 0x61, 0x80, 0x00, 0x80, 0x00, 0x10},
669         {0xc0, 0x21, 0x65, 0x80, 0x00, 0x80, 0x00, 0x10},
670         {0xc0, 0x21, 0x63, 0xa0, 0x00, 0xa6, 0x00, 0x10},
671 /*param3*/
672         {0xa0, 0x21, 0x01, 0x6e, 0x00, 0x00, 0x00, 0x10},
673         {0xa0, 0x21, 0x02, 0x88, 0x00, 0x00, 0x00, 0x10},
674         {}
675 };
676
677 static const u8 hv7131r_sensor_init[][8] = {
678         {0xc1, 0x11, 0x01, 0x08, 0x01, 0x00, 0x00, 0x10},
679         {0xb1, 0x11, 0x34, 0x17, 0x7f, 0x00, 0x00, 0x10},
680         {0xd1, 0x11, 0x40, 0xff, 0x7f, 0x7f, 0x7f, 0x10},
681 /*      {0x91, 0x11, 0x44, 0x00, 0x00, 0x00, 0x00, 0x10}, */
682         {0xd1, 0x11, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
683         {0xd1, 0x11, 0x14, 0x01, 0xe2, 0x02, 0x82, 0x10},
684 /*      {0x91, 0x11, 0x18, 0x00, 0x00, 0x00, 0x00, 0x10}, */
685
686         {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
687         {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
688         {0xc1, 0x11, 0x25, 0x00, 0x61, 0xa8, 0x00, 0x10},
689         {0xa1, 0x11, 0x30, 0x22, 0x00, 0x00, 0x00, 0x10},
690         {0xc1, 0x11, 0x31, 0x20, 0x2e, 0x20, 0x00, 0x10},
691         {0xc1, 0x11, 0x25, 0x00, 0xc3, 0x50, 0x00, 0x10},
692         {0xa1, 0x11, 0x30, 0x07, 0x00, 0x00, 0x00, 0x10}, /* gain14 */
693         {0xc1, 0x11, 0x31, 0x10, 0x10, 0x10, 0x00, 0x10}, /* r g b 101a10 */
694
695         {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
696         {0xa1, 0x11, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
697         {0xa1, 0x11, 0x21, 0xd0, 0x00, 0x00, 0x00, 0x10},
698         {0xa1, 0x11, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
699         {0xa1, 0x11, 0x23, 0x09, 0x00, 0x00, 0x00, 0x10},
700
701         {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
702         {0xa1, 0x11, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
703         {0xa1, 0x11, 0x21, 0xd0, 0x00, 0x00, 0x00, 0x10},
704         {0xa1, 0x11, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
705         {0xa1, 0x11, 0x23, 0x10, 0x00, 0x00, 0x00, 0x10},
706         {0xa1, 0x11, 0x01, 0x18, 0x00, 0x00, 0x00, 0x10},
707                                                         /* set sensor clock */
708         {}
709 };
710 static const u8 mi0360_sensor_init[][8] = {
711         {0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10},
712         {0xb1, 0x5d, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x10},
713         {0xb1, 0x5d, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x10},
714         {0xd1, 0x5d, 0x01, 0x00, 0x08, 0x00, 0x16, 0x10},
715         {0xd1, 0x5d, 0x03, 0x01, 0xe2, 0x02, 0x82, 0x10},
716         {0xd1, 0x5d, 0x05, 0x00, 0x09, 0x00, 0x53, 0x10},
717         {0xb1, 0x5d, 0x0d, 0x00, 0x02, 0x00, 0x00, 0x10},
718         {0xd1, 0x5d, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x10},
719         {0xd1, 0x5d, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x10},
720         {0xd1, 0x5d, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x10},
721         {0xd1, 0x5d, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
722         {0xd1, 0x5d, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
723         {0xd1, 0x5d, 0x14, 0x00, 0x00, 0x00, 0x00, 0x10},
724         {0xd1, 0x5d, 0x16, 0x00, 0x00, 0x00, 0x00, 0x10},
725         {0xd1, 0x5d, 0x18, 0x00, 0x00, 0x00, 0x00, 0x10},
726         {0xd1, 0x5d, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x10},
727         {0xd1, 0x5d, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x10},
728         {0xb1, 0x5d, 0x32, 0x00, 0x00, 0x00, 0x00, 0x10},
729         {0xd1, 0x5d, 0x20, 0x91, 0x01, 0x00, 0x00, 0x10},
730         {0xd1, 0x5d, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
731         {0xd1, 0x5d, 0x24, 0x00, 0x00, 0x00, 0x00, 0x10},
732         {0xd1, 0x5d, 0x26, 0x00, 0x00, 0x00, 0x24, 0x10},
733         {0xd1, 0x5d, 0x2f, 0xf7, 0xB0, 0x00, 0x04, 0x10},
734         {0xd1, 0x5d, 0x31, 0x00, 0x00, 0x00, 0x00, 0x10},
735         {0xd1, 0x5d, 0x33, 0x00, 0x00, 0x01, 0x00, 0x10},
736         {0xb1, 0x5d, 0x3d, 0x06, 0x8f, 0x00, 0x00, 0x10},
737         {0xd1, 0x5d, 0x40, 0x01, 0xe0, 0x00, 0xd1, 0x10},
738         {0xb1, 0x5d, 0x44, 0x00, 0x82, 0x00, 0x00, 0x10},
739         {0xd1, 0x5d, 0x58, 0x00, 0x78, 0x00, 0x43, 0x10},
740         {0xd1, 0x5d, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x10},
741         {0xd1, 0x5d, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x10},
742         {0xd1, 0x5d, 0x5e, 0x00, 0x00, 0xa3, 0x1d, 0x10},
743         {0xb1, 0x5d, 0x62, 0x04, 0x11, 0x00, 0x00, 0x10},
744
745         {0xb1, 0x5d, 0x20, 0x91, 0x01, 0x00, 0x00, 0x10},
746         {0xb1, 0x5d, 0x20, 0x11, 0x01, 0x00, 0x00, 0x10},
747         {0xb1, 0x5d, 0x09, 0x00, 0x64, 0x00, 0x00, 0x10},
748         {0xd1, 0x5d, 0x2b, 0x00, 0xa0, 0x00, 0xb0, 0x10},
749         {0xd1, 0x5d, 0x2d, 0x00, 0xa0, 0x00, 0xa0, 0x10},
750
751         {0xb1, 0x5d, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x10}, /* sensor clck ?2 */
752         {0xb1, 0x5d, 0x06, 0x00, 0x30, 0x00, 0x00, 0x10},
753         {0xb1, 0x5d, 0x05, 0x00, 0x0a, 0x00, 0x00, 0x10},
754         {0xb1, 0x5d, 0x09, 0x02, 0x35, 0x00, 0x00, 0x10}, /* exposure 2 */
755
756         {0xd1, 0x5d, 0x2b, 0x00, 0xb9, 0x00, 0xe3, 0x10},
757         {0xd1, 0x5d, 0x2d, 0x00, 0x5f, 0x00, 0xb9, 0x10}, /* 42 */
758 /*      {0xb1, 0x5d, 0x35, 0x00, 0x67, 0x00, 0x00, 0x10}, * gain orig */
759 /*      {0xb1, 0x5d, 0x35, 0x00, 0x20, 0x00, 0x00, 0x10}, * gain */
760         {0xb1, 0x5d, 0x07, 0x00, 0x03, 0x00, 0x00, 0x10}, /* update */
761         {0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10}, /* sensor on */
762         {}
763 };
764 static const u8 mi0360b_sensor_init[][8] = {
765         {0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10},
766         {0xb1, 0x5d, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x10},
767         {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /*delay 20ms*/
768         {0xb1, 0x5d, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x10},
769         {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /*delay 20ms*/
770         {0xd1, 0x5d, 0x01, 0x00, 0x08, 0x00, 0x16, 0x10},
771         {0xd1, 0x5d, 0x03, 0x01, 0xe2, 0x02, 0x82, 0x10},
772         {0xd1, 0x5d, 0x05, 0x00, 0x00, 0x00, 0x00, 0x10},
773         {0xb1, 0x5d, 0x0d, 0x00, 0x02, 0x00, 0x00, 0x10},
774         {0xd1, 0x5d, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x10},
775         {0xd1, 0x5d, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x10},
776         {0xd1, 0x5d, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x10},
777         {0xd1, 0x5d, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
778         {0xd1, 0x5d, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
779         {0xd1, 0x5d, 0x14, 0x00, 0x00, 0x00, 0x00, 0x10},
780         {0xd1, 0x5d, 0x16, 0x00, 0x00, 0x00, 0x00, 0x10},
781         {0xd1, 0x5d, 0x18, 0x00, 0x00, 0x00, 0x00, 0x10},
782         {0xd1, 0x5d, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x10},
783         {0xd1, 0x5d, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x10},
784         {0xb1, 0x5d, 0x32, 0x00, 0x00, 0x00, 0x00, 0x10},
785         {0xd1, 0x5d, 0x20, 0x11, 0x01, 0x00, 0x00, 0x10},
786         {0xd1, 0x5d, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
787         {0xd1, 0x5d, 0x24, 0x00, 0x00, 0x00, 0x00, 0x10},
788         {0xd1, 0x5d, 0x26, 0x00, 0x00, 0x00, 0x24, 0x10},
789         {0xd1, 0x5d, 0x2f, 0xf7, 0xb0, 0x00, 0x04, 0x10},
790         {0xd1, 0x5d, 0x31, 0x00, 0x00, 0x00, 0x00, 0x10},
791         {0xd1, 0x5d, 0x33, 0x00, 0x00, 0x01, 0x00, 0x10},
792         {0xb1, 0x5d, 0x3d, 0x06, 0x8f, 0x00, 0x00, 0x10},
793         {0xd1, 0x5d, 0x40, 0x01, 0xe0, 0x00, 0xd1, 0x10},
794         {0xb1, 0x5d, 0x44, 0x00, 0x82, 0x00, 0x00, 0x10},
795         {0xd1, 0x5d, 0x58, 0x00, 0x78, 0x00, 0x43, 0x10},
796         {0xd1, 0x5d, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x10},
797         {0xd1, 0x5d, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x10},
798         {0xd1, 0x5d, 0x5e, 0x00, 0x00, 0xa3, 0x1d, 0x10},
799         {0xb1, 0x5d, 0x62, 0x04, 0x11, 0x00, 0x00, 0x10},
800
801         {0xb1, 0x5d, 0x20, 0x11, 0x01, 0x00, 0x00, 0x10},
802         {0xb1, 0x5d, 0x20, 0x11, 0x01, 0x00, 0x00, 0x10},
803         {0xb1, 0x5d, 0x09, 0x00, 0x64, 0x00, 0x00, 0x10},
804         {0xd1, 0x5d, 0x2b, 0x00, 0x33, 0x00, 0xa0, 0x10},
805         {0xd1, 0x5d, 0x2d, 0x00, 0xa0, 0x00, 0x33, 0x10},
806         {}
807 };
808 static const u8 mi0360b_sensor_param1[][8] = {
809         {0xb1, 0x5d, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x10},
810         {0xb1, 0x5d, 0x06, 0x00, 0x53, 0x00, 0x00, 0x10},
811         {0xb1, 0x5d, 0x05, 0x00, 0x09, 0x00, 0x00, 0x10},
812         {0xb1, 0x5d, 0x09, 0x02, 0x35, 0x00, 0x00, 0x10}, /* exposure 2 */
813
814         {0xd1, 0x5d, 0x2b, 0x00, 0xd1, 0x01, 0xc9, 0x10},
815         {0xd1, 0x5d, 0x2d, 0x00, 0xed, 0x00, 0xd1, 0x10},
816         {0xb1, 0x5d, 0x07, 0x00, 0x03, 0x00, 0x00, 0x10}, /* update */
817         {0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10}, /* sensor on */
818         {}
819 };
820 static const u8 mo4000_sensor_init[][8] = {
821         {0xa1, 0x21, 0x01, 0x02, 0x00, 0x00, 0x00, 0x10},
822         {0xa1, 0x21, 0x02, 0x00, 0x00, 0x00, 0x00, 0x10},
823         {0xa1, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
824         {0xa1, 0x21, 0x04, 0x00, 0x00, 0x00, 0x00, 0x10},
825         {0xa1, 0x21, 0x05, 0x00, 0x00, 0x00, 0x00, 0x10},
826         {0xa1, 0x21, 0x05, 0x04, 0x00, 0x00, 0x00, 0x10},
827         {0xa1, 0x21, 0x06, 0x80, 0x00, 0x00, 0x00, 0x10},
828         {0xa1, 0x21, 0x06, 0x81, 0x00, 0x00, 0x00, 0x10},
829         {0xa1, 0x21, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x10},
830         {0xa1, 0x21, 0x11, 0x00, 0x00, 0x00, 0x00, 0x10},
831         {0xa1, 0x21, 0x11, 0x20, 0x00, 0x00, 0x00, 0x10},
832         {0xa1, 0x21, 0x11, 0x30, 0x00, 0x00, 0x00, 0x10},
833         {0xa1, 0x21, 0x11, 0x38, 0x00, 0x00, 0x00, 0x10},
834         {0xa1, 0x21, 0x11, 0x38, 0x00, 0x00, 0x00, 0x10},
835         {0xa1, 0x21, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
836         {0xa1, 0x21, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
837         {0xa1, 0x21, 0x0f, 0x20, 0x00, 0x00, 0x00, 0x10},
838         {0xa1, 0x21, 0x10, 0x20, 0x00, 0x00, 0x00, 0x10},
839         {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
840         {0xa1, 0x21, 0x11, 0x38, 0x00, 0x00, 0x00, 0x10},
841         {}
842 };
843 static const u8 mt9v111_sensor_init[][8] = {
844         {0xb1, 0x5c, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x10}, /* reset? */
845         {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
846         {0xb1, 0x5c, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x10},
847         {0xb1, 0x5c, 0x01, 0x00, 0x01, 0x00, 0x00, 0x10}, /* IFP select */
848         {0xb1, 0x5c, 0x08, 0x04, 0x80, 0x00, 0x00, 0x10}, /* output fmt ctrl */
849         {0xb1, 0x5c, 0x06, 0x00, 0x00, 0x00, 0x00, 0x10}, /* op mode ctrl */
850         {0xb1, 0x5c, 0x02, 0x00, 0x16, 0x00, 0x00, 0x10},
851         {0xb1, 0x5c, 0x03, 0x01, 0xe1, 0x00, 0x00, 0x10},
852         {0xb1, 0x5c, 0x04, 0x02, 0x81, 0x00, 0x00, 0x10},
853         {0xb1, 0x5c, 0x05, 0x00, 0x04, 0x00, 0x00, 0x10},
854         {0xb1, 0x5c, 0x01, 0x00, 0x04, 0x00, 0x00, 0x10}, /* sensor select */
855         {0xb1, 0x5c, 0x02, 0x00, 0x16, 0x00, 0x00, 0x10},
856         {0xb1, 0x5c, 0x03, 0x01, 0xe6, 0x00, 0x00, 0x10},
857         {0xb1, 0x5c, 0x04, 0x02, 0x86, 0x00, 0x00, 0x10},
858         {0xb1, 0x5c, 0x05, 0x00, 0x04, 0x00, 0x00, 0x10},
859         {0xb1, 0x5c, 0x06, 0x00, 0x00, 0x00, 0x00, 0x10},
860         {0xb1, 0x5c, 0x08, 0x00, 0x08, 0x00, 0x00, 0x10}, /* row start */
861         {0xb1, 0x5c, 0x0e, 0x00, 0x08, 0x00, 0x00, 0x10},
862         {0xb1, 0x5c, 0x02, 0x00, 0x16, 0x00, 0x00, 0x10}, /* col start */
863         {0xb1, 0x5c, 0x03, 0x01, 0xe7, 0x00, 0x00, 0x10}, /* window height */
864         {0xb1, 0x5c, 0x04, 0x02, 0x87, 0x00, 0x00, 0x10}, /* window width */
865         {0xb1, 0x5c, 0x07, 0x30, 0x02, 0x00, 0x00, 0x10}, /* output ctrl */
866         {0xb1, 0x5c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x10}, /* shutter delay */
867         {0xb1, 0x5c, 0x12, 0x00, 0xb0, 0x00, 0x00, 0x10}, /* zoom col start */
868         {0xb1, 0x5c, 0x13, 0x00, 0x7c, 0x00, 0x00, 0x10}, /* zoom row start */
869         {0xb1, 0x5c, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x10}, /* digital zoom */
870         {0xb1, 0x5c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10}, /* read mode */
871         {0xb1, 0x5c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
872         {}
873 };
874 static const u8 mt9v111_sensor_param1[][8] = {
875         {0xb1, 0x5c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
876         {0xb1, 0x5c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
877         {0xb1, 0x5c, 0x09, 0x01, 0x2c, 0x00, 0x00, 0x10},
878         {0xd1, 0x5c, 0x2b, 0x00, 0x33, 0x00, 0xa0, 0x10}, /* green1 gain */
879         {0xd1, 0x5c, 0x2d, 0x00, 0xa0, 0x00, 0x33, 0x10}, /* red gain */
880         /*******/
881         {0xb1, 0x5c, 0x06, 0x00, 0x1e, 0x00, 0x00, 0x10}, /* vert blanking */
882         {0xb1, 0x5c, 0x05, 0x00, 0x0a, 0x00, 0x00, 0x10}, /* horiz blanking */
883         {0xd1, 0x5c, 0x2c, 0x00, 0xad, 0x00, 0xad, 0x10}, /* blue gain */
884         {0xb1, 0x5c, 0x35, 0x01, 0xc0, 0x00, 0x00, 0x10}, /* global gain */
885         {}
886 };
887 static const u8 om6802_init0[2][8] = {
888 /*fixme: variable*/
889         {0xa0, 0x34, 0x29, 0x0e, 0x00, 0x00, 0x00, 0x10},
890         {0xa0, 0x34, 0x23, 0xb0, 0x00, 0x00, 0x00, 0x10},
891 };
892 static const u8 om6802_sensor_init[][8] = {
893         {0xa0, 0x34, 0xdf, 0x6d, 0x00, 0x00, 0x00, 0x10},
894                                                 /* factory mode */
895         {0xa0, 0x34, 0xdd, 0x18, 0x00, 0x00, 0x00, 0x10},
896                                                 /* output raw RGB */
897         {0xa0, 0x34, 0x5a, 0xc0, 0x00, 0x00, 0x00, 0x10},
898 /*      {0xa0, 0x34, 0xfb, 0x11, 0x00, 0x00, 0x00, 0x10}, */
899         {0xa0, 0x34, 0xf0, 0x04, 0x00, 0x00, 0x00, 0x10},
900                 /* auto-exposure speed (0) / white balance mode (auto RGB) */
901 /*      {0xa0, 0x34, 0xf1, 0x02, 0x00, 0x00, 0x00, 0x10},
902                                                          * set color mode */
903 /*      {0xa0, 0x34, 0xfe, 0x5b, 0x00, 0x00, 0x00, 0x10},
904                                                  * max AGC value in AE */
905 /*      {0xa0, 0x34, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x10},
906                                                          * preset AGC */
907 /*      {0xa0, 0x34, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x10},
908                                                  * preset brightness */
909 /*      {0xa0, 0x34, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x10},
910                                                          * preset contrast */
911 /*      {0xa0, 0x34, 0xe8, 0x31, 0x00, 0x00, 0x00, 0x10},
912                                                          * preset gamma */
913         {0xa0, 0x34, 0xe9, 0x0f, 0x00, 0x00, 0x00, 0x10},
914                                 /* luminance mode (0x4f -> AutoExpo on) */
915         {0xa0, 0x34, 0xe4, 0xff, 0x00, 0x00, 0x00, 0x10},
916                                                         /* preset shutter */
917 /*      {0xa0, 0x34, 0xef, 0x00, 0x00, 0x00, 0x00, 0x10},
918                                                          * auto frame rate */
919 /*      {0xa0, 0x34, 0xfb, 0xee, 0x00, 0x00, 0x00, 0x10}, */
920         {0xa0, 0x34, 0x5d, 0x80, 0x00, 0x00, 0x00, 0x10},
921         {}
922 };
923 static const u8 om6802_sensor_param1[][8] = {
924         {0xa0, 0x34, 0x71, 0x84, 0x00, 0x00, 0x00, 0x10},
925         {0xa0, 0x34, 0x72, 0x05, 0x00, 0x00, 0x00, 0x10},
926         {0xa0, 0x34, 0x68, 0x80, 0x00, 0x00, 0x00, 0x10},
927         {0xa0, 0x34, 0x69, 0x01, 0x00, 0x00, 0x00, 0x10},
928         {}
929 };
930 static const u8 ov7630_sensor_init[][8] = {
931         {0xa1, 0x21, 0x76, 0x01, 0x00, 0x00, 0x00, 0x10},
932         {0xa1, 0x21, 0x12, 0xc8, 0x00, 0x00, 0x00, 0x10},
933         {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
934         {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
935         {0xa1, 0x21, 0x12, 0xc8, 0x00, 0x00, 0x00, 0x10},
936         {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
937         {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
938 /* win: i2c_r from 00 to 80 */
939         {0xd1, 0x21, 0x03, 0x80, 0x10, 0x20, 0x80, 0x10},
940         {0xb1, 0x21, 0x0c, 0x20, 0x20, 0x00, 0x00, 0x10},
941 /* HDG: 0x11 was 0x00 change to 0x01 for better exposure (15 fps instead of 30)
942         0x13 was 0xc0 change to 0xc3 for auto gain and exposure */
943         {0xd1, 0x21, 0x11, 0x01, 0x48, 0xc3, 0x00, 0x10},
944         {0xb1, 0x21, 0x15, 0x80, 0x03, 0x00, 0x00, 0x10},
945         {0xd1, 0x21, 0x17, 0x1b, 0xbd, 0x05, 0xf6, 0x10},
946         {0xa1, 0x21, 0x1b, 0x04, 0x00, 0x00, 0x00, 0x10},
947         {0xd1, 0x21, 0x1f, 0x00, 0x80, 0x80, 0x80, 0x10},
948         {0xd1, 0x21, 0x23, 0xde, 0x10, 0x8a, 0xa0, 0x10},
949         {0xc1, 0x21, 0x27, 0xca, 0xa2, 0x74, 0x00, 0x10},
950         {0xd1, 0x21, 0x2a, 0x88, 0x00, 0x88, 0x01, 0x10},
951         {0xc1, 0x21, 0x2e, 0x80, 0x00, 0x18, 0x00, 0x10},
952         {0xa1, 0x21, 0x21, 0x08, 0x00, 0x00, 0x00, 0x10},
953         {0xa1, 0x21, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
954         {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10},
955         {0xb1, 0x21, 0x32, 0xc2, 0x08, 0x00, 0x00, 0x10},
956         {0xb1, 0x21, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x10},
957         {0xd1, 0x21, 0x60, 0x05, 0x40, 0x12, 0x57, 0x10},
958         {0xa1, 0x21, 0x64, 0x73, 0x00, 0x00, 0x00, 0x10},
959         {0xd1, 0x21, 0x65, 0x00, 0x55, 0x01, 0xac, 0x10},
960         {0xa1, 0x21, 0x69, 0x38, 0x00, 0x00, 0x00, 0x10},
961         {0xd1, 0x21, 0x6f, 0x1f, 0x01, 0x00, 0x10, 0x10},
962         {0xd1, 0x21, 0x73, 0x50, 0x20, 0x02, 0x01, 0x10},
963         {0xd1, 0x21, 0x77, 0xf3, 0x90, 0x98, 0x98, 0x10},
964         {0xc1, 0x21, 0x7b, 0x00, 0x4c, 0xf7, 0x00, 0x10},
965         {0xd1, 0x21, 0x17, 0x1b, 0xbd, 0x05, 0xf6, 0x10},
966         {0xa1, 0x21, 0x1b, 0x04, 0x00, 0x00, 0x00, 0x10},
967         {}
968 };
969 static const u8 ov7630_sensor_param1[][8] = {
970         {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
971         {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
972 /*fixme: + 0x12, 0x04*/
973 /*      {0xa1, 0x21, 0x75, 0x82, 0x00, 0x00, 0x00, 0x10},  * COMN
974                                                          * set by setvflip */
975         {0xa1, 0x21, 0x10, 0x32, 0x00, 0x00, 0x00, 0x10},
976         {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
977         {0xb1, 0x21, 0x01, 0x80, 0x80, 0x00, 0x00, 0x10},
978 /* */
979 /*      {0xa1, 0x21, 0x2a, 0x88, 0x00, 0x00, 0x00, 0x10}, * set by setfreq */
980 /*      {0xa1, 0x21, 0x2b, 0x34, 0x00, 0x00, 0x00, 0x10}, * set by setfreq */
981 /* */
982         {0xa1, 0x21, 0x10, 0x83, 0x00, 0x00, 0x00, 0x10},
983 /*      {0xb1, 0x21, 0x01, 0x88, 0x70, 0x00, 0x00, 0x10}, */
984         {}
985 };
986
987 static const u8 ov7648_sensor_init[][8] = {
988         {0xa1, 0x21, 0x76, 0x00, 0x00, 0x00, 0x00, 0x10},
989         {0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10},       /* reset */
990         {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
991         {0xa1, 0x21, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
992         {0xd1, 0x21, 0x03, 0xa4, 0x30, 0x88, 0x00, 0x10},
993         {0xb1, 0x21, 0x11, 0x80, 0x08, 0x00, 0x00, 0x10},
994         {0xc1, 0x21, 0x13, 0xa0, 0x04, 0x84, 0x00, 0x10},
995         {0xd1, 0x21, 0x17, 0x1a, 0x02, 0xba, 0xf4, 0x10},
996         {0xa1, 0x21, 0x1b, 0x04, 0x00, 0x00, 0x00, 0x10},
997         {0xd1, 0x21, 0x1f, 0x41, 0xc0, 0x80, 0x80, 0x10},
998         {0xd1, 0x21, 0x23, 0xde, 0xa0, 0x80, 0x32, 0x10},
999         {0xd1, 0x21, 0x27, 0xfe, 0xa0, 0x00, 0x91, 0x10},
1000         {0xd1, 0x21, 0x2b, 0x00, 0x88, 0x85, 0x80, 0x10},
1001         {0xc1, 0x21, 0x2f, 0x9c, 0x00, 0xc4, 0x00, 0x10},
1002         {0xd1, 0x21, 0x60, 0xa6, 0x60, 0x88, 0x12, 0x10},
1003         {0xd1, 0x21, 0x64, 0x88, 0x00, 0x00, 0x94, 0x10},
1004         {0xd1, 0x21, 0x68, 0x7a, 0x0c, 0x00, 0x00, 0x10},
1005         {0xd1, 0x21, 0x6c, 0x11, 0x33, 0x22, 0x00, 0x10},
1006         {0xd1, 0x21, 0x70, 0x11, 0x00, 0x10, 0x50, 0x10},
1007         {0xd1, 0x21, 0x74, 0x20, 0x06, 0x00, 0xb5, 0x10},
1008         {0xd1, 0x21, 0x78, 0x8a, 0x00, 0x00, 0x00, 0x10},
1009         {0xb1, 0x21, 0x7c, 0x00, 0x43, 0x00, 0x00, 0x10},
1010
1011         {0xd1, 0x21, 0x21, 0x86, 0x00, 0xde, 0xa0, 0x10},
1012 /*      {0xd1, 0x21, 0x25, 0x80, 0x32, 0xfe, 0xa0, 0x10}, jfm done */
1013 /*      {0xd1, 0x21, 0x29, 0x00, 0x91, 0x00, 0x88, 0x10}, jfm done */
1014 /*      {0xb1, 0x21, 0x2d, 0x85, 0x00, 0x00, 0x00, 0x10}, set by setfreq */
1015         {}
1016 };
1017 static const u8 ov7648_sensor_param1[][8] = {
1018 /*      {0xa1, 0x21, 0x12, 0x08, 0x00, 0x00, 0x00, 0x10}, jfm done */
1019 /*      {0xa1, 0x21, 0x75, 0x06, 0x00, 0x00, 0x00, 0x10},   * COMN
1020                                                          * set by setvflip */
1021         {0xa1, 0x21, 0x19, 0x02, 0x00, 0x00, 0x00, 0x10},
1022         {0xa1, 0x21, 0x10, 0x32, 0x00, 0x00, 0x00, 0x10},
1023 /*      {0xa1, 0x21, 0x16, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
1024 /*      {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},  * GAIN - def */
1025 /*      {0xb1, 0x21, 0x01, 0x6c, 0x6c, 0x00, 0x00, 0x10},  * B R - def: 80 */
1026 /*...*/
1027         {0xa1, 0x21, 0x11, 0x81, 0x00, 0x00, 0x00, 0x10}, /* CLKRC */
1028 /*      {0xa1, 0x21, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
1029 /*      {0xa1, 0x21, 0x16, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
1030 /*      {0xa1, 0x21, 0x2a, 0x91, 0x00, 0x00, 0x00, 0x10}, jfm done */
1031 /*      {0xa1, 0x21, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
1032 /*      {0xb1, 0x21, 0x01, 0x64, 0x84, 0x00, 0x00, 0x10},  * B R - def: 80 */
1033
1034         {}
1035 };
1036
1037 static const u8 ov7660_sensor_init[][8] = {
1038         {0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10}, /* reset SCCB */
1039         {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
1040         {0xa1, 0x21, 0x12, 0x05, 0x00, 0x00, 0x00, 0x10},
1041                                                 /* Outformat = rawRGB */
1042         {0xa1, 0x21, 0x13, 0xb8, 0x00, 0x00, 0x00, 0x10}, /* init COM8 */
1043         {0xd1, 0x21, 0x00, 0x01, 0x74, 0x92, 0x00, 0x10},
1044                                                 /* GAIN BLUE RED VREF */
1045         {0xd1, 0x21, 0x04, 0x00, 0x7d, 0x62, 0x00, 0x10},
1046                                                 /* COM 1 BAVE GEAVE AECHH */
1047         {0xb1, 0x21, 0x08, 0x83, 0x01, 0x00, 0x00, 0x10}, /* RAVE COM2 */
1048         {0xd1, 0x21, 0x0c, 0x00, 0x08, 0x04, 0x4f, 0x10}, /* COM 3 4 5 6 */
1049         {0xd1, 0x21, 0x10, 0x7f, 0x40, 0x05, 0xff, 0x10},
1050                                                 /* AECH CLKRC COM7 COM8 */
1051         {0xc1, 0x21, 0x14, 0x2c, 0x00, 0x02, 0x00, 0x10}, /* COM9 COM10 */
1052         {0xd1, 0x21, 0x17, 0x10, 0x60, 0x02, 0x7b, 0x10},
1053                                                 /* HSTART HSTOP VSTRT VSTOP */
1054         {0xa1, 0x21, 0x1b, 0x02, 0x00, 0x00, 0x00, 0x10}, /* PSHFT */
1055         {0xb1, 0x21, 0x1e, 0x01, 0x0e, 0x00, 0x00, 0x10}, /* MVFP LAEC */
1056         {0xd1, 0x21, 0x20, 0x07, 0x07, 0x07, 0x07, 0x10},
1057                                         /* BOS GBOS GROS ROS (BGGR offset) */
1058 /*      {0xd1, 0x21, 0x24, 0x68, 0x58, 0xd4, 0x80, 0x10}, */
1059         {0xd1, 0x21, 0x24, 0x78, 0x68, 0xd4, 0x80, 0x10},
1060                                                 /* AEW AEB VPT BBIAS */
1061         {0xd1, 0x21, 0x28, 0x80, 0x30, 0x00, 0x00, 0x10},
1062                                                 /* GbBIAS RSVD EXHCH EXHCL */
1063         {0xd1, 0x21, 0x2c, 0x80, 0x00, 0x00, 0x62, 0x10},
1064                                                 /* RBIAS ADVFL ASDVFH YAVE */
1065         {0xc1, 0x21, 0x30, 0x08, 0x30, 0xb4, 0x00, 0x10},
1066                                                 /* HSYST HSYEN HREF */
1067         {0xd1, 0x21, 0x33, 0x00, 0x07, 0x84, 0x00, 0x10}, /* reserved */
1068         {0xd1, 0x21, 0x37, 0x0c, 0x02, 0x43, 0x00, 0x10},
1069                                                 /* ADC ACOM OFON TSLB */
1070         {0xd1, 0x21, 0x3b, 0x02, 0x6c, 0x19, 0x0e, 0x10},
1071                                                 /* COM11 COM12 COM13 COM14 */
1072         {0xd1, 0x21, 0x3f, 0x41, 0xc1, 0x22, 0x08, 0x10},
1073                                                 /* EDGE COM15 COM16 COM17 */
1074         {0xd1, 0x21, 0x43, 0xf0, 0x10, 0x78, 0xa8, 0x10}, /* reserved */
1075         {0xd1, 0x21, 0x47, 0x60, 0x80, 0x00, 0x00, 0x10}, /* reserved */
1076         {0xd1, 0x21, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x10}, /* reserved */
1077         {0xd1, 0x21, 0x4f, 0x46, 0x36, 0x0f, 0x17, 0x10}, /* MTX 1 2 3 4 */
1078         {0xd1, 0x21, 0x53, 0x7f, 0x96, 0x40, 0x40, 0x10}, /* MTX 5 6 7 8 */
1079         {0xb1, 0x21, 0x57, 0x40, 0x0f, 0x00, 0x00, 0x10}, /* MTX9 MTXS */
1080         {0xd1, 0x21, 0x59, 0xba, 0x9a, 0x22, 0xb9, 0x10}, /* reserved */
1081         {0xd1, 0x21, 0x5d, 0x9b, 0x10, 0xf0, 0x05, 0x10}, /* reserved */
1082         {0xa1, 0x21, 0x61, 0x60, 0x00, 0x00, 0x00, 0x10}, /* reserved */
1083         {0xd1, 0x21, 0x62, 0x00, 0x00, 0x50, 0x30, 0x10},
1084                                                 /* LCC1 LCC2 LCC3 LCC4 */
1085         {0xa1, 0x21, 0x66, 0x00, 0x00, 0x00, 0x00, 0x10}, /* LCC5 */
1086         {0xd1, 0x21, 0x67, 0x80, 0x7a, 0x90, 0x80, 0x10}, /* MANU */
1087         {0xa1, 0x21, 0x6b, 0x0a, 0x00, 0x00, 0x00, 0x10},
1088                                         /* band gap reference [0:3] DBLV */
1089         {0xd1, 0x21, 0x6c, 0x30, 0x48, 0x80, 0x74, 0x10}, /* gamma curve */
1090         {0xd1, 0x21, 0x70, 0x64, 0x60, 0x5c, 0x58, 0x10}, /* gamma curve */
1091         {0xd1, 0x21, 0x74, 0x54, 0x4c, 0x40, 0x38, 0x10}, /* gamma curve */
1092         {0xd1, 0x21, 0x78, 0x34, 0x30, 0x2f, 0x2b, 0x10}, /* gamma curve */
1093         {0xd1, 0x21, 0x7c, 0x03, 0x07, 0x17, 0x34, 0x10}, /* gamma curve */
1094         {0xd1, 0x21, 0x80, 0x41, 0x4d, 0x58, 0x63, 0x10}, /* gamma curve */
1095         {0xd1, 0x21, 0x84, 0x6e, 0x77, 0x87, 0x95, 0x10}, /* gamma curve */
1096         {0xc1, 0x21, 0x88, 0xaf, 0xc7, 0xdf, 0x00, 0x10}, /* gamma curve */
1097         {0xc1, 0x21, 0x8b, 0x99, 0x99, 0xcf, 0x00, 0x10}, /* reserved */
1098         {0xb1, 0x21, 0x92, 0x00, 0x00, 0x00, 0x00, 0x10}, /* DM_LNL/H */
1099 /* not in all ms-win traces*/
1100         {0xa1, 0x21, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x10},
1101         {}
1102 };
1103 static const u8 ov7660_sensor_param1[][8] = {
1104         {0xa1, 0x21, 0x1e, 0x01, 0x00, 0x00, 0x00, 0x10}, /* MVFP */
1105                                                 /* bits[3..0]reserved */
1106         {0xa1, 0x21, 0x1e, 0x01, 0x00, 0x00, 0x00, 0x10},
1107         {0xa1, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
1108                                                 /* VREF vertical frame ctrl */
1109         {0xa1, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
1110         {0xa1, 0x21, 0x10, 0x20, 0x00, 0x00, 0x00, 0x10}, /* AECH 0x20 */
1111         {0xa1, 0x21, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x10}, /* ADVFL */
1112         {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10}, /* ADVFH */
1113         {0xa1, 0x21, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x10}, /* GAIN */
1114 /*      {0xb1, 0x21, 0x01, 0x78, 0x78, 0x00, 0x00, 0x10}, * BLUE */
1115 /****** (some exchanges in the win trace) ******/
1116 /*fixme:param2*/
1117         {0xa1, 0x21, 0x93, 0x00, 0x00, 0x00, 0x00, 0x10},/* dummy line hight */
1118         {0xa1, 0x21, 0x92, 0x25, 0x00, 0x00, 0x00, 0x10}, /* dummy line low */
1119         {0xa1, 0x21, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x10}, /* EXHCH */
1120         {0xa1, 0x21, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10}, /* EXHCL */
1121 /*      {0xa1, 0x21, 0x02, 0x90, 0x00, 0x00, 0x00, 0x10},  * RED */
1122 /****** (some exchanges in the win trace) ******/
1123 /******!! startsensor KO if changed !!****/
1124 /*fixme: param3*/
1125         {0xa1, 0x21, 0x93, 0x01, 0x00, 0x00, 0x00, 0x10},
1126         {0xa1, 0x21, 0x92, 0xff, 0x00, 0x00, 0x00, 0x10},
1127         {0xa1, 0x21, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x10},
1128         {0xa1, 0x21, 0x2b, 0xc3, 0x00, 0x00, 0x00, 0x10},
1129         {}
1130 };
1131
1132 static const u8 po1030_sensor_init[][8] = {
1133 /* the sensor registers are described in m5602/m5602_po1030.h */
1134         {0xa1, 0x6e, 0x3f, 0x20, 0x00, 0x00, 0x00, 0x10}, /* sensor reset */
1135         {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
1136         {0xa1, 0x6e, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x10},
1137         {0xa1, 0x6e, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x10},
1138         {0xd1, 0x6e, 0x04, 0x02, 0xb1, 0x02, 0x39, 0x10},
1139         {0xd1, 0x6e, 0x08, 0x00, 0x01, 0x00, 0x00, 0x10},
1140         {0xd1, 0x6e, 0x0c, 0x02, 0x7f, 0x01, 0xe0, 0x10},
1141         {0xd1, 0x6e, 0x12, 0x03, 0x02, 0x00, 0x03, 0x10},
1142         {0xd1, 0x6e, 0x16, 0x85, 0x40, 0x4a, 0x40, 0x10}, /* r/g1/b/g2 gains */
1143         {0xc1, 0x6e, 0x1a, 0x00, 0x80, 0x00, 0x00, 0x10},
1144         {0xd1, 0x6e, 0x1d, 0x08, 0x03, 0x00, 0x00, 0x10},
1145         {0xd1, 0x6e, 0x23, 0x00, 0xb0, 0x00, 0x94, 0x10},
1146         {0xd1, 0x6e, 0x27, 0x58, 0x00, 0x00, 0x00, 0x10},
1147         {0xb1, 0x6e, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10},
1148         {0xd1, 0x6e, 0x2d, 0x14, 0x35, 0x61, 0x84, 0x10}, /* gamma corr */
1149         {0xd1, 0x6e, 0x31, 0xa2, 0xbd, 0xd8, 0xff, 0x10},
1150         {0xd1, 0x6e, 0x35, 0x06, 0x1e, 0x12, 0x02, 0x10}, /* color matrix */
1151         {0xd1, 0x6e, 0x39, 0xaa, 0x53, 0x37, 0xd5, 0x10},
1152         {0xa1, 0x6e, 0x3d, 0xf2, 0x00, 0x00, 0x00, 0x10},
1153         {0xd1, 0x6e, 0x3e, 0x00, 0x00, 0x80, 0x03, 0x10},
1154         {0xd1, 0x6e, 0x42, 0x03, 0x00, 0x00, 0x00, 0x10},
1155         {0xc1, 0x6e, 0x46, 0x00, 0x80, 0x80, 0x00, 0x10},
1156         {0xd1, 0x6e, 0x4b, 0x02, 0xef, 0x08, 0xcd, 0x10},
1157         {0xd1, 0x6e, 0x4f, 0x00, 0xd0, 0x00, 0xa0, 0x10},
1158         {0xd1, 0x6e, 0x53, 0x01, 0xaa, 0x01, 0x40, 0x10},
1159         {0xd1, 0x6e, 0x5a, 0x50, 0x04, 0x30, 0x03, 0x10}, /* raw rgb bayer */
1160         {0xa1, 0x6e, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x10},
1161         {0xd1, 0x6e, 0x5f, 0x10, 0x40, 0xff, 0x00, 0x10},
1162
1163         {0xd1, 0x6e, 0x63, 0x40, 0x40, 0x00, 0x00, 0x10},
1164         {0xd1, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x10},
1165         {0xd1, 0x6e, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x10},
1166         {0xd1, 0x6e, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x10},
1167         {0xc1, 0x6e, 0x73, 0x10, 0x80, 0xeb, 0x00, 0x10},
1168         {}
1169 };
1170 static const u8 po1030_sensor_param1[][8] = {
1171 /* from ms-win traces - these values change with auto gain/expo/wb.. */
1172         {0xa1, 0x6e, 0x1e, 0x03, 0x00, 0x00, 0x00, 0x10},
1173         {0xa1, 0x6e, 0x1e, 0x03, 0x00, 0x00, 0x00, 0x10},
1174 /* mean values */
1175         {0xc1, 0x6e, 0x1a, 0x02, 0xd4, 0xa4, 0x00, 0x10}, /* integlines */
1176         {0xa1, 0x6e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x10}, /* global gain */
1177         {0xc1, 0x6e, 0x16, 0x40, 0x40, 0x40, 0x00, 0x10}, /* r/g1/b gains */
1178
1179         {0xa1, 0x6e, 0x1d, 0x08, 0x00, 0x00, 0x00, 0x10}, /* control1 */
1180         {0xa1, 0x6e, 0x06, 0x02, 0x00, 0x00, 0x00, 0x10}, /* frameheight */
1181         {0xa1, 0x6e, 0x07, 0xd5, 0x00, 0x00, 0x00, 0x10},
1182 /*      {0xc1, 0x6e, 0x16, 0x49, 0x40, 0x45, 0x00, 0x10}, */
1183         {}
1184 };
1185
1186 static const u8 po2030n_sensor_init[][8] = {
1187         {0xa1, 0x6e, 0x1e, 0x1a, 0x00, 0x00, 0x00, 0x10},
1188         {0xa1, 0x6e, 0x1f, 0x99, 0x00, 0x00, 0x00, 0x10},
1189         {DELAY, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 10ms */
1190         {0xa1, 0x6e, 0x1e, 0x0a, 0x00, 0x00, 0x00, 0x10},
1191         {0xa1, 0x6e, 0x1f, 0x19, 0x00, 0x00, 0x00, 0x10},
1192         {DELAY, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 10ms */
1193         {0xa1, 0x6e, 0x20, 0x44, 0x00, 0x00, 0x00, 0x10},
1194         {0xa1, 0x6e, 0x04, 0x03, 0x00, 0x00, 0x00, 0x10},
1195         {0xa1, 0x6e, 0x05, 0x70, 0x00, 0x00, 0x00, 0x10},
1196         {0xa1, 0x6e, 0x06, 0x02, 0x00, 0x00, 0x00, 0x10},
1197         {0xa1, 0x6e, 0x07, 0x25, 0x00, 0x00, 0x00, 0x10},
1198         {0xd1, 0x6e, 0x08, 0x00, 0xd0, 0x00, 0x08, 0x10},
1199         {0xd1, 0x6e, 0x0c, 0x03, 0x50, 0x01, 0xe8, 0x10},
1200         {0xd1, 0x6e, 0x1d, 0x20, 0x0a, 0x19, 0x44, 0x10},
1201         {0xd1, 0x6e, 0x21, 0x00, 0x00, 0x00, 0x00, 0x10},
1202         {0xd1, 0x6e, 0x25, 0x00, 0x00, 0x00, 0x00, 0x10},
1203         {0xd1, 0x6e, 0x29, 0x00, 0x00, 0x00, 0x00, 0x10},
1204         {0xd1, 0x6e, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x10},
1205         {0xd1, 0x6e, 0x31, 0x00, 0x00, 0x00, 0x00, 0x10},
1206         {0xd1, 0x6e, 0x35, 0x00, 0x00, 0x00, 0x00, 0x10},
1207         {0xd1, 0x6e, 0x39, 0x00, 0x00, 0x00, 0x00, 0x10},
1208         {0xd1, 0x6e, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x10},
1209         {0xd1, 0x6e, 0x41, 0x00, 0x00, 0x00, 0x00, 0x10},
1210         {0xd1, 0x6e, 0x45, 0x00, 0x00, 0x00, 0x00, 0x10},
1211         {0xd1, 0x6e, 0x49, 0x00, 0x00, 0x00, 0x00, 0x10},
1212         {0xd1, 0x6e, 0x4d, 0x00, 0x00, 0x00, 0xed, 0x10},
1213         {0xd1, 0x6e, 0x51, 0x17, 0x4a, 0x2f, 0xc0, 0x10},
1214         {0xd1, 0x6e, 0x55, 0x00, 0x00, 0x00, 0x00, 0x10},
1215         {0xd1, 0x6e, 0x59, 0x00, 0x00, 0x00, 0x00, 0x10},
1216         {0xd1, 0x6e, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x10},
1217         {0xd1, 0x6e, 0x61, 0x00, 0x00, 0x00, 0x00, 0x10},
1218         {0xd1, 0x6e, 0x65, 0x00, 0x00, 0x00, 0x00, 0x10},
1219         {0xd1, 0x6e, 0x69, 0x00, 0x00, 0x00, 0x00, 0x10},
1220         {0xd1, 0x6e, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x10},
1221         {0xd1, 0x6e, 0x71, 0x00, 0x00, 0x00, 0x00, 0x10},
1222         {0xd1, 0x6e, 0x75, 0x00, 0x00, 0x00, 0x00, 0x10},
1223         {0xd1, 0x6e, 0x79, 0x00, 0x00, 0x00, 0x00, 0x10},
1224         {0xd1, 0x6e, 0x7d, 0x00, 0x00, 0x00, 0x00, 0x10},
1225         {0xd1, 0x6e, 0x81, 0x00, 0x00, 0x00, 0x00, 0x10},
1226         {0xd1, 0x6e, 0x85, 0x00, 0x00, 0x00, 0x08, 0x10},
1227         {0xd1, 0x6e, 0x89, 0x01, 0xe8, 0x00, 0x01, 0x10},
1228         {0xa1, 0x6e, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x10},
1229         {0xd1, 0x6e, 0x21, 0x00, 0x00, 0x00, 0x00, 0x10},
1230         {0xd1, 0x6e, 0x25, 0x00, 0x00, 0x00, 0x01, 0x10},
1231         {0xd1, 0x6e, 0x29, 0xe6, 0x00, 0xbd, 0x03, 0x10},
1232         {0xd1, 0x6e, 0x2d, 0x41, 0x38, 0x68, 0x40, 0x10},
1233         {0xd1, 0x6e, 0x31, 0x2b, 0x00, 0x36, 0x00, 0x10},
1234         {0xd1, 0x6e, 0x35, 0x30, 0x30, 0x08, 0x00, 0x10},
1235         {0xd1, 0x6e, 0x39, 0x00, 0x00, 0x33, 0x06, 0x10},
1236         {0xb1, 0x6e, 0x3d, 0x06, 0x02, 0x00, 0x00, 0x10},
1237         {}
1238 };
1239 static const u8 po2030n_sensor_param1[][8] = {
1240         {0xa1, 0x6e, 0x1a, 0x01, 0x00, 0x00, 0x00, 0x10},
1241         {DELAY, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 8ms */
1242         {0xa1, 0x6e, 0x1b, 0xf4, 0x00, 0x00, 0x00, 0x10},
1243         {0xa1, 0x6e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x10},
1244         {0xd1, 0x6e, 0x16, 0x50, 0x40, 0x49, 0x40, 0x10},
1245 /*param2*/
1246         {0xa1, 0x6e, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x10},
1247         {0xa1, 0x6e, 0x04, 0x03, 0x00, 0x00, 0x00, 0x10},
1248         {0xa1, 0x6e, 0x05, 0x6f, 0x00, 0x00, 0x00, 0x10},
1249         {0xa1, 0x6e, 0x06, 0x02, 0x00, 0x00, 0x00, 0x10},
1250         {0xa1, 0x6e, 0x07, 0x25, 0x00, 0x00, 0x00, 0x10},
1251         {0xa1, 0x6e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x10},
1252         {0xc1, 0x6e, 0x16, 0x52, 0x40, 0x48, 0x00, 0x10},
1253 /*after start*/
1254         {0xa1, 0x6e, 0x15, 0x0f, 0x00, 0x00, 0x00, 0x10},
1255         {DELAY, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 5ms */
1256         {0xa1, 0x6e, 0x1a, 0x05, 0x00, 0x00, 0x00, 0x10},
1257         {DELAY, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 5ms */
1258         {0xa1, 0x6e, 0x1b, 0x53, 0x00, 0x00, 0x00, 0x10},
1259         {}
1260 };
1261
1262 static const u8 soi768_sensor_init[][8] = {
1263         {0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10}, /* reset */
1264         {DELAY, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 96ms */
1265         {0xa1, 0x21, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
1266         {0xa1, 0x21, 0x13, 0x80, 0x00, 0x00, 0x00, 0x10},
1267         {0xa1, 0x21, 0x0f, 0x03, 0x00, 0x00, 0x00, 0x10},
1268         {0xa1, 0x21, 0x19, 0x00, 0x00, 0x00, 0x00, 0x10},
1269         {}
1270 };
1271 static const u8 soi768_sensor_param1[][8] = {
1272         {0xa1, 0x21, 0x10, 0x10, 0x00, 0x00, 0x00, 0x10},
1273         {0xa1, 0x21, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x10},
1274         {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10},
1275         {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
1276         {0xb1, 0x21, 0x01, 0x7f, 0x7f, 0x00, 0x00, 0x10},
1277 /* */
1278 /*      {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10}, */
1279 /*      {0xa1, 0x21, 0x2d, 0x25, 0x00, 0x00, 0x00, 0x10}, */
1280         {0xa1, 0x21, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10},
1281 /*      {0xb1, 0x21, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x10}, */
1282         {0xa1, 0x21, 0x02, 0x8d, 0x00, 0x00, 0x00, 0x10},
1283 /* the next sequence should be used for auto gain */
1284         {0xa1, 0x21, 0x00, 0x07, 0x00, 0x00, 0x00, 0x10},
1285                         /* global gain ? : 07 - change with 0x15 at the end */
1286         {0xa1, 0x21, 0x10, 0x3f, 0x00, 0x00, 0x00, 0x10}, /* ???? : 063f */
1287         {0xa1, 0x21, 0x04, 0x06, 0x00, 0x00, 0x00, 0x10},
1288         {0xb1, 0x21, 0x2d, 0x00, 0x02, 0x00, 0x00, 0x10},
1289                         /* exposure ? : 0200 - change with 0x1e at the end */
1290         {}
1291 };
1292
1293 static const u8 sp80708_sensor_init[][8] = {
1294         {0xa1, 0x18, 0x06, 0xf9, 0x00, 0x00, 0x00, 0x10},
1295         {0xa1, 0x18, 0x09, 0x1f, 0x00, 0x00, 0x00, 0x10},
1296         {0xa1, 0x18, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x10},
1297         {0xa1, 0x18, 0x0d, 0xc0, 0x00, 0x00, 0x00, 0x10},
1298         {0xa1, 0x18, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x10},
1299         {0xa1, 0x18, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x10},
1300         {0xa1, 0x18, 0x10, 0x40, 0x00, 0x00, 0x00, 0x10},
1301         {0xa1, 0x18, 0x11, 0x4e, 0x00, 0x00, 0x00, 0x10},
1302         {0xa1, 0x18, 0x12, 0x53, 0x00, 0x00, 0x00, 0x10},
1303         {0xa1, 0x18, 0x15, 0x80, 0x00, 0x00, 0x00, 0x10},
1304         {0xa1, 0x18, 0x18, 0x18, 0x00, 0x00, 0x00, 0x10},
1305         {0xa1, 0x18, 0x19, 0x18, 0x00, 0x00, 0x00, 0x10},
1306         {0xa1, 0x18, 0x1a, 0x10, 0x00, 0x00, 0x00, 0x10},
1307         {0xa1, 0x18, 0x1b, 0x10, 0x00, 0x00, 0x00, 0x10},
1308         {0xa1, 0x18, 0x1c, 0x28, 0x00, 0x00, 0x00, 0x10},
1309         {0xa1, 0x18, 0x1d, 0x02, 0x00, 0x00, 0x00, 0x10},
1310         {0xa1, 0x18, 0x1e, 0x10, 0x00, 0x00, 0x00, 0x10},
1311         {0xa1, 0x18, 0x26, 0x04, 0x00, 0x00, 0x00, 0x10},
1312         {0xa1, 0x18, 0x27, 0x1e, 0x00, 0x00, 0x00, 0x10},
1313         {0xa1, 0x18, 0x28, 0x5a, 0x00, 0x00, 0x00, 0x10},
1314         {0xa1, 0x18, 0x29, 0x28, 0x00, 0x00, 0x00, 0x10},
1315         {0xa1, 0x18, 0x2a, 0x78, 0x00, 0x00, 0x00, 0x10},
1316         {0xa1, 0x18, 0x2b, 0x01, 0x00, 0x00, 0x00, 0x10},
1317         {0xa1, 0x18, 0x2c, 0xf7, 0x00, 0x00, 0x00, 0x10},
1318         {0xa1, 0x18, 0x2d, 0x2d, 0x00, 0x00, 0x00, 0x10},
1319         {0xa1, 0x18, 0x2e, 0xd5, 0x00, 0x00, 0x00, 0x10},
1320         {0xa1, 0x18, 0x39, 0x42, 0x00, 0x00, 0x00, 0x10},
1321         {0xa1, 0x18, 0x3a, 0x67, 0x00, 0x00, 0x00, 0x10},
1322         {0xa1, 0x18, 0x3b, 0x87, 0x00, 0x00, 0x00, 0x10},
1323         {0xa1, 0x18, 0x3c, 0xa3, 0x00, 0x00, 0x00, 0x10},
1324         {0xa1, 0x18, 0x3d, 0xb0, 0x00, 0x00, 0x00, 0x10},
1325         {0xa1, 0x18, 0x3e, 0xbc, 0x00, 0x00, 0x00, 0x10},
1326         {0xa1, 0x18, 0x3f, 0xc8, 0x00, 0x00, 0x00, 0x10},
1327         {0xa1, 0x18, 0x40, 0xd4, 0x00, 0x00, 0x00, 0x10},
1328         {0xa1, 0x18, 0x41, 0xdf, 0x00, 0x00, 0x00, 0x10},
1329         {0xa1, 0x18, 0x42, 0xea, 0x00, 0x00, 0x00, 0x10},
1330         {0xa1, 0x18, 0x43, 0xf5, 0x00, 0x00, 0x00, 0x10},
1331         {0xa1, 0x18, 0x45, 0x80, 0x00, 0x00, 0x00, 0x10},
1332         {0xa1, 0x18, 0x46, 0x60, 0x00, 0x00, 0x00, 0x10},
1333         {0xa1, 0x18, 0x47, 0x50, 0x00, 0x00, 0x00, 0x10},
1334         {0xa1, 0x18, 0x48, 0x30, 0x00, 0x00, 0x00, 0x10},
1335         {0xa1, 0x18, 0x49, 0x01, 0x00, 0x00, 0x00, 0x10},
1336         {0xa1, 0x18, 0x4d, 0xae, 0x00, 0x00, 0x00, 0x10},
1337         {0xa1, 0x18, 0x4e, 0x03, 0x00, 0x00, 0x00, 0x10},
1338         {0xa1, 0x18, 0x4f, 0x66, 0x00, 0x00, 0x00, 0x10},
1339         {0xa1, 0x18, 0x50, 0x1c, 0x00, 0x00, 0x00, 0x10},
1340         {0xa1, 0x18, 0x44, 0x10, 0x00, 0x00, 0x00, 0x10},
1341         {0xa1, 0x18, 0x4a, 0x30, 0x00, 0x00, 0x00, 0x10},
1342         {0xa1, 0x18, 0x51, 0x80, 0x00, 0x00, 0x00, 0x10},
1343         {0xa1, 0x18, 0x52, 0x80, 0x00, 0x00, 0x00, 0x10},
1344         {0xa1, 0x18, 0x53, 0x80, 0x00, 0x00, 0x00, 0x10},
1345         {0xa1, 0x18, 0x54, 0x80, 0x00, 0x00, 0x00, 0x10},
1346         {0xa1, 0x18, 0x55, 0x80, 0x00, 0x00, 0x00, 0x10},
1347         {0xa1, 0x18, 0x56, 0x80, 0x00, 0x00, 0x00, 0x10},
1348         {0xa1, 0x18, 0x57, 0xe0, 0x00, 0x00, 0x00, 0x10},
1349         {0xa1, 0x18, 0x58, 0xc0, 0x00, 0x00, 0x00, 0x10},
1350         {0xa1, 0x18, 0x59, 0xab, 0x00, 0x00, 0x00, 0x10},
1351         {0xa1, 0x18, 0x5a, 0xa0, 0x00, 0x00, 0x00, 0x10},
1352         {0xa1, 0x18, 0x5b, 0x99, 0x00, 0x00, 0x00, 0x10},
1353         {0xa1, 0x18, 0x5c, 0x90, 0x00, 0x00, 0x00, 0x10},
1354         {0xa1, 0x18, 0x5e, 0x24, 0x00, 0x00, 0x00, 0x10},
1355         {0xa1, 0x18, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x10},
1356         {0xa1, 0x18, 0x60, 0x00, 0x00, 0x00, 0x00, 0x10},
1357         {0xa1, 0x18, 0x61, 0x73, 0x00, 0x00, 0x00, 0x10},
1358         {0xa1, 0x18, 0x63, 0x42, 0x00, 0x00, 0x00, 0x10},
1359         {0xa1, 0x18, 0x64, 0x42, 0x00, 0x00, 0x00, 0x10},
1360         {0xa1, 0x18, 0x65, 0x42, 0x00, 0x00, 0x00, 0x10},
1361         {0xa1, 0x18, 0x66, 0x24, 0x00, 0x00, 0x00, 0x10},
1362         {0xa1, 0x18, 0x67, 0x24, 0x00, 0x00, 0x00, 0x10},
1363         {0xa1, 0x18, 0x68, 0x08, 0x00, 0x00, 0x00, 0x10},
1364         {0xa1, 0x18, 0x2f, 0xc9, 0x00, 0x00, 0x00, 0x10},
1365         {}
1366 };
1367 static const u8 sp80708_sensor_param1[][8] = {
1368         {0xa1, 0x18, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x10},
1369         {0xa1, 0x18, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x10},
1370         {0xa1, 0x18, 0x03, 0x01, 0x00, 0x00, 0x00, 0x10},
1371         {0xa1, 0x18, 0x04, 0xa4, 0x00, 0x00, 0x00, 0x10},
1372         {0xa1, 0x18, 0x14, 0x3f, 0x00, 0x00, 0x00, 0x10},
1373         {0xa1, 0x18, 0x5d, 0x80, 0x00, 0x00, 0x00, 0x10},
1374         {0xb1, 0x18, 0x11, 0x40, 0x40, 0x00, 0x00, 0x10},
1375         {}
1376 };
1377
1378 static const u8 (*sensor_init[])[8] = {
1379 [SENSOR_ADCM1700] =     adcm1700_sensor_init,
1380 [SENSOR_GC0307] =       gc0307_sensor_init,
1381 [SENSOR_HV7131R] =      hv7131r_sensor_init,
1382 [SENSOR_MI0360] =       mi0360_sensor_init,
1383 [SENSOR_MI0360B] =      mi0360b_sensor_init,
1384 [SENSOR_MO4000] =       mo4000_sensor_init,
1385 [SENSOR_MT9V111] =      mt9v111_sensor_init,
1386 [SENSOR_OM6802] =       om6802_sensor_init,
1387 [SENSOR_OV7630] =       ov7630_sensor_init,
1388 [SENSOR_OV7648] =       ov7648_sensor_init,
1389 [SENSOR_OV7660] =       ov7660_sensor_init,
1390 [SENSOR_PO1030] =       po1030_sensor_init,
1391 [SENSOR_PO2030N] =      po2030n_sensor_init,
1392 [SENSOR_SOI768] =       soi768_sensor_init,
1393 [SENSOR_SP80708] =      sp80708_sensor_init,
1394 };
1395
1396 /* read <len> bytes to gspca_dev->usb_buf */
1397 static void reg_r(struct gspca_dev *gspca_dev,
1398                   u16 value, int len)
1399 {
1400         int ret;
1401
1402         if (gspca_dev->usb_err < 0)
1403                 return;
1404 #ifdef GSPCA_DEBUG
1405         if (len > USB_BUF_SZ) {
1406                 err("reg_r: buffer overflow");
1407                 return;
1408         }
1409 #endif
1410         ret = usb_control_msg(gspca_dev->dev,
1411                         usb_rcvctrlpipe(gspca_dev->dev, 0),
1412                         0,
1413                         USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1414                         value, 0,
1415                         gspca_dev->usb_buf, len,
1416                         500);
1417         PDEBUG(D_USBI, "reg_r [%02x] -> %02x", value, gspca_dev->usb_buf[0]);
1418         if (ret < 0) {
1419                 err("reg_r err %d", ret);
1420                 gspca_dev->usb_err = ret;
1421         }
1422 }
1423
1424 static void reg_w1(struct gspca_dev *gspca_dev,
1425                    u16 value,
1426                    u8 data)
1427 {
1428         int ret;
1429
1430         if (gspca_dev->usb_err < 0)
1431                 return;
1432         PDEBUG(D_USBO, "reg_w1 [%04x] = %02x", value, data);
1433         gspca_dev->usb_buf[0] = data;
1434         ret = usb_control_msg(gspca_dev->dev,
1435                         usb_sndctrlpipe(gspca_dev->dev, 0),
1436                         0x08,
1437                         USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1438                         value,
1439                         0,
1440                         gspca_dev->usb_buf, 1,
1441                         500);
1442         if (ret < 0) {
1443                 err("reg_w1 err %d", ret);
1444                 gspca_dev->usb_err = ret;
1445         }
1446 }
1447 static void reg_w(struct gspca_dev *gspca_dev,
1448                           u16 value,
1449                           const u8 *buffer,
1450                           int len)
1451 {
1452         int ret;
1453
1454         if (gspca_dev->usb_err < 0)
1455                 return;
1456         PDEBUG(D_USBO, "reg_w [%04x] = %02x %02x ..",
1457                 value, buffer[0], buffer[1]);
1458 #ifdef GSPCA_DEBUG
1459         if (len > USB_BUF_SZ) {
1460                 err("reg_w: buffer overflow");
1461                 return;
1462         }
1463 #endif
1464         memcpy(gspca_dev->usb_buf, buffer, len);
1465         ret = usb_control_msg(gspca_dev->dev,
1466                         usb_sndctrlpipe(gspca_dev->dev, 0),
1467                         0x08,
1468                         USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1469                         value, 0,
1470                         gspca_dev->usb_buf, len,
1471                         500);
1472         if (ret < 0) {
1473                 err("reg_w err %d", ret);
1474                 gspca_dev->usb_err = ret;
1475         }
1476 }
1477
1478 /* I2C write 1 byte */
1479 static void i2c_w1(struct gspca_dev *gspca_dev, u8 reg, u8 val)
1480 {
1481         struct sd *sd = (struct sd *) gspca_dev;
1482         int ret;
1483
1484         if (gspca_dev->usb_err < 0)
1485                 return;
1486         PDEBUG(D_USBO, "i2c_w1 [%02x] = %02x", reg, val);
1487         switch (sd->sensor) {
1488         case SENSOR_ADCM1700:
1489         case SENSOR_OM6802:
1490         case SENSOR_GC0307:             /* i2c command = a0 (100 kHz) */
1491                 gspca_dev->usb_buf[0] = 0x80 | (2 << 4);
1492                 break;
1493         default:                        /* i2c command = a1 (400 kHz) */
1494                 gspca_dev->usb_buf[0] = 0x81 | (2 << 4);
1495                 break;
1496         }
1497         gspca_dev->usb_buf[1] = sd->i2c_addr;
1498         gspca_dev->usb_buf[2] = reg;
1499         gspca_dev->usb_buf[3] = val;
1500         gspca_dev->usb_buf[4] = 0;
1501         gspca_dev->usb_buf[5] = 0;
1502         gspca_dev->usb_buf[6] = 0;
1503         gspca_dev->usb_buf[7] = 0x10;
1504         ret = usb_control_msg(gspca_dev->dev,
1505                         usb_sndctrlpipe(gspca_dev->dev, 0),
1506                         0x08,
1507                         USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1508                         0x08,                   /* value = i2c */
1509                         0,
1510                         gspca_dev->usb_buf, 8,
1511                         500);
1512         if (ret < 0) {
1513                 err("i2c_w1 err %d", ret);
1514                 gspca_dev->usb_err = ret;
1515         }
1516 }
1517
1518 /* I2C write 8 bytes */
1519 static void i2c_w8(struct gspca_dev *gspca_dev,
1520                    const u8 *buffer)
1521 {
1522         int ret;
1523
1524         if (gspca_dev->usb_err < 0)
1525                 return;
1526         PDEBUG(D_USBO, "i2c_w8 [%02x] = %02x ..",
1527                 buffer[2], buffer[3]);
1528         memcpy(gspca_dev->usb_buf, buffer, 8);
1529         ret = usb_control_msg(gspca_dev->dev,
1530                         usb_sndctrlpipe(gspca_dev->dev, 0),
1531                         0x08,
1532                         USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1533                         0x08, 0,                /* value, index */
1534                         gspca_dev->usb_buf, 8,
1535                         500);
1536         msleep(2);
1537         if (ret < 0) {
1538                 err("i2c_w8 err %d", ret);
1539                 gspca_dev->usb_err = ret;
1540         }
1541 }
1542
1543 /* sensor read 'len' (1..5) bytes in gspca_dev->usb_buf */
1544 static void i2c_r(struct gspca_dev *gspca_dev, u8 reg, int len)
1545 {
1546         struct sd *sd = (struct sd *) gspca_dev;
1547         u8 mode[8];
1548
1549         switch (sd->sensor) {
1550         case SENSOR_ADCM1700:
1551         case SENSOR_OM6802:
1552         case SENSOR_GC0307:             /* i2c command = a0 (100 kHz) */
1553                 mode[0] = 0x80 | 0x10;
1554                 break;
1555         default:                        /* i2c command = 91 (400 kHz) */
1556                 mode[0] = 0x81 | 0x10;
1557                 break;
1558         }
1559         mode[1] = sd->i2c_addr;
1560         mode[2] = reg;
1561         mode[3] = 0;
1562         mode[4] = 0;
1563         mode[5] = 0;
1564         mode[6] = 0;
1565         mode[7] = 0x10;
1566         i2c_w8(gspca_dev, mode);
1567         msleep(2);
1568         mode[0] = (mode[0] & 0x81) | (len << 4) | 0x02;
1569         mode[2] = 0;
1570         i2c_w8(gspca_dev, mode);
1571         msleep(2);
1572         reg_r(gspca_dev, 0x0a, 5);
1573 }
1574
1575 static void i2c_w_seq(struct gspca_dev *gspca_dev,
1576                         const u8 (*data)[8])
1577 {
1578         while ((*data)[0] != 0) {
1579                 if ((*data)[0] != DELAY)
1580                         i2c_w8(gspca_dev, *data);
1581                 else
1582                         msleep((*data)[1]);
1583                 data++;
1584         }
1585 }
1586
1587 /* check the ID of the hv7131 sensor */
1588 /* this sequence is needed because it activates the sensor */
1589 static void hv7131r_probe(struct gspca_dev *gspca_dev)
1590 {
1591         i2c_w1(gspca_dev, 0x02, 0);             /* sensor wakeup */
1592         msleep(10);
1593         reg_w1(gspca_dev, 0x02, 0x66);          /* Gpio on */
1594         msleep(10);
1595         i2c_r(gspca_dev, 0, 5);                 /* read sensor id */
1596         if (gspca_dev->usb_buf[0] == 0x02       /* chip ID (02 is R) */
1597             && gspca_dev->usb_buf[1] == 0x09
1598             && gspca_dev->usb_buf[2] == 0x01) {
1599                 PDEBUG(D_PROBE, "Sensor HV7131R found");
1600                 return;
1601         }
1602         warn("Erroneous HV7131R ID 0x%02x 0x%02x 0x%02x",
1603                 gspca_dev->usb_buf[0], gspca_dev->usb_buf[1],
1604                 gspca_dev->usb_buf[2]);
1605 }
1606
1607 static void mi0360_probe(struct gspca_dev *gspca_dev)
1608 {
1609         struct sd *sd = (struct sd *) gspca_dev;
1610         int i, j;
1611         u16 val = 0;
1612         static const u8 probe_tb[][4][8] = {
1613             {                                   /* mi0360 */
1614                 {0xb0, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10},
1615                 {0x90, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
1616                 {0xa2, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
1617                 {0xb0, 0x5d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x10}
1618             },
1619             {                                   /* mt9v111 */
1620                 {0xb0, 0x5c, 0x01, 0x00, 0x04, 0x00, 0x00, 0x10},
1621                 {0x90, 0x5c, 0x36, 0x00, 0x00, 0x00, 0x00, 0x10},
1622                 {0xa2, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
1623                 {}
1624             },
1625         };
1626
1627         for (i = 0; i < ARRAY_SIZE(probe_tb); i++) {
1628                 reg_w1(gspca_dev, 0x17, 0x62);
1629                 reg_w1(gspca_dev, 0x01, 0x08);
1630                 for (j = 0; j < 3; j++)
1631                         i2c_w8(gspca_dev, probe_tb[i][j]);
1632                 msleep(2);
1633                 reg_r(gspca_dev, 0x0a, 5);
1634                 val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
1635                 if (probe_tb[i][3][0] != 0)
1636                         i2c_w8(gspca_dev, probe_tb[i][3]);
1637                 reg_w1(gspca_dev, 0x01, 0x29);
1638                 reg_w1(gspca_dev, 0x17, 0x42);
1639                 if (val != 0xffff)
1640                         break;
1641         }
1642         if (gspca_dev->usb_err < 0)
1643                 return;
1644         switch (val) {
1645         case 0x8221:
1646                 PDEBUG(D_PROBE, "Sensor mi0360b");
1647                 sd->sensor = SENSOR_MI0360B;
1648                 break;
1649         case 0x823a:
1650                 PDEBUG(D_PROBE, "Sensor mt9v111");
1651                 sd->sensor = SENSOR_MT9V111;
1652                 break;
1653         case 0x8243:
1654                 PDEBUG(D_PROBE, "Sensor mi0360");
1655                 break;
1656         default:
1657                 PDEBUG(D_PROBE, "Unknown sensor %04x - forced to mi0360", val);
1658                 break;
1659         }
1660 }
1661
1662 static void ov7630_probe(struct gspca_dev *gspca_dev)
1663 {
1664         struct sd *sd = (struct sd *) gspca_dev;
1665         u16 val;
1666
1667         /* check ov76xx */
1668         reg_w1(gspca_dev, 0x17, 0x62);
1669         reg_w1(gspca_dev, 0x01, 0x08);
1670         sd->i2c_addr = 0x21;
1671         i2c_r(gspca_dev, 0x0a, 2);
1672         val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
1673         reg_w1(gspca_dev, 0x01, 0x29);
1674         reg_w1(gspca_dev, 0x17, 0x42);
1675         if (gspca_dev->usb_err < 0)
1676                 return;
1677         if (val == 0x7628) {                    /* soi768 */
1678                 sd->sensor = SENSOR_SOI768;
1679 /*fixme: only valid for 0c45:613e?*/
1680                 gspca_dev->cam.input_flags =
1681                                 V4L2_IN_ST_VFLIP | V4L2_IN_ST_HFLIP;
1682                 PDEBUG(D_PROBE, "Sensor soi768");
1683                 return;
1684         }
1685         PDEBUG(D_PROBE, "Sensor ov%04x", val);
1686 }
1687
1688 static void ov7648_probe(struct gspca_dev *gspca_dev)
1689 {
1690         struct sd *sd = (struct sd *) gspca_dev;
1691         u16 val;
1692
1693         /* check ov76xx */
1694         reg_w1(gspca_dev, 0x17, 0x62);
1695         reg_w1(gspca_dev, 0x01, 0x08);
1696         sd->i2c_addr = 0x21;
1697         i2c_r(gspca_dev, 0x0a, 2);
1698         val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
1699         reg_w1(gspca_dev, 0x01, 0x29);
1700         reg_w1(gspca_dev, 0x17, 0x42);
1701         if ((val & 0xff00) == 0x7600) {         /* ov76xx */
1702                 PDEBUG(D_PROBE, "Sensor ov%04x", val);
1703                 return;
1704         }
1705
1706         /* check po1030 */
1707         reg_w1(gspca_dev, 0x17, 0x62);
1708         reg_w1(gspca_dev, 0x01, 0x08);
1709         sd->i2c_addr = 0x6e;
1710         i2c_r(gspca_dev, 0x00, 2);
1711         val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
1712         reg_w1(gspca_dev, 0x01, 0x29);
1713         reg_w1(gspca_dev, 0x17, 0x42);
1714         if (gspca_dev->usb_err < 0)
1715                 return;
1716         if (val == 0x1030) {                    /* po1030 */
1717                 PDEBUG(D_PROBE, "Sensor po1030");
1718                 sd->sensor = SENSOR_PO1030;
1719                 return;
1720         }
1721         err("Unknown sensor %04x", val);
1722 }
1723
1724 /* 0c45:6142 sensor may be po2030n, gc0305 or gc0307 */
1725 static void po2030n_probe(struct gspca_dev *gspca_dev)
1726 {
1727         struct sd *sd = (struct sd *) gspca_dev;
1728         u16 val;
1729
1730         /* check gc0307 */
1731         reg_w1(gspca_dev, 0x17, 0x62);
1732         reg_w1(gspca_dev, 0x01, 0x08);
1733         reg_w1(gspca_dev, 0x02, 0x22);
1734         sd->i2c_addr = 0x21;
1735         i2c_r(gspca_dev, 0x00, 1);
1736         val = gspca_dev->usb_buf[4];
1737         reg_w1(gspca_dev, 0x01, 0x29);          /* reset */
1738         reg_w1(gspca_dev, 0x17, 0x42);
1739         if (val == 0x99) {                      /* gc0307 (?) */
1740                 PDEBUG(D_PROBE, "Sensor gc0307");
1741                 sd->sensor = SENSOR_GC0307;
1742                 return;
1743         }
1744
1745         /* check po2030n */
1746         reg_w1(gspca_dev, 0x17, 0x62);
1747         reg_w1(gspca_dev, 0x01, 0x0a);
1748         sd->i2c_addr = 0x6e;
1749         i2c_r(gspca_dev, 0x00, 2);
1750         val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
1751         reg_w1(gspca_dev, 0x01, 0x29);
1752         reg_w1(gspca_dev, 0x17, 0x42);
1753         if (gspca_dev->usb_err < 0)
1754                 return;
1755         if (val == 0x2030) {
1756                 PDEBUG(D_PROBE, "Sensor po2030n");
1757 /*              sd->sensor = SENSOR_PO2030N; */
1758         } else {
1759                 err("Unknown sensor ID %04x", val);
1760         }
1761 }
1762
1763 /* this function is called at probe time */
1764 static int sd_config(struct gspca_dev *gspca_dev,
1765                         const struct usb_device_id *id)
1766 {
1767         struct sd *sd = (struct sd *) gspca_dev;
1768         struct cam *cam;
1769
1770         sd->bridge = id->driver_info >> 16;
1771         sd->sensor = id->driver_info >> 8;
1772         sd->flags = id->driver_info;
1773
1774         cam = &gspca_dev->cam;
1775         if (sd->sensor == SENSOR_ADCM1700) {
1776                 cam->cam_mode = cif_mode;
1777                 cam->nmodes = ARRAY_SIZE(cif_mode);
1778         } else {
1779                 cam->cam_mode = vga_mode;
1780                 cam->nmodes = ARRAY_SIZE(vga_mode);
1781         }
1782         cam->npkt = 24;                 /* 24 packets per ISOC message */
1783         cam->ctrls = sd->ctrls;
1784
1785         sd->ag_cnt = -1;
1786         sd->quality = QUALITY_DEF;
1787         sd->jpegqual = 80;
1788
1789         return 0;
1790 }
1791
1792 /* this function is called at probe and resume time */
1793 static int sd_init(struct gspca_dev *gspca_dev)
1794 {
1795         struct sd *sd = (struct sd *) gspca_dev;
1796         const u8 *sn9c1xx;
1797         u8 regGpio[] = { 0x29, 0x74 };          /* with audio */
1798         u8 regF1;
1799
1800         /* setup a selector by bridge */
1801         reg_w1(gspca_dev, 0xf1, 0x01);
1802         reg_r(gspca_dev, 0x00, 1);
1803         reg_w1(gspca_dev, 0xf1, 0x00);
1804         reg_r(gspca_dev, 0x00, 1);              /* get sonix chip id */
1805         regF1 = gspca_dev->usb_buf[0];
1806         if (gspca_dev->usb_err < 0)
1807                 return gspca_dev->usb_err;
1808         PDEBUG(D_PROBE, "Sonix chip id: %02x", regF1);
1809         switch (sd->bridge) {
1810         case BRIDGE_SN9C102P:
1811         case BRIDGE_SN9C105:
1812                 if (regF1 != 0x11)
1813                         return -ENODEV;
1814                 break;
1815         default:
1816 /*      case BRIDGE_SN9C110: */
1817 /*      case BRIDGE_SN9C120: */
1818                 if (regF1 != 0x12)
1819                         return -ENODEV;
1820         }
1821
1822         switch (sd->sensor) {
1823         case SENSOR_MI0360:
1824                 mi0360_probe(gspca_dev);
1825                 break;
1826         case SENSOR_OV7630:
1827                 ov7630_probe(gspca_dev);
1828                 break;
1829         case SENSOR_OV7648:
1830                 ov7648_probe(gspca_dev);
1831                 break;
1832         case SENSOR_PO2030N:
1833                 po2030n_probe(gspca_dev);
1834                 break;
1835         }
1836
1837         switch (sd->bridge) {
1838         case BRIDGE_SN9C102P:
1839                 reg_w1(gspca_dev, 0x02, regGpio[1]);
1840                 break;
1841         case BRIDGE_SN9C105:
1842                 reg_w(gspca_dev, 0x01, regGpio, 2);
1843                 break;
1844         case BRIDGE_SN9C110:
1845                 reg_w1(gspca_dev, 0x02, 0x62);
1846                 break;
1847         case BRIDGE_SN9C120:
1848                 regGpio[1] = 0x70;              /* no audio */
1849                 reg_w(gspca_dev, 0x01, regGpio, 2);
1850                 break;
1851         }
1852
1853         if (sd->sensor == SENSOR_OM6802)
1854                 sd->ctrls[SHARPNESS].def = 0x10;
1855
1856         /* Note we do not disable the sensor clock here (power saving mode),
1857            as that also disables the button on the cam. */
1858         reg_w1(gspca_dev, 0xf1, 0x00);
1859
1860         /* set the i2c address */
1861         sn9c1xx = sn_tb[sd->sensor];
1862         sd->i2c_addr = sn9c1xx[9];
1863
1864         gspca_dev->ctrl_dis = ctrl_dis[sd->sensor];
1865         if (!(sd->flags & F_ILLUM))
1866                 gspca_dev->ctrl_dis |= (1 << ILLUM);
1867
1868         return gspca_dev->usb_err;
1869 }
1870
1871 static u32 setexposure(struct gspca_dev *gspca_dev,
1872                         u32 expo)
1873 {
1874         struct sd *sd = (struct sd *) gspca_dev;
1875
1876         switch (sd->sensor) {
1877         case SENSOR_GC0307: {
1878                 int a, b;
1879
1880                 /* expo = 0..255 -> a = 19..43 */
1881                 a = 19 + expo * 25 / 256;
1882                 i2c_w1(gspca_dev, 0x68, a);
1883                 a -= 12;
1884                 b = a * a * 4;                  /* heuristic */
1885                 i2c_w1(gspca_dev, 0x03, b >> 8);
1886                 i2c_w1(gspca_dev, 0x04, b);
1887                 break;
1888             }
1889         case SENSOR_HV7131R: {
1890                 u8 Expodoit[] =
1891                         { 0xc1, 0x11, 0x25, 0x00, 0x00, 0x00, 0x00, 0x16 };
1892
1893                 Expodoit[3] = expo >> 16;
1894                 Expodoit[4] = expo >> 8;
1895                 Expodoit[5] = expo;
1896                 i2c_w8(gspca_dev, Expodoit);
1897                 break;
1898             }
1899         case SENSOR_MI0360:
1900         case SENSOR_MI0360B: {
1901                 u8 expoMi[] =           /* exposure 0x0635 -> 4 fp/s 0x10 */
1902                         { 0xb1, 0x5d, 0x09, 0x00, 0x00, 0x00, 0x00, 0x16 };
1903                 static const u8 doit[] =                /* update sensor */
1904                         { 0xb1, 0x5d, 0x07, 0x00, 0x03, 0x00, 0x00, 0x10 };
1905                 static const u8 sensorgo[] =            /* sensor on */
1906                         { 0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10 };
1907
1908                 if (expo > 0x0635)
1909                         expo = 0x0635;
1910                 else if (expo < 0x0001)
1911                         expo = 0x0001;
1912                 expoMi[3] = expo >> 8;
1913                 expoMi[4] = expo;
1914                 i2c_w8(gspca_dev, expoMi);
1915                 i2c_w8(gspca_dev, doit);
1916                 i2c_w8(gspca_dev, sensorgo);
1917                 break;
1918             }
1919         case SENSOR_MO4000: {
1920                 u8 expoMof[] =
1921                         { 0xa1, 0x21, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x10 };
1922                 u8 expoMo10[] =
1923                         { 0xa1, 0x21, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10 };
1924                 static const u8 gainMo[] =
1925                         { 0xa1, 0x21, 0x00, 0x10, 0x00, 0x00, 0x00, 0x1d };
1926
1927                 if (expo > 0x1fff)
1928                         expo = 0x1fff;
1929                 else if (expo < 0x0001)
1930                         expo = 0x0001;
1931                 expoMof[3] = (expo & 0x03fc) >> 2;
1932                 i2c_w8(gspca_dev, expoMof);
1933                 expoMo10[3] = ((expo & 0x1c00) >> 10)
1934                                 | ((expo & 0x0003) << 4);
1935                 i2c_w8(gspca_dev, expoMo10);
1936                 i2c_w8(gspca_dev, gainMo);
1937                 PDEBUG(D_FRAM, "set exposure %d",
1938                         ((expoMo10[3] & 0x07) << 10)
1939                         | (expoMof[3] << 2)
1940                         | ((expoMo10[3] & 0x30) >> 4));
1941                 break;
1942             }
1943         case SENSOR_MT9V111: {
1944                 u8 expo_c1[] =
1945                         { 0xb1, 0x5c, 0x09, 0x00, 0x00, 0x00, 0x00, 0x10 };
1946
1947                 if (expo > 0x0280)
1948                         expo = 0x0280;
1949                 else if (expo < 0x0040)
1950                         expo = 0x0040;
1951                 expo_c1[3] = expo >> 8;
1952                 expo_c1[4] = expo;
1953                 i2c_w8(gspca_dev, expo_c1);
1954                 break;
1955             }
1956         case SENSOR_OM6802: {
1957                 u8 gainOm[] =
1958                         { 0xa0, 0x34, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x10 };
1959                                 /* preset AGC - works when AutoExpo = off */
1960
1961                 if (expo > 0x03ff)
1962                         expo = 0x03ff;
1963                  if (expo < 0x0001)
1964                         expo = 0x0001;
1965                 gainOm[3] = expo >> 2;
1966                 i2c_w8(gspca_dev, gainOm);
1967                 reg_w1(gspca_dev, 0x96, expo >> 5);
1968                 PDEBUG(D_FRAM, "set exposure %d", gainOm[3]);
1969                 break;
1970             }
1971         }
1972         return expo;
1973 }
1974
1975 static void setbrightness(struct gspca_dev *gspca_dev)
1976 {
1977         struct sd *sd = (struct sd *) gspca_dev;
1978         unsigned int expo;
1979         int brightness;
1980         u8 k2;
1981
1982         brightness = sd->ctrls[BRIGHTNESS].val;
1983         k2 = (brightness - 0x80) >> 2;
1984         switch (sd->sensor) {
1985         case SENSOR_ADCM1700:
1986                 if (k2 > 0x1f)
1987                         k2 = 0;         /* only positive Y offset */
1988                 break;
1989         case SENSOR_HV7131R:
1990                 expo = brightness << 12;
1991                 if (expo > 0x002dc6c0)
1992                         expo = 0x002dc6c0;
1993                 else if (expo < 0x02a0)
1994                         expo = 0x02a0;
1995                 sd->exposure = setexposure(gspca_dev, expo);
1996                 break;
1997         case SENSOR_MI0360:
1998         case SENSOR_MO4000:
1999                 expo = brightness << 4;
2000                 sd->exposure = setexposure(gspca_dev, expo);
2001                 break;
2002         case SENSOR_MI0360B:
2003                 expo = brightness << 2;
2004                 sd->exposure = setexposure(gspca_dev, expo);
2005                 break;
2006         case SENSOR_GC0307:
2007         case SENSOR_MT9V111:
2008                 expo = brightness;
2009                 sd->exposure = setexposure(gspca_dev, expo);
2010                 return;                 /* don't set the Y offset */
2011         case SENSOR_OM6802:
2012                 expo = brightness << 2;
2013                 sd->exposure = setexposure(gspca_dev, expo);
2014                 k2 = brightness >> 3;
2015                 break;
2016         }
2017
2018         reg_w1(gspca_dev, 0x96, k2);    /* color matrix Y offset */
2019 }
2020
2021 static void setcontrast(struct gspca_dev *gspca_dev)
2022 {
2023         struct sd *sd = (struct sd *) gspca_dev;
2024         u8 k2;
2025         u8 contrast[6];
2026
2027         k2 = sd->ctrls[CONTRAST].val * 0x30 / (CONTRAST_MAX + 1)
2028                                 + 0x10;         /* 10..40 */
2029         contrast[0] = (k2 + 1) / 2;             /* red */
2030         contrast[1] = 0;
2031         contrast[2] = k2;                       /* green */
2032         contrast[3] = 0;
2033         contrast[4] = (k2 + 1) / 5;             /* blue */
2034         contrast[5] = 0;
2035         reg_w(gspca_dev, 0x84, contrast, sizeof contrast);
2036 }
2037
2038 static void setcolors(struct gspca_dev *gspca_dev)
2039 {
2040         struct sd *sd = (struct sd *) gspca_dev;
2041         int i, v, colors;
2042         const s16 *uv;
2043         u8 reg8a[12];                   /* U & V gains */
2044         static const s16 uv_com[6] = {  /* same as reg84 in signed decimal */
2045                 -24, -38, 64,           /* UR UG UB */
2046                  62, -51, -9            /* VR VG VB */
2047         };
2048         static const s16 uv_mi0360b[6] = {
2049                 -20, -38, 64,           /* UR UG UB */
2050                  60, -51, -9            /* VR VG VB */
2051         };
2052
2053         colors = sd->ctrls[COLORS].val;
2054         if (sd->sensor == SENSOR_MI0360B)
2055                 uv = uv_mi0360b;
2056         else
2057                 uv = uv_com;
2058         for (i = 0; i < 6; i++) {
2059                 v = uv[i] * colors / COLORS_DEF;
2060                 reg8a[i * 2] = v;
2061                 reg8a[i * 2 + 1] = (v >> 8) & 0x0f;
2062         }
2063         reg_w(gspca_dev, 0x8a, reg8a, sizeof reg8a);
2064 }
2065
2066 static void setredblue(struct gspca_dev *gspca_dev)
2067 {
2068         struct sd *sd = (struct sd *) gspca_dev;
2069
2070         reg_w1(gspca_dev, 0x05, sd->ctrls[RED].val);
2071 /*      reg_w1(gspca_dev, 0x07, 32); */
2072         reg_w1(gspca_dev, 0x06, sd->ctrls[BLUE].val);
2073 }
2074
2075 static void setgamma(struct gspca_dev *gspca_dev)
2076 {
2077         struct sd *sd = (struct sd *) gspca_dev;
2078         int i, val;
2079         u8 gamma[17];
2080         const u8 *gamma_base;
2081         static const u8 delta[17] = {
2082                 0x00, 0x14, 0x1c, 0x1c, 0x1c, 0x1c, 0x1b, 0x1a,
2083                 0x18, 0x13, 0x10, 0x0e, 0x08, 0x07, 0x04, 0x02, 0x00
2084         };
2085
2086         switch (sd->sensor) {
2087         case SENSOR_ADCM1700:
2088                 gamma_base = gamma_spec_0;
2089                 break;
2090         case SENSOR_HV7131R:
2091         case SENSOR_MI0360B:
2092         case SENSOR_MT9V111:
2093                 gamma_base = gamma_spec_1;
2094                 break;
2095         case SENSOR_GC0307:
2096                 gamma_base = gamma_spec_2;
2097                 break;
2098         case SENSOR_SP80708:
2099                 gamma_base = gamma_spec_3;
2100                 break;
2101         default:
2102                 gamma_base = gamma_def;
2103                 break;
2104         }
2105
2106         val = sd->ctrls[GAMMA].val;
2107         for (i = 0; i < sizeof gamma; i++)
2108                 gamma[i] = gamma_base[i]
2109                         + delta[i] * (val - GAMMA_DEF) / 32;
2110         reg_w(gspca_dev, 0x20, gamma, sizeof gamma);
2111 }
2112
2113 static void setautogain(struct gspca_dev *gspca_dev)
2114 {
2115         struct sd *sd = (struct sd *) gspca_dev;
2116
2117         if (gspca_dev->ctrl_dis & (1 << AUTOGAIN))
2118                 return;
2119         switch (sd->sensor) {
2120         case SENSOR_OV7630:
2121         case SENSOR_OV7648: {
2122                 u8 comb;
2123
2124                 if (sd->sensor == SENSOR_OV7630)
2125                         comb = 0xc0;
2126                 else
2127                         comb = 0xa0;
2128                 if (sd->ctrls[AUTOGAIN].val)
2129                         comb |= 0x03;
2130                 i2c_w1(&sd->gspca_dev, 0x13, comb);
2131                 return;
2132             }
2133         }
2134         if (sd->ctrls[AUTOGAIN].val)
2135                 sd->ag_cnt = AG_CNT_START;
2136         else
2137                 sd->ag_cnt = -1;
2138 }
2139
2140 static void sethvflip(struct gspca_dev *gspca_dev)
2141 {
2142         struct sd *sd = (struct sd *) gspca_dev;
2143         u8 comn;
2144
2145         switch (sd->sensor) {
2146         case SENSOR_HV7131R:
2147                 comn = 0x18;                    /* clkdiv = 1, ablcen = 1 */
2148                 if (sd->ctrls[VFLIP].val)
2149                         comn |= 0x01;
2150                 i2c_w1(gspca_dev, 0x01, comn);  /* sctra */
2151                 break;
2152         case SENSOR_OV7630:
2153                 comn = 0x02;
2154                 if (!sd->ctrls[VFLIP].val)
2155                         comn |= 0x80;
2156                 i2c_w1(gspca_dev, 0x75, comn);
2157                 break;
2158         case SENSOR_OV7648:
2159                 comn = 0x06;
2160                 if (sd->ctrls[VFLIP].val)
2161                         comn |= 0x80;
2162                 i2c_w1(gspca_dev, 0x75, comn);
2163                 break;
2164         case SENSOR_PO2030N:
2165                 /* Reg. 0x1E: Timing Generator Control Register 2 (Tgcontrol2)
2166                  * (reset value: 0x0A)
2167                  * bit7: HM: Horizontal Mirror: 0: disable, 1: enable
2168                  * bit6: VM: Vertical Mirror: 0: disable, 1: enable
2169                  * bit5: ST: Shutter Selection: 0: electrical, 1: mechanical
2170                  * bit4: FT: Single Frame Transfer: 0: disable, 1: enable
2171                  * bit3-0: X
2172                  */
2173                 comn = 0x0a;
2174                 if (sd->ctrls[HFLIP].val)
2175                         comn |= 0x80;
2176                 if (sd->ctrls[VFLIP].val)
2177                         comn |= 0x40;
2178                 i2c_w1(&sd->gspca_dev, 0x1e, comn);
2179                 break;
2180         }
2181 }
2182
2183 static void setsharpness(struct gspca_dev *gspca_dev)
2184 {
2185         struct sd *sd = (struct sd *) gspca_dev;
2186
2187         reg_w1(gspca_dev, 0x99, sd->ctrls[SHARPNESS].val);
2188 }
2189
2190 static void setillum(struct gspca_dev *gspca_dev)
2191 {
2192         struct sd *sd = (struct sd *) gspca_dev;
2193
2194         if (gspca_dev->ctrl_dis & (1 << ILLUM))
2195                 return;
2196         switch (sd->sensor) {
2197         case SENSOR_ADCM1700:
2198                 reg_w1(gspca_dev, 0x02,                         /* gpio */
2199                         sd->ctrls[ILLUM].val ? 0x64 : 0x60);
2200                 break;
2201         case SENSOR_MT9V111:
2202                 if (starcam)
2203                         reg_w1(gspca_dev, 0x02,
2204                                 sd->ctrls[ILLUM].val ?
2205                                                 0x55 : 0x54);   /* 370i */
2206                 else
2207                         reg_w1(gspca_dev, 0x02,
2208                                 sd->ctrls[ILLUM].val ?
2209                                                 0x66 : 0x64);   /* Clip */
2210                 break;
2211         }
2212 }
2213
2214 static void setfreq(struct gspca_dev *gspca_dev)
2215 {
2216         struct sd *sd = (struct sd *) gspca_dev;
2217
2218         if (gspca_dev->ctrl_dis & (1 << FREQ))
2219                 return;
2220         if (sd->sensor == SENSOR_OV7660) {
2221                 u8 com8;
2222
2223                 com8 = 0xdf;            /* auto gain/wb/expo */
2224                 switch (sd->ctrls[FREQ].val) {
2225                 case 0: /* Banding filter disabled */
2226                         i2c_w1(gspca_dev, 0x13, com8 | 0x20);
2227                         break;
2228                 case 1: /* 50 hz */
2229                         i2c_w1(gspca_dev, 0x13, com8);
2230                         i2c_w1(gspca_dev, 0x3b, 0x0a);
2231                         break;
2232                 case 2: /* 60 hz */
2233                         i2c_w1(gspca_dev, 0x13, com8);
2234                         i2c_w1(gspca_dev, 0x3b, 0x02);
2235                         break;
2236                 }
2237         } else {
2238                 u8 reg2a = 0, reg2b = 0, reg2d = 0;
2239
2240                 /* Get reg2a / reg2d base values */
2241                 switch (sd->sensor) {
2242                 case SENSOR_OV7630:
2243                         reg2a = 0x08;
2244                         reg2d = 0x01;
2245                         break;
2246                 case SENSOR_OV7648:
2247                         reg2a = 0x11;
2248                         reg2d = 0x81;
2249                         break;
2250                 }
2251
2252                 switch (sd->ctrls[FREQ].val) {
2253                 case 0: /* Banding filter disabled */
2254                         break;
2255                 case 1: /* 50 hz (filter on and framerate adj) */
2256                         reg2a |= 0x80;
2257                         reg2b = 0xac;
2258                         reg2d |= 0x04;
2259                         break;
2260                 case 2: /* 60 hz (filter on, no framerate adj) */
2261                         reg2a |= 0x80;
2262                         reg2d |= 0x04;
2263                         break;
2264                 }
2265                 i2c_w1(gspca_dev, 0x2a, reg2a);
2266                 i2c_w1(gspca_dev, 0x2b, reg2b);
2267                 i2c_w1(gspca_dev, 0x2d, reg2d);
2268         }
2269 }
2270
2271 static void setjpegqual(struct gspca_dev *gspca_dev)
2272 {
2273         struct sd *sd = (struct sd *) gspca_dev;
2274         int i, sc;
2275
2276         if (sd->jpegqual < 50)
2277                 sc = 5000 / sd->jpegqual;
2278         else
2279                 sc = 200 - sd->jpegqual * 2;
2280 #if USB_BUF_SZ < 64
2281 #error "No room enough in usb_buf for quantization table"
2282 #endif
2283         for (i = 0; i < 64; i++)
2284                 gspca_dev->usb_buf[i] =
2285                         (jpeg_head[JPEG_QT0_OFFSET + i] * sc + 50) / 100;
2286         usb_control_msg(gspca_dev->dev,
2287                         usb_sndctrlpipe(gspca_dev->dev, 0),
2288                         0x08,
2289                         USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
2290                         0x0100, 0,
2291                         gspca_dev->usb_buf, 64,
2292                         500);
2293         for (i = 0; i < 64; i++)
2294                 gspca_dev->usb_buf[i] =
2295                         (jpeg_head[JPEG_QT1_OFFSET + i] * sc + 50) / 100;
2296         usb_control_msg(gspca_dev->dev,
2297                         usb_sndctrlpipe(gspca_dev->dev, 0),
2298                         0x08,
2299                         USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
2300                         0x0140, 0,
2301                         gspca_dev->usb_buf, 64,
2302                         500);
2303
2304         sd->reg18 ^= 0x40;
2305         reg_w1(gspca_dev, 0x18, sd->reg18);
2306 }
2307
2308 /* -- start the camera -- */
2309 static int sd_start(struct gspca_dev *gspca_dev)
2310 {
2311         struct sd *sd = (struct sd *) gspca_dev;
2312         int i;
2313         u8 reg01, reg17;
2314         u8 reg0102[2];
2315         const u8 *sn9c1xx;
2316         const u8 (*init)[8];
2317         const u8 *reg9a;
2318         int mode;
2319         static const u8 reg9a_def[] =
2320                 {0x00, 0x40, 0x20, 0x00, 0x00, 0x00};
2321         static const u8 reg9a_spec[] =
2322                 {0x00, 0x40, 0x38, 0x30, 0x00, 0x20};
2323         static const u8 regd4[] = {0x60, 0x00, 0x00};
2324         static const u8 C0[] = { 0x2d, 0x2d, 0x3a, 0x05, 0x04, 0x3f };
2325         static const u8 CA[] = { 0x28, 0xd8, 0x14, 0xec };
2326         static const u8 CA_adcm1700[] =
2327                                 { 0x14, 0xec, 0x0a, 0xf6 };
2328         static const u8 CA_po2030n[] =
2329                                 { 0x1e, 0xe2, 0x14, 0xec };
2330         static const u8 CE[] = { 0x32, 0xdd, 0x2d, 0xdd };      /* MI0360 */
2331         static const u8 CE_gc0307[] =
2332                                 { 0x32, 0xce, 0x2d, 0xd3 };
2333         static const u8 CE_ov76xx[] =
2334                                 { 0x32, 0xdd, 0x32, 0xdd };
2335         static const u8 CE_po2030n[] =
2336                                 { 0x14, 0xe7, 0x1e, 0xdd };
2337
2338         /* create the JPEG header */
2339         jpeg_define(sd->jpeg_hdr, gspca_dev->height, gspca_dev->width,
2340                         0x21);          /* JPEG 422 */
2341         jpeg_set_qual(sd->jpeg_hdr, sd->quality);
2342
2343         /* initialize the bridge */
2344         sn9c1xx = sn_tb[sd->sensor];
2345
2346         /* sensor clock already enabled in sd_init */
2347         /* reg_w1(gspca_dev, 0xf1, 0x00); */
2348         reg01 = sn9c1xx[1];
2349         if (sd->flags & F_PDN_INV)
2350                 reg01 ^= S_PDN_INV;             /* power down inverted */
2351         reg_w1(gspca_dev, 0x01, reg01);
2352
2353         /* configure gpio */
2354         reg0102[0] = reg01;
2355         reg0102[1] = sn9c1xx[2];
2356         if (gspca_dev->audio)
2357                 reg0102[1] |= 0x04;     /* keep the audio connection */
2358         reg_w(gspca_dev, 0x01, reg0102, 2);
2359         reg_w(gspca_dev, 0x08, &sn9c1xx[8], 2);
2360         reg_w(gspca_dev, 0x17, &sn9c1xx[0x17], 5);
2361         switch (sd->sensor) {
2362         case SENSOR_GC0307:
2363         case SENSOR_OV7660:
2364         case SENSOR_PO1030:
2365         case SENSOR_PO2030N:
2366         case SENSOR_SOI768:
2367         case SENSOR_SP80708:
2368                 reg9a = reg9a_spec;
2369                 break;
2370         default:
2371                 reg9a = reg9a_def;
2372                 break;
2373         }
2374         reg_w(gspca_dev, 0x9a, reg9a, 6);
2375
2376         reg_w(gspca_dev, 0xd4, regd4, sizeof regd4);
2377
2378         reg_w(gspca_dev, 0x03, &sn9c1xx[3], 0x0f);
2379
2380         reg17 = sn9c1xx[0x17];
2381         switch (sd->sensor) {
2382         case SENSOR_GC0307:
2383                 msleep(50);             /*fixme: is it useful? */
2384                 break;
2385         case SENSOR_OM6802:
2386                 msleep(10);
2387                 reg_w1(gspca_dev, 0x02, 0x73);
2388                 reg17 |= SEN_CLK_EN;
2389                 reg_w1(gspca_dev, 0x17, reg17);
2390                 reg_w1(gspca_dev, 0x01, 0x22);
2391                 msleep(100);
2392                 reg01 = SCL_SEL_OD | S_PDN_INV;
2393                 reg17 &= MCK_SIZE_MASK;
2394                 reg17 |= 0x04;          /* clock / 4 */
2395                 break;
2396         }
2397         reg01 |= SYS_SEL_48M;
2398         reg_w1(gspca_dev, 0x01, reg01);
2399         reg17 |= SEN_CLK_EN;
2400         reg_w1(gspca_dev, 0x17, reg17);
2401         reg01 &= ~S_PWR_DN;             /* sensor power on */
2402         reg_w1(gspca_dev, 0x01, reg01);
2403         reg01 &= ~SYS_SEL_48M;
2404         reg_w1(gspca_dev, 0x01, reg01);
2405
2406         switch (sd->sensor) {
2407         case SENSOR_HV7131R:
2408                 hv7131r_probe(gspca_dev);       /*fixme: is it useful? */
2409                 break;
2410         case SENSOR_OM6802:
2411                 msleep(10);
2412                 reg_w1(gspca_dev, 0x01, reg01);
2413                 i2c_w8(gspca_dev, om6802_init0[0]);
2414                 i2c_w8(gspca_dev, om6802_init0[1]);
2415                 msleep(15);
2416                 reg_w1(gspca_dev, 0x02, 0x71);
2417                 msleep(150);
2418                 break;
2419         case SENSOR_SP80708:
2420                 msleep(100);
2421                 reg_w1(gspca_dev, 0x02, 0x62);
2422                 break;
2423         }
2424
2425         /* initialize the sensor */
2426         i2c_w_seq(gspca_dev, sensor_init[sd->sensor]);
2427
2428         reg_w1(gspca_dev, 0x15, sn9c1xx[0x15]);
2429         reg_w1(gspca_dev, 0x16, sn9c1xx[0x16]);
2430         reg_w1(gspca_dev, 0x12, sn9c1xx[0x12]);
2431         reg_w1(gspca_dev, 0x13, sn9c1xx[0x13]);
2432         reg_w1(gspca_dev, 0x18, sn9c1xx[0x18]);
2433         if (sd->sensor == SENSOR_ADCM1700) {
2434                 reg_w1(gspca_dev, 0xd2, 0x3a);  /* AE_H_SIZE = 116 */
2435                 reg_w1(gspca_dev, 0xd3, 0x30);  /* AE_V_SIZE = 96 */
2436         } else {
2437                 reg_w1(gspca_dev, 0xd2, 0x6a);  /* AE_H_SIZE = 212 */
2438                 reg_w1(gspca_dev, 0xd3, 0x50);  /* AE_V_SIZE = 160 */
2439         }
2440         reg_w1(gspca_dev, 0xc6, 0x00);
2441         reg_w1(gspca_dev, 0xc7, 0x00);
2442         if (sd->sensor == SENSOR_ADCM1700) {
2443                 reg_w1(gspca_dev, 0xc8, 0x2c);  /* AW_H_STOP = 352 */
2444                 reg_w1(gspca_dev, 0xc9, 0x24);  /* AW_V_STOP = 288 */
2445         } else {
2446                 reg_w1(gspca_dev, 0xc8, 0x50);  /* AW_H_STOP = 640 */
2447                 reg_w1(gspca_dev, 0xc9, 0x3c);  /* AW_V_STOP = 480 */
2448         }
2449         reg_w1(gspca_dev, 0x18, sn9c1xx[0x18]);
2450         switch (sd->sensor) {
2451         case SENSOR_OM6802:
2452 /*      case SENSOR_OV7648:             * fixme: sometimes */
2453                 break;
2454         default:
2455                 reg17 |= DEF_EN;
2456                 break;
2457         }
2458         reg_w1(gspca_dev, 0x17, reg17);
2459
2460         reg_w1(gspca_dev, 0x05, 0x00);          /* red */
2461         reg_w1(gspca_dev, 0x07, 0x00);          /* green */
2462         reg_w1(gspca_dev, 0x06, 0x00);          /* blue */
2463         reg_w1(gspca_dev, 0x14, sn9c1xx[0x14]);
2464
2465         setgamma(gspca_dev);
2466
2467 /*fixme: 8 times with all zeroes and 1 or 2 times with normal values */
2468         for (i = 0; i < 8; i++)
2469                 reg_w(gspca_dev, 0x84, reg84, sizeof reg84);
2470         switch (sd->sensor) {
2471         case SENSOR_ADCM1700:
2472         case SENSOR_OV7660:
2473         case SENSOR_SP80708:
2474                 reg_w1(gspca_dev, 0x9a, 0x05);
2475                 break;
2476         case SENSOR_GC0307:
2477         case SENSOR_MT9V111:
2478         case SENSOR_MI0360B:
2479                 reg_w1(gspca_dev, 0x9a, 0x07);
2480                 break;
2481         case SENSOR_OV7630:
2482         case SENSOR_OV7648:
2483                 reg_w1(gspca_dev, 0x9a, 0x0a);
2484                 break;
2485         case SENSOR_PO2030N:
2486         case SENSOR_SOI768:
2487                 reg_w1(gspca_dev, 0x9a, 0x06);
2488                 break;
2489         default:
2490                 reg_w1(gspca_dev, 0x9a, 0x08);
2491                 break;
2492         }
2493         setsharpness(gspca_dev);
2494
2495         reg_w(gspca_dev, 0x84, reg84, sizeof reg84);
2496         reg_w1(gspca_dev, 0x05, 0x20);          /* red */
2497         reg_w1(gspca_dev, 0x07, 0x20);          /* green */
2498         reg_w1(gspca_dev, 0x06, 0x20);          /* blue */
2499
2500         init = NULL;
2501         mode = gspca_dev->cam.cam_mode[gspca_dev->curr_mode].priv;
2502         reg01 |= SYS_SEL_48M | V_TX_EN;
2503         reg17 &= ~MCK_SIZE_MASK;
2504         reg17 |= 0x02;                  /* clock / 2 */
2505         switch (sd->sensor) {
2506         case SENSOR_ADCM1700:
2507                 init = adcm1700_sensor_param1;
2508                 break;
2509         case SENSOR_GC0307:
2510                 init = gc0307_sensor_param1;
2511                 break;
2512         case SENSOR_HV7131R:
2513         case SENSOR_MI0360:
2514                 if (mode)
2515                         reg01 |= SYS_SEL_48M;   /* 320x240: clk 48Mhz */
2516                 else
2517                         reg01 &= ~SYS_SEL_48M;  /* 640x480: clk 24Mhz */
2518                 reg17 &= ~MCK_SIZE_MASK;
2519                 reg17 |= 0x01;                  /* clock / 1 */
2520                 break;
2521         case SENSOR_MI0360B:
2522                 init = mi0360b_sensor_param1;
2523                 break;
2524         case SENSOR_MO4000:
2525                 if (mode) {                     /* if 320x240 */
2526                         reg01 &= ~SYS_SEL_48M;  /* clk 24Mz */
2527                         reg17 &= ~MCK_SIZE_MASK;
2528                         reg17 |= 0x01;          /* clock / 1 */
2529                 }
2530                 break;
2531         case SENSOR_MT9V111:
2532                 init = mt9v111_sensor_param1;
2533                 break;
2534         case SENSOR_OM6802:
2535                 init = om6802_sensor_param1;
2536                 if (!mode) {                    /* if 640x480 */
2537                         reg17 &= ~MCK_SIZE_MASK;
2538                         reg17 |= 0x04;          /* clock / 4 */
2539                 }
2540                 break;
2541         case SENSOR_OV7630:
2542                 init = ov7630_sensor_param1;
2543                 break;
2544         case SENSOR_OV7648:
2545                 init = ov7648_sensor_param1;
2546                 reg17 &= ~MCK_SIZE_MASK;
2547                 reg17 |= 0x01;                  /* clock / 1 */
2548                 break;
2549         case SENSOR_OV7660:
2550                 init = ov7660_sensor_param1;
2551                 break;
2552         case SENSOR_PO1030:
2553                 init = po1030_sensor_param1;
2554                 break;
2555         case SENSOR_PO2030N:
2556                 init = po2030n_sensor_param1;
2557                 break;
2558         case SENSOR_SOI768:
2559                 init = soi768_sensor_param1;
2560                 break;
2561         case SENSOR_SP80708:
2562                 init = sp80708_sensor_param1;
2563                 break;
2564         }
2565
2566         /* more sensor initialization - param1 */
2567         if (init != NULL) {
2568                 i2c_w_seq(gspca_dev, init);
2569 /*              init = NULL; */
2570         }
2571
2572         reg_w(gspca_dev, 0xc0, C0, 6);
2573         switch (sd->sensor) {
2574         case SENSOR_ADCM1700:
2575         case SENSOR_GC0307:
2576         case SENSOR_SOI768:
2577                 reg_w(gspca_dev, 0xca, CA_adcm1700, 4);
2578                 break;
2579         case SENSOR_PO2030N:
2580                 reg_w(gspca_dev, 0xca, CA_po2030n, 4);
2581                 break;
2582         default:
2583                 reg_w(gspca_dev, 0xca, CA, 4);
2584                 break;
2585         }
2586         switch (sd->sensor) {
2587         case SENSOR_ADCM1700:
2588         case SENSOR_OV7630:
2589         case SENSOR_OV7648:
2590         case SENSOR_OV7660:
2591         case SENSOR_SOI768:
2592                 reg_w(gspca_dev, 0xce, CE_ov76xx, 4);
2593                 break;
2594         case SENSOR_GC0307:
2595                 reg_w(gspca_dev, 0xce, CE_gc0307, 4);
2596                 break;
2597         case SENSOR_PO2030N:
2598                 reg_w(gspca_dev, 0xce, CE_po2030n, 4);
2599                 break;
2600         default:
2601                 reg_w(gspca_dev, 0xce, CE, 4);
2602                                         /* ?? {0x1e, 0xdd, 0x2d, 0xe7} */
2603                 break;
2604         }
2605
2606         /* here change size mode 0 -> VGA; 1 -> CIF */
2607         sd->reg18 = sn9c1xx[0x18] | (mode << 4) | 0x40;
2608         reg_w1(gspca_dev, 0x18, sd->reg18);
2609         setjpegqual(gspca_dev);
2610
2611         reg_w1(gspca_dev, 0x17, reg17);
2612         reg_w1(gspca_dev, 0x01, reg01);
2613         sd->reg01 = reg01;
2614         sd->reg17 = reg17;
2615
2616         sethvflip(gspca_dev);
2617         setbrightness(gspca_dev);
2618         setcontrast(gspca_dev);
2619         setcolors(gspca_dev);
2620         setautogain(gspca_dev);
2621         setfreq(gspca_dev);
2622         return gspca_dev->usb_err;
2623 }
2624
2625 static void sd_stopN(struct gspca_dev *gspca_dev)
2626 {
2627         struct sd *sd = (struct sd *) gspca_dev;
2628         static const u8 stophv7131[] =
2629                 { 0xa1, 0x11, 0x02, 0x09, 0x00, 0x00, 0x00, 0x10 };
2630         static const u8 stopmi0360[] =
2631                 { 0xb1, 0x5d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x10 };
2632         static const u8 stopov7648[] =
2633                 { 0xa1, 0x21, 0x76, 0x20, 0x00, 0x00, 0x00, 0x10 };
2634         static const u8 stopsoi768[] =
2635                 { 0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10 };
2636         u8 reg01;
2637         u8 reg17;
2638
2639         reg01 = sd->reg01;
2640         reg17 = sd->reg17 & ~SEN_CLK_EN;
2641         switch (sd->sensor) {
2642         case SENSOR_ADCM1700:
2643         case SENSOR_GC0307:
2644         case SENSOR_PO2030N:
2645         case SENSOR_SP80708:
2646                 reg01 |= LED;
2647                 reg_w1(gspca_dev, 0x01, reg01);
2648                 reg01 &= ~(LED | V_TX_EN);
2649                 reg_w1(gspca_dev, 0x01, reg01);
2650 /*              reg_w1(gspca_dev, 0x02, 0x??);   * LED off ? */
2651                 break;
2652         case SENSOR_HV7131R:
2653                 reg01 &= ~V_TX_EN;
2654                 reg_w1(gspca_dev, 0x01, reg01);
2655                 i2c_w8(gspca_dev, stophv7131);
2656                 break;
2657         case SENSOR_MI0360:
2658         case SENSOR_MI0360B:
2659                 reg01 &= ~V_TX_EN;
2660                 reg_w1(gspca_dev, 0x01, reg01);
2661 /*              reg_w1(gspca_dev, 0x02, 0x40);    * LED off ? */
2662                 i2c_w8(gspca_dev, stopmi0360);
2663                 break;
2664         case SENSOR_MT9V111:
2665         case SENSOR_OM6802:
2666         case SENSOR_PO1030:
2667                 reg01 &= ~V_TX_EN;
2668                 reg_w1(gspca_dev, 0x01, reg01);
2669                 break;
2670         case SENSOR_OV7630:
2671         case SENSOR_OV7648:
2672                 reg01 &= ~V_TX_EN;
2673                 reg_w1(gspca_dev, 0x01, reg01);
2674                 i2c_w8(gspca_dev, stopov7648);
2675                 break;
2676         case SENSOR_OV7660:
2677                 reg01 &= ~V_TX_EN;
2678                 reg_w1(gspca_dev, 0x01, reg01);
2679                 break;
2680         case SENSOR_SOI768:
2681                 i2c_w8(gspca_dev, stopsoi768);
2682                 break;
2683         }
2684
2685         reg01 |= SCL_SEL_OD;
2686         reg_w1(gspca_dev, 0x01, reg01);
2687         reg01 |= S_PWR_DN;              /* sensor power down */
2688         reg_w1(gspca_dev, 0x01, reg01);
2689         reg_w1(gspca_dev, 0x17, reg17);
2690         reg01 &= ~SYS_SEL_48M;          /* clock 24MHz */
2691         reg_w1(gspca_dev, 0x01, reg01);
2692         reg01 |= LED;
2693         reg_w1(gspca_dev, 0x01, reg01);
2694         /* Don't disable sensor clock as that disables the button on the cam */
2695         /* reg_w1(gspca_dev, 0xf1, 0x01); */
2696 }
2697
2698 static void do_autogain(struct gspca_dev *gspca_dev)
2699 {
2700         struct sd *sd = (struct sd *) gspca_dev;
2701         int delta;
2702         int expotimes;
2703         u8 luma_mean = 130;
2704         u8 luma_delta = 20;
2705
2706         /* Thanks S., without your advice, autobright should not work :) */
2707         if (sd->ag_cnt < 0)
2708                 return;
2709         if (--sd->ag_cnt >= 0)
2710                 return;
2711         sd->ag_cnt = AG_CNT_START;
2712
2713         delta = atomic_read(&sd->avg_lum);
2714         PDEBUG(D_FRAM, "mean lum %d", delta);
2715         if (delta < luma_mean - luma_delta ||
2716             delta > luma_mean + luma_delta) {
2717                 switch (sd->sensor) {
2718                 case SENSOR_GC0307:
2719                         expotimes = sd->exposure;
2720                         expotimes += (luma_mean - delta) >> 6;
2721                         if (expotimes < 0)
2722                                 expotimes = 0;
2723                         sd->exposure = setexposure(gspca_dev,
2724                                                    (unsigned int) expotimes);
2725                         break;
2726                 case SENSOR_HV7131R:
2727                         expotimes = sd->exposure >> 8;
2728                         expotimes += (luma_mean - delta) >> 4;
2729                         if (expotimes < 0)
2730                                 expotimes = 0;
2731                         sd->exposure = setexposure(gspca_dev,
2732                                         (unsigned int) (expotimes << 8));
2733                         break;
2734                 case SENSOR_OM6802:
2735                         expotimes = sd->exposure;
2736                         expotimes += (luma_mean - delta) >> 2;
2737                         if (expotimes < 0)
2738                                 expotimes = 0;
2739                         sd->exposure = setexposure(gspca_dev,
2740                                                    (unsigned int) expotimes);
2741                         setredblue(gspca_dev);
2742                         break;
2743                 default:
2744 /*              case SENSOR_MO4000: */
2745 /*              case SENSOR_MI0360: */
2746 /*              case SENSOR_MI0360B: */
2747 /*              case SENSOR_MT9V111: */
2748                         expotimes = sd->exposure;
2749                         expotimes += (luma_mean - delta) >> 6;
2750                         if (expotimes < 0)
2751                                 expotimes = 0;
2752                         sd->exposure = setexposure(gspca_dev,
2753                                                    (unsigned int) expotimes);
2754                         setredblue(gspca_dev);
2755                         break;
2756                 }
2757         }
2758 }
2759
2760 /* scan the URB packets */
2761 /* This function is run at interrupt level. */
2762 static void sd_pkt_scan(struct gspca_dev *gspca_dev,
2763                         u8 *data,                       /* isoc packet */
2764                         int len)                        /* iso packet length */
2765 {
2766         struct sd *sd = (struct sd *) gspca_dev;
2767         int sof, avg_lum;
2768
2769         /* the image ends on a 64 bytes block starting with
2770          *      ff d9 ff ff 00 c4 c4 96
2771          * and followed by various information including luminosity */
2772         /* this block may be splitted between two packets */
2773         /* a new image always starts in a new packet */
2774         switch (gspca_dev->last_packet_type) {
2775         case DISCARD_PACKET:            /* restart image building */
2776                 sof = len - 64;
2777                 if (sof >= 0 && data[sof] == 0xff && data[sof + 1] == 0xd9)
2778                         gspca_frame_add(gspca_dev, LAST_PACKET, NULL, 0);
2779                 return;
2780         case LAST_PACKET:               /* put the JPEG 422 header */
2781                 gspca_frame_add(gspca_dev, FIRST_PACKET,
2782                                 sd->jpeg_hdr, JPEG_HDR_SZ);
2783                 break;
2784         }
2785         gspca_frame_add(gspca_dev, INTER_PACKET, data, len);
2786
2787         data = gspca_dev->image;
2788         if (data == NULL)
2789                 return;
2790         sof = gspca_dev->image_len - 64;
2791         if (data[sof] != 0xff
2792          || data[sof + 1] != 0xd9)
2793                 return;
2794
2795         /* end of image found - remove the trailing data */
2796         gspca_dev->image_len = sof + 2;
2797         gspca_frame_add(gspca_dev, LAST_PACKET, NULL, 0);
2798         if (sd->ag_cnt < 0)
2799                 return;
2800 /* w1 w2 w3 */
2801 /* w4 w5 w6 */
2802 /* w7 w8 */
2803 /* w4 */
2804         avg_lum = ((data[sof + 29] << 8) | data[sof + 30]) >> 6;
2805 /* w6 */
2806         avg_lum += ((data[sof + 33] << 8) | data[sof + 34]) >> 6;
2807 /* w2 */
2808         avg_lum += ((data[sof + 25] << 8) | data[sof + 26]) >> 6;
2809 /* w8 */
2810         avg_lum += ((data[sof + 37] << 8) | data[sof + 38]) >> 6;
2811 /* w5 */
2812         avg_lum += ((data[sof + 31] << 8) | data[sof + 32]) >> 4;
2813         avg_lum >>= 4;
2814         atomic_set(&sd->avg_lum, avg_lum);
2815 }
2816
2817 static int sd_set_jcomp(struct gspca_dev *gspca_dev,
2818                         struct v4l2_jpegcompression *jcomp)
2819 {
2820         struct sd *sd = (struct sd *) gspca_dev;
2821
2822         if (jcomp->quality < QUALITY_MIN)
2823                 sd->quality = QUALITY_MIN;
2824         else if (jcomp->quality > QUALITY_MAX)
2825                 sd->quality = QUALITY_MAX;
2826         else
2827                 sd->quality = jcomp->quality;
2828         if (gspca_dev->streaming)
2829                 jpeg_set_qual(sd->jpeg_hdr, sd->quality);
2830         return 0;
2831 }
2832
2833 static int sd_get_jcomp(struct gspca_dev *gspca_dev,
2834                         struct v4l2_jpegcompression *jcomp)
2835 {
2836         struct sd *sd = (struct sd *) gspca_dev;
2837
2838         memset(jcomp, 0, sizeof *jcomp);
2839         jcomp->quality = sd->quality;
2840         jcomp->jpeg_markers = V4L2_JPEG_MARKER_DHT
2841                         | V4L2_JPEG_MARKER_DQT;
2842         return 0;
2843 }
2844
2845 static int sd_querymenu(struct gspca_dev *gspca_dev,
2846                         struct v4l2_querymenu *menu)
2847 {
2848         switch (menu->id) {
2849         case V4L2_CID_POWER_LINE_FREQUENCY:
2850                 switch (menu->index) {
2851                 case 0:         /* V4L2_CID_POWER_LINE_FREQUENCY_DISABLED */
2852                         strcpy((char *) menu->name, "NoFliker");
2853                         return 0;
2854                 case 1:         /* V4L2_CID_POWER_LINE_FREQUENCY_50HZ */
2855                         strcpy((char *) menu->name, "50 Hz");
2856                         return 0;
2857                 case 2:         /* V4L2_CID_POWER_LINE_FREQUENCY_60HZ */
2858                         strcpy((char *) menu->name, "60 Hz");
2859                         return 0;
2860                 }
2861                 break;
2862         }
2863         return -EINVAL;
2864 }
2865
2866 #if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
2867 static int sd_int_pkt_scan(struct gspca_dev *gspca_dev,
2868                         u8 *data,               /* interrupt packet data */
2869                         int len)                /* interrupt packet length */
2870 {
2871         int ret = -EINVAL;
2872
2873         if (len == 1 && data[0] == 1) {
2874                 input_report_key(gspca_dev->input_dev, KEY_CAMERA, 1);
2875                 input_sync(gspca_dev->input_dev);
2876                 input_report_key(gspca_dev->input_dev, KEY_CAMERA, 0);
2877                 input_sync(gspca_dev->input_dev);
2878                 ret = 0;
2879         }
2880
2881         return ret;
2882 }
2883 #endif
2884
2885 /* sub-driver description */
2886 static const struct sd_desc sd_desc = {
2887         .name = MODULE_NAME,
2888         .ctrls = sd_ctrls,
2889         .nctrls = NCTRLS,
2890         .config = sd_config,
2891         .init = sd_init,
2892         .start = sd_start,
2893         .stopN = sd_stopN,
2894         .pkt_scan = sd_pkt_scan,
2895         .dq_callback = do_autogain,
2896         .get_jcomp = sd_get_jcomp,
2897         .set_jcomp = sd_set_jcomp,
2898         .querymenu = sd_querymenu,
2899 #if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
2900         .int_pkt_scan = sd_int_pkt_scan,
2901 #endif
2902 };
2903
2904 /* -- module initialisation -- */
2905 #define BS(bridge, sensor) \
2906         .driver_info = (BRIDGE_ ## bridge << 16) \
2907                         | (SENSOR_ ## sensor << 8)
2908 #define BSF(bridge, sensor, flags) \
2909         .driver_info = (BRIDGE_ ## bridge << 16) \
2910                         | (SENSOR_ ## sensor << 8) \
2911                         | (flags)
2912 static const struct usb_device_id device_table[] = {
2913         {USB_DEVICE(0x0458, 0x7025), BS(SN9C120, MI0360)},
2914         {USB_DEVICE(0x0458, 0x702e), BS(SN9C120, OV7660)},
2915         {USB_DEVICE(0x045e, 0x00f5), BSF(SN9C105, OV7660, F_PDN_INV)},
2916         {USB_DEVICE(0x045e, 0x00f7), BSF(SN9C105, OV7660, F_PDN_INV)},
2917         {USB_DEVICE(0x0471, 0x0327), BS(SN9C105, MI0360)},
2918         {USB_DEVICE(0x0471, 0x0328), BS(SN9C105, MI0360)},
2919         {USB_DEVICE(0x0471, 0x0330), BS(SN9C105, MI0360)},
2920         {USB_DEVICE(0x06f8, 0x3004), BS(SN9C105, OV7660)},
2921         {USB_DEVICE(0x06f8, 0x3008), BS(SN9C105, OV7660)},
2922 /*      {USB_DEVICE(0x0c45, 0x603a), BS(SN9C102P, OV7648)}, */
2923         {USB_DEVICE(0x0c45, 0x6040), BS(SN9C102P, HV7131R)},
2924 /*      {USB_DEVICE(0x0c45, 0x607a), BS(SN9C102P, OV7648)}, */
2925 /*      {USB_DEVICE(0x0c45, 0x607b), BS(SN9C102P, OV7660)}, */
2926         {USB_DEVICE(0x0c45, 0x607c), BS(SN9C102P, HV7131R)},
2927 /*      {USB_DEVICE(0x0c45, 0x607e), BS(SN9C102P, OV7630)}, */
2928         {USB_DEVICE(0x0c45, 0x60c0), BSF(SN9C105, MI0360, F_ILLUM)},
2929                                                 /* or MT9V111 */
2930 /*      {USB_DEVICE(0x0c45, 0x60c2), BS(SN9C105, P1030xC)}, */
2931 /*      {USB_DEVICE(0x0c45, 0x60c8), BS(SN9C105, OM6802)}, */
2932 /*      {USB_DEVICE(0x0c45, 0x60cc), BS(SN9C105, HV7131GP)}, */
2933         {USB_DEVICE(0x0c45, 0x60ce), BS(SN9C105, SP80708)},
2934         {USB_DEVICE(0x0c45, 0x60ec), BS(SN9C105, MO4000)},
2935 /*      {USB_DEVICE(0x0c45, 0x60ef), BS(SN9C105, ICM105C)}, */
2936 /*      {USB_DEVICE(0x0c45, 0x60fa), BS(SN9C105, OV7648)}, */
2937 /*      {USB_DEVICE(0x0c45, 0x60f2), BS(SN9C105, OV7660)}, */
2938         {USB_DEVICE(0x0c45, 0x60fb), BS(SN9C105, OV7660)},
2939         {USB_DEVICE(0x0c45, 0x60fc), BS(SN9C105, HV7131R)},
2940         {USB_DEVICE(0x0c45, 0x60fe), BS(SN9C105, OV7630)},
2941         {USB_DEVICE(0x0c45, 0x6100), BS(SN9C120, MI0360)},      /*sn9c128*/
2942         {USB_DEVICE(0x0c45, 0x6102), BS(SN9C120, PO2030N)},     /* /GC0305*/
2943 /*      {USB_DEVICE(0x0c45, 0x6108), BS(SN9C120, OM6802)}, */
2944         {USB_DEVICE(0x0c45, 0x610a), BS(SN9C120, OV7648)},      /*sn9c128*/
2945         {USB_DEVICE(0x0c45, 0x610b), BS(SN9C120, OV7660)},      /*sn9c128*/
2946         {USB_DEVICE(0x0c45, 0x610c), BS(SN9C120, HV7131R)},     /*sn9c128*/
2947         {USB_DEVICE(0x0c45, 0x610e), BS(SN9C120, OV7630)},      /*sn9c128*/
2948 /*      {USB_DEVICE(0x0c45, 0x610f), BS(SN9C120, S5K53BEB)}, */
2949 /*      {USB_DEVICE(0x0c45, 0x6122), BS(SN9C110, ICM105C)}, */
2950 /*      {USB_DEVICE(0x0c45, 0x6123), BS(SN9C110, SanyoCCD)}, */
2951         {USB_DEVICE(0x0c45, 0x6128), BS(SN9C120, OM6802)},      /*sn9c325?*/
2952 /*bw600.inf:*/
2953         {USB_DEVICE(0x0c45, 0x612a), BS(SN9C120, OV7648)},      /*sn9c325?*/
2954         {USB_DEVICE(0x0c45, 0x612b), BS(SN9C110, ADCM1700)},
2955         {USB_DEVICE(0x0c45, 0x612c), BS(SN9C110, MO4000)},
2956         {USB_DEVICE(0x0c45, 0x612e), BS(SN9C110, OV7630)},
2957 /*      {USB_DEVICE(0x0c45, 0x612f), BS(SN9C110, ICM105C)}, */
2958         {USB_DEVICE(0x0c45, 0x6130), BS(SN9C120, MI0360)},
2959                                                 /* or MT9V111 / MI0360B */
2960 /*      {USB_DEVICE(0x0c45, 0x6132), BS(SN9C120, OV7670)}, */
2961         {USB_DEVICE(0x0c45, 0x6138), BS(SN9C120, MO4000)},
2962         {USB_DEVICE(0x0c45, 0x613a), BS(SN9C120, OV7648)},
2963         {USB_DEVICE(0x0c45, 0x613b), BS(SN9C120, OV7660)},
2964         {USB_DEVICE(0x0c45, 0x613c), BS(SN9C120, HV7131R)},
2965         {USB_DEVICE(0x0c45, 0x613e), BS(SN9C120, OV7630)},
2966         {USB_DEVICE(0x0c45, 0x6142), BS(SN9C120, PO2030N)},     /*sn9c120b*/
2967                                                 /* or GC0305 / GC0307 */
2968         {USB_DEVICE(0x0c45, 0x6143), BS(SN9C120, SP80708)},     /*sn9c120b*/
2969         {USB_DEVICE(0x0c45, 0x6148), BS(SN9C120, OM6802)},      /*sn9c120b*/
2970         {USB_DEVICE(0x0c45, 0x614a), BSF(SN9C120, ADCM1700, F_ILLUM)},
2971 /*      {USB_DEVICE(0x0c45, 0x614c), BS(SN9C120, GC0306)}, */   /*sn9c120b*/
2972         {}
2973 };
2974 MODULE_DEVICE_TABLE(usb, device_table);
2975
2976 /* -- device connect -- */
2977 static int sd_probe(struct usb_interface *intf,
2978                     const struct usb_device_id *id)
2979 {
2980         return gspca_dev_probe(intf, id, &sd_desc, sizeof(struct sd),
2981                                 THIS_MODULE);
2982 }
2983
2984 static struct usb_driver sd_driver = {
2985         .name = MODULE_NAME,
2986         .id_table = device_table,
2987         .probe = sd_probe,
2988         .disconnect = gspca_disconnect,
2989 #ifdef CONFIG_PM
2990         .suspend = gspca_suspend,
2991         .resume = gspca_resume,
2992 #endif
2993 };
2994
2995 /* -- module insert / remove -- */
2996 static int __init sd_mod_init(void)
2997 {
2998         return usb_register(&sd_driver);
2999 }
3000 static void __exit sd_mod_exit(void)
3001 {
3002         usb_deregister(&sd_driver);
3003 }
3004
3005 module_init(sd_mod_init);
3006 module_exit(sd_mod_exit);
3007
3008 module_param(starcam, int, 0644);
3009 MODULE_PARM_DESC(starcam,
3010         "StarCam model. 0: Clip, 1: 370i");