1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
41
42#define MODULE_NAME "ov519"
43
44#include <linux/input.h>
45#include "gspca.h"
46
47
48
49#define CONEX_CAM
50#include "jpeg.h"
51
52MODULE_AUTHOR("Jean-Francois Moine <http://moinejf.free.fr>");
53MODULE_DESCRIPTION("OV519 USB Camera Driver");
54MODULE_LICENSE("GPL");
55
56
57static int frame_rate;
58
59
60
61static int i2c_detect_tries = 10;
62
63
64struct sd {
65 struct gspca_dev gspca_dev;
66
67 struct v4l2_ctrl *jpegqual;
68 struct v4l2_ctrl *freq;
69 struct {
70 struct v4l2_ctrl *hflip;
71 struct v4l2_ctrl *vflip;
72 };
73 struct {
74 struct v4l2_ctrl *autobright;
75 struct v4l2_ctrl *brightness;
76 };
77
78 u8 packet_nr;
79
80 char bridge;
81#define BRIDGE_OV511 0
82#define BRIDGE_OV511PLUS 1
83#define BRIDGE_OV518 2
84#define BRIDGE_OV518PLUS 3
85#define BRIDGE_OV519 4
86#define BRIDGE_OVFX2 5
87#define BRIDGE_W9968CF 6
88#define BRIDGE_MASK 7
89
90 char invert_led;
91#define BRIDGE_INVERT_LED 8
92
93 char snapshot_pressed;
94 char snapshot_needs_reset;
95
96
97 u8 sif;
98
99#define QUALITY_MIN 50
100#define QUALITY_MAX 70
101#define QUALITY_DEF 50
102
103 u8 stopped;
104 u8 first_frame;
105
106 u8 frame_rate;
107 u8 clockdiv;
108
109 s8 sensor;
110
111 u8 sensor_addr;
112 u16 sensor_width;
113 u16 sensor_height;
114 s16 sensor_reg_cache[256];
115
116 u8 jpeg_hdr[JPEG_HDR_SZ];
117};
118enum sensors {
119 SEN_OV2610,
120 SEN_OV2610AE,
121 SEN_OV3610,
122 SEN_OV6620,
123 SEN_OV6630,
124 SEN_OV66308AF,
125 SEN_OV7610,
126 SEN_OV7620,
127 SEN_OV7620AE,
128 SEN_OV7640,
129 SEN_OV7648,
130 SEN_OV7660,
131 SEN_OV7670,
132 SEN_OV76BE,
133 SEN_OV8610,
134 SEN_OV9600,
135};
136
137
138
139
140#include "w996Xcf.c"
141
142
143struct ctrl_valid {
144 unsigned int has_brightness:1;
145 unsigned int has_contrast:1;
146 unsigned int has_exposure:1;
147 unsigned int has_autogain:1;
148 unsigned int has_sat:1;
149 unsigned int has_hvflip:1;
150 unsigned int has_autobright:1;
151 unsigned int has_freq:1;
152};
153
154static const struct ctrl_valid valid_controls[] = {
155 [SEN_OV2610] = {
156 .has_exposure = 1,
157 .has_autogain = 1,
158 },
159 [SEN_OV2610AE] = {
160 .has_exposure = 1,
161 .has_autogain = 1,
162 },
163 [SEN_OV3610] = {
164
165 },
166 [SEN_OV6620] = {
167 .has_brightness = 1,
168 .has_contrast = 1,
169 .has_sat = 1,
170 .has_autobright = 1,
171 .has_freq = 1,
172 },
173 [SEN_OV6630] = {
174 .has_brightness = 1,
175 .has_contrast = 1,
176 .has_sat = 1,
177 .has_autobright = 1,
178 .has_freq = 1,
179 },
180 [SEN_OV66308AF] = {
181 .has_brightness = 1,
182 .has_contrast = 1,
183 .has_sat = 1,
184 .has_autobright = 1,
185 .has_freq = 1,
186 },
187 [SEN_OV7610] = {
188 .has_brightness = 1,
189 .has_contrast = 1,
190 .has_sat = 1,
191 .has_autobright = 1,
192 .has_freq = 1,
193 },
194 [SEN_OV7620] = {
195 .has_brightness = 1,
196 .has_contrast = 1,
197 .has_sat = 1,
198 .has_autobright = 1,
199 .has_freq = 1,
200 },
201 [SEN_OV7620AE] = {
202 .has_brightness = 1,
203 .has_contrast = 1,
204 .has_sat = 1,
205 .has_autobright = 1,
206 .has_freq = 1,
207 },
208 [SEN_OV7640] = {
209 .has_brightness = 1,
210 .has_sat = 1,
211 .has_freq = 1,
212 },
213 [SEN_OV7648] = {
214 .has_brightness = 1,
215 .has_sat = 1,
216 .has_freq = 1,
217 },
218 [SEN_OV7660] = {
219 .has_brightness = 1,
220 .has_contrast = 1,
221 .has_sat = 1,
222 .has_hvflip = 1,
223 .has_freq = 1,
224 },
225 [SEN_OV7670] = {
226 .has_brightness = 1,
227 .has_contrast = 1,
228 .has_hvflip = 1,
229 .has_freq = 1,
230 },
231 [SEN_OV76BE] = {
232 .has_brightness = 1,
233 .has_contrast = 1,
234 .has_sat = 1,
235 .has_autobright = 1,
236 .has_freq = 1,
237 },
238 [SEN_OV8610] = {
239 .has_brightness = 1,
240 .has_contrast = 1,
241 .has_sat = 1,
242 .has_autobright = 1,
243 },
244 [SEN_OV9600] = {
245 .has_exposure = 1,
246 .has_autogain = 1,
247 },
248};
249
250static const struct v4l2_pix_format ov519_vga_mode[] = {
251 {320, 240, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
252 .bytesperline = 320,
253 .sizeimage = 320 * 240 * 3 / 8 + 590,
254 .colorspace = V4L2_COLORSPACE_JPEG,
255 .priv = 1},
256 {640, 480, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
257 .bytesperline = 640,
258 .sizeimage = 640 * 480 * 3 / 8 + 590,
259 .colorspace = V4L2_COLORSPACE_JPEG,
260 .priv = 0},
261};
262static const struct v4l2_pix_format ov519_sif_mode[] = {
263 {160, 120, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
264 .bytesperline = 160,
265 .sizeimage = 160 * 120 * 3 / 8 + 590,
266 .colorspace = V4L2_COLORSPACE_JPEG,
267 .priv = 3},
268 {176, 144, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
269 .bytesperline = 176,
270 .sizeimage = 176 * 144 * 3 / 8 + 590,
271 .colorspace = V4L2_COLORSPACE_JPEG,
272 .priv = 1},
273 {320, 240, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
274 .bytesperline = 320,
275 .sizeimage = 320 * 240 * 3 / 8 + 590,
276 .colorspace = V4L2_COLORSPACE_JPEG,
277 .priv = 2},
278 {352, 288, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
279 .bytesperline = 352,
280 .sizeimage = 352 * 288 * 3 / 8 + 590,
281 .colorspace = V4L2_COLORSPACE_JPEG,
282 .priv = 0},
283};
284
285
286
287
288
289
290
291static const struct v4l2_pix_format ov518_vga_mode[] = {
292 {320, 240, V4L2_PIX_FMT_OV518, V4L2_FIELD_NONE,
293 .bytesperline = 320,
294 .sizeimage = 320 * 240 * 3,
295 .colorspace = V4L2_COLORSPACE_JPEG,
296 .priv = 1},
297 {640, 480, V4L2_PIX_FMT_OV518, V4L2_FIELD_NONE,
298 .bytesperline = 640,
299 .sizeimage = 640 * 480 * 2,
300 .colorspace = V4L2_COLORSPACE_JPEG,
301 .priv = 0},
302};
303static const struct v4l2_pix_format ov518_sif_mode[] = {
304 {160, 120, V4L2_PIX_FMT_OV518, V4L2_FIELD_NONE,
305 .bytesperline = 160,
306 .sizeimage = 70000,
307 .colorspace = V4L2_COLORSPACE_JPEG,
308 .priv = 3},
309 {176, 144, V4L2_PIX_FMT_OV518, V4L2_FIELD_NONE,
310 .bytesperline = 176,
311 .sizeimage = 70000,
312 .colorspace = V4L2_COLORSPACE_JPEG,
313 .priv = 1},
314 {320, 240, V4L2_PIX_FMT_OV518, V4L2_FIELD_NONE,
315 .bytesperline = 320,
316 .sizeimage = 320 * 240 * 3,
317 .colorspace = V4L2_COLORSPACE_JPEG,
318 .priv = 2},
319 {352, 288, V4L2_PIX_FMT_OV518, V4L2_FIELD_NONE,
320 .bytesperline = 352,
321 .sizeimage = 352 * 288 * 3,
322 .colorspace = V4L2_COLORSPACE_JPEG,
323 .priv = 0},
324};
325
326static const struct v4l2_pix_format ov511_vga_mode[] = {
327 {320, 240, V4L2_PIX_FMT_OV511, V4L2_FIELD_NONE,
328 .bytesperline = 320,
329 .sizeimage = 320 * 240 * 3,
330 .colorspace = V4L2_COLORSPACE_JPEG,
331 .priv = 1},
332 {640, 480, V4L2_PIX_FMT_OV511, V4L2_FIELD_NONE,
333 .bytesperline = 640,
334 .sizeimage = 640 * 480 * 2,
335 .colorspace = V4L2_COLORSPACE_JPEG,
336 .priv = 0},
337};
338static const struct v4l2_pix_format ov511_sif_mode[] = {
339 {160, 120, V4L2_PIX_FMT_OV511, V4L2_FIELD_NONE,
340 .bytesperline = 160,
341 .sizeimage = 70000,
342 .colorspace = V4L2_COLORSPACE_JPEG,
343 .priv = 3},
344 {176, 144, V4L2_PIX_FMT_OV511, V4L2_FIELD_NONE,
345 .bytesperline = 176,
346 .sizeimage = 70000,
347 .colorspace = V4L2_COLORSPACE_JPEG,
348 .priv = 1},
349 {320, 240, V4L2_PIX_FMT_OV511, V4L2_FIELD_NONE,
350 .bytesperline = 320,
351 .sizeimage = 320 * 240 * 3,
352 .colorspace = V4L2_COLORSPACE_JPEG,
353 .priv = 2},
354 {352, 288, V4L2_PIX_FMT_OV511, V4L2_FIELD_NONE,
355 .bytesperline = 352,
356 .sizeimage = 352 * 288 * 3,
357 .colorspace = V4L2_COLORSPACE_JPEG,
358 .priv = 0},
359};
360
361static const struct v4l2_pix_format ovfx2_vga_mode[] = {
362 {320, 240, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
363 .bytesperline = 320,
364 .sizeimage = 320 * 240,
365 .colorspace = V4L2_COLORSPACE_SRGB,
366 .priv = 1},
367 {640, 480, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
368 .bytesperline = 640,
369 .sizeimage = 640 * 480,
370 .colorspace = V4L2_COLORSPACE_SRGB,
371 .priv = 0},
372};
373static const struct v4l2_pix_format ovfx2_cif_mode[] = {
374 {160, 120, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
375 .bytesperline = 160,
376 .sizeimage = 160 * 120,
377 .colorspace = V4L2_COLORSPACE_SRGB,
378 .priv = 3},
379 {176, 144, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
380 .bytesperline = 176,
381 .sizeimage = 176 * 144,
382 .colorspace = V4L2_COLORSPACE_SRGB,
383 .priv = 1},
384 {320, 240, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
385 .bytesperline = 320,
386 .sizeimage = 320 * 240,
387 .colorspace = V4L2_COLORSPACE_SRGB,
388 .priv = 2},
389 {352, 288, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
390 .bytesperline = 352,
391 .sizeimage = 352 * 288,
392 .colorspace = V4L2_COLORSPACE_SRGB,
393 .priv = 0},
394};
395static const struct v4l2_pix_format ovfx2_ov2610_mode[] = {
396 {800, 600, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
397 .bytesperline = 800,
398 .sizeimage = 800 * 600,
399 .colorspace = V4L2_COLORSPACE_SRGB,
400 .priv = 1},
401 {1600, 1200, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
402 .bytesperline = 1600,
403 .sizeimage = 1600 * 1200,
404 .colorspace = V4L2_COLORSPACE_SRGB},
405};
406static const struct v4l2_pix_format ovfx2_ov3610_mode[] = {
407 {640, 480, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
408 .bytesperline = 640,
409 .sizeimage = 640 * 480,
410 .colorspace = V4L2_COLORSPACE_SRGB,
411 .priv = 1},
412 {800, 600, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
413 .bytesperline = 800,
414 .sizeimage = 800 * 600,
415 .colorspace = V4L2_COLORSPACE_SRGB,
416 .priv = 1},
417 {1024, 768, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
418 .bytesperline = 1024,
419 .sizeimage = 1024 * 768,
420 .colorspace = V4L2_COLORSPACE_SRGB,
421 .priv = 1},
422 {1600, 1200, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
423 .bytesperline = 1600,
424 .sizeimage = 1600 * 1200,
425 .colorspace = V4L2_COLORSPACE_SRGB,
426 .priv = 0},
427 {2048, 1536, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
428 .bytesperline = 2048,
429 .sizeimage = 2048 * 1536,
430 .colorspace = V4L2_COLORSPACE_SRGB,
431 .priv = 0},
432};
433static const struct v4l2_pix_format ovfx2_ov9600_mode[] = {
434 {640, 480, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
435 .bytesperline = 640,
436 .sizeimage = 640 * 480,
437 .colorspace = V4L2_COLORSPACE_SRGB,
438 .priv = 1},
439 {1280, 1024, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
440 .bytesperline = 1280,
441 .sizeimage = 1280 * 1024,
442 .colorspace = V4L2_COLORSPACE_SRGB},
443};
444
445
446#define R51x_FIFO_PSIZE 0x30
447#define R51x_SYS_RESET 0x50
448
449 #define OV511_RESET_OMNICE 0x08
450#define R51x_SYS_INIT 0x53
451#define R51x_SYS_SNAP 0x52
452#define R51x_SYS_CUST_ID 0x5f
453#define R51x_COMP_LUT_BEGIN 0x80
454
455
456#define R511_CAM_DELAY 0x10
457#define R511_CAM_EDGE 0x11
458#define R511_CAM_PXCNT 0x12
459#define R511_CAM_LNCNT 0x13
460#define R511_CAM_PXDIV 0x14
461#define R511_CAM_LNDIV 0x15
462#define R511_CAM_UV_EN 0x16
463#define R511_CAM_LINE_MODE 0x17
464#define R511_CAM_OPTS 0x18
465
466#define R511_SNAP_FRAME 0x19
467#define R511_SNAP_PXCNT 0x1a
468#define R511_SNAP_LNCNT 0x1b
469#define R511_SNAP_PXDIV 0x1c
470#define R511_SNAP_LNDIV 0x1d
471#define R511_SNAP_UV_EN 0x1e
472#define R511_SNAP_OPTS 0x1f
473
474#define R511_DRAM_FLOW_CTL 0x20
475#define R511_FIFO_OPTS 0x31
476#define R511_I2C_CTL 0x40
477#define R511_SYS_LED_CTL 0x55
478#define R511_COMP_EN 0x78
479#define R511_COMP_LUT_EN 0x79
480
481
482#define R518_GPIO_OUT 0x56
483#define R518_GPIO_CTL 0x57
484
485
486#define OV519_R10_H_SIZE 0x10
487#define OV519_R11_V_SIZE 0x11
488#define OV519_R12_X_OFFSETL 0x12
489#define OV519_R13_X_OFFSETH 0x13
490#define OV519_R14_Y_OFFSETL 0x14
491#define OV519_R15_Y_OFFSETH 0x15
492#define OV519_R16_DIVIDER 0x16
493#define OV519_R20_DFR 0x20
494#define OV519_R25_FORMAT 0x25
495
496
497#define OV519_R51_RESET1 0x51
498#define OV519_R54_EN_CLK1 0x54
499#define OV519_R57_SNAPSHOT 0x57
500
501#define OV519_GPIO_DATA_OUT0 0x71
502#define OV519_GPIO_IO_CTRL0 0x72
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529#define OVFX2_BULK_SIZE (13 * 4096)
530
531
532#define R51x_I2C_W_SID 0x41
533#define R51x_I2C_SADDR_3 0x42
534#define R51x_I2C_SADDR_2 0x43
535#define R51x_I2C_R_SID 0x44
536#define R51x_I2C_DATA 0x45
537#define R518_I2C_CTL 0x47
538#define OVFX2_I2C_ADDR 0x00
539
540
541#define OV7xx0_SID 0x42
542#define OV_HIRES_SID 0x60
543#define OV8xx0_SID 0xa0
544#define OV6xx0_SID 0xc0
545
546
547#define OV7610_REG_GAIN 0x00
548#define OV7610_REG_BLUE 0x01
549#define OV7610_REG_RED 0x02
550#define OV7610_REG_SAT 0x03
551#define OV8610_REG_HUE 0x04
552#define OV7610_REG_CNT 0x05
553#define OV7610_REG_BRT 0x06
554#define OV7610_REG_COM_C 0x14
555#define OV7610_REG_ID_HIGH 0x1c
556#define OV7610_REG_ID_LOW 0x1d
557#define OV7610_REG_COM_I 0x29
558
559
560#define OV7670_R00_GAIN 0x00
561#define OV7670_R01_BLUE 0x01
562#define OV7670_R02_RED 0x02
563#define OV7670_R03_VREF 0x03
564#define OV7670_R04_COM1 0x04
565
566#define OV7670_R0C_COM3 0x0c
567#define OV7670_R0D_COM4 0x0d
568#define OV7670_R0E_COM5 0x0e
569#define OV7670_R0F_COM6 0x0f
570#define OV7670_R10_AECH 0x10
571#define OV7670_R11_CLKRC 0x11
572#define OV7670_R12_COM7 0x12
573#define OV7670_COM7_FMT_VGA 0x00
574
575#define OV7670_COM7_FMT_QVGA 0x10
576#define OV7670_COM7_FMT_MASK 0x38
577#define OV7670_COM7_RESET 0x80
578#define OV7670_R13_COM8 0x13
579#define OV7670_COM8_AEC 0x01
580#define OV7670_COM8_AWB 0x02
581#define OV7670_COM8_AGC 0x04
582#define OV7670_COM8_BFILT 0x20
583#define OV7670_COM8_AECSTEP 0x40
584#define OV7670_COM8_FASTAEC 0x80
585#define OV7670_R14_COM9 0x14
586#define OV7670_R15_COM10 0x15
587#define OV7670_R17_HSTART 0x17
588#define OV7670_R18_HSTOP 0x18
589#define OV7670_R19_VSTART 0x19
590#define OV7670_R1A_VSTOP 0x1a
591#define OV7670_R1E_MVFP 0x1e
592#define OV7670_MVFP_VFLIP 0x10
593#define OV7670_MVFP_MIRROR 0x20
594#define OV7670_R24_AEW 0x24
595#define OV7670_R25_AEB 0x25
596#define OV7670_R26_VPT 0x26
597#define OV7670_R32_HREF 0x32
598#define OV7670_R3A_TSLB 0x3a
599#define OV7670_R3B_COM11 0x3b
600#define OV7670_COM11_EXP 0x02
601#define OV7670_COM11_HZAUTO 0x10
602#define OV7670_R3C_COM12 0x3c
603#define OV7670_R3D_COM13 0x3d
604#define OV7670_COM13_GAMMA 0x80
605#define OV7670_COM13_UVSAT 0x40
606#define OV7670_R3E_COM14 0x3e
607#define OV7670_R3F_EDGE 0x3f
608#define OV7670_R40_COM15 0x40
609
610#define OV7670_R41_COM16 0x41
611#define OV7670_COM16_AWBGAIN 0x08
612
613#define OV7670_R55_BRIGHT 0x55
614#define OV7670_R56_CONTRAS 0x56
615#define OV7670_R69_GFIX 0x69
616
617#define OV7670_R9F_HAECC1 0x9f
618#define OV7670_RA0_HAECC2 0xa0
619#define OV7670_RA5_BD50MAX 0xa5
620#define OV7670_RA6_HAECC3 0xa6
621#define OV7670_RA7_HAECC4 0xa7
622#define OV7670_RA8_HAECC5 0xa8
623#define OV7670_RA9_HAECC6 0xa9
624#define OV7670_RAA_HAECC7 0xaa
625#define OV7670_RAB_BD60MAX 0xab
626
627struct ov_regvals {
628 u8 reg;
629 u8 val;
630};
631struct ov_i2c_regvals {
632 u8 reg;
633 u8 val;
634};
635
636
637static const struct ov_i2c_regvals norm_2610[] = {
638 { 0x12, 0x80 },
639};
640
641static const struct ov_i2c_regvals norm_2610ae[] = {
642 {0x12, 0x80},
643 {0x13, 0xcd},
644 {0x09, 0x01},
645 {0x0d, 0x00},
646 {0x11, 0x80},
647 {0x12, 0x20},
648 {0x33, 0x0c},
649 {0x35, 0x90},
650 {0x36, 0x37},
651
652 {0x11, 0x83},
653 {0x2d, 0x00},
654 {0x24, 0xb0},
655 {0x25, 0x90},
656 {0x10, 0x43},
657};
658
659static const struct ov_i2c_regvals norm_3620b[] = {
660
661
662
663
664
665
666
667
668
669 { 0x12, 0x80 },
670 { 0x12, 0x00 },
671
672
673
674
675
676
677
678 { 0x11, 0x80 },
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701 { 0x13, 0xc0 },
702
703
704
705
706
707
708
709
710
711
712
713
714
715 { 0x09, 0x08 },
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736 { 0x0c, 0x08 },
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757 { 0x0d, 0xa1 },
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772 { 0x0e, 0x70 },
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795 { 0x0f, 0x42 },
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821 { 0x14, 0xc6 },
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843 { 0x15, 0x02 },
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863 { 0x33, 0x09 },
864
865
866
867
868
869
870
871
872
873
874
875 { 0x34, 0x50 },
876
877
878
879
880
881
882
883
884
885
886
887 { 0x36, 0x00 },
888
889
890
891
892
893
894
895
896
897
898
899 { 0x37, 0x04 },
900
901
902
903
904
905
906
907
908
909
910
911 { 0x38, 0x52 },
912
913
914
915
916
917
918
919 { 0x3a, 0x00 },
920
921
922
923
924
925
926
927 { 0x3c, 0x1f },
928
929
930
931
932
933
934 { 0x44, 0x00 },
935
936
937
938
939
940
941 { 0x40, 0x00 },
942
943
944
945
946
947
948 { 0x41, 0x00 },
949
950
951
952
953
954
955 { 0x42, 0x00 },
956
957
958
959
960
961
962 { 0x43, 0x00 },
963
964
965
966
967
968
969 { 0x45, 0x80 },
970
971
972
973
974
975
976 { 0x48, 0xc0 },
977
978
979
980
981
982
983 { 0x49, 0x19 },
984
985
986
987
988
989
990 { 0x4b, 0x80 },
991
992
993
994
995
996
997 { 0x4d, 0xc4 },
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009 { 0x35, 0x4c },
1010
1011
1012
1013
1014
1015
1016 { 0x3d, 0x00 },
1017
1018
1019
1020
1021
1022
1023 { 0x3e, 0x00 },
1024
1025
1026
1027
1028
1029
1030
1031 { 0x3b, 0x18 },
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051 { 0x33, 0x19 },
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063 { 0x34, 0x5a },
1064
1065
1066
1067
1068
1069
1070
1071 { 0x3b, 0x00 },
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091 { 0x33, 0x09 },
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103 { 0x34, 0x50 },
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121 { 0x12, 0x40 },
1122
1123
1124
1125
1126
1127
1128
1129 { 0x17, 0x1f },
1130
1131
1132
1133
1134
1135
1136
1137 { 0x18, 0x5f },
1138
1139
1140
1141
1142
1143
1144
1145 { 0x19, 0x00 },
1146
1147
1148
1149
1150
1151
1152
1153 { 0x1a, 0x60 },
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165 { 0x32, 0x12 },
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177 { 0x03, 0x4a },
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190 { 0x11, 0x80 },
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208 { 0x12, 0x00 },
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226 { 0x12, 0x40 },
1227
1228
1229
1230
1231
1232
1233
1234 { 0x17, 0x1f },
1235
1236
1237
1238
1239
1240
1241
1242 { 0x18, 0x5f },
1243
1244
1245
1246
1247
1248
1249
1250 { 0x19, 0x00 },
1251
1252
1253
1254
1255
1256
1257
1258 { 0x1a, 0x60 },
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270 { 0x32, 0x12 },
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282 { 0x03, 0x4a },
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292 { 0x02, 0xaf },
1293
1294
1295
1296
1297
1298
1299
1300 { 0x2d, 0xd2 },
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313 { 0x00, 0x18 },
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323 { 0x01, 0xf0 },
1324
1325
1326
1327
1328
1329
1330
1331 { 0x10, 0x0a },
1332
1333 { 0xe1, 0x67 },
1334 { 0xe3, 0x03 },
1335 { 0xe4, 0x26 },
1336 { 0xe5, 0x3e },
1337 { 0xf8, 0x01 },
1338 { 0xff, 0x01 },
1339};
1340
1341static const struct ov_i2c_regvals norm_6x20[] = {
1342 { 0x12, 0x80 },
1343 { 0x11, 0x01 },
1344 { 0x03, 0x60 },
1345 { 0x05, 0x7f },
1346 { 0x07, 0xa8 },
1347
1348 { 0x0c, 0x24 },
1349 { 0x0d, 0x24 },
1350 { 0x0f, 0x15 },
1351 { 0x10, 0x75 },
1352 { 0x12, 0x24 },
1353 { 0x14, 0x04 },
1354
1355 { 0x16, 0x06 },
1356
1357 { 0x26, 0xb2 },
1358
1359 { 0x28, 0x05 },
1360 { 0x2a, 0x04 },
1361
1362 { 0x2d, 0x85 },
1363 { 0x33, 0xa0 },
1364 { 0x34, 0xd2 },
1365 { 0x38, 0x8b },
1366 { 0x39, 0x40 },
1367
1368 { 0x3c, 0x39 },
1369 { 0x3c, 0x3c },
1370 { 0x3c, 0x24 },
1371
1372 { 0x3d, 0x80 },
1373
1374
1375 { 0x4a, 0x80 },
1376 { 0x4b, 0x80 },
1377 { 0x4d, 0xd2 },
1378 { 0x4e, 0xc1 },
1379 { 0x4f, 0x04 },
1380
1381
1382};
1383
1384static const struct ov_i2c_regvals norm_6x30[] = {
1385 { 0x12, 0x80 },
1386 { 0x00, 0x1f },
1387 { 0x01, 0x99 },
1388 { 0x02, 0x7c },
1389 { 0x03, 0xc0 },
1390 { 0x05, 0x0a },
1391 { 0x06, 0x95 },
1392 { 0x07, 0x2d },
1393 { 0x0c, 0x20 },
1394 { 0x0d, 0x20 },
1395 { 0x0e, 0xa0 },
1396 { 0x0f, 0x05 },
1397 { 0x10, 0x9a },
1398 { 0x11, 0x00 },
1399 { 0x12, 0x24 },
1400 { 0x13, 0x21 },
1401 { 0x14, 0x80 },
1402 { 0x15, 0x01 },
1403 { 0x16, 0x03 },
1404 { 0x17, 0x38 },
1405 { 0x18, 0xea },
1406 { 0x19, 0x04 },
1407 { 0x1a, 0x93 },
1408 { 0x1b, 0x00 },
1409 { 0x1e, 0xc4 },
1410 { 0x1f, 0x04 },
1411 { 0x20, 0x20 },
1412 { 0x21, 0x10 },
1413 { 0x22, 0x88 },
1414 { 0x23, 0xc0 },
1415 { 0x25, 0x9a },
1416 { 0x26, 0xb2 },
1417 { 0x27, 0xa2 },
1418 { 0x28, 0x00 },
1419 { 0x29, 0x00 },
1420 { 0x2a, 0x84 },
1421 { 0x2b, 0xa8 },
1422 { 0x2c, 0xa0 },
1423 { 0x2d, 0x95 },
1424 { 0x2e, 0x88 },
1425 { 0x33, 0x26 },
1426 { 0x34, 0x03 },
1427 { 0x36, 0x8f },
1428 { 0x37, 0x80 },
1429 { 0x38, 0x83 },
1430 { 0x39, 0x80 },
1431 { 0x3a, 0x0f },
1432 { 0x3b, 0x3c },
1433 { 0x3c, 0x1a },
1434 { 0x3d, 0x80 },
1435 { 0x3e, 0x80 },
1436 { 0x3f, 0x0e },
1437 { 0x40, 0x00 },
1438 { 0x41, 0x00 },
1439 { 0x42, 0x80 },
1440 { 0x43, 0x3f },
1441 { 0x44, 0x80 },
1442 { 0x45, 0x20 },
1443 { 0x46, 0x20 },
1444 { 0x47, 0x80 },
1445 { 0x48, 0x7f },
1446 { 0x49, 0x00 },
1447 { 0x4a, 0x00 },
1448 { 0x4b, 0x80 },
1449 { 0x4c, 0xd0 },
1450 { 0x4d, 0x10 },
1451 { 0x4e, 0x40 },
1452 { 0x4f, 0x07 },
1453 { 0x50, 0xff },
1454 { 0x54, 0x23 },
1455 { 0x55, 0xff },
1456 { 0x56, 0x12 },
1457 { 0x57, 0x81 },
1458 { 0x58, 0x75 },
1459 { 0x59, 0x01 },
1460 { 0x5a, 0x2c },
1461 { 0x5b, 0x0f },
1462 { 0x5c, 0x10 },
1463 { 0x3d, 0x80 },
1464 { 0x27, 0xa6 },
1465 { 0x12, 0x20 },
1466 { 0x12, 0x24 },
1467};
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480static const struct ov_i2c_regvals norm_7610[] = {
1481 { 0x10, 0xff },
1482 { 0x16, 0x06 },
1483 { 0x28, 0x24 },
1484 { 0x2b, 0xac },
1485 { 0x12, 0x00 },
1486 { 0x38, 0x81 },
1487 { 0x28, 0x24 },
1488 { 0x0f, 0x85 },
1489 { 0x15, 0x01 },
1490 { 0x20, 0x1c },
1491 { 0x23, 0x2a },
1492 { 0x24, 0x10 },
1493 { 0x25, 0x8a },
1494 { 0x26, 0xa2 },
1495 { 0x27, 0xc2 },
1496 { 0x2a, 0x04 },
1497 { 0x2c, 0xfe },
1498 { 0x2d, 0x93 },
1499 { 0x30, 0x71 },
1500 { 0x31, 0x60 },
1501 { 0x32, 0x26 },
1502 { 0x33, 0x20 },
1503 { 0x34, 0x48 },
1504 { 0x12, 0x24 },
1505 { 0x11, 0x01 },
1506 { 0x0c, 0x24 },
1507 { 0x0d, 0x24 },
1508};
1509
1510static const struct ov_i2c_regvals norm_7620[] = {
1511 { 0x12, 0x80 },
1512 { 0x00, 0x00 },
1513 { 0x01, 0x80 },
1514 { 0x02, 0x80 },
1515 { 0x03, 0xc0 },
1516 { 0x06, 0x60 },
1517 { 0x07, 0x00 },
1518 { 0x0c, 0x24 },
1519 { 0x0c, 0x24 },
1520 { 0x0d, 0x24 },
1521 { 0x11, 0x01 },
1522 { 0x12, 0x24 },
1523 { 0x13, 0x01 },
1524 { 0x14, 0x84 },
1525 { 0x15, 0x01 },
1526 { 0x16, 0x03 },
1527 { 0x17, 0x2f },
1528 { 0x18, 0xcf },
1529 { 0x19, 0x06 },
1530 { 0x1a, 0xf5 },
1531 { 0x1b, 0x00 },
1532 { 0x20, 0x18 },
1533 { 0x21, 0x80 },
1534 { 0x22, 0x80 },
1535 { 0x23, 0x00 },
1536 { 0x26, 0xa2 },
1537 { 0x27, 0xea },
1538 { 0x28, 0x22 },
1539 { 0x29, 0x00 },
1540 { 0x2a, 0x10 },
1541 { 0x2b, 0x00 },
1542 { 0x2c, 0x88 },
1543 { 0x2d, 0x91 },
1544 { 0x2e, 0x80 },
1545 { 0x2f, 0x44 },
1546 { 0x60, 0x27 },
1547 { 0x61, 0x02 },
1548 { 0x62, 0x5f },
1549 { 0x63, 0xd5 },
1550 { 0x64, 0x57 },
1551 { 0x65, 0x83 },
1552 { 0x66, 0x55 },
1553 { 0x67, 0x92 },
1554 { 0x68, 0xcf },
1555 { 0x69, 0x76 },
1556 { 0x6a, 0x22 },
1557 { 0x6b, 0x00 },
1558 { 0x6c, 0x02 },
1559 { 0x6d, 0x44 },
1560 { 0x6e, 0x80 },
1561 { 0x6f, 0x1d },
1562 { 0x70, 0x8b },
1563 { 0x71, 0x00 },
1564 { 0x72, 0x14 },
1565 { 0x73, 0x54 },
1566 { 0x74, 0x00 },
1567 { 0x75, 0x8e },
1568 { 0x76, 0x00 },
1569 { 0x77, 0xff },
1570 { 0x78, 0x80 },
1571 { 0x79, 0x80 },
1572 { 0x7a, 0x80 },
1573 { 0x7b, 0xe2 },
1574 { 0x7c, 0x00 },
1575};
1576
1577
1578static const struct ov_i2c_regvals norm_7640[] = {
1579 { 0x12, 0x80 },
1580 { 0x12, 0x14 },
1581};
1582
1583static const struct ov_regvals init_519_ov7660[] = {
1584 { 0x5d, 0x03 },
1585 { 0x53, 0x9b },
1586 { 0x54, 0x0f },
1587 { 0xa2, 0x20 },
1588 { 0xa3, 0x18 },
1589 { 0xa4, 0x04 },
1590 { 0xa5, 0x28 },
1591 { 0x37, 0x00 },
1592 { 0x55, 0x02 },
1593
1594 { 0x20, 0x0c },
1595 { 0x21, 0x38 },
1596 { 0x22, 0x1d },
1597 { 0x17, 0x50 },
1598 { 0x37, 0x00 },
1599 { 0x40, 0xff },
1600 { 0x46, 0x00 },
1601};
1602static const struct ov_i2c_regvals norm_7660[] = {
1603 {OV7670_R12_COM7, OV7670_COM7_RESET},
1604 {OV7670_R11_CLKRC, 0x81},
1605 {0x92, 0x00},
1606 {0x93, 0x00},
1607 {0x9d, 0x4c},
1608 {0x9e, 0x3f},
1609 {OV7670_R3B_COM11, 0x02},
1610 {OV7670_R13_COM8, 0xf5},
1611 {OV7670_R10_AECH, 0x00},
1612 {OV7670_R00_GAIN, 0x00},
1613 {OV7670_R01_BLUE, 0x7c},
1614 {OV7670_R02_RED, 0x9d},
1615 {OV7670_R12_COM7, 0x00},
1616 {OV7670_R04_COM1, 00},
1617 {OV7670_R18_HSTOP, 0x01},
1618 {OV7670_R17_HSTART, 0x13},
1619 {OV7670_R32_HREF, 0x92},
1620 {OV7670_R19_VSTART, 0x02},
1621 {OV7670_R1A_VSTOP, 0x7a},
1622 {OV7670_R03_VREF, 0x00},
1623 {OV7670_R0E_COM5, 0x04},
1624 {OV7670_R0F_COM6, 0x62},
1625 {OV7670_R15_COM10, 0x00},
1626 {0x16, 0x02},
1627 {0x1b, 0x00},
1628 {OV7670_R1E_MVFP, 0x01},
1629 {0x29, 0x3c},
1630 {0x33, 0x00},
1631 {0x34, 0x07},
1632 {0x35, 0x84},
1633 {0x36, 0x00},
1634 {0x37, 0x04},
1635 {0x39, 0x43},
1636 {OV7670_R3A_TSLB, 0x00},
1637 {OV7670_R3C_COM12, 0x6c},
1638 {OV7670_R3D_COM13, 0x98},
1639 {OV7670_R3F_EDGE, 0x23},
1640 {OV7670_R40_COM15, 0xc1},
1641 {OV7670_R41_COM16, 0x22},
1642 {0x6b, 0x0a},
1643 {0xa1, 0x08},
1644 {0x69, 0x80},
1645 {0x43, 0xf0},
1646 {0x44, 0x10},
1647 {0x45, 0x78},
1648 {0x46, 0xa8},
1649 {0x47, 0x60},
1650 {0x48, 0x80},
1651 {0x59, 0xba},
1652 {0x5a, 0x9a},
1653 {0x5b, 0x22},
1654 {0x5c, 0xb9},
1655 {0x5d, 0x9b},
1656 {0x5e, 0x10},
1657 {0x5f, 0xe0},
1658 {0x60, 0x85},
1659 {0x61, 0x60},
1660 {0x9f, 0x9d},
1661 {0xa0, 0xa0},
1662 {0x4f, 0x60},
1663 {0x50, 0x64},
1664 {0x51, 0x04},
1665 {0x52, 0x18},
1666 {0x53, 0x3c},
1667 {0x54, 0x54},
1668 {0x55, 0x40},
1669 {0x56, 0x40},
1670 {0x57, 0x40},
1671 {0x58, 0x0d},
1672 {0x8b, 0xcc},
1673 {0x8c, 0xcc},
1674 {0x8d, 0xcf},
1675 {0x6c, 0x40},
1676 {0x6d, 0xe0},
1677 {0x6e, 0xa0},
1678 {0x6f, 0x80},
1679 {0x70, 0x70},
1680 {0x71, 0x80},
1681 {0x72, 0x60},
1682 {0x73, 0x60},
1683 {0x74, 0x50},
1684 {0x75, 0x40},
1685 {0x76, 0x38},
1686 {0x77, 0x3c},
1687 {0x78, 0x32},
1688 {0x79, 0x1a},
1689 {0x7a, 0x28},
1690 {0x7b, 0x24},
1691 {0x7c, 0x04},
1692 {0x7d, 0x12},
1693 {0x7e, 0x26},
1694 {0x7f, 0x46},
1695 {0x80, 0x54},
1696 {0x81, 0x64},
1697 {0x82, 0x70},
1698 {0x83, 0x7c},
1699 {0x84, 0x86},
1700 {0x85, 0x8e},
1701 {0x86, 0x9c},
1702 {0x87, 0xab},
1703 {0x88, 0xc4},
1704 {0x89, 0xd1},
1705 {0x8a, 0xe5},
1706 {OV7670_R14_COM9, 0x1e},
1707 {OV7670_R24_AEW, 0x80},
1708 {OV7670_R25_AEB, 0x72},
1709 {OV7670_R26_VPT, 0xb3},
1710 {0x62, 0x80},
1711 {0x63, 0x80},
1712 {0x64, 0x06},
1713 {0x65, 0x00},
1714 {0x66, 0x01},
1715 {0x94, 0x0e},
1716 {0x95, 0x14},
1717 {OV7670_R13_COM8, OV7670_COM8_FASTAEC
1718 | OV7670_COM8_AECSTEP
1719 | OV7670_COM8_BFILT
1720 | 0x10
1721 | OV7670_COM8_AGC
1722 | OV7670_COM8_AWB
1723 | OV7670_COM8_AEC},
1724 {0xa1, 0xc8}
1725};
1726static const struct ov_i2c_regvals norm_9600[] = {
1727 {0x12, 0x80},
1728 {0x0c, 0x28},
1729 {0x11, 0x80},
1730 {0x13, 0xb5},
1731 {0x14, 0x3e},
1732 {0x1b, 0x04},
1733 {0x24, 0xb0},
1734 {0x25, 0x90},
1735 {0x26, 0x94},
1736 {0x35, 0x90},
1737 {0x37, 0x07},
1738 {0x38, 0x08},
1739 {0x01, 0x8e},
1740 {0x02, 0x85}
1741};
1742
1743
1744
1745static const struct ov_i2c_regvals norm_7670[] = {
1746 { OV7670_R12_COM7, OV7670_COM7_RESET },
1747 { OV7670_R3A_TSLB, 0x04 },
1748 { OV7670_R12_COM7, OV7670_COM7_FMT_VGA },
1749 { OV7670_R11_CLKRC, 0x01 },
1750
1751
1752
1753
1754 { OV7670_R17_HSTART, 0x13 },
1755 { OV7670_R18_HSTOP, 0x01 },
1756 { OV7670_R32_HREF, 0xb6 },
1757 { OV7670_R19_VSTART, 0x02 },
1758 { OV7670_R1A_VSTOP, 0x7a },
1759 { OV7670_R03_VREF, 0x0a },
1760
1761 { OV7670_R0C_COM3, 0x00 },
1762 { OV7670_R3E_COM14, 0x00 },
1763
1764 { 0x70, 0x3a },
1765 { 0x71, 0x35 },
1766 { 0x72, 0x11 },
1767 { 0x73, 0xf0 },
1768 { 0xa2, 0x02 },
1769
1770
1771
1772 { 0x7a, 0x20 },
1773 { 0x7b, 0x10 },
1774 { 0x7c, 0x1e },
1775 { 0x7d, 0x35 },
1776 { 0x7e, 0x5a },
1777 { 0x7f, 0x69 },
1778 { 0x80, 0x76 },
1779 { 0x81, 0x80 },
1780 { 0x82, 0x88 },
1781 { 0x83, 0x8f },
1782 { 0x84, 0x96 },
1783 { 0x85, 0xa3 },
1784 { 0x86, 0xaf },
1785 { 0x87, 0xc4 },
1786 { 0x88, 0xd7 },
1787 { 0x89, 0xe8 },
1788
1789
1790
1791 { OV7670_R13_COM8, OV7670_COM8_FASTAEC
1792 | OV7670_COM8_AECSTEP
1793 | OV7670_COM8_BFILT },
1794 { OV7670_R00_GAIN, 0x00 },
1795 { OV7670_R10_AECH, 0x00 },
1796 { OV7670_R0D_COM4, 0x40 },
1797 { OV7670_R14_COM9, 0x18 },
1798 { OV7670_RA5_BD50MAX, 0x05 },
1799 { OV7670_RAB_BD60MAX, 0x07 },
1800 { OV7670_R24_AEW, 0x95 },
1801 { OV7670_R25_AEB, 0x33 },
1802 { OV7670_R26_VPT, 0xe3 },
1803 { OV7670_R9F_HAECC1, 0x78 },
1804 { OV7670_RA0_HAECC2, 0x68 },
1805 { 0xa1, 0x03 },
1806 { OV7670_RA6_HAECC3, 0xd8 },
1807 { OV7670_RA7_HAECC4, 0xd8 },
1808 { OV7670_RA8_HAECC5, 0xf0 },
1809 { OV7670_RA9_HAECC6, 0x90 },
1810 { OV7670_RAA_HAECC7, 0x94 },
1811 { OV7670_R13_COM8, OV7670_COM8_FASTAEC
1812 | OV7670_COM8_AECSTEP
1813 | OV7670_COM8_BFILT
1814 | OV7670_COM8_AGC
1815 | OV7670_COM8_AEC },
1816
1817
1818 { OV7670_R0E_COM5, 0x61 },
1819 { OV7670_R0F_COM6, 0x4b },
1820 { 0x16, 0x02 },
1821 { OV7670_R1E_MVFP, 0x07 },
1822 { 0x21, 0x02 },
1823 { 0x22, 0x91 },
1824 { 0x29, 0x07 },
1825 { 0x33, 0x0b },
1826 { 0x35, 0x0b },
1827 { 0x37, 0x1d },
1828 { 0x38, 0x71 },
1829 { 0x39, 0x2a },
1830 { OV7670_R3C_COM12, 0x78 },
1831 { 0x4d, 0x40 },
1832 { 0x4e, 0x20 },
1833 { OV7670_R69_GFIX, 0x00 },
1834 { 0x6b, 0x4a },
1835 { 0x74, 0x10 },
1836 { 0x8d, 0x4f },
1837 { 0x8e, 0x00 },
1838 { 0x8f, 0x00 },
1839 { 0x90, 0x00 },
1840 { 0x91, 0x00 },
1841 { 0x96, 0x00 },
1842 { 0x9a, 0x00 },
1843 { 0xb0, 0x84 },
1844 { 0xb1, 0x0c },
1845 { 0xb2, 0x0e },
1846 { 0xb3, 0x82 },
1847 { 0xb8, 0x0a },
1848
1849
1850 { 0x43, 0x0a },
1851 { 0x44, 0xf0 },
1852 { 0x45, 0x34 },
1853 { 0x46, 0x58 },
1854 { 0x47, 0x28 },
1855 { 0x48, 0x3a },
1856 { 0x59, 0x88 },
1857 { 0x5a, 0x88 },
1858 { 0x5b, 0x44 },
1859 { 0x5c, 0x67 },
1860 { 0x5d, 0x49 },
1861 { 0x5e, 0x0e },
1862 { 0x6c, 0x0a },
1863 { 0x6d, 0x55 },
1864 { 0x6e, 0x11 },
1865 { 0x6f, 0x9f },
1866 { 0x6a, 0x40 },
1867 { OV7670_R01_BLUE, 0x40 },
1868 { OV7670_R02_RED, 0x60 },
1869 { OV7670_R13_COM8, OV7670_COM8_FASTAEC
1870 | OV7670_COM8_AECSTEP
1871 | OV7670_COM8_BFILT
1872 | OV7670_COM8_AGC
1873 | OV7670_COM8_AEC
1874 | OV7670_COM8_AWB },
1875
1876
1877 { 0x4f, 0x80 },
1878 { 0x50, 0x80 },
1879 { 0x51, 0x00 },
1880 { 0x52, 0x22 },
1881 { 0x53, 0x5e },
1882 { 0x54, 0x80 },
1883 { 0x58, 0x9e },
1884
1885 { OV7670_R41_COM16, OV7670_COM16_AWBGAIN },
1886 { OV7670_R3F_EDGE, 0x00 },
1887 { 0x75, 0x05 },
1888 { 0x76, 0xe1 },
1889 { 0x4c, 0x00 },
1890 { 0x77, 0x01 },
1891 { OV7670_R3D_COM13, OV7670_COM13_GAMMA
1892 | OV7670_COM13_UVSAT
1893 | 2},
1894 { 0x4b, 0x09 },
1895 { 0xc9, 0x60 },
1896 { OV7670_R41_COM16, 0x38 },
1897 { 0x56, 0x40 },
1898
1899 { 0x34, 0x11 },
1900 { OV7670_R3B_COM11, OV7670_COM11_EXP|OV7670_COM11_HZAUTO },
1901 { 0xa4, 0x88 },
1902 { 0x96, 0x00 },
1903 { 0x97, 0x30 },
1904 { 0x98, 0x20 },
1905 { 0x99, 0x30 },
1906 { 0x9a, 0x84 },
1907 { 0x9b, 0x29 },
1908 { 0x9c, 0x03 },
1909 { 0x9d, 0x4c },
1910 { 0x9e, 0x3f },
1911 { 0x78, 0x04 },
1912
1913
1914 { 0x79, 0x01 },
1915 { 0xc8, 0xf0 },
1916 { 0x79, 0x0f },
1917 { 0xc8, 0x00 },
1918 { 0x79, 0x10 },
1919 { 0xc8, 0x7e },
1920 { 0x79, 0x0a },
1921 { 0xc8, 0x80 },
1922 { 0x79, 0x0b },
1923 { 0xc8, 0x01 },
1924 { 0x79, 0x0c },
1925 { 0xc8, 0x0f },
1926 { 0x79, 0x0d },
1927 { 0xc8, 0x20 },
1928 { 0x79, 0x09 },
1929 { 0xc8, 0x80 },
1930 { 0x79, 0x02 },
1931 { 0xc8, 0xc0 },
1932 { 0x79, 0x03 },
1933 { 0xc8, 0x40 },
1934 { 0x79, 0x05 },
1935 { 0xc8, 0x30 },
1936 { 0x79, 0x26 },
1937};
1938
1939static const struct ov_i2c_regvals norm_8610[] = {
1940 { 0x12, 0x80 },
1941 { 0x00, 0x00 },
1942 { 0x01, 0x80 },
1943 { 0x02, 0x80 },
1944 { 0x03, 0xc0 },
1945 { 0x04, 0x30 },
1946 { 0x05, 0x30 },
1947 { 0x06, 0x70 },
1948 { 0x0a, 0x86 },
1949 { 0x0b, 0xb0 },
1950 { 0x0c, 0x20 },
1951 { 0x0d, 0x20 },
1952 { 0x11, 0x01 },
1953 { 0x12, 0x25 },
1954 { 0x13, 0x01 },
1955 { 0x14, 0x04 },
1956 { 0x15, 0x01 },
1957 { 0x16, 0x03 },
1958 { 0x17, 0x38 },
1959 { 0x18, 0xea },
1960 { 0x19, 0x02 },
1961 { 0x1a, 0xf5 },
1962 { 0x1b, 0x00 },
1963 { 0x20, 0xd0 },
1964 { 0x23, 0xc0 },
1965 { 0x24, 0x30 },
1966 { 0x25, 0x50 },
1967 { 0x26, 0xa2 },
1968 { 0x27, 0xea },
1969 { 0x28, 0x00 },
1970 { 0x29, 0x00 },
1971 { 0x2a, 0x80 },
1972 { 0x2b, 0xc8 },
1973 { 0x2c, 0xac },
1974 { 0x2d, 0x45 },
1975 { 0x2e, 0x80 },
1976 { 0x2f, 0x14 },
1977 { 0x4c, 0x00 },
1978 { 0x4d, 0x30 },
1979 { 0x60, 0x02 },
1980 { 0x61, 0x00 },
1981 { 0x62, 0x5f },
1982 { 0x63, 0xff },
1983 { 0x64, 0x53 },
1984
1985 { 0x65, 0x00 },
1986 { 0x66, 0x55 },
1987 { 0x67, 0xb0 },
1988 { 0x68, 0xc0 },
1989 { 0x69, 0x02 },
1990 { 0x6a, 0x22 },
1991 { 0x6b, 0x00 },
1992 { 0x6c, 0x99 },
1993
1994 { 0x6d, 0x11 },
1995 { 0x6e, 0x11 },
1996 { 0x6f, 0x01 },
1997 { 0x70, 0x8b },
1998 { 0x71, 0x00 },
1999 { 0x72, 0x14 },
2000 { 0x73, 0x54 },
2001 { 0x74, 0x00 },
2002 { 0x75, 0x0e },
2003 { 0x76, 0x02 },
2004 { 0x77, 0xff },
2005 { 0x78, 0x80 },
2006 { 0x79, 0x80 },
2007 { 0x7a, 0x80 },
2008 { 0x7b, 0x10 },
2009 { 0x7c, 0x00 },
2010 { 0x7d, 0x08 },
2011 { 0x7e, 0x08 },
2012 { 0x7f, 0xfb },
2013 { 0x80, 0x28 },
2014 { 0x81, 0x00 },
2015 { 0x82, 0x23 },
2016 { 0x83, 0x0b },
2017 { 0x84, 0x00 },
2018 { 0x85, 0x62 },
2019 { 0x86, 0xc9 },
2020 { 0x87, 0x00 },
2021 { 0x88, 0x00 },
2022 { 0x89, 0x01 },
2023 { 0x12, 0x20 },
2024 { 0x12, 0x25 },
2025};
2026
2027static unsigned char ov7670_abs_to_sm(unsigned char v)
2028{
2029 if (v > 127)
2030 return v & 0x7f;
2031 return (128 - v) | 0x80;
2032}
2033
2034
2035static void reg_w(struct sd *sd, u16 index, u16 value)
2036{
2037 int ret, req = 0;
2038
2039 if (sd->gspca_dev.usb_err < 0)
2040 return;
2041
2042 switch (sd->bridge) {
2043 case BRIDGE_OV511:
2044 case BRIDGE_OV511PLUS:
2045 req = 2;
2046 break;
2047 case BRIDGE_OVFX2:
2048 req = 0x0a;
2049
2050 case BRIDGE_W9968CF:
2051 PDEBUG(D_USBO, "SET %02x %04x %04x",
2052 req, value, index);
2053 ret = usb_control_msg(sd->gspca_dev.dev,
2054 usb_sndctrlpipe(sd->gspca_dev.dev, 0),
2055 req,
2056 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
2057 value, index, NULL, 0, 500);
2058 goto leave;
2059 default:
2060 req = 1;
2061 }
2062
2063 PDEBUG(D_USBO, "SET %02x 0000 %04x %02x",
2064 req, index, value);
2065 sd->gspca_dev.usb_buf[0] = value;
2066 ret = usb_control_msg(sd->gspca_dev.dev,
2067 usb_sndctrlpipe(sd->gspca_dev.dev, 0),
2068 req,
2069 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
2070 0, index,
2071 sd->gspca_dev.usb_buf, 1, 500);
2072leave:
2073 if (ret < 0) {
2074 pr_err("reg_w %02x failed %d\n", index, ret);
2075 sd->gspca_dev.usb_err = ret;
2076 return;
2077 }
2078}
2079
2080
2081
2082static int reg_r(struct sd *sd, u16 index)
2083{
2084 int ret;
2085 int req;
2086
2087 if (sd->gspca_dev.usb_err < 0)
2088 return -1;
2089
2090 switch (sd->bridge) {
2091 case BRIDGE_OV511:
2092 case BRIDGE_OV511PLUS:
2093 req = 3;
2094 break;
2095 case BRIDGE_OVFX2:
2096 req = 0x0b;
2097 break;
2098 default:
2099 req = 1;
2100 }
2101
2102 ret = usb_control_msg(sd->gspca_dev.dev,
2103 usb_rcvctrlpipe(sd->gspca_dev.dev, 0),
2104 req,
2105 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
2106 0, index, sd->gspca_dev.usb_buf, 1, 500);
2107
2108 if (ret >= 0) {
2109 ret = sd->gspca_dev.usb_buf[0];
2110 PDEBUG(D_USBI, "GET %02x 0000 %04x %02x",
2111 req, index, ret);
2112 } else {
2113 pr_err("reg_r %02x failed %d\n", index, ret);
2114 sd->gspca_dev.usb_err = ret;
2115 }
2116
2117 return ret;
2118}
2119
2120
2121static int reg_r8(struct sd *sd,
2122 u16 index)
2123{
2124 int ret;
2125
2126 if (sd->gspca_dev.usb_err < 0)
2127 return -1;
2128
2129 ret = usb_control_msg(sd->gspca_dev.dev,
2130 usb_rcvctrlpipe(sd->gspca_dev.dev, 0),
2131 1,
2132 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
2133 0, index, sd->gspca_dev.usb_buf, 8, 500);
2134
2135 if (ret >= 0) {
2136 ret = sd->gspca_dev.usb_buf[0];
2137 } else {
2138 pr_err("reg_r8 %02x failed %d\n", index, ret);
2139 sd->gspca_dev.usb_err = ret;
2140 }
2141
2142 return ret;
2143}
2144
2145
2146
2147
2148
2149
2150
2151static void reg_w_mask(struct sd *sd,
2152 u16 index,
2153 u8 value,
2154 u8 mask)
2155{
2156 int ret;
2157 u8 oldval;
2158
2159 if (mask != 0xff) {
2160 value &= mask;
2161 ret = reg_r(sd, index);
2162 if (ret < 0)
2163 return;
2164
2165 oldval = ret & ~mask;
2166 value |= oldval;
2167 }
2168 reg_w(sd, index, value);
2169}
2170
2171
2172
2173
2174
2175static void ov518_reg_w32(struct sd *sd, u16 index, u32 value, int n)
2176{
2177 int ret;
2178
2179 if (sd->gspca_dev.usb_err < 0)
2180 return;
2181
2182 *((__le32 *) sd->gspca_dev.usb_buf) = __cpu_to_le32(value);
2183
2184 ret = usb_control_msg(sd->gspca_dev.dev,
2185 usb_sndctrlpipe(sd->gspca_dev.dev, 0),
2186 1 ,
2187 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
2188 0, index,
2189 sd->gspca_dev.usb_buf, n, 500);
2190 if (ret < 0) {
2191 pr_err("reg_w32 %02x failed %d\n", index, ret);
2192 sd->gspca_dev.usb_err = ret;
2193 }
2194}
2195
2196static void ov511_i2c_w(struct sd *sd, u8 reg, u8 value)
2197{
2198 int rc, retries;
2199
2200 PDEBUG(D_USBO, "ov511_i2c_w %02x %02x", reg, value);
2201
2202
2203 for (retries = 6; ; ) {
2204
2205 reg_w(sd, R51x_I2C_SADDR_3, reg);
2206
2207
2208 reg_w(sd, R51x_I2C_DATA, value);
2209
2210
2211 reg_w(sd, R511_I2C_CTL, 0x01);
2212
2213 do {
2214 rc = reg_r(sd, R511_I2C_CTL);
2215 } while (rc > 0 && ((rc & 1) == 0));
2216
2217 if (rc < 0)
2218 return;
2219
2220 if ((rc & 2) == 0)
2221 break;
2222 if (--retries < 0) {
2223 PDEBUG(D_USBO, "i2c write retries exhausted");
2224 return;
2225 }
2226 }
2227}
2228
2229static int ov511_i2c_r(struct sd *sd, u8 reg)
2230{
2231 int rc, value, retries;
2232
2233
2234 for (retries = 6; ; ) {
2235
2236 reg_w(sd, R51x_I2C_SADDR_2, reg);
2237
2238
2239 reg_w(sd, R511_I2C_CTL, 0x03);
2240
2241 do {
2242 rc = reg_r(sd, R511_I2C_CTL);
2243 } while (rc > 0 && ((rc & 1) == 0));
2244
2245 if (rc < 0)
2246 return rc;
2247
2248 if ((rc & 2) == 0)
2249 break;
2250
2251
2252 reg_w(sd, R511_I2C_CTL, 0x10);
2253
2254 if (--retries < 0) {
2255 PDEBUG(D_USBI, "i2c write retries exhausted");
2256 return -1;
2257 }
2258 }
2259
2260
2261 for (retries = 6; ; ) {
2262
2263 reg_w(sd, R511_I2C_CTL, 0x05);
2264
2265 do {
2266 rc = reg_r(sd, R511_I2C_CTL);
2267 } while (rc > 0 && ((rc & 1) == 0));
2268
2269 if (rc < 0)
2270 return rc;
2271
2272 if ((rc & 2) == 0)
2273 break;
2274
2275
2276 reg_w(sd, R511_I2C_CTL, 0x10);
2277
2278 if (--retries < 0) {
2279 PDEBUG(D_USBI, "i2c read retries exhausted");
2280 return -1;
2281 }
2282 }
2283
2284 value = reg_r(sd, R51x_I2C_DATA);
2285
2286 PDEBUG(D_USBI, "ov511_i2c_r %02x %02x", reg, value);
2287
2288
2289 reg_w(sd, R511_I2C_CTL, 0x05);
2290
2291 return value;
2292}
2293
2294
2295
2296
2297
2298
2299static void ov518_i2c_w(struct sd *sd,
2300 u8 reg,
2301 u8 value)
2302{
2303 PDEBUG(D_USBO, "ov518_i2c_w %02x %02x", reg, value);
2304
2305
2306 reg_w(sd, R51x_I2C_SADDR_3, reg);
2307
2308
2309 reg_w(sd, R51x_I2C_DATA, value);
2310
2311
2312 reg_w(sd, R518_I2C_CTL, 0x01);
2313
2314
2315 msleep(4);
2316 reg_r8(sd, R518_I2C_CTL);
2317}
2318
2319
2320
2321
2322
2323
2324
2325
2326static int ov518_i2c_r(struct sd *sd, u8 reg)
2327{
2328 int value;
2329
2330
2331 reg_w(sd, R51x_I2C_SADDR_2, reg);
2332
2333
2334 reg_w(sd, R518_I2C_CTL, 0x03);
2335 reg_r8(sd, R518_I2C_CTL);
2336
2337
2338 reg_w(sd, R518_I2C_CTL, 0x05);
2339 reg_r8(sd, R518_I2C_CTL);
2340
2341 value = reg_r(sd, R51x_I2C_DATA);
2342 PDEBUG(D_USBI, "ov518_i2c_r %02x %02x", reg, value);
2343 return value;
2344}
2345
2346static void ovfx2_i2c_w(struct sd *sd, u8 reg, u8 value)
2347{
2348 int ret;
2349
2350 if (sd->gspca_dev.usb_err < 0)
2351 return;
2352
2353 ret = usb_control_msg(sd->gspca_dev.dev,
2354 usb_sndctrlpipe(sd->gspca_dev.dev, 0),
2355 0x02,
2356 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
2357 (u16) value, (u16) reg, NULL, 0, 500);
2358
2359 if (ret < 0) {
2360 pr_err("ovfx2_i2c_w %02x failed %d\n", reg, ret);
2361 sd->gspca_dev.usb_err = ret;
2362 }
2363
2364 PDEBUG(D_USBO, "ovfx2_i2c_w %02x %02x", reg, value);
2365}
2366
2367static int ovfx2_i2c_r(struct sd *sd, u8 reg)
2368{
2369 int ret;
2370
2371 if (sd->gspca_dev.usb_err < 0)
2372 return -1;
2373
2374 ret = usb_control_msg(sd->gspca_dev.dev,
2375 usb_rcvctrlpipe(sd->gspca_dev.dev, 0),
2376 0x03,
2377 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
2378 0, (u16) reg, sd->gspca_dev.usb_buf, 1, 500);
2379
2380 if (ret >= 0) {
2381 ret = sd->gspca_dev.usb_buf[0];
2382 PDEBUG(D_USBI, "ovfx2_i2c_r %02x %02x", reg, ret);
2383 } else {
2384 pr_err("ovfx2_i2c_r %02x failed %d\n", reg, ret);
2385 sd->gspca_dev.usb_err = ret;
2386 }
2387
2388 return ret;
2389}
2390
2391static void i2c_w(struct sd *sd, u8 reg, u8 value)
2392{
2393 if (sd->sensor_reg_cache[reg] == value)
2394 return;
2395
2396 switch (sd->bridge) {
2397 case BRIDGE_OV511:
2398 case BRIDGE_OV511PLUS:
2399 ov511_i2c_w(sd, reg, value);
2400 break;
2401 case BRIDGE_OV518:
2402 case BRIDGE_OV518PLUS:
2403 case BRIDGE_OV519:
2404 ov518_i2c_w(sd, reg, value);
2405 break;
2406 case BRIDGE_OVFX2:
2407 ovfx2_i2c_w(sd, reg, value);
2408 break;
2409 case BRIDGE_W9968CF:
2410 w9968cf_i2c_w(sd, reg, value);
2411 break;
2412 }
2413
2414 if (sd->gspca_dev.usb_err >= 0) {
2415
2416 if (reg == 0x12 && (value & 0x80))
2417 memset(sd->sensor_reg_cache, -1,
2418 sizeof(sd->sensor_reg_cache));
2419 else
2420 sd->sensor_reg_cache[reg] = value;
2421 }
2422}
2423
2424static int i2c_r(struct sd *sd, u8 reg)
2425{
2426 int ret = -1;
2427
2428 if (sd->sensor_reg_cache[reg] != -1)
2429 return sd->sensor_reg_cache[reg];
2430
2431 switch (sd->bridge) {
2432 case BRIDGE_OV511:
2433 case BRIDGE_OV511PLUS:
2434 ret = ov511_i2c_r(sd, reg);
2435 break;
2436 case BRIDGE_OV518:
2437 case BRIDGE_OV518PLUS:
2438 case BRIDGE_OV519:
2439 ret = ov518_i2c_r(sd, reg);
2440 break;
2441 case BRIDGE_OVFX2:
2442 ret = ovfx2_i2c_r(sd, reg);
2443 break;
2444 case BRIDGE_W9968CF:
2445 ret = w9968cf_i2c_r(sd, reg);
2446 break;
2447 }
2448
2449 if (ret >= 0)
2450 sd->sensor_reg_cache[reg] = ret;
2451
2452 return ret;
2453}
2454
2455
2456
2457
2458
2459
2460static void i2c_w_mask(struct sd *sd,
2461 u8 reg,
2462 u8 value,
2463 u8 mask)
2464{
2465 int rc;
2466 u8 oldval;
2467
2468 value &= mask;
2469 rc = i2c_r(sd, reg);
2470 if (rc < 0)
2471 return;
2472 oldval = rc & ~mask;
2473 value |= oldval;
2474 i2c_w(sd, reg, value);
2475}
2476
2477
2478
2479static inline void ov51x_stop(struct sd *sd)
2480{
2481 PDEBUG(D_STREAM, "stopping");
2482 sd->stopped = 1;
2483 switch (sd->bridge) {
2484 case BRIDGE_OV511:
2485 case BRIDGE_OV511PLUS:
2486 reg_w(sd, R51x_SYS_RESET, 0x3d);
2487 break;
2488 case BRIDGE_OV518:
2489 case BRIDGE_OV518PLUS:
2490 reg_w_mask(sd, R51x_SYS_RESET, 0x3a, 0x3a);
2491 break;
2492 case BRIDGE_OV519:
2493 reg_w(sd, OV519_R51_RESET1, 0x0f);
2494 reg_w(sd, OV519_R51_RESET1, 0x00);
2495 reg_w(sd, 0x22, 0x00);
2496 break;
2497 case BRIDGE_OVFX2:
2498 reg_w_mask(sd, 0x0f, 0x00, 0x02);
2499 break;
2500 case BRIDGE_W9968CF:
2501 reg_w(sd, 0x3c, 0x0a05);
2502 break;
2503 }
2504}
2505
2506
2507
2508static inline void ov51x_restart(struct sd *sd)
2509{
2510 PDEBUG(D_STREAM, "restarting");
2511 if (!sd->stopped)
2512 return;
2513 sd->stopped = 0;
2514
2515
2516 switch (sd->bridge) {
2517 case BRIDGE_OV511:
2518 case BRIDGE_OV511PLUS:
2519 reg_w(sd, R51x_SYS_RESET, 0x00);
2520 break;
2521 case BRIDGE_OV518:
2522 case BRIDGE_OV518PLUS:
2523 reg_w(sd, 0x2f, 0x80);
2524 reg_w(sd, R51x_SYS_RESET, 0x00);
2525 break;
2526 case BRIDGE_OV519:
2527 reg_w(sd, OV519_R51_RESET1, 0x0f);
2528 reg_w(sd, OV519_R51_RESET1, 0x00);
2529 reg_w(sd, 0x22, 0x1d);
2530 break;
2531 case BRIDGE_OVFX2:
2532 reg_w_mask(sd, 0x0f, 0x02, 0x02);
2533 break;
2534 case BRIDGE_W9968CF:
2535 reg_w(sd, 0x3c, 0x8a05);
2536 break;
2537 }
2538}
2539
2540static void ov51x_set_slave_ids(struct sd *sd, u8 slave);
2541
2542
2543
2544
2545static int init_ov_sensor(struct sd *sd, u8 slave)
2546{
2547 int i;
2548
2549 ov51x_set_slave_ids(sd, slave);
2550
2551
2552 i2c_w(sd, 0x12, 0x80);
2553
2554
2555 msleep(150);
2556
2557 for (i = 0; i < i2c_detect_tries; i++) {
2558 if (i2c_r(sd, OV7610_REG_ID_HIGH) == 0x7f &&
2559 i2c_r(sd, OV7610_REG_ID_LOW) == 0xa2) {
2560 PDEBUG(D_PROBE, "I2C synced in %d attempt(s)", i);
2561 return 0;
2562 }
2563
2564
2565 i2c_w(sd, 0x12, 0x80);
2566
2567
2568 msleep(150);
2569
2570
2571 if (i2c_r(sd, 0x00) < 0)
2572 return -1;
2573 }
2574 return -1;
2575}
2576
2577
2578
2579
2580
2581
2582static void ov51x_set_slave_ids(struct sd *sd,
2583 u8 slave)
2584{
2585 switch (sd->bridge) {
2586 case BRIDGE_OVFX2:
2587 reg_w(sd, OVFX2_I2C_ADDR, slave);
2588 return;
2589 case BRIDGE_W9968CF:
2590 sd->sensor_addr = slave;
2591 return;
2592 }
2593
2594 reg_w(sd, R51x_I2C_W_SID, slave);
2595 reg_w(sd, R51x_I2C_R_SID, slave + 1);
2596}
2597
2598static void write_regvals(struct sd *sd,
2599 const struct ov_regvals *regvals,
2600 int n)
2601{
2602 while (--n >= 0) {
2603 reg_w(sd, regvals->reg, regvals->val);
2604 regvals++;
2605 }
2606}
2607
2608static void write_i2c_regvals(struct sd *sd,
2609 const struct ov_i2c_regvals *regvals,
2610 int n)
2611{
2612 while (--n >= 0) {
2613 i2c_w(sd, regvals->reg, regvals->val);
2614 regvals++;
2615 }
2616}
2617
2618
2619
2620
2621
2622
2623
2624
2625static void ov_hires_configure(struct sd *sd)
2626{
2627 int high, low;
2628
2629 if (sd->bridge != BRIDGE_OVFX2) {
2630 pr_err("error hires sensors only supported with ovfx2\n");
2631 return;
2632 }
2633
2634 PDEBUG(D_PROBE, "starting ov hires configuration");
2635
2636
2637 high = i2c_r(sd, 0x0a);
2638 low = i2c_r(sd, 0x0b);
2639
2640 switch (high) {
2641 case 0x96:
2642 switch (low) {
2643 case 0x40:
2644 PDEBUG(D_PROBE, "Sensor is a OV2610");
2645 sd->sensor = SEN_OV2610;
2646 return;
2647 case 0x41:
2648 PDEBUG(D_PROBE, "Sensor is a OV2610AE");
2649 sd->sensor = SEN_OV2610AE;
2650 return;
2651 case 0xb1:
2652 PDEBUG(D_PROBE, "Sensor is a OV9600");
2653 sd->sensor = SEN_OV9600;
2654 return;
2655 }
2656 break;
2657 case 0x36:
2658 if ((low & 0x0f) == 0x00) {
2659 PDEBUG(D_PROBE, "Sensor is a OV3610");
2660 sd->sensor = SEN_OV3610;
2661 return;
2662 }
2663 break;
2664 }
2665 pr_err("Error unknown sensor type: %02x%02x\n", high, low);
2666}
2667
2668
2669
2670
2671static void ov8xx0_configure(struct sd *sd)
2672{
2673 int rc;
2674
2675 PDEBUG(D_PROBE, "starting ov8xx0 configuration");
2676
2677
2678 rc = i2c_r(sd, OV7610_REG_COM_I);
2679 if (rc < 0) {
2680 PDEBUG(D_ERR, "Error detecting sensor type");
2681 return;
2682 }
2683 if ((rc & 3) == 1)
2684 sd->sensor = SEN_OV8610;
2685 else
2686 pr_err("Unknown image sensor version: %d\n", rc & 3);
2687}
2688
2689
2690
2691
2692static void ov7xx0_configure(struct sd *sd)
2693{
2694 int rc, high, low;
2695
2696 PDEBUG(D_PROBE, "starting OV7xx0 configuration");
2697
2698
2699 rc = i2c_r(sd, OV7610_REG_COM_I);
2700
2701
2702
2703 if (rc < 0) {
2704 pr_err("Error detecting sensor type\n");
2705 return;
2706 }
2707 if ((rc & 3) == 3) {
2708
2709 high = i2c_r(sd, 0x0a);
2710 low = i2c_r(sd, 0x0b);
2711
2712 if (high == 0x76 && (low & 0xf0) == 0x70) {
2713 PDEBUG(D_PROBE, "Sensor is an OV76%02x", low);
2714 sd->sensor = SEN_OV7670;
2715 } else {
2716 PDEBUG(D_PROBE, "Sensor is an OV7610");
2717 sd->sensor = SEN_OV7610;
2718 }
2719 } else if ((rc & 3) == 1) {
2720
2721 if (i2c_r(sd, 0x15) & 1) {
2722 PDEBUG(D_PROBE, "Sensor is an OV7620AE");
2723 sd->sensor = SEN_OV7620AE;
2724 } else {
2725 PDEBUG(D_PROBE, "Sensor is an OV76BE");
2726 sd->sensor = SEN_OV76BE;
2727 }
2728 } else if ((rc & 3) == 0) {
2729
2730 high = i2c_r(sd, 0x0a);
2731 if (high < 0) {
2732 pr_err("Error detecting camera chip PID\n");
2733 return;
2734 }
2735 low = i2c_r(sd, 0x0b);
2736 if (low < 0) {
2737 pr_err("Error detecting camera chip VER\n");
2738 return;
2739 }
2740 if (high == 0x76) {
2741 switch (low) {
2742 case 0x30:
2743 pr_err("Sensor is an OV7630/OV7635\n");
2744 pr_err("7630 is not supported by this driver\n");
2745 return;
2746 case 0x40:
2747 PDEBUG(D_PROBE, "Sensor is an OV7645");
2748 sd->sensor = SEN_OV7640;
2749 break;
2750 case 0x45:
2751 PDEBUG(D_PROBE, "Sensor is an OV7645B");
2752 sd->sensor = SEN_OV7640;
2753 break;
2754 case 0x48:
2755 PDEBUG(D_PROBE, "Sensor is an OV7648");
2756 sd->sensor = SEN_OV7648;
2757 break;
2758 case 0x60:
2759 PDEBUG(D_PROBE, "Sensor is a OV7660");
2760 sd->sensor = SEN_OV7660;
2761 break;
2762 default:
2763 pr_err("Unknown sensor: 0x76%02x\n", low);
2764 return;
2765 }
2766 } else {
2767 PDEBUG(D_PROBE, "Sensor is an OV7620");
2768 sd->sensor = SEN_OV7620;
2769 }
2770 } else {
2771 pr_err("Unknown image sensor version: %d\n", rc & 3);
2772 }
2773}
2774
2775
2776static void ov6xx0_configure(struct sd *sd)
2777{
2778 int rc;
2779 PDEBUG(D_PROBE, "starting OV6xx0 configuration");
2780
2781
2782 rc = i2c_r(sd, OV7610_REG_COM_I);
2783 if (rc < 0) {
2784 pr_err("Error detecting sensor type\n");
2785 return;
2786 }
2787
2788
2789
2790
2791 switch (rc) {
2792 case 0x00:
2793 sd->sensor = SEN_OV6630;
2794 pr_warn("WARNING: Sensor is an OV66308. Your camera may have been misdetected in previous driver versions.\n");
2795 break;
2796 case 0x01:
2797 sd->sensor = SEN_OV6620;
2798 PDEBUG(D_PROBE, "Sensor is an OV6620");
2799 break;
2800 case 0x02:
2801 sd->sensor = SEN_OV6630;
2802 PDEBUG(D_PROBE, "Sensor is an OV66308AE");
2803 break;
2804 case 0x03:
2805 sd->sensor = SEN_OV66308AF;
2806 PDEBUG(D_PROBE, "Sensor is an OV66308AF");
2807 break;
2808 case 0x90:
2809 sd->sensor = SEN_OV6630;
2810 pr_warn("WARNING: Sensor is an OV66307. Your camera may have been misdetected in previous driver versions.\n");
2811 break;
2812 default:
2813 pr_err("FATAL: Unknown sensor version: 0x%02x\n", rc);
2814 return;
2815 }
2816
2817
2818 sd->sif = 1;
2819}
2820
2821
2822static void ov51x_led_control(struct sd *sd, int on)
2823{
2824 if (sd->invert_led)
2825 on = !on;
2826
2827 switch (sd->bridge) {
2828
2829 case BRIDGE_OV511PLUS:
2830 reg_w(sd, R511_SYS_LED_CTL, on);
2831 break;
2832 case BRIDGE_OV518:
2833 case BRIDGE_OV518PLUS:
2834 reg_w_mask(sd, R518_GPIO_OUT, 0x02 * on, 0x02);
2835 break;
2836 case BRIDGE_OV519:
2837 reg_w_mask(sd, OV519_GPIO_DATA_OUT0, on, 1);
2838 break;
2839 }
2840}
2841
2842static void sd_reset_snapshot(struct gspca_dev *gspca_dev)
2843{
2844 struct sd *sd = (struct sd *) gspca_dev;
2845
2846 if (!sd->snapshot_needs_reset)
2847 return;
2848
2849
2850
2851
2852 sd->snapshot_needs_reset = 0;
2853
2854 switch (sd->bridge) {
2855 case BRIDGE_OV511:
2856 case BRIDGE_OV511PLUS:
2857 reg_w(sd, R51x_SYS_SNAP, 0x02);
2858 reg_w(sd, R51x_SYS_SNAP, 0x00);
2859 break;
2860 case BRIDGE_OV518:
2861 case BRIDGE_OV518PLUS:
2862 reg_w(sd, R51x_SYS_SNAP, 0x02);
2863 reg_w(sd, R51x_SYS_SNAP, 0x01);
2864 break;
2865 case BRIDGE_OV519:
2866 reg_w(sd, R51x_SYS_RESET, 0x40);
2867 reg_w(sd, R51x_SYS_RESET, 0x00);
2868 break;
2869 }
2870}
2871
2872static void ov51x_upload_quan_tables(struct sd *sd)
2873{
2874 const unsigned char yQuanTable511[] = {
2875 0, 1, 1, 2, 2, 3, 3, 4,
2876 1, 1, 1, 2, 2, 3, 4, 4,
2877 1, 1, 2, 2, 3, 4, 4, 4,
2878 2, 2, 2, 3, 4, 4, 4, 4,
2879 2, 2, 3, 4, 4, 5, 5, 5,
2880 3, 3, 4, 4, 5, 5, 5, 5,
2881 3, 4, 4, 4, 5, 5, 5, 5,
2882 4, 4, 4, 4, 5, 5, 5, 5
2883 };
2884
2885 const unsigned char uvQuanTable511[] = {
2886 0, 2, 2, 3, 4, 4, 4, 4,
2887 2, 2, 2, 4, 4, 4, 4, 4,
2888 2, 2, 3, 4, 4, 4, 4, 4,
2889 3, 4, 4, 4, 4, 4, 4, 4,
2890 4, 4, 4, 4, 4, 4, 4, 4,
2891 4, 4, 4, 4, 4, 4, 4, 4,
2892 4, 4, 4, 4, 4, 4, 4, 4,
2893 4, 4, 4, 4, 4, 4, 4, 4
2894 };
2895
2896
2897 const unsigned char yQuanTable518[] = {
2898 5, 4, 5, 6, 6, 7, 7, 7,
2899 5, 5, 5, 5, 6, 7, 7, 7,
2900 6, 6, 6, 6, 7, 7, 7, 8,
2901 7, 7, 6, 7, 7, 7, 8, 8
2902 };
2903 const unsigned char uvQuanTable518[] = {
2904 6, 6, 6, 7, 7, 7, 7, 7,
2905 6, 6, 6, 7, 7, 7, 7, 7,
2906 6, 6, 6, 7, 7, 7, 7, 8,
2907 7, 7, 7, 7, 7, 7, 8, 8
2908 };
2909
2910 const unsigned char *pYTable, *pUVTable;
2911 unsigned char val0, val1;
2912 int i, size, reg = R51x_COMP_LUT_BEGIN;
2913
2914 PDEBUG(D_PROBE, "Uploading quantization tables");
2915
2916 if (sd->bridge == BRIDGE_OV511 || sd->bridge == BRIDGE_OV511PLUS) {
2917 pYTable = yQuanTable511;
2918 pUVTable = uvQuanTable511;
2919 size = 32;
2920 } else {
2921 pYTable = yQuanTable518;
2922 pUVTable = uvQuanTable518;
2923 size = 16;
2924 }
2925
2926 for (i = 0; i < size; i++) {
2927 val0 = *pYTable++;
2928 val1 = *pYTable++;
2929 val0 &= 0x0f;
2930 val1 &= 0x0f;
2931 val0 |= val1 << 4;
2932 reg_w(sd, reg, val0);
2933
2934 val0 = *pUVTable++;
2935 val1 = *pUVTable++;
2936 val0 &= 0x0f;
2937 val1 &= 0x0f;
2938 val0 |= val1 << 4;
2939 reg_w(sd, reg + size, val0);
2940
2941 reg++;
2942 }
2943}
2944
2945
2946static void ov511_configure(struct gspca_dev *gspca_dev)
2947{
2948 struct sd *sd = (struct sd *) gspca_dev;
2949
2950
2951 const struct ov_regvals init_511[] = {
2952 { R51x_SYS_RESET, 0x7f },
2953 { R51x_SYS_INIT, 0x01 },
2954 { R51x_SYS_RESET, 0x7f },
2955 { R51x_SYS_INIT, 0x01 },
2956 { R51x_SYS_RESET, 0x3f },
2957 { R51x_SYS_INIT, 0x01 },
2958 { R51x_SYS_RESET, 0x3d },
2959 };
2960
2961 const struct ov_regvals norm_511[] = {
2962 { R511_DRAM_FLOW_CTL, 0x01 },
2963 { R51x_SYS_SNAP, 0x00 },
2964 { R51x_SYS_SNAP, 0x02 },
2965 { R51x_SYS_SNAP, 0x00 },
2966 { R511_FIFO_OPTS, 0x1f },
2967 { R511_COMP_EN, 0x00 },
2968 { R511_COMP_LUT_EN, 0x03 },
2969 };
2970
2971 const struct ov_regvals norm_511_p[] = {
2972 { R511_DRAM_FLOW_CTL, 0xff },
2973 { R51x_SYS_SNAP, 0x00 },
2974 { R51x_SYS_SNAP, 0x02 },
2975 { R51x_SYS_SNAP, 0x00 },
2976 { R511_FIFO_OPTS, 0xff },
2977 { R511_COMP_EN, 0x00 },
2978 { R511_COMP_LUT_EN, 0x03 },
2979 };
2980
2981 const struct ov_regvals compress_511[] = {
2982 { 0x70, 0x1f },
2983 { 0x71, 0x05 },
2984 { 0x72, 0x06 },
2985 { 0x73, 0x06 },
2986 { 0x74, 0x14 },
2987 { 0x75, 0x03 },
2988 { 0x76, 0x04 },
2989 { 0x77, 0x04 },
2990 };
2991
2992 PDEBUG(D_PROBE, "Device custom id %x", reg_r(sd, R51x_SYS_CUST_ID));
2993
2994 write_regvals(sd, init_511, ARRAY_SIZE(init_511));
2995
2996 switch (sd->bridge) {
2997 case BRIDGE_OV511:
2998 write_regvals(sd, norm_511, ARRAY_SIZE(norm_511));
2999 break;
3000 case BRIDGE_OV511PLUS:
3001 write_regvals(sd, norm_511_p, ARRAY_SIZE(norm_511_p));
3002 break;
3003 }
3004
3005
3006 write_regvals(sd, compress_511, ARRAY_SIZE(compress_511));
3007
3008 ov51x_upload_quan_tables(sd);
3009}
3010
3011
3012static void ov518_configure(struct gspca_dev *gspca_dev)
3013{
3014 struct sd *sd = (struct sd *) gspca_dev;
3015
3016
3017 const struct ov_regvals init_518[] = {
3018 { R51x_SYS_RESET, 0x40 },
3019 { R51x_SYS_INIT, 0xe1 },
3020 { R51x_SYS_RESET, 0x3e },
3021 { R51x_SYS_INIT, 0xe1 },
3022 { R51x_SYS_RESET, 0x00 },
3023 { R51x_SYS_INIT, 0xe1 },
3024 { 0x46, 0x00 },
3025 { 0x5d, 0x03 },
3026 };
3027
3028 const struct ov_regvals norm_518[] = {
3029 { R51x_SYS_SNAP, 0x02 },
3030 { R51x_SYS_SNAP, 0x01 },
3031 { 0x31, 0x0f },
3032 { 0x5d, 0x03 },
3033 { 0x24, 0x9f },
3034 { 0x25, 0x90 },
3035 { 0x20, 0x00 },
3036 { 0x51, 0x04 },
3037 { 0x71, 0x19 },
3038 { 0x2f, 0x80 },
3039 };
3040
3041 const struct ov_regvals norm_518_p[] = {
3042 { R51x_SYS_SNAP, 0x02 },
3043 { R51x_SYS_SNAP, 0x01 },
3044 { 0x31, 0x0f },
3045 { 0x5d, 0x03 },
3046 { 0x24, 0x9f },
3047 { 0x25, 0x90 },
3048 { 0x20, 0x60 },
3049 { 0x51, 0x02 },
3050 { 0x71, 0x19 },
3051 { 0x40, 0xff },
3052 { 0x41, 0x42 },
3053 { 0x46, 0x00 },
3054 { 0x33, 0x04 },
3055 { 0x21, 0x19 },
3056 { 0x3f, 0x10 },
3057 { 0x2f, 0x80 },
3058 };
3059
3060
3061 PDEBUG(D_PROBE, "Device revision %d",
3062 0x1f & reg_r(sd, R51x_SYS_CUST_ID));
3063
3064 write_regvals(sd, init_518, ARRAY_SIZE(init_518));
3065
3066
3067 reg_w_mask(sd, R518_GPIO_CTL, 0x00, 0x02);
3068
3069 switch (sd->bridge) {
3070 case BRIDGE_OV518:
3071 write_regvals(sd, norm_518, ARRAY_SIZE(norm_518));
3072 break;
3073 case BRIDGE_OV518PLUS:
3074 write_regvals(sd, norm_518_p, ARRAY_SIZE(norm_518_p));
3075 break;
3076 }
3077
3078 ov51x_upload_quan_tables(sd);
3079
3080 reg_w(sd, 0x2f, 0x80);
3081}
3082
3083static void ov519_configure(struct sd *sd)
3084{
3085 static const struct ov_regvals init_519[] = {
3086 { 0x5a, 0x6d },
3087 { 0x53, 0x9b },
3088 { OV519_R54_EN_CLK1, 0xff },
3089 { 0x5d, 0x03 },
3090 { 0x49, 0x01 },
3091 { 0x48, 0x00 },
3092
3093
3094 { OV519_GPIO_IO_CTRL0, 0xee },
3095 { OV519_R51_RESET1, 0x0f },
3096 { OV519_R51_RESET1, 0x00 },
3097 { 0x22, 0x00 },
3098
3099 };
3100
3101 write_regvals(sd, init_519, ARRAY_SIZE(init_519));
3102}
3103
3104static void ovfx2_configure(struct sd *sd)
3105{
3106 static const struct ov_regvals init_fx2[] = {
3107 { 0x00, 0x60 },
3108 { 0x02, 0x01 },
3109 { 0x0f, 0x1d },
3110 { 0xe9, 0x82 },
3111 { 0xea, 0xc7 },
3112 { 0xeb, 0x10 },
3113 { 0xec, 0xf6 },
3114 };
3115
3116 sd->stopped = 1;
3117
3118 write_regvals(sd, init_fx2, ARRAY_SIZE(init_fx2));
3119}
3120
3121
3122
3123static void ov519_set_mode(struct sd *sd)
3124{
3125 static const struct ov_regvals bridge_ov7660[2][10] = {
3126 {{0x10, 0x14}, {0x11, 0x1e}, {0x12, 0x00}, {0x13, 0x00},
3127 {0x14, 0x00}, {0x15, 0x00}, {0x16, 0x00}, {0x20, 0x0c},
3128 {0x25, 0x01}, {0x26, 0x00}},
3129 {{0x10, 0x28}, {0x11, 0x3c}, {0x12, 0x00}, {0x13, 0x00},
3130 {0x14, 0x00}, {0x15, 0x00}, {0x16, 0x00}, {0x20, 0x0c},
3131 {0x25, 0x03}, {0x26, 0x00}}
3132 };
3133 static const struct ov_i2c_regvals sensor_ov7660[2][3] = {
3134 {{0x12, 0x00}, {0x24, 0x00}, {0x0c, 0x0c}},
3135 {{0x12, 0x00}, {0x04, 0x00}, {0x0c, 0x00}}
3136 };
3137 static const struct ov_i2c_regvals sensor_ov7660_2[] = {
3138 {OV7670_R17_HSTART, 0x13},
3139 {OV7670_R18_HSTOP, 0x01},
3140 {OV7670_R32_HREF, 0x92},
3141 {OV7670_R19_VSTART, 0x02},
3142 {OV7670_R1A_VSTOP, 0x7a},
3143 {OV7670_R03_VREF, 0x00},
3144
3145
3146
3147
3148 };
3149
3150 write_regvals(sd, bridge_ov7660[sd->gspca_dev.curr_mode],
3151 ARRAY_SIZE(bridge_ov7660[0]));
3152 write_i2c_regvals(sd, sensor_ov7660[sd->gspca_dev.curr_mode],
3153 ARRAY_SIZE(sensor_ov7660[0]));
3154 write_i2c_regvals(sd, sensor_ov7660_2,
3155 ARRAY_SIZE(sensor_ov7660_2));
3156}
3157
3158
3159
3160static void ov519_set_fr(struct sd *sd)
3161{
3162 int fr;
3163 u8 clock;
3164
3165
3166
3167
3168
3169 static const u8 fr_tb[2][6][3] = {
3170 {{0x04, 0xff, 0x00},
3171 {0x04, 0x1f, 0x00},
3172 {0x04, 0x1b, 0x00},
3173 {0x04, 0x15, 0x00},
3174 {0x04, 0x09, 0x00},
3175 {0x04, 0x01, 0x00}},
3176 {{0x0c, 0xff, 0x00},
3177 {0x0c, 0x1f, 0x00},
3178 {0x0c, 0x1b, 0x00},
3179 {0x04, 0xff, 0x01},
3180 {0x04, 0x1f, 0x01},
3181 {0x04, 0x1b, 0x01}},
3182 };
3183
3184 if (frame_rate > 0)
3185 sd->frame_rate = frame_rate;
3186 if (sd->frame_rate >= 30)
3187 fr = 0;
3188 else if (sd->frame_rate >= 25)
3189 fr = 1;
3190 else if (sd->frame_rate >= 20)
3191 fr = 2;
3192 else if (sd->frame_rate >= 15)
3193 fr = 3;
3194 else if (sd->frame_rate >= 10)
3195 fr = 4;
3196 else
3197 fr = 5;
3198 reg_w(sd, 0xa4, fr_tb[sd->gspca_dev.curr_mode][fr][0]);
3199 reg_w(sd, 0x23, fr_tb[sd->gspca_dev.curr_mode][fr][1]);
3200 clock = fr_tb[sd->gspca_dev.curr_mode][fr][2];
3201 if (sd->sensor == SEN_OV7660)
3202 clock |= 0x80;
3203 ov518_i2c_w(sd, OV7670_R11_CLKRC, clock);
3204}
3205
3206static void setautogain(struct gspca_dev *gspca_dev, s32 val)
3207{
3208 struct sd *sd = (struct sd *) gspca_dev;
3209
3210 i2c_w_mask(sd, 0x13, val ? 0x05 : 0x00, 0x05);
3211}
3212
3213
3214static int sd_config(struct gspca_dev *gspca_dev,
3215 const struct usb_device_id *id)
3216{
3217 struct sd *sd = (struct sd *) gspca_dev;
3218 struct cam *cam = &gspca_dev->cam;
3219
3220 sd->bridge = id->driver_info & BRIDGE_MASK;
3221 sd->invert_led = (id->driver_info & BRIDGE_INVERT_LED) != 0;
3222
3223 switch (sd->bridge) {
3224 case BRIDGE_OV511:
3225 case BRIDGE_OV511PLUS:
3226 cam->cam_mode = ov511_vga_mode;
3227 cam->nmodes = ARRAY_SIZE(ov511_vga_mode);
3228 break;
3229 case BRIDGE_OV518:
3230 case BRIDGE_OV518PLUS:
3231 cam->cam_mode = ov518_vga_mode;
3232 cam->nmodes = ARRAY_SIZE(ov518_vga_mode);
3233 break;
3234 case BRIDGE_OV519:
3235 cam->cam_mode = ov519_vga_mode;
3236 cam->nmodes = ARRAY_SIZE(ov519_vga_mode);
3237 break;
3238 case BRIDGE_OVFX2:
3239 cam->cam_mode = ov519_vga_mode;
3240 cam->nmodes = ARRAY_SIZE(ov519_vga_mode);
3241 cam->bulk_size = OVFX2_BULK_SIZE;
3242 cam->bulk_nurbs = MAX_NURBS;
3243 cam->bulk = 1;
3244 break;
3245 case BRIDGE_W9968CF:
3246 cam->cam_mode = w9968cf_vga_mode;
3247 cam->nmodes = ARRAY_SIZE(w9968cf_vga_mode);
3248 break;
3249 }
3250
3251 sd->frame_rate = 15;
3252
3253 return 0;
3254}
3255
3256
3257static int sd_init(struct gspca_dev *gspca_dev)
3258{
3259 struct sd *sd = (struct sd *) gspca_dev;
3260 struct cam *cam = &gspca_dev->cam;
3261
3262 switch (sd->bridge) {
3263 case BRIDGE_OV511:
3264 case BRIDGE_OV511PLUS:
3265 ov511_configure(gspca_dev);
3266 break;
3267 case BRIDGE_OV518:
3268 case BRIDGE_OV518PLUS:
3269 ov518_configure(gspca_dev);
3270 break;
3271 case BRIDGE_OV519:
3272 ov519_configure(sd);
3273 break;
3274 case BRIDGE_OVFX2:
3275 ovfx2_configure(sd);
3276 break;
3277 case BRIDGE_W9968CF:
3278 w9968cf_configure(sd);
3279 break;
3280 }
3281
3282
3283
3284
3285 sd->sensor = -1;
3286
3287
3288 if (init_ov_sensor(sd, OV7xx0_SID) >= 0) {
3289 ov7xx0_configure(sd);
3290
3291
3292 } else if (init_ov_sensor(sd, OV6xx0_SID) >= 0) {
3293 ov6xx0_configure(sd);
3294
3295
3296 } else if (init_ov_sensor(sd, OV8xx0_SID) >= 0) {
3297 ov8xx0_configure(sd);
3298
3299
3300 } else if (init_ov_sensor(sd, OV_HIRES_SID) >= 0) {
3301 ov_hires_configure(sd);
3302 } else {
3303 pr_err("Can't determine sensor slave IDs\n");
3304 goto error;
3305 }
3306
3307 if (sd->sensor < 0)
3308 goto error;
3309
3310 ov51x_led_control(sd, 0);
3311
3312 switch (sd->bridge) {
3313 case BRIDGE_OV511:
3314 case BRIDGE_OV511PLUS:
3315 if (sd->sif) {
3316 cam->cam_mode = ov511_sif_mode;
3317 cam->nmodes = ARRAY_SIZE(ov511_sif_mode);
3318 }
3319 break;
3320 case BRIDGE_OV518:
3321 case BRIDGE_OV518PLUS:
3322 if (sd->sif) {
3323 cam->cam_mode = ov518_sif_mode;
3324 cam->nmodes = ARRAY_SIZE(ov518_sif_mode);
3325 }
3326 break;
3327 case BRIDGE_OV519:
3328 if (sd->sif) {
3329 cam->cam_mode = ov519_sif_mode;
3330 cam->nmodes = ARRAY_SIZE(ov519_sif_mode);
3331 }
3332 break;
3333 case BRIDGE_OVFX2:
3334 switch (sd->sensor) {
3335 case SEN_OV2610:
3336 case SEN_OV2610AE:
3337 cam->cam_mode = ovfx2_ov2610_mode;
3338 cam->nmodes = ARRAY_SIZE(ovfx2_ov2610_mode);
3339 break;
3340 case SEN_OV3610:
3341 cam->cam_mode = ovfx2_ov3610_mode;
3342 cam->nmodes = ARRAY_SIZE(ovfx2_ov3610_mode);
3343 break;
3344 case SEN_OV9600:
3345 cam->cam_mode = ovfx2_ov9600_mode;
3346 cam->nmodes = ARRAY_SIZE(ovfx2_ov9600_mode);
3347 break;
3348 default:
3349 if (sd->sif) {
3350 cam->cam_mode = ov519_sif_mode;
3351 cam->nmodes = ARRAY_SIZE(ov519_sif_mode);
3352 }
3353 break;
3354 }
3355 break;
3356 case BRIDGE_W9968CF:
3357 if (sd->sif)
3358 cam->nmodes = ARRAY_SIZE(w9968cf_vga_mode) - 1;
3359
3360
3361 w9968cf_init(sd);
3362 break;
3363 }
3364
3365
3366 switch (sd->sensor) {
3367 case SEN_OV2610:
3368 write_i2c_regvals(sd, norm_2610, ARRAY_SIZE(norm_2610));
3369
3370
3371 i2c_w_mask(sd, 0x13, 0x27, 0x27);
3372 break;
3373 case SEN_OV2610AE:
3374 write_i2c_regvals(sd, norm_2610ae, ARRAY_SIZE(norm_2610ae));
3375
3376
3377 i2c_w_mask(sd, 0x13, 0x05, 0x05);
3378 break;
3379 case SEN_OV3610:
3380 write_i2c_regvals(sd, norm_3620b, ARRAY_SIZE(norm_3620b));
3381
3382
3383 i2c_w_mask(sd, 0x13, 0x27, 0x27);
3384 break;
3385 case SEN_OV6620:
3386 write_i2c_regvals(sd, norm_6x20, ARRAY_SIZE(norm_6x20));
3387 break;
3388 case SEN_OV6630:
3389 case SEN_OV66308AF:
3390 write_i2c_regvals(sd, norm_6x30, ARRAY_SIZE(norm_6x30));
3391 break;
3392 default:
3393
3394
3395 write_i2c_regvals(sd, norm_7610, ARRAY_SIZE(norm_7610));
3396 i2c_w_mask(sd, 0x0e, 0x00, 0x40);
3397 break;
3398 case SEN_OV7620:
3399 case SEN_OV7620AE:
3400 write_i2c_regvals(sd, norm_7620, ARRAY_SIZE(norm_7620));
3401 break;
3402 case SEN_OV7640:
3403 case SEN_OV7648:
3404 write_i2c_regvals(sd, norm_7640, ARRAY_SIZE(norm_7640));
3405 break;
3406 case SEN_OV7660:
3407 i2c_w(sd, OV7670_R12_COM7, OV7670_COM7_RESET);
3408 msleep(14);
3409 reg_w(sd, OV519_R57_SNAPSHOT, 0x23);
3410 write_regvals(sd, init_519_ov7660,
3411 ARRAY_SIZE(init_519_ov7660));
3412 write_i2c_regvals(sd, norm_7660, ARRAY_SIZE(norm_7660));
3413 sd->gspca_dev.curr_mode = 1;
3414 ov519_set_mode(sd);
3415 ov519_set_fr(sd);
3416 sd_reset_snapshot(gspca_dev);
3417 ov51x_restart(sd);
3418 ov51x_stop(sd);
3419 ov51x_led_control(sd, 0);
3420 break;
3421 case SEN_OV7670:
3422 write_i2c_regvals(sd, norm_7670, ARRAY_SIZE(norm_7670));
3423 break;
3424 case SEN_OV8610:
3425 write_i2c_regvals(sd, norm_8610, ARRAY_SIZE(norm_8610));
3426 break;
3427 case SEN_OV9600:
3428 write_i2c_regvals(sd, norm_9600, ARRAY_SIZE(norm_9600));
3429
3430
3431
3432 break;
3433 }
3434 return gspca_dev->usb_err;
3435error:
3436 PDEBUG(D_ERR, "OV519 Config failed");
3437 return -EINVAL;
3438}
3439
3440
3441static int sd_isoc_init(struct gspca_dev *gspca_dev)
3442{
3443 struct sd *sd = (struct sd *) gspca_dev;
3444
3445 switch (sd->bridge) {
3446 case BRIDGE_OVFX2:
3447 if (gspca_dev->width != 800)
3448 gspca_dev->cam.bulk_size = OVFX2_BULK_SIZE;
3449 else
3450 gspca_dev->cam.bulk_size = 7 * 4096;
3451 break;
3452 }
3453 return 0;
3454}
3455
3456
3457
3458
3459
3460static void ov511_mode_init_regs(struct sd *sd)
3461{
3462 int hsegs, vsegs, packet_size, fps, needed;
3463 int interlaced = 0;
3464 struct usb_host_interface *alt;
3465 struct usb_interface *intf;
3466
3467 intf = usb_ifnum_to_if(sd->gspca_dev.dev, sd->gspca_dev.iface);
3468 alt = usb_altnum_to_altsetting(intf, sd->gspca_dev.alt);
3469 if (!alt) {
3470 pr_err("Couldn't get altsetting\n");
3471 sd->gspca_dev.usb_err = -EIO;
3472 return;
3473 }
3474
3475 packet_size = le16_to_cpu(alt->endpoint[0].desc.wMaxPacketSize);
3476 reg_w(sd, R51x_FIFO_PSIZE, packet_size >> 5);
3477
3478 reg_w(sd, R511_CAM_UV_EN, 0x01);
3479 reg_w(sd, R511_SNAP_UV_EN, 0x01);
3480 reg_w(sd, R511_SNAP_OPTS, 0x03);
3481
3482
3483
3484
3485 hsegs = (sd->gspca_dev.width >> 3) - 1;
3486 vsegs = (sd->gspca_dev.height >> 3) - 1;
3487
3488 reg_w(sd, R511_CAM_PXCNT, hsegs);
3489 reg_w(sd, R511_CAM_LNCNT, vsegs);
3490 reg_w(sd, R511_CAM_PXDIV, 0x00);
3491 reg_w(sd, R511_CAM_LNDIV, 0x00);
3492
3493
3494 reg_w(sd, R511_CAM_OPTS, 0x03);
3495
3496
3497 reg_w(sd, R511_SNAP_PXCNT, hsegs);
3498 reg_w(sd, R511_SNAP_LNCNT, vsegs);
3499 reg_w(sd, R511_SNAP_PXDIV, 0x00);
3500 reg_w(sd, R511_SNAP_LNDIV, 0x00);
3501
3502
3503 if (frame_rate > 0)
3504 sd->frame_rate = frame_rate;
3505
3506 switch (sd->sensor) {
3507 case SEN_OV6620:
3508
3509 sd->clockdiv = 3;
3510 break;
3511
3512
3513
3514 case SEN_OV7620:
3515 case SEN_OV7620AE:
3516 case SEN_OV7640:
3517 case SEN_OV7648:
3518 case SEN_OV76BE:
3519 if (sd->gspca_dev.width == 320)
3520 interlaced = 1;
3521
3522 case SEN_OV6630:
3523 case SEN_OV7610:
3524 case SEN_OV7670:
3525 switch (sd->frame_rate) {
3526 case 30:
3527 case 25:
3528
3529 if (sd->gspca_dev.width != 640) {
3530 sd->clockdiv = 0;
3531 break;
3532 }
3533
3534 default:
3535
3536
3537 sd->clockdiv = 1;
3538 break;
3539 case 10:
3540 sd->clockdiv = 2;
3541 break;
3542 case 5:
3543 sd->clockdiv = 5;
3544 break;
3545 }
3546 if (interlaced) {
3547 sd->clockdiv = (sd->clockdiv + 1) * 2 - 1;
3548
3549 if (sd->clockdiv > 10)
3550 sd->clockdiv = 10;
3551 }
3552 break;
3553
3554 case SEN_OV8610:
3555
3556 sd->clockdiv = 0;
3557 break;
3558 }
3559
3560
3561 fps = (interlaced ? 60 : 30) / (sd->clockdiv + 1) + 1;
3562 needed = fps * sd->gspca_dev.width * sd->gspca_dev.height * 3 / 2;
3563
3564 if (needed > 1000 * packet_size) {
3565
3566 reg_w(sd, R511_COMP_EN, 0x07);
3567 reg_w(sd, R511_COMP_LUT_EN, 0x03);
3568 } else {
3569 reg_w(sd, R511_COMP_EN, 0x06);
3570 reg_w(sd, R511_COMP_LUT_EN, 0x00);
3571 }
3572
3573 reg_w(sd, R51x_SYS_RESET, OV511_RESET_OMNICE);
3574 reg_w(sd, R51x_SYS_RESET, 0);
3575}
3576
3577
3578
3579
3580
3581
3582
3583
3584static void ov518_mode_init_regs(struct sd *sd)
3585{
3586 int hsegs, vsegs, packet_size;
3587 struct usb_host_interface *alt;
3588 struct usb_interface *intf;
3589
3590 intf = usb_ifnum_to_if(sd->gspca_dev.dev, sd->gspca_dev.iface);
3591 alt = usb_altnum_to_altsetting(intf, sd->gspca_dev.alt);
3592 if (!alt) {
3593 pr_err("Couldn't get altsetting\n");
3594 sd->gspca_dev.usb_err = -EIO;
3595 return;
3596 }
3597
3598 packet_size = le16_to_cpu(alt->endpoint[0].desc.wMaxPacketSize);
3599 ov518_reg_w32(sd, R51x_FIFO_PSIZE, packet_size & ~7, 2);
3600
3601
3602 reg_w(sd, 0x2b, 0);
3603 reg_w(sd, 0x2c, 0);
3604 reg_w(sd, 0x2d, 0);
3605 reg_w(sd, 0x2e, 0);
3606 reg_w(sd, 0x3b, 0);
3607 reg_w(sd, 0x3c, 0);
3608 reg_w(sd, 0x3d, 0);
3609 reg_w(sd, 0x3e, 0);
3610
3611 if (sd->bridge == BRIDGE_OV518) {
3612
3613 reg_w_mask(sd, 0x20, 0x08, 0x08);
3614
3615
3616 reg_w_mask(sd, 0x28, 0x80, 0xf0);
3617 reg_w_mask(sd, 0x38, 0x80, 0xf0);
3618 } else {
3619 reg_w(sd, 0x28, 0x80);
3620 reg_w(sd, 0x38, 0x80);
3621 }
3622
3623 hsegs = sd->gspca_dev.width / 16;
3624 vsegs = sd->gspca_dev.height / 4;
3625
3626 reg_w(sd, 0x29, hsegs);
3627 reg_w(sd, 0x2a, vsegs);
3628
3629 reg_w(sd, 0x39, hsegs);
3630 reg_w(sd, 0x3a, vsegs);
3631
3632
3633 reg_w(sd, 0x2f, 0x80);
3634
3635
3636 sd->clockdiv = 1;
3637
3638
3639
3640 reg_w(sd, 0x51, 0x04);
3641 reg_w(sd, 0x22, 0x18);
3642 reg_w(sd, 0x23, 0xff);
3643
3644 if (sd->bridge == BRIDGE_OV518PLUS) {
3645 switch (sd->sensor) {
3646 case SEN_OV7620AE:
3647 if (sd->gspca_dev.width == 320) {
3648 reg_w(sd, 0x20, 0x00);
3649 reg_w(sd, 0x21, 0x19);
3650 } else {
3651 reg_w(sd, 0x20, 0x60);
3652 reg_w(sd, 0x21, 0x1f);
3653 }
3654 break;
3655 case SEN_OV7620:
3656 reg_w(sd, 0x20, 0x00);
3657 reg_w(sd, 0x21, 0x19);
3658 break;
3659 default:
3660 reg_w(sd, 0x21, 0x19);
3661 }
3662 } else
3663 reg_w(sd, 0x71, 0x17);
3664
3665
3666
3667 i2c_w(sd, 0x54, 0x23);
3668
3669 reg_w(sd, 0x2f, 0x80);
3670
3671 if (sd->bridge == BRIDGE_OV518PLUS) {
3672 reg_w(sd, 0x24, 0x94);
3673 reg_w(sd, 0x25, 0x90);
3674 ov518_reg_w32(sd, 0xc4, 400, 2);
3675 ov518_reg_w32(sd, 0xc6, 540, 2);
3676 ov518_reg_w32(sd, 0xc7, 540, 2);
3677 ov518_reg_w32(sd, 0xc8, 108, 2);
3678 ov518_reg_w32(sd, 0xca, 131098, 3);
3679 ov518_reg_w32(sd, 0xcb, 532, 2);
3680 ov518_reg_w32(sd, 0xcc, 2400, 2);
3681 ov518_reg_w32(sd, 0xcd, 32, 2);
3682 ov518_reg_w32(sd, 0xce, 608, 2);
3683 } else {
3684 reg_w(sd, 0x24, 0x9f);
3685 reg_w(sd, 0x25, 0x90);
3686 ov518_reg_w32(sd, 0xc4, 400, 2);
3687 ov518_reg_w32(sd, 0xc6, 381, 2);
3688 ov518_reg_w32(sd, 0xc7, 381, 2);
3689 ov518_reg_w32(sd, 0xc8, 128, 2);
3690 ov518_reg_w32(sd, 0xca, 183331, 3);
3691 ov518_reg_w32(sd, 0xcb, 746, 2);
3692 ov518_reg_w32(sd, 0xcc, 1750, 2);
3693 ov518_reg_w32(sd, 0xcd, 45, 2);
3694 ov518_reg_w32(sd, 0xce, 851, 2);
3695 }
3696
3697 reg_w(sd, 0x2f, 0x80);
3698}
3699
3700
3701
3702
3703
3704
3705
3706
3707static void ov519_mode_init_regs(struct sd *sd)
3708{
3709 static const struct ov_regvals mode_init_519_ov7670[] = {
3710 { 0x5d, 0x03 },
3711 { 0x53, 0x9f },
3712 { OV519_R54_EN_CLK1, 0x0f },
3713 { 0xa2, 0x20 },
3714 { 0xa3, 0x18 },
3715 { 0xa4, 0x04 },
3716 { 0xa5, 0x28 },
3717 { 0x37, 0x00 },
3718 { 0x55, 0x02 },
3719
3720 { 0x20, 0x0c },
3721 { 0x21, 0x38 },
3722 { 0x22, 0x1d },
3723 { 0x17, 0x50 },
3724 { 0x37, 0x00 },
3725 { 0x40, 0xff },
3726 { 0x46, 0x00 },
3727 { 0x59, 0x04 },
3728 { 0xff, 0x00 },
3729
3730 };
3731
3732 static const struct ov_regvals mode_init_519[] = {
3733 { 0x5d, 0x03 },
3734 { 0x53, 0x9f },
3735 { OV519_R54_EN_CLK1, 0x0f },
3736 { 0xa2, 0x20 },
3737 { 0xa3, 0x18 },
3738 { 0xa4, 0x04 },
3739 { 0xa5, 0x28 },
3740 { 0x37, 0x00 },
3741 { 0x55, 0x02 },
3742
3743 { 0x22, 0x1d },
3744 { 0x17, 0x50 },
3745 { 0x37, 0x00 },
3746 { 0x40, 0xff },
3747 { 0x46, 0x00 },
3748 { 0x59, 0x04 },
3749 { 0xff, 0x00 },
3750
3751 };
3752
3753
3754 switch (sd->sensor) {
3755 default:
3756 write_regvals(sd, mode_init_519, ARRAY_SIZE(mode_init_519));
3757 if (sd->sensor == SEN_OV7640 ||
3758 sd->sensor == SEN_OV7648) {
3759
3760 reg_w_mask(sd, OV519_R20_DFR, 0x10, 0x10);
3761 }
3762 break;
3763 case SEN_OV7660:
3764 return;
3765 case SEN_OV7670:
3766 write_regvals(sd, mode_init_519_ov7670,
3767 ARRAY_SIZE(mode_init_519_ov7670));
3768 break;
3769 }
3770
3771 reg_w(sd, OV519_R10_H_SIZE, sd->gspca_dev.width >> 4);
3772 reg_w(sd, OV519_R11_V_SIZE, sd->gspca_dev.height >> 3);
3773 if (sd->sensor == SEN_OV7670 &&
3774 sd->gspca_dev.cam.cam_mode[sd->gspca_dev.curr_mode].priv)
3775 reg_w(sd, OV519_R12_X_OFFSETL, 0x04);
3776 else if (sd->sensor == SEN_OV7648 &&
3777 sd->gspca_dev.cam.cam_mode[sd->gspca_dev.curr_mode].priv)
3778 reg_w(sd, OV519_R12_X_OFFSETL, 0x01);
3779 else
3780 reg_w(sd, OV519_R12_X_OFFSETL, 0x00);
3781 reg_w(sd, OV519_R13_X_OFFSETH, 0x00);
3782 reg_w(sd, OV519_R14_Y_OFFSETL, 0x00);
3783 reg_w(sd, OV519_R15_Y_OFFSETH, 0x00);
3784 reg_w(sd, OV519_R16_DIVIDER, 0x00);
3785 reg_w(sd, OV519_R25_FORMAT, 0x03);
3786 reg_w(sd, 0x26, 0x00);
3787
3788
3789 if (frame_rate > 0)
3790 sd->frame_rate = frame_rate;
3791
3792
3793 sd->clockdiv = 0;
3794 switch (sd->sensor) {
3795 case SEN_OV7640:
3796 case SEN_OV7648:
3797 switch (sd->frame_rate) {
3798 default:
3799
3800 reg_w(sd, 0xa4, 0x0c);
3801 reg_w(sd, 0x23, 0xff);
3802 break;
3803 case 25:
3804 reg_w(sd, 0xa4, 0x0c);
3805 reg_w(sd, 0x23, 0x1f);
3806 break;
3807 case 20:
3808 reg_w(sd, 0xa4, 0x0c);
3809 reg_w(sd, 0x23, 0x1b);
3810 break;
3811 case 15:
3812 reg_w(sd, 0xa4, 0x04);
3813 reg_w(sd, 0x23, 0xff);
3814 sd->clockdiv = 1;
3815 break;
3816 case 10:
3817 reg_w(sd, 0xa4, 0x04);
3818 reg_w(sd, 0x23, 0x1f);
3819 sd->clockdiv = 1;
3820 break;
3821 case 5:
3822 reg_w(sd, 0xa4, 0x04);
3823 reg_w(sd, 0x23, 0x1b);
3824 sd->clockdiv = 1;
3825 break;
3826 }
3827 break;
3828 case SEN_OV8610:
3829 switch (sd->frame_rate) {
3830 default:
3831
3832 reg_w(sd, 0xa4, 0x06);
3833 reg_w(sd, 0x23, 0xff);
3834 break;
3835 case 10:
3836 reg_w(sd, 0xa4, 0x06);
3837 reg_w(sd, 0x23, 0x1f);
3838 break;
3839 case 5:
3840 reg_w(sd, 0xa4, 0x06);
3841 reg_w(sd, 0x23, 0x1b);
3842 break;
3843 }
3844 break;
3845 case SEN_OV7670:
3846 PDEBUG(D_STREAM, "Setting framerate to %d fps",
3847 (sd->frame_rate == 0) ? 15 : sd->frame_rate);
3848 reg_w(sd, 0xa4, 0x10);
3849 switch (sd->frame_rate) {
3850 case 30:
3851 reg_w(sd, 0x23, 0xff);
3852 break;
3853 case 20:
3854 reg_w(sd, 0x23, 0x1b);
3855 break;
3856 default:
3857
3858 reg_w(sd, 0x23, 0xff);
3859 sd->clockdiv = 1;
3860 break;
3861 }
3862 break;
3863 }
3864}
3865
3866static void mode_init_ov_sensor_regs(struct sd *sd)
3867{
3868 struct gspca_dev *gspca_dev;
3869 int qvga, xstart, xend, ystart, yend;
3870 u8 v;
3871
3872 gspca_dev = &sd->gspca_dev;
3873 qvga = gspca_dev->cam.cam_mode[gspca_dev->curr_mode].priv & 1;
3874
3875
3876 switch (sd->sensor) {
3877 case SEN_OV2610:
3878 i2c_w_mask(sd, 0x14, qvga ? 0x20 : 0x00, 0x20);
3879 i2c_w_mask(sd, 0x28, qvga ? 0x00 : 0x20, 0x20);
3880 i2c_w(sd, 0x24, qvga ? 0x20 : 0x3a);
3881 i2c_w(sd, 0x25, qvga ? 0x30 : 0x60);
3882 i2c_w_mask(sd, 0x2d, qvga ? 0x40 : 0x00, 0x40);
3883 i2c_w_mask(sd, 0x67, qvga ? 0xf0 : 0x90, 0xf0);
3884 i2c_w_mask(sd, 0x74, qvga ? 0x20 : 0x00, 0x20);
3885 return;
3886 case SEN_OV2610AE: {
3887 u8 v;
3888
3889
3890
3891
3892
3893 v = 80;
3894 if (qvga) {
3895 if (sd->frame_rate < 25)
3896 v = 0x81;
3897 } else {
3898 if (sd->frame_rate < 10)
3899 v = 0x81;
3900 }
3901 i2c_w(sd, 0x11, v);
3902 i2c_w(sd, 0x12, qvga ? 0x60 : 0x20);
3903 return;
3904 }
3905 case SEN_OV3610:
3906 if (qvga) {
3907 xstart = (1040 - gspca_dev->width) / 2 + (0x1f << 4);
3908 ystart = (776 - gspca_dev->height) / 2;
3909 } else {
3910 xstart = (2076 - gspca_dev->width) / 2 + (0x10 << 4);
3911 ystart = (1544 - gspca_dev->height) / 2;
3912 }
3913 xend = xstart + gspca_dev->width;
3914 yend = ystart + gspca_dev->height;
3915
3916
3917 i2c_w_mask(sd, 0x12, qvga ? 0x40 : 0x00, 0xf0);
3918 i2c_w_mask(sd, 0x32,
3919 (((xend >> 1) & 7) << 3) | ((xstart >> 1) & 7),
3920 0x3f);
3921 i2c_w_mask(sd, 0x03,
3922 (((yend >> 1) & 3) << 2) | ((ystart >> 1) & 3),
3923 0x0f);
3924 i2c_w(sd, 0x17, xstart >> 4);
3925 i2c_w(sd, 0x18, xend >> 4);
3926 i2c_w(sd, 0x19, ystart >> 3);
3927 i2c_w(sd, 0x1a, yend >> 3);
3928 return;
3929 case SEN_OV8610:
3930
3931 i2c_w_mask(sd, OV7610_REG_COM_C, qvga ? (1 << 5) : 0, 1 << 5);
3932 i2c_w_mask(sd, 0x13, 0x00, 0x20);
3933 i2c_w_mask(sd, 0x12, 0x04, 0x06);
3934 i2c_w_mask(sd, 0x2d, 0x00, 0x40);
3935 i2c_w_mask(sd, 0x28, 0x20, 0x20);
3936 break;
3937 case SEN_OV7610:
3938 i2c_w_mask(sd, 0x14, qvga ? 0x20 : 0x00, 0x20);
3939 i2c_w(sd, 0x35, qvga ? 0x1e : 0x9e);
3940 i2c_w_mask(sd, 0x13, 0x00, 0x20);
3941 i2c_w_mask(sd, 0x12, 0x04, 0x06);
3942 break;
3943 case SEN_OV7620:
3944 case SEN_OV7620AE:
3945 case SEN_OV76BE:
3946 i2c_w_mask(sd, 0x14, qvga ? 0x20 : 0x00, 0x20);
3947 i2c_w_mask(sd, 0x28, qvga ? 0x00 : 0x20, 0x20);
3948 i2c_w(sd, 0x24, qvga ? 0x20 : 0x3a);
3949 i2c_w(sd, 0x25, qvga ? 0x30 : 0x60);
3950 i2c_w_mask(sd, 0x2d, qvga ? 0x40 : 0x00, 0x40);
3951 i2c_w_mask(sd, 0x67, qvga ? 0xb0 : 0x90, 0xf0);
3952 i2c_w_mask(sd, 0x74, qvga ? 0x20 : 0x00, 0x20);
3953 i2c_w_mask(sd, 0x13, 0x00, 0x20);
3954 i2c_w_mask(sd, 0x12, 0x04, 0x06);
3955 if (sd->sensor == SEN_OV76BE)
3956 i2c_w(sd, 0x35, qvga ? 0x1e : 0x9e);
3957 break;
3958 case SEN_OV7640:
3959 case SEN_OV7648:
3960 i2c_w_mask(sd, 0x14, qvga ? 0x20 : 0x00, 0x20);
3961 i2c_w_mask(sd, 0x28, qvga ? 0x00 : 0x20, 0x20);
3962
3963
3964 i2c_w_mask(sd, 0x2d, qvga ? 0x40 : 0x00, 0x40);
3965
3966 i2c_w_mask(sd, 0x67, qvga ? 0xf0 : 0x90, 0xf0);
3967
3968 i2c_w_mask(sd, 0x74, qvga ? 0x20 : 0x00, 0x20);
3969 i2c_w_mask(sd, 0x12, 0x04, 0x04);
3970 break;
3971 case SEN_OV7670:
3972
3973
3974
3975 i2c_w_mask(sd, OV7670_R12_COM7,
3976 qvga ? OV7670_COM7_FMT_QVGA : OV7670_COM7_FMT_VGA,
3977 OV7670_COM7_FMT_MASK);
3978 i2c_w_mask(sd, 0x13, 0x00, 0x20);
3979 i2c_w_mask(sd, OV7670_R13_COM8, OV7670_COM8_AWB,
3980 OV7670_COM8_AWB);
3981 if (qvga) {
3982
3983 xstart = 164;
3984 xend = 28;
3985 ystart = 14;
3986 yend = 494;
3987 } else {
3988 xstart = 158;
3989 xend = 14;
3990 ystart = 10;
3991 yend = 490;
3992 }
3993
3994
3995 i2c_w(sd, OV7670_R17_HSTART, xstart >> 3);
3996 i2c_w(sd, OV7670_R18_HSTOP, xend >> 3);
3997 v = i2c_r(sd, OV7670_R32_HREF);
3998 v = (v & 0xc0) | ((xend & 0x7) << 3) | (xstart & 0x07);
3999 msleep(10);
4000
4001 i2c_w(sd, OV7670_R32_HREF, v);
4002
4003 i2c_w(sd, OV7670_R19_VSTART, ystart >> 2);
4004 i2c_w(sd, OV7670_R1A_VSTOP, yend >> 2);
4005 v = i2c_r(sd, OV7670_R03_VREF);
4006 v = (v & 0xc0) | ((yend & 0x3) << 2) | (ystart & 0x03);
4007 msleep(10);
4008
4009 i2c_w(sd, OV7670_R03_VREF, v);
4010 break;
4011 case SEN_OV6620:
4012 i2c_w_mask(sd, 0x14, qvga ? 0x20 : 0x00, 0x20);
4013 i2c_w_mask(sd, 0x13, 0x00, 0x20);
4014 i2c_w_mask(sd, 0x12, 0x04, 0x06);
4015 break;
4016 case SEN_OV6630:
4017 case SEN_OV66308AF:
4018 i2c_w_mask(sd, 0x14, qvga ? 0x20 : 0x00, 0x20);
4019 i2c_w_mask(sd, 0x12, 0x04, 0x06);
4020 break;
4021 case SEN_OV9600: {
4022 const struct ov_i2c_regvals *vals;
4023 static const struct ov_i2c_regvals sxga_15[] = {
4024 {0x11, 0x80}, {0x14, 0x3e}, {0x24, 0x85}, {0x25, 0x75}
4025 };
4026 static const struct ov_i2c_regvals sxga_7_5[] = {
4027 {0x11, 0x81}, {0x14, 0x3e}, {0x24, 0x85}, {0x25, 0x75}
4028 };
4029 static const struct ov_i2c_regvals vga_30[] = {
4030 {0x11, 0x81}, {0x14, 0x7e}, {0x24, 0x70}, {0x25, 0x60}
4031 };
4032 static const struct ov_i2c_regvals vga_15[] = {
4033 {0x11, 0x83}, {0x14, 0x3e}, {0x24, 0x80}, {0x25, 0x70}
4034 };
4035
4036
4037
4038
4039
4040 i2c_w_mask(sd, 0x12, qvga ? 0x40 : 0x00, 0x40);
4041 if (qvga)
4042 vals = sd->frame_rate < 30 ? vga_15 : vga_30;
4043 else
4044 vals = sd->frame_rate < 15 ? sxga_7_5 : sxga_15;
4045 write_i2c_regvals(sd, vals, ARRAY_SIZE(sxga_15));
4046 return;
4047 }
4048 default:
4049 return;
4050 }
4051
4052
4053 i2c_w(sd, 0x11, sd->clockdiv);
4054}
4055
4056
4057static void sethvflip(struct gspca_dev *gspca_dev, s32 hflip, s32 vflip)
4058{
4059 struct sd *sd = (struct sd *) gspca_dev;
4060
4061 if (sd->gspca_dev.streaming)
4062 reg_w(sd, OV519_R51_RESET1, 0x0f);
4063 i2c_w_mask(sd, OV7670_R1E_MVFP,
4064 OV7670_MVFP_MIRROR * hflip | OV7670_MVFP_VFLIP * vflip,
4065 OV7670_MVFP_MIRROR | OV7670_MVFP_VFLIP);
4066 if (sd->gspca_dev.streaming)
4067 reg_w(sd, OV519_R51_RESET1, 0x00);
4068}
4069
4070static void set_ov_sensor_window(struct sd *sd)
4071{
4072 struct gspca_dev *gspca_dev;
4073 int qvga, crop;
4074 int hwsbase, hwebase, vwsbase, vwebase, hwscale, vwscale;
4075
4076
4077 switch (sd->sensor) {
4078 case SEN_OV2610:
4079 case SEN_OV2610AE:
4080 case SEN_OV3610:
4081 case SEN_OV7670:
4082 case SEN_OV9600:
4083 mode_init_ov_sensor_regs(sd);
4084 return;
4085 case SEN_OV7660:
4086 ov519_set_mode(sd);
4087 ov519_set_fr(sd);
4088 return;
4089 }
4090
4091 gspca_dev = &sd->gspca_dev;
4092 qvga = gspca_dev->cam.cam_mode[gspca_dev->curr_mode].priv & 1;
4093 crop = gspca_dev->cam.cam_mode[gspca_dev->curr_mode].priv & 2;
4094
4095
4096
4097 switch (sd->sensor) {
4098 case SEN_OV8610:
4099 hwsbase = 0x1e;
4100 hwebase = 0x1e;
4101 vwsbase = 0x02;
4102 vwebase = 0x02;
4103 break;
4104 case SEN_OV7610:
4105 case SEN_OV76BE:
4106 hwsbase = 0x38;
4107 hwebase = 0x3a;
4108 vwsbase = vwebase = 0x05;
4109 break;
4110 case SEN_OV6620:
4111 case SEN_OV6630:
4112 case SEN_OV66308AF:
4113 hwsbase = 0x38;
4114 hwebase = 0x3a;
4115 vwsbase = 0x05;
4116 vwebase = 0x06;
4117 if (sd->sensor == SEN_OV66308AF && qvga)
4118
4119 hwsbase++;
4120 if (crop) {
4121 hwsbase += 8;
4122 hwebase += 8;
4123 vwsbase += 11;
4124 vwebase += 11;
4125 }
4126 break;
4127 case SEN_OV7620:
4128 case SEN_OV7620AE:
4129 hwsbase = 0x2f;
4130 hwebase = 0x2f;
4131 vwsbase = vwebase = 0x05;
4132 break;
4133 case SEN_OV7640:
4134 case SEN_OV7648:
4135 hwsbase = 0x1a;
4136 hwebase = 0x1a;
4137 vwsbase = vwebase = 0x03;
4138 break;
4139 default:
4140 return;
4141 }
4142
4143 switch (sd->sensor) {
4144 case SEN_OV6620:
4145 case SEN_OV6630:
4146 case SEN_OV66308AF:
4147 if (qvga) {
4148 hwscale = 0;
4149 vwscale = 0;
4150 } else {
4151 hwscale = 1;
4152 vwscale = 1;
4153
4154 }
4155 break;
4156 case SEN_OV8610:
4157 if (qvga) {
4158 hwscale = 1;
4159 vwscale = 1;
4160 } else {
4161 hwscale = 2;
4162 vwscale = 2;
4163 }
4164 break;
4165 default:
4166 if (qvga) {
4167 hwscale = 1;
4168 vwscale = 0;
4169 } else {
4170 hwscale = 2;
4171 vwscale = 1;
4172 }
4173 }
4174
4175 mode_init_ov_sensor_regs(sd);
4176
4177 i2c_w(sd, 0x17, hwsbase);
4178 i2c_w(sd, 0x18, hwebase + (sd->sensor_width >> hwscale));
4179 i2c_w(sd, 0x19, vwsbase);
4180 i2c_w(sd, 0x1a, vwebase + (sd->sensor_height >> vwscale));
4181}
4182
4183
4184static int sd_start(struct gspca_dev *gspca_dev)
4185{
4186 struct sd *sd = (struct sd *) gspca_dev;
4187
4188
4189 sd->sensor_width = sd->gspca_dev.width;
4190 sd->sensor_height = sd->gspca_dev.height;
4191
4192 switch (sd->bridge) {
4193 case BRIDGE_OV511:
4194 case BRIDGE_OV511PLUS:
4195 ov511_mode_init_regs(sd);
4196 break;
4197 case BRIDGE_OV518:
4198 case BRIDGE_OV518PLUS:
4199 ov518_mode_init_regs(sd);
4200 break;
4201 case BRIDGE_OV519:
4202 ov519_mode_init_regs(sd);
4203 break;
4204
4205 case BRIDGE_W9968CF:
4206 w9968cf_mode_init_regs(sd);
4207 break;
4208 }
4209
4210 set_ov_sensor_window(sd);
4211
4212
4213
4214 sd->snapshot_needs_reset = 1;
4215 sd_reset_snapshot(gspca_dev);
4216
4217 sd->first_frame = 3;
4218
4219 ov51x_restart(sd);
4220 ov51x_led_control(sd, 1);
4221 return gspca_dev->usb_err;
4222}
4223
4224static void sd_stopN(struct gspca_dev *gspca_dev)
4225{
4226 struct sd *sd = (struct sd *) gspca_dev;
4227
4228 ov51x_stop(sd);
4229 ov51x_led_control(sd, 0);
4230}
4231
4232static void sd_stop0(struct gspca_dev *gspca_dev)
4233{
4234 struct sd *sd = (struct sd *) gspca_dev;
4235
4236 if (!sd->gspca_dev.present)
4237 return;
4238 if (sd->bridge == BRIDGE_W9968CF)
4239 w9968cf_stop0(sd);
4240
4241#if IS_ENABLED(CONFIG_INPUT)
4242
4243 if (sd->snapshot_pressed) {
4244 input_report_key(gspca_dev->input_dev, KEY_CAMERA, 0);
4245 input_sync(gspca_dev->input_dev);
4246 sd->snapshot_pressed = 0;
4247 }
4248#endif
4249 if (sd->bridge == BRIDGE_OV519)
4250 reg_w(sd, OV519_R57_SNAPSHOT, 0x23);
4251}
4252
4253static void ov51x_handle_button(struct gspca_dev *gspca_dev, u8 state)
4254{
4255 struct sd *sd = (struct sd *) gspca_dev;
4256
4257 if (sd->snapshot_pressed != state) {
4258#if IS_ENABLED(CONFIG_INPUT)
4259 input_report_key(gspca_dev->input_dev, KEY_CAMERA, state);
4260 input_sync(gspca_dev->input_dev);
4261#endif
4262 if (state)
4263 sd->snapshot_needs_reset = 1;
4264
4265 sd->snapshot_pressed = state;
4266 } else {
4267
4268
4269
4270 switch (sd->bridge) {
4271 case BRIDGE_OV511:
4272 case BRIDGE_OV511PLUS:
4273 case BRIDGE_OV519:
4274 if (state)
4275 sd->snapshot_needs_reset = 1;
4276 break;
4277 }
4278 }
4279}
4280
4281static void ov511_pkt_scan(struct gspca_dev *gspca_dev,
4282 u8 *in,
4283 int len)
4284{
4285 struct sd *sd = (struct sd *) gspca_dev;
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300 if (!(in[0] | in[1] | in[2] | in[3] | in[4] | in[5] | in[6] | in[7]) &&
4301 (in[8] & 0x08)) {
4302 ov51x_handle_button(gspca_dev, (in[8] >> 2) & 1);
4303 if (in[8] & 0x80) {
4304
4305 if ((in[9] + 1) * 8 != gspca_dev->width ||
4306 (in[10] + 1) * 8 != gspca_dev->height) {
4307 PDEBUG(D_ERR, "Invalid frame size, got: %dx%d,"
4308 " requested: %dx%d\n",
4309 (in[9] + 1) * 8, (in[10] + 1) * 8,
4310 gspca_dev->width, gspca_dev->height);
4311 gspca_dev->last_packet_type = DISCARD_PACKET;
4312 return;
4313 }
4314
4315 gspca_frame_add(gspca_dev, LAST_PACKET, in, 11);
4316 return;
4317 } else {
4318
4319 gspca_frame_add(gspca_dev, FIRST_PACKET, in, 0);
4320 sd->packet_nr = 0;
4321 }
4322 }
4323
4324
4325 len--;
4326
4327
4328 gspca_frame_add(gspca_dev, INTER_PACKET, in, len);
4329}
4330
4331static void ov518_pkt_scan(struct gspca_dev *gspca_dev,
4332 u8 *data,
4333 int len)
4334{
4335 struct sd *sd = (struct sd *) gspca_dev;
4336
4337
4338
4339 if ((!(data[0] | data[1] | data[2] | data[3] | data[5])) && data[6]) {
4340 ov51x_handle_button(gspca_dev, (data[6] >> 1) & 1);
4341 gspca_frame_add(gspca_dev, LAST_PACKET, NULL, 0);
4342 gspca_frame_add(gspca_dev, FIRST_PACKET, NULL, 0);
4343 sd->packet_nr = 0;
4344 }
4345
4346 if (gspca_dev->last_packet_type == DISCARD_PACKET)
4347 return;
4348
4349
4350 if (len & 7) {
4351 len--;
4352 if (sd->packet_nr == data[len])
4353 sd->packet_nr++;
4354
4355
4356
4357 else if (sd->packet_nr == 0 || data[len]) {
4358 PDEBUG(D_ERR, "Invalid packet nr: %d (expect: %d)",
4359 (int)data[len], (int)sd->packet_nr);
4360 gspca_dev->last_packet_type = DISCARD_PACKET;
4361 return;
4362 }
4363 }
4364
4365
4366 gspca_frame_add(gspca_dev, INTER_PACKET, data, len);
4367}
4368
4369static void ov519_pkt_scan(struct gspca_dev *gspca_dev,
4370 u8 *data,
4371 int len)
4372{
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385 if (data[0] == 0xff && data[1] == 0xff && data[2] == 0xff) {
4386 switch (data[3]) {
4387 case 0x50:
4388
4389
4390
4391#define HDRSZ 16
4392 data += HDRSZ;
4393 len -= HDRSZ;
4394#undef HDRSZ
4395 if (data[0] == 0xff || data[1] == 0xd8)
4396 gspca_frame_add(gspca_dev, FIRST_PACKET,
4397 data, len);
4398 else
4399 gspca_dev->last_packet_type = DISCARD_PACKET;
4400 return;
4401 case 0x51:
4402 ov51x_handle_button(gspca_dev, data[11] & 1);
4403 if (data[9] != 0)
4404 gspca_dev->last_packet_type = DISCARD_PACKET;
4405 gspca_frame_add(gspca_dev, LAST_PACKET,
4406 NULL, 0);
4407 return;
4408 }
4409 }
4410
4411
4412 gspca_frame_add(gspca_dev, INTER_PACKET, data, len);
4413}
4414
4415static void ovfx2_pkt_scan(struct gspca_dev *gspca_dev,
4416 u8 *data,
4417 int len)
4418{
4419 struct sd *sd = (struct sd *) gspca_dev;
4420
4421 gspca_frame_add(gspca_dev, INTER_PACKET, data, len);
4422
4423
4424 if (len < gspca_dev->cam.bulk_size) {
4425
4426
4427 if (sd->first_frame) {
4428 sd->first_frame--;
4429 if (gspca_dev->image_len <
4430 sd->gspca_dev.width * sd->gspca_dev.height)
4431 gspca_dev->last_packet_type = DISCARD_PACKET;
4432 }
4433 gspca_frame_add(gspca_dev, LAST_PACKET, NULL, 0);
4434 gspca_frame_add(gspca_dev, FIRST_PACKET, NULL, 0);
4435 }
4436}
4437
4438static void sd_pkt_scan(struct gspca_dev *gspca_dev,
4439 u8 *data,
4440 int len)
4441{
4442 struct sd *sd = (struct sd *) gspca_dev;
4443
4444 switch (sd->bridge) {
4445 case BRIDGE_OV511:
4446 case BRIDGE_OV511PLUS:
4447 ov511_pkt_scan(gspca_dev, data, len);
4448 break;
4449 case BRIDGE_OV518:
4450 case BRIDGE_OV518PLUS:
4451 ov518_pkt_scan(gspca_dev, data, len);
4452 break;
4453 case BRIDGE_OV519:
4454 ov519_pkt_scan(gspca_dev, data, len);
4455 break;
4456 case BRIDGE_OVFX2:
4457 ovfx2_pkt_scan(gspca_dev, data, len);
4458 break;
4459 case BRIDGE_W9968CF:
4460 w9968cf_pkt_scan(gspca_dev, data, len);
4461 break;
4462 }
4463}
4464
4465
4466
4467static void setbrightness(struct gspca_dev *gspca_dev, s32 val)
4468{
4469 struct sd *sd = (struct sd *) gspca_dev;
4470 static const struct ov_i2c_regvals brit_7660[][7] = {
4471 {{0x0f, 0x6a}, {0x24, 0x40}, {0x25, 0x2b}, {0x26, 0x90},
4472 {0x27, 0xe0}, {0x28, 0xe0}, {0x2c, 0xe0}},
4473 {{0x0f, 0x6a}, {0x24, 0x50}, {0x25, 0x40}, {0x26, 0xa1},
4474 {0x27, 0xc0}, {0x28, 0xc0}, {0x2c, 0xc0}},
4475 {{0x0f, 0x6a}, {0x24, 0x68}, {0x25, 0x58}, {0x26, 0xc2},
4476 {0x27, 0xa0}, {0x28, 0xa0}, {0x2c, 0xa0}},
4477 {{0x0f, 0x6a}, {0x24, 0x70}, {0x25, 0x68}, {0x26, 0xd3},
4478 {0x27, 0x80}, {0x28, 0x80}, {0x2c, 0x80}},
4479 {{0x0f, 0x6a}, {0x24, 0x80}, {0x25, 0x70}, {0x26, 0xd3},
4480 {0x27, 0x20}, {0x28, 0x20}, {0x2c, 0x20}},
4481 {{0x0f, 0x6a}, {0x24, 0x88}, {0x25, 0x78}, {0x26, 0xd3},
4482 {0x27, 0x40}, {0x28, 0x40}, {0x2c, 0x40}},
4483 {{0x0f, 0x6a}, {0x24, 0x90}, {0x25, 0x80}, {0x26, 0xd4},
4484 {0x27, 0x60}, {0x28, 0x60}, {0x2c, 0x60}}
4485 };
4486
4487 switch (sd->sensor) {
4488 case SEN_OV8610:
4489 case SEN_OV7610:
4490 case SEN_OV76BE:
4491 case SEN_OV6620:
4492 case SEN_OV6630:
4493 case SEN_OV66308AF:
4494 case SEN_OV7640:
4495 case SEN_OV7648:
4496 i2c_w(sd, OV7610_REG_BRT, val);
4497 break;
4498 case SEN_OV7620:
4499 case SEN_OV7620AE:
4500 i2c_w(sd, OV7610_REG_BRT, val);
4501 break;
4502 case SEN_OV7660:
4503 write_i2c_regvals(sd, brit_7660[val],
4504 ARRAY_SIZE(brit_7660[0]));
4505 break;
4506 case SEN_OV7670:
4507
4508
4509 i2c_w(sd, OV7670_R55_BRIGHT, ov7670_abs_to_sm(val));
4510 break;
4511 }
4512}
4513
4514static void setcontrast(struct gspca_dev *gspca_dev, s32 val)
4515{
4516 struct sd *sd = (struct sd *) gspca_dev;
4517 static const struct ov_i2c_regvals contrast_7660[][31] = {
4518 {{0x6c, 0xf0}, {0x6d, 0xf0}, {0x6e, 0xf8}, {0x6f, 0xa0},
4519 {0x70, 0x58}, {0x71, 0x38}, {0x72, 0x30}, {0x73, 0x30},
4520 {0x74, 0x28}, {0x75, 0x28}, {0x76, 0x24}, {0x77, 0x24},
4521 {0x78, 0x22}, {0x79, 0x28}, {0x7a, 0x2a}, {0x7b, 0x34},
4522 {0x7c, 0x0f}, {0x7d, 0x1e}, {0x7e, 0x3d}, {0x7f, 0x65},
4523 {0x80, 0x70}, {0x81, 0x77}, {0x82, 0x7d}, {0x83, 0x83},
4524 {0x84, 0x88}, {0x85, 0x8d}, {0x86, 0x96}, {0x87, 0x9f},
4525 {0x88, 0xb0}, {0x89, 0xc4}, {0x8a, 0xd9}},
4526 {{0x6c, 0xf0}, {0x6d, 0xf0}, {0x6e, 0xf8}, {0x6f, 0x94},
4527 {0x70, 0x58}, {0x71, 0x40}, {0x72, 0x30}, {0x73, 0x30},
4528 {0x74, 0x30}, {0x75, 0x30}, {0x76, 0x2c}, {0x77, 0x24},
4529 {0x78, 0x22}, {0x79, 0x28}, {0x7a, 0x2a}, {0x7b, 0x31},
4530 {0x7c, 0x0f}, {0x7d, 0x1e}, {0x7e, 0x3d}, {0x7f, 0x62},
4531 {0x80, 0x6d}, {0x81, 0x75}, {0x82, 0x7b}, {0x83, 0x81},
4532 {0x84, 0x87}, {0x85, 0x8d}, {0x86, 0x98}, {0x87, 0xa1},
4533 {0x88, 0xb2}, {0x89, 0xc6}, {0x8a, 0xdb}},
4534 {{0x6c, 0xf0}, {0x6d, 0xf0}, {0x6e, 0xf0}, {0x6f, 0x84},
4535 {0x70, 0x58}, {0x71, 0x48}, {0x72, 0x40}, {0x73, 0x40},
4536 {0x74, 0x28}, {0x75, 0x28}, {0x76, 0x28}, {0x77, 0x24},
4537 {0x78, 0x26}, {0x79, 0x28}, {0x7a, 0x28}, {0x7b, 0x34},
4538 {0x7c, 0x0f}, {0x7d, 0x1e}, {0x7e, 0x3c}, {0x7f, 0x5d},
4539 {0x80, 0x68}, {0x81, 0x71}, {0x82, 0x79}, {0x83, 0x81},
4540 {0x84, 0x86}, {0x85, 0x8b}, {0x86, 0x95}, {0x87, 0x9e},
4541 {0x88, 0xb1}, {0x89, 0xc5}, {0x8a, 0xd9}},
4542 {{0x6c, 0xf0}, {0x6d, 0xf0}, {0x6e, 0xf0}, {0x6f, 0x70},
4543 {0x70, 0x58}, {0x71, 0x58}, {0x72, 0x48}, {0x73, 0x48},
4544 {0x74, 0x38}, {0x75, 0x40}, {0x76, 0x34}, {0x77, 0x34},
4545 {0x78, 0x2e}, {0x79, 0x28}, {0x7a, 0x24}, {0x7b, 0x22},
4546 {0x7c, 0x0f}, {0x7d, 0x1e}, {0x7e, 0x3c}, {0x7f, 0x58},
4547 {0x80, 0x63}, {0x81, 0x6e}, {0x82, 0x77}, {0x83, 0x80},
4548 {0x84, 0x87}, {0x85, 0x8f}, {0x86, 0x9c}, {0x87, 0xa9},
4549 {0x88, 0xc0}, {0x89, 0xd4}, {0x8a, 0xe6}},
4550 {{0x6c, 0xa0}, {0x6d, 0xf0}, {0x6e, 0x90}, {0x6f, 0x80},
4551 {0x70, 0x70}, {0x71, 0x80}, {0x72, 0x60}, {0x73, 0x60},
4552 {0x74, 0x58}, {0x75, 0x60}, {0x76, 0x4c}, {0x77, 0x38},
4553 {0x78, 0x38}, {0x79, 0x2a}, {0x7a, 0x20}, {0x7b, 0x0e},
4554 {0x7c, 0x0a}, {0x7d, 0x14}, {0x7e, 0x26}, {0x7f, 0x46},
4555 {0x80, 0x54}, {0x81, 0x64}, {0x82, 0x70}, {0x83, 0x7c},
4556 {0x84, 0x87}, {0x85, 0x93}, {0x86, 0xa6}, {0x87, 0xb4},
4557 {0x88, 0xd0}, {0x89, 0xe5}, {0x8a, 0xf5}},
4558 {{0x6c, 0x60}, {0x6d, 0x80}, {0x6e, 0x60}, {0x6f, 0x80},
4559 {0x70, 0x80}, {0x71, 0x80}, {0x72, 0x88}, {0x73, 0x30},
4560 {0x74, 0x70}, {0x75, 0x68}, {0x76, 0x64}, {0x77, 0x50},
4561 {0x78, 0x3c}, {0x79, 0x22}, {0x7a, 0x10}, {0x7b, 0x08},
4562 {0x7c, 0x06}, {0x7d, 0x0e}, {0x7e, 0x1a}, {0x7f, 0x3a},
4563 {0x80, 0x4a}, {0x81, 0x5a}, {0x82, 0x6b}, {0x83, 0x7b},
4564 {0x84, 0x89}, {0x85, 0x96}, {0x86, 0xaf}, {0x87, 0xc3},
4565 {0x88, 0xe1}, {0x89, 0xf2}, {0x8a, 0xfa}},
4566 {{0x6c, 0x20}, {0x6d, 0x40}, {0x6e, 0x20}, {0x6f, 0x60},
4567 {0x70, 0x88}, {0x71, 0xc8}, {0x72, 0xc0}, {0x73, 0xb8},
4568 {0x74, 0xa8}, {0x75, 0xb8}, {0x76, 0x80}, {0x77, 0x5c},
4569 {0x78, 0x26}, {0x79, 0x10}, {0x7a, 0x08}, {0x7b, 0x04},
4570 {0x7c, 0x02}, {0x7d, 0x06}, {0x7e, 0x0a}, {0x7f, 0x22},
4571 {0x80, 0x33}, {0x81, 0x4c}, {0x82, 0x64}, {0x83, 0x7b},
4572 {0x84, 0x90}, {0x85, 0xa7}, {0x86, 0xc7}, {0x87, 0xde},
4573 {0x88, 0xf1}, {0x89, 0xf9}, {0x8a, 0xfd}},
4574 };
4575
4576 switch (sd->sensor) {
4577 case SEN_OV7610:
4578 case SEN_OV6620:
4579 i2c_w(sd, OV7610_REG_CNT, val);
4580 break;
4581 case SEN_OV6630:
4582 case SEN_OV66308AF:
4583 i2c_w_mask(sd, OV7610_REG_CNT, val >> 4, 0x0f);
4584 break;
4585 case SEN_OV8610: {
4586 static const u8 ctab[] = {
4587 0x03, 0x09, 0x0b, 0x0f, 0x53, 0x6f, 0x35, 0x7f
4588 };
4589
4590
4591 i2c_w(sd, 0x64, ctab[val >> 5]);
4592 break;
4593 }
4594 case SEN_OV7620:
4595 case SEN_OV7620AE: {
4596 static const u8 ctab[] = {
4597 0x01, 0x05, 0x09, 0x11, 0x15, 0x35, 0x37, 0x57,
4598 0x5b, 0xa5, 0xa7, 0xc7, 0xc9, 0xcf, 0xef, 0xff
4599 };
4600
4601
4602 i2c_w(sd, 0x64, ctab[val >> 4]);
4603 break;
4604 }
4605 case SEN_OV7660:
4606 write_i2c_regvals(sd, contrast_7660[val],
4607 ARRAY_SIZE(contrast_7660[0]));
4608 break;
4609 case SEN_OV7670:
4610
4611 i2c_w(sd, OV7670_R56_CONTRAS, val >> 1);
4612 break;
4613 }
4614}
4615
4616static void setexposure(struct gspca_dev *gspca_dev, s32 val)
4617{
4618 struct sd *sd = (struct sd *) gspca_dev;
4619
4620 i2c_w(sd, 0x10, val);
4621}
4622
4623static void setcolors(struct gspca_dev *gspca_dev, s32 val)
4624{
4625 struct sd *sd = (struct sd *) gspca_dev;
4626 static const struct ov_i2c_regvals colors_7660[][6] = {
4627 {{0x4f, 0x28}, {0x50, 0x2a}, {0x51, 0x02}, {0x52, 0x0a},
4628 {0x53, 0x19}, {0x54, 0x23}},
4629 {{0x4f, 0x47}, {0x50, 0x4a}, {0x51, 0x03}, {0x52, 0x11},
4630 {0x53, 0x2c}, {0x54, 0x3e}},
4631 {{0x4f, 0x66}, {0x50, 0x6b}, {0x51, 0x05}, {0x52, 0x19},
4632 {0x53, 0x40}, {0x54, 0x59}},
4633 {{0x4f, 0x84}, {0x50, 0x8b}, {0x51, 0x06}, {0x52, 0x20},
4634 {0x53, 0x53}, {0x54, 0x73}},
4635 {{0x4f, 0xa3}, {0x50, 0xab}, {0x51, 0x08}, {0x52, 0x28},
4636 {0x53, 0x66}, {0x54, 0x8e}},
4637 };
4638
4639 switch (sd->sensor) {
4640 case SEN_OV8610:
4641 case SEN_OV7610:
4642 case SEN_OV76BE:
4643 case SEN_OV6620:
4644 case SEN_OV6630:
4645 case SEN_OV66308AF:
4646 i2c_w(sd, OV7610_REG_SAT, val);
4647 break;
4648 case SEN_OV7620:
4649 case SEN_OV7620AE:
4650
4651
4652
4653
4654 i2c_w(sd, OV7610_REG_SAT, val);
4655 break;
4656 case SEN_OV7640:
4657 case SEN_OV7648:
4658 i2c_w(sd, OV7610_REG_SAT, val & 0xf0);
4659 break;
4660 case SEN_OV7660:
4661 write_i2c_regvals(sd, colors_7660[val],
4662 ARRAY_SIZE(colors_7660[0]));
4663 break;
4664 case SEN_OV7670:
4665
4666
4667
4668 break;
4669 }
4670}
4671
4672static void setautobright(struct gspca_dev *gspca_dev, s32 val)
4673{
4674 struct sd *sd = (struct sd *) gspca_dev;
4675
4676 i2c_w_mask(sd, 0x2d, val ? 0x10 : 0x00, 0x10);
4677}
4678
4679static void setfreq_i(struct sd *sd, s32 val)
4680{
4681 if (sd->sensor == SEN_OV7660
4682 || sd->sensor == SEN_OV7670) {
4683 switch (val) {
4684 case 0:
4685 i2c_w_mask(sd, OV7670_R13_COM8, 0, OV7670_COM8_BFILT);
4686 break;
4687 case 1:
4688 i2c_w_mask(sd, OV7670_R13_COM8, OV7670_COM8_BFILT,
4689 OV7670_COM8_BFILT);
4690 i2c_w_mask(sd, OV7670_R3B_COM11, 0x08, 0x18);
4691 break;
4692 case 2:
4693 i2c_w_mask(sd, OV7670_R13_COM8, OV7670_COM8_BFILT,
4694 OV7670_COM8_BFILT);
4695 i2c_w_mask(sd, OV7670_R3B_COM11, 0x00, 0x18);
4696 break;
4697 case 3:
4698 i2c_w_mask(sd, OV7670_R13_COM8, OV7670_COM8_BFILT,
4699 OV7670_COM8_BFILT);
4700 i2c_w_mask(sd, OV7670_R3B_COM11, OV7670_COM11_HZAUTO,
4701 0x18);
4702 break;
4703 }
4704 } else {
4705 switch (val) {
4706 case 0:
4707 i2c_w_mask(sd, 0x2d, 0x00, 0x04);
4708 i2c_w_mask(sd, 0x2a, 0x00, 0x80);
4709 break;
4710 case 1:
4711 i2c_w_mask(sd, 0x2d, 0x04, 0x04);
4712 i2c_w_mask(sd, 0x2a, 0x80, 0x80);
4713
4714 if (sd->sensor == SEN_OV6620 ||
4715 sd->sensor == SEN_OV6630 ||
4716 sd->sensor == SEN_OV66308AF)
4717 i2c_w(sd, 0x2b, 0x5e);
4718 else
4719 i2c_w(sd, 0x2b, 0xac);
4720 break;
4721 case 2:
4722 i2c_w_mask(sd, 0x2d, 0x04, 0x04);
4723 if (sd->sensor == SEN_OV6620 ||
4724 sd->sensor == SEN_OV6630 ||
4725 sd->sensor == SEN_OV66308AF) {
4726
4727 i2c_w_mask(sd, 0x2a, 0x80, 0x80);
4728 i2c_w(sd, 0x2b, 0xa8);
4729 } else {
4730
4731 i2c_w_mask(sd, 0x2a, 0x00, 0x80);
4732 }
4733 break;
4734 }
4735 }
4736}
4737
4738static void setfreq(struct gspca_dev *gspca_dev, s32 val)
4739{
4740 struct sd *sd = (struct sd *) gspca_dev;
4741
4742 setfreq_i(sd, val);
4743
4744
4745 if (sd->bridge == BRIDGE_W9968CF)
4746 w9968cf_set_crop_window(sd);
4747}
4748
4749static int sd_get_jcomp(struct gspca_dev *gspca_dev,
4750 struct v4l2_jpegcompression *jcomp)
4751{
4752 struct sd *sd = (struct sd *) gspca_dev;
4753
4754 if (sd->bridge != BRIDGE_W9968CF)
4755 return -ENOTTY;
4756
4757 memset(jcomp, 0, sizeof *jcomp);
4758 jcomp->quality = v4l2_ctrl_g_ctrl(sd->jpegqual);
4759 jcomp->jpeg_markers = V4L2_JPEG_MARKER_DHT | V4L2_JPEG_MARKER_DQT |
4760 V4L2_JPEG_MARKER_DRI;
4761 return 0;
4762}
4763
4764static int sd_set_jcomp(struct gspca_dev *gspca_dev,
4765 const struct v4l2_jpegcompression *jcomp)
4766{
4767 struct sd *sd = (struct sd *) gspca_dev;
4768
4769 if (sd->bridge != BRIDGE_W9968CF)
4770 return -ENOTTY;
4771
4772 v4l2_ctrl_s_ctrl(sd->jpegqual, jcomp->quality);
4773 return 0;
4774}
4775
4776static int sd_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
4777{
4778 struct gspca_dev *gspca_dev =
4779 container_of(ctrl->handler, struct gspca_dev, ctrl_handler);
4780 struct sd *sd = (struct sd *)gspca_dev;
4781
4782 gspca_dev->usb_err = 0;
4783
4784 switch (ctrl->id) {
4785 case V4L2_CID_AUTOGAIN:
4786 gspca_dev->exposure->val = i2c_r(sd, 0x10);
4787 break;
4788 }
4789 return 0;
4790}
4791
4792static int sd_s_ctrl(struct v4l2_ctrl *ctrl)
4793{
4794 struct gspca_dev *gspca_dev =
4795 container_of(ctrl->handler, struct gspca_dev, ctrl_handler);
4796 struct sd *sd = (struct sd *)gspca_dev;
4797
4798 gspca_dev->usb_err = 0;
4799
4800 if (!gspca_dev->streaming)
4801 return 0;
4802
4803 switch (ctrl->id) {
4804 case V4L2_CID_BRIGHTNESS:
4805 setbrightness(gspca_dev, ctrl->val);
4806 break;
4807 case V4L2_CID_CONTRAST:
4808 setcontrast(gspca_dev, ctrl->val);
4809 break;
4810 case V4L2_CID_POWER_LINE_FREQUENCY:
4811 setfreq(gspca_dev, ctrl->val);
4812 break;
4813 case V4L2_CID_AUTOBRIGHTNESS:
4814 if (ctrl->is_new)
4815 setautobright(gspca_dev, ctrl->val);
4816 if (!ctrl->val && sd->brightness->is_new)
4817 setbrightness(gspca_dev, sd->brightness->val);
4818 break;
4819 case V4L2_CID_SATURATION:
4820 setcolors(gspca_dev, ctrl->val);
4821 break;
4822 case V4L2_CID_HFLIP:
4823 sethvflip(gspca_dev, ctrl->val, sd->vflip->val);
4824 break;
4825 case V4L2_CID_AUTOGAIN:
4826 if (ctrl->is_new)
4827 setautogain(gspca_dev, ctrl->val);
4828 if (!ctrl->val && gspca_dev->exposure->is_new)
4829 setexposure(gspca_dev, gspca_dev->exposure->val);
4830 break;
4831 case V4L2_CID_JPEG_COMPRESSION_QUALITY:
4832 return -EBUSY;
4833 }
4834 return gspca_dev->usb_err;
4835}
4836
4837static const struct v4l2_ctrl_ops sd_ctrl_ops = {
4838 .g_volatile_ctrl = sd_g_volatile_ctrl,
4839 .s_ctrl = sd_s_ctrl,
4840};
4841
4842static int sd_init_controls(struct gspca_dev *gspca_dev)
4843{
4844 struct sd *sd = (struct sd *)gspca_dev;
4845 struct v4l2_ctrl_handler *hdl = &gspca_dev->ctrl_handler;
4846
4847 gspca_dev->vdev.ctrl_handler = hdl;
4848 v4l2_ctrl_handler_init(hdl, 10);
4849 if (valid_controls[sd->sensor].has_brightness)
4850 sd->brightness = v4l2_ctrl_new_std(hdl, &sd_ctrl_ops,
4851 V4L2_CID_BRIGHTNESS, 0,
4852 sd->sensor == SEN_OV7660 ? 6 : 255, 1,
4853 sd->sensor == SEN_OV7660 ? 3 : 127);
4854 if (valid_controls[sd->sensor].has_contrast) {
4855 if (sd->sensor == SEN_OV7660)
4856 v4l2_ctrl_new_std(hdl, &sd_ctrl_ops,
4857 V4L2_CID_CONTRAST, 0, 6, 1, 3);
4858 else
4859 v4l2_ctrl_new_std(hdl, &sd_ctrl_ops,
4860 V4L2_CID_CONTRAST, 0, 255, 1,
4861 (sd->sensor == SEN_OV6630 ||
4862 sd->sensor == SEN_OV66308AF) ? 200 : 127);
4863 }
4864 if (valid_controls[sd->sensor].has_sat)
4865 v4l2_ctrl_new_std(hdl, &sd_ctrl_ops,
4866 V4L2_CID_SATURATION, 0,
4867 sd->sensor == SEN_OV7660 ? 4 : 255, 1,
4868 sd->sensor == SEN_OV7660 ? 2 : 127);
4869 if (valid_controls[sd->sensor].has_exposure)
4870 gspca_dev->exposure = v4l2_ctrl_new_std(hdl, &sd_ctrl_ops,
4871 V4L2_CID_EXPOSURE, 0, 255, 1, 127);
4872 if (valid_controls[sd->sensor].has_hvflip) {
4873 sd->hflip = v4l2_ctrl_new_std(hdl, &sd_ctrl_ops,
4874 V4L2_CID_HFLIP, 0, 1, 1, 0);
4875 sd->vflip = v4l2_ctrl_new_std(hdl, &sd_ctrl_ops,
4876 V4L2_CID_VFLIP, 0, 1, 1, 0);
4877 }
4878 if (valid_controls[sd->sensor].has_autobright)
4879 sd->autobright = v4l2_ctrl_new_std(hdl, &sd_ctrl_ops,
4880 V4L2_CID_AUTOBRIGHTNESS, 0, 1, 1, 1);
4881 if (valid_controls[sd->sensor].has_autogain)
4882 gspca_dev->autogain = v4l2_ctrl_new_std(hdl, &sd_ctrl_ops,
4883 V4L2_CID_AUTOGAIN, 0, 1, 1, 1);
4884 if (valid_controls[sd->sensor].has_freq) {
4885 if (sd->sensor == SEN_OV7670)
4886 sd->freq = v4l2_ctrl_new_std_menu(hdl, &sd_ctrl_ops,
4887 V4L2_CID_POWER_LINE_FREQUENCY,
4888 V4L2_CID_POWER_LINE_FREQUENCY_AUTO, 0,
4889 V4L2_CID_POWER_LINE_FREQUENCY_AUTO);
4890 else
4891 sd->freq = v4l2_ctrl_new_std_menu(hdl, &sd_ctrl_ops,
4892 V4L2_CID_POWER_LINE_FREQUENCY,
4893 V4L2_CID_POWER_LINE_FREQUENCY_60HZ, 0, 0);
4894 }
4895 if (sd->bridge == BRIDGE_W9968CF)
4896 sd->jpegqual = v4l2_ctrl_new_std(hdl, &sd_ctrl_ops,
4897 V4L2_CID_JPEG_COMPRESSION_QUALITY,
4898 QUALITY_MIN, QUALITY_MAX, 1, QUALITY_DEF);
4899
4900 if (hdl->error) {
4901 pr_err("Could not initialize controls\n");
4902 return hdl->error;
4903 }
4904 if (gspca_dev->autogain)
4905 v4l2_ctrl_auto_cluster(3, &gspca_dev->autogain, 0, true);
4906 if (sd->autobright)
4907 v4l2_ctrl_auto_cluster(2, &sd->autobright, 0, false);
4908 if (sd->hflip)
4909 v4l2_ctrl_cluster(2, &sd->hflip);
4910 return 0;
4911}
4912
4913
4914static const struct sd_desc sd_desc = {
4915 .name = MODULE_NAME,
4916 .config = sd_config,
4917 .init = sd_init,
4918 .init_controls = sd_init_controls,
4919 .isoc_init = sd_isoc_init,
4920 .start = sd_start,
4921 .stopN = sd_stopN,
4922 .stop0 = sd_stop0,
4923 .pkt_scan = sd_pkt_scan,
4924 .dq_callback = sd_reset_snapshot,
4925 .get_jcomp = sd_get_jcomp,
4926 .set_jcomp = sd_set_jcomp,
4927#if IS_ENABLED(CONFIG_INPUT)
4928 .other_input = 1,
4929#endif
4930};
4931
4932
4933static const struct usb_device_id device_table[] = {
4934 {USB_DEVICE(0x041e, 0x4003), .driver_info = BRIDGE_W9968CF },
4935 {USB_DEVICE(0x041e, 0x4052),
4936 .driver_info = BRIDGE_OV519 | BRIDGE_INVERT_LED },
4937 {USB_DEVICE(0x041e, 0x405f), .driver_info = BRIDGE_OV519 },
4938 {USB_DEVICE(0x041e, 0x4060), .driver_info = BRIDGE_OV519 },
4939 {USB_DEVICE(0x041e, 0x4061), .driver_info = BRIDGE_OV519 },
4940 {USB_DEVICE(0x041e, 0x4064), .driver_info = BRIDGE_OV519 },
4941 {USB_DEVICE(0x041e, 0x4067), .driver_info = BRIDGE_OV519 },
4942 {USB_DEVICE(0x041e, 0x4068), .driver_info = BRIDGE_OV519 },
4943 {USB_DEVICE(0x045e, 0x028c),
4944 .driver_info = BRIDGE_OV519 | BRIDGE_INVERT_LED },
4945 {USB_DEVICE(0x054c, 0x0154), .driver_info = BRIDGE_OV519 },
4946 {USB_DEVICE(0x054c, 0x0155), .driver_info = BRIDGE_OV519 },
4947 {USB_DEVICE(0x05a9, 0x0511), .driver_info = BRIDGE_OV511 },
4948 {USB_DEVICE(0x05a9, 0x0518), .driver_info = BRIDGE_OV518 },
4949 {USB_DEVICE(0x05a9, 0x0519),
4950 .driver_info = BRIDGE_OV519 | BRIDGE_INVERT_LED },
4951 {USB_DEVICE(0x05a9, 0x0530),
4952 .driver_info = BRIDGE_OV519 | BRIDGE_INVERT_LED },
4953 {USB_DEVICE(0x05a9, 0x2800), .driver_info = BRIDGE_OVFX2 },
4954 {USB_DEVICE(0x05a9, 0x4519), .driver_info = BRIDGE_OV519 },
4955 {USB_DEVICE(0x05a9, 0x8519), .driver_info = BRIDGE_OV519 },
4956 {USB_DEVICE(0x05a9, 0xa511), .driver_info = BRIDGE_OV511PLUS },
4957 {USB_DEVICE(0x05a9, 0xa518), .driver_info = BRIDGE_OV518PLUS },
4958 {USB_DEVICE(0x0813, 0x0002), .driver_info = BRIDGE_OV511PLUS },
4959 {USB_DEVICE(0x0b62, 0x0059), .driver_info = BRIDGE_OVFX2 },
4960 {USB_DEVICE(0x0e96, 0xc001), .driver_info = BRIDGE_OVFX2 },
4961 {USB_DEVICE(0x1046, 0x9967), .driver_info = BRIDGE_W9968CF },
4962 {USB_DEVICE(0x8020, 0xef04), .driver_info = BRIDGE_OVFX2 },
4963 {}
4964};
4965
4966MODULE_DEVICE_TABLE(usb, device_table);
4967
4968
4969static int sd_probe(struct usb_interface *intf,
4970 const struct usb_device_id *id)
4971{
4972 return gspca_dev_probe(intf, id, &sd_desc, sizeof(struct sd),
4973 THIS_MODULE);
4974}
4975
4976static struct usb_driver sd_driver = {
4977 .name = MODULE_NAME,
4978 .id_table = device_table,
4979 .probe = sd_probe,
4980 .disconnect = gspca_disconnect,
4981#ifdef CONFIG_PM
4982 .suspend = gspca_suspend,
4983 .resume = gspca_resume,
4984 .reset_resume = gspca_resume,
4985#endif
4986};
4987
4988module_usb_driver(sd_driver);
4989
4990module_param(frame_rate, int, 0644);
4991MODULE_PARM_DESC(frame_rate, "Frame rate (5, 10, 15, 20 or 30 fps)");
4992