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