blob: 17b0d51d91e55913f42be3e6782ba4ef69777453 [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
60/* ov519 device descriptor */
61struct sd {
62 struct gspca_dev gspca_dev; /* !! must be the first item */
63
Hans de Goede92918a52009-06-14 06:21:35 -030064 __u8 packet_nr;
65
Hans de Goede49809d62009-06-07 12:10:39 -030066 char bridge;
67#define BRIDGE_OV511 0
68#define BRIDGE_OV511PLUS 1
69#define BRIDGE_OV518 2
70#define BRIDGE_OV518PLUS 3
71#define BRIDGE_OV519 4
Hans de Goede635118d2009-10-11 09:49:03 -030072#define BRIDGE_OVFX2 5
Hans de Goedea511ba92009-10-16 07:13:07 -030073#define BRIDGE_W9968CF 6
Hans de Goede9e4d8252009-06-14 06:25:06 -030074#define BRIDGE_MASK 7
75
76 char invert_led;
77#define BRIDGE_INVERT_LED 8
Hans de Goede49809d62009-06-07 12:10:39 -030078
Hans de Goede417a4d22010-02-19 07:37:08 -030079 char snapshot_pressed;
80 char snapshot_needs_reset;
81
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030082 /* Determined by sensor type */
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -030083 __u8 sif;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030084
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -030085 __u8 brightness;
86 __u8 contrast;
87 __u8 colors;
Jean-Francois Moine0cd67592008-07-29 05:25:28 -030088 __u8 hflip;
89 __u8 vflip;
Hans de Goede02ab18b2009-06-14 04:32:04 -030090 __u8 autobrightness;
91 __u8 freq;
Hans de Goede79b35902009-10-19 06:08:01 -030092 __u8 quality;
93#define QUALITY_MIN 50
94#define QUALITY_MAX 70
95#define QUALITY_DEF 50
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030096
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -030097 __u8 stopped; /* Streaming is temporarily paused */
Hans de Goeded6b6d7a2010-05-08 08:55:42 -030098 __u8 first_frame;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030099
Hans de Goede1876bb92009-06-14 06:45:50 -0300100 __u8 frame_rate; /* current Framerate */
101 __u8 clockdiv; /* clockdiv override */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300102
103 char sensor; /* Type of image sensor chip (SEN_*) */
104#define SEN_UNKNOWN 0
Hans de Goede635118d2009-10-11 09:49:03 -0300105#define SEN_OV2610 1
106#define SEN_OV3610 2
107#define SEN_OV6620 3
108#define SEN_OV6630 4
109#define SEN_OV66308AF 5
110#define SEN_OV7610 6
111#define SEN_OV7620 7
Hans de Goede859cc472010-01-07 15:42:35 -0300112#define SEN_OV7620AE 8
113#define SEN_OV7640 9
Hans de Goede035d3a32010-01-09 08:14:43 -0300114#define SEN_OV7648 10
115#define SEN_OV7670 11
116#define SEN_OV76BE 12
117#define SEN_OV8610 13
Hans de Goedea511ba92009-10-16 07:13:07 -0300118
119 u8 sensor_addr;
120 int sensor_width;
121 int sensor_height;
Hans de Goedefb1f9022009-10-16 07:42:53 -0300122 int sensor_reg_cache[256];
Hans de Goede79b35902009-10-19 06:08:01 -0300123
Jean-François Moine9a731a32010-06-04 05:26:42 -0300124 u8 jpeg_hdr[JPEG_HDR_SZ];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300125};
126
Hans de Goedea511ba92009-10-16 07:13:07 -0300127/* Note this is a bit of a hack, but the w9968cf driver needs the code for all
128 the ov sensors which is already present here. When we have the time we
129 really should move the sensor drivers to v4l2 sub drivers. */
130#include "w996Xcf.c"
131
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300132/* V4L2 controls supported by the driver */
133static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val);
134static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val);
135static int sd_setcontrast(struct gspca_dev *gspca_dev, __s32 val);
136static int sd_getcontrast(struct gspca_dev *gspca_dev, __s32 *val);
137static int sd_setcolors(struct gspca_dev *gspca_dev, __s32 val);
138static int sd_getcolors(struct gspca_dev *gspca_dev, __s32 *val);
Jean-Francois Moine0cd67592008-07-29 05:25:28 -0300139static int sd_sethflip(struct gspca_dev *gspca_dev, __s32 val);
140static int sd_gethflip(struct gspca_dev *gspca_dev, __s32 *val);
141static int sd_setvflip(struct gspca_dev *gspca_dev, __s32 val);
142static int sd_getvflip(struct gspca_dev *gspca_dev, __s32 *val);
Hans de Goede02ab18b2009-06-14 04:32:04 -0300143static int sd_setautobrightness(struct gspca_dev *gspca_dev, __s32 val);
144static int sd_getautobrightness(struct gspca_dev *gspca_dev, __s32 *val);
145static int sd_setfreq(struct gspca_dev *gspca_dev, __s32 val);
146static int sd_getfreq(struct gspca_dev *gspca_dev, __s32 *val);
Hans de Goede49809d62009-06-07 12:10:39 -0300147static void setbrightness(struct gspca_dev *gspca_dev);
148static void setcontrast(struct gspca_dev *gspca_dev);
149static void setcolors(struct gspca_dev *gspca_dev);
Hans de Goede02ab18b2009-06-14 04:32:04 -0300150static void setautobrightness(struct sd *sd);
151static void setfreq(struct sd *sd);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300152
Hans de Goede02ab18b2009-06-14 04:32:04 -0300153static const struct ctrl sd_ctrls[] = {
Hans de Goeded02134d2010-01-09 19:22:34 -0300154#define BRIGHTNESS_IDX 0
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300155 {
156 {
157 .id = V4L2_CID_BRIGHTNESS,
158 .type = V4L2_CTRL_TYPE_INTEGER,
159 .name = "Brightness",
160 .minimum = 0,
161 .maximum = 255,
162 .step = 1,
Jean-Francois Moine594f5b82008-08-01 06:37:51 -0300163#define BRIGHTNESS_DEF 127
164 .default_value = BRIGHTNESS_DEF,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300165 },
166 .set = sd_setbrightness,
167 .get = sd_getbrightness,
168 },
Hans de Goeded02134d2010-01-09 19:22:34 -0300169#define CONTRAST_IDX 1
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300170 {
171 {
172 .id = V4L2_CID_CONTRAST,
173 .type = V4L2_CTRL_TYPE_INTEGER,
174 .name = "Contrast",
175 .minimum = 0,
176 .maximum = 255,
177 .step = 1,
Jean-Francois Moine594f5b82008-08-01 06:37:51 -0300178#define CONTRAST_DEF 127
179 .default_value = CONTRAST_DEF,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300180 },
181 .set = sd_setcontrast,
182 .get = sd_getcontrast,
183 },
Hans de Goeded02134d2010-01-09 19:22:34 -0300184#define COLOR_IDX 2
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300185 {
186 {
187 .id = V4L2_CID_SATURATION,
188 .type = V4L2_CTRL_TYPE_INTEGER,
Jean-Francois Moine594f5b82008-08-01 06:37:51 -0300189 .name = "Color",
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300190 .minimum = 0,
191 .maximum = 255,
192 .step = 1,
Jean-Francois Moine594f5b82008-08-01 06:37:51 -0300193#define COLOR_DEF 127
194 .default_value = COLOR_DEF,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300195 },
196 .set = sd_setcolors,
197 .get = sd_getcolors,
198 },
Hans de Goede02ab18b2009-06-14 04:32:04 -0300199/* The flip controls work with ov7670 only */
Jean-Francois Moinede004482008-09-03 17:12:16 -0300200#define HFLIP_IDX 3
Jean-Francois Moine0cd67592008-07-29 05:25:28 -0300201 {
202 {
203 .id = V4L2_CID_HFLIP,
204 .type = V4L2_CTRL_TYPE_BOOLEAN,
205 .name = "Mirror",
206 .minimum = 0,
207 .maximum = 1,
208 .step = 1,
209#define HFLIP_DEF 0
210 .default_value = HFLIP_DEF,
211 },
212 .set = sd_sethflip,
213 .get = sd_gethflip,
214 },
Jean-Francois Moinede004482008-09-03 17:12:16 -0300215#define VFLIP_IDX 4
Jean-Francois Moine0cd67592008-07-29 05:25:28 -0300216 {
217 {
218 .id = V4L2_CID_VFLIP,
219 .type = V4L2_CTRL_TYPE_BOOLEAN,
220 .name = "Vflip",
221 .minimum = 0,
222 .maximum = 1,
223 .step = 1,
224#define VFLIP_DEF 0
225 .default_value = VFLIP_DEF,
226 },
227 .set = sd_setvflip,
228 .get = sd_getvflip,
229 },
Hans de Goede02ab18b2009-06-14 04:32:04 -0300230#define AUTOBRIGHT_IDX 5
231 {
232 {
233 .id = V4L2_CID_AUTOBRIGHTNESS,
234 .type = V4L2_CTRL_TYPE_BOOLEAN,
235 .name = "Auto Brightness",
236 .minimum = 0,
237 .maximum = 1,
238 .step = 1,
239#define AUTOBRIGHT_DEF 1
240 .default_value = AUTOBRIGHT_DEF,
241 },
242 .set = sd_setautobrightness,
243 .get = sd_getautobrightness,
244 },
245#define FREQ_IDX 6
246 {
247 {
248 .id = V4L2_CID_POWER_LINE_FREQUENCY,
249 .type = V4L2_CTRL_TYPE_MENU,
250 .name = "Light frequency filter",
251 .minimum = 0,
252 .maximum = 2, /* 0: 0, 1: 50Hz, 2:60Hz */
253 .step = 1,
254#define FREQ_DEF 0
255 .default_value = FREQ_DEF,
256 },
257 .set = sd_setfreq,
258 .get = sd_getfreq,
259 },
260#define OV7670_FREQ_IDX 7
261 {
262 {
263 .id = V4L2_CID_POWER_LINE_FREQUENCY,
264 .type = V4L2_CTRL_TYPE_MENU,
265 .name = "Light frequency filter",
266 .minimum = 0,
267 .maximum = 3, /* 0: 0, 1: 50Hz, 2:60Hz 3: Auto Hz */
268 .step = 1,
269#define OV7670_FREQ_DEF 3
270 .default_value = OV7670_FREQ_DEF,
271 },
272 .set = sd_setfreq,
273 .get = sd_getfreq,
274 },
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300275};
276
Hans de Goede49809d62009-06-07 12:10:39 -0300277static const struct v4l2_pix_format ov519_vga_mode[] = {
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300278 {320, 240, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
279 .bytesperline = 320,
Jean-Francois Moine594f5b82008-08-01 06:37:51 -0300280 .sizeimage = 320 * 240 * 3 / 8 + 590,
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300281 .colorspace = V4L2_COLORSPACE_JPEG,
282 .priv = 1},
283 {640, 480, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
284 .bytesperline = 640,
285 .sizeimage = 640 * 480 * 3 / 8 + 590,
286 .colorspace = V4L2_COLORSPACE_JPEG,
287 .priv = 0},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300288};
Hans de Goede49809d62009-06-07 12:10:39 -0300289static const struct v4l2_pix_format ov519_sif_mode[] = {
Hans de Goede124cc9c2009-06-14 05:48:00 -0300290 {160, 120, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
291 .bytesperline = 160,
292 .sizeimage = 160 * 120 * 3 / 8 + 590,
293 .colorspace = V4L2_COLORSPACE_JPEG,
294 .priv = 3},
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300295 {176, 144, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
296 .bytesperline = 176,
Jean-Francois Moine594f5b82008-08-01 06:37:51 -0300297 .sizeimage = 176 * 144 * 3 / 8 + 590,
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300298 .colorspace = V4L2_COLORSPACE_JPEG,
299 .priv = 1},
Hans de Goede124cc9c2009-06-14 05:48:00 -0300300 {320, 240, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
301 .bytesperline = 320,
302 .sizeimage = 320 * 240 * 3 / 8 + 590,
303 .colorspace = V4L2_COLORSPACE_JPEG,
304 .priv = 2},
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300305 {352, 288, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
306 .bytesperline = 352,
Jean-Francois Moine594f5b82008-08-01 06:37:51 -0300307 .sizeimage = 352 * 288 * 3 / 8 + 590,
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300308 .colorspace = V4L2_COLORSPACE_JPEG,
309 .priv = 0},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300310};
311
Hans de Goedeb282d872009-06-14 19:10:40 -0300312/* Note some of the sizeimage values for the ov511 / ov518 may seem
313 larger then necessary, however they need to be this big as the ov511 /
314 ov518 always fills the entire isoc frame, using 0 padding bytes when
315 it doesn't have any data. So with low framerates the amount of data
316 transfered can become quite large (libv4l will remove all the 0 padding
317 in userspace). */
Hans de Goede49809d62009-06-07 12:10:39 -0300318static const struct v4l2_pix_format ov518_vga_mode[] = {
319 {320, 240, V4L2_PIX_FMT_OV518, V4L2_FIELD_NONE,
320 .bytesperline = 320,
Hans de Goedeb282d872009-06-14 19:10:40 -0300321 .sizeimage = 320 * 240 * 3,
Hans de Goede49809d62009-06-07 12:10:39 -0300322 .colorspace = V4L2_COLORSPACE_JPEG,
323 .priv = 1},
324 {640, 480, V4L2_PIX_FMT_OV518, V4L2_FIELD_NONE,
325 .bytesperline = 640,
Hans de Goedeb282d872009-06-14 19:10:40 -0300326 .sizeimage = 640 * 480 * 2,
Hans de Goede49809d62009-06-07 12:10:39 -0300327 .colorspace = V4L2_COLORSPACE_JPEG,
328 .priv = 0},
329};
330static const struct v4l2_pix_format ov518_sif_mode[] = {
Hans de Goede124cc9c2009-06-14 05:48:00 -0300331 {160, 120, V4L2_PIX_FMT_OV518, V4L2_FIELD_NONE,
332 .bytesperline = 160,
Hans de Goedeb282d872009-06-14 19:10:40 -0300333 .sizeimage = 70000,
Hans de Goede124cc9c2009-06-14 05:48:00 -0300334 .colorspace = V4L2_COLORSPACE_JPEG,
335 .priv = 3},
Hans de Goede49809d62009-06-07 12:10:39 -0300336 {176, 144, V4L2_PIX_FMT_OV518, V4L2_FIELD_NONE,
337 .bytesperline = 176,
Hans de Goedeb282d872009-06-14 19:10:40 -0300338 .sizeimage = 70000,
Hans de Goede49809d62009-06-07 12:10:39 -0300339 .colorspace = V4L2_COLORSPACE_JPEG,
340 .priv = 1},
Hans de Goede124cc9c2009-06-14 05:48:00 -0300341 {320, 240, V4L2_PIX_FMT_OV518, V4L2_FIELD_NONE,
342 .bytesperline = 320,
Hans de Goedeb282d872009-06-14 19:10:40 -0300343 .sizeimage = 320 * 240 * 3,
Hans de Goede124cc9c2009-06-14 05:48:00 -0300344 .colorspace = V4L2_COLORSPACE_JPEG,
345 .priv = 2},
Hans de Goede49809d62009-06-07 12:10:39 -0300346 {352, 288, V4L2_PIX_FMT_OV518, V4L2_FIELD_NONE,
347 .bytesperline = 352,
Hans de Goedeb282d872009-06-14 19:10:40 -0300348 .sizeimage = 352 * 288 * 3,
Hans de Goede49809d62009-06-07 12:10:39 -0300349 .colorspace = V4L2_COLORSPACE_JPEG,
350 .priv = 0},
351};
352
Hans de Goede1876bb92009-06-14 06:45:50 -0300353static const struct v4l2_pix_format ov511_vga_mode[] = {
354 {320, 240, V4L2_PIX_FMT_OV511, V4L2_FIELD_NONE,
355 .bytesperline = 320,
356 .sizeimage = 320 * 240 * 3,
357 .colorspace = V4L2_COLORSPACE_JPEG,
358 .priv = 1},
359 {640, 480, V4L2_PIX_FMT_OV511, V4L2_FIELD_NONE,
360 .bytesperline = 640,
361 .sizeimage = 640 * 480 * 2,
362 .colorspace = V4L2_COLORSPACE_JPEG,
363 .priv = 0},
364};
365static const struct v4l2_pix_format ov511_sif_mode[] = {
366 {160, 120, V4L2_PIX_FMT_OV511, V4L2_FIELD_NONE,
367 .bytesperline = 160,
Hans de Goedeb282d872009-06-14 19:10:40 -0300368 .sizeimage = 70000,
Hans de Goede1876bb92009-06-14 06:45:50 -0300369 .colorspace = V4L2_COLORSPACE_JPEG,
370 .priv = 3},
371 {176, 144, V4L2_PIX_FMT_OV511, V4L2_FIELD_NONE,
372 .bytesperline = 176,
Hans de Goedeb282d872009-06-14 19:10:40 -0300373 .sizeimage = 70000,
Hans de Goede1876bb92009-06-14 06:45:50 -0300374 .colorspace = V4L2_COLORSPACE_JPEG,
375 .priv = 1},
376 {320, 240, V4L2_PIX_FMT_OV511, V4L2_FIELD_NONE,
377 .bytesperline = 320,
378 .sizeimage = 320 * 240 * 3,
379 .colorspace = V4L2_COLORSPACE_JPEG,
380 .priv = 2},
381 {352, 288, V4L2_PIX_FMT_OV511, V4L2_FIELD_NONE,
382 .bytesperline = 352,
383 .sizeimage = 352 * 288 * 3,
384 .colorspace = V4L2_COLORSPACE_JPEG,
385 .priv = 0},
386};
Hans de Goede49809d62009-06-07 12:10:39 -0300387
Hans de Goede635118d2009-10-11 09:49:03 -0300388static const struct v4l2_pix_format ovfx2_vga_mode[] = {
389 {320, 240, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
390 .bytesperline = 320,
391 .sizeimage = 320 * 240,
392 .colorspace = V4L2_COLORSPACE_SRGB,
393 .priv = 1},
394 {640, 480, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
395 .bytesperline = 640,
396 .sizeimage = 640 * 480,
397 .colorspace = V4L2_COLORSPACE_SRGB,
398 .priv = 0},
399};
400static const struct v4l2_pix_format ovfx2_cif_mode[] = {
401 {160, 120, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
402 .bytesperline = 160,
403 .sizeimage = 160 * 120,
404 .colorspace = V4L2_COLORSPACE_SRGB,
405 .priv = 3},
406 {176, 144, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
407 .bytesperline = 176,
408 .sizeimage = 176 * 144,
409 .colorspace = V4L2_COLORSPACE_SRGB,
410 .priv = 1},
411 {320, 240, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
412 .bytesperline = 320,
413 .sizeimage = 320 * 240,
414 .colorspace = V4L2_COLORSPACE_SRGB,
415 .priv = 2},
416 {352, 288, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
417 .bytesperline = 352,
418 .sizeimage = 352 * 288,
419 .colorspace = V4L2_COLORSPACE_SRGB,
420 .priv = 0},
421};
422static const struct v4l2_pix_format ovfx2_ov2610_mode[] = {
423 {1600, 1200, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
424 .bytesperline = 1600,
425 .sizeimage = 1600 * 1200,
426 .colorspace = V4L2_COLORSPACE_SRGB},
427};
428static const struct v4l2_pix_format ovfx2_ov3610_mode[] = {
Hans de Goede635118d2009-10-11 09:49:03 -0300429 {640, 480, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
430 .bytesperline = 640,
431 .sizeimage = 640 * 480,
Hans de Goedeb46aaa02009-10-12 10:07:57 -0300432 .colorspace = V4L2_COLORSPACE_SRGB,
433 .priv = 1},
434 {800, 600, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
435 .bytesperline = 800,
436 .sizeimage = 800 * 600,
437 .colorspace = V4L2_COLORSPACE_SRGB,
438 .priv = 1},
439 {1024, 768, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
440 .bytesperline = 1024,
441 .sizeimage = 1024 * 768,
442 .colorspace = V4L2_COLORSPACE_SRGB,
443 .priv = 1},
444 {1600, 1200, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
445 .bytesperline = 1600,
446 .sizeimage = 1600 * 1200,
447 .colorspace = V4L2_COLORSPACE_SRGB,
448 .priv = 0},
449 {2048, 1536, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
450 .bytesperline = 2048,
451 .sizeimage = 2048 * 1536,
452 .colorspace = V4L2_COLORSPACE_SRGB,
453 .priv = 0},
Hans de Goede635118d2009-10-11 09:49:03 -0300454};
455
456
Hans de Goede49809d62009-06-07 12:10:39 -0300457/* Registers common to OV511 / OV518 */
Hans de Goede1876bb92009-06-14 06:45:50 -0300458#define R51x_FIFO_PSIZE 0x30 /* 2 bytes wide w/ OV518(+) */
Hans de Goede49809d62009-06-07 12:10:39 -0300459#define R51x_SYS_RESET 0x50
Hans de Goede1876bb92009-06-14 06:45:50 -0300460 /* Reset type flags */
461 #define OV511_RESET_OMNICE 0x08
Hans de Goede49809d62009-06-07 12:10:39 -0300462#define R51x_SYS_INIT 0x53
463#define R51x_SYS_SNAP 0x52
464#define R51x_SYS_CUST_ID 0x5F
465#define R51x_COMP_LUT_BEGIN 0x80
466
467/* OV511 Camera interface register numbers */
Hans de Goede1876bb92009-06-14 06:45:50 -0300468#define R511_CAM_DELAY 0x10
469#define R511_CAM_EDGE 0x11
470#define R511_CAM_PXCNT 0x12
471#define R511_CAM_LNCNT 0x13
472#define R511_CAM_PXDIV 0x14
473#define R511_CAM_LNDIV 0x15
474#define R511_CAM_UV_EN 0x16
475#define R511_CAM_LINE_MODE 0x17
476#define R511_CAM_OPTS 0x18
477
478#define R511_SNAP_FRAME 0x19
479#define R511_SNAP_PXCNT 0x1A
480#define R511_SNAP_LNCNT 0x1B
481#define R511_SNAP_PXDIV 0x1C
482#define R511_SNAP_LNDIV 0x1D
483#define R511_SNAP_UV_EN 0x1E
484#define R511_SNAP_UV_EN 0x1E
485#define R511_SNAP_OPTS 0x1F
486
487#define R511_DRAM_FLOW_CTL 0x20
488#define R511_FIFO_OPTS 0x31
489#define R511_I2C_CTL 0x40
Hans de Goede49809d62009-06-07 12:10:39 -0300490#define R511_SYS_LED_CTL 0x55 /* OV511+ only */
Hans de Goede1876bb92009-06-14 06:45:50 -0300491#define R511_COMP_EN 0x78
492#define R511_COMP_LUT_EN 0x79
Hans de Goede49809d62009-06-07 12:10:39 -0300493
494/* OV518 Camera interface register numbers */
495#define R518_GPIO_OUT 0x56 /* OV518(+) only */
496#define R518_GPIO_CTL 0x57 /* OV518(+) only */
497
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300498/* OV519 Camera interface register numbers */
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -0300499#define OV519_R10_H_SIZE 0x10
500#define OV519_R11_V_SIZE 0x11
501#define OV519_R12_X_OFFSETL 0x12
502#define OV519_R13_X_OFFSETH 0x13
503#define OV519_R14_Y_OFFSETL 0x14
504#define OV519_R15_Y_OFFSETH 0x15
505#define OV519_R16_DIVIDER 0x16
506#define OV519_R20_DFR 0x20
507#define OV519_R25_FORMAT 0x25
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300508
509/* OV519 System Controller register numbers */
510#define OV519_SYS_RESET1 0x51
511#define OV519_SYS_EN_CLK1 0x54
512
513#define OV519_GPIO_DATA_OUT0 0x71
514#define OV519_GPIO_IO_CTRL0 0x72
515
516#define OV511_ENDPOINT_ADDRESS 1 /* Isoc endpoint number */
517
Hans de Goedeb46aaa02009-10-12 10:07:57 -0300518/*
519 * The FX2 chip does not give us a zero length read at end of frame.
520 * It does, however, give a short read at the end of a frame, if
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800521 * necessary, rather than run two frames together.
Hans de Goedeb46aaa02009-10-12 10:07:57 -0300522 *
523 * By choosing the right bulk transfer size, we are guaranteed to always
524 * get a short read for the last read of each frame. Frame sizes are
525 * always a composite number (width * height, or a multiple) so if we
526 * choose a prime number, we are guaranteed that the last read of a
527 * frame will be short.
528 *
529 * But it isn't that easy: the 2.6 kernel requires a multiple of 4KB,
530 * otherwise EOVERFLOW "babbling" errors occur. I have not been able
531 * to figure out why. [PMiller]
532 *
533 * The constant (13 * 4096) is the largest "prime enough" number less than 64KB.
534 *
535 * It isn't enough to know the number of bytes per frame, in case we
536 * have data dropouts or buffer overruns (even though the FX2 double
537 * buffers, there are some pretty strict real time constraints for
538 * isochronous transfer for larger frame sizes).
539 */
540#define OVFX2_BULK_SIZE (13 * 4096)
541
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300542/* I2C registers */
543#define R51x_I2C_W_SID 0x41
544#define R51x_I2C_SADDR_3 0x42
545#define R51x_I2C_SADDR_2 0x43
546#define R51x_I2C_R_SID 0x44
547#define R51x_I2C_DATA 0x45
548#define R518_I2C_CTL 0x47 /* OV518(+) only */
Hans de Goedeb46aaa02009-10-12 10:07:57 -0300549#define OVFX2_I2C_ADDR 0x00
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300550
551/* I2C ADDRESSES */
552#define OV7xx0_SID 0x42
Hans de Goede229bb7d2009-10-11 07:41:46 -0300553#define OV_HIRES_SID 0x60 /* OV9xxx / OV2xxx / OV3xxx */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300554#define OV8xx0_SID 0xa0
555#define OV6xx0_SID 0xc0
556
557/* OV7610 registers */
558#define OV7610_REG_GAIN 0x00 /* gain setting (5:0) */
Hans de Goede49809d62009-06-07 12:10:39 -0300559#define OV7610_REG_BLUE 0x01 /* blue channel balance */
560#define OV7610_REG_RED 0x02 /* red channel balance */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300561#define OV7610_REG_SAT 0x03 /* saturation */
562#define OV8610_REG_HUE 0x04 /* 04 reserved */
563#define OV7610_REG_CNT 0x05 /* Y contrast */
564#define OV7610_REG_BRT 0x06 /* Y brightness */
565#define OV7610_REG_COM_C 0x14 /* misc common regs */
566#define OV7610_REG_ID_HIGH 0x1c /* manufacturer ID MSB */
567#define OV7610_REG_ID_LOW 0x1d /* manufacturer ID LSB */
568#define OV7610_REG_COM_I 0x29 /* misc settings */
569
570/* OV7670 registers */
571#define OV7670_REG_GAIN 0x00 /* Gain lower 8 bits (rest in vref) */
572#define OV7670_REG_BLUE 0x01 /* blue gain */
573#define OV7670_REG_RED 0x02 /* red gain */
574#define OV7670_REG_VREF 0x03 /* Pieces of GAIN, VSTART, VSTOP */
575#define OV7670_REG_COM1 0x04 /* Control 1 */
576#define OV7670_REG_AECHH 0x07 /* AEC MS 5 bits */
577#define OV7670_REG_COM3 0x0c /* Control 3 */
578#define OV7670_REG_COM4 0x0d /* Control 4 */
579#define OV7670_REG_COM5 0x0e /* All "reserved" */
580#define OV7670_REG_COM6 0x0f /* Control 6 */
581#define OV7670_REG_AECH 0x10 /* More bits of AEC value */
582#define OV7670_REG_CLKRC 0x11 /* Clock control */
583#define OV7670_REG_COM7 0x12 /* Control 7 */
584#define OV7670_COM7_FMT_VGA 0x00
585#define OV7670_COM7_YUV 0x00 /* YUV */
586#define OV7670_COM7_FMT_QVGA 0x10 /* QVGA format */
587#define OV7670_COM7_FMT_MASK 0x38
588#define OV7670_COM7_RESET 0x80 /* Register reset */
589#define OV7670_REG_COM8 0x13 /* Control 8 */
590#define OV7670_COM8_AEC 0x01 /* Auto exposure enable */
591#define OV7670_COM8_AWB 0x02 /* White balance enable */
592#define OV7670_COM8_AGC 0x04 /* Auto gain enable */
593#define OV7670_COM8_BFILT 0x20 /* Band filter enable */
594#define OV7670_COM8_AECSTEP 0x40 /* Unlimited AEC step size */
595#define OV7670_COM8_FASTAEC 0x80 /* Enable fast AGC/AEC */
596#define OV7670_REG_COM9 0x14 /* Control 9 - gain ceiling */
597#define OV7670_REG_COM10 0x15 /* Control 10 */
598#define OV7670_REG_HSTART 0x17 /* Horiz start high bits */
599#define OV7670_REG_HSTOP 0x18 /* Horiz stop high bits */
600#define OV7670_REG_VSTART 0x19 /* Vert start high bits */
601#define OV7670_REG_VSTOP 0x1a /* Vert stop high bits */
602#define OV7670_REG_MVFP 0x1e /* Mirror / vflip */
Jean-Francois Moine0cd67592008-07-29 05:25:28 -0300603#define OV7670_MVFP_VFLIP 0x10 /* vertical flip */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300604#define OV7670_MVFP_MIRROR 0x20 /* Mirror image */
605#define OV7670_REG_AEW 0x24 /* AGC upper limit */
606#define OV7670_REG_AEB 0x25 /* AGC lower limit */
607#define OV7670_REG_VPT 0x26 /* AGC/AEC fast mode op region */
608#define OV7670_REG_HREF 0x32 /* HREF pieces */
609#define OV7670_REG_TSLB 0x3a /* lots of stuff */
610#define OV7670_REG_COM11 0x3b /* Control 11 */
611#define OV7670_COM11_EXP 0x02
612#define OV7670_COM11_HZAUTO 0x10 /* Auto detect 50/60 Hz */
613#define OV7670_REG_COM12 0x3c /* Control 12 */
614#define OV7670_REG_COM13 0x3d /* Control 13 */
615#define OV7670_COM13_GAMMA 0x80 /* Gamma enable */
616#define OV7670_COM13_UVSAT 0x40 /* UV saturation auto adjustment */
617#define OV7670_REG_COM14 0x3e /* Control 14 */
618#define OV7670_REG_EDGE 0x3f /* Edge enhancement factor */
619#define OV7670_REG_COM15 0x40 /* Control 15 */
620#define OV7670_COM15_R00FF 0xc0 /* 00 to FF */
621#define OV7670_REG_COM16 0x41 /* Control 16 */
622#define OV7670_COM16_AWBGAIN 0x08 /* AWB gain enable */
623#define OV7670_REG_BRIGHT 0x55 /* Brightness */
624#define OV7670_REG_CONTRAS 0x56 /* Contrast control */
625#define OV7670_REG_GFIX 0x69 /* Fix gain control */
626#define OV7670_REG_RGB444 0x8c /* RGB 444 control */
627#define OV7670_REG_HAECC1 0x9f /* Hist AEC/AGC control 1 */
628#define OV7670_REG_HAECC2 0xa0 /* Hist AEC/AGC control 2 */
629#define OV7670_REG_BD50MAX 0xa5 /* 50hz banding step limit */
630#define OV7670_REG_HAECC3 0xa6 /* Hist AEC/AGC control 3 */
631#define OV7670_REG_HAECC4 0xa7 /* Hist AEC/AGC control 4 */
632#define OV7670_REG_HAECC5 0xa8 /* Hist AEC/AGC control 5 */
633#define OV7670_REG_HAECC6 0xa9 /* Hist AEC/AGC control 6 */
634#define OV7670_REG_HAECC7 0xaa /* Hist AEC/AGC control 7 */
635#define OV7670_REG_BD60MAX 0xab /* 60hz banding step limit */
636
Jean-Francois Moine4202f712008-09-03 17:12:15 -0300637struct ov_regvals {
638 __u8 reg;
639 __u8 val;
640};
641struct ov_i2c_regvals {
642 __u8 reg;
643 __u8 val;
644};
645
Hans de Goede635118d2009-10-11 09:49:03 -0300646/* Settings for OV2610 camera chip */
647static const struct ov_i2c_regvals norm_2610[] =
648{
Hans de Goedeb46aaa02009-10-12 10:07:57 -0300649 { 0x12, 0x80 }, /* reset */
Hans de Goede635118d2009-10-11 09:49:03 -0300650};
651
652static const struct ov_i2c_regvals norm_3620b[] =
653{
654 /*
655 * From the datasheet: "Note that after writing to register COMH
656 * (0x12) to change the sensor mode, registers related to the
657 * sensor’s cropping window will be reset back to their default
658 * values."
659 *
660 * "wait 4096 external clock ... to make sure the sensor is
661 * stable and ready to access registers" i.e. 160us at 24MHz
662 */
663
664 { 0x12, 0x80 }, /* COMH reset */
665 { 0x12, 0x00 }, /* QXGA, master */
666
667 /*
668 * 11 CLKRC "Clock Rate Control"
669 * [7] internal frequency doublers: on
670 * [6] video port mode: master
671 * [5:0] clock divider: 1
672 */
673 { 0x11, 0x80 },
674
675 /*
676 * 13 COMI "Common Control I"
677 * = 192 (0xC0) 11000000
678 * COMI[7] "AEC speed selection"
679 * = 1 (0x01) 1....... "Faster AEC correction"
680 * COMI[6] "AEC speed step selection"
681 * = 1 (0x01) .1...... "Big steps, fast"
682 * COMI[5] "Banding filter on off"
683 * = 0 (0x00) ..0..... "Off"
684 * COMI[4] "Banding filter option"
685 * = 0 (0x00) ...0.... "Main clock is 48 MHz and
686 * the PLL is ON"
687 * COMI[3] "Reserved"
688 * = 0 (0x00) ....0...
689 * COMI[2] "AGC auto manual control selection"
690 * = 0 (0x00) .....0.. "Manual"
691 * COMI[1] "AWB auto manual control selection"
692 * = 0 (0x00) ......0. "Manual"
693 * COMI[0] "Exposure control"
694 * = 0 (0x00) .......0 "Manual"
695 */
696 { 0x13, 0xC0 },
697
698 /*
699 * 09 COMC "Common Control C"
700 * = 8 (0x08) 00001000
701 * COMC[7:5] "Reserved"
702 * = 0 (0x00) 000.....
703 * COMC[4] "Sleep Mode Enable"
704 * = 0 (0x00) ...0.... "Normal mode"
705 * COMC[3:2] "Sensor sampling reset timing selection"
706 * = 2 (0x02) ....10.. "Longer reset time"
707 * COMC[1:0] "Output drive current select"
708 * = 0 (0x00) ......00 "Weakest"
709 */
710 { 0x09, 0x08 },
711
712 /*
713 * 0C COMD "Common Control D"
714 * = 8 (0x08) 00001000
715 * COMD[7] "Reserved"
716 * = 0 (0x00) 0.......
717 * COMD[6] "Swap MSB and LSB at the output port"
718 * = 0 (0x00) .0...... "False"
719 * COMD[5:3] "Reserved"
720 * = 1 (0x01) ..001...
721 * COMD[2] "Output Average On Off"
722 * = 0 (0x00) .....0.. "Output Normal"
723 * COMD[1] "Sensor precharge voltage selection"
724 * = 0 (0x00) ......0. "Selects internal
725 * reference precharge
726 * voltage"
727 * COMD[0] "Snapshot option"
728 * = 0 (0x00) .......0 "Enable live video output
729 * after snapshot sequence"
730 */
731 { 0x0c, 0x08 },
732
733 /*
734 * 0D COME "Common Control E"
735 * = 161 (0xA1) 10100001
736 * COME[7] "Output average option"
737 * = 1 (0x01) 1....... "Output average of 4 pixels"
738 * COME[6] "Anti-blooming control"
739 * = 0 (0x00) .0...... "Off"
740 * COME[5:3] "Reserved"
741 * = 4 (0x04) ..100...
742 * COME[2] "Clock output power down pin status"
743 * = 0 (0x00) .....0.. "Tri-state data output pin
744 * on power down"
745 * COME[1] "Data output pin status selection at power down"
746 * = 0 (0x00) ......0. "Tri-state VSYNC, PCLK,
747 * HREF, and CHSYNC pins on
748 * power down"
749 * COME[0] "Auto zero circuit select"
750 * = 1 (0x01) .......1 "On"
751 */
752 { 0x0d, 0xA1 },
753
754 /*
755 * 0E COMF "Common Control F"
756 * = 112 (0x70) 01110000
757 * COMF[7] "System clock selection"
758 * = 0 (0x00) 0....... "Use 24 MHz system clock"
759 * COMF[6:4] "Reserved"
760 * = 7 (0x07) .111....
761 * COMF[3] "Manual auto negative offset canceling selection"
762 * = 0 (0x00) ....0... "Auto detect negative
763 * offset and cancel it"
764 * COMF[2:0] "Reserved"
765 * = 0 (0x00) .....000
766 */
767 { 0x0e, 0x70 },
768
769 /*
770 * 0F COMG "Common Control G"
771 * = 66 (0x42) 01000010
772 * COMG[7] "Optical black output selection"
773 * = 0 (0x00) 0....... "Disable"
774 * COMG[6] "Black level calibrate selection"
775 * = 1 (0x01) .1...... "Use optical black pixels
776 * to calibrate"
777 * COMG[5:4] "Reserved"
778 * = 0 (0x00) ..00....
779 * COMG[3] "Channel offset adjustment"
780 * = 0 (0x00) ....0... "Disable offset adjustment"
781 * COMG[2] "ADC black level calibration option"
782 * = 0 (0x00) .....0.. "Use B/G line and G/R
783 * line to calibrate each
784 * channel's black level"
785 * COMG[1] "Reserved"
786 * = 1 (0x01) ......1.
787 * COMG[0] "ADC black level calibration enable"
788 * = 0 (0x00) .......0 "Disable"
789 */
790 { 0x0f, 0x42 },
791
792 /*
793 * 14 COMJ "Common Control J"
794 * = 198 (0xC6) 11000110
795 * COMJ[7:6] "AGC gain ceiling"
796 * = 3 (0x03) 11...... "8x"
797 * COMJ[5:4] "Reserved"
798 * = 0 (0x00) ..00....
799 * COMJ[3] "Auto banding filter"
800 * = 0 (0x00) ....0... "Banding filter is always
801 * on off depending on
802 * COMI[5] setting"
803 * COMJ[2] "VSYNC drop option"
804 * = 1 (0x01) .....1.. "SYNC is dropped if frame
805 * data is dropped"
806 * COMJ[1] "Frame data drop"
807 * = 1 (0x01) ......1. "Drop frame data if
808 * exposure is not within
809 * tolerance. In AEC mode,
810 * data is normally dropped
811 * when data is out of
812 * range."
813 * COMJ[0] "Reserved"
814 * = 0 (0x00) .......0
815 */
816 { 0x14, 0xC6 },
817
818 /*
819 * 15 COMK "Common Control K"
820 * = 2 (0x02) 00000010
821 * COMK[7] "CHSYNC pin output swap"
822 * = 0 (0x00) 0....... "CHSYNC"
823 * COMK[6] "HREF pin output swap"
824 * = 0 (0x00) .0...... "HREF"
825 * COMK[5] "PCLK output selection"
826 * = 0 (0x00) ..0..... "PCLK always output"
827 * COMK[4] "PCLK edge selection"
828 * = 0 (0x00) ...0.... "Data valid on falling edge"
829 * COMK[3] "HREF output polarity"
830 * = 0 (0x00) ....0... "positive"
831 * COMK[2] "Reserved"
832 * = 0 (0x00) .....0..
833 * COMK[1] "VSYNC polarity"
834 * = 1 (0x01) ......1. "negative"
835 * COMK[0] "HSYNC polarity"
836 * = 0 (0x00) .......0 "positive"
837 */
838 { 0x15, 0x02 },
839
840 /*
841 * 33 CHLF "Current Control"
842 * = 9 (0x09) 00001001
843 * CHLF[7:6] "Sensor current control"
844 * = 0 (0x00) 00......
845 * CHLF[5] "Sensor current range control"
846 * = 0 (0x00) ..0..... "normal range"
847 * CHLF[4] "Sensor current"
848 * = 0 (0x00) ...0.... "normal current"
849 * CHLF[3] "Sensor buffer current control"
850 * = 1 (0x01) ....1... "half current"
851 * CHLF[2] "Column buffer current control"
852 * = 0 (0x00) .....0.. "normal current"
853 * CHLF[1] "Analog DSP current control"
854 * = 0 (0x00) ......0. "normal current"
855 * CHLF[1] "ADC current control"
856 * = 0 (0x00) ......0. "normal current"
857 */
858 { 0x33, 0x09 },
859
860 /*
861 * 34 VBLM "Blooming Control"
862 * = 80 (0x50) 01010000
863 * VBLM[7] "Hard soft reset switch"
864 * = 0 (0x00) 0....... "Hard reset"
865 * VBLM[6:4] "Blooming voltage selection"
866 * = 5 (0x05) .101....
867 * VBLM[3:0] "Sensor current control"
868 * = 0 (0x00) ....0000
869 */
870 { 0x34, 0x50 },
871
872 /*
873 * 36 VCHG "Sensor Precharge Voltage Control"
874 * = 0 (0x00) 00000000
875 * VCHG[7] "Reserved"
876 * = 0 (0x00) 0.......
877 * VCHG[6:4] "Sensor precharge voltage control"
878 * = 0 (0x00) .000....
879 * VCHG[3:0] "Sensor array common reference"
880 * = 0 (0x00) ....0000
881 */
882 { 0x36, 0x00 },
883
884 /*
885 * 37 ADC "ADC Reference Control"
886 * = 4 (0x04) 00000100
887 * ADC[7:4] "Reserved"
888 * = 0 (0x00) 0000....
889 * ADC[3] "ADC input signal range"
890 * = 0 (0x00) ....0... "Input signal 1.0x"
891 * ADC[2:0] "ADC range control"
892 * = 4 (0x04) .....100
893 */
894 { 0x37, 0x04 },
895
896 /*
897 * 38 ACOM "Analog Common Ground"
898 * = 82 (0x52) 01010010
899 * ACOM[7] "Analog gain control"
900 * = 0 (0x00) 0....... "Gain 1x"
901 * ACOM[6] "Analog black level calibration"
902 * = 1 (0x01) .1...... "On"
903 * ACOM[5:0] "Reserved"
904 * = 18 (0x12) ..010010
905 */
906 { 0x38, 0x52 },
907
908 /*
909 * 3A FREFA "Internal Reference Adjustment"
910 * = 0 (0x00) 00000000
911 * FREFA[7:0] "Range"
912 * = 0 (0x00) 00000000
913 */
914 { 0x3a, 0x00 },
915
916 /*
917 * 3C FVOPT "Internal Reference Adjustment"
918 * = 31 (0x1F) 00011111
919 * FVOPT[7:0] "Range"
920 * = 31 (0x1F) 00011111
921 */
922 { 0x3c, 0x1F },
923
924 /*
925 * 44 Undocumented = 0 (0x00) 00000000
926 * 44[7:0] "It's a secret"
927 * = 0 (0x00) 00000000
928 */
929 { 0x44, 0x00 },
930
931 /*
932 * 40 Undocumented = 0 (0x00) 00000000
933 * 40[7:0] "It's a secret"
934 * = 0 (0x00) 00000000
935 */
936 { 0x40, 0x00 },
937
938 /*
939 * 41 Undocumented = 0 (0x00) 00000000
940 * 41[7:0] "It's a secret"
941 * = 0 (0x00) 00000000
942 */
943 { 0x41, 0x00 },
944
945 /*
946 * 42 Undocumented = 0 (0x00) 00000000
947 * 42[7:0] "It's a secret"
948 * = 0 (0x00) 00000000
949 */
950 { 0x42, 0x00 },
951
952 /*
953 * 43 Undocumented = 0 (0x00) 00000000
954 * 43[7:0] "It's a secret"
955 * = 0 (0x00) 00000000
956 */
957 { 0x43, 0x00 },
958
959 /*
960 * 45 Undocumented = 128 (0x80) 10000000
961 * 45[7:0] "It's a secret"
962 * = 128 (0x80) 10000000
963 */
964 { 0x45, 0x80 },
965
966 /*
967 * 48 Undocumented = 192 (0xC0) 11000000
968 * 48[7:0] "It's a secret"
969 * = 192 (0xC0) 11000000
970 */
971 { 0x48, 0xC0 },
972
973 /*
974 * 49 Undocumented = 25 (0x19) 00011001
975 * 49[7:0] "It's a secret"
976 * = 25 (0x19) 00011001
977 */
978 { 0x49, 0x19 },
979
980 /*
981 * 4B Undocumented = 128 (0x80) 10000000
982 * 4B[7:0] "It's a secret"
983 * = 128 (0x80) 10000000
984 */
985 { 0x4B, 0x80 },
986
987 /*
988 * 4D Undocumented = 196 (0xC4) 11000100
989 * 4D[7:0] "It's a secret"
990 * = 196 (0xC4) 11000100
991 */
992 { 0x4D, 0xC4 },
993
994 /*
995 * 35 VREF "Reference Voltage Control"
996 * = 76 (0x4C) 01001100
997 * VREF[7:5] "Column high reference control"
998 * = 2 (0x02) 010..... "higher voltage"
999 * VREF[4:2] "Column low reference control"
1000 * = 3 (0x03) ...011.. "Highest voltage"
1001 * VREF[1:0] "Reserved"
1002 * = 0 (0x00) ......00
1003 */
1004 { 0x35, 0x4C },
1005
1006 /*
1007 * 3D Undocumented = 0 (0x00) 00000000
1008 * 3D[7:0] "It's a secret"
1009 * = 0 (0x00) 00000000
1010 */
1011 { 0x3D, 0x00 },
1012
1013 /*
1014 * 3E Undocumented = 0 (0x00) 00000000
1015 * 3E[7:0] "It's a secret"
1016 * = 0 (0x00) 00000000
1017 */
1018 { 0x3E, 0x00 },
1019
1020 /*
1021 * 3B FREFB "Internal Reference Adjustment"
1022 * = 24 (0x18) 00011000
1023 * FREFB[7:0] "Range"
1024 * = 24 (0x18) 00011000
1025 */
1026 { 0x3b, 0x18 },
1027
1028 /*
1029 * 33 CHLF "Current Control"
1030 * = 25 (0x19) 00011001
1031 * CHLF[7:6] "Sensor current control"
1032 * = 0 (0x00) 00......
1033 * CHLF[5] "Sensor current range control"
1034 * = 0 (0x00) ..0..... "normal range"
1035 * CHLF[4] "Sensor current"
1036 * = 1 (0x01) ...1.... "double current"
1037 * CHLF[3] "Sensor buffer current control"
1038 * = 1 (0x01) ....1... "half current"
1039 * CHLF[2] "Column buffer current control"
1040 * = 0 (0x00) .....0.. "normal current"
1041 * CHLF[1] "Analog DSP current control"
1042 * = 0 (0x00) ......0. "normal current"
1043 * CHLF[1] "ADC current control"
1044 * = 0 (0x00) ......0. "normal current"
1045 */
1046 { 0x33, 0x19 },
1047
1048 /*
1049 * 34 VBLM "Blooming Control"
1050 * = 90 (0x5A) 01011010
1051 * VBLM[7] "Hard soft reset switch"
1052 * = 0 (0x00) 0....... "Hard reset"
1053 * VBLM[6:4] "Blooming voltage selection"
1054 * = 5 (0x05) .101....
1055 * VBLM[3:0] "Sensor current control"
1056 * = 10 (0x0A) ....1010
1057 */
1058 { 0x34, 0x5A },
1059
1060 /*
1061 * 3B FREFB "Internal Reference Adjustment"
1062 * = 0 (0x00) 00000000
1063 * FREFB[7:0] "Range"
1064 * = 0 (0x00) 00000000
1065 */
1066 { 0x3b, 0x00 },
1067
1068 /*
1069 * 33 CHLF "Current Control"
1070 * = 9 (0x09) 00001001
1071 * CHLF[7:6] "Sensor current control"
1072 * = 0 (0x00) 00......
1073 * CHLF[5] "Sensor current range control"
1074 * = 0 (0x00) ..0..... "normal range"
1075 * CHLF[4] "Sensor current"
1076 * = 0 (0x00) ...0.... "normal current"
1077 * CHLF[3] "Sensor buffer current control"
1078 * = 1 (0x01) ....1... "half current"
1079 * CHLF[2] "Column buffer current control"
1080 * = 0 (0x00) .....0.. "normal current"
1081 * CHLF[1] "Analog DSP current control"
1082 * = 0 (0x00) ......0. "normal current"
1083 * CHLF[1] "ADC current control"
1084 * = 0 (0x00) ......0. "normal current"
1085 */
1086 { 0x33, 0x09 },
1087
1088 /*
1089 * 34 VBLM "Blooming Control"
1090 * = 80 (0x50) 01010000
1091 * VBLM[7] "Hard soft reset switch"
1092 * = 0 (0x00) 0....... "Hard reset"
1093 * VBLM[6:4] "Blooming voltage selection"
1094 * = 5 (0x05) .101....
1095 * VBLM[3:0] "Sensor current control"
1096 * = 0 (0x00) ....0000
1097 */
1098 { 0x34, 0x50 },
1099
1100 /*
1101 * 12 COMH "Common Control H"
1102 * = 64 (0x40) 01000000
1103 * COMH[7] "SRST"
1104 * = 0 (0x00) 0....... "No-op"
1105 * COMH[6:4] "Resolution selection"
1106 * = 4 (0x04) .100.... "XGA"
1107 * COMH[3] "Master slave selection"
1108 * = 0 (0x00) ....0... "Master mode"
1109 * COMH[2] "Internal B/R channel option"
1110 * = 0 (0x00) .....0.. "B/R use same channel"
1111 * COMH[1] "Color bar test pattern"
1112 * = 0 (0x00) ......0. "Off"
1113 * COMH[0] "Reserved"
1114 * = 0 (0x00) .......0
1115 */
1116 { 0x12, 0x40 },
1117
1118 /*
1119 * 17 HREFST "Horizontal window start"
1120 * = 31 (0x1F) 00011111
1121 * HREFST[7:0] "Horizontal window start, 8 MSBs"
1122 * = 31 (0x1F) 00011111
1123 */
1124 { 0x17, 0x1F },
1125
1126 /*
1127 * 18 HREFEND "Horizontal window end"
1128 * = 95 (0x5F) 01011111
1129 * HREFEND[7:0] "Horizontal Window End, 8 MSBs"
1130 * = 95 (0x5F) 01011111
1131 */
1132 { 0x18, 0x5F },
1133
1134 /*
1135 * 19 VSTRT "Vertical window start"
1136 * = 0 (0x00) 00000000
1137 * VSTRT[7:0] "Vertical Window Start, 8 MSBs"
1138 * = 0 (0x00) 00000000
1139 */
1140 { 0x19, 0x00 },
1141
1142 /*
1143 * 1A VEND "Vertical window end"
1144 * = 96 (0x60) 01100000
1145 * VEND[7:0] "Vertical Window End, 8 MSBs"
1146 * = 96 (0x60) 01100000
1147 */
1148 { 0x1a, 0x60 },
1149
1150 /*
1151 * 32 COMM "Common Control M"
1152 * = 18 (0x12) 00010010
1153 * COMM[7:6] "Pixel clock divide option"
1154 * = 0 (0x00) 00...... "/1"
1155 * COMM[5:3] "Horizontal window end position, 3 LSBs"
1156 * = 2 (0x02) ..010...
1157 * COMM[2:0] "Horizontal window start position, 3 LSBs"
1158 * = 2 (0x02) .....010
1159 */
1160 { 0x32, 0x12 },
1161
1162 /*
1163 * 03 COMA "Common Control A"
1164 * = 74 (0x4A) 01001010
1165 * COMA[7:4] "AWB Update Threshold"
1166 * = 4 (0x04) 0100....
1167 * COMA[3:2] "Vertical window end line control 2 LSBs"
1168 * = 2 (0x02) ....10..
1169 * COMA[1:0] "Vertical window start line control 2 LSBs"
1170 * = 2 (0x02) ......10
1171 */
1172 { 0x03, 0x4A },
1173
1174 /*
1175 * 11 CLKRC "Clock Rate Control"
1176 * = 128 (0x80) 10000000
1177 * CLKRC[7] "Internal frequency doublers on off seclection"
1178 * = 1 (0x01) 1....... "On"
1179 * CLKRC[6] "Digital video master slave selection"
1180 * = 0 (0x00) .0...... "Master mode, sensor
1181 * provides PCLK"
1182 * CLKRC[5:0] "Clock divider { CLK = PCLK/(1+CLKRC[5:0]) }"
1183 * = 0 (0x00) ..000000
1184 */
1185 { 0x11, 0x80 },
1186
1187 /*
1188 * 12 COMH "Common Control H"
1189 * = 0 (0x00) 00000000
1190 * COMH[7] "SRST"
1191 * = 0 (0x00) 0....... "No-op"
1192 * COMH[6:4] "Resolution selection"
1193 * = 0 (0x00) .000.... "QXGA"
1194 * COMH[3] "Master slave selection"
1195 * = 0 (0x00) ....0... "Master mode"
1196 * COMH[2] "Internal B/R channel option"
1197 * = 0 (0x00) .....0.. "B/R use same channel"
1198 * COMH[1] "Color bar test pattern"
1199 * = 0 (0x00) ......0. "Off"
1200 * COMH[0] "Reserved"
1201 * = 0 (0x00) .......0
1202 */
1203 { 0x12, 0x00 },
1204
1205 /*
1206 * 12 COMH "Common Control H"
1207 * = 64 (0x40) 01000000
1208 * COMH[7] "SRST"
1209 * = 0 (0x00) 0....... "No-op"
1210 * COMH[6:4] "Resolution selection"
1211 * = 4 (0x04) .100.... "XGA"
1212 * COMH[3] "Master slave selection"
1213 * = 0 (0x00) ....0... "Master mode"
1214 * COMH[2] "Internal B/R channel option"
1215 * = 0 (0x00) .....0.. "B/R use same channel"
1216 * COMH[1] "Color bar test pattern"
1217 * = 0 (0x00) ......0. "Off"
1218 * COMH[0] "Reserved"
1219 * = 0 (0x00) .......0
1220 */
1221 { 0x12, 0x40 },
1222
1223 /*
1224 * 17 HREFST "Horizontal window start"
1225 * = 31 (0x1F) 00011111
1226 * HREFST[7:0] "Horizontal window start, 8 MSBs"
1227 * = 31 (0x1F) 00011111
1228 */
1229 { 0x17, 0x1F },
1230
1231 /*
1232 * 18 HREFEND "Horizontal window end"
1233 * = 95 (0x5F) 01011111
1234 * HREFEND[7:0] "Horizontal Window End, 8 MSBs"
1235 * = 95 (0x5F) 01011111
1236 */
1237 { 0x18, 0x5F },
1238
1239 /*
1240 * 19 VSTRT "Vertical window start"
1241 * = 0 (0x00) 00000000
1242 * VSTRT[7:0] "Vertical Window Start, 8 MSBs"
1243 * = 0 (0x00) 00000000
1244 */
1245 { 0x19, 0x00 },
1246
1247 /*
1248 * 1A VEND "Vertical window end"
1249 * = 96 (0x60) 01100000
1250 * VEND[7:0] "Vertical Window End, 8 MSBs"
1251 * = 96 (0x60) 01100000
1252 */
1253 { 0x1a, 0x60 },
1254
1255 /*
1256 * 32 COMM "Common Control M"
1257 * = 18 (0x12) 00010010
1258 * COMM[7:6] "Pixel clock divide option"
1259 * = 0 (0x00) 00...... "/1"
1260 * COMM[5:3] "Horizontal window end position, 3 LSBs"
1261 * = 2 (0x02) ..010...
1262 * COMM[2:0] "Horizontal window start position, 3 LSBs"
1263 * = 2 (0x02) .....010
1264 */
1265 { 0x32, 0x12 },
1266
1267 /*
1268 * 03 COMA "Common Control A"
1269 * = 74 (0x4A) 01001010
1270 * COMA[7:4] "AWB Update Threshold"
1271 * = 4 (0x04) 0100....
1272 * COMA[3:2] "Vertical window end line control 2 LSBs"
1273 * = 2 (0x02) ....10..
1274 * COMA[1:0] "Vertical window start line control 2 LSBs"
1275 * = 2 (0x02) ......10
1276 */
1277 { 0x03, 0x4A },
1278
1279 /*
1280 * 02 RED "Red Gain Control"
1281 * = 175 (0xAF) 10101111
1282 * RED[7] "Action"
1283 * = 1 (0x01) 1....... "gain = 1/(1+bitrev([6:0]))"
1284 * RED[6:0] "Value"
1285 * = 47 (0x2F) .0101111
1286 */
1287 { 0x02, 0xAF },
1288
1289 /*
1290 * 2D ADDVSL "VSYNC Pulse Width"
1291 * = 210 (0xD2) 11010010
1292 * ADDVSL[7:0] "VSYNC pulse width, LSB"
1293 * = 210 (0xD2) 11010010
1294 */
1295 { 0x2d, 0xD2 },
1296
1297 /*
1298 * 00 GAIN = 24 (0x18) 00011000
1299 * GAIN[7:6] "Reserved"
1300 * = 0 (0x00) 00......
1301 * GAIN[5] "Double"
1302 * = 0 (0x00) ..0..... "False"
1303 * GAIN[4] "Double"
1304 * = 1 (0x01) ...1.... "True"
1305 * GAIN[3:0] "Range"
1306 * = 8 (0x08) ....1000
1307 */
1308 { 0x00, 0x18 },
1309
1310 /*
1311 * 01 BLUE "Blue Gain Control"
1312 * = 240 (0xF0) 11110000
1313 * BLUE[7] "Action"
1314 * = 1 (0x01) 1....... "gain = 1/(1+bitrev([6:0]))"
1315 * BLUE[6:0] "Value"
1316 * = 112 (0x70) .1110000
1317 */
1318 { 0x01, 0xF0 },
1319
1320 /*
1321 * 10 AEC "Automatic Exposure Control"
1322 * = 10 (0x0A) 00001010
1323 * AEC[7:0] "Automatic Exposure Control, 8 MSBs"
1324 * = 10 (0x0A) 00001010
1325 */
1326 { 0x10, 0x0A },
1327
1328 { 0xE1, 0x67 },
1329 { 0xE3, 0x03 },
1330 { 0xE4, 0x26 },
1331 { 0xE5, 0x3E },
1332 { 0xF8, 0x01 },
1333 { 0xFF, 0x01 },
1334};
1335
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001336static const struct ov_i2c_regvals norm_6x20[] = {
1337 { 0x12, 0x80 }, /* reset */
1338 { 0x11, 0x01 },
1339 { 0x03, 0x60 },
1340 { 0x05, 0x7f }, /* For when autoadjust is off */
1341 { 0x07, 0xa8 },
1342 /* The ratio of 0x0c and 0x0d controls the white point */
1343 { 0x0c, 0x24 },
1344 { 0x0d, 0x24 },
1345 { 0x0f, 0x15 }, /* COMS */
1346 { 0x10, 0x75 }, /* AEC Exposure time */
1347 { 0x12, 0x24 }, /* Enable AGC */
1348 { 0x14, 0x04 },
1349 /* 0x16: 0x06 helps frame stability with moving objects */
1350 { 0x16, 0x06 },
1351/* { 0x20, 0x30 }, * Aperture correction enable */
1352 { 0x26, 0xb2 }, /* BLC enable */
1353 /* 0x28: 0x05 Selects RGB format if RGB on */
1354 { 0x28, 0x05 },
1355 { 0x2a, 0x04 }, /* Disable framerate adjust */
1356/* { 0x2b, 0xac }, * Framerate; Set 2a[7] first */
Hans de Goedeae49c402009-06-14 19:15:07 -03001357 { 0x2d, 0x85 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001358 { 0x33, 0xa0 }, /* Color Processing Parameter */
1359 { 0x34, 0xd2 }, /* Max A/D range */
1360 { 0x38, 0x8b },
1361 { 0x39, 0x40 },
1362
1363 { 0x3c, 0x39 }, /* Enable AEC mode changing */
1364 { 0x3c, 0x3c }, /* Change AEC mode */
1365 { 0x3c, 0x24 }, /* Disable AEC mode changing */
1366
1367 { 0x3d, 0x80 },
1368 /* These next two registers (0x4a, 0x4b) are undocumented.
1369 * They control the color balance */
1370 { 0x4a, 0x80 },
1371 { 0x4b, 0x80 },
1372 { 0x4d, 0xd2 }, /* This reduces noise a bit */
1373 { 0x4e, 0xc1 },
1374 { 0x4f, 0x04 },
1375/* Do 50-53 have any effect? */
1376/* Toggle 0x12[2] off and on here? */
1377};
1378
1379static const struct ov_i2c_regvals norm_6x30[] = {
1380 { 0x12, 0x80 }, /* Reset */
1381 { 0x00, 0x1f }, /* Gain */
1382 { 0x01, 0x99 }, /* Blue gain */
1383 { 0x02, 0x7c }, /* Red gain */
1384 { 0x03, 0xc0 }, /* Saturation */
1385 { 0x05, 0x0a }, /* Contrast */
1386 { 0x06, 0x95 }, /* Brightness */
1387 { 0x07, 0x2d }, /* Sharpness */
1388 { 0x0c, 0x20 },
1389 { 0x0d, 0x20 },
Hans de Goede02ab18b2009-06-14 04:32:04 -03001390 { 0x0e, 0xa0 }, /* Was 0x20, bit7 enables a 2x gain which we need */
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001391 { 0x0f, 0x05 },
1392 { 0x10, 0x9a },
1393 { 0x11, 0x00 }, /* Pixel clock = fastest */
1394 { 0x12, 0x24 }, /* Enable AGC and AWB */
1395 { 0x13, 0x21 },
1396 { 0x14, 0x80 },
1397 { 0x15, 0x01 },
1398 { 0x16, 0x03 },
1399 { 0x17, 0x38 },
1400 { 0x18, 0xea },
1401 { 0x19, 0x04 },
1402 { 0x1a, 0x93 },
1403 { 0x1b, 0x00 },
1404 { 0x1e, 0xc4 },
1405 { 0x1f, 0x04 },
1406 { 0x20, 0x20 },
1407 { 0x21, 0x10 },
1408 { 0x22, 0x88 },
1409 { 0x23, 0xc0 }, /* Crystal circuit power level */
1410 { 0x25, 0x9a }, /* Increase AEC black ratio */
1411 { 0x26, 0xb2 }, /* BLC enable */
1412 { 0x27, 0xa2 },
1413 { 0x28, 0x00 },
1414 { 0x29, 0x00 },
1415 { 0x2a, 0x84 }, /* 60 Hz power */
1416 { 0x2b, 0xa8 }, /* 60 Hz power */
1417 { 0x2c, 0xa0 },
1418 { 0x2d, 0x95 }, /* Enable auto-brightness */
1419 { 0x2e, 0x88 },
1420 { 0x33, 0x26 },
1421 { 0x34, 0x03 },
1422 { 0x36, 0x8f },
1423 { 0x37, 0x80 },
1424 { 0x38, 0x83 },
1425 { 0x39, 0x80 },
1426 { 0x3a, 0x0f },
1427 { 0x3b, 0x3c },
1428 { 0x3c, 0x1a },
1429 { 0x3d, 0x80 },
1430 { 0x3e, 0x80 },
1431 { 0x3f, 0x0e },
1432 { 0x40, 0x00 }, /* White bal */
1433 { 0x41, 0x00 }, /* White bal */
1434 { 0x42, 0x80 },
1435 { 0x43, 0x3f }, /* White bal */
1436 { 0x44, 0x80 },
1437 { 0x45, 0x20 },
1438 { 0x46, 0x20 },
1439 { 0x47, 0x80 },
1440 { 0x48, 0x7f },
1441 { 0x49, 0x00 },
1442 { 0x4a, 0x00 },
1443 { 0x4b, 0x80 },
1444 { 0x4c, 0xd0 },
1445 { 0x4d, 0x10 }, /* U = 0.563u, V = 0.714v */
1446 { 0x4e, 0x40 },
1447 { 0x4f, 0x07 }, /* UV avg., col. killer: max */
1448 { 0x50, 0xff },
1449 { 0x54, 0x23 }, /* Max AGC gain: 18dB */
1450 { 0x55, 0xff },
1451 { 0x56, 0x12 },
1452 { 0x57, 0x81 },
1453 { 0x58, 0x75 },
1454 { 0x59, 0x01 }, /* AGC dark current comp.: +1 */
1455 { 0x5a, 0x2c },
1456 { 0x5b, 0x0f }, /* AWB chrominance levels */
1457 { 0x5c, 0x10 },
1458 { 0x3d, 0x80 },
1459 { 0x27, 0xa6 },
1460 { 0x12, 0x20 }, /* Toggle AWB */
1461 { 0x12, 0x24 },
1462};
1463
1464/* Lawrence Glaister <lg@jfm.bc.ca> reports:
1465 *
1466 * Register 0x0f in the 7610 has the following effects:
1467 *
1468 * 0x85 (AEC method 1): Best overall, good contrast range
1469 * 0x45 (AEC method 2): Very overexposed
1470 * 0xa5 (spec sheet default): Ok, but the black level is
1471 * shifted resulting in loss of contrast
1472 * 0x05 (old driver setting): very overexposed, too much
1473 * contrast
1474 */
1475static const struct ov_i2c_regvals norm_7610[] = {
1476 { 0x10, 0xff },
1477 { 0x16, 0x06 },
1478 { 0x28, 0x24 },
1479 { 0x2b, 0xac },
1480 { 0x12, 0x00 },
1481 { 0x38, 0x81 },
1482 { 0x28, 0x24 }, /* 0c */
1483 { 0x0f, 0x85 }, /* lg's setting */
1484 { 0x15, 0x01 },
1485 { 0x20, 0x1c },
1486 { 0x23, 0x2a },
1487 { 0x24, 0x10 },
1488 { 0x25, 0x8a },
1489 { 0x26, 0xa2 },
1490 { 0x27, 0xc2 },
1491 { 0x2a, 0x04 },
1492 { 0x2c, 0xfe },
1493 { 0x2d, 0x93 },
1494 { 0x30, 0x71 },
1495 { 0x31, 0x60 },
1496 { 0x32, 0x26 },
1497 { 0x33, 0x20 },
1498 { 0x34, 0x48 },
1499 { 0x12, 0x24 },
1500 { 0x11, 0x01 },
1501 { 0x0c, 0x24 },
1502 { 0x0d, 0x24 },
1503};
1504
1505static const struct ov_i2c_regvals norm_7620[] = {
Hans de Goedea511ba92009-10-16 07:13:07 -03001506 { 0x12, 0x80 }, /* reset */
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001507 { 0x00, 0x00 }, /* gain */
1508 { 0x01, 0x80 }, /* blue gain */
1509 { 0x02, 0x80 }, /* red gain */
1510 { 0x03, 0xc0 }, /* OV7670_REG_VREF */
1511 { 0x06, 0x60 },
1512 { 0x07, 0x00 },
1513 { 0x0c, 0x24 },
1514 { 0x0c, 0x24 },
1515 { 0x0d, 0x24 },
1516 { 0x11, 0x01 },
1517 { 0x12, 0x24 },
1518 { 0x13, 0x01 },
1519 { 0x14, 0x84 },
1520 { 0x15, 0x01 },
1521 { 0x16, 0x03 },
1522 { 0x17, 0x2f },
1523 { 0x18, 0xcf },
1524 { 0x19, 0x06 },
1525 { 0x1a, 0xf5 },
1526 { 0x1b, 0x00 },
1527 { 0x20, 0x18 },
1528 { 0x21, 0x80 },
1529 { 0x22, 0x80 },
1530 { 0x23, 0x00 },
1531 { 0x26, 0xa2 },
1532 { 0x27, 0xea },
Hans de Goedeb282d872009-06-14 19:10:40 -03001533 { 0x28, 0x22 }, /* Was 0x20, bit1 enables a 2x gain which we need */
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001534 { 0x29, 0x00 },
1535 { 0x2a, 0x10 },
1536 { 0x2b, 0x00 },
1537 { 0x2c, 0x88 },
1538 { 0x2d, 0x91 },
1539 { 0x2e, 0x80 },
1540 { 0x2f, 0x44 },
1541 { 0x60, 0x27 },
1542 { 0x61, 0x02 },
1543 { 0x62, 0x5f },
1544 { 0x63, 0xd5 },
1545 { 0x64, 0x57 },
1546 { 0x65, 0x83 },
1547 { 0x66, 0x55 },
1548 { 0x67, 0x92 },
1549 { 0x68, 0xcf },
1550 { 0x69, 0x76 },
1551 { 0x6a, 0x22 },
1552 { 0x6b, 0x00 },
1553 { 0x6c, 0x02 },
1554 { 0x6d, 0x44 },
1555 { 0x6e, 0x80 },
1556 { 0x6f, 0x1d },
1557 { 0x70, 0x8b },
1558 { 0x71, 0x00 },
1559 { 0x72, 0x14 },
1560 { 0x73, 0x54 },
1561 { 0x74, 0x00 },
1562 { 0x75, 0x8e },
1563 { 0x76, 0x00 },
1564 { 0x77, 0xff },
1565 { 0x78, 0x80 },
1566 { 0x79, 0x80 },
1567 { 0x7a, 0x80 },
1568 { 0x7b, 0xe2 },
1569 { 0x7c, 0x00 },
1570};
1571
1572/* 7640 and 7648. The defaults should be OK for most registers. */
1573static const struct ov_i2c_regvals norm_7640[] = {
1574 { 0x12, 0x80 },
1575 { 0x12, 0x14 },
1576};
1577
1578/* 7670. Defaults taken from OmniVision provided data,
1579* as provided by Jonathan Corbet of OLPC */
1580static const struct ov_i2c_regvals norm_7670[] = {
1581 { OV7670_REG_COM7, OV7670_COM7_RESET },
1582 { OV7670_REG_TSLB, 0x04 }, /* OV */
1583 { OV7670_REG_COM7, OV7670_COM7_FMT_VGA }, /* VGA */
1584 { OV7670_REG_CLKRC, 0x01 },
1585/*
1586 * Set the hardware window. These values from OV don't entirely
1587 * make sense - hstop is less than hstart. But they work...
1588 */
1589 { OV7670_REG_HSTART, 0x13 },
1590 { OV7670_REG_HSTOP, 0x01 },
1591 { OV7670_REG_HREF, 0xb6 },
1592 { OV7670_REG_VSTART, 0x02 },
1593 { OV7670_REG_VSTOP, 0x7a },
1594 { OV7670_REG_VREF, 0x0a },
1595
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03001596 { OV7670_REG_COM3, 0x00 },
1597 { OV7670_REG_COM14, 0x00 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001598/* Mystery scaling numbers */
1599 { 0x70, 0x3a },
1600 { 0x71, 0x35 },
1601 { 0x72, 0x11 },
1602 { 0x73, 0xf0 },
1603 { 0xa2, 0x02 },
1604/* { OV7670_REG_COM10, 0x0 }, */
1605
1606/* Gamma curve values */
1607 { 0x7a, 0x20 },
1608 { 0x7b, 0x10 },
1609 { 0x7c, 0x1e },
1610 { 0x7d, 0x35 },
1611 { 0x7e, 0x5a },
1612 { 0x7f, 0x69 },
1613 { 0x80, 0x76 },
1614 { 0x81, 0x80 },
1615 { 0x82, 0x88 },
1616 { 0x83, 0x8f },
1617 { 0x84, 0x96 },
1618 { 0x85, 0xa3 },
1619 { 0x86, 0xaf },
1620 { 0x87, 0xc4 },
1621 { 0x88, 0xd7 },
1622 { 0x89, 0xe8 },
1623
1624/* AGC and AEC parameters. Note we start by disabling those features,
1625 then turn them only after tweaking the values. */
1626 { OV7670_REG_COM8, OV7670_COM8_FASTAEC
1627 | OV7670_COM8_AECSTEP
1628 | OV7670_COM8_BFILT },
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03001629 { OV7670_REG_GAIN, 0x00 },
1630 { OV7670_REG_AECH, 0x00 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001631 { OV7670_REG_COM4, 0x40 }, /* magic reserved bit */
1632 { OV7670_REG_COM9, 0x18 }, /* 4x gain + magic rsvd bit */
1633 { OV7670_REG_BD50MAX, 0x05 },
1634 { OV7670_REG_BD60MAX, 0x07 },
1635 { OV7670_REG_AEW, 0x95 },
1636 { OV7670_REG_AEB, 0x33 },
1637 { OV7670_REG_VPT, 0xe3 },
1638 { OV7670_REG_HAECC1, 0x78 },
1639 { OV7670_REG_HAECC2, 0x68 },
1640 { 0xa1, 0x03 }, /* magic */
1641 { OV7670_REG_HAECC3, 0xd8 },
1642 { OV7670_REG_HAECC4, 0xd8 },
1643 { OV7670_REG_HAECC5, 0xf0 },
1644 { OV7670_REG_HAECC6, 0x90 },
1645 { OV7670_REG_HAECC7, 0x94 },
1646 { OV7670_REG_COM8, OV7670_COM8_FASTAEC
1647 | OV7670_COM8_AECSTEP
1648 | OV7670_COM8_BFILT
1649 | OV7670_COM8_AGC
1650 | OV7670_COM8_AEC },
1651
1652/* Almost all of these are magic "reserved" values. */
1653 { OV7670_REG_COM5, 0x61 },
1654 { OV7670_REG_COM6, 0x4b },
1655 { 0x16, 0x02 },
1656 { OV7670_REG_MVFP, 0x07 },
1657 { 0x21, 0x02 },
1658 { 0x22, 0x91 },
1659 { 0x29, 0x07 },
1660 { 0x33, 0x0b },
1661 { 0x35, 0x0b },
1662 { 0x37, 0x1d },
1663 { 0x38, 0x71 },
1664 { 0x39, 0x2a },
1665 { OV7670_REG_COM12, 0x78 },
1666 { 0x4d, 0x40 },
1667 { 0x4e, 0x20 },
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03001668 { OV7670_REG_GFIX, 0x00 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001669 { 0x6b, 0x4a },
1670 { 0x74, 0x10 },
1671 { 0x8d, 0x4f },
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03001672 { 0x8e, 0x00 },
1673 { 0x8f, 0x00 },
1674 { 0x90, 0x00 },
1675 { 0x91, 0x00 },
1676 { 0x96, 0x00 },
1677 { 0x9a, 0x00 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001678 { 0xb0, 0x84 },
1679 { 0xb1, 0x0c },
1680 { 0xb2, 0x0e },
1681 { 0xb3, 0x82 },
1682 { 0xb8, 0x0a },
1683
1684/* More reserved magic, some of which tweaks white balance */
1685 { 0x43, 0x0a },
1686 { 0x44, 0xf0 },
1687 { 0x45, 0x34 },
1688 { 0x46, 0x58 },
1689 { 0x47, 0x28 },
1690 { 0x48, 0x3a },
1691 { 0x59, 0x88 },
1692 { 0x5a, 0x88 },
1693 { 0x5b, 0x44 },
1694 { 0x5c, 0x67 },
1695 { 0x5d, 0x49 },
1696 { 0x5e, 0x0e },
1697 { 0x6c, 0x0a },
1698 { 0x6d, 0x55 },
1699 { 0x6e, 0x11 },
1700 { 0x6f, 0x9f },
1701 /* "9e for advance AWB" */
1702 { 0x6a, 0x40 },
1703 { OV7670_REG_BLUE, 0x40 },
1704 { OV7670_REG_RED, 0x60 },
1705 { OV7670_REG_COM8, OV7670_COM8_FASTAEC
1706 | OV7670_COM8_AECSTEP
1707 | OV7670_COM8_BFILT
1708 | OV7670_COM8_AGC
1709 | OV7670_COM8_AEC
1710 | OV7670_COM8_AWB },
1711
1712/* Matrix coefficients */
1713 { 0x4f, 0x80 },
1714 { 0x50, 0x80 },
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03001715 { 0x51, 0x00 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001716 { 0x52, 0x22 },
1717 { 0x53, 0x5e },
1718 { 0x54, 0x80 },
1719 { 0x58, 0x9e },
1720
1721 { OV7670_REG_COM16, OV7670_COM16_AWBGAIN },
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03001722 { OV7670_REG_EDGE, 0x00 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001723 { 0x75, 0x05 },
1724 { 0x76, 0xe1 },
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03001725 { 0x4c, 0x00 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001726 { 0x77, 0x01 },
1727 { OV7670_REG_COM13, OV7670_COM13_GAMMA
1728 | OV7670_COM13_UVSAT
1729 | 2}, /* was 3 */
1730 { 0x4b, 0x09 },
1731 { 0xc9, 0x60 },
1732 { OV7670_REG_COM16, 0x38 },
1733 { 0x56, 0x40 },
1734
1735 { 0x34, 0x11 },
1736 { OV7670_REG_COM11, OV7670_COM11_EXP|OV7670_COM11_HZAUTO },
1737 { 0xa4, 0x88 },
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03001738 { 0x96, 0x00 },
Jean-Francois Moine4202f712008-09-03 17:12:15 -03001739 { 0x97, 0x30 },
1740 { 0x98, 0x20 },
1741 { 0x99, 0x30 },
1742 { 0x9a, 0x84 },
1743 { 0x9b, 0x29 },
1744 { 0x9c, 0x03 },
1745 { 0x9d, 0x4c },
1746 { 0x9e, 0x3f },
1747 { 0x78, 0x04 },
1748
1749/* Extra-weird stuff. Some sort of multiplexor register */
1750 { 0x79, 0x01 },
1751 { 0xc8, 0xf0 },
1752 { 0x79, 0x0f },
1753 { 0xc8, 0x00 },
1754 { 0x79, 0x10 },
1755 { 0xc8, 0x7e },
1756 { 0x79, 0x0a },
1757 { 0xc8, 0x80 },
1758 { 0x79, 0x0b },
1759 { 0xc8, 0x01 },
1760 { 0x79, 0x0c },
1761 { 0xc8, 0x0f },
1762 { 0x79, 0x0d },
1763 { 0xc8, 0x20 },
1764 { 0x79, 0x09 },
1765 { 0xc8, 0x80 },
1766 { 0x79, 0x02 },
1767 { 0xc8, 0xc0 },
1768 { 0x79, 0x03 },
1769 { 0xc8, 0x40 },
1770 { 0x79, 0x05 },
1771 { 0xc8, 0x30 },
1772 { 0x79, 0x26 },
1773};
1774
1775static const struct ov_i2c_regvals norm_8610[] = {
1776 { 0x12, 0x80 },
1777 { 0x00, 0x00 },
1778 { 0x01, 0x80 },
1779 { 0x02, 0x80 },
1780 { 0x03, 0xc0 },
1781 { 0x04, 0x30 },
1782 { 0x05, 0x30 }, /* was 0x10, new from windrv 090403 */
1783 { 0x06, 0x70 }, /* was 0x80, new from windrv 090403 */
1784 { 0x0a, 0x86 },
1785 { 0x0b, 0xb0 },
1786 { 0x0c, 0x20 },
1787 { 0x0d, 0x20 },
1788 { 0x11, 0x01 },
1789 { 0x12, 0x25 },
1790 { 0x13, 0x01 },
1791 { 0x14, 0x04 },
1792 { 0x15, 0x01 }, /* Lin and Win think different about UV order */
1793 { 0x16, 0x03 },
1794 { 0x17, 0x38 }, /* was 0x2f, new from windrv 090403 */
1795 { 0x18, 0xea }, /* was 0xcf, new from windrv 090403 */
1796 { 0x19, 0x02 }, /* was 0x06, new from windrv 090403 */
1797 { 0x1a, 0xf5 },
1798 { 0x1b, 0x00 },
1799 { 0x20, 0xd0 }, /* was 0x90, new from windrv 090403 */
1800 { 0x23, 0xc0 }, /* was 0x00, new from windrv 090403 */
1801 { 0x24, 0x30 }, /* was 0x1d, new from windrv 090403 */
1802 { 0x25, 0x50 }, /* was 0x57, new from windrv 090403 */
1803 { 0x26, 0xa2 },
1804 { 0x27, 0xea },
1805 { 0x28, 0x00 },
1806 { 0x29, 0x00 },
1807 { 0x2a, 0x80 },
1808 { 0x2b, 0xc8 }, /* was 0xcc, new from windrv 090403 */
1809 { 0x2c, 0xac },
1810 { 0x2d, 0x45 }, /* was 0xd5, new from windrv 090403 */
1811 { 0x2e, 0x80 },
1812 { 0x2f, 0x14 }, /* was 0x01, new from windrv 090403 */
1813 { 0x4c, 0x00 },
1814 { 0x4d, 0x30 }, /* was 0x10, new from windrv 090403 */
1815 { 0x60, 0x02 }, /* was 0x01, new from windrv 090403 */
1816 { 0x61, 0x00 }, /* was 0x09, new from windrv 090403 */
1817 { 0x62, 0x5f }, /* was 0xd7, new from windrv 090403 */
1818 { 0x63, 0xff },
1819 { 0x64, 0x53 }, /* new windrv 090403 says 0x57,
1820 * maybe thats wrong */
1821 { 0x65, 0x00 },
1822 { 0x66, 0x55 },
1823 { 0x67, 0xb0 },
1824 { 0x68, 0xc0 }, /* was 0xaf, new from windrv 090403 */
1825 { 0x69, 0x02 },
1826 { 0x6a, 0x22 },
1827 { 0x6b, 0x00 },
1828 { 0x6c, 0x99 }, /* was 0x80, old windrv says 0x00, but
1829 * deleting bit7 colors the first images red */
1830 { 0x6d, 0x11 }, /* was 0x00, new from windrv 090403 */
1831 { 0x6e, 0x11 }, /* was 0x00, new from windrv 090403 */
1832 { 0x6f, 0x01 },
1833 { 0x70, 0x8b },
1834 { 0x71, 0x00 },
1835 { 0x72, 0x14 },
1836 { 0x73, 0x54 },
1837 { 0x74, 0x00 },/* 0x60? - was 0x00, new from windrv 090403 */
1838 { 0x75, 0x0e },
1839 { 0x76, 0x02 }, /* was 0x02, new from windrv 090403 */
1840 { 0x77, 0xff },
1841 { 0x78, 0x80 },
1842 { 0x79, 0x80 },
1843 { 0x7a, 0x80 },
1844 { 0x7b, 0x10 }, /* was 0x13, new from windrv 090403 */
1845 { 0x7c, 0x00 },
1846 { 0x7d, 0x08 }, /* was 0x09, new from windrv 090403 */
1847 { 0x7e, 0x08 }, /* was 0xc0, new from windrv 090403 */
1848 { 0x7f, 0xfb },
1849 { 0x80, 0x28 },
1850 { 0x81, 0x00 },
1851 { 0x82, 0x23 },
1852 { 0x83, 0x0b },
1853 { 0x84, 0x00 },
1854 { 0x85, 0x62 }, /* was 0x61, new from windrv 090403 */
1855 { 0x86, 0xc9 },
1856 { 0x87, 0x00 },
1857 { 0x88, 0x00 },
1858 { 0x89, 0x01 },
1859 { 0x12, 0x20 },
1860 { 0x12, 0x25 }, /* was 0x24, new from windrv 090403 */
1861};
1862
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001863static unsigned char ov7670_abs_to_sm(unsigned char v)
1864{
1865 if (v > 127)
1866 return v & 0x7f;
1867 return (128 - v) | 0x80;
1868}
1869
1870/* Write a OV519 register */
Hans de Goedea511ba92009-10-16 07:13:07 -03001871static int reg_w(struct sd *sd, __u16 index, __u16 value)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001872{
Hans de Goedea511ba92009-10-16 07:13:07 -03001873 int ret, req = 0;
Hans de Goedeb46aaa02009-10-12 10:07:57 -03001874
1875 switch (sd->bridge) {
1876 case BRIDGE_OV511:
1877 case BRIDGE_OV511PLUS:
1878 req = 2;
1879 break;
1880 case BRIDGE_OVFX2:
Hans de Goedea511ba92009-10-16 07:13:07 -03001881 req = 0x0a;
1882 /* fall through */
1883 case BRIDGE_W9968CF:
Hans de Goedeb46aaa02009-10-12 10:07:57 -03001884 ret = usb_control_msg(sd->gspca_dev.dev,
1885 usb_sndctrlpipe(sd->gspca_dev.dev, 0),
Hans de Goedea511ba92009-10-16 07:13:07 -03001886 req,
Hans de Goedeb46aaa02009-10-12 10:07:57 -03001887 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
Hans de Goedea511ba92009-10-16 07:13:07 -03001888 value, index, NULL, 0, 500);
Hans de Goedeb46aaa02009-10-12 10:07:57 -03001889 goto leave;
1890 default:
1891 req = 1;
1892 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001893
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001894 sd->gspca_dev.usb_buf[0] = value;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001895 ret = usb_control_msg(sd->gspca_dev.dev,
1896 usb_sndctrlpipe(sd->gspca_dev.dev, 0),
Hans de Goede49809d62009-06-07 12:10:39 -03001897 req,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001898 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
1899 0, index,
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001900 sd->gspca_dev.usb_buf, 1, 500);
Hans de Goedeb46aaa02009-10-12 10:07:57 -03001901leave:
Hans de Goedea511ba92009-10-16 07:13:07 -03001902 if (ret < 0) {
Jean-François Moine0b656322010-09-13 05:19:58 -03001903 err("Write reg 0x%04x -> [0x%02x] failed",
Hans de Goedea511ba92009-10-16 07:13:07 -03001904 value, index);
1905 return ret;
1906 }
1907
1908 PDEBUG(D_USBO, "Write reg 0x%04x -> [0x%02x]", value, index);
1909 return 0;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001910}
1911
Hans de Goedea511ba92009-10-16 07:13:07 -03001912/* Read from a OV519 register, note not valid for the w9968cf!! */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001913/* returns: negative is error, pos or zero is data */
1914static int reg_r(struct sd *sd, __u16 index)
1915{
1916 int ret;
Hans de Goedeb46aaa02009-10-12 10:07:57 -03001917 int req;
1918
1919 switch (sd->bridge) {
1920 case BRIDGE_OV511:
1921 case BRIDGE_OV511PLUS:
1922 req = 3;
1923 break;
1924 case BRIDGE_OVFX2:
1925 req = 0x0b;
1926 break;
1927 default:
1928 req = 1;
1929 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001930
1931 ret = usb_control_msg(sd->gspca_dev.dev,
1932 usb_rcvctrlpipe(sd->gspca_dev.dev, 0),
Hans de Goede49809d62009-06-07 12:10:39 -03001933 req,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001934 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001935 0, index, sd->gspca_dev.usb_buf, 1, 500);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001936
Hans de Goedea511ba92009-10-16 07:13:07 -03001937 if (ret >= 0) {
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001938 ret = sd->gspca_dev.usb_buf[0];
Hans de Goedea511ba92009-10-16 07:13:07 -03001939 PDEBUG(D_USBI, "Read reg [0x%02X] -> 0x%04X", index, ret);
1940 } else
Jean-François Moine0b656322010-09-13 05:19:58 -03001941 err("Read reg [0x%02x] failed", index);
Hans de Goedea511ba92009-10-16 07:13:07 -03001942
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001943 return ret;
1944}
1945
1946/* Read 8 values from a OV519 register */
1947static int reg_r8(struct sd *sd,
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03001948 __u16 index)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001949{
1950 int ret;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001951
1952 ret = usb_control_msg(sd->gspca_dev.dev,
1953 usb_rcvctrlpipe(sd->gspca_dev.dev, 0),
1954 1, /* REQ_IO */
1955 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001956 0, index, sd->gspca_dev.usb_buf, 8, 500);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001957
1958 if (ret >= 0)
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001959 ret = sd->gspca_dev.usb_buf[0];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001960 else
Jean-François Moine0b656322010-09-13 05:19:58 -03001961 err("Read reg 8 [0x%02x] failed", index);
Hans de Goedea511ba92009-10-16 07:13:07 -03001962
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001963 return ret;
1964}
1965
1966/*
1967 * Writes bits at positions specified by mask to an OV51x reg. Bits that are in
1968 * the same position as 1's in "mask" are cleared and set to "value". Bits
1969 * that are in the same position as 0's in "mask" are preserved, regardless
1970 * of their respective state in "value".
1971 */
1972static int reg_w_mask(struct sd *sd,
1973 __u16 index,
1974 __u8 value,
1975 __u8 mask)
1976{
1977 int ret;
1978 __u8 oldval;
1979
1980 if (mask != 0xff) {
1981 value &= mask; /* Enforce mask on value */
1982 ret = reg_r(sd, index);
1983 if (ret < 0)
1984 return ret;
1985
1986 oldval = ret & ~mask; /* Clear the masked bits */
1987 value |= oldval; /* Set the desired bits */
1988 }
1989 return reg_w(sd, index, value);
1990}
1991
1992/*
Hans de Goede49809d62009-06-07 12:10:39 -03001993 * Writes multiple (n) byte value to a single register. Only valid with certain
1994 * registers (0x30 and 0xc4 - 0xce).
1995 */
1996static int ov518_reg_w32(struct sd *sd, __u16 index, u32 value, int n)
1997{
1998 int ret;
1999
Jean-Francois Moine83955552009-12-12 06:58:01 -03002000 *((__le32 *) sd->gspca_dev.usb_buf) = __cpu_to_le32(value);
Hans de Goede49809d62009-06-07 12:10:39 -03002001
2002 ret = usb_control_msg(sd->gspca_dev.dev,
2003 usb_sndctrlpipe(sd->gspca_dev.dev, 0),
2004 1 /* REG_IO */,
2005 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
2006 0, index,
2007 sd->gspca_dev.usb_buf, n, 500);
Hans de Goedea511ba92009-10-16 07:13:07 -03002008 if (ret < 0) {
Jean-François Moine0b656322010-09-13 05:19:58 -03002009 err("Write reg32 [%02x] %08x failed", index, value);
Hans de Goedea511ba92009-10-16 07:13:07 -03002010 return ret;
2011 }
2012
2013 return 0;
Hans de Goede49809d62009-06-07 12:10:39 -03002014}
2015
Hans de Goede1876bb92009-06-14 06:45:50 -03002016static int ov511_i2c_w(struct sd *sd, __u8 reg, __u8 value)
2017{
2018 int rc, retries;
2019
2020 PDEBUG(D_USBO, "i2c 0x%02x -> [0x%02x]", value, reg);
2021
2022 /* Three byte write cycle */
2023 for (retries = 6; ; ) {
2024 /* Select camera register */
2025 rc = reg_w(sd, R51x_I2C_SADDR_3, reg);
2026 if (rc < 0)
2027 return rc;
2028
2029 /* Write "value" to I2C data port of OV511 */
2030 rc = reg_w(sd, R51x_I2C_DATA, value);
2031 if (rc < 0)
2032 return rc;
2033
2034 /* Initiate 3-byte write cycle */
2035 rc = reg_w(sd, R511_I2C_CTL, 0x01);
2036 if (rc < 0)
2037 return rc;
2038
Jean-Francois Moine83955552009-12-12 06:58:01 -03002039 do {
Hans de Goede1876bb92009-06-14 06:45:50 -03002040 rc = reg_r(sd, R511_I2C_CTL);
Jean-Francois Moine83955552009-12-12 06:58:01 -03002041 } while (rc > 0 && ((rc & 1) == 0)); /* Retry until idle */
Hans de Goede1876bb92009-06-14 06:45:50 -03002042
2043 if (rc < 0)
2044 return rc;
2045
2046 if ((rc & 2) == 0) /* Ack? */
2047 break;
2048 if (--retries < 0) {
2049 PDEBUG(D_USBO, "i2c write retries exhausted");
2050 return -1;
2051 }
2052 }
2053
2054 return 0;
2055}
2056
2057static int ov511_i2c_r(struct sd *sd, __u8 reg)
2058{
2059 int rc, value, retries;
2060
2061 /* Two byte write cycle */
2062 for (retries = 6; ; ) {
2063 /* Select camera register */
2064 rc = reg_w(sd, R51x_I2C_SADDR_2, reg);
2065 if (rc < 0)
2066 return rc;
2067
2068 /* Initiate 2-byte write cycle */
2069 rc = reg_w(sd, R511_I2C_CTL, 0x03);
2070 if (rc < 0)
2071 return rc;
2072
Jean-Francois Moine83955552009-12-12 06:58:01 -03002073 do {
Hans de Goede1876bb92009-06-14 06:45:50 -03002074 rc = reg_r(sd, R511_I2C_CTL);
Jean-Francois Moine83955552009-12-12 06:58:01 -03002075 } while (rc > 0 && ((rc & 1) == 0)); /* Retry until idle */
Hans de Goede1876bb92009-06-14 06:45:50 -03002076
2077 if (rc < 0)
2078 return rc;
2079
2080 if ((rc & 2) == 0) /* Ack? */
2081 break;
2082
2083 /* I2C abort */
2084 reg_w(sd, R511_I2C_CTL, 0x10);
2085
2086 if (--retries < 0) {
2087 PDEBUG(D_USBI, "i2c write retries exhausted");
2088 return -1;
2089 }
2090 }
2091
2092 /* Two byte read cycle */
2093 for (retries = 6; ; ) {
2094 /* Initiate 2-byte read cycle */
2095 rc = reg_w(sd, R511_I2C_CTL, 0x05);
2096 if (rc < 0)
2097 return rc;
2098
Jean-Francois Moine83955552009-12-12 06:58:01 -03002099 do {
Hans de Goede1876bb92009-06-14 06:45:50 -03002100 rc = reg_r(sd, R511_I2C_CTL);
Jean-Francois Moine83955552009-12-12 06:58:01 -03002101 } while (rc > 0 && ((rc & 1) == 0)); /* Retry until idle */
Hans de Goede1876bb92009-06-14 06:45:50 -03002102
2103 if (rc < 0)
2104 return rc;
2105
2106 if ((rc & 2) == 0) /* Ack? */
2107 break;
2108
2109 /* I2C abort */
2110 rc = reg_w(sd, R511_I2C_CTL, 0x10);
2111 if (rc < 0)
2112 return rc;
2113
2114 if (--retries < 0) {
2115 PDEBUG(D_USBI, "i2c read retries exhausted");
2116 return -1;
2117 }
2118 }
2119
2120 value = reg_r(sd, R51x_I2C_DATA);
2121
2122 PDEBUG(D_USBI, "i2c [0x%02X] -> 0x%02X", reg, value);
2123
2124 /* This is needed to make i2c_w() work */
2125 rc = reg_w(sd, R511_I2C_CTL, 0x05);
2126 if (rc < 0)
2127 return rc;
2128
2129 return value;
2130}
Hans de Goede49809d62009-06-07 12:10:39 -03002131
2132/*
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002133 * The OV518 I2C I/O procedure is different, hence, this function.
2134 * This is normally only called from i2c_w(). Note that this function
2135 * always succeeds regardless of whether the sensor is present and working.
2136 */
Hans de Goede1876bb92009-06-14 06:45:50 -03002137static int ov518_i2c_w(struct sd *sd,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002138 __u8 reg,
2139 __u8 value)
2140{
2141 int rc;
2142
2143 PDEBUG(D_USBO, "i2c 0x%02x -> [0x%02x]", value, reg);
2144
2145 /* Select camera register */
2146 rc = reg_w(sd, R51x_I2C_SADDR_3, reg);
2147 if (rc < 0)
2148 return rc;
2149
2150 /* Write "value" to I2C data port of OV511 */
2151 rc = reg_w(sd, R51x_I2C_DATA, value);
2152 if (rc < 0)
2153 return rc;
2154
2155 /* Initiate 3-byte write cycle */
2156 rc = reg_w(sd, R518_I2C_CTL, 0x01);
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03002157 if (rc < 0)
2158 return rc;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002159
2160 /* wait for write complete */
2161 msleep(4);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002162 return reg_r8(sd, R518_I2C_CTL);
2163}
2164
2165/*
2166 * returns: negative is error, pos or zero is data
2167 *
2168 * The OV518 I2C I/O procedure is different, hence, this function.
2169 * This is normally only called from i2c_r(). Note that this function
2170 * always succeeds regardless of whether the sensor is present and working.
2171 */
Hans de Goede1876bb92009-06-14 06:45:50 -03002172static int ov518_i2c_r(struct sd *sd, __u8 reg)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002173{
2174 int rc, value;
2175
2176 /* Select camera register */
2177 rc = reg_w(sd, R51x_I2C_SADDR_2, reg);
2178 if (rc < 0)
2179 return rc;
2180
2181 /* Initiate 2-byte write cycle */
2182 rc = reg_w(sd, R518_I2C_CTL, 0x03);
2183 if (rc < 0)
2184 return rc;
2185
2186 /* Initiate 2-byte read cycle */
2187 rc = reg_w(sd, R518_I2C_CTL, 0x05);
2188 if (rc < 0)
2189 return rc;
2190 value = reg_r(sd, R51x_I2C_DATA);
2191 PDEBUG(D_USBI, "i2c [0x%02X] -> 0x%02X", reg, value);
2192 return value;
2193}
2194
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002195static int ovfx2_i2c_w(struct sd *sd, __u8 reg, __u8 value)
2196{
2197 int ret;
2198
2199 ret = usb_control_msg(sd->gspca_dev.dev,
2200 usb_sndctrlpipe(sd->gspca_dev.dev, 0),
2201 0x02,
2202 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
2203 (__u16)value, (__u16)reg, NULL, 0, 500);
2204
Hans de Goedea511ba92009-10-16 07:13:07 -03002205 if (ret < 0) {
Jean-François Moine0b656322010-09-13 05:19:58 -03002206 err("i2c 0x%02x -> [0x%02x] failed", value, reg);
Hans de Goedea511ba92009-10-16 07:13:07 -03002207 return ret;
2208 }
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002209
Hans de Goedea511ba92009-10-16 07:13:07 -03002210 PDEBUG(D_USBO, "i2c 0x%02x -> [0x%02x]", value, reg);
2211 return 0;
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002212}
2213
2214static int ovfx2_i2c_r(struct sd *sd, __u8 reg)
2215{
2216 int ret;
2217
2218 ret = usb_control_msg(sd->gspca_dev.dev,
2219 usb_rcvctrlpipe(sd->gspca_dev.dev, 0),
2220 0x03,
2221 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
2222 0, (__u16)reg, sd->gspca_dev.usb_buf, 1, 500);
2223
2224 if (ret >= 0) {
2225 ret = sd->gspca_dev.usb_buf[0];
2226 PDEBUG(D_USBI, "i2c [0x%02X] -> 0x%02X", reg, ret);
2227 } else
Jean-François Moine0b656322010-09-13 05:19:58 -03002228 err("i2c read [0x%02x] failed", reg);
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002229
2230 return ret;
2231}
2232
Hans de Goede1876bb92009-06-14 06:45:50 -03002233static int i2c_w(struct sd *sd, __u8 reg, __u8 value)
2234{
Hans de Goedefb1f9022009-10-16 07:42:53 -03002235 int ret = -1;
2236
2237 if (sd->sensor_reg_cache[reg] == value)
2238 return 0;
2239
Hans de Goede1876bb92009-06-14 06:45:50 -03002240 switch (sd->bridge) {
2241 case BRIDGE_OV511:
2242 case BRIDGE_OV511PLUS:
Hans de Goedefb1f9022009-10-16 07:42:53 -03002243 ret = ov511_i2c_w(sd, reg, value);
2244 break;
Hans de Goede1876bb92009-06-14 06:45:50 -03002245 case BRIDGE_OV518:
2246 case BRIDGE_OV518PLUS:
2247 case BRIDGE_OV519:
Hans de Goedefb1f9022009-10-16 07:42:53 -03002248 ret = ov518_i2c_w(sd, reg, value);
2249 break;
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002250 case BRIDGE_OVFX2:
Hans de Goedefb1f9022009-10-16 07:42:53 -03002251 ret = ovfx2_i2c_w(sd, reg, value);
2252 break;
Hans de Goedea511ba92009-10-16 07:13:07 -03002253 case BRIDGE_W9968CF:
Hans de Goedefb1f9022009-10-16 07:42:53 -03002254 ret = w9968cf_i2c_w(sd, reg, value);
2255 break;
Hans de Goede1876bb92009-06-14 06:45:50 -03002256 }
Hans de Goedefb1f9022009-10-16 07:42:53 -03002257
2258 if (ret >= 0) {
2259 /* Up on sensor reset empty the register cache */
2260 if (reg == 0x12 && (value & 0x80))
2261 memset(sd->sensor_reg_cache, -1,
2262 sizeof(sd->sensor_reg_cache));
2263 else
2264 sd->sensor_reg_cache[reg] = value;
2265 }
2266
2267 return ret;
Hans de Goede1876bb92009-06-14 06:45:50 -03002268}
2269
2270static int i2c_r(struct sd *sd, __u8 reg)
2271{
Hans de Goede8394bcf2009-10-16 11:26:22 -03002272 int ret = -1;
Hans de Goedefb1f9022009-10-16 07:42:53 -03002273
2274 if (sd->sensor_reg_cache[reg] != -1)
2275 return sd->sensor_reg_cache[reg];
2276
Hans de Goede1876bb92009-06-14 06:45:50 -03002277 switch (sd->bridge) {
2278 case BRIDGE_OV511:
2279 case BRIDGE_OV511PLUS:
Hans de Goedefb1f9022009-10-16 07:42:53 -03002280 ret = ov511_i2c_r(sd, reg);
2281 break;
Hans de Goede1876bb92009-06-14 06:45:50 -03002282 case BRIDGE_OV518:
2283 case BRIDGE_OV518PLUS:
2284 case BRIDGE_OV519:
Hans de Goedefb1f9022009-10-16 07:42:53 -03002285 ret = ov518_i2c_r(sd, reg);
2286 break;
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002287 case BRIDGE_OVFX2:
Hans de Goedefb1f9022009-10-16 07:42:53 -03002288 ret = ovfx2_i2c_r(sd, reg);
2289 break;
Hans de Goedea511ba92009-10-16 07:13:07 -03002290 case BRIDGE_W9968CF:
Hans de Goedefb1f9022009-10-16 07:42:53 -03002291 ret = w9968cf_i2c_r(sd, reg);
2292 break;
Hans de Goede1876bb92009-06-14 06:45:50 -03002293 }
Hans de Goedefb1f9022009-10-16 07:42:53 -03002294
2295 if (ret >= 0)
2296 sd->sensor_reg_cache[reg] = ret;
2297
2298 return ret;
Hans de Goede1876bb92009-06-14 06:45:50 -03002299}
2300
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002301/* Writes bits at positions specified by mask to an I2C reg. Bits that are in
2302 * the same position as 1's in "mask" are cleared and set to "value". Bits
2303 * that are in the same position as 0's in "mask" are preserved, regardless
2304 * of their respective state in "value".
2305 */
2306static int i2c_w_mask(struct sd *sd,
2307 __u8 reg,
2308 __u8 value,
2309 __u8 mask)
2310{
2311 int rc;
2312 __u8 oldval;
2313
2314 value &= mask; /* Enforce mask on value */
2315 rc = i2c_r(sd, reg);
2316 if (rc < 0)
2317 return rc;
2318 oldval = rc & ~mask; /* Clear the masked bits */
2319 value |= oldval; /* Set the desired bits */
2320 return i2c_w(sd, reg, value);
2321}
2322
2323/* Temporarily stops OV511 from functioning. Must do this before changing
2324 * registers while the camera is streaming */
2325static inline int ov51x_stop(struct sd *sd)
2326{
2327 PDEBUG(D_STREAM, "stopping");
2328 sd->stopped = 1;
Hans de Goede49809d62009-06-07 12:10:39 -03002329 switch (sd->bridge) {
2330 case BRIDGE_OV511:
2331 case BRIDGE_OV511PLUS:
2332 return reg_w(sd, R51x_SYS_RESET, 0x3d);
2333 case BRIDGE_OV518:
2334 case BRIDGE_OV518PLUS:
2335 return reg_w_mask(sd, R51x_SYS_RESET, 0x3a, 0x3a);
2336 case BRIDGE_OV519:
2337 return reg_w(sd, OV519_SYS_RESET1, 0x0f);
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002338 case BRIDGE_OVFX2:
2339 return reg_w_mask(sd, 0x0f, 0x00, 0x02);
Hans de Goedea511ba92009-10-16 07:13:07 -03002340 case BRIDGE_W9968CF:
Hans de Goede79b35902009-10-19 06:08:01 -03002341 return reg_w(sd, 0x3c, 0x0a05); /* stop USB transfer */
Hans de Goede49809d62009-06-07 12:10:39 -03002342 }
2343
2344 return 0;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002345}
2346
2347/* Restarts OV511 after ov511_stop() is called. Has no effect if it is not
2348 * actually stopped (for performance). */
2349static inline int ov51x_restart(struct sd *sd)
2350{
Hans de Goede49809d62009-06-07 12:10:39 -03002351 int rc;
2352
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002353 PDEBUG(D_STREAM, "restarting");
2354 if (!sd->stopped)
2355 return 0;
2356 sd->stopped = 0;
2357
2358 /* Reinitialize the stream */
Hans de Goede49809d62009-06-07 12:10:39 -03002359 switch (sd->bridge) {
2360 case BRIDGE_OV511:
2361 case BRIDGE_OV511PLUS:
2362 return reg_w(sd, R51x_SYS_RESET, 0x00);
2363 case BRIDGE_OV518:
2364 case BRIDGE_OV518PLUS:
2365 rc = reg_w(sd, 0x2f, 0x80);
2366 if (rc < 0)
2367 return rc;
2368 return reg_w(sd, R51x_SYS_RESET, 0x00);
2369 case BRIDGE_OV519:
2370 return reg_w(sd, OV519_SYS_RESET1, 0x00);
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002371 case BRIDGE_OVFX2:
2372 return reg_w_mask(sd, 0x0f, 0x02, 0x02);
Hans de Goedea511ba92009-10-16 07:13:07 -03002373 case BRIDGE_W9968CF:
2374 return reg_w(sd, 0x3c, 0x8a05); /* USB FIFO enable */
Hans de Goede49809d62009-06-07 12:10:39 -03002375 }
2376
2377 return 0;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002378}
2379
Hans de Goede229bb7d2009-10-11 07:41:46 -03002380static int ov51x_set_slave_ids(struct sd *sd, __u8 slave);
2381
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002382/* This does an initial reset of an OmniVision sensor and ensures that I2C
2383 * is synchronized. Returns <0 on failure.
2384 */
Hans de Goede229bb7d2009-10-11 07:41:46 -03002385static int init_ov_sensor(struct sd *sd, __u8 slave)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002386{
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03002387 int i;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002388
Hans de Goede229bb7d2009-10-11 07:41:46 -03002389 if (ov51x_set_slave_ids(sd, slave) < 0)
2390 return -EIO;
2391
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002392 /* Reset the sensor */
2393 if (i2c_w(sd, 0x12, 0x80) < 0)
2394 return -EIO;
2395
2396 /* Wait for it to initialize */
2397 msleep(150);
2398
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03002399 for (i = 0; i < i2c_detect_tries; i++) {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002400 if (i2c_r(sd, OV7610_REG_ID_HIGH) == 0x7f &&
2401 i2c_r(sd, OV7610_REG_ID_LOW) == 0xa2) {
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03002402 PDEBUG(D_PROBE, "I2C synced in %d attempt(s)", i);
2403 return 0;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002404 }
2405
2406 /* Reset the sensor */
2407 if (i2c_w(sd, 0x12, 0x80) < 0)
2408 return -EIO;
2409 /* Wait for it to initialize */
2410 msleep(150);
2411 /* Dummy read to sync I2C */
2412 if (i2c_r(sd, 0x00) < 0)
2413 return -EIO;
2414 }
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03002415 return -EIO;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002416}
2417
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002418/* Set the read and write slave IDs. The "slave" argument is the write slave,
2419 * and the read slave will be set to (slave + 1).
2420 * This should not be called from outside the i2c I/O functions.
2421 * Sets I2C read and write slave IDs. Returns <0 for error
2422 */
2423static int ov51x_set_slave_ids(struct sd *sd,
2424 __u8 slave)
2425{
2426 int rc;
2427
Hans de Goedea511ba92009-10-16 07:13:07 -03002428 switch (sd->bridge) {
2429 case BRIDGE_OVFX2:
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002430 return reg_w(sd, OVFX2_I2C_ADDR, slave);
Hans de Goedea511ba92009-10-16 07:13:07 -03002431 case BRIDGE_W9968CF:
2432 sd->sensor_addr = slave;
2433 return 0;
2434 }
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002435
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002436 rc = reg_w(sd, R51x_I2C_W_SID, slave);
2437 if (rc < 0)
2438 return rc;
2439 return reg_w(sd, R51x_I2C_R_SID, slave + 1);
2440}
2441
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002442static int write_regvals(struct sd *sd,
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03002443 const struct ov_regvals *regvals,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002444 int n)
2445{
2446 int rc;
2447
2448 while (--n >= 0) {
2449 rc = reg_w(sd, regvals->reg, regvals->val);
2450 if (rc < 0)
2451 return rc;
2452 regvals++;
2453 }
2454 return 0;
2455}
2456
2457static int write_i2c_regvals(struct sd *sd,
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03002458 const struct ov_i2c_regvals *regvals,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002459 int n)
2460{
2461 int rc;
2462
2463 while (--n >= 0) {
2464 rc = i2c_w(sd, regvals->reg, regvals->val);
2465 if (rc < 0)
2466 return rc;
2467 regvals++;
2468 }
2469 return 0;
2470}
2471
2472/****************************************************************************
2473 *
2474 * OV511 and sensor configuration
2475 *
2476 ***************************************************************************/
2477
Hans de Goede635118d2009-10-11 09:49:03 -03002478/* This initializes the OV2x10 / OV3610 / OV3620 */
2479static int ov_hires_configure(struct sd *sd)
2480{
2481 int high, low;
2482
2483 if (sd->bridge != BRIDGE_OVFX2) {
Jean-François Moine0b656322010-09-13 05:19:58 -03002484 err("error hires sensors only supported with ovfx2");
Hans de Goede635118d2009-10-11 09:49:03 -03002485 return -1;
2486 }
2487
2488 PDEBUG(D_PROBE, "starting ov hires configuration");
2489
2490 /* Detect sensor (sub)type */
2491 high = i2c_r(sd, 0x0a);
2492 low = i2c_r(sd, 0x0b);
2493 /* info("%x, %x", high, low); */
2494 if (high == 0x96 && low == 0x40) {
2495 PDEBUG(D_PROBE, "Sensor is an OV2610");
2496 sd->sensor = SEN_OV2610;
2497 } else if (high == 0x36 && (low & 0x0f) == 0x00) {
2498 PDEBUG(D_PROBE, "Sensor is an OV3610");
2499 sd->sensor = SEN_OV3610;
2500 } else {
Jean-François Moine0b656322010-09-13 05:19:58 -03002501 err("Error unknown sensor type: 0x%02x%02x",
Hans de Goede635118d2009-10-11 09:49:03 -03002502 high, low);
2503 return -1;
2504 }
2505
2506 /* Set sensor-specific vars */
2507 return 0;
2508}
2509
2510
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002511/* This initializes the OV8110, OV8610 sensor. The OV8110 uses
2512 * the same register settings as the OV8610, since they are very similar.
2513 */
2514static int ov8xx0_configure(struct sd *sd)
2515{
2516 int rc;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002517
2518 PDEBUG(D_PROBE, "starting ov8xx0 configuration");
2519
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002520 /* Detect sensor (sub)type */
2521 rc = i2c_r(sd, OV7610_REG_COM_I);
2522 if (rc < 0) {
2523 PDEBUG(D_ERR, "Error detecting sensor type");
2524 return -1;
2525 }
2526 if ((rc & 3) == 1) {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002527 sd->sensor = SEN_OV8610;
2528 } else {
Jean-François Moine0b656322010-09-13 05:19:58 -03002529 err("Unknown image sensor version: %d", rc & 3);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002530 return -1;
2531 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002532
2533 /* Set sensor-specific vars */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002534 return 0;
2535}
2536
2537/* This initializes the OV7610, OV7620, or OV76BE sensor. The OV76BE uses
2538 * the same register settings as the OV7610, since they are very similar.
2539 */
2540static int ov7xx0_configure(struct sd *sd)
2541{
2542 int rc, high, low;
2543
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002544
2545 PDEBUG(D_PROBE, "starting OV7xx0 configuration");
2546
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002547 /* Detect sensor (sub)type */
2548 rc = i2c_r(sd, OV7610_REG_COM_I);
2549
2550 /* add OV7670 here
2551 * it appears to be wrongly detected as a 7610 by default */
2552 if (rc < 0) {
2553 PDEBUG(D_ERR, "Error detecting sensor type");
2554 return -1;
2555 }
2556 if ((rc & 3) == 3) {
2557 /* quick hack to make OV7670s work */
2558 high = i2c_r(sd, 0x0a);
2559 low = i2c_r(sd, 0x0b);
2560 /* info("%x, %x", high, low); */
2561 if (high == 0x76 && low == 0x73) {
2562 PDEBUG(D_PROBE, "Sensor is an OV7670");
2563 sd->sensor = SEN_OV7670;
2564 } else {
2565 PDEBUG(D_PROBE, "Sensor is an OV7610");
2566 sd->sensor = SEN_OV7610;
2567 }
2568 } else if ((rc & 3) == 1) {
2569 /* I don't know what's different about the 76BE yet. */
Hans de Goedeb282d872009-06-14 19:10:40 -03002570 if (i2c_r(sd, 0x15) & 1) {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002571 PDEBUG(D_PROBE, "Sensor is an OV7620AE");
Hans de Goede859cc472010-01-07 15:42:35 -03002572 sd->sensor = SEN_OV7620AE;
Hans de Goedeb282d872009-06-14 19:10:40 -03002573 } else {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002574 PDEBUG(D_PROBE, "Sensor is an OV76BE");
Hans de Goedeb282d872009-06-14 19:10:40 -03002575 sd->sensor = SEN_OV76BE;
2576 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002577 } else if ((rc & 3) == 0) {
2578 /* try to read product id registers */
2579 high = i2c_r(sd, 0x0a);
2580 if (high < 0) {
2581 PDEBUG(D_ERR, "Error detecting camera chip PID");
2582 return high;
2583 }
2584 low = i2c_r(sd, 0x0b);
2585 if (low < 0) {
2586 PDEBUG(D_ERR, "Error detecting camera chip VER");
2587 return low;
2588 }
2589 if (high == 0x76) {
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002590 switch (low) {
2591 case 0x30:
Jean-François Moine0b656322010-09-13 05:19:58 -03002592 err("Sensor is an OV7630/OV7635");
2593 err("7630 is not supported by this driver");
Jean-Francois Moine4202f712008-09-03 17:12:15 -03002594 return -1;
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002595 case 0x40:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002596 PDEBUG(D_PROBE, "Sensor is an OV7645");
2597 sd->sensor = SEN_OV7640; /* FIXME */
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002598 break;
2599 case 0x45:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002600 PDEBUG(D_PROBE, "Sensor is an OV7645B");
2601 sd->sensor = SEN_OV7640; /* FIXME */
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002602 break;
2603 case 0x48:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002604 PDEBUG(D_PROBE, "Sensor is an OV7648");
Hans de Goede035d3a32010-01-09 08:14:43 -03002605 sd->sensor = SEN_OV7648;
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002606 break;
2607 default:
2608 PDEBUG(D_PROBE, "Unknown sensor: 0x76%x", low);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002609 return -1;
2610 }
2611 } else {
2612 PDEBUG(D_PROBE, "Sensor is an OV7620");
2613 sd->sensor = SEN_OV7620;
2614 }
2615 } else {
Jean-François Moine0b656322010-09-13 05:19:58 -03002616 err("Unknown image sensor version: %d", rc & 3);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002617 return -1;
2618 }
2619
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002620 /* Set sensor-specific vars */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002621 return 0;
2622}
2623
2624/* This initializes the OV6620, OV6630, OV6630AE, or OV6630AF sensor. */
2625static int ov6xx0_configure(struct sd *sd)
2626{
2627 int rc;
Jean-Francois Moine4202f712008-09-03 17:12:15 -03002628 PDEBUG(D_PROBE, "starting OV6xx0 configuration");
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002629
2630 /* Detect sensor (sub)type */
2631 rc = i2c_r(sd, OV7610_REG_COM_I);
2632 if (rc < 0) {
2633 PDEBUG(D_ERR, "Error detecting sensor type");
2634 return -1;
2635 }
2636
2637 /* Ugh. The first two bits are the version bits, but
2638 * the entire register value must be used. I guess OVT
2639 * underestimated how many variants they would make. */
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002640 switch (rc) {
2641 case 0x00:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002642 sd->sensor = SEN_OV6630;
Jean-François Moine0b656322010-09-13 05:19:58 -03002643 warn("WARNING: Sensor is an OV66308. Your camera may have");
2644 warn("been misdetected in previous driver versions.");
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002645 break;
2646 case 0x01:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002647 sd->sensor = SEN_OV6620;
Hans de Goede7d971372009-06-14 05:28:17 -03002648 PDEBUG(D_PROBE, "Sensor is an OV6620");
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002649 break;
2650 case 0x02:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002651 sd->sensor = SEN_OV6630;
2652 PDEBUG(D_PROBE, "Sensor is an OV66308AE");
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002653 break;
2654 case 0x03:
Hans de Goede7d971372009-06-14 05:28:17 -03002655 sd->sensor = SEN_OV66308AF;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002656 PDEBUG(D_PROBE, "Sensor is an OV66308AF");
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002657 break;
2658 case 0x90:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002659 sd->sensor = SEN_OV6630;
Jean-François Moine0b656322010-09-13 05:19:58 -03002660 warn("WARNING: Sensor is an OV66307. Your camera may have");
2661 warn("been misdetected in previous driver versions.");
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002662 break;
2663 default:
Jean-François Moine0b656322010-09-13 05:19:58 -03002664 err("FATAL: Unknown sensor version: 0x%02x", rc);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002665 return -1;
2666 }
2667
2668 /* Set sensor-specific vars */
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03002669 sd->sif = 1;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002670
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002671 return 0;
2672}
2673
2674/* Turns on or off the LED. Only has an effect with OV511+/OV518(+)/OV519 */
2675static void ov51x_led_control(struct sd *sd, int on)
2676{
Hans de Goede9e4d8252009-06-14 06:25:06 -03002677 if (sd->invert_led)
2678 on = !on;
2679
Hans de Goede49809d62009-06-07 12:10:39 -03002680 switch (sd->bridge) {
2681 /* OV511 has no LED control */
2682 case BRIDGE_OV511PLUS:
2683 reg_w(sd, R511_SYS_LED_CTL, on ? 1 : 0);
2684 break;
2685 case BRIDGE_OV518:
2686 case BRIDGE_OV518PLUS:
2687 reg_w_mask(sd, R518_GPIO_OUT, on ? 0x02 : 0x00, 0x02);
2688 break;
2689 case BRIDGE_OV519:
2690 reg_w_mask(sd, OV519_GPIO_DATA_OUT0, !on, 1); /* 0 / 1 */
2691 break;
2692 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002693}
2694
Hans de Goede417a4d22010-02-19 07:37:08 -03002695static void sd_reset_snapshot(struct gspca_dev *gspca_dev)
2696{
2697 struct sd *sd = (struct sd *) gspca_dev;
2698
2699 if (!sd->snapshot_needs_reset)
2700 return;
2701
2702 /* Note it is important that we clear sd->snapshot_needs_reset,
2703 before actually clearing the snapshot state in the bridge
2704 otherwise we might race with the pkt_scan interrupt handler */
2705 sd->snapshot_needs_reset = 0;
2706
2707 switch (sd->bridge) {
Hans de Goede88e8d202010-02-20 04:45:49 -03002708 case BRIDGE_OV511:
2709 case BRIDGE_OV511PLUS:
2710 reg_w(sd, R51x_SYS_SNAP, 0x02);
2711 reg_w(sd, R51x_SYS_SNAP, 0x00);
2712 break;
Hans de Goede92e232a2010-02-20 04:30:45 -03002713 case BRIDGE_OV518:
2714 case BRIDGE_OV518PLUS:
2715 reg_w(sd, R51x_SYS_SNAP, 0x02); /* Reset */
2716 reg_w(sd, R51x_SYS_SNAP, 0x01); /* Enable */
2717 break;
Hans de Goede417a4d22010-02-19 07:37:08 -03002718 case BRIDGE_OV519:
2719 reg_w(sd, R51x_SYS_RESET, 0x40);
2720 reg_w(sd, R51x_SYS_RESET, 0x00);
2721 break;
2722 }
2723}
2724
Hans de Goede1876bb92009-06-14 06:45:50 -03002725static int ov51x_upload_quan_tables(struct sd *sd)
Hans de Goede49809d62009-06-07 12:10:39 -03002726{
Hans de Goede1876bb92009-06-14 06:45:50 -03002727 const unsigned char yQuanTable511[] = {
2728 0, 1, 1, 2, 2, 3, 3, 4,
2729 1, 1, 1, 2, 2, 3, 4, 4,
2730 1, 1, 2, 2, 3, 4, 4, 4,
2731 2, 2, 2, 3, 4, 4, 4, 4,
2732 2, 2, 3, 4, 4, 5, 5, 5,
2733 3, 3, 4, 4, 5, 5, 5, 5,
2734 3, 4, 4, 4, 5, 5, 5, 5,
2735 4, 4, 4, 4, 5, 5, 5, 5
2736 };
2737
2738 const unsigned char uvQuanTable511[] = {
2739 0, 2, 2, 3, 4, 4, 4, 4,
2740 2, 2, 2, 4, 4, 4, 4, 4,
2741 2, 2, 3, 4, 4, 4, 4, 4,
2742 3, 4, 4, 4, 4, 4, 4, 4,
2743 4, 4, 4, 4, 4, 4, 4, 4,
2744 4, 4, 4, 4, 4, 4, 4, 4,
2745 4, 4, 4, 4, 4, 4, 4, 4,
2746 4, 4, 4, 4, 4, 4, 4, 4
2747 };
2748
2749 /* OV518 quantization tables are 8x4 (instead of 8x8) */
Hans de Goede49809d62009-06-07 12:10:39 -03002750 const unsigned char yQuanTable518[] = {
2751 5, 4, 5, 6, 6, 7, 7, 7,
2752 5, 5, 5, 5, 6, 7, 7, 7,
2753 6, 6, 6, 6, 7, 7, 7, 8,
2754 7, 7, 6, 7, 7, 7, 8, 8
2755 };
2756
2757 const unsigned char uvQuanTable518[] = {
2758 6, 6, 6, 7, 7, 7, 7, 7,
2759 6, 6, 6, 7, 7, 7, 7, 7,
2760 6, 6, 6, 7, 7, 7, 7, 8,
2761 7, 7, 7, 7, 7, 7, 8, 8
2762 };
2763
Hans de Goede1876bb92009-06-14 06:45:50 -03002764 const unsigned char *pYTable, *pUVTable;
Hans de Goede49809d62009-06-07 12:10:39 -03002765 unsigned char val0, val1;
Hans de Goede1876bb92009-06-14 06:45:50 -03002766 int i, size, rc, reg = R51x_COMP_LUT_BEGIN;
Hans de Goede49809d62009-06-07 12:10:39 -03002767
2768 PDEBUG(D_PROBE, "Uploading quantization tables");
2769
Hans de Goede1876bb92009-06-14 06:45:50 -03002770 if (sd->bridge == BRIDGE_OV511 || sd->bridge == BRIDGE_OV511PLUS) {
2771 pYTable = yQuanTable511;
2772 pUVTable = uvQuanTable511;
2773 size = 32;
2774 } else {
2775 pYTable = yQuanTable518;
2776 pUVTable = uvQuanTable518;
2777 size = 16;
2778 }
2779
2780 for (i = 0; i < size; i++) {
Hans de Goede49809d62009-06-07 12:10:39 -03002781 val0 = *pYTable++;
2782 val1 = *pYTable++;
2783 val0 &= 0x0f;
2784 val1 &= 0x0f;
2785 val0 |= val1 << 4;
2786 rc = reg_w(sd, reg, val0);
2787 if (rc < 0)
2788 return rc;
2789
2790 val0 = *pUVTable++;
2791 val1 = *pUVTable++;
2792 val0 &= 0x0f;
2793 val1 &= 0x0f;
2794 val0 |= val1 << 4;
Hans de Goede1876bb92009-06-14 06:45:50 -03002795 rc = reg_w(sd, reg + size, val0);
Hans de Goede49809d62009-06-07 12:10:39 -03002796 if (rc < 0)
2797 return rc;
2798
2799 reg++;
2800 }
2801
2802 return 0;
2803}
2804
Hans de Goede1876bb92009-06-14 06:45:50 -03002805/* This initializes the OV511/OV511+ and the sensor */
2806static int ov511_configure(struct gspca_dev *gspca_dev)
2807{
2808 struct sd *sd = (struct sd *) gspca_dev;
2809 int rc;
2810
2811 /* For 511 and 511+ */
2812 const struct ov_regvals init_511[] = {
2813 { R51x_SYS_RESET, 0x7f },
2814 { R51x_SYS_INIT, 0x01 },
2815 { R51x_SYS_RESET, 0x7f },
2816 { R51x_SYS_INIT, 0x01 },
2817 { R51x_SYS_RESET, 0x3f },
2818 { R51x_SYS_INIT, 0x01 },
2819 { R51x_SYS_RESET, 0x3d },
2820 };
2821
2822 const struct ov_regvals norm_511[] = {
2823 { R511_DRAM_FLOW_CTL, 0x01 },
2824 { R51x_SYS_SNAP, 0x00 },
2825 { R51x_SYS_SNAP, 0x02 },
2826 { R51x_SYS_SNAP, 0x00 },
2827 { R511_FIFO_OPTS, 0x1f },
2828 { R511_COMP_EN, 0x00 },
2829 { R511_COMP_LUT_EN, 0x03 },
2830 };
2831
2832 const struct ov_regvals norm_511_p[] = {
2833 { R511_DRAM_FLOW_CTL, 0xff },
2834 { R51x_SYS_SNAP, 0x00 },
2835 { R51x_SYS_SNAP, 0x02 },
2836 { R51x_SYS_SNAP, 0x00 },
2837 { R511_FIFO_OPTS, 0xff },
2838 { R511_COMP_EN, 0x00 },
2839 { R511_COMP_LUT_EN, 0x03 },
2840 };
2841
2842 const struct ov_regvals compress_511[] = {
2843 { 0x70, 0x1f },
2844 { 0x71, 0x05 },
2845 { 0x72, 0x06 },
2846 { 0x73, 0x06 },
2847 { 0x74, 0x14 },
2848 { 0x75, 0x03 },
2849 { 0x76, 0x04 },
2850 { 0x77, 0x04 },
2851 };
2852
2853 PDEBUG(D_PROBE, "Device custom id %x", reg_r(sd, R51x_SYS_CUST_ID));
2854
2855 rc = write_regvals(sd, init_511, ARRAY_SIZE(init_511));
2856 if (rc < 0)
2857 return rc;
2858
2859 switch (sd->bridge) {
2860 case BRIDGE_OV511:
2861 rc = write_regvals(sd, norm_511, ARRAY_SIZE(norm_511));
2862 if (rc < 0)
2863 return rc;
2864 break;
2865 case BRIDGE_OV511PLUS:
2866 rc = write_regvals(sd, norm_511_p, ARRAY_SIZE(norm_511_p));
2867 if (rc < 0)
2868 return rc;
2869 break;
2870 }
2871
2872 /* Init compression */
2873 rc = write_regvals(sd, compress_511, ARRAY_SIZE(compress_511));
2874 if (rc < 0)
2875 return rc;
2876
2877 rc = ov51x_upload_quan_tables(sd);
2878 if (rc < 0) {
2879 PDEBUG(D_ERR, "Error uploading quantization tables");
2880 return rc;
2881 }
2882
2883 return 0;
2884}
2885
Hans de Goede49809d62009-06-07 12:10:39 -03002886/* This initializes the OV518/OV518+ and the sensor */
2887static int ov518_configure(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002888{
2889 struct sd *sd = (struct sd *) gspca_dev;
Hans de Goede49809d62009-06-07 12:10:39 -03002890 int rc;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002891
Hans de Goede49809d62009-06-07 12:10:39 -03002892 /* For 518 and 518+ */
Hans de Goedee080fcd2009-06-18 05:03:16 -03002893 const struct ov_regvals init_518[] = {
Hans de Goede49809d62009-06-07 12:10:39 -03002894 { R51x_SYS_RESET, 0x40 },
2895 { R51x_SYS_INIT, 0xe1 },
2896 { R51x_SYS_RESET, 0x3e },
2897 { R51x_SYS_INIT, 0xe1 },
2898 { R51x_SYS_RESET, 0x00 },
2899 { R51x_SYS_INIT, 0xe1 },
2900 { 0x46, 0x00 },
2901 { 0x5d, 0x03 },
2902 };
2903
Hans de Goedee080fcd2009-06-18 05:03:16 -03002904 const struct ov_regvals norm_518[] = {
Hans de Goede49809d62009-06-07 12:10:39 -03002905 { R51x_SYS_SNAP, 0x02 }, /* Reset */
2906 { R51x_SYS_SNAP, 0x01 }, /* Enable */
2907 { 0x31, 0x0f },
2908 { 0x5d, 0x03 },
2909 { 0x24, 0x9f },
2910 { 0x25, 0x90 },
2911 { 0x20, 0x00 },
2912 { 0x51, 0x04 },
2913 { 0x71, 0x19 },
2914 { 0x2f, 0x80 },
2915 };
2916
Hans de Goedee080fcd2009-06-18 05:03:16 -03002917 const struct ov_regvals norm_518_p[] = {
Hans de Goede49809d62009-06-07 12:10:39 -03002918 { R51x_SYS_SNAP, 0x02 }, /* Reset */
2919 { R51x_SYS_SNAP, 0x01 }, /* Enable */
2920 { 0x31, 0x0f },
2921 { 0x5d, 0x03 },
2922 { 0x24, 0x9f },
2923 { 0x25, 0x90 },
2924 { 0x20, 0x60 },
2925 { 0x51, 0x02 },
2926 { 0x71, 0x19 },
2927 { 0x40, 0xff },
2928 { 0x41, 0x42 },
2929 { 0x46, 0x00 },
2930 { 0x33, 0x04 },
2931 { 0x21, 0x19 },
2932 { 0x3f, 0x10 },
2933 { 0x2f, 0x80 },
2934 };
2935
2936 /* First 5 bits of custom ID reg are a revision ID on OV518 */
2937 PDEBUG(D_PROBE, "Device revision %d",
2938 0x1F & reg_r(sd, R51x_SYS_CUST_ID));
2939
2940 rc = write_regvals(sd, init_518, ARRAY_SIZE(init_518));
2941 if (rc < 0)
2942 return rc;
2943
2944 /* Set LED GPIO pin to output mode */
2945 rc = reg_w_mask(sd, R518_GPIO_CTL, 0x00, 0x02);
2946 if (rc < 0)
2947 return rc;
2948
2949 switch (sd->bridge) {
2950 case BRIDGE_OV518:
2951 rc = write_regvals(sd, norm_518, ARRAY_SIZE(norm_518));
2952 if (rc < 0)
2953 return rc;
2954 break;
2955 case BRIDGE_OV518PLUS:
2956 rc = write_regvals(sd, norm_518_p, ARRAY_SIZE(norm_518_p));
2957 if (rc < 0)
2958 return rc;
2959 break;
2960 }
2961
Hans de Goede1876bb92009-06-14 06:45:50 -03002962 rc = ov51x_upload_quan_tables(sd);
Hans de Goede49809d62009-06-07 12:10:39 -03002963 if (rc < 0) {
2964 PDEBUG(D_ERR, "Error uploading quantization tables");
2965 return rc;
2966 }
2967
2968 rc = reg_w(sd, 0x2f, 0x80);
2969 if (rc < 0)
2970 return rc;
2971
2972 return 0;
2973}
2974
2975static int ov519_configure(struct sd *sd)
2976{
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03002977 static const struct ov_regvals init_519[] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002978 { 0x5a, 0x6d }, /* EnableSystem */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002979 { 0x53, 0x9b },
2980 { 0x54, 0xff }, /* set bit2 to enable jpeg */
2981 { 0x5d, 0x03 },
2982 { 0x49, 0x01 },
2983 { 0x48, 0x00 },
2984 /* Set LED pin to output mode. Bit 4 must be cleared or sensor
2985 * detection will fail. This deserves further investigation. */
2986 { OV519_GPIO_IO_CTRL0, 0xee },
2987 { 0x51, 0x0f }, /* SetUsbInit */
2988 { 0x51, 0x00 },
2989 { 0x22, 0x00 },
2990 /* windows reads 0x55 at this point*/
2991 };
2992
Hans de Goede49809d62009-06-07 12:10:39 -03002993 return write_regvals(sd, init_519, ARRAY_SIZE(init_519));
2994}
2995
Hans de Goedeb46aaa02009-10-12 10:07:57 -03002996static int ovfx2_configure(struct sd *sd)
2997{
2998 static const struct ov_regvals init_fx2[] = {
2999 { 0x00, 0x60 },
3000 { 0x02, 0x01 },
3001 { 0x0f, 0x1d },
3002 { 0xe9, 0x82 },
3003 { 0xea, 0xc7 },
3004 { 0xeb, 0x10 },
3005 { 0xec, 0xf6 },
3006 };
3007
3008 sd->stopped = 1;
3009
3010 return write_regvals(sd, init_fx2, ARRAY_SIZE(init_fx2));
3011}
3012
Hans de Goede49809d62009-06-07 12:10:39 -03003013/* this function is called at probe time */
3014static int sd_config(struct gspca_dev *gspca_dev,
3015 const struct usb_device_id *id)
3016{
3017 struct sd *sd = (struct sd *) gspca_dev;
Hans de Goedeb46aaa02009-10-12 10:07:57 -03003018 struct cam *cam = &gspca_dev->cam;
Hans de Goede49809d62009-06-07 12:10:39 -03003019 int ret = 0;
3020
Hans de Goede9e4d8252009-06-14 06:25:06 -03003021 sd->bridge = id->driver_info & BRIDGE_MASK;
3022 sd->invert_led = id->driver_info & BRIDGE_INVERT_LED;
Hans de Goede49809d62009-06-07 12:10:39 -03003023
3024 switch (sd->bridge) {
Hans de Goede1876bb92009-06-14 06:45:50 -03003025 case BRIDGE_OV511:
3026 case BRIDGE_OV511PLUS:
3027 ret = ov511_configure(gspca_dev);
3028 break;
Hans de Goede49809d62009-06-07 12:10:39 -03003029 case BRIDGE_OV518:
3030 case BRIDGE_OV518PLUS:
3031 ret = ov518_configure(gspca_dev);
3032 break;
3033 case BRIDGE_OV519:
3034 ret = ov519_configure(sd);
3035 break;
Hans de Goedeb46aaa02009-10-12 10:07:57 -03003036 case BRIDGE_OVFX2:
3037 ret = ovfx2_configure(sd);
3038 cam->bulk_size = OVFX2_BULK_SIZE;
3039 cam->bulk_nurbs = MAX_NURBS;
3040 cam->bulk = 1;
3041 break;
Hans de Goedea511ba92009-10-16 07:13:07 -03003042 case BRIDGE_W9968CF:
3043 ret = w9968cf_configure(sd);
3044 cam->reverse_alts = 1;
3045 break;
Hans de Goede49809d62009-06-07 12:10:39 -03003046 }
3047
3048 if (ret)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003049 goto error;
Hans de Goede49809d62009-06-07 12:10:39 -03003050
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003051 ov51x_led_control(sd, 0); /* turn LED off */
3052
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003053 /* The OV519 must be more aggressive about sensor detection since
3054 * I2C write will never fail if the sensor is not present. We have
3055 * to try to initialize the sensor to detect its presence */
Hans de Goede229bb7d2009-10-11 07:41:46 -03003056
3057 /* Test for 76xx */
3058 if (init_ov_sensor(sd, OV7xx0_SID) >= 0) {
Jean-Francois Moine4202f712008-09-03 17:12:15 -03003059 if (ov7xx0_configure(sd) < 0) {
3060 PDEBUG(D_ERR, "Failed to configure OV7xx0");
3061 goto error;
3062 }
Hans de Goede229bb7d2009-10-11 07:41:46 -03003063 /* Test for 6xx0 */
3064 } else if (init_ov_sensor(sd, OV6xx0_SID) >= 0) {
3065 if (ov6xx0_configure(sd) < 0) {
3066 PDEBUG(D_ERR, "Failed to configure OV6xx0");
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003067 goto error;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003068 }
Hans de Goede229bb7d2009-10-11 07:41:46 -03003069 /* Test for 8xx0 */
3070 } else if (init_ov_sensor(sd, OV8xx0_SID) >= 0) {
3071 if (ov8xx0_configure(sd) < 0) {
3072 PDEBUG(D_ERR, "Failed to configure OV8xx0");
3073 goto error;
3074 }
Hans de Goede635118d2009-10-11 09:49:03 -03003075 /* Test for 3xxx / 2xxx */
3076 } else if (init_ov_sensor(sd, OV_HIRES_SID) >= 0) {
3077 if (ov_hires_configure(sd) < 0) {
3078 PDEBUG(D_ERR, "Failed to configure high res OV");
3079 goto error;
3080 }
Hans de Goede229bb7d2009-10-11 07:41:46 -03003081 } else {
Jean-François Moine0b656322010-09-13 05:19:58 -03003082 err("Can't determine sensor slave IDs");
Hans de Goede229bb7d2009-10-11 07:41:46 -03003083 goto error;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003084 }
3085
Hans de Goede49809d62009-06-07 12:10:39 -03003086 switch (sd->bridge) {
Hans de Goede1876bb92009-06-14 06:45:50 -03003087 case BRIDGE_OV511:
3088 case BRIDGE_OV511PLUS:
3089 if (!sd->sif) {
3090 cam->cam_mode = ov511_vga_mode;
3091 cam->nmodes = ARRAY_SIZE(ov511_vga_mode);
3092 } else {
3093 cam->cam_mode = ov511_sif_mode;
3094 cam->nmodes = ARRAY_SIZE(ov511_sif_mode);
3095 }
3096 break;
Hans de Goede49809d62009-06-07 12:10:39 -03003097 case BRIDGE_OV518:
3098 case BRIDGE_OV518PLUS:
3099 if (!sd->sif) {
3100 cam->cam_mode = ov518_vga_mode;
3101 cam->nmodes = ARRAY_SIZE(ov518_vga_mode);
3102 } else {
3103 cam->cam_mode = ov518_sif_mode;
3104 cam->nmodes = ARRAY_SIZE(ov518_sif_mode);
3105 }
3106 break;
3107 case BRIDGE_OV519:
3108 if (!sd->sif) {
3109 cam->cam_mode = ov519_vga_mode;
3110 cam->nmodes = ARRAY_SIZE(ov519_vga_mode);
3111 } else {
3112 cam->cam_mode = ov519_sif_mode;
3113 cam->nmodes = ARRAY_SIZE(ov519_sif_mode);
3114 }
3115 break;
Hans de Goede635118d2009-10-11 09:49:03 -03003116 case BRIDGE_OVFX2:
3117 if (sd->sensor == SEN_OV2610) {
3118 cam->cam_mode = ovfx2_ov2610_mode;
3119 cam->nmodes = ARRAY_SIZE(ovfx2_ov2610_mode);
3120 } else if (sd->sensor == SEN_OV3610) {
3121 cam->cam_mode = ovfx2_ov3610_mode;
3122 cam->nmodes = ARRAY_SIZE(ovfx2_ov3610_mode);
3123 } else if (!sd->sif) {
3124 cam->cam_mode = ov519_vga_mode;
3125 cam->nmodes = ARRAY_SIZE(ov519_vga_mode);
3126 } else {
3127 cam->cam_mode = ov519_sif_mode;
3128 cam->nmodes = ARRAY_SIZE(ov519_sif_mode);
3129 }
3130 break;
Hans de Goedea511ba92009-10-16 07:13:07 -03003131 case BRIDGE_W9968CF:
3132 cam->cam_mode = w9968cf_vga_mode;
3133 cam->nmodes = ARRAY_SIZE(w9968cf_vga_mode);
Hans de Goede79b35902009-10-19 06:08:01 -03003134 if (sd->sif)
3135 cam->nmodes--;
Hans de Goedea511ba92009-10-16 07:13:07 -03003136
3137 /* w9968cf needs initialisation once the sensor is known */
3138 if (w9968cf_init(sd) < 0)
3139 goto error;
3140 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003141 }
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003142 sd->brightness = BRIGHTNESS_DEF;
Hans de Goedef5cee952009-06-14 06:32:52 -03003143 if (sd->sensor == SEN_OV6630 || sd->sensor == SEN_OV66308AF)
3144 sd->contrast = 200; /* The default is too low for the ov6630 */
3145 else
3146 sd->contrast = CONTRAST_DEF;
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003147 sd->colors = COLOR_DEF;
Jean-Francois Moine0cd67592008-07-29 05:25:28 -03003148 sd->hflip = HFLIP_DEF;
3149 sd->vflip = VFLIP_DEF;
Hans de Goede02ab18b2009-06-14 04:32:04 -03003150 sd->autobrightness = AUTOBRIGHT_DEF;
3151 if (sd->sensor == SEN_OV7670) {
3152 sd->freq = OV7670_FREQ_DEF;
Hans de Goede456c9ac2010-06-01 06:39:14 -03003153 gspca_dev->ctrl_dis = (1 << FREQ_IDX) | (1 << COLOR_IDX);
Hans de Goede02ab18b2009-06-14 04:32:04 -03003154 } else {
3155 sd->freq = FREQ_DEF;
3156 gspca_dev->ctrl_dis = (1 << HFLIP_IDX) | (1 << VFLIP_IDX) |
3157 (1 << OV7670_FREQ_IDX);
3158 }
Hans de Goede79b35902009-10-19 06:08:01 -03003159 sd->quality = QUALITY_DEF;
Hans de Goede035d3a32010-01-09 08:14:43 -03003160 if (sd->sensor == SEN_OV7640 ||
Hans de Goeded02134d2010-01-09 19:22:34 -03003161 sd->sensor == SEN_OV7648)
3162 gspca_dev->ctrl_dis |= (1 << AUTOBRIGHT_IDX) |
3163 (1 << CONTRAST_IDX);
3164 if (sd->sensor == SEN_OV7670)
Hans de Goede02ab18b2009-06-14 04:32:04 -03003165 gspca_dev->ctrl_dis |= 1 << AUTOBRIGHT_IDX;
3166 /* OV8610 Frequency filter control should work but needs testing */
3167 if (sd->sensor == SEN_OV8610)
3168 gspca_dev->ctrl_dis |= 1 << FREQ_IDX;
Hans de Goede635118d2009-10-11 09:49:03 -03003169 /* No controls for the OV2610/OV3610 */
3170 if (sd->sensor == SEN_OV2610 || sd->sensor == SEN_OV3610)
3171 gspca_dev->ctrl_dis |= 0xFF;
Hans de Goede02ab18b2009-06-14 04:32:04 -03003172
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003173 return 0;
3174error:
3175 PDEBUG(D_ERR, "OV519 Config failed");
3176 return -EBUSY;
3177}
3178
Jean-Francois Moine012d6b02008-09-03 17:12:16 -03003179/* this function is called at probe and resume time */
3180static int sd_init(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003181{
Jean-Francois Moine4202f712008-09-03 17:12:15 -03003182 struct sd *sd = (struct sd *) gspca_dev;
3183
3184 /* initialize the sensor */
3185 switch (sd->sensor) {
Hans de Goede635118d2009-10-11 09:49:03 -03003186 case SEN_OV2610:
3187 if (write_i2c_regvals(sd, norm_2610, ARRAY_SIZE(norm_2610)))
3188 return -EIO;
3189 /* Enable autogain, autoexpo, awb, bandfilter */
3190 if (i2c_w_mask(sd, 0x13, 0x27, 0x27) < 0)
3191 return -EIO;
3192 break;
3193 case SEN_OV3610:
3194 if (write_i2c_regvals(sd, norm_3620b, ARRAY_SIZE(norm_3620b)))
3195 return -EIO;
3196 /* Enable autogain, autoexpo, awb, bandfilter */
3197 if (i2c_w_mask(sd, 0x13, 0x27, 0x27) < 0)
3198 return -EIO;
3199 break;
Jean-Francois Moine4202f712008-09-03 17:12:15 -03003200 case SEN_OV6620:
3201 if (write_i2c_regvals(sd, norm_6x20, ARRAY_SIZE(norm_6x20)))
3202 return -EIO;
3203 break;
3204 case SEN_OV6630:
Hans de Goede7d971372009-06-14 05:28:17 -03003205 case SEN_OV66308AF:
Jean-Francois Moine4202f712008-09-03 17:12:15 -03003206 if (write_i2c_regvals(sd, norm_6x30, ARRAY_SIZE(norm_6x30)))
3207 return -EIO;
3208 break;
3209 default:
3210/* case SEN_OV7610: */
3211/* case SEN_OV76BE: */
3212 if (write_i2c_regvals(sd, norm_7610, ARRAY_SIZE(norm_7610)))
3213 return -EIO;
Hans de Goedeae49c402009-06-14 19:15:07 -03003214 if (i2c_w_mask(sd, 0x0e, 0x00, 0x40))
3215 return -EIO;
Jean-Francois Moine4202f712008-09-03 17:12:15 -03003216 break;
3217 case SEN_OV7620:
Hans de Goede859cc472010-01-07 15:42:35 -03003218 case SEN_OV7620AE:
Jean-Francois Moine4202f712008-09-03 17:12:15 -03003219 if (write_i2c_regvals(sd, norm_7620, ARRAY_SIZE(norm_7620)))
3220 return -EIO;
3221 break;
3222 case SEN_OV7640:
Hans de Goede035d3a32010-01-09 08:14:43 -03003223 case SEN_OV7648:
Jean-Francois Moine4202f712008-09-03 17:12:15 -03003224 if (write_i2c_regvals(sd, norm_7640, ARRAY_SIZE(norm_7640)))
3225 return -EIO;
3226 break;
3227 case SEN_OV7670:
3228 if (write_i2c_regvals(sd, norm_7670, ARRAY_SIZE(norm_7670)))
3229 return -EIO;
3230 break;
3231 case SEN_OV8610:
3232 if (write_i2c_regvals(sd, norm_8610, ARRAY_SIZE(norm_8610)))
3233 return -EIO;
3234 break;
3235 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003236 return 0;
3237}
3238
Hans de Goede1876bb92009-06-14 06:45:50 -03003239/* Set up the OV511/OV511+ with the given image parameters.
3240 *
3241 * Do not put any sensor-specific code in here (including I2C I/O functions)
3242 */
3243static int ov511_mode_init_regs(struct sd *sd)
3244{
3245 int hsegs, vsegs, packet_size, fps, needed;
3246 int interlaced = 0;
3247 struct usb_host_interface *alt;
3248 struct usb_interface *intf;
3249
3250 intf = usb_ifnum_to_if(sd->gspca_dev.dev, sd->gspca_dev.iface);
3251 alt = usb_altnum_to_altsetting(intf, sd->gspca_dev.alt);
3252 if (!alt) {
Jean-François Moine0b656322010-09-13 05:19:58 -03003253 err("Couldn't get altsetting");
Hans de Goede1876bb92009-06-14 06:45:50 -03003254 return -EIO;
3255 }
3256
3257 packet_size = le16_to_cpu(alt->endpoint[0].desc.wMaxPacketSize);
3258 reg_w(sd, R51x_FIFO_PSIZE, packet_size >> 5);
3259
3260 reg_w(sd, R511_CAM_UV_EN, 0x01);
3261 reg_w(sd, R511_SNAP_UV_EN, 0x01);
3262 reg_w(sd, R511_SNAP_OPTS, 0x03);
3263
3264 /* Here I'm assuming that snapshot size == image size.
3265 * I hope that's always true. --claudio
3266 */
3267 hsegs = (sd->gspca_dev.width >> 3) - 1;
3268 vsegs = (sd->gspca_dev.height >> 3) - 1;
3269
3270 reg_w(sd, R511_CAM_PXCNT, hsegs);
3271 reg_w(sd, R511_CAM_LNCNT, vsegs);
3272 reg_w(sd, R511_CAM_PXDIV, 0x00);
3273 reg_w(sd, R511_CAM_LNDIV, 0x00);
3274
3275 /* YUV420, low pass filter on */
3276 reg_w(sd, R511_CAM_OPTS, 0x03);
3277
3278 /* Snapshot additions */
3279 reg_w(sd, R511_SNAP_PXCNT, hsegs);
3280 reg_w(sd, R511_SNAP_LNCNT, vsegs);
3281 reg_w(sd, R511_SNAP_PXDIV, 0x00);
3282 reg_w(sd, R511_SNAP_LNDIV, 0x00);
3283
3284 /******** Set the framerate ********/
3285 if (frame_rate > 0)
3286 sd->frame_rate = frame_rate;
3287
3288 switch (sd->sensor) {
3289 case SEN_OV6620:
3290 /* No framerate control, doesn't like higher rates yet */
3291 sd->clockdiv = 3;
3292 break;
3293
3294 /* Note once the FIXME's in mode_init_ov_sensor_regs() are fixed
3295 for more sensors we need to do this for them too */
3296 case SEN_OV7620:
Hans de Goede859cc472010-01-07 15:42:35 -03003297 case SEN_OV7620AE:
Hans de Goede1876bb92009-06-14 06:45:50 -03003298 case SEN_OV7640:
Hans de Goede035d3a32010-01-09 08:14:43 -03003299 case SEN_OV7648:
Hans de Goedeb282d872009-06-14 19:10:40 -03003300 case SEN_OV76BE:
Hans de Goede1876bb92009-06-14 06:45:50 -03003301 if (sd->gspca_dev.width == 320)
3302 interlaced = 1;
3303 /* Fall through */
3304 case SEN_OV6630:
Hans de Goede1876bb92009-06-14 06:45:50 -03003305 case SEN_OV7610:
3306 case SEN_OV7670:
3307 switch (sd->frame_rate) {
3308 case 30:
3309 case 25:
3310 /* Not enough bandwidth to do 640x480 @ 30 fps */
3311 if (sd->gspca_dev.width != 640) {
3312 sd->clockdiv = 0;
3313 break;
3314 }
3315 /* Fall through for 640x480 case */
3316 default:
3317/* case 20: */
3318/* case 15: */
3319 sd->clockdiv = 1;
3320 break;
3321 case 10:
3322 sd->clockdiv = 2;
3323 break;
3324 case 5:
3325 sd->clockdiv = 5;
3326 break;
3327 }
3328 if (interlaced) {
3329 sd->clockdiv = (sd->clockdiv + 1) * 2 - 1;
3330 /* Higher then 10 does not work */
3331 if (sd->clockdiv > 10)
3332 sd->clockdiv = 10;
3333 }
3334 break;
3335
3336 case SEN_OV8610:
3337 /* No framerate control ?? */
3338 sd->clockdiv = 0;
3339 break;
3340 }
3341
3342 /* Check if we have enough bandwidth to disable compression */
3343 fps = (interlaced ? 60 : 30) / (sd->clockdiv + 1) + 1;
3344 needed = fps * sd->gspca_dev.width * sd->gspca_dev.height * 3 / 2;
3345 /* 1400 is a conservative estimate of the max nr of isoc packets/sec */
3346 if (needed > 1400 * packet_size) {
3347 /* Enable Y and UV quantization and compression */
3348 reg_w(sd, R511_COMP_EN, 0x07);
3349 reg_w(sd, R511_COMP_LUT_EN, 0x03);
3350 } else {
3351 reg_w(sd, R511_COMP_EN, 0x06);
3352 reg_w(sd, R511_COMP_LUT_EN, 0x00);
3353 }
3354
3355 reg_w(sd, R51x_SYS_RESET, OV511_RESET_OMNICE);
3356 reg_w(sd, R51x_SYS_RESET, 0);
3357
3358 return 0;
3359}
3360
Hans de Goede49809d62009-06-07 12:10:39 -03003361/* Sets up the OV518/OV518+ with the given image parameters
3362 *
3363 * OV518 needs a completely different approach, until we can figure out what
3364 * the individual registers do. Also, only 15 FPS is supported now.
3365 *
3366 * Do not put any sensor-specific code in here (including I2C I/O functions)
3367 */
3368static int ov518_mode_init_regs(struct sd *sd)
3369{
Hans de Goedeb282d872009-06-14 19:10:40 -03003370 int hsegs, vsegs, packet_size;
3371 struct usb_host_interface *alt;
3372 struct usb_interface *intf;
3373
3374 intf = usb_ifnum_to_if(sd->gspca_dev.dev, sd->gspca_dev.iface);
3375 alt = usb_altnum_to_altsetting(intf, sd->gspca_dev.alt);
3376 if (!alt) {
Jean-François Moine0b656322010-09-13 05:19:58 -03003377 err("Couldn't get altsetting");
Hans de Goedeb282d872009-06-14 19:10:40 -03003378 return -EIO;
3379 }
3380
3381 packet_size = le16_to_cpu(alt->endpoint[0].desc.wMaxPacketSize);
3382 ov518_reg_w32(sd, R51x_FIFO_PSIZE, packet_size & ~7, 2);
Hans de Goede49809d62009-06-07 12:10:39 -03003383
3384 /******** Set the mode ********/
3385
3386 reg_w(sd, 0x2b, 0);
3387 reg_w(sd, 0x2c, 0);
3388 reg_w(sd, 0x2d, 0);
3389 reg_w(sd, 0x2e, 0);
3390 reg_w(sd, 0x3b, 0);
3391 reg_w(sd, 0x3c, 0);
3392 reg_w(sd, 0x3d, 0);
3393 reg_w(sd, 0x3e, 0);
3394
3395 if (sd->bridge == BRIDGE_OV518) {
3396 /* Set 8-bit (YVYU) input format */
3397 reg_w_mask(sd, 0x20, 0x08, 0x08);
3398
3399 /* Set 12-bit (4:2:0) output format */
3400 reg_w_mask(sd, 0x28, 0x80, 0xf0);
3401 reg_w_mask(sd, 0x38, 0x80, 0xf0);
3402 } else {
3403 reg_w(sd, 0x28, 0x80);
3404 reg_w(sd, 0x38, 0x80);
3405 }
3406
3407 hsegs = sd->gspca_dev.width / 16;
3408 vsegs = sd->gspca_dev.height / 4;
3409
3410 reg_w(sd, 0x29, hsegs);
3411 reg_w(sd, 0x2a, vsegs);
3412
3413 reg_w(sd, 0x39, hsegs);
3414 reg_w(sd, 0x3a, vsegs);
3415
3416 /* Windows driver does this here; who knows why */
3417 reg_w(sd, 0x2f, 0x80);
3418
Hans de Goedeb282d872009-06-14 19:10:40 -03003419 /******** Set the framerate ********/
3420 sd->clockdiv = 1;
Hans de Goede49809d62009-06-07 12:10:39 -03003421
3422 /* Mode independent, but framerate dependent, regs */
Hans de Goedeb282d872009-06-14 19:10:40 -03003423 /* 0x51: Clock divider; Only works on some cams which use 2 crystals */
3424 reg_w(sd, 0x51, 0x04);
Hans de Goede49809d62009-06-07 12:10:39 -03003425 reg_w(sd, 0x22, 0x18);
3426 reg_w(sd, 0x23, 0xff);
3427
Hans de Goedeb282d872009-06-14 19:10:40 -03003428 if (sd->bridge == BRIDGE_OV518PLUS) {
3429 switch (sd->sensor) {
Hans de Goede859cc472010-01-07 15:42:35 -03003430 case SEN_OV7620AE:
Hans de Goedeb282d872009-06-14 19:10:40 -03003431 if (sd->gspca_dev.width == 320) {
3432 reg_w(sd, 0x20, 0x00);
3433 reg_w(sd, 0x21, 0x19);
3434 } else {
3435 reg_w(sd, 0x20, 0x60);
3436 reg_w(sd, 0x21, 0x1f);
3437 }
3438 break;
Hans de Goede859cc472010-01-07 15:42:35 -03003439 case SEN_OV7620:
3440 reg_w(sd, 0x20, 0x00);
3441 reg_w(sd, 0x21, 0x19);
3442 break;
Hans de Goedeb282d872009-06-14 19:10:40 -03003443 default:
3444 reg_w(sd, 0x21, 0x19);
3445 }
3446 } else
Hans de Goede49809d62009-06-07 12:10:39 -03003447 reg_w(sd, 0x71, 0x17); /* Compression-related? */
3448
3449 /* FIXME: Sensor-specific */
3450 /* Bit 5 is what matters here. Of course, it is "reserved" */
3451 i2c_w(sd, 0x54, 0x23);
3452
3453 reg_w(sd, 0x2f, 0x80);
3454
3455 if (sd->bridge == BRIDGE_OV518PLUS) {
3456 reg_w(sd, 0x24, 0x94);
3457 reg_w(sd, 0x25, 0x90);
3458 ov518_reg_w32(sd, 0xc4, 400, 2); /* 190h */
3459 ov518_reg_w32(sd, 0xc6, 540, 2); /* 21ch */
3460 ov518_reg_w32(sd, 0xc7, 540, 2); /* 21ch */
3461 ov518_reg_w32(sd, 0xc8, 108, 2); /* 6ch */
3462 ov518_reg_w32(sd, 0xca, 131098, 3); /* 2001ah */
3463 ov518_reg_w32(sd, 0xcb, 532, 2); /* 214h */
3464 ov518_reg_w32(sd, 0xcc, 2400, 2); /* 960h */
3465 ov518_reg_w32(sd, 0xcd, 32, 2); /* 20h */
3466 ov518_reg_w32(sd, 0xce, 608, 2); /* 260h */
3467 } else {
3468 reg_w(sd, 0x24, 0x9f);
3469 reg_w(sd, 0x25, 0x90);
3470 ov518_reg_w32(sd, 0xc4, 400, 2); /* 190h */
3471 ov518_reg_w32(sd, 0xc6, 381, 2); /* 17dh */
3472 ov518_reg_w32(sd, 0xc7, 381, 2); /* 17dh */
3473 ov518_reg_w32(sd, 0xc8, 128, 2); /* 80h */
3474 ov518_reg_w32(sd, 0xca, 183331, 3); /* 2cc23h */
3475 ov518_reg_w32(sd, 0xcb, 746, 2); /* 2eah */
3476 ov518_reg_w32(sd, 0xcc, 1750, 2); /* 6d6h */
3477 ov518_reg_w32(sd, 0xcd, 45, 2); /* 2dh */
3478 ov518_reg_w32(sd, 0xce, 851, 2); /* 353h */
3479 }
3480
3481 reg_w(sd, 0x2f, 0x80);
3482
3483 return 0;
3484}
3485
3486
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003487/* Sets up the OV519 with the given image parameters
3488 *
3489 * OV519 needs a completely different approach, until we can figure out what
3490 * the individual registers do.
3491 *
3492 * Do not put any sensor-specific code in here (including I2C I/O functions)
3493 */
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003494static int ov519_mode_init_regs(struct sd *sd)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003495{
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03003496 static const struct ov_regvals mode_init_519_ov7670[] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003497 { 0x5d, 0x03 }, /* Turn off suspend mode */
3498 { 0x53, 0x9f }, /* was 9b in 1.65-1.08 */
3499 { 0x54, 0x0f }, /* bit2 (jpeg enable) */
3500 { 0xa2, 0x20 }, /* a2-a5 are undocumented */
3501 { 0xa3, 0x18 },
3502 { 0xa4, 0x04 },
3503 { 0xa5, 0x28 },
3504 { 0x37, 0x00 }, /* SetUsbInit */
3505 { 0x55, 0x02 }, /* 4.096 Mhz audio clock */
3506 /* Enable both fields, YUV Input, disable defect comp (why?) */
3507 { 0x20, 0x0c },
3508 { 0x21, 0x38 },
3509 { 0x22, 0x1d },
3510 { 0x17, 0x50 }, /* undocumented */
3511 { 0x37, 0x00 }, /* undocumented */
3512 { 0x40, 0xff }, /* I2C timeout counter */
3513 { 0x46, 0x00 }, /* I2C clock prescaler */
3514 { 0x59, 0x04 }, /* new from windrv 090403 */
3515 { 0xff, 0x00 }, /* undocumented */
3516 /* windows reads 0x55 at this point, why? */
3517 };
3518
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03003519 static const struct ov_regvals mode_init_519[] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003520 { 0x5d, 0x03 }, /* Turn off suspend mode */
3521 { 0x53, 0x9f }, /* was 9b in 1.65-1.08 */
3522 { 0x54, 0x0f }, /* bit2 (jpeg enable) */
3523 { 0xa2, 0x20 }, /* a2-a5 are undocumented */
3524 { 0xa3, 0x18 },
3525 { 0xa4, 0x04 },
3526 { 0xa5, 0x28 },
3527 { 0x37, 0x00 }, /* SetUsbInit */
3528 { 0x55, 0x02 }, /* 4.096 Mhz audio clock */
3529 /* Enable both fields, YUV Input, disable defect comp (why?) */
3530 { 0x22, 0x1d },
3531 { 0x17, 0x50 }, /* undocumented */
3532 { 0x37, 0x00 }, /* undocumented */
3533 { 0x40, 0xff }, /* I2C timeout counter */
3534 { 0x46, 0x00 }, /* I2C clock prescaler */
3535 { 0x59, 0x04 }, /* new from windrv 090403 */
3536 { 0xff, 0x00 }, /* undocumented */
3537 /* windows reads 0x55 at this point, why? */
3538 };
3539
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003540 /******** Set the mode ********/
3541 if (sd->sensor != SEN_OV7670) {
3542 if (write_regvals(sd, mode_init_519,
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03003543 ARRAY_SIZE(mode_init_519)))
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003544 return -EIO;
Hans de Goede035d3a32010-01-09 08:14:43 -03003545 if (sd->sensor == SEN_OV7640 ||
3546 sd->sensor == SEN_OV7648) {
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003547 /* Select 8-bit input mode */
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03003548 reg_w_mask(sd, OV519_R20_DFR, 0x10, 0x10);
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003549 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003550 } else {
3551 if (write_regvals(sd, mode_init_519_ov7670,
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03003552 ARRAY_SIZE(mode_init_519_ov7670)))
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003553 return -EIO;
3554 }
3555
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03003556 reg_w(sd, OV519_R10_H_SIZE, sd->gspca_dev.width >> 4);
3557 reg_w(sd, OV519_R11_V_SIZE, sd->gspca_dev.height >> 3);
Hans de Goede80142ef2009-06-14 06:26:49 -03003558 if (sd->sensor == SEN_OV7670 &&
3559 sd->gspca_dev.cam.cam_mode[sd->gspca_dev.curr_mode].priv)
3560 reg_w(sd, OV519_R12_X_OFFSETL, 0x04);
Hans de Goede035d3a32010-01-09 08:14:43 -03003561 else if (sd->sensor == SEN_OV7648 &&
3562 sd->gspca_dev.cam.cam_mode[sd->gspca_dev.curr_mode].priv)
3563 reg_w(sd, OV519_R12_X_OFFSETL, 0x01);
Hans de Goede80142ef2009-06-14 06:26:49 -03003564 else
3565 reg_w(sd, OV519_R12_X_OFFSETL, 0x00);
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03003566 reg_w(sd, OV519_R13_X_OFFSETH, 0x00);
3567 reg_w(sd, OV519_R14_Y_OFFSETL, 0x00);
3568 reg_w(sd, OV519_R15_Y_OFFSETH, 0x00);
3569 reg_w(sd, OV519_R16_DIVIDER, 0x00);
3570 reg_w(sd, OV519_R25_FORMAT, 0x03); /* YUV422 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003571 reg_w(sd, 0x26, 0x00); /* Undocumented */
3572
3573 /******** Set the framerate ********/
3574 if (frame_rate > 0)
3575 sd->frame_rate = frame_rate;
3576
3577/* FIXME: These are only valid at the max resolution. */
3578 sd->clockdiv = 0;
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003579 switch (sd->sensor) {
3580 case SEN_OV7640:
Hans de Goede035d3a32010-01-09 08:14:43 -03003581 case SEN_OV7648:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003582 switch (sd->frame_rate) {
Jean-Francois Moine53e74512008-11-08 06:10:19 -03003583 default:
3584/* case 30: */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003585 reg_w(sd, 0xa4, 0x0c);
3586 reg_w(sd, 0x23, 0xff);
3587 break;
3588 case 25:
3589 reg_w(sd, 0xa4, 0x0c);
3590 reg_w(sd, 0x23, 0x1f);
3591 break;
3592 case 20:
3593 reg_w(sd, 0xa4, 0x0c);
3594 reg_w(sd, 0x23, 0x1b);
3595 break;
Jean-Francois Moine53e74512008-11-08 06:10:19 -03003596 case 15:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003597 reg_w(sd, 0xa4, 0x04);
3598 reg_w(sd, 0x23, 0xff);
3599 sd->clockdiv = 1;
3600 break;
3601 case 10:
3602 reg_w(sd, 0xa4, 0x04);
3603 reg_w(sd, 0x23, 0x1f);
3604 sd->clockdiv = 1;
3605 break;
3606 case 5:
3607 reg_w(sd, 0xa4, 0x04);
3608 reg_w(sd, 0x23, 0x1b);
3609 sd->clockdiv = 1;
3610 break;
3611 }
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003612 break;
3613 case SEN_OV8610:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003614 switch (sd->frame_rate) {
3615 default: /* 15 fps */
3616/* case 15: */
3617 reg_w(sd, 0xa4, 0x06);
3618 reg_w(sd, 0x23, 0xff);
3619 break;
3620 case 10:
3621 reg_w(sd, 0xa4, 0x06);
3622 reg_w(sd, 0x23, 0x1f);
3623 break;
3624 case 5:
3625 reg_w(sd, 0xa4, 0x06);
3626 reg_w(sd, 0x23, 0x1b);
3627 break;
3628 }
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003629 break;
3630 case SEN_OV7670: /* guesses, based on 7640 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003631 PDEBUG(D_STREAM, "Setting framerate to %d fps",
3632 (sd->frame_rate == 0) ? 15 : sd->frame_rate);
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003633 reg_w(sd, 0xa4, 0x10);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003634 switch (sd->frame_rate) {
3635 case 30:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003636 reg_w(sd, 0x23, 0xff);
3637 break;
3638 case 20:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003639 reg_w(sd, 0x23, 0x1b);
3640 break;
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003641 default:
3642/* case 15: */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003643 reg_w(sd, 0x23, 0xff);
3644 sd->clockdiv = 1;
3645 break;
3646 }
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003647 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003648 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003649 return 0;
3650}
3651
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003652static int mode_init_ov_sensor_regs(struct sd *sd)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003653{
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003654 struct gspca_dev *gspca_dev;
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003655 int qvga, xstart, xend, ystart, yend;
3656 __u8 v;
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003657
3658 gspca_dev = &sd->gspca_dev;
Hans de Goede124cc9c2009-06-14 05:48:00 -03003659 qvga = gspca_dev->cam.cam_mode[(int) gspca_dev->curr_mode].priv & 1;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003660
3661 /******** Mode (VGA/QVGA) and sensor specific regs ********/
3662 switch (sd->sensor) {
Hans de Goede635118d2009-10-11 09:49:03 -03003663 case SEN_OV2610:
3664 i2c_w_mask(sd, 0x14, qvga ? 0x20 : 0x00, 0x20);
3665 i2c_w_mask(sd, 0x28, qvga ? 0x00 : 0x20, 0x20);
3666 i2c_w(sd, 0x24, qvga ? 0x20 : 0x3a);
3667 i2c_w(sd, 0x25, qvga ? 0x30 : 0x60);
3668 i2c_w_mask(sd, 0x2d, qvga ? 0x40 : 0x00, 0x40);
3669 i2c_w_mask(sd, 0x67, qvga ? 0xf0 : 0x90, 0xf0);
3670 i2c_w_mask(sd, 0x74, qvga ? 0x20 : 0x00, 0x20);
3671 return 0;
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003672 case SEN_OV3610:
Hans de Goede635118d2009-10-11 09:49:03 -03003673 if (qvga) {
3674 xstart = (1040 - gspca_dev->width) / 2 + (0x1f << 4);
Hans de Goedeb46aaa02009-10-12 10:07:57 -03003675 ystart = (776 - gspca_dev->height) / 2;
Hans de Goede635118d2009-10-11 09:49:03 -03003676 } else {
Hans de Goedeb46aaa02009-10-12 10:07:57 -03003677 xstart = (2076 - gspca_dev->width) / 2 + (0x10 << 4);
Hans de Goede635118d2009-10-11 09:49:03 -03003678 ystart = (1544 - gspca_dev->height) / 2;
3679 }
3680 xend = xstart + gspca_dev->width;
3681 yend = ystart + gspca_dev->height;
3682 /* Writing to the COMH register resets the other windowing regs
3683 to their default values, so we must do this first. */
3684 i2c_w_mask(sd, 0x12, qvga ? 0x40 : 0x00, 0xf0);
3685 i2c_w_mask(sd, 0x32,
3686 (((xend >> 1) & 7) << 3) | ((xstart >> 1) & 7),
3687 0x3f);
3688 i2c_w_mask(sd, 0x03,
3689 (((yend >> 1) & 3) << 2) | ((ystart >> 1) & 3),
3690 0x0f);
3691 i2c_w(sd, 0x17, xstart >> 4);
3692 i2c_w(sd, 0x18, xend >> 4);
3693 i2c_w(sd, 0x19, ystart >> 3);
3694 i2c_w(sd, 0x1a, yend >> 3);
3695 return 0;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003696 case SEN_OV8610:
3697 /* For OV8610 qvga means qsvga */
3698 i2c_w_mask(sd, OV7610_REG_COM_C, qvga ? (1 << 5) : 0, 1 << 5);
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003699 i2c_w_mask(sd, 0x13, 0x00, 0x20); /* Select 16 bit data bus */
3700 i2c_w_mask(sd, 0x12, 0x04, 0x06); /* AWB: 1 Test pattern: 0 */
3701 i2c_w_mask(sd, 0x2d, 0x00, 0x40); /* from windrv 090403 */
3702 i2c_w_mask(sd, 0x28, 0x20, 0x20); /* progressive mode on */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003703 break;
3704 case SEN_OV7610:
3705 i2c_w_mask(sd, 0x14, qvga ? 0x20 : 0x00, 0x20);
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003706 i2c_w(sd, 0x35, qvga?0x1e:0x9e);
3707 i2c_w_mask(sd, 0x13, 0x00, 0x20); /* Select 16 bit data bus */
3708 i2c_w_mask(sd, 0x12, 0x04, 0x06); /* AWB: 1 Test pattern: 0 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003709 break;
3710 case SEN_OV7620:
Hans de Goede859cc472010-01-07 15:42:35 -03003711 case SEN_OV7620AE:
Hans de Goedeb282d872009-06-14 19:10:40 -03003712 case SEN_OV76BE:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003713 i2c_w_mask(sd, 0x14, qvga ? 0x20 : 0x00, 0x20);
3714 i2c_w_mask(sd, 0x28, qvga ? 0x00 : 0x20, 0x20);
3715 i2c_w(sd, 0x24, qvga ? 0x20 : 0x3a);
3716 i2c_w(sd, 0x25, qvga ? 0x30 : 0x60);
3717 i2c_w_mask(sd, 0x2d, qvga ? 0x40 : 0x00, 0x40);
Hans de Goedeb282d872009-06-14 19:10:40 -03003718 i2c_w_mask(sd, 0x67, qvga ? 0xb0 : 0x90, 0xf0);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003719 i2c_w_mask(sd, 0x74, qvga ? 0x20 : 0x00, 0x20);
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003720 i2c_w_mask(sd, 0x13, 0x00, 0x20); /* Select 16 bit data bus */
3721 i2c_w_mask(sd, 0x12, 0x04, 0x06); /* AWB: 1 Test pattern: 0 */
3722 if (sd->sensor == SEN_OV76BE)
3723 i2c_w(sd, 0x35, qvga ? 0x1e : 0x9e);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003724 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003725 case SEN_OV7640:
Hans de Goede035d3a32010-01-09 08:14:43 -03003726 case SEN_OV7648:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003727 i2c_w_mask(sd, 0x14, qvga ? 0x20 : 0x00, 0x20);
3728 i2c_w_mask(sd, 0x28, qvga ? 0x00 : 0x20, 0x20);
Hans de Goede8d0082f2010-01-09 19:45:44 -03003729 /* Setting this undocumented bit in qvga mode removes a very
3730 annoying vertical shaking of the image */
Hans de Goede035d3a32010-01-09 08:14:43 -03003731 i2c_w_mask(sd, 0x2d, qvga ? 0x40 : 0x00, 0x40);
Hans de Goede8d0082f2010-01-09 19:45:44 -03003732 /* Unknown */
Hans de Goede035d3a32010-01-09 08:14:43 -03003733 i2c_w_mask(sd, 0x67, qvga ? 0xf0 : 0x90, 0xf0);
Hans de Goede8d0082f2010-01-09 19:45:44 -03003734 /* Allow higher automatic gain (to allow higher framerates) */
Hans de Goede035d3a32010-01-09 08:14:43 -03003735 i2c_w_mask(sd, 0x74, qvga ? 0x20 : 0x00, 0x20);
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003736 i2c_w_mask(sd, 0x12, 0x04, 0x04); /* AWB: 1 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003737 break;
3738 case SEN_OV7670:
3739 /* set COM7_FMT_VGA or COM7_FMT_QVGA
3740 * do we need to set anything else?
3741 * HSTART etc are set in set_ov_sensor_window itself */
3742 i2c_w_mask(sd, OV7670_REG_COM7,
3743 qvga ? OV7670_COM7_FMT_QVGA : OV7670_COM7_FMT_VGA,
3744 OV7670_COM7_FMT_MASK);
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003745 i2c_w_mask(sd, 0x13, 0x00, 0x20); /* Select 16 bit data bus */
3746 i2c_w_mask(sd, OV7670_REG_COM8, OV7670_COM8_AWB,
3747 OV7670_COM8_AWB);
3748 if (qvga) { /* QVGA from ov7670.c by
3749 * Jonathan Corbet */
3750 xstart = 164;
3751 xend = 28;
3752 ystart = 14;
3753 yend = 494;
3754 } else { /* VGA */
3755 xstart = 158;
3756 xend = 14;
3757 ystart = 10;
3758 yend = 490;
3759 }
3760 /* OV7670 hardware window registers are split across
3761 * multiple locations */
3762 i2c_w(sd, OV7670_REG_HSTART, xstart >> 3);
3763 i2c_w(sd, OV7670_REG_HSTOP, xend >> 3);
3764 v = i2c_r(sd, OV7670_REG_HREF);
3765 v = (v & 0xc0) | ((xend & 0x7) << 3) | (xstart & 0x07);
3766 msleep(10); /* need to sleep between read and write to
3767 * same reg! */
3768 i2c_w(sd, OV7670_REG_HREF, v);
3769
3770 i2c_w(sd, OV7670_REG_VSTART, ystart >> 2);
3771 i2c_w(sd, OV7670_REG_VSTOP, yend >> 2);
3772 v = i2c_r(sd, OV7670_REG_VREF);
3773 v = (v & 0xc0) | ((yend & 0x3) << 2) | (ystart & 0x03);
3774 msleep(10); /* need to sleep between read and write to
3775 * same reg! */
3776 i2c_w(sd, OV7670_REG_VREF, v);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003777 break;
3778 case SEN_OV6620:
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003779 i2c_w_mask(sd, 0x14, qvga ? 0x20 : 0x00, 0x20);
3780 i2c_w_mask(sd, 0x13, 0x00, 0x20); /* Select 16 bit data bus */
3781 i2c_w_mask(sd, 0x12, 0x04, 0x06); /* AWB: 1 Test pattern: 0 */
3782 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003783 case SEN_OV6630:
Hans de Goede7d971372009-06-14 05:28:17 -03003784 case SEN_OV66308AF:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003785 i2c_w_mask(sd, 0x14, qvga ? 0x20 : 0x00, 0x20);
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003786 i2c_w_mask(sd, 0x12, 0x04, 0x06); /* AWB: 1 Test pattern: 0 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003787 break;
3788 default:
3789 return -EINVAL;
3790 }
3791
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003792 /******** Clock programming ********/
Hans de Goedeae49c402009-06-14 19:15:07 -03003793 i2c_w(sd, 0x11, sd->clockdiv);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003794
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003795 return 0;
3796}
3797
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003798static void sethvflip(struct sd *sd)
Jean-Francois Moine0cd67592008-07-29 05:25:28 -03003799{
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003800 if (sd->sensor != SEN_OV7670)
3801 return;
Jean-Francois Moine0cd67592008-07-29 05:25:28 -03003802 if (sd->gspca_dev.streaming)
3803 ov51x_stop(sd);
3804 i2c_w_mask(sd, OV7670_REG_MVFP,
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003805 OV7670_MVFP_MIRROR * sd->hflip
3806 | OV7670_MVFP_VFLIP * sd->vflip,
3807 OV7670_MVFP_MIRROR | OV7670_MVFP_VFLIP);
Jean-Francois Moine0cd67592008-07-29 05:25:28 -03003808 if (sd->gspca_dev.streaming)
3809 ov51x_restart(sd);
3810}
3811
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003812static int set_ov_sensor_window(struct sd *sd)
Jean-Francois Moine0cd67592008-07-29 05:25:28 -03003813{
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003814 struct gspca_dev *gspca_dev;
Hans de Goede124cc9c2009-06-14 05:48:00 -03003815 int qvga, crop;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003816 int hwsbase, hwebase, vwsbase, vwebase, hwscale, vwscale;
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003817 int ret;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003818
Hans de Goede635118d2009-10-11 09:49:03 -03003819 /* mode setup is fully handled in mode_init_ov_sensor_regs for these */
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003820 if (sd->sensor == SEN_OV2610 || sd->sensor == SEN_OV3610 ||
3821 sd->sensor == SEN_OV7670)
Hans de Goede635118d2009-10-11 09:49:03 -03003822 return mode_init_ov_sensor_regs(sd);
3823
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003824 gspca_dev = &sd->gspca_dev;
Hans de Goede124cc9c2009-06-14 05:48:00 -03003825 qvga = gspca_dev->cam.cam_mode[(int) gspca_dev->curr_mode].priv & 1;
3826 crop = gspca_dev->cam.cam_mode[(int) gspca_dev->curr_mode].priv & 2;
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003827
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003828 /* The different sensor ICs handle setting up of window differently.
3829 * IF YOU SET IT WRONG, YOU WILL GET ALL ZERO ISOC DATA FROM OV51x!! */
3830 switch (sd->sensor) {
3831 case SEN_OV8610:
3832 hwsbase = 0x1e;
3833 hwebase = 0x1e;
3834 vwsbase = 0x02;
3835 vwebase = 0x02;
3836 break;
3837 case SEN_OV7610:
3838 case SEN_OV76BE:
3839 hwsbase = 0x38;
3840 hwebase = 0x3a;
3841 vwsbase = vwebase = 0x05;
3842 break;
3843 case SEN_OV6620:
3844 case SEN_OV6630:
Hans de Goede7d971372009-06-14 05:28:17 -03003845 case SEN_OV66308AF:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003846 hwsbase = 0x38;
3847 hwebase = 0x3a;
3848 vwsbase = 0x05;
3849 vwebase = 0x06;
Hans de Goede7d971372009-06-14 05:28:17 -03003850 if (sd->sensor == SEN_OV66308AF && qvga)
Hans de Goede49809d62009-06-07 12:10:39 -03003851 /* HDG: this fixes U and V getting swapped */
Hans de Goede7d971372009-06-14 05:28:17 -03003852 hwsbase++;
Hans de Goede124cc9c2009-06-14 05:48:00 -03003853 if (crop) {
3854 hwsbase += 8;
3855 hwebase += 8;
3856 vwsbase += 11;
3857 vwebase += 11;
3858 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003859 break;
3860 case SEN_OV7620:
Hans de Goede859cc472010-01-07 15:42:35 -03003861 case SEN_OV7620AE:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003862 hwsbase = 0x2f; /* From 7620.SET (spec is wrong) */
3863 hwebase = 0x2f;
3864 vwsbase = vwebase = 0x05;
3865 break;
3866 case SEN_OV7640:
Hans de Goede035d3a32010-01-09 08:14:43 -03003867 case SEN_OV7648:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003868 hwsbase = 0x1a;
3869 hwebase = 0x1a;
3870 vwsbase = vwebase = 0x03;
3871 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003872 default:
3873 return -EINVAL;
3874 }
3875
3876 switch (sd->sensor) {
3877 case SEN_OV6620:
3878 case SEN_OV6630:
Hans de Goede7d971372009-06-14 05:28:17 -03003879 case SEN_OV66308AF:
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003880 if (qvga) { /* QCIF */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003881 hwscale = 0;
3882 vwscale = 0;
3883 } else { /* CIF */
3884 hwscale = 1;
3885 vwscale = 1; /* The datasheet says 0;
3886 * it's wrong */
3887 }
3888 break;
3889 case SEN_OV8610:
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003890 if (qvga) { /* QSVGA */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003891 hwscale = 1;
3892 vwscale = 1;
3893 } else { /* SVGA */
3894 hwscale = 2;
3895 vwscale = 2;
3896 }
3897 break;
3898 default: /* SEN_OV7xx0 */
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003899 if (qvga) { /* QVGA */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003900 hwscale = 1;
3901 vwscale = 0;
3902 } else { /* VGA */
3903 hwscale = 2;
3904 vwscale = 1;
3905 }
3906 }
3907
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003908 ret = mode_init_ov_sensor_regs(sd);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003909 if (ret < 0)
3910 return ret;
3911
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003912 i2c_w(sd, 0x17, hwsbase);
Hans de Goedea511ba92009-10-16 07:13:07 -03003913 i2c_w(sd, 0x18, hwebase + (sd->sensor_width >> hwscale));
Hans de Goedeebbb5c32009-10-12 11:32:44 -03003914 i2c_w(sd, 0x19, vwsbase);
Hans de Goedea511ba92009-10-16 07:13:07 -03003915 i2c_w(sd, 0x1a, vwebase + (sd->sensor_height >> vwscale));
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003916
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003917 return 0;
3918}
3919
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003920/* -- start the camera -- */
Jean-Francois Moine72ab97c2008-09-20 06:39:08 -03003921static int sd_start(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003922{
3923 struct sd *sd = (struct sd *) gspca_dev;
Hans de Goede49809d62009-06-07 12:10:39 -03003924 int ret = 0;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003925
Hans de Goedea511ba92009-10-16 07:13:07 -03003926 /* Default for most bridges, allow bridge_mode_init_regs to override */
3927 sd->sensor_width = sd->gspca_dev.width;
3928 sd->sensor_height = sd->gspca_dev.height;
3929
Hans de Goede49809d62009-06-07 12:10:39 -03003930 switch (sd->bridge) {
Hans de Goede1876bb92009-06-14 06:45:50 -03003931 case BRIDGE_OV511:
3932 case BRIDGE_OV511PLUS:
3933 ret = ov511_mode_init_regs(sd);
3934 break;
Hans de Goede49809d62009-06-07 12:10:39 -03003935 case BRIDGE_OV518:
3936 case BRIDGE_OV518PLUS:
3937 ret = ov518_mode_init_regs(sd);
3938 break;
3939 case BRIDGE_OV519:
3940 ret = ov519_mode_init_regs(sd);
3941 break;
Hans de Goedeb46aaa02009-10-12 10:07:57 -03003942 /* case BRIDGE_OVFX2: nothing to do */
Hans de Goedea511ba92009-10-16 07:13:07 -03003943 case BRIDGE_W9968CF:
3944 ret = w9968cf_mode_init_regs(sd);
3945 break;
Hans de Goede49809d62009-06-07 12:10:39 -03003946 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003947 if (ret < 0)
3948 goto out;
Hans de Goede49809d62009-06-07 12:10:39 -03003949
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003950 ret = set_ov_sensor_window(sd);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003951 if (ret < 0)
3952 goto out;
3953
Hans de Goede49809d62009-06-07 12:10:39 -03003954 setcontrast(gspca_dev);
3955 setbrightness(gspca_dev);
3956 setcolors(gspca_dev);
Hans de Goede02ab18b2009-06-14 04:32:04 -03003957 sethvflip(sd);
3958 setautobrightness(sd);
3959 setfreq(sd);
Hans de Goede49809d62009-06-07 12:10:39 -03003960
Hans de Goede417a4d22010-02-19 07:37:08 -03003961 /* Force clear snapshot state in case the snapshot button was
3962 pressed while we weren't streaming */
3963 sd->snapshot_needs_reset = 1;
3964 sd_reset_snapshot(gspca_dev);
3965 sd->snapshot_pressed = 0;
3966
Hans de Goeded6b6d7a2010-05-08 08:55:42 -03003967 sd->first_frame = 3;
3968
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03003969 ret = ov51x_restart(sd);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003970 if (ret < 0)
3971 goto out;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003972 ov51x_led_control(sd, 1);
Jean-Francois Moine72ab97c2008-09-20 06:39:08 -03003973 return 0;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003974out:
3975 PDEBUG(D_ERR, "camera start error:%d", ret);
Jean-Francois Moine72ab97c2008-09-20 06:39:08 -03003976 return ret;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003977}
3978
3979static void sd_stopN(struct gspca_dev *gspca_dev)
3980{
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03003981 struct sd *sd = (struct sd *) gspca_dev;
3982
3983 ov51x_stop(sd);
3984 ov51x_led_control(sd, 0);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003985}
3986
Hans de Goede79b35902009-10-19 06:08:01 -03003987static void sd_stop0(struct gspca_dev *gspca_dev)
3988{
3989 struct sd *sd = (struct sd *) gspca_dev;
3990
3991 if (sd->bridge == BRIDGE_W9968CF)
3992 w9968cf_stop0(sd);
3993}
3994
Hans de Goede92e232a2010-02-20 04:30:45 -03003995static void ov51x_handle_button(struct gspca_dev *gspca_dev, u8 state)
3996{
3997 struct sd *sd = (struct sd *) gspca_dev;
3998
3999 if (sd->snapshot_pressed != state) {
Jean-François Moine28566432010-10-01 07:33:26 -03004000#if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
Hans de Goede92e232a2010-02-20 04:30:45 -03004001 input_report_key(gspca_dev->input_dev, KEY_CAMERA, state);
4002 input_sync(gspca_dev->input_dev);
4003#endif
4004 if (state)
4005 sd->snapshot_needs_reset = 1;
4006
4007 sd->snapshot_pressed = state;
4008 } else {
Hans de Goede88e8d202010-02-20 04:45:49 -03004009 /* On the ov511 / ov519 we need to reset the button state
4010 multiple times, as resetting does not work as long as the
4011 button stays pressed */
4012 switch (sd->bridge) {
4013 case BRIDGE_OV511:
4014 case BRIDGE_OV511PLUS:
4015 case BRIDGE_OV519:
4016 if (state)
4017 sd->snapshot_needs_reset = 1;
4018 break;
4019 }
Hans de Goede92e232a2010-02-20 04:30:45 -03004020 }
4021}
4022
Hans de Goede1876bb92009-06-14 06:45:50 -03004023static void ov511_pkt_scan(struct gspca_dev *gspca_dev,
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004024 u8 *in, /* isoc packet */
4025 int len) /* iso packet length */
Hans de Goede1876bb92009-06-14 06:45:50 -03004026{
4027 struct sd *sd = (struct sd *) gspca_dev;
4028
4029 /* SOF/EOF packets have 1st to 8th bytes zeroed and the 9th
4030 * byte non-zero. The EOF packet has image width/height in the
4031 * 10th and 11th bytes. The 9th byte is given as follows:
4032 *
4033 * bit 7: EOF
4034 * 6: compression enabled
4035 * 5: 422/420/400 modes
4036 * 4: 422/420/400 modes
4037 * 3: 1
4038 * 2: snapshot button on
4039 * 1: snapshot frame
4040 * 0: even/odd field
4041 */
4042 if (!(in[0] | in[1] | in[2] | in[3] | in[4] | in[5] | in[6] | in[7]) &&
4043 (in[8] & 0x08)) {
Hans de Goede88e8d202010-02-20 04:45:49 -03004044 ov51x_handle_button(gspca_dev, (in[8] >> 2) & 1);
Hans de Goede1876bb92009-06-14 06:45:50 -03004045 if (in[8] & 0x80) {
4046 /* Frame end */
4047 if ((in[9] + 1) * 8 != gspca_dev->width ||
4048 (in[10] + 1) * 8 != gspca_dev->height) {
4049 PDEBUG(D_ERR, "Invalid frame size, got: %dx%d,"
4050 " requested: %dx%d\n",
4051 (in[9] + 1) * 8, (in[10] + 1) * 8,
4052 gspca_dev->width, gspca_dev->height);
4053 gspca_dev->last_packet_type = DISCARD_PACKET;
4054 return;
4055 }
4056 /* Add 11 byte footer to frame, might be usefull */
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004057 gspca_frame_add(gspca_dev, LAST_PACKET, in, 11);
Hans de Goede1876bb92009-06-14 06:45:50 -03004058 return;
4059 } else {
4060 /* Frame start */
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004061 gspca_frame_add(gspca_dev, FIRST_PACKET, in, 0);
Hans de Goede1876bb92009-06-14 06:45:50 -03004062 sd->packet_nr = 0;
4063 }
4064 }
4065
4066 /* Ignore the packet number */
4067 len--;
4068
4069 /* intermediate packet */
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004070 gspca_frame_add(gspca_dev, INTER_PACKET, in, len);
Hans de Goede1876bb92009-06-14 06:45:50 -03004071}
4072
Hans de Goede49809d62009-06-07 12:10:39 -03004073static void ov518_pkt_scan(struct gspca_dev *gspca_dev,
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004074 u8 *data, /* isoc packet */
Hans de Goede49809d62009-06-07 12:10:39 -03004075 int len) /* iso packet length */
4076{
Hans de Goede92918a52009-06-14 06:21:35 -03004077 struct sd *sd = (struct sd *) gspca_dev;
Hans de Goede49809d62009-06-07 12:10:39 -03004078
4079 /* A false positive here is likely, until OVT gives me
4080 * the definitive SOF/EOF format */
4081 if ((!(data[0] | data[1] | data[2] | data[3] | data[5])) && data[6]) {
Hans de Goede92e232a2010-02-20 04:30:45 -03004082 ov51x_handle_button(gspca_dev, (data[6] >> 1) & 1);
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004083 gspca_frame_add(gspca_dev, LAST_PACKET, NULL, 0);
4084 gspca_frame_add(gspca_dev, FIRST_PACKET, NULL, 0);
Hans de Goede92918a52009-06-14 06:21:35 -03004085 sd->packet_nr = 0;
4086 }
4087
4088 if (gspca_dev->last_packet_type == DISCARD_PACKET)
4089 return;
4090
4091 /* Does this device use packet numbers ? */
4092 if (len & 7) {
4093 len--;
4094 if (sd->packet_nr == data[len])
4095 sd->packet_nr++;
4096 /* The last few packets of the frame (which are all 0's
4097 except that they may contain part of the footer), are
4098 numbered 0 */
4099 else if (sd->packet_nr == 0 || data[len]) {
4100 PDEBUG(D_ERR, "Invalid packet nr: %d (expect: %d)",
4101 (int)data[len], (int)sd->packet_nr);
4102 gspca_dev->last_packet_type = DISCARD_PACKET;
4103 return;
4104 }
Hans de Goede49809d62009-06-07 12:10:39 -03004105 }
4106
4107 /* intermediate packet */
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004108 gspca_frame_add(gspca_dev, INTER_PACKET, data, len);
Hans de Goede49809d62009-06-07 12:10:39 -03004109}
4110
4111static void ov519_pkt_scan(struct gspca_dev *gspca_dev,
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004112 u8 *data, /* isoc packet */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004113 int len) /* iso packet length */
4114{
4115 /* Header of ov519 is 16 bytes:
4116 * Byte Value Description
4117 * 0 0xff magic
4118 * 1 0xff magic
4119 * 2 0xff magic
4120 * 3 0xXX 0x50 = SOF, 0x51 = EOF
4121 * 9 0xXX 0x01 initial frame without data,
4122 * 0x00 standard frame with image
4123 * 14 Lo in EOF: length of image data / 8
4124 * 15 Hi
4125 */
4126
4127 if (data[0] == 0xff && data[1] == 0xff && data[2] == 0xff) {
4128 switch (data[3]) {
4129 case 0x50: /* start of frame */
Hans de Goede417a4d22010-02-19 07:37:08 -03004130 /* Don't check the button state here, as the state
4131 usually (always ?) changes at EOF and checking it
4132 here leads to unnecessary snapshot state resets. */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004133#define HDRSZ 16
4134 data += HDRSZ;
4135 len -= HDRSZ;
4136#undef HDRSZ
4137 if (data[0] == 0xff || data[1] == 0xd8)
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004138 gspca_frame_add(gspca_dev, FIRST_PACKET,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004139 data, len);
4140 else
4141 gspca_dev->last_packet_type = DISCARD_PACKET;
4142 return;
4143 case 0x51: /* end of frame */
Hans de Goede92e232a2010-02-20 04:30:45 -03004144 ov51x_handle_button(gspca_dev, data[11] & 1);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004145 if (data[9] != 0)
4146 gspca_dev->last_packet_type = DISCARD_PACKET;
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004147 gspca_frame_add(gspca_dev, LAST_PACKET,
4148 NULL, 0);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004149 return;
4150 }
4151 }
4152
4153 /* intermediate packet */
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004154 gspca_frame_add(gspca_dev, INTER_PACKET, data, len);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004155}
4156
Hans de Goedeb46aaa02009-10-12 10:07:57 -03004157static void ovfx2_pkt_scan(struct gspca_dev *gspca_dev,
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004158 u8 *data, /* isoc packet */
Hans de Goedeb46aaa02009-10-12 10:07:57 -03004159 int len) /* iso packet length */
4160{
Hans de Goeded6b6d7a2010-05-08 08:55:42 -03004161 struct sd *sd = (struct sd *) gspca_dev;
Hans de Goeded6b6d7a2010-05-08 08:55:42 -03004162
4163 gspca_frame_add(gspca_dev, INTER_PACKET, data, len);
4164
Hans de Goedeb46aaa02009-10-12 10:07:57 -03004165 /* A short read signals EOF */
4166 if (len < OVFX2_BULK_SIZE) {
Hans de Goeded6b6d7a2010-05-08 08:55:42 -03004167 /* If the frame is short, and it is one of the first ones
4168 the sensor and bridge are still syncing, so drop it. */
4169 if (sd->first_frame) {
4170 sd->first_frame--;
Jean-François Moineb192ca92010-06-27 03:08:19 -03004171 if (gspca_dev->image_len <
4172 sd->gspca_dev.width * sd->gspca_dev.height)
Hans de Goeded6b6d7a2010-05-08 08:55:42 -03004173 gspca_dev->last_packet_type = DISCARD_PACKET;
4174 }
4175 gspca_frame_add(gspca_dev, LAST_PACKET, NULL, 0);
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004176 gspca_frame_add(gspca_dev, FIRST_PACKET, NULL, 0);
Hans de Goedeb46aaa02009-10-12 10:07:57 -03004177 }
Hans de Goedeb46aaa02009-10-12 10:07:57 -03004178}
4179
Hans de Goede49809d62009-06-07 12:10:39 -03004180static void sd_pkt_scan(struct gspca_dev *gspca_dev,
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004181 u8 *data, /* isoc packet */
Hans de Goede49809d62009-06-07 12:10:39 -03004182 int len) /* iso packet length */
4183{
4184 struct sd *sd = (struct sd *) gspca_dev;
4185
4186 switch (sd->bridge) {
4187 case BRIDGE_OV511:
4188 case BRIDGE_OV511PLUS:
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004189 ov511_pkt_scan(gspca_dev, data, len);
Hans de Goede49809d62009-06-07 12:10:39 -03004190 break;
4191 case BRIDGE_OV518:
4192 case BRIDGE_OV518PLUS:
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004193 ov518_pkt_scan(gspca_dev, data, len);
Hans de Goede49809d62009-06-07 12:10:39 -03004194 break;
4195 case BRIDGE_OV519:
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004196 ov519_pkt_scan(gspca_dev, data, len);
Hans de Goede49809d62009-06-07 12:10:39 -03004197 break;
Hans de Goedeb46aaa02009-10-12 10:07:57 -03004198 case BRIDGE_OVFX2:
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004199 ovfx2_pkt_scan(gspca_dev, data, len);
Hans de Goedeb46aaa02009-10-12 10:07:57 -03004200 break;
Hans de Goedea511ba92009-10-16 07:13:07 -03004201 case BRIDGE_W9968CF:
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03004202 w9968cf_pkt_scan(gspca_dev, data, len);
Hans de Goedea511ba92009-10-16 07:13:07 -03004203 break;
Hans de Goede49809d62009-06-07 12:10:39 -03004204 }
4205}
4206
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004207/* -- management routines -- */
4208
4209static void setbrightness(struct gspca_dev *gspca_dev)
4210{
4211 struct sd *sd = (struct sd *) gspca_dev;
4212 int val;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004213
4214 val = sd->brightness;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004215 switch (sd->sensor) {
4216 case SEN_OV8610:
4217 case SEN_OV7610:
4218 case SEN_OV76BE:
4219 case SEN_OV6620:
4220 case SEN_OV6630:
Hans de Goede7d971372009-06-14 05:28:17 -03004221 case SEN_OV66308AF:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004222 case SEN_OV7640:
Hans de Goede035d3a32010-01-09 08:14:43 -03004223 case SEN_OV7648:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004224 i2c_w(sd, OV7610_REG_BRT, val);
4225 break;
4226 case SEN_OV7620:
Hans de Goede859cc472010-01-07 15:42:35 -03004227 case SEN_OV7620AE:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004228 /* 7620 doesn't like manual changes when in auto mode */
Hans de Goede02ab18b2009-06-14 04:32:04 -03004229 if (!sd->autobrightness)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004230 i2c_w(sd, OV7610_REG_BRT, val);
4231 break;
4232 case SEN_OV7670:
Jean-Francois Moine594f5b82008-08-01 06:37:51 -03004233/*win trace
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004234 * i2c_w_mask(sd, OV7670_REG_COM8, 0, OV7670_COM8_AEC); */
4235 i2c_w(sd, OV7670_REG_BRIGHT, ov7670_abs_to_sm(val));
4236 break;
4237 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004238}
4239
4240static void setcontrast(struct gspca_dev *gspca_dev)
4241{
4242 struct sd *sd = (struct sd *) gspca_dev;
4243 int val;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004244
4245 val = sd->contrast;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004246 switch (sd->sensor) {
4247 case SEN_OV7610:
4248 case SEN_OV6620:
4249 i2c_w(sd, OV7610_REG_CNT, val);
4250 break;
4251 case SEN_OV6630:
Hans de Goede7d971372009-06-14 05:28:17 -03004252 case SEN_OV66308AF:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004253 i2c_w_mask(sd, OV7610_REG_CNT, val >> 4, 0x0f);
Hans de Goede49809d62009-06-07 12:10:39 -03004254 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004255 case SEN_OV8610: {
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03004256 static const __u8 ctab[] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004257 0x03, 0x09, 0x0b, 0x0f, 0x53, 0x6f, 0x35, 0x7f
4258 };
4259
4260 /* Use Y gamma control instead. Bit 0 enables it. */
4261 i2c_w(sd, 0x64, ctab[val >> 5]);
4262 break;
4263 }
Hans de Goede859cc472010-01-07 15:42:35 -03004264 case SEN_OV7620:
4265 case SEN_OV7620AE: {
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03004266 static const __u8 ctab[] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004267 0x01, 0x05, 0x09, 0x11, 0x15, 0x35, 0x37, 0x57,
4268 0x5b, 0xa5, 0xa7, 0xc7, 0xc9, 0xcf, 0xef, 0xff
4269 };
4270
4271 /* Use Y gamma control instead. Bit 0 enables it. */
4272 i2c_w(sd, 0x64, ctab[val >> 4]);
4273 break;
4274 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004275 case SEN_OV7670:
4276 /* check that this isn't just the same as ov7610 */
4277 i2c_w(sd, OV7670_REG_CONTRAS, val >> 1);
4278 break;
4279 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004280}
4281
4282static void setcolors(struct gspca_dev *gspca_dev)
4283{
4284 struct sd *sd = (struct sd *) gspca_dev;
4285 int val;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004286
4287 val = sd->colors;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004288 switch (sd->sensor) {
4289 case SEN_OV8610:
4290 case SEN_OV7610:
4291 case SEN_OV76BE:
4292 case SEN_OV6620:
4293 case SEN_OV6630:
Hans de Goede7d971372009-06-14 05:28:17 -03004294 case SEN_OV66308AF:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004295 i2c_w(sd, OV7610_REG_SAT, val);
4296 break;
4297 case SEN_OV7620:
Hans de Goede859cc472010-01-07 15:42:35 -03004298 case SEN_OV7620AE:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004299 /* Use UV gamma control instead. Bits 0 & 7 are reserved. */
4300/* rc = ov_i2c_write(sd->dev, 0x62, (val >> 9) & 0x7e);
4301 if (rc < 0)
4302 goto out; */
4303 i2c_w(sd, OV7610_REG_SAT, val);
4304 break;
4305 case SEN_OV7640:
Hans de Goede035d3a32010-01-09 08:14:43 -03004306 case SEN_OV7648:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004307 i2c_w(sd, OV7610_REG_SAT, val & 0xf0);
4308 break;
4309 case SEN_OV7670:
4310 /* supported later once I work out how to do it
4311 * transparently fail now! */
4312 /* set REG_COM13 values for UV sat auto mode */
4313 break;
4314 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004315}
4316
Hans de Goede02ab18b2009-06-14 04:32:04 -03004317static void setautobrightness(struct sd *sd)
4318{
Hans de Goede035d3a32010-01-09 08:14:43 -03004319 if (sd->sensor == SEN_OV7640 || sd->sensor == SEN_OV7648 ||
4320 sd->sensor == SEN_OV7670 ||
Hans de Goede635118d2009-10-11 09:49:03 -03004321 sd->sensor == SEN_OV2610 || sd->sensor == SEN_OV3610)
Hans de Goede02ab18b2009-06-14 04:32:04 -03004322 return;
4323
4324 i2c_w_mask(sd, 0x2d, sd->autobrightness ? 0x10 : 0x00, 0x10);
4325}
4326
4327static void setfreq(struct sd *sd)
4328{
Hans de Goede635118d2009-10-11 09:49:03 -03004329 if (sd->sensor == SEN_OV2610 || sd->sensor == SEN_OV3610)
4330 return;
4331
Hans de Goede02ab18b2009-06-14 04:32:04 -03004332 if (sd->sensor == SEN_OV7670) {
4333 switch (sd->freq) {
4334 case 0: /* Banding filter disabled */
4335 i2c_w_mask(sd, OV7670_REG_COM8, 0, OV7670_COM8_BFILT);
4336 break;
4337 case 1: /* 50 hz */
4338 i2c_w_mask(sd, OV7670_REG_COM8, OV7670_COM8_BFILT,
4339 OV7670_COM8_BFILT);
4340 i2c_w_mask(sd, OV7670_REG_COM11, 0x08, 0x18);
4341 break;
4342 case 2: /* 60 hz */
4343 i2c_w_mask(sd, OV7670_REG_COM8, OV7670_COM8_BFILT,
4344 OV7670_COM8_BFILT);
4345 i2c_w_mask(sd, OV7670_REG_COM11, 0x00, 0x18);
4346 break;
4347 case 3: /* Auto hz */
4348 i2c_w_mask(sd, OV7670_REG_COM8, OV7670_COM8_BFILT,
4349 OV7670_COM8_BFILT);
4350 i2c_w_mask(sd, OV7670_REG_COM11, OV7670_COM11_HZAUTO,
4351 0x18);
4352 break;
4353 }
4354 } else {
4355 switch (sd->freq) {
4356 case 0: /* Banding filter disabled */
4357 i2c_w_mask(sd, 0x2d, 0x00, 0x04);
4358 i2c_w_mask(sd, 0x2a, 0x00, 0x80);
4359 break;
4360 case 1: /* 50 hz (filter on and framerate adj) */
4361 i2c_w_mask(sd, 0x2d, 0x04, 0x04);
4362 i2c_w_mask(sd, 0x2a, 0x80, 0x80);
4363 /* 20 fps -> 16.667 fps */
4364 if (sd->sensor == SEN_OV6620 ||
Hans de Goede7d971372009-06-14 05:28:17 -03004365 sd->sensor == SEN_OV6630 ||
4366 sd->sensor == SEN_OV66308AF)
Hans de Goede02ab18b2009-06-14 04:32:04 -03004367 i2c_w(sd, 0x2b, 0x5e);
4368 else
4369 i2c_w(sd, 0x2b, 0xac);
4370 break;
4371 case 2: /* 60 hz (filter on, ...) */
4372 i2c_w_mask(sd, 0x2d, 0x04, 0x04);
4373 if (sd->sensor == SEN_OV6620 ||
Hans de Goede7d971372009-06-14 05:28:17 -03004374 sd->sensor == SEN_OV6630 ||
4375 sd->sensor == SEN_OV66308AF) {
Hans de Goede02ab18b2009-06-14 04:32:04 -03004376 /* 20 fps -> 15 fps */
4377 i2c_w_mask(sd, 0x2a, 0x80, 0x80);
4378 i2c_w(sd, 0x2b, 0xa8);
4379 } else {
4380 /* no framerate adj. */
4381 i2c_w_mask(sd, 0x2a, 0x00, 0x80);
4382 }
4383 break;
4384 }
4385 }
4386}
4387
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004388static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val)
4389{
4390 struct sd *sd = (struct sd *) gspca_dev;
4391
4392 sd->brightness = val;
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03004393 if (gspca_dev->streaming)
4394 setbrightness(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004395 return 0;
4396}
4397
4398static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val)
4399{
4400 struct sd *sd = (struct sd *) gspca_dev;
4401
4402 *val = sd->brightness;
4403 return 0;
4404}
4405
4406static int sd_setcontrast(struct gspca_dev *gspca_dev, __s32 val)
4407{
4408 struct sd *sd = (struct sd *) gspca_dev;
4409
4410 sd->contrast = val;
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03004411 if (gspca_dev->streaming)
4412 setcontrast(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004413 return 0;
4414}
4415
4416static int sd_getcontrast(struct gspca_dev *gspca_dev, __s32 *val)
4417{
4418 struct sd *sd = (struct sd *) gspca_dev;
4419
4420 *val = sd->contrast;
4421 return 0;
4422}
4423
4424static int sd_setcolors(struct gspca_dev *gspca_dev, __s32 val)
4425{
4426 struct sd *sd = (struct sd *) gspca_dev;
4427
4428 sd->colors = val;
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03004429 if (gspca_dev->streaming)
4430 setcolors(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004431 return 0;
4432}
4433
4434static int sd_getcolors(struct gspca_dev *gspca_dev, __s32 *val)
4435{
4436 struct sd *sd = (struct sd *) gspca_dev;
4437
4438 *val = sd->colors;
4439 return 0;
4440}
4441
Jean-Francois Moine0cd67592008-07-29 05:25:28 -03004442static int sd_sethflip(struct gspca_dev *gspca_dev, __s32 val)
4443{
4444 struct sd *sd = (struct sd *) gspca_dev;
4445
4446 sd->hflip = val;
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03004447 if (gspca_dev->streaming)
4448 sethvflip(sd);
Jean-Francois Moine0cd67592008-07-29 05:25:28 -03004449 return 0;
4450}
4451
4452static int sd_gethflip(struct gspca_dev *gspca_dev, __s32 *val)
4453{
4454 struct sd *sd = (struct sd *) gspca_dev;
4455
4456 *val = sd->hflip;
4457 return 0;
4458}
4459
4460static int sd_setvflip(struct gspca_dev *gspca_dev, __s32 val)
4461{
4462 struct sd *sd = (struct sd *) gspca_dev;
4463
4464 sd->vflip = val;
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03004465 if (gspca_dev->streaming)
4466 sethvflip(sd);
Jean-Francois Moine0cd67592008-07-29 05:25:28 -03004467 return 0;
4468}
4469
4470static int sd_getvflip(struct gspca_dev *gspca_dev, __s32 *val)
4471{
4472 struct sd *sd = (struct sd *) gspca_dev;
4473
4474 *val = sd->vflip;
4475 return 0;
4476}
4477
Hans de Goede02ab18b2009-06-14 04:32:04 -03004478static int sd_setautobrightness(struct gspca_dev *gspca_dev, __s32 val)
4479{
4480 struct sd *sd = (struct sd *) gspca_dev;
4481
4482 sd->autobrightness = val;
4483 if (gspca_dev->streaming)
4484 setautobrightness(sd);
4485 return 0;
4486}
4487
4488static int sd_getautobrightness(struct gspca_dev *gspca_dev, __s32 *val)
4489{
4490 struct sd *sd = (struct sd *) gspca_dev;
4491
4492 *val = sd->autobrightness;
4493 return 0;
4494}
4495
4496static int sd_setfreq(struct gspca_dev *gspca_dev, __s32 val)
4497{
4498 struct sd *sd = (struct sd *) gspca_dev;
4499
4500 sd->freq = val;
Hans de Goedea511ba92009-10-16 07:13:07 -03004501 if (gspca_dev->streaming) {
Hans de Goede02ab18b2009-06-14 04:32:04 -03004502 setfreq(sd);
Hans de Goedea511ba92009-10-16 07:13:07 -03004503 /* Ugly but necessary */
4504 if (sd->bridge == BRIDGE_W9968CF)
4505 w9968cf_set_crop_window(sd);
4506 }
Hans de Goede02ab18b2009-06-14 04:32:04 -03004507 return 0;
4508}
4509
4510static int sd_getfreq(struct gspca_dev *gspca_dev, __s32 *val)
4511{
4512 struct sd *sd = (struct sd *) gspca_dev;
4513
4514 *val = sd->freq;
4515 return 0;
4516}
4517
4518static int sd_querymenu(struct gspca_dev *gspca_dev,
4519 struct v4l2_querymenu *menu)
4520{
4521 struct sd *sd = (struct sd *) gspca_dev;
4522
4523 switch (menu->id) {
4524 case V4L2_CID_POWER_LINE_FREQUENCY:
4525 switch (menu->index) {
4526 case 0: /* V4L2_CID_POWER_LINE_FREQUENCY_DISABLED */
4527 strcpy((char *) menu->name, "NoFliker");
4528 return 0;
4529 case 1: /* V4L2_CID_POWER_LINE_FREQUENCY_50HZ */
4530 strcpy((char *) menu->name, "50 Hz");
4531 return 0;
4532 case 2: /* V4L2_CID_POWER_LINE_FREQUENCY_60HZ */
4533 strcpy((char *) menu->name, "60 Hz");
4534 return 0;
4535 case 3:
4536 if (sd->sensor != SEN_OV7670)
4537 return -EINVAL;
4538
4539 strcpy((char *) menu->name, "Automatic");
4540 return 0;
4541 }
4542 break;
4543 }
4544 return -EINVAL;
4545}
4546
Hans de Goede79b35902009-10-19 06:08:01 -03004547static int sd_get_jcomp(struct gspca_dev *gspca_dev,
4548 struct v4l2_jpegcompression *jcomp)
4549{
4550 struct sd *sd = (struct sd *) gspca_dev;
4551
4552 if (sd->bridge != BRIDGE_W9968CF)
4553 return -EINVAL;
4554
4555 memset(jcomp, 0, sizeof *jcomp);
4556 jcomp->quality = sd->quality;
4557 jcomp->jpeg_markers = V4L2_JPEG_MARKER_DHT | V4L2_JPEG_MARKER_DQT |
4558 V4L2_JPEG_MARKER_DRI;
4559 return 0;
4560}
4561
4562static int sd_set_jcomp(struct gspca_dev *gspca_dev,
4563 struct v4l2_jpegcompression *jcomp)
4564{
4565 struct sd *sd = (struct sd *) gspca_dev;
4566
4567 if (sd->bridge != BRIDGE_W9968CF)
4568 return -EINVAL;
4569
4570 if (gspca_dev->streaming)
4571 return -EBUSY;
4572
4573 if (jcomp->quality < QUALITY_MIN)
4574 sd->quality = QUALITY_MIN;
4575 else if (jcomp->quality > QUALITY_MAX)
4576 sd->quality = QUALITY_MAX;
4577 else
4578 sd->quality = jcomp->quality;
4579
4580 /* Return resulting jcomp params to app */
4581 sd_get_jcomp(gspca_dev, jcomp);
4582
4583 return 0;
4584}
4585
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004586/* sub-driver description */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03004587static const struct sd_desc sd_desc = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004588 .name = MODULE_NAME,
4589 .ctrls = sd_ctrls,
4590 .nctrls = ARRAY_SIZE(sd_ctrls),
4591 .config = sd_config,
Jean-Francois Moine012d6b02008-09-03 17:12:16 -03004592 .init = sd_init,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004593 .start = sd_start,
4594 .stopN = sd_stopN,
Hans de Goede79b35902009-10-19 06:08:01 -03004595 .stop0 = sd_stop0,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004596 .pkt_scan = sd_pkt_scan,
Hans de Goede417a4d22010-02-19 07:37:08 -03004597 .dq_callback = sd_reset_snapshot,
Hans de Goede02ab18b2009-06-14 04:32:04 -03004598 .querymenu = sd_querymenu,
Hans de Goede79b35902009-10-19 06:08:01 -03004599 .get_jcomp = sd_get_jcomp,
4600 .set_jcomp = sd_set_jcomp,
Jean-François Moine28566432010-10-01 07:33:26 -03004601#if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
Hans de Goede417a4d22010-02-19 07:37:08 -03004602 .other_input = 1,
4603#endif
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004604};
4605
4606/* -- module initialisation -- */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03004607static const __devinitdata struct usb_device_id device_table[] = {
Hans de Goedea511ba92009-10-16 07:13:07 -03004608 {USB_DEVICE(0x041e, 0x4003), .driver_info = BRIDGE_W9968CF },
Hans de Goede49809d62009-06-07 12:10:39 -03004609 {USB_DEVICE(0x041e, 0x4052), .driver_info = BRIDGE_OV519 },
4610 {USB_DEVICE(0x041e, 0x405f), .driver_info = BRIDGE_OV519 },
4611 {USB_DEVICE(0x041e, 0x4060), .driver_info = BRIDGE_OV519 },
4612 {USB_DEVICE(0x041e, 0x4061), .driver_info = BRIDGE_OV519 },
Hans de Goede9e4d8252009-06-14 06:25:06 -03004613 {USB_DEVICE(0x041e, 0x4064),
4614 .driver_info = BRIDGE_OV519 | BRIDGE_INVERT_LED },
Rafal Milecki518c8df2009-10-02 03:54:44 -03004615 {USB_DEVICE(0x041e, 0x4067), .driver_info = BRIDGE_OV519 },
Hans de Goede9e4d8252009-06-14 06:25:06 -03004616 {USB_DEVICE(0x041e, 0x4068),
4617 .driver_info = BRIDGE_OV519 | BRIDGE_INVERT_LED },
Hans de Goede49809d62009-06-07 12:10:39 -03004618 {USB_DEVICE(0x045e, 0x028c), .driver_info = BRIDGE_OV519 },
4619 {USB_DEVICE(0x054c, 0x0154), .driver_info = BRIDGE_OV519 },
Hans de Goede98184f72010-01-07 12:06:00 -03004620 {USB_DEVICE(0x054c, 0x0155),
4621 .driver_info = BRIDGE_OV519 | BRIDGE_INVERT_LED },
Hans de Goede1876bb92009-06-14 06:45:50 -03004622 {USB_DEVICE(0x05a9, 0x0511), .driver_info = BRIDGE_OV511 },
Hans de Goede49809d62009-06-07 12:10:39 -03004623 {USB_DEVICE(0x05a9, 0x0518), .driver_info = BRIDGE_OV518 },
4624 {USB_DEVICE(0x05a9, 0x0519), .driver_info = BRIDGE_OV519 },
4625 {USB_DEVICE(0x05a9, 0x0530), .driver_info = BRIDGE_OV519 },
Hans de Goedeb46aaa02009-10-12 10:07:57 -03004626 {USB_DEVICE(0x05a9, 0x2800), .driver_info = BRIDGE_OVFX2 },
Hans de Goede49809d62009-06-07 12:10:39 -03004627 {USB_DEVICE(0x05a9, 0x4519), .driver_info = BRIDGE_OV519 },
4628 {USB_DEVICE(0x05a9, 0x8519), .driver_info = BRIDGE_OV519 },
Hans de Goede1876bb92009-06-14 06:45:50 -03004629 {USB_DEVICE(0x05a9, 0xa511), .driver_info = BRIDGE_OV511PLUS },
Hans de Goede49809d62009-06-07 12:10:39 -03004630 {USB_DEVICE(0x05a9, 0xa518), .driver_info = BRIDGE_OV518PLUS },
Hans de Goede1876bb92009-06-14 06:45:50 -03004631 {USB_DEVICE(0x0813, 0x0002), .driver_info = BRIDGE_OV511PLUS },
Hans de Goedeb46aaa02009-10-12 10:07:57 -03004632 {USB_DEVICE(0x0b62, 0x0059), .driver_info = BRIDGE_OVFX2 },
4633 {USB_DEVICE(0x0e96, 0xc001), .driver_info = BRIDGE_OVFX2 },
Hans de Goedea511ba92009-10-16 07:13:07 -03004634 {USB_DEVICE(0x1046, 0x9967), .driver_info = BRIDGE_W9968CF },
Hans de Goedeb46aaa02009-10-12 10:07:57 -03004635 {USB_DEVICE(0x8020, 0xEF04), .driver_info = BRIDGE_OVFX2 },
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004636 {}
4637};
Jean-Francois Moineac40b1f2008-11-08 06:03:37 -03004638
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004639MODULE_DEVICE_TABLE(usb, device_table);
4640
4641/* -- device connect -- */
4642static int sd_probe(struct usb_interface *intf,
4643 const struct usb_device_id *id)
4644{
4645 return gspca_dev_probe(intf, id, &sd_desc, sizeof(struct sd),
4646 THIS_MODULE);
4647}
4648
4649static struct usb_driver sd_driver = {
4650 .name = MODULE_NAME,
4651 .id_table = device_table,
4652 .probe = sd_probe,
4653 .disconnect = gspca_disconnect,
Jean-Francois Moine6a709742008-09-03 16:48:10 -03004654#ifdef CONFIG_PM
4655 .suspend = gspca_suspend,
4656 .resume = gspca_resume,
4657#endif
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004658};
4659
4660/* -- module insert / remove -- */
4661static int __init sd_mod_init(void)
4662{
Jean-François Moine54826432010-09-13 04:53:03 -03004663 return usb_register(&sd_driver);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004664}
4665static void __exit sd_mod_exit(void)
4666{
4667 usb_deregister(&sd_driver);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03004668}
4669
4670module_init(sd_mod_init);
4671module_exit(sd_mod_exit);
4672
4673module_param(frame_rate, int, 0644);
4674MODULE_PARM_DESC(frame_rate, "Frame rate (5, 10, 15, 20 or 30 fps)");