blob: cda7ee2c8bb4bb43b1ae6fe7b5a93fb8c8f4f7eb [file] [log] [blame]
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001/**
2 * OV519 driver
3 *
4 * Copyright (C) 2008 Jean-Francois Moine (http://moinejf.free.fr)
Hans de Goedeb46aaa02009-10-12 10:07:57 -03005 * Copyright (C) 2009 Hans de Goede <hdegoede@redhat.com>
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03006 *
Romain Beauxis2961e872008-12-05 06:25:26 -03007 * This module is adapted from the ov51x-jpeg package, which itself
8 * was adapted from the ov511 driver.
9 *
10 * Original copyright for the ov511 driver is:
11 *
Hans de Goedeb46aaa02009-10-12 10:07:57 -030012 * Copyright (c) 1999-2006 Mark W. McClelland
Romain Beauxis2961e872008-12-05 06:25:26 -030013 * Support for OV519, OV8610 Copyright (c) 2003 Joerg Heckenbach
Hans de Goedeb46aaa02009-10-12 10:07:57 -030014 * Many improvements by Bret Wallach <bwallac1@san.rr.com>
15 * Color fixes by by Orion Sky Lawlor <olawlor@acm.org> (2/26/2000)
16 * OV7620 fixes by Charl P. Botha <cpbotha@ieee.org>
17 * Changes by Claudio Matsuoka <claudio@conectiva.com>
Romain Beauxis2961e872008-12-05 06:25:26 -030018 *
19 * ov51x-jpeg original copyright is:
20 *
21 * Copyright (c) 2004-2007 Romain Beauxis <toots@rastageeks.org>
22 * Support for OV7670 sensors was contributed by Sam Skipsey <aoanla@yahoo.com>
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030023 *
24 * This program is free software; you can redistribute it and/or modify
25 * it under the terms of the GNU General Public License as published by
26 * the Free Software Foundation; either version 2 of the License, or
27 * any later version.
28 *
29 * This program is distributed in the hope that it will be useful,
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of
31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32 * GNU General Public License for more details.
33 *
34 * You should have received a copy of the GNU General Public License
35 * along with this program; if not, write to the Free Software
36 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
37 *
38 */
39#define MODULE_NAME "ov519"
40
Hans de Goede417a4d22010-02-19 07:37:08 -030041#include <linux/input.h>
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030042#include "gspca.h"
43
Jean-François Moine9a731a32010-06-04 05:26:42 -030044/* The jpeg_hdr is used by w996Xcf only */
45/* The CONEX_CAM define for jpeg.h needs renaming, now its used here too */
46#define CONEX_CAM
47#include "jpeg.h"
48
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030049MODULE_AUTHOR("Jean-Francois Moine <http://moinejf.free.fr>");
50MODULE_DESCRIPTION("OV519 USB Camera Driver");
51MODULE_LICENSE("GPL");
52
53/* global parameters */
54static int frame_rate;
55
56/* Number of times to retry a failed I2C transaction. Increase this if you
57 * are getting "Failed to read sensor ID..." */
58static int i2c_detect_tries = 10;
59
Jean-François Moine62833ac2010-10-02 04:27:02 -030060/* controls */
61enum e_ctrl {
62 BRIGHTNESS,
63 CONTRAST,
64 COLORS,
65 HFLIP,
66 VFLIP,
67 AUTOBRIGHT,
68 FREQ,
69 NCTRL /* number of controls */
70};
71
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030072/* ov519 device descriptor */
73struct sd {
74 struct gspca_dev gspca_dev; /* !! must be the first item */
75
Jean-François Moine62833ac2010-10-02 04:27:02 -030076 struct gspca_ctrl ctrls[NCTRL];
77
Jean-François Moine9d1593a2010-11-11 08:04:06 -030078 u8 packet_nr;
Hans de Goede92918a52009-06-14 06:21:35 -030079
Hans de Goede49809d62009-06-07 12:10:39 -030080 char bridge;
81#define BRIDGE_OV511 0
82#define BRIDGE_OV511PLUS 1
83#define BRIDGE_OV518 2
84#define BRIDGE_OV518PLUS 3
Jean-François Moine42e142f2010-11-13 05:10:27 -030085#define BRIDGE_OV519 4 /* = ov530 */
Hans de Goede635118d2009-10-11 09:49:03 -030086#define BRIDGE_OVFX2 5
Hans de Goedea511ba92009-10-16 07:13:07 -030087#define BRIDGE_W9968CF 6
Hans de Goede9e4d8252009-06-14 06:25:06 -030088#define BRIDGE_MASK 7
89
90 char invert_led;
91#define BRIDGE_INVERT_LED 8
Hans de Goede49809d62009-06-07 12:10:39 -030092
Hans de Goede417a4d22010-02-19 07:37:08 -030093 char snapshot_pressed;
94 char snapshot_needs_reset;
95
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030096 /* Determined by sensor type */
Jean-François Moine9d1593a2010-11-11 08:04:06 -030097 u8 sif;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030098
Jean-François Moine9d1593a2010-11-11 08:04:06 -030099 u8 quality;
Hans de Goede79b35902009-10-19 06:08:01 -0300100#define QUALITY_MIN 50
101#define QUALITY_MAX 70
102#define QUALITY_DEF 50
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300103
Jean-François Moine9d1593a2010-11-11 08:04:06 -0300104 u8 stopped; /* Streaming is temporarily paused */
105 u8 first_frame;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300106
Jean-François Moine9d1593a2010-11-11 08:04:06 -0300107 u8 frame_rate; /* current Framerate */
108 u8 clockdiv; /* clockdiv override */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300109
Jean-François Moine7bbe6b82010-11-11 08:27:24 -0300110 s8 sensor; /* Type of image sensor chip (SEN_*) */
Hans de Goedea511ba92009-10-16 07:13:07 -0300111
112 u8 sensor_addr;
Jean-François Moined6fa6632010-11-11 08:05:50 -0300113 u16 sensor_width;
114 u16 sensor_height;
115 s16 sensor_reg_cache[256];
Hans de Goede79b35902009-10-19 06:08:01 -0300116
Jean-François Moine9a731a32010-06-04 05:26:42 -0300117 u8 jpeg_hdr[JPEG_HDR_SZ];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300118};
Jean-François Moine7bbe6b82010-11-11 08:27:24 -0300119enum sensors {
120 SEN_OV2610,
Jean-François Moine07c6c9c2011-02-10 13:32:22 -0300121 SEN_OV2610AE,
Jean-François Moine7bbe6b82010-11-11 08:27:24 -0300122 SEN_OV3610,
123 SEN_OV6620,
124 SEN_OV6630,
125 SEN_OV66308AF,
126 SEN_OV7610,
127 SEN_OV7620,
128 SEN_OV7620AE,
129 SEN_OV7640,
130 SEN_OV7648,
Jean-François Moine42e142f2010-11-13 05:10:27 -0300131 SEN_OV7660,
Jean-François Moine7bbe6b82010-11-11 08:27:24 -0300132 SEN_OV7670,
133 SEN_OV76BE,
134 SEN_OV8610,
135};
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300136
Hans de Goedea511ba92009-10-16 07:13:07 -0300137/* Note this is a bit of a hack, but the w9968cf driver needs the code for all
138 the ov sensors which is already present here. When we have the time we
139 really should move the sensor drivers to v4l2 sub drivers. */
140#include "w996Xcf.c"
141
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300142/* V4L2 controls supported by the driver */
Hans de Goede49809d62009-06-07 12:10:39 -0300143static void setbrightness(struct gspca_dev *gspca_dev);
144static void setcontrast(struct gspca_dev *gspca_dev);
145static void setcolors(struct gspca_dev *gspca_dev);
Jean-François Moine62833ac2010-10-02 04:27:02 -0300146static void sethvflip(struct gspca_dev *gspca_dev);
147static void setautobright(struct gspca_dev *gspca_dev);
148static void setfreq(struct gspca_dev *gspca_dev);
149static void setfreq_i(struct sd *sd);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300150
Hans de Goede02ab18b2009-06-14 04:32:04 -0300151static const struct ctrl sd_ctrls[] = {
Jean-François Moine62833ac2010-10-02 04:27:02 -0300152[BRIGHTNESS] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300153 {
154 .id = V4L2_CID_BRIGHTNESS,
155 .type = V4L2_CTRL_TYPE_INTEGER,
156 .name = "Brightness",
157 .minimum = 0,
158 .maximum = 255,
159 .step = 1,
Jean-François Moine62833ac2010-10-02 04:27:02 -0300160 .default_value = 127,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300161 },
Jean-François Moine62833ac2010-10-02 04:27:02 -0300162 .set_control = setbrightness,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300163 },
Jean-François Moine62833ac2010-10-02 04:27:02 -0300164[CONTRAST] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300165 {
166 .id = V4L2_CID_CONTRAST,
167 .type = V4L2_CTRL_TYPE_INTEGER,
168 .name = "Contrast",
169 .minimum = 0,
170 .maximum = 255,
171 .step = 1,
Jean-François Moine62833ac2010-10-02 04:27:02 -0300172 .default_value = 127,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300173 },
Jean-François Moine62833ac2010-10-02 04:27:02 -0300174 .set_control = setcontrast,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300175 },
Jean-François Moine62833ac2010-10-02 04:27:02 -0300176[COLORS] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300177 {
178 .id = V4L2_CID_SATURATION,
179 .type = V4L2_CTRL_TYPE_INTEGER,
Jean-Francois Moine594f5b82008-08-01 06:37:51 -0300180 .name = "Color",
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300181 .minimum = 0,
182 .maximum = 255,
183 .step = 1,
Jean-François Moine62833ac2010-10-02 04:27:02 -0300184 .default_value = 127,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300185 },
Jean-François Moine62833ac2010-10-02 04:27:02 -0300186 .set_control = setcolors,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300187 },
Jean-François Moine42e142f2010-11-13 05:10:27 -0300188/* The flip controls work for sensors ov7660 and ov7670 only */
Jean-François Moine62833ac2010-10-02 04:27:02 -0300189[HFLIP] = {
Jean-Francois Moine0cd67592008-07-29 05:25:28 -0300190 {
191 .id = V4L2_CID_HFLIP,
192 .type = V4L2_CTRL_TYPE_BOOLEAN,
193 .name = "Mirror",
194 .minimum = 0,
195 .maximum = 1,
196 .step = 1,
Jean-François Moine62833ac2010-10-02 04:27:02 -0300197 .default_value = 0,
Jean-Francois Moine0cd67592008-07-29 05:25:28 -0300198 },
Jean-François Moine62833ac2010-10-02 04:27:02 -0300199 .set_control = sethvflip,
Jean-Francois Moine0cd67592008-07-29 05:25:28 -0300200 },
Jean-François Moine62833ac2010-10-02 04:27:02 -0300201[VFLIP] = {
Jean-Francois Moine0cd67592008-07-29 05:25:28 -0300202 {
203 .id = V4L2_CID_VFLIP,
204 .type = V4L2_CTRL_TYPE_BOOLEAN,
205 .name = "Vflip",
206 .minimum = 0,
207 .maximum = 1,
208 .step = 1,
Jean-François Moine62833ac2010-10-02 04:27:02 -0300209 .default_value = 0,
Jean-Francois Moine0cd67592008-07-29 05:25:28 -0300210 },
Jean-François Moine62833ac2010-10-02 04:27:02 -0300211 .set_control = sethvflip,
Jean-Francois Moine0cd67592008-07-29 05:25:28 -0300212 },
Jean-François Moine62833ac2010-10-02 04:27:02 -0300213[AUTOBRIGHT] = {
Hans de Goede02ab18b2009-06-14 04:32:04 -0300214 {
215 .id = V4L2_CID_AUTOBRIGHTNESS,
216 .type = V4L2_CTRL_TYPE_BOOLEAN,
217 .name = "Auto Brightness",
218 .minimum = 0,
219 .maximum = 1,
220 .step = 1,
Jean-François Moine62833ac2010-10-02 04:27:02 -0300221 .default_value = 1,
Hans de Goede02ab18b2009-06-14 04:32:04 -0300222 },
Jean-François Moine62833ac2010-10-02 04:27:02 -0300223 .set_control = setautobright,
Hans de Goede02ab18b2009-06-14 04:32:04 -0300224 },
Jean-François Moine62833ac2010-10-02 04:27:02 -0300225[FREQ] = {
Hans de Goede02ab18b2009-06-14 04:32:04 -0300226 {
227 .id = V4L2_CID_POWER_LINE_FREQUENCY,
228 .type = V4L2_CTRL_TYPE_MENU,
229 .name = "Light frequency filter",
230 .minimum = 0,
Jean-François Moine87bae742010-11-12 05:31:34 -0300231 .maximum = 2, /* 0: no flicker, 1: 50Hz, 2:60Hz, 3: auto */
Hans de Goede02ab18b2009-06-14 04:32:04 -0300232 .step = 1,
Jean-François Moine62833ac2010-10-02 04:27:02 -0300233 .default_value = 0,
Hans de Goede02ab18b2009-06-14 04:32:04 -0300234 },
Jean-François Moine62833ac2010-10-02 04:27:02 -0300235 .set_control = setfreq,
Hans de Goede02ab18b2009-06-14 04:32:04 -0300236 },
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300237};
238
Jean-François Moine83db7682010-11-12 07:14:08 -0300239/* table of the disabled controls */
240static const unsigned ctrl_dis[] = {
241[SEN_OV2610] = (1 << NCTRL) - 1, /* no control */
242
Jean-François Moine07c6c9c2011-02-10 13:32:22 -0300243[SEN_OV2610AE] = (1 << NCTRL) - 1, /* no control */
244
Jean-François Moine83db7682010-11-12 07:14:08 -0300245[SEN_OV3610] = (1 << NCTRL) - 1, /* no control */
246
247[SEN_OV6620] = (1 << HFLIP) |
248 (1 << VFLIP),
249
250[SEN_OV6630] = (1 << HFLIP) |
251 (1 << VFLIP),
252
253[SEN_OV66308AF] = (1 << HFLIP) |
254 (1 << VFLIP),
255
256[SEN_OV7610] = (1 << HFLIP) |
257 (1 << VFLIP),
258
259[SEN_OV7620] = (1 << HFLIP) |
260 (1 << VFLIP),
261
262[SEN_OV7620AE] = (1 << HFLIP) |
263 (1 << VFLIP),
264
265[SEN_OV7640] = (1 << HFLIP) |
266 (1 << VFLIP) |
267 (1 << AUTOBRIGHT) |
268 (1 << CONTRAST),
269
270[SEN_OV7648] = (1 << HFLIP) |
271 (1 << VFLIP) |
272 (1 << AUTOBRIGHT) |
273 (1 << CONTRAST),
274
Jean-François Moine42e142f2010-11-13 05:10:27 -0300275[SEN_OV7660] = (1 << AUTOBRIGHT),
276
Jean-François Moine83db7682010-11-12 07:14:08 -0300277[SEN_OV7670] = (1 << COLORS) |
278 (1 << AUTOBRIGHT),
279
280[SEN_OV76BE] = (1 << HFLIP) |
281 (1 << VFLIP),
282
283[SEN_OV8610] = (1 << HFLIP) |
284 (1 << VFLIP) |
285 (1 << FREQ),
286};
287
Hans de Goede49809d62009-06-07 12:10:39 -0300288static const struct v4l2_pix_format ov519_vga_mode[] = {
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300289 {320, 240, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
290 .bytesperline = 320,
Jean-Francois Moine594f5b82008-08-01 06:37:51 -0300291 .sizeimage = 320 * 240 * 3 / 8 + 590,
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300292 .colorspace = V4L2_COLORSPACE_JPEG,
293 .priv = 1},
294 {640, 480, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
295 .bytesperline = 640,
296 .sizeimage = 640 * 480 * 3 / 8 + 590,
297 .colorspace = V4L2_COLORSPACE_JPEG,
298 .priv = 0},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300299};
Hans de Goede49809d62009-06-07 12:10:39 -0300300static const struct v4l2_pix_format ov519_sif_mode[] = {
Hans de Goede124cc9c2009-06-14 05:48:00 -0300301 {160, 120, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
302 .bytesperline = 160,
303 .sizeimage = 160 * 120 * 3 / 8 + 590,
304 .colorspace = V4L2_COLORSPACE_JPEG,
305 .priv = 3},
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300306 {176, 144, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
307 .bytesperline = 176,
Jean-Francois Moine594f5b82008-08-01 06:37:51 -0300308 .sizeimage = 176 * 144 * 3 / 8 + 590,
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300309 .colorspace = V4L2_COLORSPACE_JPEG,
310 .priv = 1},
Hans de Goede124cc9c2009-06-14 05:48:00 -0300311 {320, 240, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
312 .bytesperline = 320,
313 .sizeimage = 320 * 240 * 3 / 8 + 590,
314 .colorspace = V4L2_COLORSPACE_JPEG,
315 .priv = 2},
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300316 {352, 288, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
317 .bytesperline = 352,
Jean-Francois Moine594f5b82008-08-01 06:37:51 -0300318 .sizeimage = 352 * 288 * 3 / 8 + 590,
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300319 .colorspace = V4L2_COLORSPACE_JPEG,
320 .priv = 0},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300321};
322
Hans de Goedeb282d872009-06-14 19:10:40 -0300323/* Note some of the sizeimage values for the ov511 / ov518 may seem
324 larger then necessary, however they need to be this big as the ov511 /
325 ov518 always fills the entire isoc frame, using 0 padding bytes when
326 it doesn't have any data. So with low framerates the amount of data
327 transfered can become quite large (libv4l will remove all the 0 padding
328 in userspace). */
Hans de Goede49809d62009-06-07 12:10:39 -0300329static const struct v4l2_pix_format ov518_vga_mode[] = {
330 {320, 240, V4L2_PIX_FMT_OV518, V4L2_FIELD_NONE,
331 .bytesperline = 320,
Hans de Goedeb282d872009-06-14 19:10:40 -0300332 .sizeimage = 320 * 240 * 3,
Hans de Goede49809d62009-06-07 12:10:39 -0300333 .colorspace = V4L2_COLORSPACE_JPEG,
334 .priv = 1},
335 {640, 480, V4L2_PIX_FMT_OV518, V4L2_FIELD_NONE,
336 .bytesperline = 640,
Hans de Goedeb282d872009-06-14 19:10:40 -0300337 .sizeimage = 640 * 480 * 2,
Hans de Goede49809d62009-06-07 12:10:39 -0300338 .colorspace = V4L2_COLORSPACE_JPEG,
339 .priv = 0},
340};
341static const struct v4l2_pix_format ov518_sif_mode[] = {
Hans de Goede124cc9c2009-06-14 05:48:00 -0300342 {160, 120, V4L2_PIX_FMT_OV518, V4L2_FIELD_NONE,
343 .bytesperline = 160,
Hans de Goedeb282d872009-06-14 19:10:40 -0300344 .sizeimage = 70000,
Hans de Goede124cc9c2009-06-14 05:48:00 -0300345 .colorspace = V4L2_COLORSPACE_JPEG,
346 .priv = 3},
Hans de Goede49809d62009-06-07 12:10:39 -0300347 {176, 144, V4L2_PIX_FMT_OV518, V4L2_FIELD_NONE,
348 .bytesperline = 176,
Hans de Goedeb282d872009-06-14 19:10:40 -0300349 .sizeimage = 70000,
Hans de Goede49809d62009-06-07 12:10:39 -0300350 .colorspace = V4L2_COLORSPACE_JPEG,
351 .priv = 1},
Hans de Goede124cc9c2009-06-14 05:48:00 -0300352 {320, 240, V4L2_PIX_FMT_OV518, V4L2_FIELD_NONE,
353 .bytesperline = 320,
Hans de Goedeb282d872009-06-14 19:10:40 -0300354 .sizeimage = 320 * 240 * 3,
Hans de Goede124cc9c2009-06-14 05:48:00 -0300355 .colorspace = V4L2_COLORSPACE_JPEG,
356 .priv = 2},
Hans de Goede49809d62009-06-07 12:10:39 -0300357 {352, 288, V4L2_PIX_FMT_OV518, V4L2_FIELD_NONE,
358 .bytesperline = 352,
Hans de Goedeb282d872009-06-14 19:10:40 -0300359 .sizeimage = 352 * 288 * 3,
Hans de Goede49809d62009-06-07 12:10:39 -0300360 .colorspace = V4L2_COLORSPACE_JPEG,
361 .priv = 0},
362};
363
Hans de Goede1876bb92009-06-14 06:45:50 -0300364static const struct v4l2_pix_format ov511_vga_mode[] = {
365 {320, 240, V4L2_PIX_FMT_OV511, V4L2_FIELD_NONE,
366 .bytesperline = 320,
367 .sizeimage = 320 * 240 * 3,
368 .colorspace = V4L2_COLORSPACE_JPEG,
369 .priv = 1},
370 {640, 480, V4L2_PIX_FMT_OV511, V4L2_FIELD_NONE,
371 .bytesperline = 640,
372 .sizeimage = 640 * 480 * 2,
373 .colorspace = V4L2_COLORSPACE_JPEG,
374 .priv = 0},
375};
376static const struct v4l2_pix_format ov511_sif_mode[] = {
377 {160, 120, V4L2_PIX_FMT_OV511, V4L2_FIELD_NONE,
378 .bytesperline = 160,
Hans de Goedeb282d872009-06-14 19:10:40 -0300379 .sizeimage = 70000,
Hans de Goede1876bb92009-06-14 06:45:50 -0300380 .colorspace = V4L2_COLORSPACE_JPEG,
381 .priv = 3},
382 {176, 144, V4L2_PIX_FMT_OV511, V4L2_FIELD_NONE,
383 .bytesperline = 176,
Hans de Goedeb282d872009-06-14 19:10:40 -0300384 .sizeimage = 70000,
Hans de Goede1876bb92009-06-14 06:45:50 -0300385 .colorspace = V4L2_COLORSPACE_JPEG,
386 .priv = 1},
387 {320, 240, V4L2_PIX_FMT_OV511, V4L2_FIELD_NONE,
388 .bytesperline = 320,
389 .sizeimage = 320 * 240 * 3,
390 .colorspace = V4L2_COLORSPACE_JPEG,
391 .priv = 2},
392 {352, 288, V4L2_PIX_FMT_OV511, V4L2_FIELD_NONE,
393 .bytesperline = 352,
394 .sizeimage = 352 * 288 * 3,
395 .colorspace = V4L2_COLORSPACE_JPEG,
396 .priv = 0},
397};
Hans de Goede49809d62009-06-07 12:10:39 -0300398
Hans de Goede635118d2009-10-11 09:49:03 -0300399static const struct v4l2_pix_format ovfx2_vga_mode[] = {
400 {320, 240, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
401 .bytesperline = 320,
402 .sizeimage = 320 * 240,
403 .colorspace = V4L2_COLORSPACE_SRGB,
404 .priv = 1},
405 {640, 480, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
406 .bytesperline = 640,
407 .sizeimage = 640 * 480,
408 .colorspace = V4L2_COLORSPACE_SRGB,
409 .priv = 0},
410};
411static const struct v4l2_pix_format ovfx2_cif_mode[] = {
412 {160, 120, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
413 .bytesperline = 160,
414 .sizeimage = 160 * 120,
415 .colorspace = V4L2_COLORSPACE_SRGB,
416 .priv = 3},
417 {176, 144, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
418 .bytesperline = 176,
419 .sizeimage = 176 * 144,
420 .colorspace = V4L2_COLORSPACE_SRGB,
421 .priv = 1},
422 {320, 240, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
423 .bytesperline = 320,
424 .sizeimage = 320 * 240,
425 .colorspace = V4L2_COLORSPACE_SRGB,
426 .priv = 2},
427 {352, 288, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
428 .bytesperline = 352,
429 .sizeimage = 352 * 288,
430 .colorspace = V4L2_COLORSPACE_SRGB,
431 .priv = 0},
432};
433static const struct v4l2_pix_format ovfx2_ov2610_mode[] = {
434 {1600, 1200, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
435 .bytesperline = 1600,
436 .sizeimage = 1600 * 1200,
437 .colorspace = V4L2_COLORSPACE_SRGB},
438};
439static const struct v4l2_pix_format ovfx2_ov3610_mode[] = {
Hans de Goede635118d2009-10-11 09:49:03 -0300440 {640, 480, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
441 .bytesperline = 640,
442 .sizeimage = 640 * 480,
Hans de Goedeb46aaa02009-10-12 10:07:57 -0300443 .colorspace = V4L2_COLORSPACE_SRGB,
444 .priv = 1},
445 {800, 600, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
446 .bytesperline = 800,
447 .sizeimage = 800 * 600,
448 .colorspace = V4L2_COLORSPACE_SRGB,
449 .priv = 1},
450 {1024, 768, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
451 .bytesperline = 1024,
452 .sizeimage = 1024 * 768,
453 .colorspace = V4L2_COLORSPACE_SRGB,
454 .priv = 1},
455 {1600, 1200, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
456 .bytesperline = 1600,
457 .sizeimage = 1600 * 1200,
458 .colorspace = V4L2_COLORSPACE_SRGB,
459 .priv = 0},
460 {2048, 1536, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
461 .bytesperline = 2048,
462 .sizeimage = 2048 * 1536,
463 .colorspace = V4L2_COLORSPACE_SRGB,
464 .priv = 0},
Hans de Goede635118d2009-10-11 09:49:03 -0300465};
466
Hans de Goede49809d62009-06-07 12:10:39 -0300467/* Registers common to OV511 / OV518 */
Hans de Goede1876bb92009-06-14 06:45:50 -0300468#define R51x_FIFO_PSIZE 0x30 /* 2 bytes wide w/ OV518(+) */
Jean-François Moine780e3122010-10-19 04:29:10 -0300469#define R51x_SYS_RESET 0x50
Hans de Goede1876bb92009-06-14 06:45:50 -0300470 /* Reset type flags */
471 #define OV511_RESET_OMNICE 0x08
Jean-François Moine780e3122010-10-19 04:29:10 -0300472#define R51x_SYS_INIT 0x53
Hans de Goede49809d62009-06-07 12:10:39 -0300473#define R51x_SYS_SNAP 0x52
Jean-François Moine87bae742010-11-12 05:31:34 -0300474#define R51x_SYS_CUST_ID 0x5f
Hans de Goede49809d62009-06-07 12:10:39 -0300475#define R51x_COMP_LUT_BEGIN 0x80
476
477/* OV511 Camera interface register numbers */
Hans de Goede1876bb92009-06-14 06:45:50 -0300478#define R511_CAM_DELAY 0x10
479#define R511_CAM_EDGE 0x11
480#define R511_CAM_PXCNT 0x12
481#define R511_CAM_LNCNT 0x13
482#define R511_CAM_PXDIV 0x14
483#define R511_CAM_LNDIV 0x15
484#define R511_CAM_UV_EN 0x16
485#define R511_CAM_LINE_MODE 0x17
486#define R511_CAM_OPTS 0x18
487
488#define R511_SNAP_FRAME 0x19
Jean-François Moine87bae742010-11-12 05:31:34 -0300489#define R511_SNAP_PXCNT 0x1a
490#define R511_SNAP_LNCNT 0x1b
491#define R511_SNAP_PXDIV 0x1c
492#define R511_SNAP_LNDIV 0x1d
493#define R511_SNAP_UV_EN 0x1e
Jean-François Moine87bae742010-11-12 05:31:34 -0300494#define R511_SNAP_OPTS 0x1f
Hans de Goede1876bb92009-06-14 06:45:50 -0300495
496#define R511_DRAM_FLOW_CTL 0x20
497#define R511_FIFO_OPTS 0x31
498#define R511_I2C_CTL 0x40
Hans de Goede49809d62009-06-07 12:10:39 -0300499#define R511_SYS_LED_CTL 0x55 /* OV511+ only */
Hans de Goede1876bb92009-06-14 06:45:50 -0300500#define R511_COMP_EN 0x78
501#define R511_COMP_LUT_EN 0x79
Hans de Goede49809d62009-06-07 12:10:39 -0300502
503/* OV518 Camera interface register numbers */
504#define R518_GPIO_OUT 0x56 /* OV518(+) only */
505#define R518_GPIO_CTL 0x57 /* OV518(+) only */
506
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300507/* OV519 Camera interface register numbers */
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -0300508#define OV519_R10_H_SIZE 0x10
509#define OV519_R11_V_SIZE 0x11
510#define OV519_R12_X_OFFSETL 0x12
511#define OV519_R13_X_OFFSETH 0x13
512#define OV519_R14_Y_OFFSETL 0x14
513#define OV519_R15_Y_OFFSETH 0x15
514#define OV519_R16_DIVIDER 0x16
515#define OV519_R20_DFR 0x20
516#define OV519_R25_FORMAT 0x25
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300517
518/* OV519 System Controller register numbers */
Jean-François Moine21867802010-11-12 06:12:09 -0300519#define OV519_R51_RESET1 0x51
520#define OV519_R54_EN_CLK1 0x54
Jean-François Moineb4e96ea2010-11-12 16:13:17 -0300521#define OV519_R57_SNAPSHOT 0x57
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300522
523#define OV519_GPIO_DATA_OUT0 0x71
524#define OV519_GPIO_IO_CTRL0 0x72
525
Jean-François Moine87bae742010-11-12 05:31:34 -0300526/*#define OV511_ENDPOINT_ADDRESS 1 * Isoc endpoint number */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300527
Hans de Goedeb46aaa02009-10-12 10:07:57 -0300528/*
529 * The FX2 chip does not give us a zero length read at end of frame.
530 * It does, however, give a short read at the end of a frame, if
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800531 * necessary, rather than run two frames together.
Hans de Goedeb46aaa02009-10-12 10:07:57 -0300532 *
533 * By choosing the right bulk transfer size, we are guaranteed to always
534 * get a short read for the last read of each frame. Frame sizes are
535 * always a composite number (width * height, or a multiple) so if we
536 * choose a prime number, we are guaranteed that the last read of a
537 * frame will be short.
538 *
539 * But it isn't that easy: the 2.6 kernel requires a multiple of 4KB,
540 * otherwise EOVERFLOW "babbling" errors occur. I have not been able
541 * to figure out why. [PMiller]
542 *
543 * The constant (13 * 4096) is the largest "prime enough" number less than 64KB.
544 *
545 * It isn't enough to know the number of bytes per frame, in case we
546 * have data dropouts or buffer overruns (even though the FX2 double
547 * buffers, there are some pretty strict real time constraints for
548 * isochronous transfer for larger frame sizes).
549 */
550#define OVFX2_BULK_SIZE (13 * 4096)
551
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300552/* I2C registers */
553#define R51x_I2C_W_SID 0x41
554#define R51x_I2C_SADDR_3 0x42
555#define R51x_I2C_SADDR_2 0x43
556#define R51x_I2C_R_SID 0x44
557#define R51x_I2C_DATA 0x45
558#define R518_I2C_CTL 0x47 /* OV518(+) only */
Hans de Goedeb46aaa02009-10-12 10:07:57 -0300559#define OVFX2_I2C_ADDR 0x00
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300560
561/* I2C ADDRESSES */
562#define OV7xx0_SID 0x42
Hans de Goede229bb7d2009-10-11 07:41:46 -0300563#define OV_HIRES_SID 0x60 /* OV9xxx / OV2xxx / OV3xxx */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300564#define OV8xx0_SID 0xa0
565#define OV6xx0_SID 0xc0
566
567/* OV7610 registers */
568#define OV7610_REG_GAIN 0x00 /* gain setting (5:0) */
Hans de Goede49809d62009-06-07 12:10:39 -0300569#define OV7610_REG_BLUE 0x01 /* blue channel balance */
570#define OV7610_REG_RED 0x02 /* red channel balance */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300571#define OV7610_REG_SAT 0x03 /* saturation */
572#define OV8610_REG_HUE 0x04 /* 04 reserved */
573#define OV7610_REG_CNT 0x05 /* Y contrast */
574#define OV7610_REG_BRT 0x06 /* Y brightness */
575#define OV7610_REG_COM_C 0x14 /* misc common regs */
576#define OV7610_REG_ID_HIGH 0x1c /* manufacturer ID MSB */
577#define OV7610_REG_ID_LOW 0x1d /* manufacturer ID LSB */
578#define OV7610_REG_COM_I 0x29 /* misc settings */
579
Jean-François Moine42e142f2010-11-13 05:10:27 -0300580/* OV7660 and OV7670 registers */
Jean-François Moine21867802010-11-12 06:12:09 -0300581#define OV7670_R00_GAIN 0x00 /* Gain lower 8 bits (rest in vref) */
582#define OV7670_R01_BLUE 0x01 /* blue gain */
583#define OV7670_R02_RED 0x02 /* red gain */
584#define OV7670_R03_VREF 0x03 /* Pieces of GAIN, VSTART, VSTOP */
585#define OV7670_R04_COM1 0x04 /* Control 1 */
586/*#define OV7670_R07_AECHH 0x07 * AEC MS 5 bits */
587#define OV7670_R0C_COM3 0x0c /* Control 3 */
588#define OV7670_R0D_COM4 0x0d /* Control 4 */
589#define OV7670_R0E_COM5 0x0e /* All "reserved" */
590#define OV7670_R0F_COM6 0x0f /* Control 6 */
591#define OV7670_R10_AECH 0x10 /* More bits of AEC value */
592#define OV7670_R11_CLKRC 0x11 /* Clock control */
593#define OV7670_R12_COM7 0x12 /* Control 7 */
Jean-François Moine87bae742010-11-12 05:31:34 -0300594#define OV7670_COM7_FMT_VGA 0x00
595/*#define OV7670_COM7_YUV 0x00 * YUV */
596#define OV7670_COM7_FMT_QVGA 0x10 /* QVGA format */
597#define OV7670_COM7_FMT_MASK 0x38
598#define OV7670_COM7_RESET 0x80 /* Register reset */
Jean-François Moine21867802010-11-12 06:12:09 -0300599#define OV7670_R13_COM8 0x13 /* Control 8 */
Jean-François Moine87bae742010-11-12 05:31:34 -0300600#define OV7670_COM8_AEC 0x01 /* Auto exposure enable */
601#define OV7670_COM8_AWB 0x02 /* White balance enable */
602#define OV7670_COM8_AGC 0x04 /* Auto gain enable */
603#define OV7670_COM8_BFILT 0x20 /* Band filter enable */
604#define OV7670_COM8_AECSTEP 0x40 /* Unlimited AEC step size */
605#define OV7670_COM8_FASTAEC 0x80 /* Enable fast AGC/AEC */
Jean-François Moine21867802010-11-12 06:12:09 -0300606#define OV7670_R14_COM9 0x14 /* Control 9 - gain ceiling */
607#define OV7670_R15_COM10 0x15 /* Control 10 */
608#define OV7670_R17_HSTART 0x17 /* Horiz start high bits */
609#define OV7670_R18_HSTOP 0x18 /* Horiz stop high bits */
610#define OV7670_R19_VSTART 0x19 /* Vert start high bits */
611#define OV7670_R1A_VSTOP 0x1a /* Vert stop high bits */
612#define OV7670_R1E_MVFP 0x1e /* Mirror / vflip */
Jean-François Moine87bae742010-11-12 05:31:34 -0300613#define OV7670_MVFP_VFLIP 0x10 /* vertical flip */
614#define OV7670_MVFP_MIRROR 0x20 /* Mirror image */
Jean-François Moine21867802010-11-12 06:12:09 -0300615#define OV7670_R24_AEW 0x24 /* AGC upper limit */
616#define OV7670_R25_AEB 0x25 /* AGC lower limit */
617#define OV7670_R26_VPT 0x26 /* AGC/AEC fast mode op region */
618#define OV7670_R32_HREF 0x32 /* HREF pieces */
619#define OV7670_R3A_TSLB 0x3a /* lots of stuff */
620#define OV7670_R3B_COM11 0x3b /* Control 11 */
Jean-François Moine87bae742010-11-12 05:31:34 -0300621#define OV7670_COM11_EXP 0x02
622#define OV7670_COM11_HZAUTO 0x10 /* Auto detect 50/60 Hz */
Jean-François Moine21867802010-11-12 06:12:09 -0300623#define OV7670_R3C_COM12 0x3c /* Control 12 */
624#define OV7670_R3D_COM13 0x3d /* Control 13 */
Jean-François Moine87bae742010-11-12 05:31:34 -0300625#define OV7670_COM13_GAMMA 0x80 /* Gamma enable */
626#define OV7670_COM13_UVSAT 0x40 /* UV saturation auto adjustment */
Jean-François Moine21867802010-11-12 06:12:09 -0300627#define OV7670_R3E_COM14 0x3e /* Control 14 */
628#define OV7670_R3F_EDGE 0x3f /* Edge enhancement factor */
629#define OV7670_R40_COM15 0x40 /* Control 15 */
Jean-François Moine87bae742010-11-12 05:31:34 -0300630/*#define OV7670_COM15_R00FF 0xc0 * 00 to FF */
Jean-François Moine21867802010-11-12 06:12:09 -0300631#define OV7670_R41_COM16 0x41 /* Control 16 */
Jean-François Moine87bae742010-11-12 05:31:34 -0300632#define OV7670_COM16_AWBGAIN 0x08 /* AWB gain enable */
Jean-François Moine42e142f2010-11-13 05:10:27 -0300633/* end of ov7660 common registers */
Jean-François Moine21867802010-11-12 06:12:09 -0300634#define OV7670_R55_BRIGHT 0x55 /* Brightness */
635#define OV7670_R56_CONTRAS 0x56 /* Contrast control */
636#define OV7670_R69_GFIX 0x69 /* Fix gain control */
637/*#define OV7670_R8C_RGB444 0x8c * RGB 444 control */
638#define OV7670_R9F_HAECC1 0x9f /* Hist AEC/AGC control 1 */
639#define OV7670_RA0_HAECC2 0xa0 /* Hist AEC/AGC control 2 */
640#define OV7670_RA5_BD50MAX 0xa5 /* 50hz banding step limit */
641#define OV7670_RA6_HAECC3 0xa6 /* Hist AEC/AGC control 3 */
642#define OV7670_RA7_HAECC4 0xa7 /* Hist AEC/AGC control 4 */
643#define OV7670_RA8_HAECC5 0xa8 /* Hist AEC/AGC control 5 */
644#define OV7670_RA9_HAECC6 0xa9 /* Hist AEC/AGC control 6 */
645#define OV7670_RAA_HAECC7 0xaa /* Hist AEC/AGC control 7 */
646#define OV7670_RAB_BD60MAX 0xab /* 60hz banding step limit */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300647
Jean-Francois Moine4202f712008-09-03 17:12:15 -0300648struct ov_regvals {
Jean-François Moine9d1593a2010-11-11 08:04:06 -0300649 u8 reg;
650 u8 val;
Jean-Francois Moine4202f712008-09-03 17:12:15 -0300651};
652struct ov_i2c_regvals {
Jean-François Moine9d1593a2010-11-11 08:04:06 -0300653 u8 reg;
654 u8 val;
Jean-Francois Moine4202f712008-09-03 17:12:15 -0300655};
656
Hans de Goede635118d2009-10-11 09:49:03 -0300657/* Settings for OV2610 camera chip */
Jean-François Moine780e3122010-10-19 04:29:10 -0300658static const struct ov_i2c_regvals norm_2610[] = {
Hans de Goedeb46aaa02009-10-12 10:07:57 -0300659 { 0x12, 0x80 }, /* reset */
Hans de Goede635118d2009-10-11 09:49:03 -0300660};
661
Jean-François Moine07c6c9c2011-02-10 13:32:22 -0300662static const struct ov_i2c_regvals norm_2610ae[] = {
663 {0x12, 0x80}, /* reset */
664 {0x13, 0xcd},
665 {0x09, 0x01},
666 {0x0d, 0x00},
667 {0x11, 0x80},
668 {0x12, 0x20}, /* 1600x1200 */
669 {0x33, 0x0c},
670 {0x35, 0x90},
671 {0x36, 0x37},
672/* ms-win traces */
673 {0x11, 0x83}, /* clock / 3 ? */
674 {0x2d, 0x00}, /* 60 Hz filter */
675 {0x24, 0xb0}, /* normal colors */
676 {0x25, 0x90},
677 {0x10, 0x43},
678};
679
Jean-François Moine780e3122010-10-19 04:29:10 -0300680static const struct ov_i2c_regvals norm_3620b[] = {
Hans de Goede635118d2009-10-11 09:49:03 -0300681 /*
682 * From the datasheet: "Note that after writing to register COMH
683 * (0x12) to change the sensor mode, registers related to the
684 * sensor’s cropping window will be reset back to their default
685 * values."
686 *
687 * "wait 4096 external clock ... to make sure the sensor is
688 * stable and ready to access registers" i.e. 160us at 24MHz
689 */
Hans de Goede635118d2009-10-11 09:49:03 -0300690 { 0x12, 0x80 }, /* COMH reset */
691 { 0x12, 0x00 }, /* QXGA, master */
692
693 /*
694 * 11 CLKRC "Clock Rate Control"
695 * [7] internal frequency doublers: on
696 * [6] video port mode: master
697 * [5:0] clock divider: 1
698 */
699 { 0x11, 0x80 },
700
701 /*
702 * 13 COMI "Common Control I"
703 * = 192 (0xC0) 11000000
704 * COMI[7] "AEC speed selection"
705 * = 1 (0x01) 1....... "Faster AEC correction"
706 * COMI[6] "AEC speed step selection"
707 * = 1 (0x01) .1...... "Big steps, fast"
708 * COMI[5] "Banding filter on off"
709 * = 0 (0x00) ..0..... "Off"
710 * COMI[4] "Banding filter option"
711 * = 0 (0x00) ...0.... "Main clock is 48 MHz and
712 * the PLL is ON"
713 * COMI[3] "Reserved"
714 * = 0 (0x00) ....0...
715 * COMI[2] "AGC auto manual control selection"
716 * = 0 (0x00) .....0.. "Manual"
717 * COMI[1] "AWB auto manual control selection"
718 * = 0 (0x00) ......0. "Manual"
719 * COMI[0] "Exposure control"
720 * = 0 (0x00) .......0 "Manual"
721 */
Jean-François Moine87bae742010-11-12 05:31:34 -0300722 { 0x13, 0xc0 },
Hans de Goede635118d2009-10-11 09:49:03 -0300723
724 /*
725 * 09 COMC "Common Control C"
726 * = 8 (0x08) 00001000
727 * COMC[7:5] "Reserved"
728 * = 0 (0x00) 000.....
729 * COMC[4] "Sleep Mode Enable"
730 * = 0 (0x00) ...0.... "Normal mode"
731 * COMC[3:2] "Sensor sampling reset timing selection"
732 * = 2 (0x02) ....10.. "Longer reset time"
733 * COMC[1:0] "Output drive current select"
734 * = 0 (0x00) ......00 "Weakest"
735 */
736 { 0x09, 0x08 },
737
738 /*
739 * 0C COMD "Common Control D"
740 * = 8 (0x08) 00001000
741 * COMD[7] "Reserved"
742 * = 0 (0x00) 0.......
743 * COMD[6] "Swap MSB and LSB at the output port"
744 * = 0 (0x00) .0...... "False"
745 * COMD[5:3] "Reserved"
746 * = 1 (0x01) ..001...
747 * COMD[2] "Output Average On Off"
748 * = 0 (0x00) .....0.. "Output Normal"
749 * COMD[1] "Sensor precharge voltage selection"
750 * = 0 (0x00) ......0. "Selects internal
751 * reference precharge
752 * voltage"
753 * COMD[0] "Snapshot option"
754 * = 0 (0x00) .......0 "Enable live video output
755 * after snapshot sequence"
756 */
757 { 0x0c, 0x08 },
758
759 /*
760 * 0D COME "Common Control E"
761 * = 161 (0xA1) 10100001
762 * COME[7] "Output average option"
763 * = 1 (0x01) 1....... "Output average of 4 pixels"
764 * COME[6] "Anti-blooming control"
765 * = 0 (0x00) .0...... "Off"
766 * COME[5:3] "Reserved"
767 * = 4 (0x04) ..100...
768 * COME[2] "Clock output power down pin status"
769 * = 0 (0x00) .....0.. "Tri-state data output pin
770 * on power down"
771 * COME[1] "Data output pin status selection at power down"
772 * = 0 (0x00) ......0. "Tri-state VSYNC, PCLK,
773 * HREF, and CHSYNC pins on
774 * power down"
775 * COME[0] "Auto zero circuit select"
776 * = 1 (0x01) .......1 "On"
777 */
Jean-François Moine87bae742010-11-12 05:31:34 -0300778 { 0x0d, 0xa1 },
Hans de Goede635118d2009-10-11 09:49:03 -0300779
780 /*
781 * 0E COMF "Common Control F"
782 * = 112 (0x70) 01110000
783 * COMF[7] "System clock selection"
784 * = 0 (0x00) 0....... "Use 24 MHz system clock"
785 * COMF[6:4] "Reserved"
786 * = 7 (0x07) .111....
787 * COMF[3] "Manual auto negative offset canceling selection"
788 * = 0 (0x00) ....0... "Auto detect negative
789 * offset and cancel it"
790 * COMF[2:0] "Reserved"
791 * = 0 (0x00) .....000
792 */
793 { 0x0e, 0x70 },
794
795 /*
796 * 0F COMG "Common Control G"
797 * = 66 (0x42) 01000010
798 * COMG[7] "Optical black output selection"
799 * = 0 (0x00) 0....... "Disable"
800 * COMG[6] "Black level calibrate selection"
801 * = 1 (0x01) .1...... "Use optical black pixels
802 * to calibrate"
803 * COMG[5:4] "Reserved"
804 * = 0 (0x00) ..00....
805 * COMG[3] "Channel offset adjustment"
806 * = 0 (0x00) ....0... "Disable offset adjustment"
807 * COMG[2] "ADC black level calibration option"
808 * = 0 (0x00) .....0.. "Use B/G line and G/R
809 * line to calibrate each
810 * channel's black level"
811 * COMG[1] "Reserved"
812 * = 1 (0x01) ......1.
813 * COMG[0] "ADC black level calibration enable"
814 * = 0 (0x00) .......0 "Disable"
815 */
816 { 0x0f, 0x42 },
817
818 /*
819 * 14 COMJ "Common Control J"
820 * = 198 (0xC6) 11000110
821 * COMJ[7:6] "AGC gain ceiling"
822 * = 3 (0x03) 11...... "8x"
823 * COMJ[5:4] "Reserved"
824 * = 0 (0x00) ..00....
825 * COMJ[3] "Auto banding filter"
826 * = 0 (0x00) ....0... "Banding filter is always
827 * on off depending on
828 * COMI[5] setting"
829 * COMJ[2] "VSYNC drop option"
830 * = 1 (0x01) .....1.. "SYNC is dropped if frame
831 * data is dropped"
832 * COMJ[1] "Frame data drop"
833 * = 1 (0x01) ......1. "Drop frame data if
834 * exposure is not within
835 * tolerance. In AEC mode,
836 * data is normally dropped
837 * when data is out of
838 * range."
839 * COMJ[0] "Reserved"
840 * = 0 (0x00) .......0
841 */
Jean-François Moine87bae742010-11-12 05:31:34 -0300842 { 0x14, 0xc6 },
Hans de Goede635118d2009-10-11 09:49:03 -0300843
844 /*
845 * 15 COMK "Common Control K"
846 * = 2 (0x02) 00000010
847 * COMK[7] "CHSYNC pin output swap"
848 * = 0 (0x00) 0....... "CHSYNC"
849 * COMK[6] "HREF pin output swap"
850 * = 0 (0x00) .0...... "HREF"
851 * COMK[5] "PCLK output selection"
852 * = 0 (0x00) ..0..... "PCLK always output"
853 * COMK[4] "PCLK edge selection"
854 * = 0 (0x00) ...0.... "Data valid on falling edge"
855 * COMK[3] "HREF output polarity"
856 * = 0 (0x00) ....0... "positive"
857 * COMK[2] "Reserved"
858 * = 0 (0x00) .....0..
859 * COMK[1] "VSYNC polarity"
860 * = 1 (0x01) ......1. "negative"
861 * COMK[0] "HSYNC polarity"
862 * = 0 (0x00) .......0 "positive"
863 */
864 { 0x15, 0x02 },
865
866 /*
867 * 33 CHLF "Current Control"
868 * = 9 (0x09) 00001001
869 * CHLF[7:6] "Sensor current control"
870 * = 0 (0x00) 00......
871 * CHLF[5] "Sensor current range control"
872 * = 0 (0x00) ..0..... "normal range"
873 * CHLF[4] "Sensor current"
874 * = 0 (0x00) ...0.... "normal current"
875 * CHLF[3] "Sensor buffer current control"
876 * = 1 (0x01) ....1... "half current"
877 * CHLF[2] "Column buffer current control"
878 * = 0 (0x00) .....0.. "normal current"
879 * CHLF[1] "Analog DSP current control"
880 * = 0 (0x00) ......0. "normal current"
881 * CHLF[1] "ADC current control"
882 * = 0 (0x00) ......0. "normal current"
883 */
884 { 0x33, 0x09 },
885
886 /*
887 * 34 VBLM "Blooming Control"
888 * = 80 (0x50) 01010000
889 * VBLM[7] "Hard soft reset switch"
890 * = 0 (0x00) 0....... "Hard reset"
891 * VBLM[6:4] "Blooming voltage selection"
892 * = 5 (0x05) .101....
893 * VBLM[3:0] "Sensor current control"
894 * = 0 (0x00) ....0000
895 */
896 { 0x34, 0x50 },
897
898 /*
899 * 36 VCHG "Sensor Precharge Voltage Control"
900 * = 0 (0x00) 00000000
901 * VCHG[7] "Reserved"
902 * = 0 (0x00) 0.......
903 * VCHG[6:4] "Sensor precharge voltage control"
904 * = 0 (0x00) .000....
905 * VCHG[3:0] "Sensor array common reference"
906 * = 0 (0x00) ....0000
907 */
908 { 0x36, 0x00 },
909
910 /*
911 * 37 ADC "ADC Reference Control"
912 * = 4 (0x04) 00000100
913 * ADC[7:4] "Reserved"
914 * = 0 (0x00) 0000....
915 * ADC[3] "ADC input signal range"
916 * = 0 (0x00) ....0... "Input signal 1.0x"
917 * ADC[2:0] "ADC range control"
918 * = 4 (0x04) .....100
919 */
920 { 0x37, 0x04 },
921
922 /*
923 * 38 ACOM "Analog Common Ground"
924 * = 82 (0x52) 01010010
925 * ACOM[7] "Analog gain control"
926 * = 0 (0x00) 0....... "Gain 1x"
927 * ACOM[6] "Analog black level calibration"
928 * = 1 (0x01) .1...... "On"
929 * ACOM[5:0] "Reserved"
930 * = 18 (0x12) ..010010
931 */
932 { 0x38, 0x52 },
933
934 /*
935 * 3A FREFA "Internal Reference Adjustment"
936 * = 0 (0x00) 00000000
937 * FREFA[7:0] "Range"
938 * = 0 (0x00) 00000000
939 */
940 { 0x3a, 0x00 },
941
942 /*
943 * 3C FVOPT "Internal Reference Adjustment"
944 * = 31 (0x1F) 00011111
945 * FVOPT[7:0] "Range"
946 * = 31 (0x1F) 00011111
947 */
Jean-François Moine87bae742010-11-12 05:31:34 -0300948 { 0x3c, 0x1f },
Hans de Goede635118d2009-10-11 09:49:03 -0300949
950 /*
951 * 44 Undocumented = 0 (0x00) 00000000
952 * 44[7:0] "It's a secret"
953 * = 0 (0x00) 00000000
954 */
955 { 0x44, 0x00 },
956
957 /*
958 * 40 Undocumented = 0 (0x00) 00000000
959 * 40[7:0] "It's a secret"
960 * = 0 (0x00) 00000000
961 */
962 { 0x40, 0x00 },
963
964 /*
965 * 41 Undocumented = 0 (0x00) 00000000
966 * 41[7:0] "It's a secret"
967 * = 0 (0x00) 00000000
968 */
969 { 0x41, 0x00 },
970
971 /*
972 * 42 Undocumented = 0 (0x00) 00000000
973 * 42[7:0] "It's a secret"
974 * = 0 (0x00) 00000000
975 */
976 { 0x42, 0x00 },
977
978 /*
979 * 43 Undocumented = 0 (0x00) 00000000
980 * 43[7:0] "It's a secret"
981 * = 0 (0x00) 00000000
982 */
983 { 0x43, 0x00 },
984
985 /*
986 * 45 Undocumented = 128 (0x80) 10000000
987 * 45[7:0] "It's a secret"
988 * = 128 (0x80) 10000000
989 */
990 { 0x45, 0x80 },
991
992 /*
993 * 48 Undocumented = 192 (0xC0) 11000000
994 * 48[7:0] "It's a secret"
995 * = 192 (0xC0) 11000000
996 */
Jean-François Moine87bae742010-11-12 05:31:34 -0300997 { 0x48, 0xc0 },
Hans de Goede635118d2009-10-11 09:49:03 -0300998
999 /*
1000 * 49 Undocumented = 25 (0x19) 00011001
1001 * 49[7:0] "It's a secret"
1002 * = 25 (0x19) 00011001
1003 */
1004 { 0x49, 0x19 },
1005
1006 /*
1007 * 4B Undocumented = 128 (0x80) 10000000
1008 * 4B[7:0] "It's a secret"
1009 * = 128 (0x80) 10000000
1010 */
Jean-François Moine87bae742010-11-12 05:31:34 -03001011 { 0x4b, 0x80 },
Hans de Goede635118d2009-10-11 09:49:03 -03001012
1013 /*
1014 * 4D Undocumented = 196 (0xC4) 11000100
1015 * 4D[7:0] "It's a secret"
1016 * = 196 (0xC4) 11000100
1017 */
Jean-François Moine87bae742010-11-12 05:31:34 -03001018 { 0x4d, 0xc4 },
Hans de Goede635118d2009-10-11 09:49:03 -03001019
1020 /*
1021 * 35 VREF "Reference Voltage Control"
Jean-François Moine87bae742010-11-12 05:31:34 -03001022 * = 76 (0x4c) 01001100
Hans de Goede635118d2009-10-11 09:49:03 -03001023 * VREF[7:5] "Column high reference control"
1024 * = 2 (0x02) 010..... "higher voltage"
1025 * VREF[4:2] "Column low reference control"
1026 * = 3 (0x03) ...011.. "Highest voltage"
1027 * VREF[1:0] "Reserved"
1028 * = 0 (0x00) ......00
1029 */
Jean-François Moine87bae742010-11-12 05:31:34 -03001030 { 0x35, 0x4c },
Hans de Goede635118d2009-10-11 09:49:03 -03001031
1032 /*
1033 * 3D Undocumented = 0 (0x00) 00000000
1034 * 3D[7:0] "It's a secret"
1035 * = 0 (0x00) 00000000
1036 */
Jean-François Moine87bae742010-11-12 05:31:34 -03001037 { 0x3d, 0x00 },
Hans de Goede635118d2009-10-11 09:49:03 -03001038
1039 /*
1040 * 3E Undocumented = 0 (0x00) 00000000
1041 * 3E[7:0] "It's a secret"
1042 * = 0 (0x00) 00000000
1043 */
Jean-François Moine87bae742010-11-12 05:31:34 -03001044 { 0x3e, 0x00 },
Hans de Goede635118d2009-10-11 09:49:03 -03001045
1046 /*
1047 * 3B FREFB "Internal Reference Adjustment"
1048 * = 24 (0x18) 00011000
1049 * FREFB[7:0] "Range"
1050 * = 24 (0x18) 00011000
1051 */
1052 { 0x3b, 0x18 },
1053
1054 /*
1055 * 33 CHLF "Current Control"
1056 * = 25 (0x19) 00011001
1057 * CHLF[7:6] "Sensor current control"
1058 * = 0 (0x00) 00......
1059 * CHLF[5] "Sensor current range control"
1060 * = 0 (0x00) ..0..... "normal range"
1061 * CHLF[4] "Sensor current"
1062 * = 1 (0x01) ...1.... "double current"
1063 * CHLF[3] "Sensor buffer current control"
1064 * = 1 (0x01) ....1... "half current"
1065 * CHLF[2] "Column buffer current control"
1066 * = 0 (0x00) .....0.. "normal current"
1067 * CHLF[1] "Analog DSP current control"
1068 * = 0 (0x00) ......0. "normal current"
1069 * CHLF[1] "ADC current control"
1070 * = 0 (0x00) ......0. "normal current"
1071 */
1072 { 0x33, 0x19 },
1073
1074 /*
1075 * 34 VBLM "Blooming Control"
1076 * = 90 (0x5A) 01011010
1077 * VBLM[7] "Hard soft reset switch"
1078 * = 0 (0x00) 0....... "Hard reset"
1079 * VBLM[6:4] "Blooming voltage selection"
1080 * = 5 (0x05) .101....
1081 * VBLM[3:0] "Sensor current control"
1082 * = 10 (0x0A) ....1010
1083 */
Jean-François Moine87bae742010-11-12 05:31:34 -03001084 { 0x34, 0x5a },
Hans de Goede635118d2009-10-11 09:49:03 -03001085
1086 /*
1087 * 3B FREFB "Internal Reference Adjustment"
1088 * = 0 (0x00) 00000000
1089 * FREFB[7:0] "Range"
1090 * = 0 (0x00) 00000000
1091 */
1092 { 0x3b, 0x00 },
1093
1094 /*
1095 * 33 CHLF "Current Control"
1096 * = 9 (0x09) 00001001
1097 * CHLF[7:6] "Sensor current control"
1098 * = 0 (0x00) 00......
1099 * CHLF[5] "Sensor current range control"
1100 * = 0 (0x00) ..0..... "normal range"
1101 * CHLF[4] "Sensor current"
1102 * = 0 (0x00) ...0.... "normal current"
1103 * CHLF[3] "Sensor buffer current control"
1104 * = 1 (0x01) ....1... "half current"
1105 * CHLF[2] "Column buffer current control"
1106 * = 0 (0x00) .....0.. "normal current"
1107 * CHLF[1] "Analog DSP current control"
1108 * = 0 (0x00) ......0. "normal current"
1109 * CHLF[1] "ADC current control"
1110 * = 0 (0x00) ......0. "normal current"
1111 */
1112 { 0x33, 0x09 },
1113
1114 /*
1115 * 34 VBLM "Blooming Control"
1116 * = 80 (0x50) 01010000
1117 * VBLM[7] "Hard soft reset switch"
1118 * = 0 (0x00) 0....... "Hard reset"
1119 * VBLM[6:4] "Blooming voltage selection"
1120 * = 5 (0x05) .101....
1121 * VBLM[3:0] "Sensor current control"
1122 * = 0 (0x00) ....0000
1123 */
1124 { 0x34, 0x50 },
1125
1126 /*
1127 * 12 COMH "Common Control H"
1128 * = 64 (0x40) 01000000
1129 * COMH[7] "SRST"
1130 * = 0 (0x00) 0....... "No-op"
1131 * COMH[6:4] "Resolution selection"
1132 * = 4 (0x04) .100.... "XGA"
1133 * COMH[3] "Master slave selection"
1134 * = 0 (0x00) ....0... "Master mode"
1135 * COMH[2] "Internal B/R channel option"
1136 * = 0 (0x00) .....0.. "B/R use same channel"
1137 * COMH[1] "Color bar test pattern"
1138 * = 0 (0x00) ......0. "Off"
1139 * COMH[0] "Reserved"
1140 * = 0 (0x00) .......0
1141 */
1142 { 0x12, 0x40 },
1143
1144 /*
1145 * 17 HREFST "Horizontal window start"
1146 * = 31 (0x1F) 00011111
1147 * HREFST[7:0] "Horizontal window start, 8 MSBs"
1148 * = 31 (0x1F) 00011111
1149 */
Jean-François Moine87bae742010-11-12 05:31:34 -03001150 { 0x17, 0x1f },
Hans de Goede635118d2009-10-11 09:49:03 -03001151
1152 /*
1153 * 18 HREFEND "Horizontal window end"
1154 * = 95 (0x5F) 01011111
1155 * HREFEND[7:0] "Horizontal Window End, 8 MSBs"
1156 * = 95 (0x5F) 01011111
1157 */
Jean-François Moine87bae742010-11-12 05:31:34 -03001158 { 0x18, 0x5f },
Hans de Goede635118d2009-10-11 09:49:03 -03001159
1160 /*
1161 * 19 VSTRT "Vertical window start"
1162 * = 0 (0x00) 00000000
1163 * VSTRT[7:0] "Vertical Window Start, 8 MSBs"
1164 * = 0 (0x00) 00000000
1165 */
1166 { 0x19, 0x00 },
1167
1168 /*
1169 * 1A VEND "Vertical window end"
1170 * = 96 (0x60) 01100000
1171 * VEND[7:0] "Vertical Window End, 8 MSBs"
1172 * = 96 (0x60) 01100000
1173 */
1174 { 0x1a, 0x60 },
1175
1176 /*
1177 * 32 COMM "Common Control M"
1178 * = 18 (0x12) 00010010
1179 * COMM[7:6] "Pixel clock divide option"
1180 * = 0 (0x00) 00...... "/1"
1181 * COMM[5:3] "Horizontal window end position, 3 LSBs"
1182 * = 2 (0x02) ..010...
1183 * COMM[2:0] "Horizontal window start position, 3 LSBs"
1184 * = 2 (0x02) .....010
1185 */
1186 { 0x32, 0x12 },
1187
1188 /*
1189 * 03 COMA "Common Control A"
1190 * = 74 (0x4A) 01001010
1191 * COMA[7:4] "AWB Update Threshold"
1192 * = 4 (0x04) 0100....
1193 * COMA[3:2] "Vertical window end line control 2 LSBs"
1194 * = 2 (0x02) ....10..
1195 * COMA[1:0] "Vertical window start line control 2 LSBs"
1196 * = 2 (0x02) ......10
1197 */
Jean-François Moine87bae742010-11-12 05:31:34 -03001198 { 0x03, 0x4a },
Hans de Goede635118d2009-10-11 09:49:03 -03001199
1200 /*
1201 * 11 CLKRC "Clock Rate Control"
1202 * = 128 (0x80) 10000000
1203 * CLKRC[7] "Internal frequency doublers on off seclection"
1204 * = 1 (0x01) 1....... "On"
1205 * CLKRC[6] "Digital video master slave selection"
1206 * = 0 (0x00) .0...... "Master mode, sensor
1207 * provides PCLK"
1208 * CLKRC[5:0] "Clock divider { CLK = PCLK/(1+CLKRC[5:0]) }"
1209 * = 0 (0x00) ..000000
1210 */
1211 { 0x11, 0x80 },
1212
1213 /*
1214 * 12 COMH "Common Control H"
1215 * = 0 (0x00) 00000000
1216 * COMH[7] "SRST"
1217 * = 0 (0x00) 0....... "No-op"
1218 * COMH[6:4] "Resolution selection"
1219 * = 0 (0x00) .000.... "QXGA"
1220 * COMH[3] "Master slave selection"
1221 * = 0 (0x00) ....0... "Master mode"
1222 * COMH[2] "Internal B/R channel option"
1223 * = 0 (0x00) .....0.. "B/R use same channel"
1224 * COMH[1] "Color bar test pattern"
1225 * = 0 (0x00) ......0. "Off"
1226 * COMH[0] "Reserved"
1227 * = 0 (0x00) .......0
1228 */
1229 { 0x12, 0x00 },
1230
1231 /*
1232 * 12 COMH "Common Control H"
1233 * = 64 (0x40) 01000000
1234 * COMH[7] "SRST"
1235 * = 0 (0x00) 0....... "No-op"
1236 * COMH[6:4] "Resolution selection"
1237 * = 4 (0x04) .100.... "XGA"
1238 * COMH[3] "Master slave selection"
1239 * = 0 (0x00) ....0... "Master mode"
1240 * COMH[2] "Internal B/R channel option"
1241 * = 0 (0x00) .....0.. "B/R use same channel"
1242 * COMH[1] "Color bar test pattern"
1243 * = 0 (0x00) ......0. "Off"
1244 * COMH[0] "Reserved"
1245 * = 0 (0x00) .......0
1246 */
1247 { 0x12, 0x40 },
1248
1249 /*
1250 * 17 HREFST "Horizontal window start"
1251 * = 31 (0x1F) 00011111
1252 * HREFST[7:0] "Horizontal window start, 8 MSBs"
1253 * = 31 (0x1F) 00011111
1254 */
Jean-François Moine87bae742010-11-12 05:31:34 -03001255 { 0x17, 0x1f },
Hans de Goede635118d2009-10-11 09:49:03 -03001256
1257 /*
1258 * 18 HREFEND "Horizontal window end"
1259 * = 95 (0x5F) 01011111
1260 * HREFEND[7:0] "Horizontal Window End, 8 MSBs"
1261 * = 95 (0x5F) 01011111
1262 */
Jean-François Moine87bae742010-11-12 05:31:34 -03001263 { 0x18, 0x5f },
Hans de Goede635118d2009-10-11 09:49:03 -03001264
1265 /*
1266 * 19 VSTRT "Vertical window start"
1267 * = 0 (0x00) 00000000
1268 * VSTRT[7:0] "Vertical Window Start, 8 MSBs"
1269 * = 0 (0x00) 00000000
1270 */
1271 { 0x19, 0x00 },
1272
1273 /*
1274 * 1A VEND "Vertical window end"
1275 * = 96 (0x60) 01100000
1276 * VEND[7:0] "Vertical Window End, 8 MSBs"
1277 * = 96 (0x60) 01100000
1278 */
1279 { 0x1a, 0x60 },
1280
1281 /*
1282 * 32 COMM "Common Control M"
1283 * = 18 (0x12) 00010010
1284 * COMM[7:6] "Pixel clock divide option"
1285 * = 0 (0x00) 00...... "/1"
1286 * COMM[5:3] "Horizontal window end position, 3 LSBs"
1287 * = 2 (0x02) ..010...
1288 * COMM[2:0] "Horizontal window start position, 3 LSBs"
1289 * = 2 (0x02) .....010
1290 */
1291 { 0x32, 0x12 },
1292
1293 /*
1294 * 03 COMA "Common Control A"
1295 * = 74 (0x4A) 01001010
1296 * COMA[7:4] "AWB Update Threshold"
1297 * = 4 (0x04) 0100....
1298 * COMA[3:2] "Vertical window end line control 2 LSBs"
1299 * = 2 (0x02) ....10..
1300 * COMA[1:0] "Vertical window start line control 2 LSBs"
1301 * = 2 (0x02) ......10
1302 */
Jean-François Moine87bae742010-11-12 05:31:34 -03001303 { 0x03, 0x4a },
Hans de Goede635118d2009-10-11 09:49:03 -03001304
1305 /*
1306 * 02 RED "Red Gain Control"
1307 * = 175 (0xAF) 10101111
1308 * RED[7] "Action"
1309 * = 1 (0x01) 1....... "gain = 1/(1+bitrev([6:0]))"
1310 * RED[6:0] "Value"
1311 * = 47 (0x2F) .0101111
1312 */
Jean-François Moine87bae742010-11-12 05:31:34 -03001313 { 0x02, 0xaf },
Hans de Goede635118d2009-10-11 09:49:03 -03001314
1315 /*
1316 * 2D ADDVSL "VSYNC Pulse Width"
1317 * = 210 (0xD2) 11010010
1318 * ADDVSL[7:0] "VSYNC pulse width, LSB"
1319 * = 210 (0xD2) 11010010
1320 */
Jean-François Moine87bae742010-11-12 05:31:34 -03001321 { 0x2d, 0xd2 },
Hans de Goede635118d2009-10-11 09:49:03 -03001322
1323 /*
1324 * 00 GAIN = 24 (0x18) 00011000
1325 * GAIN[7:6] "Reserved"
1326 * = 0 (0x00) 00......
1327 * GAIN[5] "Double"
1328 * = 0 (0x00) ..0..... "False"
1329 * GAIN[4] "Double"
1330 * = 1 (0x01) ...1.... "True"
1331 * GAIN[3:0] "Range"
1332 * = 8 (0x08) ....1000
1333 */
1334 { 0x00, 0x18 },
1335
1336 /*
1337 * 01 BLUE "Blue Gain Control"
1338 * = 240 (0xF0) 11110000
1339 * BLUE[7] "Action"
1340 * = 1 (0x01) 1....... "gain = 1/(1+bitrev([6:0]))"
1341 * BLUE[6:0] "Value"
1342 * = 112 (0x70) .1110000
1343 */
Jean-François Moine87bae742010-11-12 05:31:34 -03001344 { 0x01, 0xf0 },
Hans de Goede635118d2009-10-11 09:49:03 -03001345
1346 /*
1347 * 10 AEC "Automatic Exposure Control"
1348 * = 10 (0x0A) 00001010
1349 * AEC[7:0] "Automatic Exposure Control, 8 MSBs"
1350 * = 10 (0x0A) 00001010
1351 */
Jean-François Moine87bae742010-11-12 05:31:34 -03001352 { 0x10, 0x0a },
Hans de Goede635118d2009-10-11 09:49:03 -03001353
Jean-François Moine87bae742010-11-12 05:31:34 -03001354 { 0xe1, 0x67 },
1355 { 0xe3, 0x03 },
1356 { 0xe4, 0x26 },
1357 { 0xe5, 0x3e },
1358 { 0xf8, 0x01 },
1359 { 0xff, 0x01 },
Hans de Goede635118d2009-10-11 09:49:03 -03001360};
1361
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001362static const struct ov_i2c_regvals norm_6x20[] = {
1363 { 0x12, 0x80 }, /* reset */
1364 { 0x11, 0x01 },
1365 { 0x03, 0x60 },
1366 { 0x05, 0x7f }, /* For when autoadjust is off */
1367 { 0x07, 0xa8 },
Jean-François Moine87bae742010-11-12 05:31:34 -03001368 /* The ratio of 0x0c and 0x0d controls the white point */
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001369 { 0x0c, 0x24 },
1370 { 0x0d, 0x24 },
1371 { 0x0f, 0x15 }, /* COMS */
1372 { 0x10, 0x75 }, /* AEC Exposure time */
1373 { 0x12, 0x24 }, /* Enable AGC */
1374 { 0x14, 0x04 },
1375 /* 0x16: 0x06 helps frame stability with moving objects */
1376 { 0x16, 0x06 },
1377/* { 0x20, 0x30 }, * Aperture correction enable */
1378 { 0x26, 0xb2 }, /* BLC enable */
1379 /* 0x28: 0x05 Selects RGB format if RGB on */
1380 { 0x28, 0x05 },
1381 { 0x2a, 0x04 }, /* Disable framerate adjust */
1382/* { 0x2b, 0xac }, * Framerate; Set 2a[7] first */
Hans de Goedeae49c402009-06-14 19:15:07 -03001383 { 0x2d, 0x85 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001384 { 0x33, 0xa0 }, /* Color Processing Parameter */
1385 { 0x34, 0xd2 }, /* Max A/D range */
1386 { 0x38, 0x8b },
1387 { 0x39, 0x40 },
1388
1389 { 0x3c, 0x39 }, /* Enable AEC mode changing */
1390 { 0x3c, 0x3c }, /* Change AEC mode */
1391 { 0x3c, 0x24 }, /* Disable AEC mode changing */
1392
1393 { 0x3d, 0x80 },
1394 /* These next two registers (0x4a, 0x4b) are undocumented.
1395 * They control the color balance */
1396 { 0x4a, 0x80 },
1397 { 0x4b, 0x80 },
1398 { 0x4d, 0xd2 }, /* This reduces noise a bit */
1399 { 0x4e, 0xc1 },
1400 { 0x4f, 0x04 },
1401/* Do 50-53 have any effect? */
1402/* Toggle 0x12[2] off and on here? */
1403};
1404
1405static const struct ov_i2c_regvals norm_6x30[] = {
1406 { 0x12, 0x80 }, /* Reset */
1407 { 0x00, 0x1f }, /* Gain */
1408 { 0x01, 0x99 }, /* Blue gain */
1409 { 0x02, 0x7c }, /* Red gain */
1410 { 0x03, 0xc0 }, /* Saturation */
1411 { 0x05, 0x0a }, /* Contrast */
1412 { 0x06, 0x95 }, /* Brightness */
1413 { 0x07, 0x2d }, /* Sharpness */
1414 { 0x0c, 0x20 },
1415 { 0x0d, 0x20 },
Hans de Goede02ab18b2009-06-14 04:32:04 -03001416 { 0x0e, 0xa0 }, /* Was 0x20, bit7 enables a 2x gain which we need */
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001417 { 0x0f, 0x05 },
1418 { 0x10, 0x9a },
1419 { 0x11, 0x00 }, /* Pixel clock = fastest */
1420 { 0x12, 0x24 }, /* Enable AGC and AWB */
1421 { 0x13, 0x21 },
1422 { 0x14, 0x80 },
1423 { 0x15, 0x01 },
1424 { 0x16, 0x03 },
1425 { 0x17, 0x38 },
1426 { 0x18, 0xea },
1427 { 0x19, 0x04 },
1428 { 0x1a, 0x93 },
1429 { 0x1b, 0x00 },
1430 { 0x1e, 0xc4 },
1431 { 0x1f, 0x04 },
1432 { 0x20, 0x20 },
1433 { 0x21, 0x10 },
1434 { 0x22, 0x88 },
1435 { 0x23, 0xc0 }, /* Crystal circuit power level */
1436 { 0x25, 0x9a }, /* Increase AEC black ratio */
1437 { 0x26, 0xb2 }, /* BLC enable */
1438 { 0x27, 0xa2 },
1439 { 0x28, 0x00 },
1440 { 0x29, 0x00 },
1441 { 0x2a, 0x84 }, /* 60 Hz power */
1442 { 0x2b, 0xa8 }, /* 60 Hz power */
1443 { 0x2c, 0xa0 },
1444 { 0x2d, 0x95 }, /* Enable auto-brightness */
1445 { 0x2e, 0x88 },
1446 { 0x33, 0x26 },
1447 { 0x34, 0x03 },
1448 { 0x36, 0x8f },
1449 { 0x37, 0x80 },
1450 { 0x38, 0x83 },
1451 { 0x39, 0x80 },
1452 { 0x3a, 0x0f },
1453 { 0x3b, 0x3c },
1454 { 0x3c, 0x1a },
1455 { 0x3d, 0x80 },
1456 { 0x3e, 0x80 },
1457 { 0x3f, 0x0e },
1458 { 0x40, 0x00 }, /* White bal */
1459 { 0x41, 0x00 }, /* White bal */
1460 { 0x42, 0x80 },
1461 { 0x43, 0x3f }, /* White bal */
1462 { 0x44, 0x80 },
1463 { 0x45, 0x20 },
1464 { 0x46, 0x20 },
1465 { 0x47, 0x80 },
1466 { 0x48, 0x7f },
1467 { 0x49, 0x00 },
1468 { 0x4a, 0x00 },
1469 { 0x4b, 0x80 },
1470 { 0x4c, 0xd0 },
1471 { 0x4d, 0x10 }, /* U = 0.563u, V = 0.714v */
1472 { 0x4e, 0x40 },
1473 { 0x4f, 0x07 }, /* UV avg., col. killer: max */
1474 { 0x50, 0xff },
1475 { 0x54, 0x23 }, /* Max AGC gain: 18dB */
1476 { 0x55, 0xff },
1477 { 0x56, 0x12 },
1478 { 0x57, 0x81 },
1479 { 0x58, 0x75 },
1480 { 0x59, 0x01 }, /* AGC dark current comp.: +1 */
1481 { 0x5a, 0x2c },
1482 { 0x5b, 0x0f }, /* AWB chrominance levels */
1483 { 0x5c, 0x10 },
1484 { 0x3d, 0x80 },
1485 { 0x27, 0xa6 },
1486 { 0x12, 0x20 }, /* Toggle AWB */
1487 { 0x12, 0x24 },
1488};
1489
1490/* Lawrence Glaister <lg@jfm.bc.ca> reports:
1491 *
1492 * Register 0x0f in the 7610 has the following effects:
1493 *
1494 * 0x85 (AEC method 1): Best overall, good contrast range
1495 * 0x45 (AEC method 2): Very overexposed
1496 * 0xa5 (spec sheet default): Ok, but the black level is
1497 * shifted resulting in loss of contrast
1498 * 0x05 (old driver setting): very overexposed, too much
1499 * contrast
1500 */
1501static const struct ov_i2c_regvals norm_7610[] = {
1502 { 0x10, 0xff },
1503 { 0x16, 0x06 },
1504 { 0x28, 0x24 },
1505 { 0x2b, 0xac },
1506 { 0x12, 0x00 },
1507 { 0x38, 0x81 },
1508 { 0x28, 0x24 }, /* 0c */
1509 { 0x0f, 0x85 }, /* lg's setting */
1510 { 0x15, 0x01 },
1511 { 0x20, 0x1c },
1512 { 0x23, 0x2a },
1513 { 0x24, 0x10 },
1514 { 0x25, 0x8a },
1515 { 0x26, 0xa2 },
1516 { 0x27, 0xc2 },
1517 { 0x2a, 0x04 },
1518 { 0x2c, 0xfe },
1519 { 0x2d, 0x93 },
1520 { 0x30, 0x71 },
1521 { 0x31, 0x60 },
1522 { 0x32, 0x26 },
1523 { 0x33, 0x20 },
1524 { 0x34, 0x48 },
1525 { 0x12, 0x24 },
1526 { 0x11, 0x01 },
1527 { 0x0c, 0x24 },
1528 { 0x0d, 0x24 },
1529};
1530
1531static const struct ov_i2c_regvals norm_7620[] = {
Hans de Goedea511ba92009-10-16 07:13:07 -03001532 { 0x12, 0x80 }, /* reset */
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001533 { 0x00, 0x00 }, /* gain */
1534 { 0x01, 0x80 }, /* blue gain */
1535 { 0x02, 0x80 }, /* red gain */
Jean-François Moine21867802010-11-12 06:12:09 -03001536 { 0x03, 0xc0 }, /* OV7670_R03_VREF */
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001537 { 0x06, 0x60 },
1538 { 0x07, 0x00 },
1539 { 0x0c, 0x24 },
1540 { 0x0c, 0x24 },
1541 { 0x0d, 0x24 },
1542 { 0x11, 0x01 },
1543 { 0x12, 0x24 },
1544 { 0x13, 0x01 },
1545 { 0x14, 0x84 },
1546 { 0x15, 0x01 },
1547 { 0x16, 0x03 },
1548 { 0x17, 0x2f },
1549 { 0x18, 0xcf },
1550 { 0x19, 0x06 },
1551 { 0x1a, 0xf5 },
1552 { 0x1b, 0x00 },
1553 { 0x20, 0x18 },
1554 { 0x21, 0x80 },
1555 { 0x22, 0x80 },
1556 { 0x23, 0x00 },
1557 { 0x26, 0xa2 },
1558 { 0x27, 0xea },
Hans de Goedeb282d872009-06-14 19:10:40 -03001559 { 0x28, 0x22 }, /* Was 0x20, bit1 enables a 2x gain which we need */
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001560 { 0x29, 0x00 },
1561 { 0x2a, 0x10 },
1562 { 0x2b, 0x00 },
1563 { 0x2c, 0x88 },
1564 { 0x2d, 0x91 },
1565 { 0x2e, 0x80 },
1566 { 0x2f, 0x44 },
1567 { 0x60, 0x27 },
1568 { 0x61, 0x02 },
1569 { 0x62, 0x5f },
1570 { 0x63, 0xd5 },
1571 { 0x64, 0x57 },
1572 { 0x65, 0x83 },
1573 { 0x66, 0x55 },
1574 { 0x67, 0x92 },
1575 { 0x68, 0xcf },
1576 { 0x69, 0x76 },
1577 { 0x6a, 0x22 },
1578 { 0x6b, 0x00 },
1579 { 0x6c, 0x02 },
1580 { 0x6d, 0x44 },
1581 { 0x6e, 0x80 },
1582 { 0x6f, 0x1d },
1583 { 0x70, 0x8b },
1584 { 0x71, 0x00 },
1585 { 0x72, 0x14 },
1586 { 0x73, 0x54 },
1587 { 0x74, 0x00 },
1588 { 0x75, 0x8e },
1589 { 0x76, 0x00 },
1590 { 0x77, 0xff },
1591 { 0x78, 0x80 },
1592 { 0x79, 0x80 },
1593 { 0x7a, 0x80 },
1594 { 0x7b, 0xe2 },
1595 { 0x7c, 0x00 },
1596};
1597
1598/* 7640 and 7648. The defaults should be OK for most registers. */
1599static const struct ov_i2c_regvals norm_7640[] = {
1600 { 0x12, 0x80 },
1601 { 0x12, 0x14 },
1602};
1603
Jean-François Moine42e142f2010-11-13 05:10:27 -03001604static const struct ov_regvals init_519_ov7660[] = {
1605 { 0x5d, 0x03 }, /* Turn off suspend mode */
1606 { 0x53, 0x9b }, /* 0x9f enables the (unused) microcontroller */
1607 { 0x54, 0x0f }, /* bit2 (jpeg enable) */
1608 { 0xa2, 0x20 }, /* a2-a5 are undocumented */
1609 { 0xa3, 0x18 },
1610 { 0xa4, 0x04 },
1611 { 0xa5, 0x28 },
1612 { 0x37, 0x00 }, /* SetUsbInit */
1613 { 0x55, 0x02 }, /* 4.096 Mhz audio clock */
1614 /* Enable both fields, YUV Input, disable defect comp (why?) */
1615 { 0x20, 0x0c }, /* 0x0d does U <-> V swap */
1616 { 0x21, 0x38 },
1617 { 0x22, 0x1d },
1618 { 0x17, 0x50 }, /* undocumented */
1619 { 0x37, 0x00 }, /* undocumented */
1620 { 0x40, 0xff }, /* I2C timeout counter */
1621 { 0x46, 0x00 }, /* I2C clock prescaler */
1622};
1623static const struct ov_i2c_regvals norm_7660[] = {
1624 {OV7670_R12_COM7, OV7670_COM7_RESET},
1625 {OV7670_R11_CLKRC, 0x81},
1626 {0x92, 0x00}, /* DM_LNL */
1627 {0x93, 0x00}, /* DM_LNH */
1628 {0x9d, 0x4c}, /* BD50ST */
1629 {0x9e, 0x3f}, /* BD60ST */
1630 {OV7670_R3B_COM11, 0x02},
1631 {OV7670_R13_COM8, 0xf5},
1632 {OV7670_R10_AECH, 0x00},
1633 {OV7670_R00_GAIN, 0x00},
1634 {OV7670_R01_BLUE, 0x7c},
1635 {OV7670_R02_RED, 0x9d},
1636 {OV7670_R12_COM7, 0x00},
1637 {OV7670_R04_COM1, 00},
1638 {OV7670_R18_HSTOP, 0x01},
1639 {OV7670_R17_HSTART, 0x13},
1640 {OV7670_R32_HREF, 0x92},
1641 {OV7670_R19_VSTART, 0x02},
1642 {OV7670_R1A_VSTOP, 0x7a},
1643 {OV7670_R03_VREF, 0x00},
1644 {OV7670_R0E_COM5, 0x04},
1645 {OV7670_R0F_COM6, 0x62},
1646 {OV7670_R15_COM10, 0x00},
1647 {0x16, 0x02}, /* RSVD */
1648 {0x1b, 0x00}, /* PSHFT */
1649 {OV7670_R1E_MVFP, 0x01},
1650 {0x29, 0x3c}, /* RSVD */
1651 {0x33, 0x00}, /* CHLF */
1652 {0x34, 0x07}, /* ARBLM */
1653 {0x35, 0x84}, /* RSVD */
1654 {0x36, 0x00}, /* RSVD */
1655 {0x37, 0x04}, /* ADC */
1656 {0x39, 0x43}, /* OFON */
1657 {OV7670_R3A_TSLB, 0x00},
1658 {OV7670_R3C_COM12, 0x6c},
1659 {OV7670_R3D_COM13, 0x98},
1660 {OV7670_R3F_EDGE, 0x23},
1661 {OV7670_R40_COM15, 0xc1},
1662 {OV7670_R41_COM16, 0x22},
1663 {0x6b, 0x0a}, /* DBLV */
1664 {0xa1, 0x08}, /* RSVD */
1665 {0x69, 0x80}, /* HV */
1666 {0x43, 0xf0}, /* RSVD.. */
1667 {0x44, 0x10},
1668 {0x45, 0x78},
1669 {0x46, 0xa8},
1670 {0x47, 0x60},
1671 {0x48, 0x80},
1672 {0x59, 0xba},
1673 {0x5a, 0x9a},
1674 {0x5b, 0x22},
1675 {0x5c, 0xb9},
1676 {0x5d, 0x9b},
1677 {0x5e, 0x10},
1678 {0x5f, 0xe0},
1679 {0x60, 0x85},
1680 {0x61, 0x60},
1681 {0x9f, 0x9d}, /* RSVD */
1682 {0xa0, 0xa0}, /* DSPC2 */
1683 {0x4f, 0x60}, /* matrix */
1684 {0x50, 0x64},
1685 {0x51, 0x04},
1686 {0x52, 0x18},
1687 {0x53, 0x3c},
1688 {0x54, 0x54},
1689 {0x55, 0x40},
1690 {0x56, 0x40},
1691 {0x57, 0x40},
1692 {0x58, 0x0d}, /* matrix sign */
1693 {0x8b, 0xcc}, /* RSVD */
1694 {0x8c, 0xcc},
1695 {0x8d, 0xcf},
1696 {0x6c, 0x40}, /* gamma curve */
1697 {0x6d, 0xe0},
1698 {0x6e, 0xa0},
1699 {0x6f, 0x80},
1700 {0x70, 0x70},
1701 {0x71, 0x80},
1702 {0x72, 0x60},
1703 {0x73, 0x60},
1704 {0x74, 0x50},
1705 {0x75, 0x40},
1706 {0x76, 0x38},
1707 {0x77, 0x3c},
1708 {0x78, 0x32},
1709 {0x79, 0x1a},
1710 {0x7a, 0x28},
1711 {0x7b, 0x24},
1712 {0x7c, 0x04}, /* gamma curve */
1713 {0x7d, 0x12},
1714 {0x7e, 0x26},
1715 {0x7f, 0x46},
1716 {0x80, 0x54},
1717 {0x81, 0x64},
1718 {0x82, 0x70},
1719 {0x83, 0x7c},
1720 {0x84, 0x86},
1721 {0x85, 0x8e},
1722 {0x86, 0x9c},
1723 {0x87, 0xab},
1724 {0x88, 0xc4},
1725 {0x89, 0xd1},
1726 {0x8a, 0xe5},
1727 {OV7670_R14_COM9, 0x1e},
1728 {OV7670_R24_AEW, 0x80},
1729 {OV7670_R25_AEB, 0x72},
1730 {OV7670_R26_VPT, 0xb3},
1731 {0x62, 0x80}, /* LCC1 */
1732 {0x63, 0x80}, /* LCC2 */
1733 {0x64, 0x06}, /* LCC3 */
1734 {0x65, 0x00}, /* LCC4 */
1735 {0x66, 0x01}, /* LCC5 */
1736 {0x94, 0x0e}, /* RSVD.. */
1737 {0x95, 0x14},
1738 {OV7670_R13_COM8, OV7670_COM8_FASTAEC
1739 | OV7670_COM8_AECSTEP
1740 | OV7670_COM8_BFILT
1741 | 0x10
1742 | OV7670_COM8_AGC
1743 | OV7670_COM8_AWB
1744 | OV7670_COM8_AEC},
1745 {0xa1, 0xc8}
1746};
1747
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001748/* 7670. Defaults taken from OmniVision provided data,
1749* as provided by Jonathan Corbet of OLPC */
1750static const struct ov_i2c_regvals norm_7670[] = {
Jean-François Moine21867802010-11-12 06:12:09 -03001751 { OV7670_R12_COM7, OV7670_COM7_RESET },
1752 { OV7670_R3A_TSLB, 0x04 }, /* OV */
1753 { OV7670_R12_COM7, OV7670_COM7_FMT_VGA }, /* VGA */
1754 { OV7670_R11_CLKRC, 0x01 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001755/*
1756 * Set the hardware window. These values from OV don't entirely
1757 * make sense - hstop is less than hstart. But they work...
1758 */
Jean-François Moine21867802010-11-12 06:12:09 -03001759 { OV7670_R17_HSTART, 0x13 },
1760 { OV7670_R18_HSTOP, 0x01 },
1761 { OV7670_R32_HREF, 0xb6 },
1762 { OV7670_R19_VSTART, 0x02 },
1763 { OV7670_R1A_VSTOP, 0x7a },
1764 { OV7670_R03_VREF, 0x0a },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001765
Jean-François Moine21867802010-11-12 06:12:09 -03001766 { OV7670_R0C_COM3, 0x00 },
1767 { OV7670_R3E_COM14, 0x00 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001768/* Mystery scaling numbers */
1769 { 0x70, 0x3a },
1770 { 0x71, 0x35 },
1771 { 0x72, 0x11 },
1772 { 0x73, 0xf0 },
1773 { 0xa2, 0x02 },
Jean-François Moine21867802010-11-12 06:12:09 -03001774/* { OV7670_R15_COM10, 0x0 }, */
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001775
1776/* Gamma curve values */
1777 { 0x7a, 0x20 },
1778 { 0x7b, 0x10 },
1779 { 0x7c, 0x1e },
1780 { 0x7d, 0x35 },
1781 { 0x7e, 0x5a },
1782 { 0x7f, 0x69 },
1783 { 0x80, 0x76 },
1784 { 0x81, 0x80 },
1785 { 0x82, 0x88 },
1786 { 0x83, 0x8f },
1787 { 0x84, 0x96 },
1788 { 0x85, 0xa3 },
1789 { 0x86, 0xaf },
1790 { 0x87, 0xc4 },
1791 { 0x88, 0xd7 },
1792 { 0x89, 0xe8 },
1793
1794/* AGC and AEC parameters. Note we start by disabling those features,
1795 then turn them only after tweaking the values. */
Jean-François Moine21867802010-11-12 06:12:09 -03001796 { OV7670_R13_COM8, OV7670_COM8_FASTAEC
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001797 | OV7670_COM8_AECSTEP
1798 | OV7670_COM8_BFILT },
Jean-François Moine21867802010-11-12 06:12:09 -03001799 { OV7670_R00_GAIN, 0x00 },
1800 { OV7670_R10_AECH, 0x00 },
1801 { OV7670_R0D_COM4, 0x40 }, /* magic reserved bit */
1802 { OV7670_R14_COM9, 0x18 }, /* 4x gain + magic rsvd bit */
1803 { OV7670_RA5_BD50MAX, 0x05 },
1804 { OV7670_RAB_BD60MAX, 0x07 },
1805 { OV7670_R24_AEW, 0x95 },
1806 { OV7670_R25_AEB, 0x33 },
1807 { OV7670_R26_VPT, 0xe3 },
1808 { OV7670_R9F_HAECC1, 0x78 },
1809 { OV7670_RA0_HAECC2, 0x68 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001810 { 0xa1, 0x03 }, /* magic */
Jean-François Moine21867802010-11-12 06:12:09 -03001811 { OV7670_RA6_HAECC3, 0xd8 },
1812 { OV7670_RA7_HAECC4, 0xd8 },
1813 { OV7670_RA8_HAECC5, 0xf0 },
1814 { OV7670_RA9_HAECC6, 0x90 },
1815 { OV7670_RAA_HAECC7, 0x94 },
1816 { OV7670_R13_COM8, OV7670_COM8_FASTAEC
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001817 | OV7670_COM8_AECSTEP
1818 | OV7670_COM8_BFILT
1819 | OV7670_COM8_AGC
1820 | OV7670_COM8_AEC },
1821
1822/* Almost all of these are magic "reserved" values. */
Jean-François Moine21867802010-11-12 06:12:09 -03001823 { OV7670_R0E_COM5, 0x61 },
1824 { OV7670_R0F_COM6, 0x4b },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001825 { 0x16, 0x02 },
Jean-François Moine21867802010-11-12 06:12:09 -03001826 { OV7670_R1E_MVFP, 0x07 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001827 { 0x21, 0x02 },
1828 { 0x22, 0x91 },
1829 { 0x29, 0x07 },
1830 { 0x33, 0x0b },
1831 { 0x35, 0x0b },
1832 { 0x37, 0x1d },
1833 { 0x38, 0x71 },
1834 { 0x39, 0x2a },
Jean-François Moine21867802010-11-12 06:12:09 -03001835 { OV7670_R3C_COM12, 0x78 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001836 { 0x4d, 0x40 },
1837 { 0x4e, 0x20 },
Jean-François Moine21867802010-11-12 06:12:09 -03001838 { OV7670_R69_GFIX, 0x00 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001839 { 0x6b, 0x4a },
1840 { 0x74, 0x10 },
1841 { 0x8d, 0x4f },
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03001842 { 0x8e, 0x00 },
1843 { 0x8f, 0x00 },
1844 { 0x90, 0x00 },
1845 { 0x91, 0x00 },
1846 { 0x96, 0x00 },
1847 { 0x9a, 0x00 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001848 { 0xb0, 0x84 },
1849 { 0xb1, 0x0c },
1850 { 0xb2, 0x0e },
1851 { 0xb3, 0x82 },
1852 { 0xb8, 0x0a },
1853
1854/* More reserved magic, some of which tweaks white balance */
1855 { 0x43, 0x0a },
1856 { 0x44, 0xf0 },
1857 { 0x45, 0x34 },
1858 { 0x46, 0x58 },
1859 { 0x47, 0x28 },
1860 { 0x48, 0x3a },
1861 { 0x59, 0x88 },
1862 { 0x5a, 0x88 },
1863 { 0x5b, 0x44 },
1864 { 0x5c, 0x67 },
1865 { 0x5d, 0x49 },
1866 { 0x5e, 0x0e },
1867 { 0x6c, 0x0a },
1868 { 0x6d, 0x55 },
1869 { 0x6e, 0x11 },
Jean-François Moinefc63de882011-01-13 05:35:18 -03001870 { 0x6f, 0x9f }, /* "9e for advance AWB" */
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001871 { 0x6a, 0x40 },
Jean-François Moine21867802010-11-12 06:12:09 -03001872 { OV7670_R01_BLUE, 0x40 },
1873 { OV7670_R02_RED, 0x60 },
1874 { OV7670_R13_COM8, OV7670_COM8_FASTAEC
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001875 | OV7670_COM8_AECSTEP
1876 | OV7670_COM8_BFILT
1877 | OV7670_COM8_AGC
1878 | OV7670_COM8_AEC
1879 | OV7670_COM8_AWB },
1880
1881/* Matrix coefficients */
1882 { 0x4f, 0x80 },
1883 { 0x50, 0x80 },
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03001884 { 0x51, 0x00 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001885 { 0x52, 0x22 },
1886 { 0x53, 0x5e },
1887 { 0x54, 0x80 },
1888 { 0x58, 0x9e },
1889
Jean-François Moine21867802010-11-12 06:12:09 -03001890 { OV7670_R41_COM16, OV7670_COM16_AWBGAIN },
1891 { OV7670_R3F_EDGE, 0x00 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001892 { 0x75, 0x05 },
1893 { 0x76, 0xe1 },
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03001894 { 0x4c, 0x00 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001895 { 0x77, 0x01 },
Jean-François Moine21867802010-11-12 06:12:09 -03001896 { OV7670_R3D_COM13, OV7670_COM13_GAMMA
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001897 | OV7670_COM13_UVSAT
1898 | 2}, /* was 3 */
1899 { 0x4b, 0x09 },
1900 { 0xc9, 0x60 },
Jean-François Moine21867802010-11-12 06:12:09 -03001901 { OV7670_R41_COM16, 0x38 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001902 { 0x56, 0x40 },
1903
1904 { 0x34, 0x11 },
Jean-François Moine21867802010-11-12 06:12:09 -03001905 { OV7670_R3B_COM11, OV7670_COM11_EXP|OV7670_COM11_HZAUTO },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001906 { 0xa4, 0x88 },
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03001907 { 0x96, 0x00 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001908 { 0x97, 0x30 },
1909 { 0x98, 0x20 },
1910 { 0x99, 0x30 },
1911 { 0x9a, 0x84 },
1912 { 0x9b, 0x29 },
1913 { 0x9c, 0x03 },
1914 { 0x9d, 0x4c },
1915 { 0x9e, 0x3f },
1916 { 0x78, 0x04 },
1917
1918/* Extra-weird stuff. Some sort of multiplexor register */
1919 { 0x79, 0x01 },
1920 { 0xc8, 0xf0 },
1921 { 0x79, 0x0f },
1922 { 0xc8, 0x00 },
1923 { 0x79, 0x10 },
1924 { 0xc8, 0x7e },
1925 { 0x79, 0x0a },
1926 { 0xc8, 0x80 },
1927 { 0x79, 0x0b },
1928 { 0xc8, 0x01 },
1929 { 0x79, 0x0c },
1930 { 0xc8, 0x0f },
1931 { 0x79, 0x0d },
1932 { 0xc8, 0x20 },
1933 { 0x79, 0x09 },
1934 { 0xc8, 0x80 },
1935 { 0x79, 0x02 },
1936 { 0xc8, 0xc0 },
1937 { 0x79, 0x03 },
1938 { 0xc8, 0x40 },
1939 { 0x79, 0x05 },
1940 { 0xc8, 0x30 },
1941 { 0x79, 0x26 },
1942};
1943
1944static const struct ov_i2c_regvals norm_8610[] = {
1945 { 0x12, 0x80 },
1946 { 0x00, 0x00 },
1947 { 0x01, 0x80 },
1948 { 0x02, 0x80 },
1949 { 0x03, 0xc0 },
1950 { 0x04, 0x30 },
1951 { 0x05, 0x30 }, /* was 0x10, new from windrv 090403 */
1952 { 0x06, 0x70 }, /* was 0x80, new from windrv 090403 */
1953 { 0x0a, 0x86 },
1954 { 0x0b, 0xb0 },
1955 { 0x0c, 0x20 },
1956 { 0x0d, 0x20 },
1957 { 0x11, 0x01 },
1958 { 0x12, 0x25 },
1959 { 0x13, 0x01 },
1960 { 0x14, 0x04 },
1961 { 0x15, 0x01 }, /* Lin and Win think different about UV order */
1962 { 0x16, 0x03 },
1963 { 0x17, 0x38 }, /* was 0x2f, new from windrv 090403 */
1964 { 0x18, 0xea }, /* was 0xcf, new from windrv 090403 */
1965 { 0x19, 0x02 }, /* was 0x06, new from windrv 090403 */
1966 { 0x1a, 0xf5 },
1967 { 0x1b, 0x00 },
1968 { 0x20, 0xd0 }, /* was 0x90, new from windrv 090403 */
1969 { 0x23, 0xc0 }, /* was 0x00, new from windrv 090403 */
1970 { 0x24, 0x30 }, /* was 0x1d, new from windrv 090403 */
1971 { 0x25, 0x50 }, /* was 0x57, new from windrv 090403 */
1972 { 0x26, 0xa2 },
1973 { 0x27, 0xea },
1974 { 0x28, 0x00 },
1975 { 0x29, 0x00 },
1976 { 0x2a, 0x80 },
1977 { 0x2b, 0xc8 }, /* was 0xcc, new from windrv 090403 */
1978 { 0x2c, 0xac },
1979 { 0x2d, 0x45 }, /* was 0xd5, new from windrv 090403 */
1980 { 0x2e, 0x80 },
1981 { 0x2f, 0x14 }, /* was 0x01, new from windrv 090403 */
1982 { 0x4c, 0x00 },
1983 { 0x4d, 0x30 }, /* was 0x10, new from windrv 090403 */
1984 { 0x60, 0x02 }, /* was 0x01, new from windrv 090403 */
1985 { 0x61, 0x00 }, /* was 0x09, new from windrv 090403 */
1986 { 0x62, 0x5f }, /* was 0xd7, new from windrv 090403 */
1987 { 0x63, 0xff },
1988 { 0x64, 0x53 }, /* new windrv 090403 says 0x57,
1989 * maybe thats wrong */
1990 { 0x65, 0x00 },
1991 { 0x66, 0x55 },
1992 { 0x67, 0xb0 },
1993 { 0x68, 0xc0 }, /* was 0xaf, new from windrv 090403 */
1994 { 0x69, 0x02 },
1995 { 0x6a, 0x22 },
1996 { 0x6b, 0x00 },
1997 { 0x6c, 0x99 }, /* was 0x80, old windrv says 0x00, but
1998 * deleting bit7 colors the first images red */
1999 { 0x6d, 0x11 }, /* was 0x00, new from windrv 090403 */
2000 { 0x6e, 0x11 }, /* was 0x00, new from windrv 090403 */
2001 { 0x6f, 0x01 },
2002 { 0x70, 0x8b },
2003 { 0x71, 0x00 },
2004 { 0x72, 0x14 },
2005 { 0x73, 0x54 },
2006 { 0x74, 0x00 },/* 0x60? - was 0x00, new from windrv 090403 */
2007 { 0x75, 0x0e },
2008 { 0x76, 0x02 }, /* was 0x02, new from windrv 090403 */
2009 { 0x77, 0xff },
2010 { 0x78, 0x80 },
2011 { 0x79, 0x80 },
2012 { 0x7a, 0x80 },
2013 { 0x7b, 0x10 }, /* was 0x13, new from windrv 090403 */
2014 { 0x7c, 0x00 },
2015 { 0x7d, 0x08 }, /* was 0x09, new from windrv 090403 */
2016 { 0x7e, 0x08 }, /* was 0xc0, new from windrv 090403 */
2017 { 0x7f, 0xfb },
2018 { 0x80, 0x28 },
2019 { 0x81, 0x00 },
2020 { 0x82, 0x23 },
2021 { 0x83, 0x0b },
2022 { 0x84, 0x00 },
2023 { 0x85, 0x62 }, /* was 0x61, new from windrv 090403 */
2024 { 0x86, 0xc9 },
2025 { 0x87, 0x00 },
2026 { 0x88, 0x00 },
2027 { 0x89, 0x01 },
2028 { 0x12, 0x20 },
2029 { 0x12, 0x25 }, /* was 0x24, new from windrv 090403 */
2030};
2031
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002032static unsigned char ov7670_abs_to_sm(unsigned char v)
2033{
2034 if (v > 127)
2035 return v & 0x7f;
2036 return (128 - v) | 0x80;
2037}
2038
2039/* Write a OV519 register */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002040static void reg_w(struct sd *sd, u16 index, u16 value)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002041{
Hans de Goedea511ba92009-10-16 07:13:07 -03002042 int ret, req = 0;
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002043
Jean-François Moinef8f20182010-11-12 07:54:02 -03002044 if (sd->gspca_dev.usb_err < 0)
2045 return;
2046
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002047 switch (sd->bridge) {
2048 case BRIDGE_OV511:
2049 case BRIDGE_OV511PLUS:
2050 req = 2;
2051 break;
2052 case BRIDGE_OVFX2:
Hans de Goedea511ba92009-10-16 07:13:07 -03002053 req = 0x0a;
2054 /* fall through */
2055 case BRIDGE_W9968CF:
Jean-François Moine858ea5e2010-11-12 13:53:10 -03002056 PDEBUG(D_USBO, "SET %02x %04x %04x",
2057 req, value, index);
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002058 ret = usb_control_msg(sd->gspca_dev.dev,
2059 usb_sndctrlpipe(sd->gspca_dev.dev, 0),
Hans de Goedea511ba92009-10-16 07:13:07 -03002060 req,
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002061 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
Hans de Goedea511ba92009-10-16 07:13:07 -03002062 value, index, NULL, 0, 500);
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002063 goto leave;
2064 default:
2065 req = 1;
2066 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002067
Jean-François Moine858ea5e2010-11-12 13:53:10 -03002068 PDEBUG(D_USBO, "SET %02x 0000 %04x %02x",
2069 req, index, value);
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002070 sd->gspca_dev.usb_buf[0] = value;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002071 ret = usb_control_msg(sd->gspca_dev.dev,
2072 usb_sndctrlpipe(sd->gspca_dev.dev, 0),
Hans de Goede49809d62009-06-07 12:10:39 -03002073 req,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002074 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
2075 0, index,
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002076 sd->gspca_dev.usb_buf, 1, 500);
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002077leave:
Hans de Goedea511ba92009-10-16 07:13:07 -03002078 if (ret < 0) {
Jean-François Moine858ea5e2010-11-12 13:53:10 -03002079 err("reg_w %02x failed %d", index, ret);
Jean-François Moinef8f20182010-11-12 07:54:02 -03002080 sd->gspca_dev.usb_err = ret;
2081 return;
Hans de Goedea511ba92009-10-16 07:13:07 -03002082 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002083}
2084
Hans de Goedea511ba92009-10-16 07:13:07 -03002085/* Read from a OV519 register, note not valid for the w9968cf!! */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002086/* returns: negative is error, pos or zero is data */
Jean-François Moine9d1593a2010-11-11 08:04:06 -03002087static int reg_r(struct sd *sd, u16 index)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002088{
2089 int ret;
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002090 int req;
2091
Jean-François Moinef8f20182010-11-12 07:54:02 -03002092 if (sd->gspca_dev.usb_err < 0)
2093 return -1;
2094
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002095 switch (sd->bridge) {
2096 case BRIDGE_OV511:
2097 case BRIDGE_OV511PLUS:
2098 req = 3;
2099 break;
2100 case BRIDGE_OVFX2:
2101 req = 0x0b;
2102 break;
2103 default:
2104 req = 1;
2105 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002106
2107 ret = usb_control_msg(sd->gspca_dev.dev,
2108 usb_rcvctrlpipe(sd->gspca_dev.dev, 0),
Hans de Goede49809d62009-06-07 12:10:39 -03002109 req,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002110 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002111 0, index, sd->gspca_dev.usb_buf, 1, 500);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002112
Hans de Goedea511ba92009-10-16 07:13:07 -03002113 if (ret >= 0) {
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002114 ret = sd->gspca_dev.usb_buf[0];
Jean-François Moine858ea5e2010-11-12 13:53:10 -03002115 PDEBUG(D_USBI, "GET %02x 0000 %04x %02x",
2116 req, index, ret);
Jean-François Moinef8f20182010-11-12 07:54:02 -03002117 } else {
Jean-François Moine858ea5e2010-11-12 13:53:10 -03002118 err("reg_r %02x failed %d", index, ret);
Jean-François Moinef8f20182010-11-12 07:54:02 -03002119 sd->gspca_dev.usb_err = ret;
2120 }
Hans de Goedea511ba92009-10-16 07:13:07 -03002121
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002122 return ret;
2123}
2124
2125/* Read 8 values from a OV519 register */
2126static int reg_r8(struct sd *sd,
Jean-François Moine9d1593a2010-11-11 08:04:06 -03002127 u16 index)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002128{
2129 int ret;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002130
Jean-François Moinef8f20182010-11-12 07:54:02 -03002131 if (sd->gspca_dev.usb_err < 0)
2132 return -1;
2133
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002134 ret = usb_control_msg(sd->gspca_dev.dev,
2135 usb_rcvctrlpipe(sd->gspca_dev.dev, 0),
2136 1, /* REQ_IO */
2137 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002138 0, index, sd->gspca_dev.usb_buf, 8, 500);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002139
Jean-François Moinef8f20182010-11-12 07:54:02 -03002140 if (ret >= 0) {
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002141 ret = sd->gspca_dev.usb_buf[0];
Jean-François Moinef8f20182010-11-12 07:54:02 -03002142 } else {
Jean-François Moine858ea5e2010-11-12 13:53:10 -03002143 err("reg_r8 %02x failed %d", index, ret);
Jean-François Moinef8f20182010-11-12 07:54:02 -03002144 sd->gspca_dev.usb_err = ret;
2145 }
Hans de Goedea511ba92009-10-16 07:13:07 -03002146
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002147 return ret;
2148}
2149
2150/*
2151 * Writes bits at positions specified by mask to an OV51x reg. Bits that are in
2152 * the same position as 1's in "mask" are cleared and set to "value". Bits
2153 * that are in the same position as 0's in "mask" are preserved, regardless
2154 * of their respective state in "value".
2155 */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002156static void reg_w_mask(struct sd *sd,
Jean-François Moine9d1593a2010-11-11 08:04:06 -03002157 u16 index,
2158 u8 value,
2159 u8 mask)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002160{
2161 int ret;
Jean-François Moine9d1593a2010-11-11 08:04:06 -03002162 u8 oldval;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002163
2164 if (mask != 0xff) {
2165 value &= mask; /* Enforce mask on value */
2166 ret = reg_r(sd, index);
2167 if (ret < 0)
Jean-François Moinef8f20182010-11-12 07:54:02 -03002168 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002169
2170 oldval = ret & ~mask; /* Clear the masked bits */
2171 value |= oldval; /* Set the desired bits */
2172 }
Jean-François Moinef8f20182010-11-12 07:54:02 -03002173 reg_w(sd, index, value);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002174}
2175
2176/*
Hans de Goede49809d62009-06-07 12:10:39 -03002177 * Writes multiple (n) byte value to a single register. Only valid with certain
2178 * registers (0x30 and 0xc4 - 0xce).
2179 */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002180static void ov518_reg_w32(struct sd *sd, u16 index, u32 value, int n)
Hans de Goede49809d62009-06-07 12:10:39 -03002181{
2182 int ret;
2183
Jean-François Moinef8f20182010-11-12 07:54:02 -03002184 if (sd->gspca_dev.usb_err < 0)
2185 return;
2186
Jean-Francois Moine83955552009-12-12 06:58:01 -03002187 *((__le32 *) sd->gspca_dev.usb_buf) = __cpu_to_le32(value);
Hans de Goede49809d62009-06-07 12:10:39 -03002188
2189 ret = usb_control_msg(sd->gspca_dev.dev,
2190 usb_sndctrlpipe(sd->gspca_dev.dev, 0),
2191 1 /* REG_IO */,
2192 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
2193 0, index,
2194 sd->gspca_dev.usb_buf, n, 500);
Hans de Goedea511ba92009-10-16 07:13:07 -03002195 if (ret < 0) {
Jean-François Moine858ea5e2010-11-12 13:53:10 -03002196 err("reg_w32 %02x failed %d", index, ret);
Jean-François Moinef8f20182010-11-12 07:54:02 -03002197 sd->gspca_dev.usb_err = ret;
Hans de Goedea511ba92009-10-16 07:13:07 -03002198 }
Hans de Goede49809d62009-06-07 12:10:39 -03002199}
2200
Jean-François Moinef8f20182010-11-12 07:54:02 -03002201static void ov511_i2c_w(struct sd *sd, u8 reg, u8 value)
Hans de Goede1876bb92009-06-14 06:45:50 -03002202{
2203 int rc, retries;
2204
Jean-François Moine858ea5e2010-11-12 13:53:10 -03002205 PDEBUG(D_USBO, "ov511_i2c_w %02x %02x", reg, value);
Hans de Goede1876bb92009-06-14 06:45:50 -03002206
2207 /* Three byte write cycle */
2208 for (retries = 6; ; ) {
2209 /* Select camera register */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002210 reg_w(sd, R51x_I2C_SADDR_3, reg);
Hans de Goede1876bb92009-06-14 06:45:50 -03002211
2212 /* Write "value" to I2C data port of OV511 */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002213 reg_w(sd, R51x_I2C_DATA, value);
Hans de Goede1876bb92009-06-14 06:45:50 -03002214
2215 /* Initiate 3-byte write cycle */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002216 reg_w(sd, R511_I2C_CTL, 0x01);
Hans de Goede1876bb92009-06-14 06:45:50 -03002217
Jean-Francois Moine83955552009-12-12 06:58:01 -03002218 do {
Hans de Goede1876bb92009-06-14 06:45:50 -03002219 rc = reg_r(sd, R511_I2C_CTL);
Jean-Francois Moine83955552009-12-12 06:58:01 -03002220 } while (rc > 0 && ((rc & 1) == 0)); /* Retry until idle */
Hans de Goede1876bb92009-06-14 06:45:50 -03002221
2222 if (rc < 0)
Jean-François Moinef8f20182010-11-12 07:54:02 -03002223 return;
Hans de Goede1876bb92009-06-14 06:45:50 -03002224
2225 if ((rc & 2) == 0) /* Ack? */
2226 break;
2227 if (--retries < 0) {
2228 PDEBUG(D_USBO, "i2c write retries exhausted");
Jean-François Moinef8f20182010-11-12 07:54:02 -03002229 return;
Hans de Goede1876bb92009-06-14 06:45:50 -03002230 }
2231 }
Hans de Goede1876bb92009-06-14 06:45:50 -03002232}
2233
Jean-François Moine9d1593a2010-11-11 08:04:06 -03002234static int ov511_i2c_r(struct sd *sd, u8 reg)
Hans de Goede1876bb92009-06-14 06:45:50 -03002235{
2236 int rc, value, retries;
2237
2238 /* Two byte write cycle */
2239 for (retries = 6; ; ) {
2240 /* Select camera register */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002241 reg_w(sd, R51x_I2C_SADDR_2, reg);
Hans de Goede1876bb92009-06-14 06:45:50 -03002242
2243 /* Initiate 2-byte write cycle */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002244 reg_w(sd, R511_I2C_CTL, 0x03);
Hans de Goede1876bb92009-06-14 06:45:50 -03002245
Jean-Francois Moine83955552009-12-12 06:58:01 -03002246 do {
Hans de Goede1876bb92009-06-14 06:45:50 -03002247 rc = reg_r(sd, R511_I2C_CTL);
Jean-Francois Moine83955552009-12-12 06:58:01 -03002248 } while (rc > 0 && ((rc & 1) == 0)); /* Retry until idle */
Hans de Goede1876bb92009-06-14 06:45:50 -03002249
2250 if (rc < 0)
2251 return rc;
2252
2253 if ((rc & 2) == 0) /* Ack? */
2254 break;
2255
2256 /* I2C abort */
2257 reg_w(sd, R511_I2C_CTL, 0x10);
2258
2259 if (--retries < 0) {
2260 PDEBUG(D_USBI, "i2c write retries exhausted");
2261 return -1;
2262 }
2263 }
2264
2265 /* Two byte read cycle */
2266 for (retries = 6; ; ) {
2267 /* Initiate 2-byte read cycle */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002268 reg_w(sd, R511_I2C_CTL, 0x05);
Hans de Goede1876bb92009-06-14 06:45:50 -03002269
Jean-Francois Moine83955552009-12-12 06:58:01 -03002270 do {
Hans de Goede1876bb92009-06-14 06:45:50 -03002271 rc = reg_r(sd, R511_I2C_CTL);
Jean-Francois Moine83955552009-12-12 06:58:01 -03002272 } while (rc > 0 && ((rc & 1) == 0)); /* Retry until idle */
Hans de Goede1876bb92009-06-14 06:45:50 -03002273
2274 if (rc < 0)
2275 return rc;
2276
2277 if ((rc & 2) == 0) /* Ack? */
2278 break;
2279
2280 /* I2C abort */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002281 reg_w(sd, R511_I2C_CTL, 0x10);
Hans de Goede1876bb92009-06-14 06:45:50 -03002282
2283 if (--retries < 0) {
2284 PDEBUG(D_USBI, "i2c read retries exhausted");
2285 return -1;
2286 }
2287 }
2288
2289 value = reg_r(sd, R51x_I2C_DATA);
2290
Jean-François Moine858ea5e2010-11-12 13:53:10 -03002291 PDEBUG(D_USBI, "ov511_i2c_r %02x %02x", reg, value);
Hans de Goede1876bb92009-06-14 06:45:50 -03002292
2293 /* This is needed to make i2c_w() work */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002294 reg_w(sd, R511_I2C_CTL, 0x05);
Hans de Goede1876bb92009-06-14 06:45:50 -03002295
2296 return value;
2297}
Hans de Goede49809d62009-06-07 12:10:39 -03002298
2299/*
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002300 * The OV518 I2C I/O procedure is different, hence, this function.
2301 * This is normally only called from i2c_w(). Note that this function
2302 * always succeeds regardless of whether the sensor is present and working.
2303 */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002304static void ov518_i2c_w(struct sd *sd,
Jean-François Moine9d1593a2010-11-11 08:04:06 -03002305 u8 reg,
2306 u8 value)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002307{
Jean-François Moine858ea5e2010-11-12 13:53:10 -03002308 PDEBUG(D_USBO, "ov518_i2c_w %02x %02x", reg, value);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002309
2310 /* Select camera register */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002311 reg_w(sd, R51x_I2C_SADDR_3, reg);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002312
2313 /* Write "value" to I2C data port of OV511 */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002314 reg_w(sd, R51x_I2C_DATA, value);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002315
2316 /* Initiate 3-byte write cycle */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002317 reg_w(sd, R518_I2C_CTL, 0x01);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002318
2319 /* wait for write complete */
2320 msleep(4);
Jean-François Moinef8f20182010-11-12 07:54:02 -03002321 reg_r8(sd, R518_I2C_CTL);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002322}
2323
2324/*
2325 * returns: negative is error, pos or zero is data
2326 *
2327 * The OV518 I2C I/O procedure is different, hence, this function.
2328 * This is normally only called from i2c_r(). Note that this function
2329 * always succeeds regardless of whether the sensor is present and working.
2330 */
Jean-François Moine9d1593a2010-11-11 08:04:06 -03002331static int ov518_i2c_r(struct sd *sd, u8 reg)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002332{
Jean-François Moinef8f20182010-11-12 07:54:02 -03002333 int value;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002334
2335 /* Select camera register */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002336 reg_w(sd, R51x_I2C_SADDR_2, reg);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002337
2338 /* Initiate 2-byte write cycle */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002339 reg_w(sd, R518_I2C_CTL, 0x03);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002340
2341 /* Initiate 2-byte read cycle */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002342 reg_w(sd, R518_I2C_CTL, 0x05);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002343 value = reg_r(sd, R51x_I2C_DATA);
Jean-François Moine858ea5e2010-11-12 13:53:10 -03002344 PDEBUG(D_USBI, "ov518_i2c_r %02x %02x", reg, value);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002345 return value;
2346}
2347
Jean-François Moinef8f20182010-11-12 07:54:02 -03002348static void ovfx2_i2c_w(struct sd *sd, u8 reg, u8 value)
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002349{
2350 int ret;
2351
Jean-François Moinef8f20182010-11-12 07:54:02 -03002352 if (sd->gspca_dev.usb_err < 0)
2353 return;
2354
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002355 ret = usb_control_msg(sd->gspca_dev.dev,
2356 usb_sndctrlpipe(sd->gspca_dev.dev, 0),
2357 0x02,
2358 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
Jean-François Moine9d1593a2010-11-11 08:04:06 -03002359 (u16) value, (u16) reg, NULL, 0, 500);
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002360
Hans de Goedea511ba92009-10-16 07:13:07 -03002361 if (ret < 0) {
Jean-François Moine858ea5e2010-11-12 13:53:10 -03002362 err("ovfx2_i2c_w %02x failed %d", reg, ret);
Jean-François Moinef8f20182010-11-12 07:54:02 -03002363 sd->gspca_dev.usb_err = ret;
Hans de Goedea511ba92009-10-16 07:13:07 -03002364 }
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002365
Jean-François Moine858ea5e2010-11-12 13:53:10 -03002366 PDEBUG(D_USBO, "ovfx2_i2c_w %02x %02x", reg, value);
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002367}
2368
Jean-François Moine9d1593a2010-11-11 08:04:06 -03002369static int ovfx2_i2c_r(struct sd *sd, u8 reg)
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002370{
2371 int ret;
2372
Jean-François Moinef8f20182010-11-12 07:54:02 -03002373 if (sd->gspca_dev.usb_err < 0)
2374 return -1;
2375
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002376 ret = usb_control_msg(sd->gspca_dev.dev,
2377 usb_rcvctrlpipe(sd->gspca_dev.dev, 0),
2378 0x03,
2379 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
Jean-François Moine9d1593a2010-11-11 08:04:06 -03002380 0, (u16) reg, sd->gspca_dev.usb_buf, 1, 500);
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002381
2382 if (ret >= 0) {
2383 ret = sd->gspca_dev.usb_buf[0];
Jean-François Moine858ea5e2010-11-12 13:53:10 -03002384 PDEBUG(D_USBI, "ovfx2_i2c_r %02x %02x", reg, ret);
Jean-François Moinef8f20182010-11-12 07:54:02 -03002385 } else {
Jean-François Moine858ea5e2010-11-12 13:53:10 -03002386 err("ovfx2_i2c_r %02x failed %d", reg, ret);
Jean-François Moinef8f20182010-11-12 07:54:02 -03002387 sd->gspca_dev.usb_err = ret;
2388 }
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002389
2390 return ret;
2391}
2392
Jean-François Moinef8f20182010-11-12 07:54:02 -03002393static void i2c_w(struct sd *sd, u8 reg, u8 value)
Hans de Goede1876bb92009-06-14 06:45:50 -03002394{
Hans de Goedefb1f9022009-10-16 07:42:53 -03002395 if (sd->sensor_reg_cache[reg] == value)
Jean-François Moinef8f20182010-11-12 07:54:02 -03002396 return;
Hans de Goedefb1f9022009-10-16 07:42:53 -03002397
Hans de Goede1876bb92009-06-14 06:45:50 -03002398 switch (sd->bridge) {
2399 case BRIDGE_OV511:
2400 case BRIDGE_OV511PLUS:
Jean-François Moinef8f20182010-11-12 07:54:02 -03002401 ov511_i2c_w(sd, reg, value);
Hans de Goedefb1f9022009-10-16 07:42:53 -03002402 break;
Hans de Goede1876bb92009-06-14 06:45:50 -03002403 case BRIDGE_OV518:
2404 case BRIDGE_OV518PLUS:
2405 case BRIDGE_OV519:
Jean-François Moinef8f20182010-11-12 07:54:02 -03002406 ov518_i2c_w(sd, reg, value);
Hans de Goedefb1f9022009-10-16 07:42:53 -03002407 break;
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002408 case BRIDGE_OVFX2:
Jean-François Moinef8f20182010-11-12 07:54:02 -03002409 ovfx2_i2c_w(sd, reg, value);
Hans de Goedefb1f9022009-10-16 07:42:53 -03002410 break;
Hans de Goedea511ba92009-10-16 07:13:07 -03002411 case BRIDGE_W9968CF:
Jean-François Moinef8f20182010-11-12 07:54:02 -03002412 w9968cf_i2c_w(sd, reg, value);
Hans de Goedefb1f9022009-10-16 07:42:53 -03002413 break;
Hans de Goede1876bb92009-06-14 06:45:50 -03002414 }
Hans de Goedefb1f9022009-10-16 07:42:53 -03002415
Jean-François Moinef8f20182010-11-12 07:54:02 -03002416 if (sd->gspca_dev.usb_err >= 0) {
Hans de Goedefb1f9022009-10-16 07:42:53 -03002417 /* Up on sensor reset empty the register cache */
2418 if (reg == 0x12 && (value & 0x80))
2419 memset(sd->sensor_reg_cache, -1,
Jean-François Moine87bae742010-11-12 05:31:34 -03002420 sizeof(sd->sensor_reg_cache));
Hans de Goedefb1f9022009-10-16 07:42:53 -03002421 else
2422 sd->sensor_reg_cache[reg] = value;
2423 }
Hans de Goede1876bb92009-06-14 06:45:50 -03002424}
2425
Jean-François Moine9d1593a2010-11-11 08:04:06 -03002426static int i2c_r(struct sd *sd, u8 reg)
Hans de Goede1876bb92009-06-14 06:45:50 -03002427{
Hans de Goede8394bcf2009-10-16 11:26:22 -03002428 int ret = -1;
Hans de Goedefb1f9022009-10-16 07:42:53 -03002429
2430 if (sd->sensor_reg_cache[reg] != -1)
2431 return sd->sensor_reg_cache[reg];
2432
Hans de Goede1876bb92009-06-14 06:45:50 -03002433 switch (sd->bridge) {
2434 case BRIDGE_OV511:
2435 case BRIDGE_OV511PLUS:
Hans de Goedefb1f9022009-10-16 07:42:53 -03002436 ret = ov511_i2c_r(sd, reg);
2437 break;
Hans de Goede1876bb92009-06-14 06:45:50 -03002438 case BRIDGE_OV518:
2439 case BRIDGE_OV518PLUS:
2440 case BRIDGE_OV519:
Hans de Goedefb1f9022009-10-16 07:42:53 -03002441 ret = ov518_i2c_r(sd, reg);
2442 break;
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002443 case BRIDGE_OVFX2:
Hans de Goedefb1f9022009-10-16 07:42:53 -03002444 ret = ovfx2_i2c_r(sd, reg);
2445 break;
Hans de Goedea511ba92009-10-16 07:13:07 -03002446 case BRIDGE_W9968CF:
Hans de Goedefb1f9022009-10-16 07:42:53 -03002447 ret = w9968cf_i2c_r(sd, reg);
2448 break;
Hans de Goede1876bb92009-06-14 06:45:50 -03002449 }
Hans de Goedefb1f9022009-10-16 07:42:53 -03002450
2451 if (ret >= 0)
2452 sd->sensor_reg_cache[reg] = ret;
2453
2454 return ret;
Hans de Goede1876bb92009-06-14 06:45:50 -03002455}
2456
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002457/* Writes bits at positions specified by mask to an I2C reg. Bits that are in
2458 * the same position as 1's in "mask" are cleared and set to "value". Bits
2459 * that are in the same position as 0's in "mask" are preserved, regardless
2460 * of their respective state in "value".
2461 */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002462static void i2c_w_mask(struct sd *sd,
Jean-François Moine9d1593a2010-11-11 08:04:06 -03002463 u8 reg,
2464 u8 value,
2465 u8 mask)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002466{
2467 int rc;
Jean-François Moine9d1593a2010-11-11 08:04:06 -03002468 u8 oldval;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002469
2470 value &= mask; /* Enforce mask on value */
2471 rc = i2c_r(sd, reg);
2472 if (rc < 0)
Jean-François Moinef8f20182010-11-12 07:54:02 -03002473 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002474 oldval = rc & ~mask; /* Clear the masked bits */
2475 value |= oldval; /* Set the desired bits */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002476 i2c_w(sd, reg, value);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002477}
2478
2479/* Temporarily stops OV511 from functioning. Must do this before changing
2480 * registers while the camera is streaming */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002481static inline void ov51x_stop(struct sd *sd)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002482{
2483 PDEBUG(D_STREAM, "stopping");
2484 sd->stopped = 1;
Hans de Goede49809d62009-06-07 12:10:39 -03002485 switch (sd->bridge) {
2486 case BRIDGE_OV511:
2487 case BRIDGE_OV511PLUS:
Jean-François Moinef8f20182010-11-12 07:54:02 -03002488 reg_w(sd, R51x_SYS_RESET, 0x3d);
2489 break;
Hans de Goede49809d62009-06-07 12:10:39 -03002490 case BRIDGE_OV518:
2491 case BRIDGE_OV518PLUS:
Jean-François Moinef8f20182010-11-12 07:54:02 -03002492 reg_w_mask(sd, R51x_SYS_RESET, 0x3a, 0x3a);
2493 break;
Hans de Goede49809d62009-06-07 12:10:39 -03002494 case BRIDGE_OV519:
Jean-François Moinef8f20182010-11-12 07:54:02 -03002495 reg_w(sd, OV519_R51_RESET1, 0x0f);
Jean-François Moine5927abc2010-11-12 15:32:29 -03002496 reg_w(sd, OV519_R51_RESET1, 0x00);
2497 reg_w(sd, 0x22, 0x00); /* FRAR */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002498 break;
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002499 case BRIDGE_OVFX2:
Jean-François Moinef8f20182010-11-12 07:54:02 -03002500 reg_w_mask(sd, 0x0f, 0x00, 0x02);
2501 break;
Hans de Goedea511ba92009-10-16 07:13:07 -03002502 case BRIDGE_W9968CF:
Jean-François Moinef8f20182010-11-12 07:54:02 -03002503 reg_w(sd, 0x3c, 0x0a05); /* stop USB transfer */
2504 break;
Hans de Goede49809d62009-06-07 12:10:39 -03002505 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002506}
2507
2508/* Restarts OV511 after ov511_stop() is called. Has no effect if it is not
2509 * actually stopped (for performance). */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002510static inline void ov51x_restart(struct sd *sd)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002511{
2512 PDEBUG(D_STREAM, "restarting");
2513 if (!sd->stopped)
Jean-François Moinef8f20182010-11-12 07:54:02 -03002514 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002515 sd->stopped = 0;
2516
2517 /* Reinitialize the stream */
Hans de Goede49809d62009-06-07 12:10:39 -03002518 switch (sd->bridge) {
2519 case BRIDGE_OV511:
2520 case BRIDGE_OV511PLUS:
Jean-François Moinef8f20182010-11-12 07:54:02 -03002521 reg_w(sd, R51x_SYS_RESET, 0x00);
2522 break;
Hans de Goede49809d62009-06-07 12:10:39 -03002523 case BRIDGE_OV518:
2524 case BRIDGE_OV518PLUS:
Jean-François Moinef8f20182010-11-12 07:54:02 -03002525 reg_w(sd, 0x2f, 0x80);
2526 reg_w(sd, R51x_SYS_RESET, 0x00);
2527 break;
Hans de Goede49809d62009-06-07 12:10:39 -03002528 case BRIDGE_OV519:
Jean-François Moine5927abc2010-11-12 15:32:29 -03002529 reg_w(sd, OV519_R51_RESET1, 0x0f);
Jean-François Moinef8f20182010-11-12 07:54:02 -03002530 reg_w(sd, OV519_R51_RESET1, 0x00);
Jean-François Moine5927abc2010-11-12 15:32:29 -03002531 reg_w(sd, 0x22, 0x1d); /* FRAR */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002532 break;
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002533 case BRIDGE_OVFX2:
Jean-François Moinef8f20182010-11-12 07:54:02 -03002534 reg_w_mask(sd, 0x0f, 0x02, 0x02);
2535 break;
Hans de Goedea511ba92009-10-16 07:13:07 -03002536 case BRIDGE_W9968CF:
Jean-François Moinef8f20182010-11-12 07:54:02 -03002537 reg_w(sd, 0x3c, 0x8a05); /* USB FIFO enable */
2538 break;
Hans de Goede49809d62009-06-07 12:10:39 -03002539 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002540}
2541
Jean-François Moinef8f20182010-11-12 07:54:02 -03002542static void ov51x_set_slave_ids(struct sd *sd, u8 slave);
Hans de Goede229bb7d2009-10-11 07:41:46 -03002543
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002544/* This does an initial reset of an OmniVision sensor and ensures that I2C
2545 * is synchronized. Returns <0 on failure.
2546 */
Jean-François Moine9d1593a2010-11-11 08:04:06 -03002547static int init_ov_sensor(struct sd *sd, u8 slave)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002548{
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03002549 int i;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002550
Jean-François Moinef8f20182010-11-12 07:54:02 -03002551 ov51x_set_slave_ids(sd, slave);
Hans de Goede229bb7d2009-10-11 07:41:46 -03002552
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002553 /* Reset the sensor */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002554 i2c_w(sd, 0x12, 0x80);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002555
2556 /* Wait for it to initialize */
2557 msleep(150);
2558
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03002559 for (i = 0; i < i2c_detect_tries; i++) {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002560 if (i2c_r(sd, OV7610_REG_ID_HIGH) == 0x7f &&
2561 i2c_r(sd, OV7610_REG_ID_LOW) == 0xa2) {
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03002562 PDEBUG(D_PROBE, "I2C synced in %d attempt(s)", i);
2563 return 0;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002564 }
2565
2566 /* Reset the sensor */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002567 i2c_w(sd, 0x12, 0x80);
2568
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002569 /* Wait for it to initialize */
2570 msleep(150);
Jean-François Moine87bae742010-11-12 05:31:34 -03002571
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002572 /* Dummy read to sync I2C */
2573 if (i2c_r(sd, 0x00) < 0)
Jean-François Moinef8f20182010-11-12 07:54:02 -03002574 return -1;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002575 }
Jean-François Moinef8f20182010-11-12 07:54:02 -03002576 return -1;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002577}
2578
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002579/* Set the read and write slave IDs. The "slave" argument is the write slave,
2580 * and the read slave will be set to (slave + 1).
2581 * This should not be called from outside the i2c I/O functions.
2582 * Sets I2C read and write slave IDs. Returns <0 for error
2583 */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002584static void ov51x_set_slave_ids(struct sd *sd,
Jean-François Moine9d1593a2010-11-11 08:04:06 -03002585 u8 slave)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002586{
Hans de Goedea511ba92009-10-16 07:13:07 -03002587 switch (sd->bridge) {
2588 case BRIDGE_OVFX2:
Jean-François Moinef8f20182010-11-12 07:54:02 -03002589 reg_w(sd, OVFX2_I2C_ADDR, slave);
2590 return;
Hans de Goedea511ba92009-10-16 07:13:07 -03002591 case BRIDGE_W9968CF:
2592 sd->sensor_addr = slave;
Jean-François Moinef8f20182010-11-12 07:54:02 -03002593 return;
Hans de Goedea511ba92009-10-16 07:13:07 -03002594 }
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002595
Jean-François Moinef8f20182010-11-12 07:54:02 -03002596 reg_w(sd, R51x_I2C_W_SID, slave);
2597 reg_w(sd, R51x_I2C_R_SID, slave + 1);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002598}
2599
Jean-François Moinef8f20182010-11-12 07:54:02 -03002600static void write_regvals(struct sd *sd,
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03002601 const struct ov_regvals *regvals,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002602 int n)
2603{
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002604 while (--n >= 0) {
Jean-François Moinef8f20182010-11-12 07:54:02 -03002605 reg_w(sd, regvals->reg, regvals->val);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002606 regvals++;
2607 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002608}
2609
Jean-François Moinef8f20182010-11-12 07:54:02 -03002610static void write_i2c_regvals(struct sd *sd,
2611 const struct ov_i2c_regvals *regvals,
2612 int n)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002613{
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002614 while (--n >= 0) {
Jean-François Moinef8f20182010-11-12 07:54:02 -03002615 i2c_w(sd, regvals->reg, regvals->val);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002616 regvals++;
2617 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002618}
2619
2620/****************************************************************************
2621 *
2622 * OV511 and sensor configuration
2623 *
2624 ***************************************************************************/
2625
Hans de Goede635118d2009-10-11 09:49:03 -03002626/* This initializes the OV2x10 / OV3610 / OV3620 */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002627static void ov_hires_configure(struct sd *sd)
Hans de Goede635118d2009-10-11 09:49:03 -03002628{
2629 int high, low;
2630
2631 if (sd->bridge != BRIDGE_OVFX2) {
Jean-François Moine0b656322010-09-13 05:19:58 -03002632 err("error hires sensors only supported with ovfx2");
Jean-François Moinef8f20182010-11-12 07:54:02 -03002633 return;
Hans de Goede635118d2009-10-11 09:49:03 -03002634 }
2635
2636 PDEBUG(D_PROBE, "starting ov hires configuration");
2637
2638 /* Detect sensor (sub)type */
2639 high = i2c_r(sd, 0x0a);
2640 low = i2c_r(sd, 0x0b);
2641 /* info("%x, %x", high, low); */
2642 if (high == 0x96 && low == 0x40) {
2643 PDEBUG(D_PROBE, "Sensor is an OV2610");
2644 sd->sensor = SEN_OV2610;
Jean-François Moine07c6c9c2011-02-10 13:32:22 -03002645 } else if (high == 0x96 && low == 0x41) {
2646 PDEBUG(D_PROBE, "Sensor is an OV2610AE");
2647 sd->sensor = SEN_OV2610AE;
Hans de Goede635118d2009-10-11 09:49:03 -03002648 } else if (high == 0x36 && (low & 0x0f) == 0x00) {
2649 PDEBUG(D_PROBE, "Sensor is an OV3610");
2650 sd->sensor = SEN_OV3610;
2651 } else {
Jean-François Moine858ea5e2010-11-12 13:53:10 -03002652 err("Error unknown sensor type: %02x%02x",
Jean-François Moine87bae742010-11-12 05:31:34 -03002653 high, low);
Hans de Goede635118d2009-10-11 09:49:03 -03002654 }
Hans de Goede635118d2009-10-11 09:49:03 -03002655}
2656
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002657/* This initializes the OV8110, OV8610 sensor. The OV8110 uses
2658 * the same register settings as the OV8610, since they are very similar.
2659 */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002660static void ov8xx0_configure(struct sd *sd)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002661{
2662 int rc;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002663
2664 PDEBUG(D_PROBE, "starting ov8xx0 configuration");
2665
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002666 /* Detect sensor (sub)type */
2667 rc = i2c_r(sd, OV7610_REG_COM_I);
2668 if (rc < 0) {
2669 PDEBUG(D_ERR, "Error detecting sensor type");
Jean-François Moinef8f20182010-11-12 07:54:02 -03002670 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002671 }
Jean-François Moinef8f20182010-11-12 07:54:02 -03002672 if ((rc & 3) == 1)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002673 sd->sensor = SEN_OV8610;
Jean-François Moinef8f20182010-11-12 07:54:02 -03002674 else
Jean-François Moine0b656322010-09-13 05:19:58 -03002675 err("Unknown image sensor version: %d", rc & 3);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002676}
2677
2678/* This initializes the OV7610, OV7620, or OV76BE sensor. The OV76BE uses
2679 * the same register settings as the OV7610, since they are very similar.
2680 */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002681static void ov7xx0_configure(struct sd *sd)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002682{
2683 int rc, high, low;
2684
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002685 PDEBUG(D_PROBE, "starting OV7xx0 configuration");
2686
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002687 /* Detect sensor (sub)type */
2688 rc = i2c_r(sd, OV7610_REG_COM_I);
2689
2690 /* add OV7670 here
2691 * it appears to be wrongly detected as a 7610 by default */
2692 if (rc < 0) {
2693 PDEBUG(D_ERR, "Error detecting sensor type");
Jean-François Moinef8f20182010-11-12 07:54:02 -03002694 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002695 }
2696 if ((rc & 3) == 3) {
2697 /* quick hack to make OV7670s work */
2698 high = i2c_r(sd, 0x0a);
2699 low = i2c_r(sd, 0x0b);
2700 /* info("%x, %x", high, low); */
Jean-François Moine7a5a4142010-12-25 13:58:45 -03002701 if (high == 0x76 && (low & 0xf0) == 0x70) {
2702 PDEBUG(D_PROBE, "Sensor is an OV76%02x", low);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002703 sd->sensor = SEN_OV7670;
2704 } else {
2705 PDEBUG(D_PROBE, "Sensor is an OV7610");
2706 sd->sensor = SEN_OV7610;
2707 }
2708 } else if ((rc & 3) == 1) {
2709 /* I don't know what's different about the 76BE yet. */
Hans de Goedeb282d872009-06-14 19:10:40 -03002710 if (i2c_r(sd, 0x15) & 1) {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002711 PDEBUG(D_PROBE, "Sensor is an OV7620AE");
Hans de Goede859cc472010-01-07 15:42:35 -03002712 sd->sensor = SEN_OV7620AE;
Hans de Goedeb282d872009-06-14 19:10:40 -03002713 } else {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002714 PDEBUG(D_PROBE, "Sensor is an OV76BE");
Hans de Goedeb282d872009-06-14 19:10:40 -03002715 sd->sensor = SEN_OV76BE;
2716 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002717 } else if ((rc & 3) == 0) {
2718 /* try to read product id registers */
2719 high = i2c_r(sd, 0x0a);
2720 if (high < 0) {
2721 PDEBUG(D_ERR, "Error detecting camera chip PID");
Jean-François Moinef8f20182010-11-12 07:54:02 -03002722 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002723 }
2724 low = i2c_r(sd, 0x0b);
2725 if (low < 0) {
2726 PDEBUG(D_ERR, "Error detecting camera chip VER");
Jean-François Moinef8f20182010-11-12 07:54:02 -03002727 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002728 }
2729 if (high == 0x76) {
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002730 switch (low) {
2731 case 0x30:
Jean-François Moine0b656322010-09-13 05:19:58 -03002732 err("Sensor is an OV7630/OV7635");
2733 err("7630 is not supported by this driver");
Jean-François Moinef8f20182010-11-12 07:54:02 -03002734 return;
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002735 case 0x40:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002736 PDEBUG(D_PROBE, "Sensor is an OV7645");
2737 sd->sensor = SEN_OV7640; /* FIXME */
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002738 break;
2739 case 0x45:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002740 PDEBUG(D_PROBE, "Sensor is an OV7645B");
2741 sd->sensor = SEN_OV7640; /* FIXME */
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002742 break;
2743 case 0x48:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002744 PDEBUG(D_PROBE, "Sensor is an OV7648");
Hans de Goede035d3a32010-01-09 08:14:43 -03002745 sd->sensor = SEN_OV7648;
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002746 break;
Jean-François Moine42e142f2010-11-13 05:10:27 -03002747 case 0x60:
2748 PDEBUG(D_PROBE, "Sensor is a OV7660");
2749 sd->sensor = SEN_OV7660;
2750 sd->invert_led = 0;
2751 break;
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002752 default:
2753 PDEBUG(D_PROBE, "Unknown sensor: 0x76%x", low);
Jean-François Moinef8f20182010-11-12 07:54:02 -03002754 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002755 }
2756 } else {
2757 PDEBUG(D_PROBE, "Sensor is an OV7620");
2758 sd->sensor = SEN_OV7620;
2759 }
2760 } else {
Jean-François Moine0b656322010-09-13 05:19:58 -03002761 err("Unknown image sensor version: %d", rc & 3);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002762 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002763}
2764
2765/* This initializes the OV6620, OV6630, OV6630AE, or OV6630AF sensor. */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002766static void ov6xx0_configure(struct sd *sd)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002767{
2768 int rc;
Jean-Francois Moine4202f712008-09-03 17:12:15 -03002769 PDEBUG(D_PROBE, "starting OV6xx0 configuration");
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002770
2771 /* Detect sensor (sub)type */
2772 rc = i2c_r(sd, OV7610_REG_COM_I);
2773 if (rc < 0) {
2774 PDEBUG(D_ERR, "Error detecting sensor type");
Jean-François Moinef8f20182010-11-12 07:54:02 -03002775 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002776 }
2777
2778 /* Ugh. The first two bits are the version bits, but
2779 * the entire register value must be used. I guess OVT
2780 * underestimated how many variants they would make. */
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002781 switch (rc) {
2782 case 0x00:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002783 sd->sensor = SEN_OV6630;
Jean-François Moine0b656322010-09-13 05:19:58 -03002784 warn("WARNING: Sensor is an OV66308. Your camera may have");
2785 warn("been misdetected in previous driver versions.");
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002786 break;
2787 case 0x01:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002788 sd->sensor = SEN_OV6620;
Hans de Goede7d971372009-06-14 05:28:17 -03002789 PDEBUG(D_PROBE, "Sensor is an OV6620");
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002790 break;
2791 case 0x02:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002792 sd->sensor = SEN_OV6630;
2793 PDEBUG(D_PROBE, "Sensor is an OV66308AE");
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002794 break;
2795 case 0x03:
Hans de Goede7d971372009-06-14 05:28:17 -03002796 sd->sensor = SEN_OV66308AF;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002797 PDEBUG(D_PROBE, "Sensor is an OV66308AF");
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002798 break;
2799 case 0x90:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002800 sd->sensor = SEN_OV6630;
Jean-François Moine0b656322010-09-13 05:19:58 -03002801 warn("WARNING: Sensor is an OV66307. Your camera may have");
2802 warn("been misdetected in previous driver versions.");
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002803 break;
2804 default:
Jean-François Moine0b656322010-09-13 05:19:58 -03002805 err("FATAL: Unknown sensor version: 0x%02x", rc);
Jean-François Moinef8f20182010-11-12 07:54:02 -03002806 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002807 }
2808
2809 /* Set sensor-specific vars */
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002810 sd->sif = 1;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002811}
2812
2813/* Turns on or off the LED. Only has an effect with OV511+/OV518(+)/OV519 */
2814static void ov51x_led_control(struct sd *sd, int on)
2815{
Hans de Goede9e4d8252009-06-14 06:25:06 -03002816 if (sd->invert_led)
2817 on = !on;
2818
Hans de Goede49809d62009-06-07 12:10:39 -03002819 switch (sd->bridge) {
2820 /* OV511 has no LED control */
2821 case BRIDGE_OV511PLUS:
Jean-François Moinea23acec2010-11-12 15:07:35 -03002822 reg_w(sd, R511_SYS_LED_CTL, on);
Hans de Goede49809d62009-06-07 12:10:39 -03002823 break;
2824 case BRIDGE_OV518:
2825 case BRIDGE_OV518PLUS:
Jean-François Moinea23acec2010-11-12 15:07:35 -03002826 reg_w_mask(sd, R518_GPIO_OUT, 0x02 * on, 0x02);
Hans de Goede49809d62009-06-07 12:10:39 -03002827 break;
2828 case BRIDGE_OV519:
Jean-François Moinea23acec2010-11-12 15:07:35 -03002829 reg_w_mask(sd, OV519_GPIO_DATA_OUT0, on, 1);
Hans de Goede49809d62009-06-07 12:10:39 -03002830 break;
2831 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002832}
2833
Hans de Goede417a4d22010-02-19 07:37:08 -03002834static void sd_reset_snapshot(struct gspca_dev *gspca_dev)
2835{
2836 struct sd *sd = (struct sd *) gspca_dev;
2837
2838 if (!sd->snapshot_needs_reset)
2839 return;
2840
2841 /* Note it is important that we clear sd->snapshot_needs_reset,
2842 before actually clearing the snapshot state in the bridge
2843 otherwise we might race with the pkt_scan interrupt handler */
2844 sd->snapshot_needs_reset = 0;
2845
2846 switch (sd->bridge) {
Hans de Goede88e8d202010-02-20 04:45:49 -03002847 case BRIDGE_OV511:
2848 case BRIDGE_OV511PLUS:
2849 reg_w(sd, R51x_SYS_SNAP, 0x02);
2850 reg_w(sd, R51x_SYS_SNAP, 0x00);
2851 break;
Hans de Goede92e232a2010-02-20 04:30:45 -03002852 case BRIDGE_OV518:
2853 case BRIDGE_OV518PLUS:
2854 reg_w(sd, R51x_SYS_SNAP, 0x02); /* Reset */
2855 reg_w(sd, R51x_SYS_SNAP, 0x01); /* Enable */
2856 break;
Hans de Goede417a4d22010-02-19 07:37:08 -03002857 case BRIDGE_OV519:
2858 reg_w(sd, R51x_SYS_RESET, 0x40);
2859 reg_w(sd, R51x_SYS_RESET, 0x00);
2860 break;
2861 }
2862}
2863
Jean-François Moinef8f20182010-11-12 07:54:02 -03002864static void ov51x_upload_quan_tables(struct sd *sd)
Hans de Goede49809d62009-06-07 12:10:39 -03002865{
Hans de Goede1876bb92009-06-14 06:45:50 -03002866 const unsigned char yQuanTable511[] = {
2867 0, 1, 1, 2, 2, 3, 3, 4,
2868 1, 1, 1, 2, 2, 3, 4, 4,
2869 1, 1, 2, 2, 3, 4, 4, 4,
2870 2, 2, 2, 3, 4, 4, 4, 4,
2871 2, 2, 3, 4, 4, 5, 5, 5,
2872 3, 3, 4, 4, 5, 5, 5, 5,
2873 3, 4, 4, 4, 5, 5, 5, 5,
2874 4, 4, 4, 4, 5, 5, 5, 5
2875 };
2876
2877 const unsigned char uvQuanTable511[] = {
2878 0, 2, 2, 3, 4, 4, 4, 4,
2879 2, 2, 2, 4, 4, 4, 4, 4,
2880 2, 2, 3, 4, 4, 4, 4, 4,
2881 3, 4, 4, 4, 4, 4, 4, 4,
2882 4, 4, 4, 4, 4, 4, 4, 4,
2883 4, 4, 4, 4, 4, 4, 4, 4,
2884 4, 4, 4, 4, 4, 4, 4, 4,
2885 4, 4, 4, 4, 4, 4, 4, 4
2886 };
2887
2888 /* OV518 quantization tables are 8x4 (instead of 8x8) */
Hans de Goede49809d62009-06-07 12:10:39 -03002889 const unsigned char yQuanTable518[] = {
2890 5, 4, 5, 6, 6, 7, 7, 7,
2891 5, 5, 5, 5, 6, 7, 7, 7,
2892 6, 6, 6, 6, 7, 7, 7, 8,
2893 7, 7, 6, 7, 7, 7, 8, 8
2894 };
Hans de Goede49809d62009-06-07 12:10:39 -03002895 const unsigned char uvQuanTable518[] = {
2896 6, 6, 6, 7, 7, 7, 7, 7,
2897 6, 6, 6, 7, 7, 7, 7, 7,
2898 6, 6, 6, 7, 7, 7, 7, 8,
2899 7, 7, 7, 7, 7, 7, 8, 8
2900 };
2901
Hans de Goede1876bb92009-06-14 06:45:50 -03002902 const unsigned char *pYTable, *pUVTable;
Hans de Goede49809d62009-06-07 12:10:39 -03002903 unsigned char val0, val1;
Jean-François Moinef8f20182010-11-12 07:54:02 -03002904 int i, size, reg = R51x_COMP_LUT_BEGIN;
Hans de Goede49809d62009-06-07 12:10:39 -03002905
2906 PDEBUG(D_PROBE, "Uploading quantization tables");
2907
Hans de Goede1876bb92009-06-14 06:45:50 -03002908 if (sd->bridge == BRIDGE_OV511 || sd->bridge == BRIDGE_OV511PLUS) {
2909 pYTable = yQuanTable511;
2910 pUVTable = uvQuanTable511;
Jean-François Moine87bae742010-11-12 05:31:34 -03002911 size = 32;
Hans de Goede1876bb92009-06-14 06:45:50 -03002912 } else {
2913 pYTable = yQuanTable518;
2914 pUVTable = uvQuanTable518;
Jean-François Moine87bae742010-11-12 05:31:34 -03002915 size = 16;
Hans de Goede1876bb92009-06-14 06:45:50 -03002916 }
2917
2918 for (i = 0; i < size; i++) {
Hans de Goede49809d62009-06-07 12:10:39 -03002919 val0 = *pYTable++;
2920 val1 = *pYTable++;
2921 val0 &= 0x0f;
2922 val1 &= 0x0f;
2923 val0 |= val1 << 4;
Jean-François Moinef8f20182010-11-12 07:54:02 -03002924 reg_w(sd, reg, val0);
Hans de Goede49809d62009-06-07 12:10:39 -03002925
2926 val0 = *pUVTable++;
2927 val1 = *pUVTable++;
2928 val0 &= 0x0f;
2929 val1 &= 0x0f;
2930 val0 |= val1 << 4;
Jean-François Moinef8f20182010-11-12 07:54:02 -03002931 reg_w(sd, reg + size, val0);
Hans de Goede49809d62009-06-07 12:10:39 -03002932
2933 reg++;
2934 }
Hans de Goede49809d62009-06-07 12:10:39 -03002935}
2936
Hans de Goede1876bb92009-06-14 06:45:50 -03002937/* This initializes the OV511/OV511+ and the sensor */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002938static void ov511_configure(struct gspca_dev *gspca_dev)
Hans de Goede1876bb92009-06-14 06:45:50 -03002939{
2940 struct sd *sd = (struct sd *) gspca_dev;
Hans de Goede1876bb92009-06-14 06:45:50 -03002941
2942 /* For 511 and 511+ */
2943 const struct ov_regvals init_511[] = {
2944 { R51x_SYS_RESET, 0x7f },
2945 { R51x_SYS_INIT, 0x01 },
2946 { R51x_SYS_RESET, 0x7f },
2947 { R51x_SYS_INIT, 0x01 },
2948 { R51x_SYS_RESET, 0x3f },
2949 { R51x_SYS_INIT, 0x01 },
2950 { R51x_SYS_RESET, 0x3d },
2951 };
2952
2953 const struct ov_regvals norm_511[] = {
Jean-François Moine780e3122010-10-19 04:29:10 -03002954 { R511_DRAM_FLOW_CTL, 0x01 },
Hans de Goede1876bb92009-06-14 06:45:50 -03002955 { R51x_SYS_SNAP, 0x00 },
2956 { R51x_SYS_SNAP, 0x02 },
2957 { R51x_SYS_SNAP, 0x00 },
2958 { R511_FIFO_OPTS, 0x1f },
2959 { R511_COMP_EN, 0x00 },
2960 { R511_COMP_LUT_EN, 0x03 },
2961 };
2962
2963 const struct ov_regvals norm_511_p[] = {
2964 { R511_DRAM_FLOW_CTL, 0xff },
2965 { R51x_SYS_SNAP, 0x00 },
2966 { R51x_SYS_SNAP, 0x02 },
2967 { R51x_SYS_SNAP, 0x00 },
2968 { R511_FIFO_OPTS, 0xff },
2969 { R511_COMP_EN, 0x00 },
2970 { R511_COMP_LUT_EN, 0x03 },
2971 };
2972
2973 const struct ov_regvals compress_511[] = {
2974 { 0x70, 0x1f },
2975 { 0x71, 0x05 },
2976 { 0x72, 0x06 },
2977 { 0x73, 0x06 },
2978 { 0x74, 0x14 },
2979 { 0x75, 0x03 },
2980 { 0x76, 0x04 },
2981 { 0x77, 0x04 },
2982 };
2983
2984 PDEBUG(D_PROBE, "Device custom id %x", reg_r(sd, R51x_SYS_CUST_ID));
2985
Jean-François Moinef8f20182010-11-12 07:54:02 -03002986 write_regvals(sd, init_511, ARRAY_SIZE(init_511));
Hans de Goede1876bb92009-06-14 06:45:50 -03002987
2988 switch (sd->bridge) {
2989 case BRIDGE_OV511:
Jean-François Moinef8f20182010-11-12 07:54:02 -03002990 write_regvals(sd, norm_511, ARRAY_SIZE(norm_511));
Hans de Goede1876bb92009-06-14 06:45:50 -03002991 break;
2992 case BRIDGE_OV511PLUS:
Jean-François Moinef8f20182010-11-12 07:54:02 -03002993 write_regvals(sd, norm_511_p, ARRAY_SIZE(norm_511_p));
Hans de Goede1876bb92009-06-14 06:45:50 -03002994 break;
2995 }
2996
2997 /* Init compression */
Jean-François Moinef8f20182010-11-12 07:54:02 -03002998 write_regvals(sd, compress_511, ARRAY_SIZE(compress_511));
Hans de Goede1876bb92009-06-14 06:45:50 -03002999
Jean-François Moinef8f20182010-11-12 07:54:02 -03003000 ov51x_upload_quan_tables(sd);
Hans de Goede1876bb92009-06-14 06:45:50 -03003001}
3002
Hans de Goede49809d62009-06-07 12:10:39 -03003003/* This initializes the OV518/OV518+ and the sensor */
Jean-François Moinef8f20182010-11-12 07:54:02 -03003004static void ov518_configure(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003005{
3006 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003007
Hans de Goede49809d62009-06-07 12:10:39 -03003008 /* For 518 and 518+ */
Hans de Goedee080fcd2009-06-18 05:03:16 -03003009 const struct ov_regvals init_518[] = {
Hans de Goede49809d62009-06-07 12:10:39 -03003010 { R51x_SYS_RESET, 0x40 },
3011 { R51x_SYS_INIT, 0xe1 },
3012 { R51x_SYS_RESET, 0x3e },
3013 { R51x_SYS_INIT, 0xe1 },
3014 { R51x_SYS_RESET, 0x00 },
3015 { R51x_SYS_INIT, 0xe1 },
3016 { 0x46, 0x00 },
3017 { 0x5d, 0x03 },
3018 };
3019
Hans de Goedee080fcd2009-06-18 05:03:16 -03003020 const struct ov_regvals norm_518[] = {
Hans de Goede49809d62009-06-07 12:10:39 -03003021 { R51x_SYS_SNAP, 0x02 }, /* Reset */
3022 { R51x_SYS_SNAP, 0x01 }, /* Enable */
Jean-François Moine780e3122010-10-19 04:29:10 -03003023 { 0x31, 0x0f },
Hans de Goede49809d62009-06-07 12:10:39 -03003024 { 0x5d, 0x03 },
3025 { 0x24, 0x9f },
3026 { 0x25, 0x90 },
3027 { 0x20, 0x00 },
3028 { 0x51, 0x04 },
3029 { 0x71, 0x19 },
3030 { 0x2f, 0x80 },
3031 };
3032
Hans de Goedee080fcd2009-06-18 05:03:16 -03003033 const struct ov_regvals norm_518_p[] = {
Hans de Goede49809d62009-06-07 12:10:39 -03003034 { R51x_SYS_SNAP, 0x02 }, /* Reset */
3035 { R51x_SYS_SNAP, 0x01 }, /* Enable */
Jean-François Moine780e3122010-10-19 04:29:10 -03003036 { 0x31, 0x0f },
Hans de Goede49809d62009-06-07 12:10:39 -03003037 { 0x5d, 0x03 },
3038 { 0x24, 0x9f },
3039 { 0x25, 0x90 },
3040 { 0x20, 0x60 },
3041 { 0x51, 0x02 },
3042 { 0x71, 0x19 },
3043 { 0x40, 0xff },
3044 { 0x41, 0x42 },
3045 { 0x46, 0x00 },
3046 { 0x33, 0x04 },
3047 { 0x21, 0x19 },
3048 { 0x3f, 0x10 },
3049 { 0x2f, 0x80 },
3050 };
3051
3052 /* First 5 bits of custom ID reg are a revision ID on OV518 */
3053 PDEBUG(D_PROBE, "Device revision %d",
Jean-François Moine87bae742010-11-12 05:31:34 -03003054 0x1f & reg_r(sd, R51x_SYS_CUST_ID));
Hans de Goede49809d62009-06-07 12:10:39 -03003055
Jean-François Moinef8f20182010-11-12 07:54:02 -03003056 write_regvals(sd, init_518, ARRAY_SIZE(init_518));
Hans de Goede49809d62009-06-07 12:10:39 -03003057
3058 /* Set LED GPIO pin to output mode */
Jean-François Moinef8f20182010-11-12 07:54:02 -03003059 reg_w_mask(sd, R518_GPIO_CTL, 0x00, 0x02);
Hans de Goede49809d62009-06-07 12:10:39 -03003060
3061 switch (sd->bridge) {
3062 case BRIDGE_OV518:
Jean-François Moinef8f20182010-11-12 07:54:02 -03003063 write_regvals(sd, norm_518, ARRAY_SIZE(norm_518));
Hans de Goede49809d62009-06-07 12:10:39 -03003064 break;
3065 case BRIDGE_OV518PLUS:
Jean-François Moinef8f20182010-11-12 07:54:02 -03003066 write_regvals(sd, norm_518_p, ARRAY_SIZE(norm_518_p));
Hans de Goede49809d62009-06-07 12:10:39 -03003067 break;
3068 }
3069
Jean-François Moinef8f20182010-11-12 07:54:02 -03003070 ov51x_upload_quan_tables(sd);
Hans de Goede49809d62009-06-07 12:10:39 -03003071
Jean-François Moinef8f20182010-11-12 07:54:02 -03003072 reg_w(sd, 0x2f, 0x80);
Hans de Goede49809d62009-06-07 12:10:39 -03003073}
3074
Jean-François Moinef8f20182010-11-12 07:54:02 -03003075static void ov519_configure(struct sd *sd)
Hans de Goede49809d62009-06-07 12:10:39 -03003076{
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03003077 static const struct ov_regvals init_519[] = {
Jean-François Moine87bae742010-11-12 05:31:34 -03003078 { 0x5a, 0x6d }, /* EnableSystem */
Jean-François Moinefc63de882011-01-13 05:35:18 -03003079 { 0x53, 0x9b }, /* don't enable the microcontroller */
Jean-François Moine21867802010-11-12 06:12:09 -03003080 { OV519_R54_EN_CLK1, 0xff }, /* set bit2 to enable jpeg */
Jean-François Moine87bae742010-11-12 05:31:34 -03003081 { 0x5d, 0x03 },
3082 { 0x49, 0x01 },
3083 { 0x48, 0x00 },
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003084 /* Set LED pin to output mode. Bit 4 must be cleared or sensor
3085 * detection will fail. This deserves further investigation. */
3086 { OV519_GPIO_IO_CTRL0, 0xee },
Jean-François Moine21867802010-11-12 06:12:09 -03003087 { OV519_R51_RESET1, 0x0f },
3088 { OV519_R51_RESET1, 0x00 },
Jean-François Moine87bae742010-11-12 05:31:34 -03003089 { 0x22, 0x00 },
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003090 /* windows reads 0x55 at this point*/
3091 };
3092
Jean-François Moinef8f20182010-11-12 07:54:02 -03003093 write_regvals(sd, init_519, ARRAY_SIZE(init_519));
Hans de Goede49809d62009-06-07 12:10:39 -03003094}
3095
Jean-François Moinef8f20182010-11-12 07:54:02 -03003096static void ovfx2_configure(struct sd *sd)
Hans de Goedeb46aaa02009-10-12 10:07:57 -03003097{
3098 static const struct ov_regvals init_fx2[] = {
3099 { 0x00, 0x60 },
3100 { 0x02, 0x01 },
3101 { 0x0f, 0x1d },
3102 { 0xe9, 0x82 },
3103 { 0xea, 0xc7 },
3104 { 0xeb, 0x10 },
3105 { 0xec, 0xf6 },
3106 };
3107
3108 sd->stopped = 1;
3109
Jean-François Moinef8f20182010-11-12 07:54:02 -03003110 write_regvals(sd, init_fx2, ARRAY_SIZE(init_fx2));
Hans de Goedeb46aaa02009-10-12 10:07:57 -03003111}
3112
Jean-François Moine42e142f2010-11-13 05:10:27 -03003113/* set the mode */
3114/* This function works for ov7660 only */
3115static void ov519_set_mode(struct sd *sd)
3116{
3117 static const struct ov_regvals bridge_ov7660[2][10] = {
3118 {{0x10, 0x14}, {0x11, 0x1e}, {0x12, 0x00}, {0x13, 0x00},
3119 {0x14, 0x00}, {0x15, 0x00}, {0x16, 0x00}, {0x20, 0x0c},
3120 {0x25, 0x01}, {0x26, 0x00}},
3121 {{0x10, 0x28}, {0x11, 0x3c}, {0x12, 0x00}, {0x13, 0x00},
3122 {0x14, 0x00}, {0x15, 0x00}, {0x16, 0x00}, {0x20, 0x0c},
3123 {0x25, 0x03}, {0x26, 0x00}}
3124 };
3125 static const struct ov_i2c_regvals sensor_ov7660[2][3] = {
3126 {{0x12, 0x00}, {0x24, 0x00}, {0x0c, 0x0c}},
3127 {{0x12, 0x00}, {0x04, 0x00}, {0x0c, 0x00}}
3128 };
3129 static const struct ov_i2c_regvals sensor_ov7660_2[] = {
3130 {OV7670_R17_HSTART, 0x13},
3131 {OV7670_R18_HSTOP, 0x01},
3132 {OV7670_R32_HREF, 0x92},
3133 {OV7670_R19_VSTART, 0x02},
3134 {OV7670_R1A_VSTOP, 0x7a},
3135 {OV7670_R03_VREF, 0x00},
3136/* {0x33, 0x00}, */
3137/* {0x34, 0x07}, */
3138/* {0x36, 0x00}, */
3139/* {0x6b, 0x0a}, */
3140 };
3141
3142 write_regvals(sd, bridge_ov7660[sd->gspca_dev.curr_mode],
3143 ARRAY_SIZE(bridge_ov7660[0]));
3144 write_i2c_regvals(sd, sensor_ov7660[sd->gspca_dev.curr_mode],
3145 ARRAY_SIZE(sensor_ov7660[0]));
3146 write_i2c_regvals(sd, sensor_ov7660_2,
3147 ARRAY_SIZE(sensor_ov7660_2));
3148}
3149
3150/* set the frame rate */
3151/* This function works for sensors ov7640, ov7648 ov7660 and ov7670 only */
3152static void ov519_set_fr(struct sd *sd)
3153{
3154 int fr;
3155 u8 clock;
3156 /* frame rate table with indices:
3157 * - mode = 0: 320x240, 1: 640x480
3158 * - fr rate = 0: 30, 1: 25, 2: 20, 3: 15, 4: 10, 5: 5
3159 * - reg = 0: bridge a4, 1: bridge 23, 2: sensor 11 (clock)
3160 */
3161 static const u8 fr_tb[2][6][3] = {
3162 {{0x04, 0xff, 0x00},
3163 {0x04, 0x1f, 0x00},
3164 {0x04, 0x1b, 0x00},
3165 {0x04, 0x15, 0x00},
3166 {0x04, 0x09, 0x00},
3167 {0x04, 0x01, 0x00}},
3168 {{0x0c, 0xff, 0x00},
3169 {0x0c, 0x1f, 0x00},
3170 {0x0c, 0x1b, 0x00},
3171 {0x04, 0xff, 0x01},
3172 {0x04, 0x1f, 0x01},
3173 {0x04, 0x1b, 0x01}},
3174 };
3175
3176 if (frame_rate > 0)
3177 sd->frame_rate = frame_rate;
3178 if (sd->frame_rate >= 30)
3179 fr = 0;
3180 else if (sd->frame_rate >= 25)
3181 fr = 1;
3182 else if (sd->frame_rate >= 20)
3183 fr = 2;
3184 else if (sd->frame_rate >= 15)
3185 fr = 3;
3186 else if (sd->frame_rate >= 10)
3187 fr = 4;
3188 else
3189 fr = 5;
3190 reg_w(sd, 0xa4, fr_tb[sd->gspca_dev.curr_mode][fr][0]);
3191 reg_w(sd, 0x23, fr_tb[sd->gspca_dev.curr_mode][fr][1]);
3192 clock = fr_tb[sd->gspca_dev.curr_mode][fr][2];
3193 if (sd->sensor == SEN_OV7660)
3194 clock |= 0x80; /* enable double clock */
3195 ov518_i2c_w(sd, OV7670_R11_CLKRC, clock);
3196}
3197
Hans de Goede49809d62009-06-07 12:10:39 -03003198/* this function is called at probe time */
3199static int sd_config(struct gspca_dev *gspca_dev,
3200 const struct usb_device_id *id)
3201{
3202 struct sd *sd = (struct sd *) gspca_dev;
Hans de Goedeb46aaa02009-10-12 10:07:57 -03003203 struct cam *cam = &gspca_dev->cam;
Hans de Goede49809d62009-06-07 12:10:39 -03003204
Hans de Goede9e4d8252009-06-14 06:25:06 -03003205 sd->bridge = id->driver_info & BRIDGE_MASK;
Jean-François Moinea23acec2010-11-12 15:07:35 -03003206 sd->invert_led = (id->driver_info & BRIDGE_INVERT_LED) != 0;
Hans de Goede49809d62009-06-07 12:10:39 -03003207
3208 switch (sd->bridge) {
Hans de Goede1876bb92009-06-14 06:45:50 -03003209 case BRIDGE_OV511:
3210 case BRIDGE_OV511PLUS:
Jean-François Moine7491f782010-11-13 03:56:41 -03003211 cam->cam_mode = ov511_vga_mode;
3212 cam->nmodes = ARRAY_SIZE(ov511_vga_mode);
3213 break;
3214 case BRIDGE_OV518:
3215 case BRIDGE_OV518PLUS:
3216 cam->cam_mode = ov518_vga_mode;
3217 cam->nmodes = ARRAY_SIZE(ov518_vga_mode);
3218 break;
3219 case BRIDGE_OV519:
3220 cam->cam_mode = ov519_vga_mode;
3221 cam->nmodes = ARRAY_SIZE(ov519_vga_mode);
3222 sd->invert_led = !sd->invert_led;
3223 break;
3224 case BRIDGE_OVFX2:
3225 cam->cam_mode = ov519_vga_mode;
3226 cam->nmodes = ARRAY_SIZE(ov519_vga_mode);
3227 cam->bulk_size = OVFX2_BULK_SIZE;
3228 cam->bulk_nurbs = MAX_NURBS;
3229 cam->bulk = 1;
3230 break;
3231 case BRIDGE_W9968CF:
3232 cam->cam_mode = w9968cf_vga_mode;
3233 cam->nmodes = ARRAY_SIZE(w9968cf_vga_mode);
3234 cam->reverse_alts = 1;
3235 break;
3236 }
3237
3238 gspca_dev->cam.ctrls = sd->ctrls;
3239 sd->quality = QUALITY_DEF;
3240
3241 return 0;
3242}
3243
3244/* this function is called at probe and resume time */
3245static int sd_init(struct gspca_dev *gspca_dev)
3246{
3247 struct sd *sd = (struct sd *) gspca_dev;
3248 struct cam *cam = &gspca_dev->cam;
3249
3250 switch (sd->bridge) {
3251 case BRIDGE_OV511:
3252 case BRIDGE_OV511PLUS:
Jean-François Moinef8f20182010-11-12 07:54:02 -03003253 ov511_configure(gspca_dev);
Hans de Goede1876bb92009-06-14 06:45:50 -03003254 break;
Hans de Goede49809d62009-06-07 12:10:39 -03003255 case BRIDGE_OV518:
3256 case BRIDGE_OV518PLUS:
Jean-François Moinef8f20182010-11-12 07:54:02 -03003257 ov518_configure(gspca_dev);
Hans de Goede49809d62009-06-07 12:10:39 -03003258 break;
3259 case BRIDGE_OV519:
Jean-François Moinef8f20182010-11-12 07:54:02 -03003260 ov519_configure(sd);
Hans de Goede49809d62009-06-07 12:10:39 -03003261 break;
Hans de Goedeb46aaa02009-10-12 10:07:57 -03003262 case BRIDGE_OVFX2:
Jean-François Moinef8f20182010-11-12 07:54:02 -03003263 ovfx2_configure(sd);
Hans de Goedeb46aaa02009-10-12 10:07:57 -03003264 break;
Hans de Goedea511ba92009-10-16 07:13:07 -03003265 case BRIDGE_W9968CF:
Jean-François Moinef8f20182010-11-12 07:54:02 -03003266 w9968cf_configure(sd);
Hans de Goedea511ba92009-10-16 07:13:07 -03003267 break;
Hans de Goede49809d62009-06-07 12:10:39 -03003268 }
3269
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003270 /* The OV519 must be more aggressive about sensor detection since
3271 * I2C write will never fail if the sensor is not present. We have
3272 * to try to initialize the sensor to detect its presence */
Jean-François Moine7bbe6b82010-11-11 08:27:24 -03003273 sd->sensor = -1;
Hans de Goede229bb7d2009-10-11 07:41:46 -03003274
3275 /* Test for 76xx */
3276 if (init_ov_sensor(sd, OV7xx0_SID) >= 0) {
Jean-François Moinef8f20182010-11-12 07:54:02 -03003277 ov7xx0_configure(sd);
3278
Hans de Goede229bb7d2009-10-11 07:41:46 -03003279 /* Test for 6xx0 */
3280 } else if (init_ov_sensor(sd, OV6xx0_SID) >= 0) {
Jean-François Moinef8f20182010-11-12 07:54:02 -03003281 ov6xx0_configure(sd);
3282
Hans de Goede229bb7d2009-10-11 07:41:46 -03003283 /* Test for 8xx0 */
3284 } else if (init_ov_sensor(sd, OV8xx0_SID) >= 0) {
Jean-François Moinef8f20182010-11-12 07:54:02 -03003285 ov8xx0_configure(sd);
3286
Hans de Goede635118d2009-10-11 09:49:03 -03003287 /* Test for 3xxx / 2xxx */
3288 } else if (init_ov_sensor(sd, OV_HIRES_SID) >= 0) {
Jean-François Moinef8f20182010-11-12 07:54:02 -03003289 ov_hires_configure(sd);
Hans de Goede229bb7d2009-10-11 07:41:46 -03003290 } else {
Jean-François Moine0b656322010-09-13 05:19:58 -03003291 err("Can't determine sensor slave IDs");
Hans de Goede229bb7d2009-10-11 07:41:46 -03003292 goto error;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003293 }
3294
Jean-François Moine7bbe6b82010-11-11 08:27:24 -03003295 if (sd->sensor < 0)
3296 goto error;
3297
Jean-François Moine7491f782010-11-13 03:56:41 -03003298 ov51x_led_control(sd, 0); /* turn LED off */
3299
Hans de Goede49809d62009-06-07 12:10:39 -03003300 switch (sd->bridge) {
Hans de Goede1876bb92009-06-14 06:45:50 -03003301 case BRIDGE_OV511:
3302 case BRIDGE_OV511PLUS:
Jean-François Moine7491f782010-11-13 03:56:41 -03003303 if (sd->sif) {
Hans de Goede1876bb92009-06-14 06:45:50 -03003304 cam->cam_mode = ov511_sif_mode;
3305 cam->nmodes = ARRAY_SIZE(ov511_sif_mode);
3306 }
3307 break;
Hans de Goede49809d62009-06-07 12:10:39 -03003308 case BRIDGE_OV518:
3309 case BRIDGE_OV518PLUS:
Jean-François Moine7491f782010-11-13 03:56:41 -03003310 if (sd->sif) {
Hans de Goede49809d62009-06-07 12:10:39 -03003311 cam->cam_mode = ov518_sif_mode;
3312 cam->nmodes = ARRAY_SIZE(ov518_sif_mode);
3313 }
3314 break;
3315 case BRIDGE_OV519:
Jean-François Moine7491f782010-11-13 03:56:41 -03003316 if (sd->sif) {
Hans de Goede49809d62009-06-07 12:10:39 -03003317 cam->cam_mode = ov519_sif_mode;
3318 cam->nmodes = ARRAY_SIZE(ov519_sif_mode);
3319 }
3320 break;
Hans de Goede635118d2009-10-11 09:49:03 -03003321 case BRIDGE_OVFX2:
Jean-François Moine07c6c9c2011-02-10 13:32:22 -03003322 switch (sd->sensor) {
3323 case SEN_OV2610:
3324 case SEN_OV2610AE:
Hans de Goede635118d2009-10-11 09:49:03 -03003325 cam->cam_mode = ovfx2_ov2610_mode;
3326 cam->nmodes = ARRAY_SIZE(ovfx2_ov2610_mode);
Jean-François Moine07c6c9c2011-02-10 13:32:22 -03003327 break;
3328 case SEN_OV3610:
Hans de Goede635118d2009-10-11 09:49:03 -03003329 cam->cam_mode = ovfx2_ov3610_mode;
3330 cam->nmodes = ARRAY_SIZE(ovfx2_ov3610_mode);
Jean-François Moine07c6c9c2011-02-10 13:32:22 -03003331 break;
3332 default:
3333 if (sd->sif) {
3334 cam->cam_mode = ov519_sif_mode;
3335 cam->nmodes = ARRAY_SIZE(ov519_sif_mode);
3336 }
3337 break;
Hans de Goede635118d2009-10-11 09:49:03 -03003338 }
3339 break;
Hans de Goedea511ba92009-10-16 07:13:07 -03003340 case BRIDGE_W9968CF:
Hans de Goede79b35902009-10-19 06:08:01 -03003341 if (sd->sif)
Jean-François Moine7491f782010-11-13 03:56:41 -03003342 cam->nmodes = ARRAY_SIZE(w9968cf_vga_mode) - 1;
Hans de Goedea511ba92009-10-16 07:13:07 -03003343
3344 /* w9968cf needs initialisation once the sensor is known */
Jean-François Moinef8f20182010-11-12 07:54:02 -03003345 w9968cf_init(sd);
Hans de Goedea511ba92009-10-16 07:13:07 -03003346 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003347 }
Jean-François Moine83db7682010-11-12 07:14:08 -03003348
3349 gspca_dev->ctrl_dis = ctrl_dis[sd->sensor];
Hans de Goede02ab18b2009-06-14 04:32:04 -03003350
Jean-Francois Moine4202f712008-09-03 17:12:15 -03003351 /* initialize the sensor */
3352 switch (sd->sensor) {
Hans de Goede635118d2009-10-11 09:49:03 -03003353 case SEN_OV2610:
Jean-François Moinef8f20182010-11-12 07:54:02 -03003354 write_i2c_regvals(sd, norm_2610, ARRAY_SIZE(norm_2610));
3355
Hans de Goede635118d2009-10-11 09:49:03 -03003356 /* Enable autogain, autoexpo, awb, bandfilter */
Jean-François Moinef8f20182010-11-12 07:54:02 -03003357 i2c_w_mask(sd, 0x13, 0x27, 0x27);
Hans de Goede635118d2009-10-11 09:49:03 -03003358 break;
Jean-François Moine07c6c9c2011-02-10 13:32:22 -03003359 case SEN_OV2610AE:
3360 write_i2c_regvals(sd, norm_2610ae, ARRAY_SIZE(norm_2610ae));
3361
3362 /* enable autoexpo */
3363 i2c_w_mask(sd, 0x13, 0x05, 0x05);
3364 break;
Hans de Goede635118d2009-10-11 09:49:03 -03003365 case SEN_OV3610:
Jean-François Moinef8f20182010-11-12 07:54:02 -03003366 write_i2c_regvals(sd, norm_3620b, ARRAY_SIZE(norm_3620b));
3367
Hans de Goede635118d2009-10-11 09:49:03 -03003368 /* Enable autogain, autoexpo, awb, bandfilter */
Jean-François Moinef8f20182010-11-12 07:54:02 -03003369 i2c_w_mask(sd, 0x13, 0x27, 0x27);
Hans de Goede635118d2009-10-11 09:49:03 -03003370 break;
Jean-Francois Moine4202f712008-09-03 17:12:15 -03003371 case SEN_OV6620:
Jean-François Moinef8f20182010-11-12 07:54:02 -03003372 write_i2c_regvals(sd, norm_6x20, ARRAY_SIZE(norm_6x20));
Jean-Francois Moine4202f712008-09-03 17:12:15 -03003373 break;
3374 case SEN_OV6630:
Hans de Goede7d971372009-06-14 05:28:17 -03003375 case SEN_OV66308AF:
Jean-François Moine62833ac2010-10-02 04:27:02 -03003376 sd->ctrls[CONTRAST].def = 200;
3377 /* The default is too low for the ov6630 */
Jean-François Moinef8f20182010-11-12 07:54:02 -03003378 write_i2c_regvals(sd, norm_6x30, ARRAY_SIZE(norm_6x30));
Jean-Francois Moine4202f712008-09-03 17:12:15 -03003379 break;
3380 default:
3381/* case SEN_OV7610: */
3382/* case SEN_OV76BE: */
Jean-François Moinef8f20182010-11-12 07:54:02 -03003383 write_i2c_regvals(sd, norm_7610, ARRAY_SIZE(norm_7610));
3384 i2c_w_mask(sd, 0x0e, 0x00, 0x40);
Jean-Francois Moine4202f712008-09-03 17:12:15 -03003385 break;
3386 case SEN_OV7620:
Hans de Goede859cc472010-01-07 15:42:35 -03003387 case SEN_OV7620AE:
Jean-François Moinef8f20182010-11-12 07:54:02 -03003388 write_i2c_regvals(sd, norm_7620, ARRAY_SIZE(norm_7620));
Jean-Francois Moine4202f712008-09-03 17:12:15 -03003389 break;
3390 case SEN_OV7640:
Hans de Goede035d3a32010-01-09 08:14:43 -03003391 case SEN_OV7648:
Jean-François Moinef8f20182010-11-12 07:54:02 -03003392 write_i2c_regvals(sd, norm_7640, ARRAY_SIZE(norm_7640));
Jean-Francois Moine4202f712008-09-03 17:12:15 -03003393 break;
Jean-François Moine42e142f2010-11-13 05:10:27 -03003394 case SEN_OV7660:
3395 i2c_w(sd, OV7670_R12_COM7, OV7670_COM7_RESET);
3396 msleep(14);
3397 reg_w(sd, OV519_R57_SNAPSHOT, 0x23);
3398 write_regvals(sd, init_519_ov7660,
3399 ARRAY_SIZE(init_519_ov7660));
3400 write_i2c_regvals(sd, norm_7660, ARRAY_SIZE(norm_7660));
3401 sd->gspca_dev.curr_mode = 1; /* 640x480 */
3402 sd->frame_rate = 15;
3403 ov519_set_mode(sd);
3404 ov519_set_fr(sd);
3405 sd->ctrls[COLORS].max = 4; /* 0..4 */
3406 sd->ctrls[COLORS].val =
3407 sd->ctrls[COLORS].def = 2;
3408 setcolors(gspca_dev);
3409 sd->ctrls[CONTRAST].max = 6; /* 0..6 */
3410 sd->ctrls[CONTRAST].val =
3411 sd->ctrls[CONTRAST].def = 3;
3412 setcontrast(gspca_dev);
3413 sd->ctrls[BRIGHTNESS].max = 6; /* 0..6 */
3414 sd->ctrls[BRIGHTNESS].val =
3415 sd->ctrls[BRIGHTNESS].def = 3;
3416 setbrightness(gspca_dev);
3417 sd_reset_snapshot(gspca_dev);
3418 ov51x_restart(sd);
3419 ov51x_stop(sd); /* not in win traces */
3420 ov51x_led_control(sd, 0);
3421 break;
Jean-Francois Moine4202f712008-09-03 17:12:15 -03003422 case SEN_OV7670:
Jean-François Moine62833ac2010-10-02 04:27:02 -03003423 sd->ctrls[FREQ].max = 3; /* auto */
3424 sd->ctrls[FREQ].def = 3;
Jean-François Moinef8f20182010-11-12 07:54:02 -03003425 write_i2c_regvals(sd, norm_7670, ARRAY_SIZE(norm_7670));
Jean-Francois Moine4202f712008-09-03 17:12:15 -03003426 break;
3427 case SEN_OV8610:
Jean-François Moinef8f20182010-11-12 07:54:02 -03003428 write_i2c_regvals(sd, norm_8610, ARRAY_SIZE(norm_8610));
Jean-Francois Moine4202f712008-09-03 17:12:15 -03003429 break;
3430 }
Jean-François Moinef8f20182010-11-12 07:54:02 -03003431 return gspca_dev->usb_err;
Jean-François Moine7491f782010-11-13 03:56:41 -03003432error:
3433 PDEBUG(D_ERR, "OV519 Config failed");
3434 return -EINVAL;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003435}
3436
Hans de Goede1876bb92009-06-14 06:45:50 -03003437/* Set up the OV511/OV511+ with the given image parameters.
3438 *
3439 * Do not put any sensor-specific code in here (including I2C I/O functions)
3440 */
Jean-François Moinef8f20182010-11-12 07:54:02 -03003441static void ov511_mode_init_regs(struct sd *sd)
Hans de Goede1876bb92009-06-14 06:45:50 -03003442{
3443 int hsegs, vsegs, packet_size, fps, needed;
3444 int interlaced = 0;
3445 struct usb_host_interface *alt;
3446 struct usb_interface *intf;
3447
3448 intf = usb_ifnum_to_if(sd->gspca_dev.dev, sd->gspca_dev.iface);
3449 alt = usb_altnum_to_altsetting(intf, sd->gspca_dev.alt);
3450 if (!alt) {
Jean-François Moine0b656322010-09-13 05:19:58 -03003451 err("Couldn't get altsetting");
Jean-François Moinef8f20182010-11-12 07:54:02 -03003452 sd->gspca_dev.usb_err = -EIO;
3453 return;
Hans de Goede1876bb92009-06-14 06:45:50 -03003454 }
3455
3456 packet_size = le16_to_cpu(alt->endpoint[0].desc.wMaxPacketSize);
3457 reg_w(sd, R51x_FIFO_PSIZE, packet_size >> 5);
3458
3459 reg_w(sd, R511_CAM_UV_EN, 0x01);
3460 reg_w(sd, R511_SNAP_UV_EN, 0x01);
3461 reg_w(sd, R511_SNAP_OPTS, 0x03);
3462
3463 /* Here I'm assuming that snapshot size == image size.
3464 * I hope that's always true. --claudio
3465 */
3466 hsegs = (sd->gspca_dev.width >> 3) - 1;
3467 vsegs = (sd->gspca_dev.height >> 3) - 1;
3468
3469 reg_w(sd, R511_CAM_PXCNT, hsegs);
3470 reg_w(sd, R511_CAM_LNCNT, vsegs);
3471 reg_w(sd, R511_CAM_PXDIV, 0x00);
3472 reg_w(sd, R511_CAM_LNDIV, 0x00);
3473
3474 /* YUV420, low pass filter on */
3475 reg_w(sd, R511_CAM_OPTS, 0x03);
3476
3477 /* Snapshot additions */
3478 reg_w(sd, R511_SNAP_PXCNT, hsegs);
3479 reg_w(sd, R511_SNAP_LNCNT, vsegs);
3480 reg_w(sd, R511_SNAP_PXDIV, 0x00);
3481 reg_w(sd, R511_SNAP_LNDIV, 0x00);
3482
3483 /******** Set the framerate ********/
3484 if (frame_rate > 0)
3485 sd->frame_rate = frame_rate;
3486
3487 switch (sd->sensor) {
3488 case SEN_OV6620:
3489 /* No framerate control, doesn't like higher rates yet */
3490 sd->clockdiv = 3;
3491 break;
3492
3493 /* Note once the FIXME's in mode_init_ov_sensor_regs() are fixed
3494 for more sensors we need to do this for them too */
3495 case SEN_OV7620:
Hans de Goede859cc472010-01-07 15:42:35 -03003496 case SEN_OV7620AE:
Hans de Goede1876bb92009-06-14 06:45:50 -03003497 case SEN_OV7640:
Hans de Goede035d3a32010-01-09 08:14:43 -03003498 case SEN_OV7648:
Hans de Goedeb282d872009-06-14 19:10:40 -03003499 case SEN_OV76BE:
Hans de Goede1876bb92009-06-14 06:45:50 -03003500 if (sd->gspca_dev.width == 320)
3501 interlaced = 1;
3502 /* Fall through */
3503 case SEN_OV6630:
Hans de Goede1876bb92009-06-14 06:45:50 -03003504 case SEN_OV7610:
3505 case SEN_OV7670:
3506 switch (sd->frame_rate) {
3507 case 30:
3508 case 25:
3509 /* Not enough bandwidth to do 640x480 @ 30 fps */
3510 if (sd->gspca_dev.width != 640) {
3511 sd->clockdiv = 0;
3512 break;
3513 }
3514 /* Fall through for 640x480 case */
3515 default:
3516/* case 20: */
3517/* case 15: */
3518 sd->clockdiv = 1;
3519 break;
3520 case 10:
3521 sd->clockdiv = 2;
3522 break;
3523 case 5:
3524 sd->clockdiv = 5;
3525 break;
3526 }
3527 if (interlaced) {
3528 sd->clockdiv = (sd->clockdiv + 1) * 2 - 1;
3529 /* Higher then 10 does not work */
3530 if (sd->clockdiv > 10)
3531 sd->clockdiv = 10;
3532 }
3533 break;
3534
3535 case SEN_OV8610:
3536 /* No framerate control ?? */
3537 sd->clockdiv = 0;
3538 break;
3539 }
3540
3541 /* Check if we have enough bandwidth to disable compression */
3542 fps = (interlaced ? 60 : 30) / (sd->clockdiv + 1) + 1;
3543 needed = fps * sd->gspca_dev.width * sd->gspca_dev.height * 3 / 2;
3544 /* 1400 is a conservative estimate of the max nr of isoc packets/sec */
3545 if (needed > 1400 * packet_size) {
3546 /* Enable Y and UV quantization and compression */
3547 reg_w(sd, R511_COMP_EN, 0x07);
3548 reg_w(sd, R511_COMP_LUT_EN, 0x03);
3549 } else {
3550 reg_w(sd, R511_COMP_EN, 0x06);
3551 reg_w(sd, R511_COMP_LUT_EN, 0x00);
3552 }
3553
3554 reg_w(sd, R51x_SYS_RESET, OV511_RESET_OMNICE);
3555 reg_w(sd, R51x_SYS_RESET, 0);
Hans de Goede1876bb92009-06-14 06:45:50 -03003556}
3557
Hans de Goede49809d62009-06-07 12:10:39 -03003558/* Sets up the OV518/OV518+ with the given image parameters
3559 *
3560 * OV518 needs a completely different approach, until we can figure out what
3561 * the individual registers do. Also, only 15 FPS is supported now.
3562 *
3563 * Do not put any sensor-specific code in here (including I2C I/O functions)
3564 */
Jean-François Moinef8f20182010-11-12 07:54:02 -03003565static void ov518_mode_init_regs(struct sd *sd)
Hans de Goede49809d62009-06-07 12:10:39 -03003566{
Hans de Goedeb282d872009-06-14 19:10:40 -03003567 int hsegs, vsegs, packet_size;
3568 struct usb_host_interface *alt;
3569 struct usb_interface *intf;
3570
3571 intf = usb_ifnum_to_if(sd->gspca_dev.dev, sd->gspca_dev.iface);
3572 alt = usb_altnum_to_altsetting(intf, sd->gspca_dev.alt);
3573 if (!alt) {
Jean-François Moine0b656322010-09-13 05:19:58 -03003574 err("Couldn't get altsetting");
Jean-François Moinef8f20182010-11-12 07:54:02 -03003575 sd->gspca_dev.usb_err = -EIO;
3576 return;
Hans de Goedeb282d872009-06-14 19:10:40 -03003577 }
3578
3579 packet_size = le16_to_cpu(alt->endpoint[0].desc.wMaxPacketSize);
3580 ov518_reg_w32(sd, R51x_FIFO_PSIZE, packet_size & ~7, 2);
Hans de Goede49809d62009-06-07 12:10:39 -03003581
3582 /******** Set the mode ********/
Hans de Goede49809d62009-06-07 12:10:39 -03003583 reg_w(sd, 0x2b, 0);
3584 reg_w(sd, 0x2c, 0);
3585 reg_w(sd, 0x2d, 0);
3586 reg_w(sd, 0x2e, 0);
3587 reg_w(sd, 0x3b, 0);
3588 reg_w(sd, 0x3c, 0);
3589 reg_w(sd, 0x3d, 0);
3590 reg_w(sd, 0x3e, 0);
3591
3592 if (sd->bridge == BRIDGE_OV518) {
3593 /* Set 8-bit (YVYU) input format */
3594 reg_w_mask(sd, 0x20, 0x08, 0x08);
3595
3596 /* Set 12-bit (4:2:0) output format */
3597 reg_w_mask(sd, 0x28, 0x80, 0xf0);
3598 reg_w_mask(sd, 0x38, 0x80, 0xf0);
3599 } else {
3600 reg_w(sd, 0x28, 0x80);
3601 reg_w(sd, 0x38, 0x80);
3602 }
3603
3604 hsegs = sd->gspca_dev.width / 16;
3605 vsegs = sd->gspca_dev.height / 4;
3606
3607 reg_w(sd, 0x29, hsegs);
3608 reg_w(sd, 0x2a, vsegs);
3609
3610 reg_w(sd, 0x39, hsegs);
3611 reg_w(sd, 0x3a, vsegs);
3612
3613 /* Windows driver does this here; who knows why */
3614 reg_w(sd, 0x2f, 0x80);
3615
Jean-François Moine87bae742010-11-12 05:31:34 -03003616 /******** Set the framerate ********/
Hans de Goedeb282d872009-06-14 19:10:40 -03003617 sd->clockdiv = 1;
Hans de Goede49809d62009-06-07 12:10:39 -03003618
3619 /* Mode independent, but framerate dependent, regs */
Hans de Goedeb282d872009-06-14 19:10:40 -03003620 /* 0x51: Clock divider; Only works on some cams which use 2 crystals */
3621 reg_w(sd, 0x51, 0x04);
Hans de Goede49809d62009-06-07 12:10:39 -03003622 reg_w(sd, 0x22, 0x18);
3623 reg_w(sd, 0x23, 0xff);
3624
Hans de Goedeb282d872009-06-14 19:10:40 -03003625 if (sd->bridge == BRIDGE_OV518PLUS) {
3626 switch (sd->sensor) {
Hans de Goede859cc472010-01-07 15:42:35 -03003627 case SEN_OV7620AE:
Hans de Goedeb282d872009-06-14 19:10:40 -03003628 if (sd->gspca_dev.width == 320) {
3629 reg_w(sd, 0x20, 0x00);
3630 reg_w(sd, 0x21, 0x19);
3631 } else {
3632 reg_w(sd, 0x20, 0x60);
3633 reg_w(sd, 0x21, 0x1f);
3634 }
3635 break;
Hans de Goede859cc472010-01-07 15:42:35 -03003636 case SEN_OV7620:
3637 reg_w(sd, 0x20, 0x00);
3638 reg_w(sd, 0x21, 0x19);
3639 break;
Hans de Goedeb282d872009-06-14 19:10:40 -03003640 default:
3641 reg_w(sd, 0x21, 0x19);
3642 }
3643 } else
Hans de Goede49809d62009-06-07 12:10:39 -03003644 reg_w(sd, 0x71, 0x17); /* Compression-related? */
3645
3646 /* FIXME: Sensor-specific */
3647 /* Bit 5 is what matters here. Of course, it is "reserved" */
3648 i2c_w(sd, 0x54, 0x23);
3649
3650 reg_w(sd, 0x2f, 0x80);
3651
3652 if (sd->bridge == BRIDGE_OV518PLUS) {
3653 reg_w(sd, 0x24, 0x94);
3654 reg_w(sd, 0x25, 0x90);
3655 ov518_reg_w32(sd, 0xc4, 400, 2); /* 190h */
3656 ov518_reg_w32(sd, 0xc6, 540, 2); /* 21ch */
3657 ov518_reg_w32(sd, 0xc7, 540, 2); /* 21ch */
3658 ov518_reg_w32(sd, 0xc8, 108, 2); /* 6ch */
3659 ov518_reg_w32(sd, 0xca, 131098, 3); /* 2001ah */
3660 ov518_reg_w32(sd, 0xcb, 532, 2); /* 214h */
3661 ov518_reg_w32(sd, 0xcc, 2400, 2); /* 960h */
3662 ov518_reg_w32(sd, 0xcd, 32, 2); /* 20h */
3663 ov518_reg_w32(sd, 0xce, 608, 2); /* 260h */
3664 } else {
3665 reg_w(sd, 0x24, 0x9f);
3666 reg_w(sd, 0x25, 0x90);
3667 ov518_reg_w32(sd, 0xc4, 400, 2); /* 190h */
3668 ov518_reg_w32(sd, 0xc6, 381, 2); /* 17dh */
3669 ov518_reg_w32(sd, 0xc7, 381, 2); /* 17dh */
3670 ov518_reg_w32(sd, 0xc8, 128, 2); /* 80h */
3671 ov518_reg_w32(sd, 0xca, 183331, 3); /* 2cc23h */
3672 ov518_reg_w32(sd, 0xcb, 746, 2); /* 2eah */
3673 ov518_reg_w32(sd, 0xcc, 1750, 2); /* 6d6h */
3674 ov518_reg_w32(sd, 0xcd, 45, 2); /* 2dh */
3675 ov518_reg_w32(sd, 0xce, 851, 2); /* 353h */
3676 }
3677
3678 reg_w(sd, 0x2f, 0x80);
Hans de Goede49809d62009-06-07 12:10:39 -03003679}
3680
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003681/* Sets up the OV519 with the given image parameters
3682 *
3683 * OV519 needs a completely different approach, until we can figure out what
3684 * the individual registers do.
3685 *
3686 * Do not put any sensor-specific code in here (including I2C I/O functions)
3687 */
Jean-François Moinef8f20182010-11-12 07:54:02 -03003688static void ov519_mode_init_regs(struct sd *sd)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003689{
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03003690 static const struct ov_regvals mode_init_519_ov7670[] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003691 { 0x5d, 0x03 }, /* Turn off suspend mode */
3692 { 0x53, 0x9f }, /* was 9b in 1.65-1.08 */
Jean-François Moine21867802010-11-12 06:12:09 -03003693 { OV519_R54_EN_CLK1, 0x0f }, /* bit2 (jpeg enable) */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003694 { 0xa2, 0x20 }, /* a2-a5 are undocumented */
3695 { 0xa3, 0x18 },
3696 { 0xa4, 0x04 },
3697 { 0xa5, 0x28 },
3698 { 0x37, 0x00 }, /* SetUsbInit */
3699 { 0x55, 0x02 }, /* 4.096 Mhz audio clock */
3700 /* Enable both fields, YUV Input, disable defect comp (why?) */
3701 { 0x20, 0x0c },
3702 { 0x21, 0x38 },
3703 { 0x22, 0x1d },
3704 { 0x17, 0x50 }, /* undocumented */
3705 { 0x37, 0x00 }, /* undocumented */
3706 { 0x40, 0xff }, /* I2C timeout counter */
3707 { 0x46, 0x00 }, /* I2C clock prescaler */
3708 { 0x59, 0x04 }, /* new from windrv 090403 */
3709 { 0xff, 0x00 }, /* undocumented */
3710 /* windows reads 0x55 at this point, why? */
3711 };
3712
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03003713 static const struct ov_regvals mode_init_519[] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003714 { 0x5d, 0x03 }, /* Turn off suspend mode */
3715 { 0x53, 0x9f }, /* was 9b in 1.65-1.08 */
Jean-François Moine21867802010-11-12 06:12:09 -03003716 { OV519_R54_EN_CLK1, 0x0f }, /* bit2 (jpeg enable) */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003717 { 0xa2, 0x20 }, /* a2-a5 are undocumented */
3718 { 0xa3, 0x18 },
3719 { 0xa4, 0x04 },
3720 { 0xa5, 0x28 },
3721 { 0x37, 0x00 }, /* SetUsbInit */
3722 { 0x55, 0x02 }, /* 4.096 Mhz audio clock */
3723 /* Enable both fields, YUV Input, disable defect comp (why?) */
3724 { 0x22, 0x1d },
3725 { 0x17, 0x50 }, /* undocumented */
3726 { 0x37, 0x00 }, /* undocumented */
3727 { 0x40, 0xff }, /* I2C timeout counter */
3728 { 0x46, 0x00 }, /* I2C clock prescaler */
3729 { 0x59, 0x04 }, /* new from windrv 090403 */
3730 { 0xff, 0x00 }, /* undocumented */
3731 /* windows reads 0x55 at this point, why? */
3732 };
3733
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003734 /******** Set the mode ********/
Jean-François Moine42e142f2010-11-13 05:10:27 -03003735 switch (sd->sensor) {
3736 default:
Jean-François Moinef8f20182010-11-12 07:54:02 -03003737 write_regvals(sd, mode_init_519, ARRAY_SIZE(mode_init_519));
Hans de Goede035d3a32010-01-09 08:14:43 -03003738 if (sd->sensor == SEN_OV7640 ||
3739 sd->sensor == SEN_OV7648) {
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003740 /* Select 8-bit input mode */
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03003741 reg_w_mask(sd, OV519_R20_DFR, 0x10, 0x10);
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003742 }
Jean-François Moine42e142f2010-11-13 05:10:27 -03003743 break;
3744 case SEN_OV7660:
3745 return; /* done by ov519_set_mode/fr() */
3746 case SEN_OV7670:
Jean-François Moinef8f20182010-11-12 07:54:02 -03003747 write_regvals(sd, mode_init_519_ov7670,
3748 ARRAY_SIZE(mode_init_519_ov7670));
Jean-François Moine42e142f2010-11-13 05:10:27 -03003749 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003750 }
3751
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03003752 reg_w(sd, OV519_R10_H_SIZE, sd->gspca_dev.width >> 4);
3753 reg_w(sd, OV519_R11_V_SIZE, sd->gspca_dev.height >> 3);
Hans de Goede80142ef2009-06-14 06:26:49 -03003754 if (sd->sensor == SEN_OV7670 &&
3755 sd->gspca_dev.cam.cam_mode[sd->gspca_dev.curr_mode].priv)
3756 reg_w(sd, OV519_R12_X_OFFSETL, 0x04);
Hans de Goede035d3a32010-01-09 08:14:43 -03003757 else if (sd->sensor == SEN_OV7648 &&
3758 sd->gspca_dev.cam.cam_mode[sd->gspca_dev.curr_mode].priv)
3759 reg_w(sd, OV519_R12_X_OFFSETL, 0x01);
Hans de Goede80142ef2009-06-14 06:26:49 -03003760 else
3761 reg_w(sd, OV519_R12_X_OFFSETL, 0x00);
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03003762 reg_w(sd, OV519_R13_X_OFFSETH, 0x00);
3763 reg_w(sd, OV519_R14_Y_OFFSETL, 0x00);
3764 reg_w(sd, OV519_R15_Y_OFFSETH, 0x00);
3765 reg_w(sd, OV519_R16_DIVIDER, 0x00);
3766 reg_w(sd, OV519_R25_FORMAT, 0x03); /* YUV422 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003767 reg_w(sd, 0x26, 0x00); /* Undocumented */
3768
3769 /******** Set the framerate ********/
3770 if (frame_rate > 0)
3771 sd->frame_rate = frame_rate;
3772
3773/* FIXME: These are only valid at the max resolution. */
3774 sd->clockdiv = 0;
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003775 switch (sd->sensor) {
3776 case SEN_OV7640:
Hans de Goede035d3a32010-01-09 08:14:43 -03003777 case SEN_OV7648:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003778 switch (sd->frame_rate) {
Jean-Francois Moine53e74512008-11-08 06:10:19 -03003779 default:
3780/* case 30: */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003781 reg_w(sd, 0xa4, 0x0c);
3782 reg_w(sd, 0x23, 0xff);
3783 break;
3784 case 25:
3785 reg_w(sd, 0xa4, 0x0c);
3786 reg_w(sd, 0x23, 0x1f);
3787 break;
3788 case 20:
3789 reg_w(sd, 0xa4, 0x0c);
3790 reg_w(sd, 0x23, 0x1b);
3791 break;
Jean-Francois Moine53e74512008-11-08 06:10:19 -03003792 case 15:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003793 reg_w(sd, 0xa4, 0x04);
3794 reg_w(sd, 0x23, 0xff);
3795 sd->clockdiv = 1;
3796 break;
3797 case 10:
3798 reg_w(sd, 0xa4, 0x04);
3799 reg_w(sd, 0x23, 0x1f);
3800 sd->clockdiv = 1;
3801 break;
3802 case 5:
3803 reg_w(sd, 0xa4, 0x04);
3804 reg_w(sd, 0x23, 0x1b);
3805 sd->clockdiv = 1;
3806 break;
3807 }
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003808 break;
3809 case SEN_OV8610:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003810 switch (sd->frame_rate) {
3811 default: /* 15 fps */
3812/* case 15: */
3813 reg_w(sd, 0xa4, 0x06);
3814 reg_w(sd, 0x23, 0xff);
3815 break;
3816 case 10:
3817 reg_w(sd, 0xa4, 0x06);
3818 reg_w(sd, 0x23, 0x1f);
3819 break;
3820 case 5:
3821 reg_w(sd, 0xa4, 0x06);
3822 reg_w(sd, 0x23, 0x1b);
3823 break;
3824 }
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003825 break;
3826 case SEN_OV7670: /* guesses, based on 7640 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003827 PDEBUG(D_STREAM, "Setting framerate to %d fps",
3828 (sd->frame_rate == 0) ? 15 : sd->frame_rate);
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003829 reg_w(sd, 0xa4, 0x10);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003830 switch (sd->frame_rate) {
3831 case 30:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003832 reg_w(sd, 0x23, 0xff);
3833 break;
3834 case 20:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003835 reg_w(sd, 0x23, 0x1b);
3836 break;
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003837 default:
3838/* case 15: */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003839 reg_w(sd, 0x23, 0xff);
3840 sd->clockdiv = 1;
3841 break;
3842 }
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003843 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003844 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003845}
3846
Jean-François Moinef8f20182010-11-12 07:54:02 -03003847static void mode_init_ov_sensor_regs(struct sd *sd)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003848{
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003849 struct gspca_dev *gspca_dev;
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003850 int qvga, xstart, xend, ystart, yend;
Jean-François Moine9d1593a2010-11-11 08:04:06 -03003851 u8 v;
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003852
3853 gspca_dev = &sd->gspca_dev;
Jean-François Moine87bae742010-11-12 05:31:34 -03003854 qvga = gspca_dev->cam.cam_mode[gspca_dev->curr_mode].priv & 1;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003855
3856 /******** Mode (VGA/QVGA) and sensor specific regs ********/
3857 switch (sd->sensor) {
Hans de Goede635118d2009-10-11 09:49:03 -03003858 case SEN_OV2610:
3859 i2c_w_mask(sd, 0x14, qvga ? 0x20 : 0x00, 0x20);
3860 i2c_w_mask(sd, 0x28, qvga ? 0x00 : 0x20, 0x20);
3861 i2c_w(sd, 0x24, qvga ? 0x20 : 0x3a);
3862 i2c_w(sd, 0x25, qvga ? 0x30 : 0x60);
3863 i2c_w_mask(sd, 0x2d, qvga ? 0x40 : 0x00, 0x40);
3864 i2c_w_mask(sd, 0x67, qvga ? 0xf0 : 0x90, 0xf0);
3865 i2c_w_mask(sd, 0x74, qvga ? 0x20 : 0x00, 0x20);
Jean-François Moinef8f20182010-11-12 07:54:02 -03003866 return;
Jean-François Moine07c6c9c2011-02-10 13:32:22 -03003867 case SEN_OV2610AE: {
3868 u8 v;
3869
3870 /* frame rates:
3871 * 10fps / 5 fps for 1600x1200
3872 * 40fps / 20fps for 800x600
3873 */
3874 v = 80;
3875 if (qvga) {
3876 if (sd->frame_rate < 25)
3877 v = 0x81;
3878 } else {
3879 if (sd->frame_rate < 10)
3880 v = 0x81;
3881 }
3882 i2c_w(sd, 0x11, v);
3883 i2c_w(sd, 0x12, qvga ? 0x60 : 0x20);
3884 return;
3885 }
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003886 case SEN_OV3610:
Hans de Goede635118d2009-10-11 09:49:03 -03003887 if (qvga) {
3888 xstart = (1040 - gspca_dev->width) / 2 + (0x1f << 4);
Hans de Goedeb46aaa02009-10-12 10:07:57 -03003889 ystart = (776 - gspca_dev->height) / 2;
Hans de Goede635118d2009-10-11 09:49:03 -03003890 } else {
Hans de Goedeb46aaa02009-10-12 10:07:57 -03003891 xstart = (2076 - gspca_dev->width) / 2 + (0x10 << 4);
Hans de Goede635118d2009-10-11 09:49:03 -03003892 ystart = (1544 - gspca_dev->height) / 2;
3893 }
3894 xend = xstart + gspca_dev->width;
3895 yend = ystart + gspca_dev->height;
3896 /* Writing to the COMH register resets the other windowing regs
3897 to their default values, so we must do this first. */
3898 i2c_w_mask(sd, 0x12, qvga ? 0x40 : 0x00, 0xf0);
3899 i2c_w_mask(sd, 0x32,
3900 (((xend >> 1) & 7) << 3) | ((xstart >> 1) & 7),
3901 0x3f);
3902 i2c_w_mask(sd, 0x03,
3903 (((yend >> 1) & 3) << 2) | ((ystart >> 1) & 3),
3904 0x0f);
3905 i2c_w(sd, 0x17, xstart >> 4);
3906 i2c_w(sd, 0x18, xend >> 4);
3907 i2c_w(sd, 0x19, ystart >> 3);
3908 i2c_w(sd, 0x1a, yend >> 3);
Jean-François Moinef8f20182010-11-12 07:54:02 -03003909 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003910 case SEN_OV8610:
3911 /* For OV8610 qvga means qsvga */
3912 i2c_w_mask(sd, OV7610_REG_COM_C, qvga ? (1 << 5) : 0, 1 << 5);
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003913 i2c_w_mask(sd, 0x13, 0x00, 0x20); /* Select 16 bit data bus */
3914 i2c_w_mask(sd, 0x12, 0x04, 0x06); /* AWB: 1 Test pattern: 0 */
3915 i2c_w_mask(sd, 0x2d, 0x00, 0x40); /* from windrv 090403 */
3916 i2c_w_mask(sd, 0x28, 0x20, 0x20); /* progressive mode on */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003917 break;
3918 case SEN_OV7610:
3919 i2c_w_mask(sd, 0x14, qvga ? 0x20 : 0x00, 0x20);
Jean-François Moine780e3122010-10-19 04:29:10 -03003920 i2c_w(sd, 0x35, qvga ? 0x1e : 0x9e);
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003921 i2c_w_mask(sd, 0x13, 0x00, 0x20); /* Select 16 bit data bus */
3922 i2c_w_mask(sd, 0x12, 0x04, 0x06); /* AWB: 1 Test pattern: 0 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003923 break;
3924 case SEN_OV7620:
Hans de Goede859cc472010-01-07 15:42:35 -03003925 case SEN_OV7620AE:
Hans de Goedeb282d872009-06-14 19:10:40 -03003926 case SEN_OV76BE:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003927 i2c_w_mask(sd, 0x14, qvga ? 0x20 : 0x00, 0x20);
3928 i2c_w_mask(sd, 0x28, qvga ? 0x00 : 0x20, 0x20);
3929 i2c_w(sd, 0x24, qvga ? 0x20 : 0x3a);
3930 i2c_w(sd, 0x25, qvga ? 0x30 : 0x60);
3931 i2c_w_mask(sd, 0x2d, qvga ? 0x40 : 0x00, 0x40);
Hans de Goedeb282d872009-06-14 19:10:40 -03003932 i2c_w_mask(sd, 0x67, qvga ? 0xb0 : 0x90, 0xf0);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003933 i2c_w_mask(sd, 0x74, qvga ? 0x20 : 0x00, 0x20);
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003934 i2c_w_mask(sd, 0x13, 0x00, 0x20); /* Select 16 bit data bus */
3935 i2c_w_mask(sd, 0x12, 0x04, 0x06); /* AWB: 1 Test pattern: 0 */
3936 if (sd->sensor == SEN_OV76BE)
3937 i2c_w(sd, 0x35, qvga ? 0x1e : 0x9e);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003938 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003939 case SEN_OV7640:
Hans de Goede035d3a32010-01-09 08:14:43 -03003940 case SEN_OV7648:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003941 i2c_w_mask(sd, 0x14, qvga ? 0x20 : 0x00, 0x20);
3942 i2c_w_mask(sd, 0x28, qvga ? 0x00 : 0x20, 0x20);
Hans de Goede8d0082f2010-01-09 19:45:44 -03003943 /* Setting this undocumented bit in qvga mode removes a very
3944 annoying vertical shaking of the image */
Hans de Goede035d3a32010-01-09 08:14:43 -03003945 i2c_w_mask(sd, 0x2d, qvga ? 0x40 : 0x00, 0x40);
Hans de Goede8d0082f2010-01-09 19:45:44 -03003946 /* Unknown */
Hans de Goede035d3a32010-01-09 08:14:43 -03003947 i2c_w_mask(sd, 0x67, qvga ? 0xf0 : 0x90, 0xf0);
Hans de Goede8d0082f2010-01-09 19:45:44 -03003948 /* Allow higher automatic gain (to allow higher framerates) */
Hans de Goede035d3a32010-01-09 08:14:43 -03003949 i2c_w_mask(sd, 0x74, qvga ? 0x20 : 0x00, 0x20);
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003950 i2c_w_mask(sd, 0x12, 0x04, 0x04); /* AWB: 1 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003951 break;
3952 case SEN_OV7670:
3953 /* set COM7_FMT_VGA or COM7_FMT_QVGA
3954 * do we need to set anything else?
3955 * HSTART etc are set in set_ov_sensor_window itself */
Jean-François Moine21867802010-11-12 06:12:09 -03003956 i2c_w_mask(sd, OV7670_R12_COM7,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003957 qvga ? OV7670_COM7_FMT_QVGA : OV7670_COM7_FMT_VGA,
3958 OV7670_COM7_FMT_MASK);
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003959 i2c_w_mask(sd, 0x13, 0x00, 0x20); /* Select 16 bit data bus */
Jean-François Moine21867802010-11-12 06:12:09 -03003960 i2c_w_mask(sd, OV7670_R13_COM8, OV7670_COM8_AWB,
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003961 OV7670_COM8_AWB);
3962 if (qvga) { /* QVGA from ov7670.c by
3963 * Jonathan Corbet */
3964 xstart = 164;
3965 xend = 28;
3966 ystart = 14;
3967 yend = 494;
3968 } else { /* VGA */
3969 xstart = 158;
3970 xend = 14;
3971 ystart = 10;
3972 yend = 490;
3973 }
3974 /* OV7670 hardware window registers are split across
3975 * multiple locations */
Jean-François Moine21867802010-11-12 06:12:09 -03003976 i2c_w(sd, OV7670_R17_HSTART, xstart >> 3);
3977 i2c_w(sd, OV7670_R18_HSTOP, xend >> 3);
3978 v = i2c_r(sd, OV7670_R32_HREF);
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003979 v = (v & 0xc0) | ((xend & 0x7) << 3) | (xstart & 0x07);
3980 msleep(10); /* need to sleep between read and write to
3981 * same reg! */
Jean-François Moine21867802010-11-12 06:12:09 -03003982 i2c_w(sd, OV7670_R32_HREF, v);
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003983
Jean-François Moine21867802010-11-12 06:12:09 -03003984 i2c_w(sd, OV7670_R19_VSTART, ystart >> 2);
3985 i2c_w(sd, OV7670_R1A_VSTOP, yend >> 2);
3986 v = i2c_r(sd, OV7670_R03_VREF);
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003987 v = (v & 0xc0) | ((yend & 0x3) << 2) | (ystart & 0x03);
3988 msleep(10); /* need to sleep between read and write to
3989 * same reg! */
Jean-François Moine21867802010-11-12 06:12:09 -03003990 i2c_w(sd, OV7670_R03_VREF, v);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003991 break;
3992 case SEN_OV6620:
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003993 i2c_w_mask(sd, 0x14, qvga ? 0x20 : 0x00, 0x20);
3994 i2c_w_mask(sd, 0x13, 0x00, 0x20); /* Select 16 bit data bus */
3995 i2c_w_mask(sd, 0x12, 0x04, 0x06); /* AWB: 1 Test pattern: 0 */
3996 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003997 case SEN_OV6630:
Hans de Goede7d971372009-06-14 05:28:17 -03003998 case SEN_OV66308AF:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003999 i2c_w_mask(sd, 0x14, qvga ? 0x20 : 0x00, 0x20);
Hans de Goedeebbb5c32009-10-12 11:32:44 -03004000 i2c_w_mask(sd, 0x12, 0x04, 0x06); /* AWB: 1 Test pattern: 0 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004001 break;
4002 default:
Jean-François Moinef8f20182010-11-12 07:54:02 -03004003 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004004 }
4005
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004006 /******** Clock programming ********/
Hans de Goedeae49c402009-06-14 19:15:07 -03004007 i2c_w(sd, 0x11, sd->clockdiv);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004008}
4009
Jean-François Moine42e142f2010-11-13 05:10:27 -03004010/* this function works for bridge ov519 and sensors ov7660 and ov7670 only */
Jean-François Moine62833ac2010-10-02 04:27:02 -03004011static void sethvflip(struct gspca_dev *gspca_dev)
Jean-Francois Moine0cd67592008-07-29 05:25:28 -03004012{
Jean-François Moine62833ac2010-10-02 04:27:02 -03004013 struct sd *sd = (struct sd *) gspca_dev;
4014
Jean-Francois Moine0cd67592008-07-29 05:25:28 -03004015 if (sd->gspca_dev.streaming)
Jean-François Moine5927abc2010-11-12 15:32:29 -03004016 reg_w(sd, OV519_R51_RESET1, 0x0f); /* block stream */
Jean-François Moine21867802010-11-12 06:12:09 -03004017 i2c_w_mask(sd, OV7670_R1E_MVFP,
Jean-François Moine62833ac2010-10-02 04:27:02 -03004018 OV7670_MVFP_MIRROR * sd->ctrls[HFLIP].val
4019 | OV7670_MVFP_VFLIP * sd->ctrls[VFLIP].val,
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03004020 OV7670_MVFP_MIRROR | OV7670_MVFP_VFLIP);
Jean-Francois Moine0cd67592008-07-29 05:25:28 -03004021 if (sd->gspca_dev.streaming)
Jean-François Moine5927abc2010-11-12 15:32:29 -03004022 reg_w(sd, OV519_R51_RESET1, 0x00); /* restart stream */
Jean-Francois Moine0cd67592008-07-29 05:25:28 -03004023}
4024
Jean-François Moinef8f20182010-11-12 07:54:02 -03004025static void set_ov_sensor_window(struct sd *sd)
Jean-Francois Moine0cd67592008-07-29 05:25:28 -03004026{
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03004027 struct gspca_dev *gspca_dev;
Hans de Goede124cc9c2009-06-14 05:48:00 -03004028 int qvga, crop;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004029 int hwsbase, hwebase, vwsbase, vwebase, hwscale, vwscale;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004030
Hans de Goede635118d2009-10-11 09:49:03 -03004031 /* mode setup is fully handled in mode_init_ov_sensor_regs for these */
Jean-François Moine42e142f2010-11-13 05:10:27 -03004032 switch (sd->sensor) {
4033 case SEN_OV2610:
Jean-François Moine07c6c9c2011-02-10 13:32:22 -03004034 case SEN_OV2610AE:
Jean-François Moine42e142f2010-11-13 05:10:27 -03004035 case SEN_OV3610:
4036 case SEN_OV7670:
Jean-François Moinef8f20182010-11-12 07:54:02 -03004037 mode_init_ov_sensor_regs(sd);
4038 return;
Jean-François Moine42e142f2010-11-13 05:10:27 -03004039 case SEN_OV7660:
4040 ov519_set_mode(sd);
4041 ov519_set_fr(sd);
4042 return;
Jean-François Moinef8f20182010-11-12 07:54:02 -03004043 }
Jean-François Moine42e142f2010-11-13 05:10:27 -03004044
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03004045 gspca_dev = &sd->gspca_dev;
Jean-François Moine87bae742010-11-12 05:31:34 -03004046 qvga = gspca_dev->cam.cam_mode[gspca_dev->curr_mode].priv & 1;
4047 crop = gspca_dev->cam.cam_mode[gspca_dev->curr_mode].priv & 2;
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03004048
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004049 /* The different sensor ICs handle setting up of window differently.
4050 * IF YOU SET IT WRONG, YOU WILL GET ALL ZERO ISOC DATA FROM OV51x!! */
4051 switch (sd->sensor) {
4052 case SEN_OV8610:
4053 hwsbase = 0x1e;
4054 hwebase = 0x1e;
4055 vwsbase = 0x02;
4056 vwebase = 0x02;
4057 break;
4058 case SEN_OV7610:
4059 case SEN_OV76BE:
4060 hwsbase = 0x38;
4061 hwebase = 0x3a;
4062 vwsbase = vwebase = 0x05;
4063 break;
4064 case SEN_OV6620:
4065 case SEN_OV6630:
Hans de Goede7d971372009-06-14 05:28:17 -03004066 case SEN_OV66308AF:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004067 hwsbase = 0x38;
4068 hwebase = 0x3a;
4069 vwsbase = 0x05;
4070 vwebase = 0x06;
Hans de Goede7d971372009-06-14 05:28:17 -03004071 if (sd->sensor == SEN_OV66308AF && qvga)
Hans de Goede49809d62009-06-07 12:10:39 -03004072 /* HDG: this fixes U and V getting swapped */
Hans de Goede7d971372009-06-14 05:28:17 -03004073 hwsbase++;
Hans de Goede124cc9c2009-06-14 05:48:00 -03004074 if (crop) {
4075 hwsbase += 8;
4076 hwebase += 8;
4077 vwsbase += 11;
4078 vwebase += 11;
4079 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004080 break;
4081 case SEN_OV7620:
Hans de Goede859cc472010-01-07 15:42:35 -03004082 case SEN_OV7620AE:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004083 hwsbase = 0x2f; /* From 7620.SET (spec is wrong) */
4084 hwebase = 0x2f;
4085 vwsbase = vwebase = 0x05;
4086 break;
4087 case SEN_OV7640:
Hans de Goede035d3a32010-01-09 08:14:43 -03004088 case SEN_OV7648:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004089 hwsbase = 0x1a;
4090 hwebase = 0x1a;
4091 vwsbase = vwebase = 0x03;
4092 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004093 default:
Jean-François Moinef8f20182010-11-12 07:54:02 -03004094 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004095 }
4096
4097 switch (sd->sensor) {
4098 case SEN_OV6620:
4099 case SEN_OV6630:
Hans de Goede7d971372009-06-14 05:28:17 -03004100 case SEN_OV66308AF:
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03004101 if (qvga) { /* QCIF */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004102 hwscale = 0;
4103 vwscale = 0;
4104 } else { /* CIF */
4105 hwscale = 1;
4106 vwscale = 1; /* The datasheet says 0;
4107 * it's wrong */
4108 }
4109 break;
4110 case SEN_OV8610:
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03004111 if (qvga) { /* QSVGA */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004112 hwscale = 1;
4113 vwscale = 1;
4114 } else { /* SVGA */
4115 hwscale = 2;
4116 vwscale = 2;
4117 }
4118 break;
4119 default: /* SEN_OV7xx0 */
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03004120 if (qvga) { /* QVGA */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004121 hwscale = 1;
4122 vwscale = 0;
4123 } else { /* VGA */
4124 hwscale = 2;
4125 vwscale = 1;
4126 }
4127 }
4128
Jean-François Moinef8f20182010-11-12 07:54:02 -03004129 mode_init_ov_sensor_regs(sd);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004130
Hans de Goedeebbb5c32009-10-12 11:32:44 -03004131 i2c_w(sd, 0x17, hwsbase);
Hans de Goedea511ba92009-10-16 07:13:07 -03004132 i2c_w(sd, 0x18, hwebase + (sd->sensor_width >> hwscale));
Hans de Goedeebbb5c32009-10-12 11:32:44 -03004133 i2c_w(sd, 0x19, vwsbase);
Hans de Goedea511ba92009-10-16 07:13:07 -03004134 i2c_w(sd, 0x1a, vwebase + (sd->sensor_height >> vwscale));
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004135}
4136
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004137/* -- start the camera -- */
Jean-Francois Moine72ab97c2008-09-20 06:39:08 -03004138static int sd_start(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004139{
4140 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004141
Hans de Goedea511ba92009-10-16 07:13:07 -03004142 /* Default for most bridges, allow bridge_mode_init_regs to override */
4143 sd->sensor_width = sd->gspca_dev.width;
4144 sd->sensor_height = sd->gspca_dev.height;
4145
Hans de Goede49809d62009-06-07 12:10:39 -03004146 switch (sd->bridge) {
Hans de Goede1876bb92009-06-14 06:45:50 -03004147 case BRIDGE_OV511:
4148 case BRIDGE_OV511PLUS:
Jean-François Moinef8f20182010-11-12 07:54:02 -03004149 ov511_mode_init_regs(sd);
Hans de Goede1876bb92009-06-14 06:45:50 -03004150 break;
Hans de Goede49809d62009-06-07 12:10:39 -03004151 case BRIDGE_OV518:
4152 case BRIDGE_OV518PLUS:
Jean-François Moinef8f20182010-11-12 07:54:02 -03004153 ov518_mode_init_regs(sd);
Hans de Goede49809d62009-06-07 12:10:39 -03004154 break;
4155 case BRIDGE_OV519:
Jean-François Moinef8f20182010-11-12 07:54:02 -03004156 ov519_mode_init_regs(sd);
Hans de Goede49809d62009-06-07 12:10:39 -03004157 break;
Hans de Goedeb46aaa02009-10-12 10:07:57 -03004158 /* case BRIDGE_OVFX2: nothing to do */
Hans de Goedea511ba92009-10-16 07:13:07 -03004159 case BRIDGE_W9968CF:
Jean-François Moinef8f20182010-11-12 07:54:02 -03004160 w9968cf_mode_init_regs(sd);
Hans de Goedea511ba92009-10-16 07:13:07 -03004161 break;
Hans de Goede49809d62009-06-07 12:10:39 -03004162 }
Hans de Goede49809d62009-06-07 12:10:39 -03004163
Jean-François Moinef8f20182010-11-12 07:54:02 -03004164 set_ov_sensor_window(sd);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004165
Jean-François Moinee2817022010-11-12 13:59:48 -03004166 if (!(sd->gspca_dev.ctrl_dis & (1 << CONTRAST)))
4167 setcontrast(gspca_dev);
4168 if (!(sd->gspca_dev.ctrl_dis & (1 << BRIGHTNESS)))
4169 setbrightness(gspca_dev);
4170 if (!(sd->gspca_dev.ctrl_dis & (1 << COLORS)))
4171 setcolors(gspca_dev);
4172 if (!(sd->gspca_dev.ctrl_dis & ((1 << HFLIP) | (1 << VFLIP))))
4173 sethvflip(gspca_dev);
4174 if (!(sd->gspca_dev.ctrl_dis & (1 << AUTOBRIGHT)))
4175 setautobright(gspca_dev);
4176 if (!(sd->gspca_dev.ctrl_dis & (1 << FREQ)))
4177 setfreq_i(sd);
Hans de Goede49809d62009-06-07 12:10:39 -03004178
Hans de Goede417a4d22010-02-19 07:37:08 -03004179 /* Force clear snapshot state in case the snapshot button was
4180 pressed while we weren't streaming */
4181 sd->snapshot_needs_reset = 1;
4182 sd_reset_snapshot(gspca_dev);
Hans de Goede417a4d22010-02-19 07:37:08 -03004183
Hans de Goeded6b6d7a2010-05-08 08:55:42 -03004184 sd->first_frame = 3;
4185
Jean-François Moinef8f20182010-11-12 07:54:02 -03004186 ov51x_restart(sd);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004187 ov51x_led_control(sd, 1);
Jean-François Moinef8f20182010-11-12 07:54:02 -03004188 return gspca_dev->usb_err;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004189}
4190
4191static void sd_stopN(struct gspca_dev *gspca_dev)
4192{
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03004193 struct sd *sd = (struct sd *) gspca_dev;
4194
4195 ov51x_stop(sd);
4196 ov51x_led_control(sd, 0);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004197}
4198
Hans de Goede79b35902009-10-19 06:08:01 -03004199static void sd_stop0(struct gspca_dev *gspca_dev)
4200{
4201 struct sd *sd = (struct sd *) gspca_dev;
4202
Jean-François Moined65174c2010-11-11 06:20:42 -03004203 if (!sd->gspca_dev.present)
4204 return;
Hans de Goede79b35902009-10-19 06:08:01 -03004205 if (sd->bridge == BRIDGE_W9968CF)
4206 w9968cf_stop0(sd);
Hans de Goede614d0692010-10-27 07:42:28 -03004207
Jean-François Moine14653e62010-11-11 06:17:01 -03004208#if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
Hans de Goede614d0692010-10-27 07:42:28 -03004209 /* If the last button state is pressed, release it now! */
4210 if (sd->snapshot_pressed) {
4211 input_report_key(gspca_dev->input_dev, KEY_CAMERA, 0);
4212 input_sync(gspca_dev->input_dev);
4213 sd->snapshot_pressed = 0;
4214 }
4215#endif
Jean-François Moineb4e96ea2010-11-12 16:13:17 -03004216 if (sd->bridge == BRIDGE_OV519)
4217 reg_w(sd, OV519_R57_SNAPSHOT, 0x23);
Hans de Goede79b35902009-10-19 06:08:01 -03004218}
4219
Hans de Goede92e232a2010-02-20 04:30:45 -03004220static void ov51x_handle_button(struct gspca_dev *gspca_dev, u8 state)
4221{
4222 struct sd *sd = (struct sd *) gspca_dev;
4223
4224 if (sd->snapshot_pressed != state) {
Jean-François Moine28566432010-10-01 07:33:26 -03004225#if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
Hans de Goede92e232a2010-02-20 04:30:45 -03004226 input_report_key(gspca_dev->input_dev, KEY_CAMERA, state);
4227 input_sync(gspca_dev->input_dev);
4228#endif
4229 if (state)
4230 sd->snapshot_needs_reset = 1;
4231
4232 sd->snapshot_pressed = state;
4233 } else {
Hans de Goede88e8d202010-02-20 04:45:49 -03004234 /* On the ov511 / ov519 we need to reset the button state
4235 multiple times, as resetting does not work as long as the
4236 button stays pressed */
4237 switch (sd->bridge) {
4238 case BRIDGE_OV511:
4239 case BRIDGE_OV511PLUS:
4240 case BRIDGE_OV519:
4241 if (state)
4242 sd->snapshot_needs_reset = 1;
4243 break;
4244 }
Hans de Goede92e232a2010-02-20 04:30:45 -03004245 }
4246}
4247
Hans de Goede1876bb92009-06-14 06:45:50 -03004248static void ov511_pkt_scan(struct gspca_dev *gspca_dev,
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004249 u8 *in, /* isoc packet */
4250 int len) /* iso packet length */
Hans de Goede1876bb92009-06-14 06:45:50 -03004251{
4252 struct sd *sd = (struct sd *) gspca_dev;
4253
4254 /* SOF/EOF packets have 1st to 8th bytes zeroed and the 9th
4255 * byte non-zero. The EOF packet has image width/height in the
4256 * 10th and 11th bytes. The 9th byte is given as follows:
4257 *
4258 * bit 7: EOF
4259 * 6: compression enabled
4260 * 5: 422/420/400 modes
4261 * 4: 422/420/400 modes
4262 * 3: 1
4263 * 2: snapshot button on
4264 * 1: snapshot frame
4265 * 0: even/odd field
4266 */
4267 if (!(in[0] | in[1] | in[2] | in[3] | in[4] | in[5] | in[6] | in[7]) &&
4268 (in[8] & 0x08)) {
Hans de Goede88e8d202010-02-20 04:45:49 -03004269 ov51x_handle_button(gspca_dev, (in[8] >> 2) & 1);
Hans de Goede1876bb92009-06-14 06:45:50 -03004270 if (in[8] & 0x80) {
4271 /* Frame end */
4272 if ((in[9] + 1) * 8 != gspca_dev->width ||
4273 (in[10] + 1) * 8 != gspca_dev->height) {
4274 PDEBUG(D_ERR, "Invalid frame size, got: %dx%d,"
4275 " requested: %dx%d\n",
4276 (in[9] + 1) * 8, (in[10] + 1) * 8,
4277 gspca_dev->width, gspca_dev->height);
4278 gspca_dev->last_packet_type = DISCARD_PACKET;
4279 return;
4280 }
4281 /* Add 11 byte footer to frame, might be usefull */
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004282 gspca_frame_add(gspca_dev, LAST_PACKET, in, 11);
Hans de Goede1876bb92009-06-14 06:45:50 -03004283 return;
4284 } else {
4285 /* Frame start */
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004286 gspca_frame_add(gspca_dev, FIRST_PACKET, in, 0);
Hans de Goede1876bb92009-06-14 06:45:50 -03004287 sd->packet_nr = 0;
4288 }
4289 }
4290
4291 /* Ignore the packet number */
4292 len--;
4293
4294 /* intermediate packet */
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004295 gspca_frame_add(gspca_dev, INTER_PACKET, in, len);
Hans de Goede1876bb92009-06-14 06:45:50 -03004296}
4297
Hans de Goede49809d62009-06-07 12:10:39 -03004298static void ov518_pkt_scan(struct gspca_dev *gspca_dev,
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004299 u8 *data, /* isoc packet */
Hans de Goede49809d62009-06-07 12:10:39 -03004300 int len) /* iso packet length */
4301{
Hans de Goede92918a52009-06-14 06:21:35 -03004302 struct sd *sd = (struct sd *) gspca_dev;
Hans de Goede49809d62009-06-07 12:10:39 -03004303
4304 /* A false positive here is likely, until OVT gives me
4305 * the definitive SOF/EOF format */
4306 if ((!(data[0] | data[1] | data[2] | data[3] | data[5])) && data[6]) {
Hans de Goede92e232a2010-02-20 04:30:45 -03004307 ov51x_handle_button(gspca_dev, (data[6] >> 1) & 1);
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004308 gspca_frame_add(gspca_dev, LAST_PACKET, NULL, 0);
4309 gspca_frame_add(gspca_dev, FIRST_PACKET, NULL, 0);
Hans de Goede92918a52009-06-14 06:21:35 -03004310 sd->packet_nr = 0;
4311 }
4312
4313 if (gspca_dev->last_packet_type == DISCARD_PACKET)
4314 return;
4315
4316 /* Does this device use packet numbers ? */
4317 if (len & 7) {
4318 len--;
4319 if (sd->packet_nr == data[len])
4320 sd->packet_nr++;
4321 /* The last few packets of the frame (which are all 0's
4322 except that they may contain part of the footer), are
4323 numbered 0 */
4324 else if (sd->packet_nr == 0 || data[len]) {
4325 PDEBUG(D_ERR, "Invalid packet nr: %d (expect: %d)",
4326 (int)data[len], (int)sd->packet_nr);
4327 gspca_dev->last_packet_type = DISCARD_PACKET;
4328 return;
4329 }
Hans de Goede49809d62009-06-07 12:10:39 -03004330 }
4331
4332 /* intermediate packet */
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004333 gspca_frame_add(gspca_dev, INTER_PACKET, data, len);
Hans de Goede49809d62009-06-07 12:10:39 -03004334}
4335
4336static void ov519_pkt_scan(struct gspca_dev *gspca_dev,
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004337 u8 *data, /* isoc packet */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004338 int len) /* iso packet length */
4339{
4340 /* Header of ov519 is 16 bytes:
4341 * Byte Value Description
4342 * 0 0xff magic
4343 * 1 0xff magic
4344 * 2 0xff magic
4345 * 3 0xXX 0x50 = SOF, 0x51 = EOF
4346 * 9 0xXX 0x01 initial frame without data,
4347 * 0x00 standard frame with image
4348 * 14 Lo in EOF: length of image data / 8
4349 * 15 Hi
4350 */
4351
4352 if (data[0] == 0xff && data[1] == 0xff && data[2] == 0xff) {
4353 switch (data[3]) {
4354 case 0x50: /* start of frame */
Hans de Goede417a4d22010-02-19 07:37:08 -03004355 /* Don't check the button state here, as the state
4356 usually (always ?) changes at EOF and checking it
4357 here leads to unnecessary snapshot state resets. */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004358#define HDRSZ 16
4359 data += HDRSZ;
4360 len -= HDRSZ;
4361#undef HDRSZ
4362 if (data[0] == 0xff || data[1] == 0xd8)
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004363 gspca_frame_add(gspca_dev, FIRST_PACKET,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004364 data, len);
4365 else
4366 gspca_dev->last_packet_type = DISCARD_PACKET;
4367 return;
4368 case 0x51: /* end of frame */
Hans de Goede92e232a2010-02-20 04:30:45 -03004369 ov51x_handle_button(gspca_dev, data[11] & 1);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004370 if (data[9] != 0)
4371 gspca_dev->last_packet_type = DISCARD_PACKET;
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004372 gspca_frame_add(gspca_dev, LAST_PACKET,
4373 NULL, 0);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004374 return;
4375 }
4376 }
4377
4378 /* intermediate packet */
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004379 gspca_frame_add(gspca_dev, INTER_PACKET, data, len);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004380}
4381
Hans de Goedeb46aaa02009-10-12 10:07:57 -03004382static void ovfx2_pkt_scan(struct gspca_dev *gspca_dev,
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004383 u8 *data, /* isoc packet */
Hans de Goedeb46aaa02009-10-12 10:07:57 -03004384 int len) /* iso packet length */
4385{
Hans de Goeded6b6d7a2010-05-08 08:55:42 -03004386 struct sd *sd = (struct sd *) gspca_dev;
Hans de Goeded6b6d7a2010-05-08 08:55:42 -03004387
4388 gspca_frame_add(gspca_dev, INTER_PACKET, data, len);
4389
Hans de Goedeb46aaa02009-10-12 10:07:57 -03004390 /* A short read signals EOF */
4391 if (len < OVFX2_BULK_SIZE) {
Hans de Goeded6b6d7a2010-05-08 08:55:42 -03004392 /* If the frame is short, and it is one of the first ones
4393 the sensor and bridge are still syncing, so drop it. */
4394 if (sd->first_frame) {
4395 sd->first_frame--;
Jean-François Moineb192ca92010-06-27 03:08:19 -03004396 if (gspca_dev->image_len <
4397 sd->gspca_dev.width * sd->gspca_dev.height)
Hans de Goeded6b6d7a2010-05-08 08:55:42 -03004398 gspca_dev->last_packet_type = DISCARD_PACKET;
4399 }
4400 gspca_frame_add(gspca_dev, LAST_PACKET, NULL, 0);
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004401 gspca_frame_add(gspca_dev, FIRST_PACKET, NULL, 0);
Hans de Goedeb46aaa02009-10-12 10:07:57 -03004402 }
Hans de Goedeb46aaa02009-10-12 10:07:57 -03004403}
4404
Hans de Goede49809d62009-06-07 12:10:39 -03004405static void sd_pkt_scan(struct gspca_dev *gspca_dev,
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004406 u8 *data, /* isoc packet */
Hans de Goede49809d62009-06-07 12:10:39 -03004407 int len) /* iso packet length */
4408{
4409 struct sd *sd = (struct sd *) gspca_dev;
4410
4411 switch (sd->bridge) {
4412 case BRIDGE_OV511:
4413 case BRIDGE_OV511PLUS:
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004414 ov511_pkt_scan(gspca_dev, data, len);
Hans de Goede49809d62009-06-07 12:10:39 -03004415 break;
4416 case BRIDGE_OV518:
4417 case BRIDGE_OV518PLUS:
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004418 ov518_pkt_scan(gspca_dev, data, len);
Hans de Goede49809d62009-06-07 12:10:39 -03004419 break;
4420 case BRIDGE_OV519:
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004421 ov519_pkt_scan(gspca_dev, data, len);
Hans de Goede49809d62009-06-07 12:10:39 -03004422 break;
Hans de Goedeb46aaa02009-10-12 10:07:57 -03004423 case BRIDGE_OVFX2:
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004424 ovfx2_pkt_scan(gspca_dev, data, len);
Hans de Goedeb46aaa02009-10-12 10:07:57 -03004425 break;
Hans de Goedea511ba92009-10-16 07:13:07 -03004426 case BRIDGE_W9968CF:
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004427 w9968cf_pkt_scan(gspca_dev, data, len);
Hans de Goedea511ba92009-10-16 07:13:07 -03004428 break;
Hans de Goede49809d62009-06-07 12:10:39 -03004429 }
4430}
4431
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004432/* -- management routines -- */
4433
4434static void setbrightness(struct gspca_dev *gspca_dev)
4435{
4436 struct sd *sd = (struct sd *) gspca_dev;
4437 int val;
Jean-François Moine42e142f2010-11-13 05:10:27 -03004438 static const struct ov_i2c_regvals brit_7660[][7] = {
4439 {{0x0f, 0x6a}, {0x24, 0x40}, {0x25, 0x2b}, {0x26, 0x90},
4440 {0x27, 0xe0}, {0x28, 0xe0}, {0x2c, 0xe0}},
4441 {{0x0f, 0x6a}, {0x24, 0x50}, {0x25, 0x40}, {0x26, 0xa1},
4442 {0x27, 0xc0}, {0x28, 0xc0}, {0x2c, 0xc0}},
4443 {{0x0f, 0x6a}, {0x24, 0x68}, {0x25, 0x58}, {0x26, 0xc2},
4444 {0x27, 0xa0}, {0x28, 0xa0}, {0x2c, 0xa0}},
4445 {{0x0f, 0x6a}, {0x24, 0x70}, {0x25, 0x68}, {0x26, 0xd3},
4446 {0x27, 0x80}, {0x28, 0x80}, {0x2c, 0x80}},
4447 {{0x0f, 0x6a}, {0x24, 0x80}, {0x25, 0x70}, {0x26, 0xd3},
4448 {0x27, 0x20}, {0x28, 0x20}, {0x2c, 0x20}},
4449 {{0x0f, 0x6a}, {0x24, 0x88}, {0x25, 0x78}, {0x26, 0xd3},
4450 {0x27, 0x40}, {0x28, 0x40}, {0x2c, 0x40}},
4451 {{0x0f, 0x6a}, {0x24, 0x90}, {0x25, 0x80}, {0x26, 0xd4},
4452 {0x27, 0x60}, {0x28, 0x60}, {0x2c, 0x60}}
4453 };
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004454
Jean-François Moine62833ac2010-10-02 04:27:02 -03004455 val = sd->ctrls[BRIGHTNESS].val;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004456 switch (sd->sensor) {
4457 case SEN_OV8610:
4458 case SEN_OV7610:
4459 case SEN_OV76BE:
4460 case SEN_OV6620:
4461 case SEN_OV6630:
Hans de Goede7d971372009-06-14 05:28:17 -03004462 case SEN_OV66308AF:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004463 case SEN_OV7640:
Hans de Goede035d3a32010-01-09 08:14:43 -03004464 case SEN_OV7648:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004465 i2c_w(sd, OV7610_REG_BRT, val);
4466 break;
4467 case SEN_OV7620:
Hans de Goede859cc472010-01-07 15:42:35 -03004468 case SEN_OV7620AE:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004469 /* 7620 doesn't like manual changes when in auto mode */
Jean-François Moine62833ac2010-10-02 04:27:02 -03004470 if (!sd->ctrls[AUTOBRIGHT].val)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004471 i2c_w(sd, OV7610_REG_BRT, val);
4472 break;
Jean-François Moine42e142f2010-11-13 05:10:27 -03004473 case SEN_OV7660:
4474 write_i2c_regvals(sd, brit_7660[val],
4475 ARRAY_SIZE(brit_7660[0]));
4476 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004477 case SEN_OV7670:
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03004478/*win trace
Jean-François Moine21867802010-11-12 06:12:09 -03004479 * i2c_w_mask(sd, OV7670_R13_COM8, 0, OV7670_COM8_AEC); */
4480 i2c_w(sd, OV7670_R55_BRIGHT, ov7670_abs_to_sm(val));
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004481 break;
4482 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004483}
4484
4485static void setcontrast(struct gspca_dev *gspca_dev)
4486{
4487 struct sd *sd = (struct sd *) gspca_dev;
4488 int val;
Jean-François Moine42e142f2010-11-13 05:10:27 -03004489 static const struct ov_i2c_regvals contrast_7660[][31] = {
4490 {{0x6c, 0xf0}, {0x6d, 0xf0}, {0x6e, 0xf8}, {0x6f, 0xa0},
4491 {0x70, 0x58}, {0x71, 0x38}, {0x72, 0x30}, {0x73, 0x30},
4492 {0x74, 0x28}, {0x75, 0x28}, {0x76, 0x24}, {0x77, 0x24},
4493 {0x78, 0x22}, {0x79, 0x28}, {0x7a, 0x2a}, {0x7b, 0x34},
4494 {0x7c, 0x0f}, {0x7d, 0x1e}, {0x7e, 0x3d}, {0x7f, 0x65},
4495 {0x80, 0x70}, {0x81, 0x77}, {0x82, 0x7d}, {0x83, 0x83},
4496 {0x84, 0x88}, {0x85, 0x8d}, {0x86, 0x96}, {0x87, 0x9f},
4497 {0x88, 0xb0}, {0x89, 0xc4}, {0x8a, 0xd9}},
4498 {{0x6c, 0xf0}, {0x6d, 0xf0}, {0x6e, 0xf8}, {0x6f, 0x94},
4499 {0x70, 0x58}, {0x71, 0x40}, {0x72, 0x30}, {0x73, 0x30},
4500 {0x74, 0x30}, {0x75, 0x30}, {0x76, 0x2c}, {0x77, 0x24},
4501 {0x78, 0x22}, {0x79, 0x28}, {0x7a, 0x2a}, {0x7b, 0x31},
4502 {0x7c, 0x0f}, {0x7d, 0x1e}, {0x7e, 0x3d}, {0x7f, 0x62},
4503 {0x80, 0x6d}, {0x81, 0x75}, {0x82, 0x7b}, {0x83, 0x81},
4504 {0x84, 0x87}, {0x85, 0x8d}, {0x86, 0x98}, {0x87, 0xa1},
4505 {0x88, 0xb2}, {0x89, 0xc6}, {0x8a, 0xdb}},
4506 {{0x6c, 0xf0}, {0x6d, 0xf0}, {0x6e, 0xf0}, {0x6f, 0x84},
4507 {0x70, 0x58}, {0x71, 0x48}, {0x72, 0x40}, {0x73, 0x40},
4508 {0x74, 0x28}, {0x75, 0x28}, {0x76, 0x28}, {0x77, 0x24},
4509 {0x78, 0x26}, {0x79, 0x28}, {0x7a, 0x28}, {0x7b, 0x34},
4510 {0x7c, 0x0f}, {0x7d, 0x1e}, {0x7e, 0x3c}, {0x7f, 0x5d},
4511 {0x80, 0x68}, {0x81, 0x71}, {0x82, 0x79}, {0x83, 0x81},
4512 {0x84, 0x86}, {0x85, 0x8b}, {0x86, 0x95}, {0x87, 0x9e},
4513 {0x88, 0xb1}, {0x89, 0xc5}, {0x8a, 0xd9}},
4514 {{0x6c, 0xf0}, {0x6d, 0xf0}, {0x6e, 0xf0}, {0x6f, 0x70},
4515 {0x70, 0x58}, {0x71, 0x58}, {0x72, 0x48}, {0x73, 0x48},
4516 {0x74, 0x38}, {0x75, 0x40}, {0x76, 0x34}, {0x77, 0x34},
4517 {0x78, 0x2e}, {0x79, 0x28}, {0x7a, 0x24}, {0x7b, 0x22},
4518 {0x7c, 0x0f}, {0x7d, 0x1e}, {0x7e, 0x3c}, {0x7f, 0x58},
4519 {0x80, 0x63}, {0x81, 0x6e}, {0x82, 0x77}, {0x83, 0x80},
4520 {0x84, 0x87}, {0x85, 0x8f}, {0x86, 0x9c}, {0x87, 0xa9},
4521 {0x88, 0xc0}, {0x89, 0xd4}, {0x8a, 0xe6}},
4522 {{0x6c, 0xa0}, {0x6d, 0xf0}, {0x6e, 0x90}, {0x6f, 0x80},
4523 {0x70, 0x70}, {0x71, 0x80}, {0x72, 0x60}, {0x73, 0x60},
4524 {0x74, 0x58}, {0x75, 0x60}, {0x76, 0x4c}, {0x77, 0x38},
4525 {0x78, 0x38}, {0x79, 0x2a}, {0x7a, 0x20}, {0x7b, 0x0e},
4526 {0x7c, 0x0a}, {0x7d, 0x14}, {0x7e, 0x26}, {0x7f, 0x46},
4527 {0x80, 0x54}, {0x81, 0x64}, {0x82, 0x70}, {0x83, 0x7c},
4528 {0x84, 0x87}, {0x85, 0x93}, {0x86, 0xa6}, {0x87, 0xb4},
4529 {0x88, 0xd0}, {0x89, 0xe5}, {0x8a, 0xf5}},
4530 {{0x6c, 0x60}, {0x6d, 0x80}, {0x6e, 0x60}, {0x6f, 0x80},
4531 {0x70, 0x80}, {0x71, 0x80}, {0x72, 0x88}, {0x73, 0x30},
4532 {0x74, 0x70}, {0x75, 0x68}, {0x76, 0x64}, {0x77, 0x50},
4533 {0x78, 0x3c}, {0x79, 0x22}, {0x7a, 0x10}, {0x7b, 0x08},
4534 {0x7c, 0x06}, {0x7d, 0x0e}, {0x7e, 0x1a}, {0x7f, 0x3a},
4535 {0x80, 0x4a}, {0x81, 0x5a}, {0x82, 0x6b}, {0x83, 0x7b},
4536 {0x84, 0x89}, {0x85, 0x96}, {0x86, 0xaf}, {0x87, 0xc3},
4537 {0x88, 0xe1}, {0x89, 0xf2}, {0x8a, 0xfa}},
4538 {{0x6c, 0x20}, {0x6d, 0x40}, {0x6e, 0x20}, {0x6f, 0x60},
4539 {0x70, 0x88}, {0x71, 0xc8}, {0x72, 0xc0}, {0x73, 0xb8},
4540 {0x74, 0xa8}, {0x75, 0xb8}, {0x76, 0x80}, {0x77, 0x5c},
4541 {0x78, 0x26}, {0x79, 0x10}, {0x7a, 0x08}, {0x7b, 0x04},
4542 {0x7c, 0x02}, {0x7d, 0x06}, {0x7e, 0x0a}, {0x7f, 0x22},
4543 {0x80, 0x33}, {0x81, 0x4c}, {0x82, 0x64}, {0x83, 0x7b},
4544 {0x84, 0x90}, {0x85, 0xa7}, {0x86, 0xc7}, {0x87, 0xde},
4545 {0x88, 0xf1}, {0x89, 0xf9}, {0x8a, 0xfd}},
4546 };
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004547
Jean-François Moine62833ac2010-10-02 04:27:02 -03004548 val = sd->ctrls[CONTRAST].val;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004549 switch (sd->sensor) {
4550 case SEN_OV7610:
4551 case SEN_OV6620:
4552 i2c_w(sd, OV7610_REG_CNT, val);
4553 break;
4554 case SEN_OV6630:
Hans de Goede7d971372009-06-14 05:28:17 -03004555 case SEN_OV66308AF:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004556 i2c_w_mask(sd, OV7610_REG_CNT, val >> 4, 0x0f);
Hans de Goede49809d62009-06-07 12:10:39 -03004557 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004558 case SEN_OV8610: {
Jean-François Moine9d1593a2010-11-11 08:04:06 -03004559 static const u8 ctab[] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004560 0x03, 0x09, 0x0b, 0x0f, 0x53, 0x6f, 0x35, 0x7f
4561 };
4562
4563 /* Use Y gamma control instead. Bit 0 enables it. */
4564 i2c_w(sd, 0x64, ctab[val >> 5]);
4565 break;
4566 }
Hans de Goede859cc472010-01-07 15:42:35 -03004567 case SEN_OV7620:
4568 case SEN_OV7620AE: {
Jean-François Moine9d1593a2010-11-11 08:04:06 -03004569 static const u8 ctab[] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004570 0x01, 0x05, 0x09, 0x11, 0x15, 0x35, 0x37, 0x57,
4571 0x5b, 0xa5, 0xa7, 0xc7, 0xc9, 0xcf, 0xef, 0xff
4572 };
4573
4574 /* Use Y gamma control instead. Bit 0 enables it. */
4575 i2c_w(sd, 0x64, ctab[val >> 4]);
4576 break;
4577 }
Jean-François Moine42e142f2010-11-13 05:10:27 -03004578 case SEN_OV7660:
4579 write_i2c_regvals(sd, contrast_7660[val],
4580 ARRAY_SIZE(contrast_7660[0]));
4581 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004582 case SEN_OV7670:
4583 /* check that this isn't just the same as ov7610 */
Jean-François Moine21867802010-11-12 06:12:09 -03004584 i2c_w(sd, OV7670_R56_CONTRAS, val >> 1);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004585 break;
4586 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004587}
4588
4589static void setcolors(struct gspca_dev *gspca_dev)
4590{
4591 struct sd *sd = (struct sd *) gspca_dev;
4592 int val;
Jean-François Moine42e142f2010-11-13 05:10:27 -03004593 static const struct ov_i2c_regvals colors_7660[][6] = {
4594 {{0x4f, 0x28}, {0x50, 0x2a}, {0x51, 0x02}, {0x52, 0x0a},
4595 {0x53, 0x19}, {0x54, 0x23}},
4596 {{0x4f, 0x47}, {0x50, 0x4a}, {0x51, 0x03}, {0x52, 0x11},
4597 {0x53, 0x2c}, {0x54, 0x3e}},
4598 {{0x4f, 0x66}, {0x50, 0x6b}, {0x51, 0x05}, {0x52, 0x19},
4599 {0x53, 0x40}, {0x54, 0x59}},
4600 {{0x4f, 0x84}, {0x50, 0x8b}, {0x51, 0x06}, {0x52, 0x20},
4601 {0x53, 0x53}, {0x54, 0x73}},
4602 {{0x4f, 0xa3}, {0x50, 0xab}, {0x51, 0x08}, {0x52, 0x28},
4603 {0x53, 0x66}, {0x54, 0x8e}},
4604 };
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004605
Jean-François Moine62833ac2010-10-02 04:27:02 -03004606 val = sd->ctrls[COLORS].val;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004607 switch (sd->sensor) {
4608 case SEN_OV8610:
4609 case SEN_OV7610:
4610 case SEN_OV76BE:
4611 case SEN_OV6620:
4612 case SEN_OV6630:
Hans de Goede7d971372009-06-14 05:28:17 -03004613 case SEN_OV66308AF:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004614 i2c_w(sd, OV7610_REG_SAT, val);
4615 break;
4616 case SEN_OV7620:
Hans de Goede859cc472010-01-07 15:42:35 -03004617 case SEN_OV7620AE:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004618 /* Use UV gamma control instead. Bits 0 & 7 are reserved. */
4619/* rc = ov_i2c_write(sd->dev, 0x62, (val >> 9) & 0x7e);
4620 if (rc < 0)
4621 goto out; */
4622 i2c_w(sd, OV7610_REG_SAT, val);
4623 break;
4624 case SEN_OV7640:
Hans de Goede035d3a32010-01-09 08:14:43 -03004625 case SEN_OV7648:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004626 i2c_w(sd, OV7610_REG_SAT, val & 0xf0);
4627 break;
Jean-François Moine42e142f2010-11-13 05:10:27 -03004628 case SEN_OV7660:
4629 write_i2c_regvals(sd, colors_7660[val],
4630 ARRAY_SIZE(colors_7660[0]));
4631 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004632 case SEN_OV7670:
4633 /* supported later once I work out how to do it
4634 * transparently fail now! */
4635 /* set REG_COM13 values for UV sat auto mode */
4636 break;
4637 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004638}
4639
Jean-François Moine62833ac2010-10-02 04:27:02 -03004640static void setautobright(struct gspca_dev *gspca_dev)
Hans de Goede02ab18b2009-06-14 04:32:04 -03004641{
Jean-François Moine62833ac2010-10-02 04:27:02 -03004642 struct sd *sd = (struct sd *) gspca_dev;
4643
Jean-François Moine62833ac2010-10-02 04:27:02 -03004644 i2c_w_mask(sd, 0x2d, sd->ctrls[AUTOBRIGHT].val ? 0x10 : 0x00, 0x10);
Hans de Goede02ab18b2009-06-14 04:32:04 -03004645}
4646
Jean-François Moine62833ac2010-10-02 04:27:02 -03004647static void setfreq_i(struct sd *sd)
Hans de Goede02ab18b2009-06-14 04:32:04 -03004648{
Jean-François Moine42e142f2010-11-13 05:10:27 -03004649 if (sd->sensor == SEN_OV7660
4650 || sd->sensor == SEN_OV7670) {
Jean-François Moine62833ac2010-10-02 04:27:02 -03004651 switch (sd->ctrls[FREQ].val) {
Hans de Goede02ab18b2009-06-14 04:32:04 -03004652 case 0: /* Banding filter disabled */
Jean-François Moine21867802010-11-12 06:12:09 -03004653 i2c_w_mask(sd, OV7670_R13_COM8, 0, OV7670_COM8_BFILT);
Hans de Goede02ab18b2009-06-14 04:32:04 -03004654 break;
4655 case 1: /* 50 hz */
Jean-François Moine21867802010-11-12 06:12:09 -03004656 i2c_w_mask(sd, OV7670_R13_COM8, OV7670_COM8_BFILT,
Hans de Goede02ab18b2009-06-14 04:32:04 -03004657 OV7670_COM8_BFILT);
Jean-François Moine21867802010-11-12 06:12:09 -03004658 i2c_w_mask(sd, OV7670_R3B_COM11, 0x08, 0x18);
Hans de Goede02ab18b2009-06-14 04:32:04 -03004659 break;
4660 case 2: /* 60 hz */
Jean-François Moine21867802010-11-12 06:12:09 -03004661 i2c_w_mask(sd, OV7670_R13_COM8, OV7670_COM8_BFILT,
Hans de Goede02ab18b2009-06-14 04:32:04 -03004662 OV7670_COM8_BFILT);
Jean-François Moine21867802010-11-12 06:12:09 -03004663 i2c_w_mask(sd, OV7670_R3B_COM11, 0x00, 0x18);
Hans de Goede02ab18b2009-06-14 04:32:04 -03004664 break;
Jean-François Moine21867802010-11-12 06:12:09 -03004665 case 3: /* Auto hz - ov7670 only */
4666 i2c_w_mask(sd, OV7670_R13_COM8, OV7670_COM8_BFILT,
Hans de Goede02ab18b2009-06-14 04:32:04 -03004667 OV7670_COM8_BFILT);
Jean-François Moine21867802010-11-12 06:12:09 -03004668 i2c_w_mask(sd, OV7670_R3B_COM11, OV7670_COM11_HZAUTO,
Hans de Goede02ab18b2009-06-14 04:32:04 -03004669 0x18);
4670 break;
4671 }
4672 } else {
Jean-François Moine62833ac2010-10-02 04:27:02 -03004673 switch (sd->ctrls[FREQ].val) {
Hans de Goede02ab18b2009-06-14 04:32:04 -03004674 case 0: /* Banding filter disabled */
4675 i2c_w_mask(sd, 0x2d, 0x00, 0x04);
4676 i2c_w_mask(sd, 0x2a, 0x00, 0x80);
4677 break;
4678 case 1: /* 50 hz (filter on and framerate adj) */
4679 i2c_w_mask(sd, 0x2d, 0x04, 0x04);
4680 i2c_w_mask(sd, 0x2a, 0x80, 0x80);
4681 /* 20 fps -> 16.667 fps */
4682 if (sd->sensor == SEN_OV6620 ||
Hans de Goede7d971372009-06-14 05:28:17 -03004683 sd->sensor == SEN_OV6630 ||
4684 sd->sensor == SEN_OV66308AF)
Hans de Goede02ab18b2009-06-14 04:32:04 -03004685 i2c_w(sd, 0x2b, 0x5e);
4686 else
4687 i2c_w(sd, 0x2b, 0xac);
4688 break;
4689 case 2: /* 60 hz (filter on, ...) */
4690 i2c_w_mask(sd, 0x2d, 0x04, 0x04);
4691 if (sd->sensor == SEN_OV6620 ||
Hans de Goede7d971372009-06-14 05:28:17 -03004692 sd->sensor == SEN_OV6630 ||
4693 sd->sensor == SEN_OV66308AF) {
Hans de Goede02ab18b2009-06-14 04:32:04 -03004694 /* 20 fps -> 15 fps */
4695 i2c_w_mask(sd, 0x2a, 0x80, 0x80);
4696 i2c_w(sd, 0x2b, 0xa8);
4697 } else {
4698 /* no framerate adj. */
4699 i2c_w_mask(sd, 0x2a, 0x00, 0x80);
4700 }
4701 break;
4702 }
4703 }
4704}
Jean-François Moine62833ac2010-10-02 04:27:02 -03004705static void setfreq(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004706{
4707 struct sd *sd = (struct sd *) gspca_dev;
4708
Jean-François Moine62833ac2010-10-02 04:27:02 -03004709 setfreq_i(sd);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004710
Jean-François Moine62833ac2010-10-02 04:27:02 -03004711 /* Ugly but necessary */
4712 if (sd->bridge == BRIDGE_W9968CF)
4713 w9968cf_set_crop_window(sd);
Hans de Goede02ab18b2009-06-14 04:32:04 -03004714}
4715
4716static int sd_querymenu(struct gspca_dev *gspca_dev,
4717 struct v4l2_querymenu *menu)
4718{
4719 struct sd *sd = (struct sd *) gspca_dev;
4720
4721 switch (menu->id) {
4722 case V4L2_CID_POWER_LINE_FREQUENCY:
4723 switch (menu->index) {
4724 case 0: /* V4L2_CID_POWER_LINE_FREQUENCY_DISABLED */
4725 strcpy((char *) menu->name, "NoFliker");
4726 return 0;
4727 case 1: /* V4L2_CID_POWER_LINE_FREQUENCY_50HZ */
4728 strcpy((char *) menu->name, "50 Hz");
4729 return 0;
4730 case 2: /* V4L2_CID_POWER_LINE_FREQUENCY_60HZ */
4731 strcpy((char *) menu->name, "60 Hz");
4732 return 0;
4733 case 3:
4734 if (sd->sensor != SEN_OV7670)
4735 return -EINVAL;
4736
4737 strcpy((char *) menu->name, "Automatic");
4738 return 0;
4739 }
4740 break;
4741 }
4742 return -EINVAL;
4743}
4744
Hans de Goede79b35902009-10-19 06:08:01 -03004745static int sd_get_jcomp(struct gspca_dev *gspca_dev,
4746 struct v4l2_jpegcompression *jcomp)
4747{
4748 struct sd *sd = (struct sd *) gspca_dev;
4749
4750 if (sd->bridge != BRIDGE_W9968CF)
4751 return -EINVAL;
4752
4753 memset(jcomp, 0, sizeof *jcomp);
4754 jcomp->quality = sd->quality;
4755 jcomp->jpeg_markers = V4L2_JPEG_MARKER_DHT | V4L2_JPEG_MARKER_DQT |
4756 V4L2_JPEG_MARKER_DRI;
4757 return 0;
4758}
4759
4760static int sd_set_jcomp(struct gspca_dev *gspca_dev,
4761 struct v4l2_jpegcompression *jcomp)
4762{
4763 struct sd *sd = (struct sd *) gspca_dev;
4764
4765 if (sd->bridge != BRIDGE_W9968CF)
4766 return -EINVAL;
4767
4768 if (gspca_dev->streaming)
4769 return -EBUSY;
4770
4771 if (jcomp->quality < QUALITY_MIN)
4772 sd->quality = QUALITY_MIN;
4773 else if (jcomp->quality > QUALITY_MAX)
4774 sd->quality = QUALITY_MAX;
4775 else
4776 sd->quality = jcomp->quality;
4777
4778 /* Return resulting jcomp params to app */
4779 sd_get_jcomp(gspca_dev, jcomp);
4780
4781 return 0;
4782}
4783
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004784/* sub-driver description */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03004785static const struct sd_desc sd_desc = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004786 .name = MODULE_NAME,
4787 .ctrls = sd_ctrls,
4788 .nctrls = ARRAY_SIZE(sd_ctrls),
4789 .config = sd_config,
Jean-Francois Moine012d6b02008-09-03 17:12:16 -03004790 .init = sd_init,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004791 .start = sd_start,
4792 .stopN = sd_stopN,
Hans de Goede79b35902009-10-19 06:08:01 -03004793 .stop0 = sd_stop0,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004794 .pkt_scan = sd_pkt_scan,
Hans de Goede417a4d22010-02-19 07:37:08 -03004795 .dq_callback = sd_reset_snapshot,
Hans de Goede02ab18b2009-06-14 04:32:04 -03004796 .querymenu = sd_querymenu,
Hans de Goede79b35902009-10-19 06:08:01 -03004797 .get_jcomp = sd_get_jcomp,
4798 .set_jcomp = sd_set_jcomp,
Jean-François Moine28566432010-10-01 07:33:26 -03004799#if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
Hans de Goede417a4d22010-02-19 07:37:08 -03004800 .other_input = 1,
4801#endif
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004802};
4803
4804/* -- module initialisation -- */
Jean-François Moine95c967c2011-01-13 05:20:29 -03004805static const struct usb_device_id device_table[] = {
Hans de Goedea511ba92009-10-16 07:13:07 -03004806 {USB_DEVICE(0x041e, 0x4003), .driver_info = BRIDGE_W9968CF },
Hans de Goede49809d62009-06-07 12:10:39 -03004807 {USB_DEVICE(0x041e, 0x4052), .driver_info = BRIDGE_OV519 },
4808 {USB_DEVICE(0x041e, 0x405f), .driver_info = BRIDGE_OV519 },
4809 {USB_DEVICE(0x041e, 0x4060), .driver_info = BRIDGE_OV519 },
4810 {USB_DEVICE(0x041e, 0x4061), .driver_info = BRIDGE_OV519 },
Hans de Goede9e4d8252009-06-14 06:25:06 -03004811 {USB_DEVICE(0x041e, 0x4064),
Jean-François Moine87bae742010-11-12 05:31:34 -03004812 .driver_info = BRIDGE_OV519 | BRIDGE_INVERT_LED },
Rafal Milecki518c8df2009-10-02 03:54:44 -03004813 {USB_DEVICE(0x041e, 0x4067), .driver_info = BRIDGE_OV519 },
Hans de Goede9e4d8252009-06-14 06:25:06 -03004814 {USB_DEVICE(0x041e, 0x4068),
Jean-François Moine87bae742010-11-12 05:31:34 -03004815 .driver_info = BRIDGE_OV519 | BRIDGE_INVERT_LED },
Hans de Goede49809d62009-06-07 12:10:39 -03004816 {USB_DEVICE(0x045e, 0x028c), .driver_info = BRIDGE_OV519 },
4817 {USB_DEVICE(0x054c, 0x0154), .driver_info = BRIDGE_OV519 },
Hans de Goede98184f72010-01-07 12:06:00 -03004818 {USB_DEVICE(0x054c, 0x0155),
Jean-François Moine87bae742010-11-12 05:31:34 -03004819 .driver_info = BRIDGE_OV519 | BRIDGE_INVERT_LED },
Hans de Goede1876bb92009-06-14 06:45:50 -03004820 {USB_DEVICE(0x05a9, 0x0511), .driver_info = BRIDGE_OV511 },
Hans de Goede49809d62009-06-07 12:10:39 -03004821 {USB_DEVICE(0x05a9, 0x0518), .driver_info = BRIDGE_OV518 },
4822 {USB_DEVICE(0x05a9, 0x0519), .driver_info = BRIDGE_OV519 },
4823 {USB_DEVICE(0x05a9, 0x0530), .driver_info = BRIDGE_OV519 },
Hans de Goedeb46aaa02009-10-12 10:07:57 -03004824 {USB_DEVICE(0x05a9, 0x2800), .driver_info = BRIDGE_OVFX2 },
Hans de Goede49809d62009-06-07 12:10:39 -03004825 {USB_DEVICE(0x05a9, 0x4519), .driver_info = BRIDGE_OV519 },
4826 {USB_DEVICE(0x05a9, 0x8519), .driver_info = BRIDGE_OV519 },
Hans de Goede1876bb92009-06-14 06:45:50 -03004827 {USB_DEVICE(0x05a9, 0xa511), .driver_info = BRIDGE_OV511PLUS },
Hans de Goede49809d62009-06-07 12:10:39 -03004828 {USB_DEVICE(0x05a9, 0xa518), .driver_info = BRIDGE_OV518PLUS },
Hans de Goede1876bb92009-06-14 06:45:50 -03004829 {USB_DEVICE(0x0813, 0x0002), .driver_info = BRIDGE_OV511PLUS },
Hans de Goedeb46aaa02009-10-12 10:07:57 -03004830 {USB_DEVICE(0x0b62, 0x0059), .driver_info = BRIDGE_OVFX2 },
4831 {USB_DEVICE(0x0e96, 0xc001), .driver_info = BRIDGE_OVFX2 },
Hans de Goedea511ba92009-10-16 07:13:07 -03004832 {USB_DEVICE(0x1046, 0x9967), .driver_info = BRIDGE_W9968CF },
Jean-François Moine87bae742010-11-12 05:31:34 -03004833 {USB_DEVICE(0x8020, 0xef04), .driver_info = BRIDGE_OVFX2 },
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004834 {}
4835};
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03004836
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004837MODULE_DEVICE_TABLE(usb, device_table);
4838
4839/* -- device connect -- */
4840static int sd_probe(struct usb_interface *intf,
4841 const struct usb_device_id *id)
4842{
4843 return gspca_dev_probe(intf, id, &sd_desc, sizeof(struct sd),
4844 THIS_MODULE);
4845}
4846
4847static struct usb_driver sd_driver = {
4848 .name = MODULE_NAME,
4849 .id_table = device_table,
4850 .probe = sd_probe,
4851 .disconnect = gspca_disconnect,
Jean-Francois Moine6a709742008-09-03 16:48:10 -03004852#ifdef CONFIG_PM
4853 .suspend = gspca_suspend,
4854 .resume = gspca_resume,
4855#endif
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004856};
4857
4858/* -- module insert / remove -- */
4859static int __init sd_mod_init(void)
4860{
Jean-François Moine54826432010-09-13 04:53:03 -03004861 return usb_register(&sd_driver);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004862}
4863static void __exit sd_mod_exit(void)
4864{
4865 usb_deregister(&sd_driver);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004866}
4867
4868module_init(sd_mod_init);
4869module_exit(sd_mod_exit);
4870
4871module_param(frame_rate, int, 0644);
4872MODULE_PARM_DESC(frame_rate, "Frame rate (5, 10, 15, 20 or 30 fps)");