blob: 025f9ba5c681701bb331543c4ce9a8fa4724c492 [file] [log] [blame]
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001/*
Jean-Francois Moine5b34e3e2009-11-02 10:00:48 -03002 * Sonix sn9c102p sn9c105 sn9c120 (jpeg) subdriver
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003 *
Jean-François Moine27c6f9e2010-04-02 06:59:13 -03004 * Copyright (C) 2009-2010 Jean-François Moine <http://moinejf.free.fr>
Jean-Francois Moine5b34e3e2009-11-02 10:00:48 -03005 * Copyright (C) 2005 Michel Xhaard mxhaard@magic.fr
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22#define MODULE_NAME "sonixj"
23
Hans de Goede9712a8b2010-01-31 12:54:29 -030024#include <linux/input.h>
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030025#include "gspca.h"
26#include "jpeg.h"
27
Jean-Francois Moine0cae8962008-10-17 07:48:24 -030028#define V4L2_CID_INFRARED (V4L2_CID_PRIVATE_BASE + 0)
29
Jean-François Moine27c6f9e2010-04-02 06:59:13 -030030MODULE_AUTHOR("Jean-François Moine <http://moinejf.free.fr>");
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030031MODULE_DESCRIPTION("GSPCA/SONIX JPEG USB Camera Driver");
32MODULE_LICENSE("GPL");
33
34/* specific webcam descriptor */
35struct sd {
36 struct gspca_dev gspca_dev; /* !! must be the first item */
37
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -030038 atomic_t avg_lum;
Jean-Francois Moine98819182009-01-19 07:37:33 -030039 u32 exposure;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030040
Jean-Francois Moine98819182009-01-19 07:37:33 -030041 u16 brightness;
42 u8 contrast;
43 u8 colors;
44 u8 autogain;
45 u8 blue;
46 u8 red;
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -030047 u8 gamma;
Jean-Francois Moine2797ba22009-02-05 15:12:24 -030048 u8 vflip; /* ov7630/ov7648 only */
Jean-Francois Moine878b35a2009-12-30 04:53:07 -030049 u8 sharpness;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -030050 u8 infrared; /* mt9v111 only */
Hans de Goede37c6dbe2009-06-18 07:35:36 -030051 u8 freq; /* ov76xx only */
Jean-Francois Moine71cb2762009-03-03 05:33:41 -030052 u8 quality; /* image quality */
Jean-Francois Moine77ac0ba2009-03-02 06:40:52 -030053#define QUALITY_MIN 60
54#define QUALITY_MAX 95
55#define QUALITY_DEF 80
Jean-Francois Moine71cb2762009-03-03 05:33:41 -030056 u8 jpegqual; /* webcam quality */
57
58 u8 reg18;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030059
Jean-Francois Moine98819182009-01-19 07:37:33 -030060 s8 ag_cnt;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030061#define AG_CNT_START 13
62
Jean-Francois Moine98819182009-01-19 07:37:33 -030063 u8 bridge;
Hans de Goede3647fea2008-07-15 05:36:30 -030064#define BRIDGE_SN9C102P 0
65#define BRIDGE_SN9C105 1
66#define BRIDGE_SN9C110 2
67#define BRIDGE_SN9C120 3
Jean-Francois Moine98819182009-01-19 07:37:33 -030068 u8 sensor; /* Type of image sensor chip */
Jean-François Moine11ce8842010-07-26 06:39:40 -030069 u8 i2c_addr;
70
71 u8 jpeg_hdr[JPEG_HDR_SZ];
72};
73enum sensors {
Jean-François Moine9c33afc2010-03-17 15:25:32 -030074 SENSOR_ADCM1700,
Jean-François Moinead98c0f2010-03-18 05:15:30 -030075 SENSOR_GC0307,
Jean-François Moine9c33afc2010-03-17 15:25:32 -030076 SENSOR_HV7131R,
77 SENSOR_MI0360,
78 SENSOR_MO4000,
79 SENSOR_MT9V111,
80 SENSOR_OM6802,
81 SENSOR_OV7630,
82 SENSOR_OV7648,
83 SENSOR_OV7660,
84 SENSOR_PO1030,
Jean-François Moinead98c0f2010-03-18 05:15:30 -030085 SENSOR_PO2030N,
Jean-François Moine03ed2a12010-04-25 14:45:43 -030086 SENSOR_SOI768,
Jean-François Moine9c33afc2010-03-17 15:25:32 -030087 SENSOR_SP80708,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030088};
89
90/* V4L2 controls supported by the driver */
91static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val);
92static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val);
93static int sd_setcontrast(struct gspca_dev *gspca_dev, __s32 val);
94static int sd_getcontrast(struct gspca_dev *gspca_dev, __s32 *val);
95static int sd_setcolors(struct gspca_dev *gspca_dev, __s32 val);
96static int sd_getcolors(struct gspca_dev *gspca_dev, __s32 *val);
Jean-Francois Moine403123d2008-11-26 04:46:15 -030097static int sd_setblue_balance(struct gspca_dev *gspca_dev, __s32 val);
98static int sd_getblue_balance(struct gspca_dev *gspca_dev, __s32 *val);
99static int sd_setred_balance(struct gspca_dev *gspca_dev, __s32 val);
100static int sd_getred_balance(struct gspca_dev *gspca_dev, __s32 *val);
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -0300101static int sd_setgamma(struct gspca_dev *gspca_dev, __s32 val);
102static int sd_getgamma(struct gspca_dev *gspca_dev, __s32 *val);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300103static int sd_setautogain(struct gspca_dev *gspca_dev, __s32 val);
104static int sd_getautogain(struct gspca_dev *gspca_dev, __s32 *val);
Jean-Francois Moine6c862742008-09-08 04:57:26 -0300105static int sd_setvflip(struct gspca_dev *gspca_dev, __s32 val);
106static int sd_getvflip(struct gspca_dev *gspca_dev, __s32 *val);
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300107static int sd_setsharpness(struct gspca_dev *gspca_dev, __s32 val);
108static int sd_getsharpness(struct gspca_dev *gspca_dev, __s32 *val);
Jean-Francois Moine0cae8962008-10-17 07:48:24 -0300109static int sd_setinfrared(struct gspca_dev *gspca_dev, __s32 val);
110static int sd_getinfrared(struct gspca_dev *gspca_dev, __s32 *val);
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300111static int sd_setfreq(struct gspca_dev *gspca_dev, __s32 val);
112static int sd_getfreq(struct gspca_dev *gspca_dev, __s32 *val);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300113
Marton Nemeth7e64dc42009-12-30 09:12:41 -0300114static const struct ctrl sd_ctrls[] = {
Hans de Goede97643982009-06-18 05:08:11 -0300115#define BRIGHTNESS_IDX 0
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300116 {
117 {
118 .id = V4L2_CID_BRIGHTNESS,
119 .type = V4L2_CTRL_TYPE_INTEGER,
120 .name = "Brightness",
121 .minimum = 0,
Jean-Francois Moine05b809c2008-09-03 16:47:59 -0300122#define BRIGHTNESS_MAX 0xffff
123 .maximum = BRIGHTNESS_MAX,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300124 .step = 1,
Jean-Francois Moineb1b056a2008-11-25 04:47:09 -0300125#define BRIGHTNESS_DEF 0x8000
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300126 .default_value = BRIGHTNESS_DEF,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300127 },
128 .set = sd_setbrightness,
129 .get = sd_getbrightness,
130 },
Hans de Goede97643982009-06-18 05:08:11 -0300131#define CONTRAST_IDX 1
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300132 {
133 {
134 .id = V4L2_CID_CONTRAST,
135 .type = V4L2_CTRL_TYPE_INTEGER,
136 .name = "Contrast",
137 .minimum = 0,
Jean-Francois Moine05b809c2008-09-03 16:47:59 -0300138#define CONTRAST_MAX 127
139 .maximum = CONTRAST_MAX,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300140 .step = 1,
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300141#define CONTRAST_DEF 63
142 .default_value = CONTRAST_DEF,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300143 },
144 .set = sd_setcontrast,
145 .get = sd_getcontrast,
146 },
Hans de Goede97643982009-06-18 05:08:11 -0300147#define COLOR_IDX 2
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300148 {
149 {
150 .id = V4L2_CID_SATURATION,
151 .type = V4L2_CTRL_TYPE_INTEGER,
Hans de Goede3fb4a572009-06-18 14:31:36 -0300152 .name = "Saturation",
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300153 .minimum = 0,
Jean-Francois Moine403123d2008-11-26 04:46:15 -0300154 .maximum = 40,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300155 .step = 1,
Hans de Goede3fb4a572009-06-18 14:31:36 -0300156#define COLOR_DEF 25
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300157 .default_value = COLOR_DEF,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300158 },
159 .set = sd_setcolors,
160 .get = sd_getcolors,
161 },
Hans de Goede97643982009-06-18 05:08:11 -0300162#define BLUE_BALANCE_IDX 3
Jean-Francois Moine403123d2008-11-26 04:46:15 -0300163 {
164 {
165 .id = V4L2_CID_BLUE_BALANCE,
166 .type = V4L2_CTRL_TYPE_INTEGER,
167 .name = "Blue Balance",
168 .minimum = 24,
169 .maximum = 40,
170 .step = 1,
171#define BLUE_BALANCE_DEF 32
172 .default_value = BLUE_BALANCE_DEF,
173 },
174 .set = sd_setblue_balance,
175 .get = sd_getblue_balance,
176 },
Hans de Goede97643982009-06-18 05:08:11 -0300177#define RED_BALANCE_IDX 4
Jean-Francois Moine403123d2008-11-26 04:46:15 -0300178 {
179 {
180 .id = V4L2_CID_RED_BALANCE,
181 .type = V4L2_CTRL_TYPE_INTEGER,
182 .name = "Red Balance",
183 .minimum = 24,
184 .maximum = 40,
185 .step = 1,
186#define RED_BALANCE_DEF 32
187 .default_value = RED_BALANCE_DEF,
188 },
189 .set = sd_setred_balance,
190 .get = sd_getred_balance,
191 },
Hans de Goede97643982009-06-18 05:08:11 -0300192#define GAMMA_IDX 5
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -0300193 {
194 {
195 .id = V4L2_CID_GAMMA,
196 .type = V4L2_CTRL_TYPE_INTEGER,
197 .name = "Gamma",
198 .minimum = 0,
199 .maximum = 40,
200 .step = 1,
201#define GAMMA_DEF 20
202 .default_value = GAMMA_DEF,
203 },
204 .set = sd_setgamma,
205 .get = sd_getgamma,
206 },
Hans de Goede97643982009-06-18 05:08:11 -0300207#define AUTOGAIN_IDX 6
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300208 {
209 {
210 .id = V4L2_CID_AUTOGAIN,
211 .type = V4L2_CTRL_TYPE_BOOLEAN,
212 .name = "Auto Gain",
213 .minimum = 0,
214 .maximum = 1,
215 .step = 1,
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300216#define AUTOGAIN_DEF 1
217 .default_value = AUTOGAIN_DEF,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300218 },
219 .set = sd_setautogain,
220 .get = sd_getautogain,
221 },
Jean-Francois Moine2797ba22009-02-05 15:12:24 -0300222/* ov7630/ov7648 only */
Hans de Goede97643982009-06-18 05:08:11 -0300223#define VFLIP_IDX 7
Jean-Francois Moine6c862742008-09-08 04:57:26 -0300224 {
225 {
226 .id = V4L2_CID_VFLIP,
227 .type = V4L2_CTRL_TYPE_BOOLEAN,
228 .name = "Vflip",
229 .minimum = 0,
230 .maximum = 1,
231 .step = 1,
Hans de Goedef8009522009-06-18 14:29:20 -0300232#define VFLIP_DEF 0
Jean-Francois Moine6c862742008-09-08 04:57:26 -0300233 .default_value = VFLIP_DEF,
234 },
235 .set = sd_setvflip,
236 .get = sd_getvflip,
237 },
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300238#define SHARPNESS_IDX 8
239 {
240 {
241 .id = V4L2_CID_SHARPNESS,
242 .type = V4L2_CTRL_TYPE_INTEGER,
243 .name = "Sharpness",
244 .minimum = 0,
245 .maximum = 255,
246 .step = 1,
247#define SHARPNESS_DEF 90
248 .default_value = SHARPNESS_DEF,
249 },
250 .set = sd_setsharpness,
251 .get = sd_getsharpness,
252 },
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300253/* mt9v111 only */
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300254#define INFRARED_IDX 9
Jean-Francois Moine0cae8962008-10-17 07:48:24 -0300255 {
256 {
257 .id = V4L2_CID_INFRARED,
258 .type = V4L2_CTRL_TYPE_BOOLEAN,
259 .name = "Infrared",
260 .minimum = 0,
261 .maximum = 1,
262 .step = 1,
263#define INFRARED_DEF 0
264 .default_value = INFRARED_DEF,
265 },
266 .set = sd_setinfrared,
267 .get = sd_getinfrared,
268 },
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300269/* ov7630/ov7648/ov7660 only */
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300270#define FREQ_IDX 10
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300271 {
272 {
273 .id = V4L2_CID_POWER_LINE_FREQUENCY,
274 .type = V4L2_CTRL_TYPE_MENU,
275 .name = "Light frequency filter",
276 .minimum = 0,
277 .maximum = 2, /* 0: 0, 1: 50Hz, 2:60Hz */
278 .step = 1,
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -0300279#define FREQ_DEF 1
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300280 .default_value = FREQ_DEF,
281 },
282 .set = sd_setfreq,
283 .get = sd_getfreq,
284 },
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300285};
286
Jean-Francois Moine577cbf42008-12-05 06:18:37 -0300287/* table of the disabled controls */
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300288static const __u32 ctrl_dis[] = {
289[SENSOR_ADCM1700] = (1 << AUTOGAIN_IDX) |
290 (1 << INFRARED_IDX) |
291 (1 << VFLIP_IDX) |
292 (1 << FREQ_IDX),
293
Jean-François Moinec26b12d2010-04-02 07:08:39 -0300294[SENSOR_GC0307] = (1 << INFRARED_IDX) |
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300295 (1 << VFLIP_IDX) |
296 (1 << FREQ_IDX),
297
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300298[SENSOR_HV7131R] = (1 << INFRARED_IDX) |
299 (1 << FREQ_IDX),
300
301[SENSOR_MI0360] = (1 << INFRARED_IDX) |
302 (1 << VFLIP_IDX) |
303 (1 << FREQ_IDX),
304
305[SENSOR_MO4000] = (1 << INFRARED_IDX) |
306 (1 << VFLIP_IDX) |
307 (1 << FREQ_IDX),
308
309[SENSOR_MT9V111] = (1 << VFLIP_IDX) |
310 (1 << FREQ_IDX),
311
312[SENSOR_OM6802] = (1 << INFRARED_IDX) |
313 (1 << VFLIP_IDX) |
314 (1 << FREQ_IDX),
315
316[SENSOR_OV7630] = (1 << INFRARED_IDX),
317
318[SENSOR_OV7648] = (1 << INFRARED_IDX),
319
320[SENSOR_OV7660] = (1 << AUTOGAIN_IDX) |
321 (1 << INFRARED_IDX) |
322 (1 << VFLIP_IDX),
323
324[SENSOR_PO1030] = (1 << AUTOGAIN_IDX) |
325 (1 << INFRARED_IDX) |
326 (1 << VFLIP_IDX) |
327 (1 << FREQ_IDX),
328
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300329[SENSOR_PO2030N] = (1 << AUTOGAIN_IDX) |
330 (1 << INFRARED_IDX) |
331 (1 << VFLIP_IDX) |
332 (1 << FREQ_IDX),
Jean-François Moine03ed2a12010-04-25 14:45:43 -0300333[SENSOR_SOI768] = (1 << AUTOGAIN_IDX) |
334 (1 << INFRARED_IDX) |
335 (1 << VFLIP_IDX) |
336 (1 << FREQ_IDX),
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300337
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300338[SENSOR_SP80708] = (1 << AUTOGAIN_IDX) |
339 (1 << INFRARED_IDX) |
340 (1 << VFLIP_IDX) |
341 (1 << FREQ_IDX),
Jean-Francois Moine577cbf42008-12-05 06:18:37 -0300342};
343
Jean-Francois Moine64677572009-12-20 12:31:28 -0300344static const struct v4l2_pix_format cif_mode[] = {
345 {352, 288, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
346 .bytesperline = 352,
347 .sizeimage = 352 * 288 * 4 / 8 + 590,
348 .colorspace = V4L2_COLORSPACE_JPEG,
349 .priv = 0},
350};
Jean-Francois Moinecc611b82008-12-29 07:49:41 -0300351static const struct v4l2_pix_format vga_mode[] = {
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300352 {160, 120, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
353 .bytesperline = 160,
Jean-Francois Moine5d052942008-09-03 16:48:09 -0300354 .sizeimage = 160 * 120 * 4 / 8 + 590,
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300355 .colorspace = V4L2_COLORSPACE_JPEG,
356 .priv = 2},
357 {320, 240, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
358 .bytesperline = 320,
359 .sizeimage = 320 * 240 * 3 / 8 + 590,
360 .colorspace = V4L2_COLORSPACE_JPEG,
361 .priv = 1},
362 {640, 480, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
363 .bytesperline = 640,
Hans de Goedea5d1cc32009-06-18 06:03:20 -0300364 /* Note 3 / 8 is not large enough, not even 5 / 8 is ?! */
365 .sizeimage = 640 * 480 * 3 / 4 + 590,
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300366 .colorspace = V4L2_COLORSPACE_JPEG,
367 .priv = 0},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300368};
369
Jean-Francois Moine64677572009-12-20 12:31:28 -0300370static const u8 sn_adcm1700[0x1c] = {
371/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300372 0x00, 0x43, 0x60, 0x00, 0x1a, 0x00, 0x00, 0x00,
Jean-Francois Moine64677572009-12-20 12:31:28 -0300373/* reg8 reg9 rega regb regc regd rege regf */
374 0x80, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
375/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
376 0x03, 0x00, 0x05, 0x01, 0x05, 0x16, 0x12, 0x42,
377/* reg18 reg19 reg1a reg1b */
378 0x06, 0x00, 0x00, 0x00
379};
380
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300381static const u8 sn_gc0307[0x1c] = {
382/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
383 0x00, 0x61, 0x62, 0x00, 0x1a, 0x00, 0x00, 0x00,
384/* reg8 reg9 rega regb regc regd rege regf */
385 0x80, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
386/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
387 0x03, 0x00, 0x03, 0x01, 0x08, 0x28, 0x1e, 0x02,
388/* reg18 reg19 reg1a reg1b */
389 0x06, 0x00, 0x00, 0x00
390};
391
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300392static const u8 sn_hv7131[0x1c] = {
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300393/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-François Moine19697b52010-07-14 06:33:51 -0300394 0x00, 0x03, 0x60, 0x00, 0x1a, 0x20, 0x20, 0x20,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300395/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300396 0x81, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300397/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
398 0x03, 0x00, 0x00, 0x01, 0x03, 0x28, 0x1e, 0x41,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300399/* reg18 reg19 reg1a reg1b */
400 0x0a, 0x00, 0x00, 0x00
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300401};
402
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300403static const u8 sn_mi0360[0x1c] = {
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300404/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-François Moine19697b52010-07-14 06:33:51 -0300405 0x00, 0x61, 0x40, 0x00, 0x1a, 0x20, 0x20, 0x20,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300406/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300407 0x81, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300408/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
409 0x03, 0x00, 0x00, 0x02, 0x0a, 0x28, 0x1e, 0x61,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300410/* reg18 reg19 reg1a reg1b */
411 0x06, 0x00, 0x00, 0x00
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300412};
413
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300414static const u8 sn_mo4000[0x1c] = {
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300415/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300416 0x00, 0x23, 0x60, 0x00, 0x1a, 0x00, 0x20, 0x18,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300417/* reg8 reg9 rega regb regc regd rege regf */
418 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
419/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
420 0x03, 0x00, 0x0b, 0x0f, 0x14, 0x28, 0x1e, 0x40,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300421/* reg18 reg19 reg1a reg1b */
422 0x08, 0x00, 0x00, 0x00
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300423};
424
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300425static const u8 sn_mt9v111[0x1c] = {
426/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
427 0x00, 0x61, 0x40, 0x00, 0x1a, 0x20, 0x20, 0x20,
428/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300429 0x81, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300430/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
431 0x03, 0x00, 0x00, 0x02, 0x1c, 0x28, 0x1e, 0x40,
432/* reg18 reg19 reg1a reg1b */
433 0x06, 0x00, 0x00, 0x00
434};
435
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300436static const u8 sn_om6802[0x1c] = {
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300437/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Amauri Magagna46b4f2a2009-10-17 07:21:29 -0300438 0x00, 0x23, 0x72, 0x00, 0x1a, 0x20, 0x20, 0x19,
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300439/* reg8 reg9 rega regb regc regd rege regf */
440 0x80, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
441/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
442 0x03, 0x00, 0x51, 0x01, 0x00, 0x28, 0x1e, 0x40,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300443/* reg18 reg19 reg1a reg1b */
444 0x05, 0x00, 0x00, 0x00
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300445};
446
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300447static const u8 sn_ov7630[0x1c] = {
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300448/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-François Moine0a85c742010-04-25 14:33:31 -0300449 0x00, 0x21, 0x40, 0x00, 0x1a, 0x00, 0x00, 0x00,
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300450/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300451 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300452/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
453 0x03, 0x00, 0x04, 0x01, 0x0a, 0x28, 0x1e, 0xc2,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300454/* reg18 reg19 reg1a reg1b */
455 0x0b, 0x00, 0x00, 0x00
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300456};
457
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300458static const u8 sn_ov7648[0x1c] = {
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300459/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-Francois Moine62703302008-11-11 08:42:56 -0300460 0x00, 0x63, 0x40, 0x00, 0x1a, 0x20, 0x20, 0x20,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300461/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300462 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300463/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
Jean-Francois Moine62703302008-11-11 08:42:56 -0300464 0x03, 0x00, 0x00, 0x01, 0x00, 0x28, 0x1e, 0x00,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300465/* reg18 reg19 reg1a reg1b */
466 0x0b, 0x00, 0x00, 0x00
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300467};
468
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300469static const u8 sn_ov7660[0x1c] = {
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300470/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-Francois Moinec8b9b2ca2009-04-26 14:46:12 -0300471 0x00, 0x61, 0x40, 0x00, 0x1a, 0x00, 0x00, 0x00,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300472/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moinec8b9b2ca2009-04-26 14:46:12 -0300473 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300474/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
475 0x03, 0x00, 0x01, 0x01, 0x08, 0x28, 0x1e, 0x20,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300476/* reg18 reg19 reg1a reg1b */
477 0x07, 0x00, 0x00, 0x00
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300478};
479
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -0300480static const u8 sn_po1030[0x1c] = {
481/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
482 0x00, 0x21, 0x62, 0x00, 0x1a, 0x20, 0x20, 0x20,
483/* reg8 reg9 rega regb regc regd rege regf */
484 0x81, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
485/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
486 0x03, 0x00, 0x00, 0x06, 0x06, 0x28, 0x1e, 0x00,
487/* reg18 reg19 reg1a reg1b */
488 0x07, 0x00, 0x00, 0x00
489};
490
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300491static const u8 sn_po2030n[0x1c] = {
492/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
493 0x00, 0x63, 0x40, 0x00, 0x1a, 0x00, 0x00, 0x00,
494/* reg8 reg9 rega regb regc regd rege regf */
495 0x81, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
496/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
497 0x03, 0x00, 0x00, 0x01, 0x14, 0x28, 0x1e, 0x00,
498/* reg18 reg19 reg1a reg1b */
499 0x07, 0x00, 0x00, 0x00
500};
501
Jean-François Moine03ed2a12010-04-25 14:45:43 -0300502static const u8 sn_soi768[0x1c] = {
503/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
504 0x00, 0x21, 0x40, 0x00, 0x1a, 0x00, 0x00, 0x00,
505/* reg8 reg9 rega regb regc regd rege regf */
506 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
507/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
508 0x03, 0x00, 0x00, 0x01, 0x08, 0x28, 0x1e, 0x00,
509/* reg18 reg19 reg1a reg1b */
510 0x07, 0x00, 0x00, 0x00
511};
512
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -0300513static const u8 sn_sp80708[0x1c] = {
514/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
515 0x00, 0x63, 0x60, 0x00, 0x1a, 0x20, 0x20, 0x20,
516/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300517 0x81, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -0300518/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
519 0x03, 0x00, 0x00, 0x03, 0x04, 0x28, 0x1e, 0x00,
520/* reg18 reg19 reg1a reg1b */
521 0x07, 0x00, 0x00, 0x00
522};
523
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300524/* sequence specific to the sensors - !! index = SENSOR_xxx */
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300525static const u8 *sn_tb[] = {
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300526[SENSOR_ADCM1700] = sn_adcm1700,
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300527[SENSOR_GC0307] = sn_gc0307,
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300528[SENSOR_HV7131R] = sn_hv7131,
529[SENSOR_MI0360] = sn_mi0360,
530[SENSOR_MO4000] = sn_mo4000,
531[SENSOR_MT9V111] = sn_mt9v111,
532[SENSOR_OM6802] = sn_om6802,
533[SENSOR_OV7630] = sn_ov7630,
534[SENSOR_OV7648] = sn_ov7648,
535[SENSOR_OV7660] = sn_ov7660,
536[SENSOR_PO1030] = sn_po1030,
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300537[SENSOR_PO2030N] = sn_po2030n,
Jean-François Moine03ed2a12010-04-25 14:45:43 -0300538[SENSOR_SOI768] = sn_soi768,
539[SENSOR_SP80708] = sn_sp80708,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300540};
541
Jean-Francois Moineb083b922009-02-01 14:20:07 -0300542/* default gamma table */
Jean-Francois Moine98819182009-01-19 07:37:33 -0300543static const u8 gamma_def[17] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300544 0x00, 0x2d, 0x46, 0x5a, 0x6c, 0x7c, 0x8b, 0x99,
545 0xa6, 0xb2, 0xbf, 0xca, 0xd5, 0xe0, 0xeb, 0xf5, 0xff
546};
Jean-Francois Moine64677572009-12-20 12:31:28 -0300547/* gamma for sensor ADCM1700 */
548static const u8 gamma_spec_0[17] = {
549 0x0f, 0x39, 0x5a, 0x74, 0x86, 0x95, 0xa6, 0xb4,
550 0xbd, 0xc4, 0xcc, 0xd4, 0xd5, 0xde, 0xe4, 0xed, 0xf5
551};
Jean-Francois Moineb083b922009-02-01 14:20:07 -0300552/* gamma for sensors HV7131R and MT9V111 */
553static const u8 gamma_spec_1[17] = {
554 0x08, 0x3a, 0x52, 0x65, 0x75, 0x83, 0x91, 0x9d,
555 0xa9, 0xb4, 0xbe, 0xc8, 0xd2, 0xdb, 0xe4, 0xed, 0xf5
556};
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300557/* gamma for sensor GC0307 */
Jean-Francois Moineb083b922009-02-01 14:20:07 -0300558static const u8 gamma_spec_2[17] = {
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300559 0x14, 0x37, 0x50, 0x6a, 0x7c, 0x8d, 0x9d, 0xab,
560 0xb5, 0xbf, 0xc2, 0xcb, 0xd1, 0xd6, 0xdb, 0xe1, 0xeb
561};
562/* gamma for sensor SP80708 */
563static const u8 gamma_spec_3[17] = {
Jean-Francois Moineb083b922009-02-01 14:20:07 -0300564 0x0a, 0x2d, 0x4e, 0x68, 0x7d, 0x8f, 0x9f, 0xab,
565 0xb7, 0xc2, 0xcc, 0xd3, 0xd8, 0xde, 0xe2, 0xe5, 0xe6
566};
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -0300567
Jean-Francois Moine803f9cc2008-10-04 14:17:02 -0300568/* color matrix and offsets */
Jean-Francois Moine98819182009-01-19 07:37:33 -0300569static const u8 reg84[] = {
Jean-Francois Moine803f9cc2008-10-04 14:17:02 -0300570 0x14, 0x00, 0x27, 0x00, 0x07, 0x00, /* YR YG YB gains */
571 0xe8, 0x0f, 0xda, 0x0f, 0x40, 0x00, /* UR UG UB */
572 0x3e, 0x00, 0xcd, 0x0f, 0xf7, 0x0f, /* VR VG VB */
573 0x00, 0x00, 0x00 /* YUV offsets */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300574};
Jean-Francois Moine64677572009-12-20 12:31:28 -0300575static const u8 adcm1700_sensor_init[][8] = {
576 {0xa0, 0x51, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300577 {0xb0, 0x51, 0x04, 0x08, 0x00, 0x00, 0x00, 0x10}, /* reset */
Jean-Francois Moine64677572009-12-20 12:31:28 -0300578 {0xdd, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
579 {0xb0, 0x51, 0x04, 0x00, 0x00, 0x00, 0x00, 0x10},
580 {0xdd, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
581 {0xb0, 0x51, 0x0c, 0xe0, 0x2e, 0x00, 0x00, 0x10},
582 {0xb0, 0x51, 0x10, 0x02, 0x02, 0x00, 0x00, 0x10},
583 {0xb0, 0x51, 0x14, 0x0e, 0x0e, 0x00, 0x00, 0x10},
584 {0xb0, 0x51, 0x1c, 0x00, 0x80, 0x00, 0x00, 0x10},
585 {0xb0, 0x51, 0x20, 0x01, 0x00, 0x00, 0x00, 0x10},
586 {0xdd, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
587 {0xb0, 0x51, 0x04, 0x04, 0x00, 0x00, 0x00, 0x10},
588 {0xdd, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
589 {0xb0, 0x51, 0x04, 0x01, 0x00, 0x00, 0x00, 0x10},
590 {0xa0, 0x51, 0xfe, 0x10, 0x00, 0x00, 0x00, 0x10},
591 {0xb0, 0x51, 0x14, 0x01, 0x00, 0x00, 0x00, 0x10},
592 {0xb0, 0x51, 0x32, 0x00, 0x00, 0x00, 0x00, 0x10},
593 {}
594};
595static const u8 adcm1700_sensor_param1[][8] = {
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300596 {0xb0, 0x51, 0x26, 0xf9, 0x01, 0x00, 0x00, 0x10}, /* exposure? */
Jean-Francois Moine64677572009-12-20 12:31:28 -0300597 {0xd0, 0x51, 0x1e, 0x8e, 0x8e, 0x8e, 0x8e, 0x10},
598
599 {0xa0, 0x51, 0xfe, 0x01, 0x00, 0x00, 0x00, 0x10},
600 {0xb0, 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10},
601 {0xa0, 0x51, 0xfe, 0x10, 0x00, 0x00, 0x00, 0x10},
602 {0xb0, 0x51, 0x32, 0x00, 0x72, 0x00, 0x00, 0x10},
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300603 {0xd0, 0x51, 0x1e, 0xbe, 0xd7, 0xe8, 0xbe, 0x10}, /* exposure? */
Jean-Francois Moine64677572009-12-20 12:31:28 -0300604
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300605 {0xa0, 0x51, 0xfe, 0x01, 0x00, 0x00, 0x00, 0x10},
606 {0xb0, 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10},
607 {0xa0, 0x51, 0xfe, 0x10, 0x00, 0x00, 0x00, 0x10},
608 {0xb0, 0x51, 0x32, 0x00, 0xa2, 0x00, 0x00, 0x10},
Jean-Francois Moine64677572009-12-20 12:31:28 -0300609 {}
610};
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300611static const u8 gc0307_sensor_init[][8] = {
612 {0xa0, 0x21, 0x43, 0x00, 0x00, 0x00, 0x00, 0x10},
613 {0xa0, 0x21, 0x44, 0xa2, 0x00, 0x00, 0x00, 0x10},
614 {0xa0, 0x21, 0x01, 0x6a, 0x00, 0x00, 0x00, 0x10},
615 {0xa0, 0x21, 0x02, 0x70, 0x00, 0x00, 0x00, 0x10},
616 {0xa0, 0x21, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
617 {0xa0, 0x21, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x10},
618 {0xa0, 0x21, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x10},
619 {0xa0, 0x21, 0x11, 0x05, 0x00, 0x00, 0x00, 0x10},
620 {0xa0, 0x21, 0x05, 0x00, 0x00, 0x00, 0x00, 0x10},
621 {0xa0, 0x21, 0x06, 0x00, 0x00, 0x00, 0x00, 0x10},
622 {0xa0, 0x21, 0x07, 0x00, 0x00, 0x00, 0x00, 0x10},
623 {0xa0, 0x21, 0x08, 0x02, 0x00, 0x00, 0x00, 0x10},
624 {0xa0, 0x21, 0x09, 0x01, 0x00, 0x00, 0x00, 0x10},
625 {0xa0, 0x21, 0x0a, 0xe8, 0x00, 0x00, 0x00, 0x10},
626 {0xa0, 0x21, 0x0b, 0x02, 0x00, 0x00, 0x00, 0x10},
627 {0xa0, 0x21, 0x0c, 0x80, 0x00, 0x00, 0x00, 0x10},
628 {0xa0, 0x21, 0x0d, 0x22, 0x00, 0x00, 0x00, 0x10},
629 {0xa0, 0x21, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x10},
630 {0xa0, 0x21, 0x0f, 0xb2, 0x00, 0x00, 0x00, 0x10},
631 {0xa0, 0x21, 0x12, 0x70, 0x00, 0x00, 0x00, 0x10},
632 {0xdd, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /*delay 10ms*/
633 {0xa0, 0x21, 0x13, 0x00, 0x00, 0x00, 0x00, 0x10},
634 {0xa0, 0x21, 0x15, 0xb8, 0x00, 0x00, 0x00, 0x10},
635 {0xa0, 0x21, 0x16, 0x13, 0x00, 0x00, 0x00, 0x10},
636 {0xa0, 0x21, 0x17, 0x52, 0x00, 0x00, 0x00, 0x10},
637 {0xa0, 0x21, 0x18, 0x50, 0x00, 0x00, 0x00, 0x10},
638 {0xa0, 0x21, 0x1e, 0x0d, 0x00, 0x00, 0x00, 0x10},
639 {0xa0, 0x21, 0x1f, 0x32, 0x00, 0x00, 0x00, 0x10},
640 {0xa0, 0x21, 0x61, 0x90, 0x00, 0x00, 0x00, 0x10},
641 {0xa0, 0x21, 0x63, 0x70, 0x00, 0x00, 0x00, 0x10},
642 {0xa0, 0x21, 0x65, 0x98, 0x00, 0x00, 0x00, 0x10},
643 {0xa0, 0x21, 0x67, 0x90, 0x00, 0x00, 0x00, 0x10},
644 {0xa0, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
645 {0xa0, 0x21, 0x04, 0x96, 0x00, 0x00, 0x00, 0x10},
646 {0xa0, 0x21, 0x45, 0x27, 0x00, 0x00, 0x00, 0x10},
647 {0xa0, 0x21, 0x47, 0x2c, 0x00, 0x00, 0x00, 0x10},
648 {0xa0, 0x21, 0x43, 0x47, 0x00, 0x00, 0x00, 0x10},
649 {0xa0, 0x21, 0x44, 0xd8, 0x00, 0x00, 0x00, 0x10},
650 {}
651};
652static const u8 gc0307_sensor_param1[][8] = {
653 {0xa0, 0x21, 0x68, 0x13, 0x00, 0x00, 0x00, 0x10},
654 {0xd0, 0x21, 0x61, 0x80, 0x00, 0x80, 0x00, 0x10},
655 {0xc0, 0x21, 0x65, 0x80, 0x00, 0x80, 0x00, 0x10},
656 {0xc0, 0x21, 0x63, 0xa0, 0x00, 0xa6, 0x00, 0x10},
657/*param3*/
658 {0xa0, 0x21, 0x01, 0x6e, 0x00, 0x00, 0x00, 0x10},
659 {0xa0, 0x21, 0x02, 0x88, 0x00, 0x00, 0x00, 0x10},
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300660 {}
661};
662
Jean-Francois Moine98819182009-01-19 07:37:33 -0300663static const u8 hv7131r_sensor_init[][8] = {
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300664 {0xc1, 0x11, 0x01, 0x08, 0x01, 0x00, 0x00, 0x10},
665 {0xb1, 0x11, 0x34, 0x17, 0x7f, 0x00, 0x00, 0x10},
666 {0xd1, 0x11, 0x40, 0xff, 0x7f, 0x7f, 0x7f, 0x10},
667/* {0x91, 0x11, 0x44, 0x00, 0x00, 0x00, 0x00, 0x10}, */
668 {0xd1, 0x11, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
669 {0xd1, 0x11, 0x14, 0x01, 0xe2, 0x02, 0x82, 0x10},
670/* {0x91, 0x11, 0x18, 0x00, 0x00, 0x00, 0x00, 0x10}, */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300671
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300672 {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
673 {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
674 {0xc1, 0x11, 0x25, 0x00, 0x61, 0xa8, 0x00, 0x10},
675 {0xa1, 0x11, 0x30, 0x22, 0x00, 0x00, 0x00, 0x10},
676 {0xc1, 0x11, 0x31, 0x20, 0x2e, 0x20, 0x00, 0x10},
677 {0xc1, 0x11, 0x25, 0x00, 0xc3, 0x50, 0x00, 0x10},
678 {0xa1, 0x11, 0x30, 0x07, 0x00, 0x00, 0x00, 0x10}, /* gain14 */
679 {0xc1, 0x11, 0x31, 0x10, 0x10, 0x10, 0x00, 0x10}, /* r g b 101a10 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300680
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300681 {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
682 {0xa1, 0x11, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine7fb101a2009-10-22 06:27:14 -0300683 {0xa1, 0x11, 0x21, 0xd0, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300684 {0xa1, 0x11, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
685 {0xa1, 0x11, 0x23, 0x09, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300686
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300687 {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
688 {0xa1, 0x11, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
689 {0xa1, 0x11, 0x21, 0xd0, 0x00, 0x00, 0x00, 0x10},
690 {0xa1, 0x11, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
691 {0xa1, 0x11, 0x23, 0x10, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine23a98272009-11-02 09:10:25 -0300692 {0xa1, 0x11, 0x01, 0x18, 0x00, 0x00, 0x00, 0x10},
693 /* set sensor clock */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300694 {}
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300695};
Jean-Francois Moine98819182009-01-19 07:37:33 -0300696static const u8 mi0360_sensor_init[][8] = {
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300697 {0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10},
Jean-Francois Moine98819182009-01-19 07:37:33 -0300698 {0xb1, 0x5d, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x10},
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300699 {0xb1, 0x5d, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300700 {0xd1, 0x5d, 0x01, 0x00, 0x08, 0x00, 0x16, 0x10},
701 {0xd1, 0x5d, 0x03, 0x01, 0xe2, 0x02, 0x82, 0x10},
702 {0xd1, 0x5d, 0x05, 0x00, 0x09, 0x00, 0x53, 0x10},
703 {0xb1, 0x5d, 0x0d, 0x00, 0x02, 0x00, 0x00, 0x10},
704 {0xd1, 0x5d, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x10},
705 {0xd1, 0x5d, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x10},
706 {0xd1, 0x5d, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x10},
707 {0xd1, 0x5d, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
708 {0xd1, 0x5d, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
709 {0xd1, 0x5d, 0x14, 0x00, 0x00, 0x00, 0x00, 0x10},
710 {0xd1, 0x5d, 0x16, 0x00, 0x00, 0x00, 0x00, 0x10},
711 {0xd1, 0x5d, 0x18, 0x00, 0x00, 0x00, 0x00, 0x10},
712 {0xd1, 0x5d, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x10},
713 {0xd1, 0x5d, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x10},
714 {0xb1, 0x5d, 0x32, 0x00, 0x00, 0x00, 0x00, 0x10},
715 {0xd1, 0x5d, 0x20, 0x91, 0x01, 0x00, 0x00, 0x10},
716 {0xd1, 0x5d, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
717 {0xd1, 0x5d, 0x24, 0x00, 0x00, 0x00, 0x00, 0x10},
718 {0xd1, 0x5d, 0x26, 0x00, 0x00, 0x00, 0x24, 0x10},
Jean-Francois Moine98819182009-01-19 07:37:33 -0300719 {0xd1, 0x5d, 0x2f, 0xf7, 0xB0, 0x00, 0x04, 0x10},
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300720 {0xd1, 0x5d, 0x31, 0x00, 0x00, 0x00, 0x00, 0x10},
721 {0xd1, 0x5d, 0x33, 0x00, 0x00, 0x01, 0x00, 0x10},
722 {0xb1, 0x5d, 0x3d, 0x06, 0x8f, 0x00, 0x00, 0x10},
723 {0xd1, 0x5d, 0x40, 0x01, 0xe0, 0x00, 0xd1, 0x10},
724 {0xb1, 0x5d, 0x44, 0x00, 0x82, 0x00, 0x00, 0x10},
725 {0xd1, 0x5d, 0x58, 0x00, 0x78, 0x00, 0x43, 0x10},
726 {0xd1, 0x5d, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x10},
727 {0xd1, 0x5d, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x10},
728 {0xd1, 0x5d, 0x5e, 0x00, 0x00, 0xa3, 0x1d, 0x10},
729 {0xb1, 0x5d, 0x62, 0x04, 0x11, 0x00, 0x00, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300730
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300731 {0xb1, 0x5d, 0x20, 0x91, 0x01, 0x00, 0x00, 0x10},
732 {0xb1, 0x5d, 0x20, 0x11, 0x01, 0x00, 0x00, 0x10},
733 {0xb1, 0x5d, 0x09, 0x00, 0x64, 0x00, 0x00, 0x10},
734 {0xd1, 0x5d, 0x2b, 0x00, 0xa0, 0x00, 0xb0, 0x10},
735 {0xd1, 0x5d, 0x2d, 0x00, 0xa0, 0x00, 0xa0, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300736
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300737 {0xb1, 0x5d, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x10}, /* sensor clck ?2 */
738 {0xb1, 0x5d, 0x06, 0x00, 0x30, 0x00, 0x00, 0x10},
739 {0xb1, 0x5d, 0x05, 0x00, 0x0a, 0x00, 0x00, 0x10},
740 {0xb1, 0x5d, 0x09, 0x02, 0x35, 0x00, 0x00, 0x10}, /* exposure 2 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300741
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300742 {0xd1, 0x5d, 0x2b, 0x00, 0xb9, 0x00, 0xe3, 0x10},
743 {0xd1, 0x5d, 0x2d, 0x00, 0x5f, 0x00, 0xb9, 0x10}, /* 42 */
744/* {0xb1, 0x5d, 0x35, 0x00, 0x67, 0x00, 0x00, 0x10}, * gain orig */
745/* {0xb1, 0x5d, 0x35, 0x00, 0x20, 0x00, 0x00, 0x10}, * gain */
746 {0xb1, 0x5d, 0x07, 0x00, 0x03, 0x00, 0x00, 0x10}, /* update */
747 {0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10}, /* sensor on */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300748 {}
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300749};
Jean-Francois Moine98819182009-01-19 07:37:33 -0300750static const u8 mo4000_sensor_init[][8] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300751 {0xa1, 0x21, 0x01, 0x02, 0x00, 0x00, 0x00, 0x10},
752 {0xa1, 0x21, 0x02, 0x00, 0x00, 0x00, 0x00, 0x10},
753 {0xa1, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
754 {0xa1, 0x21, 0x04, 0x00, 0x00, 0x00, 0x00, 0x10},
755 {0xa1, 0x21, 0x05, 0x00, 0x00, 0x00, 0x00, 0x10},
756 {0xa1, 0x21, 0x05, 0x04, 0x00, 0x00, 0x00, 0x10},
757 {0xa1, 0x21, 0x06, 0x80, 0x00, 0x00, 0x00, 0x10},
758 {0xa1, 0x21, 0x06, 0x81, 0x00, 0x00, 0x00, 0x10},
759 {0xa1, 0x21, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x10},
760 {0xa1, 0x21, 0x11, 0x00, 0x00, 0x00, 0x00, 0x10},
761 {0xa1, 0x21, 0x11, 0x20, 0x00, 0x00, 0x00, 0x10},
762 {0xa1, 0x21, 0x11, 0x30, 0x00, 0x00, 0x00, 0x10},
763 {0xa1, 0x21, 0x11, 0x38, 0x00, 0x00, 0x00, 0x10},
764 {0xa1, 0x21, 0x11, 0x38, 0x00, 0x00, 0x00, 0x10},
765 {0xa1, 0x21, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
766 {0xa1, 0x21, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
767 {0xa1, 0x21, 0x0f, 0x20, 0x00, 0x00, 0x00, 0x10},
768 {0xa1, 0x21, 0x10, 0x20, 0x00, 0x00, 0x00, 0x10},
769 {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
770 {0xa1, 0x21, 0x11, 0x38, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300771 {}
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300772};
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300773static const u8 mt9v111_sensor_init[][8] = {
774 {0xb1, 0x5c, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x10}, /* reset? */
Jean-Francois Moine23a98272009-11-02 09:10:25 -0300775 {0xdd, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300776 {0xb1, 0x5c, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x10},
777 {0xb1, 0x5c, 0x01, 0x00, 0x01, 0x00, 0x00, 0x10}, /* IFP select */
778 {0xb1, 0x5c, 0x08, 0x04, 0x80, 0x00, 0x00, 0x10}, /* output fmt ctrl */
779 {0xb1, 0x5c, 0x06, 0x00, 0x00, 0x00, 0x00, 0x10}, /* op mode ctrl */
Jean-Francois Moine2687a2f2009-02-01 14:48:55 -0300780 {0xb1, 0x5c, 0x02, 0x00, 0x16, 0x00, 0x00, 0x10},
781 {0xb1, 0x5c, 0x03, 0x01, 0xe1, 0x00, 0x00, 0x10},
782 {0xb1, 0x5c, 0x04, 0x02, 0x81, 0x00, 0x00, 0x10},
783 {0xb1, 0x5c, 0x05, 0x00, 0x04, 0x00, 0x00, 0x10},
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300784 {0xb1, 0x5c, 0x01, 0x00, 0x04, 0x00, 0x00, 0x10}, /* sensor select */
Jean-Francois Moine2687a2f2009-02-01 14:48:55 -0300785 {0xb1, 0x5c, 0x02, 0x00, 0x16, 0x00, 0x00, 0x10},
786 {0xb1, 0x5c, 0x03, 0x01, 0xe6, 0x00, 0x00, 0x10},
787 {0xb1, 0x5c, 0x04, 0x02, 0x86, 0x00, 0x00, 0x10},
788 {0xb1, 0x5c, 0x05, 0x00, 0x04, 0x00, 0x00, 0x10},
789 {0xb1, 0x5c, 0x06, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300790 {0xb1, 0x5c, 0x08, 0x00, 0x08, 0x00, 0x00, 0x10}, /* row start */
Jean-Francois Moine2687a2f2009-02-01 14:48:55 -0300791 {0xb1, 0x5c, 0x0e, 0x00, 0x08, 0x00, 0x00, 0x10},
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300792 {0xb1, 0x5c, 0x02, 0x00, 0x16, 0x00, 0x00, 0x10}, /* col start */
793 {0xb1, 0x5c, 0x03, 0x01, 0xe7, 0x00, 0x00, 0x10}, /* window height */
794 {0xb1, 0x5c, 0x04, 0x02, 0x87, 0x00, 0x00, 0x10}, /* window width */
795 {0xb1, 0x5c, 0x07, 0x30, 0x02, 0x00, 0x00, 0x10}, /* output ctrl */
796 {0xb1, 0x5c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x10}, /* shutter delay */
797 {0xb1, 0x5c, 0x12, 0x00, 0xb0, 0x00, 0x00, 0x10}, /* zoom col start */
798 {0xb1, 0x5c, 0x13, 0x00, 0x7c, 0x00, 0x00, 0x10}, /* zoom row start */
799 {0xb1, 0x5c, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x10}, /* digital zoom */
800 {0xb1, 0x5c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10}, /* read mode */
801 {0xb1, 0x5c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300802 {}
803};
804static const u8 mt9v111_sensor_param1[][8] = {
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300805 {0xb1, 0x5c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
806 {0xb1, 0x5c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine2687a2f2009-02-01 14:48:55 -0300807 {0xb1, 0x5c, 0x09, 0x01, 0x2c, 0x00, 0x00, 0x10},
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300808 {0xd1, 0x5c, 0x2b, 0x00, 0x33, 0x00, 0xa0, 0x10}, /* green1 gain */
809 {0xd1, 0x5c, 0x2d, 0x00, 0xa0, 0x00, 0x33, 0x10}, /* red gain */
810 /*******/
811 {0xb1, 0x5c, 0x06, 0x00, 0x1e, 0x00, 0x00, 0x10}, /* vert blanking */
812 {0xb1, 0x5c, 0x05, 0x00, 0x0a, 0x00, 0x00, 0x10}, /* horiz blanking */
813 {0xd1, 0x5c, 0x2c, 0x00, 0xad, 0x00, 0xad, 0x10}, /* blue gain */
814 {0xb1, 0x5c, 0x35, 0x01, 0xc0, 0x00, 0x00, 0x10}, /* global gain */
815 {}
816};
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300817static const u8 om6802_init0[2][8] = {
818/*fixme: variable*/
819 {0xa0, 0x34, 0x29, 0x0e, 0x00, 0x00, 0x00, 0x10},
820 {0xa0, 0x34, 0x23, 0xb0, 0x00, 0x00, 0x00, 0x10},
821};
Jean-Francois Moine98819182009-01-19 07:37:33 -0300822static const u8 om6802_sensor_init[][8] = {
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300823 {0xa0, 0x34, 0xdf, 0x6d, 0x00, 0x00, 0x00, 0x10},
824 /* factory mode */
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300825 {0xa0, 0x34, 0xdd, 0x18, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moined5aa3852009-11-07 06:10:08 -0300826 /* output raw RGB */
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300827 {0xa0, 0x34, 0x5a, 0xc0, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300828/* {0xa0, 0x34, 0xfb, 0x11, 0x00, 0x00, 0x00, 0x10}, */
829 {0xa0, 0x34, 0xf0, 0x04, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moined5aa3852009-11-07 06:10:08 -0300830 /* auto-exposure speed (0) / white balance mode (auto RGB) */
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300831/* {0xa0, 0x34, 0xf1, 0x02, 0x00, 0x00, 0x00, 0x10},
832 * set color mode */
833/* {0xa0, 0x34, 0xfe, 0x5b, 0x00, 0x00, 0x00, 0x10},
834 * max AGC value in AE */
835/* {0xa0, 0x34, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x10},
836 * preset AGC */
837/* {0xa0, 0x34, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x10},
838 * preset brightness */
839/* {0xa0, 0x34, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x10},
840 * preset contrast */
841/* {0xa0, 0x34, 0xe8, 0x31, 0x00, 0x00, 0x00, 0x10},
842 * preset gamma */
843 {0xa0, 0x34, 0xe9, 0x0f, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moined5aa3852009-11-07 06:10:08 -0300844 /* luminance mode (0x4f -> AutoExpo on) */
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300845 {0xa0, 0x34, 0xe4, 0xff, 0x00, 0x00, 0x00, 0x10},
846 /* preset shutter */
847/* {0xa0, 0x34, 0xef, 0x00, 0x00, 0x00, 0x00, 0x10},
848 * auto frame rate */
849/* {0xa0, 0x34, 0xfb, 0xee, 0x00, 0x00, 0x00, 0x10}, */
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300850 {0xa0, 0x34, 0x5d, 0x80, 0x00, 0x00, 0x00, 0x10},
851 {}
852};
853static const u8 om6802_sensor_param1[][8] = {
854 {0xa0, 0x34, 0x71, 0x84, 0x00, 0x00, 0x00, 0x10},
855 {0xa0, 0x34, 0x72, 0x05, 0x00, 0x00, 0x00, 0x10},
856 {0xa0, 0x34, 0x68, 0x80, 0x00, 0x00, 0x00, 0x10},
857 {0xa0, 0x34, 0x69, 0x01, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300858 {}
859};
Jean-Francois Moine98819182009-01-19 07:37:33 -0300860static const u8 ov7630_sensor_init[][8] = {
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300861 {0xa1, 0x21, 0x76, 0x01, 0x00, 0x00, 0x00, 0x10},
862 {0xa1, 0x21, 0x12, 0xc8, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine23a98272009-11-02 09:10:25 -0300863 {0xdd, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300864 {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
865 {0xa1, 0x21, 0x12, 0xc8, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine23a98272009-11-02 09:10:25 -0300866 {0xdd, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300867 {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine05b809c2008-09-03 16:47:59 -0300868/* win: i2c_r from 00 to 80 */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300869 {0xd1, 0x21, 0x03, 0x80, 0x10, 0x20, 0x80, 0x10},
870 {0xb1, 0x21, 0x0c, 0x20, 0x20, 0x00, 0x00, 0x10},
Hans de Goedecc7b5b52009-06-18 05:14:42 -0300871/* HDG: 0x11 was 0x00 change to 0x01 for better exposure (15 fps instead of 30)
872 0x13 was 0xc0 change to 0xc3 for auto gain and exposure */
873 {0xd1, 0x21, 0x11, 0x01, 0x48, 0xc3, 0x00, 0x10},
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300874 {0xb1, 0x21, 0x15, 0x80, 0x03, 0x00, 0x00, 0x10},
875 {0xd1, 0x21, 0x17, 0x1b, 0xbd, 0x05, 0xf6, 0x10},
876 {0xa1, 0x21, 0x1b, 0x04, 0x00, 0x00, 0x00, 0x10},
877 {0xd1, 0x21, 0x1f, 0x00, 0x80, 0x80, 0x80, 0x10},
878 {0xd1, 0x21, 0x23, 0xde, 0x10, 0x8a, 0xa0, 0x10},
879 {0xc1, 0x21, 0x27, 0xca, 0xa2, 0x74, 0x00, 0x10},
880 {0xd1, 0x21, 0x2a, 0x88, 0x00, 0x88, 0x01, 0x10},
881 {0xc1, 0x21, 0x2e, 0x80, 0x00, 0x18, 0x00, 0x10},
882 {0xa1, 0x21, 0x21, 0x08, 0x00, 0x00, 0x00, 0x10},
883 {0xa1, 0x21, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
884 {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10},
885 {0xb1, 0x21, 0x32, 0xc2, 0x08, 0x00, 0x00, 0x10},
886 {0xb1, 0x21, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x10},
887 {0xd1, 0x21, 0x60, 0x05, 0x40, 0x12, 0x57, 0x10},
888 {0xa1, 0x21, 0x64, 0x73, 0x00, 0x00, 0x00, 0x10},
889 {0xd1, 0x21, 0x65, 0x00, 0x55, 0x01, 0xac, 0x10},
890 {0xa1, 0x21, 0x69, 0x38, 0x00, 0x00, 0x00, 0x10},
891 {0xd1, 0x21, 0x6f, 0x1f, 0x01, 0x00, 0x10, 0x10},
892 {0xd1, 0x21, 0x73, 0x50, 0x20, 0x02, 0x01, 0x10},
893 {0xd1, 0x21, 0x77, 0xf3, 0x90, 0x98, 0x98, 0x10},
894 {0xc1, 0x21, 0x7b, 0x00, 0x4c, 0xf7, 0x00, 0x10},
895 {0xd1, 0x21, 0x17, 0x1b, 0xbd, 0x05, 0xf6, 0x10},
896 {0xa1, 0x21, 0x1b, 0x04, 0x00, 0x00, 0x00, 0x10},
Jean-François Moinebdd2b932010-04-25 14:23:39 -0300897 {}
898};
899static const u8 ov7630_sensor_param1[][8] = {
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300900 {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
901 {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
902/*fixme: + 0x12, 0x04*/
Jean-Francois Moine6c862742008-09-08 04:57:26 -0300903/* {0xa1, 0x21, 0x75, 0x82, 0x00, 0x00, 0x00, 0x10}, * COMN
904 * set by setvflip */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300905 {0xa1, 0x21, 0x10, 0x32, 0x00, 0x00, 0x00, 0x10},
906 {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
907 {0xb1, 0x21, 0x01, 0x80, 0x80, 0x00, 0x00, 0x10},
Jean-Francois Moine05b809c2008-09-03 16:47:59 -0300908/* */
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300909/* {0xa1, 0x21, 0x2a, 0x88, 0x00, 0x00, 0x00, 0x10}, * set by setfreq */
910/* {0xa1, 0x21, 0x2b, 0x34, 0x00, 0x00, 0x00, 0x10}, * set by setfreq */
Jean-Francois Moine05b809c2008-09-03 16:47:59 -0300911/* */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300912 {0xa1, 0x21, 0x10, 0x83, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine91de65a2008-09-03 17:12:18 -0300913/* {0xb1, 0x21, 0x01, 0x88, 0x70, 0x00, 0x00, 0x10}, */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300914 {}
915};
Jean-Francois Moine62703302008-11-11 08:42:56 -0300916
Jean-Francois Moine98819182009-01-19 07:37:33 -0300917static const u8 ov7648_sensor_init[][8] = {
Jean-Francois Moine62703302008-11-11 08:42:56 -0300918 {0xa1, 0x21, 0x76, 0x00, 0x00, 0x00, 0x00, 0x10},
919 {0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10}, /* reset */
Jean-Francois Moine23a98272009-11-02 09:10:25 -0300920 {0xdd, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
Jean-Francois Moine62703302008-11-11 08:42:56 -0300921 {0xa1, 0x21, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
922 {0xd1, 0x21, 0x03, 0xa4, 0x30, 0x88, 0x00, 0x10},
923 {0xb1, 0x21, 0x11, 0x80, 0x08, 0x00, 0x00, 0x10},
924 {0xc1, 0x21, 0x13, 0xa0, 0x04, 0x84, 0x00, 0x10},
925 {0xd1, 0x21, 0x17, 0x1a, 0x02, 0xba, 0xf4, 0x10},
926 {0xa1, 0x21, 0x1b, 0x04, 0x00, 0x00, 0x00, 0x10},
927 {0xd1, 0x21, 0x1f, 0x41, 0xc0, 0x80, 0x80, 0x10},
928 {0xd1, 0x21, 0x23, 0xde, 0xa0, 0x80, 0x32, 0x10},
929 {0xd1, 0x21, 0x27, 0xfe, 0xa0, 0x00, 0x91, 0x10},
930 {0xd1, 0x21, 0x2b, 0x00, 0x88, 0x85, 0x80, 0x10},
931 {0xc1, 0x21, 0x2f, 0x9c, 0x00, 0xc4, 0x00, 0x10},
932 {0xd1, 0x21, 0x60, 0xa6, 0x60, 0x88, 0x12, 0x10},
933 {0xd1, 0x21, 0x64, 0x88, 0x00, 0x00, 0x94, 0x10},
934 {0xd1, 0x21, 0x68, 0x7a, 0x0c, 0x00, 0x00, 0x10},
935 {0xd1, 0x21, 0x6c, 0x11, 0x33, 0x22, 0x00, 0x10},
936 {0xd1, 0x21, 0x70, 0x11, 0x00, 0x10, 0x50, 0x10},
937 {0xd1, 0x21, 0x74, 0x20, 0x06, 0x00, 0xb5, 0x10},
938 {0xd1, 0x21, 0x78, 0x8a, 0x00, 0x00, 0x00, 0x10},
939 {0xb1, 0x21, 0x7c, 0x00, 0x43, 0x00, 0x00, 0x10},
940
941 {0xd1, 0x21, 0x21, 0x86, 0x00, 0xde, 0xa0, 0x10},
942/* {0xd1, 0x21, 0x25, 0x80, 0x32, 0xfe, 0xa0, 0x10}, jfm done */
943/* {0xd1, 0x21, 0x29, 0x00, 0x91, 0x00, 0x88, 0x10}, jfm done */
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300944/* {0xb1, 0x21, 0x2d, 0x85, 0x00, 0x00, 0x00, 0x10}, set by setfreq */
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300945 {}
946};
947static const u8 ov7648_sensor_param1[][8] = {
Jean-Francois Moine62703302008-11-11 08:42:56 -0300948/* {0xa1, 0x21, 0x12, 0x08, 0x00, 0x00, 0x00, 0x10}, jfm done */
Jean-Francois Moine2797ba22009-02-05 15:12:24 -0300949/* {0xa1, 0x21, 0x75, 0x06, 0x00, 0x00, 0x00, 0x10}, * COMN
950 * set by setvflip */
Jean-Francois Moine62703302008-11-11 08:42:56 -0300951 {0xa1, 0x21, 0x19, 0x02, 0x00, 0x00, 0x00, 0x10},
952 {0xa1, 0x21, 0x10, 0x32, 0x00, 0x00, 0x00, 0x10},
953/* {0xa1, 0x21, 0x16, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
954/* {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10}, * GAIN - def */
955/* {0xb1, 0x21, 0x01, 0x6c, 0x6c, 0x00, 0x00, 0x10}, * B R - def: 80 */
956/*...*/
957 {0xa1, 0x21, 0x11, 0x81, 0x00, 0x00, 0x00, 0x10}, /* CLKRC */
958/* {0xa1, 0x21, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
959/* {0xa1, 0x21, 0x16, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
960/* {0xa1, 0x21, 0x2a, 0x91, 0x00, 0x00, 0x00, 0x10}, jfm done */
961/* {0xa1, 0x21, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
962/* {0xb1, 0x21, 0x01, 0x64, 0x84, 0x00, 0x00, 0x10}, * B R - def: 80 */
963
964 {}
965};
966
Jean-Francois Moine98819182009-01-19 07:37:33 -0300967static const u8 ov7660_sensor_init[][8] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300968 {0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10}, /* reset SCCB */
Jean-Francois Moine23a98272009-11-02 09:10:25 -0300969 {0xdd, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300970 {0xa1, 0x21, 0x12, 0x05, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine738608a2008-07-28 06:41:51 -0300971 /* Outformat = rawRGB */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300972 {0xa1, 0x21, 0x13, 0xb8, 0x00, 0x00, 0x00, 0x10}, /* init COM8 */
Jean-Francois Moined8f400e2009-07-08 06:33:44 -0300973 {0xd1, 0x21, 0x00, 0x01, 0x74, 0x92, 0x00, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300974 /* GAIN BLUE RED VREF */
975 {0xd1, 0x21, 0x04, 0x00, 0x7d, 0x62, 0x00, 0x10},
976 /* COM 1 BAVE GEAVE AECHH */
977 {0xb1, 0x21, 0x08, 0x83, 0x01, 0x00, 0x00, 0x10}, /* RAVE COM2 */
978 {0xd1, 0x21, 0x0c, 0x00, 0x08, 0x04, 0x4f, 0x10}, /* COM 3 4 5 6 */
Jean-Francois Moine47f7f6f2009-08-25 06:14:54 -0300979 {0xd1, 0x21, 0x10, 0x7f, 0x40, 0x05, 0xff, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300980 /* AECH CLKRC COM7 COM8 */
981 {0xc1, 0x21, 0x14, 0x2c, 0x00, 0x02, 0x00, 0x10}, /* COM9 COM10 */
982 {0xd1, 0x21, 0x17, 0x10, 0x60, 0x02, 0x7b, 0x10},
983 /* HSTART HSTOP VSTRT VSTOP */
984 {0xa1, 0x21, 0x1b, 0x02, 0x00, 0x00, 0x00, 0x10}, /* PSHFT */
985 {0xb1, 0x21, 0x1e, 0x01, 0x0e, 0x00, 0x00, 0x10}, /* MVFP LAEC */
986 {0xd1, 0x21, 0x20, 0x07, 0x07, 0x07, 0x07, 0x10},
987 /* BOS GBOS GROS ROS (BGGR offset) */
Jean-Francois Moine738608a2008-07-28 06:41:51 -0300988/* {0xd1, 0x21, 0x24, 0x68, 0x58, 0xd4, 0x80, 0x10}, */
989 {0xd1, 0x21, 0x24, 0x78, 0x68, 0xd4, 0x80, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300990 /* AEW AEB VPT BBIAS */
991 {0xd1, 0x21, 0x28, 0x80, 0x30, 0x00, 0x00, 0x10},
992 /* GbBIAS RSVD EXHCH EXHCL */
993 {0xd1, 0x21, 0x2c, 0x80, 0x00, 0x00, 0x62, 0x10},
994 /* RBIAS ADVFL ASDVFH YAVE */
995 {0xc1, 0x21, 0x30, 0x08, 0x30, 0xb4, 0x00, 0x10},
996 /* HSYST HSYEN HREF */
997 {0xd1, 0x21, 0x33, 0x00, 0x07, 0x84, 0x00, 0x10}, /* reserved */
998 {0xd1, 0x21, 0x37, 0x0c, 0x02, 0x43, 0x00, 0x10},
999 /* ADC ACOM OFON TSLB */
1000 {0xd1, 0x21, 0x3b, 0x02, 0x6c, 0x19, 0x0e, 0x10},
1001 /* COM11 COM12 COM13 COM14 */
1002 {0xd1, 0x21, 0x3f, 0x41, 0xc1, 0x22, 0x08, 0x10},
1003 /* EDGE COM15 COM16 COM17 */
1004 {0xd1, 0x21, 0x43, 0xf0, 0x10, 0x78, 0xa8, 0x10}, /* reserved */
1005 {0xd1, 0x21, 0x47, 0x60, 0x80, 0x00, 0x00, 0x10}, /* reserved */
1006 {0xd1, 0x21, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x10}, /* reserved */
1007 {0xd1, 0x21, 0x4f, 0x46, 0x36, 0x0f, 0x17, 0x10}, /* MTX 1 2 3 4 */
1008 {0xd1, 0x21, 0x53, 0x7f, 0x96, 0x40, 0x40, 0x10}, /* MTX 5 6 7 8 */
1009 {0xb1, 0x21, 0x57, 0x40, 0x0f, 0x00, 0x00, 0x10}, /* MTX9 MTXS */
1010 {0xd1, 0x21, 0x59, 0xba, 0x9a, 0x22, 0xb9, 0x10}, /* reserved */
1011 {0xd1, 0x21, 0x5d, 0x9b, 0x10, 0xf0, 0x05, 0x10}, /* reserved */
1012 {0xa1, 0x21, 0x61, 0x60, 0x00, 0x00, 0x00, 0x10}, /* reserved */
1013 {0xd1, 0x21, 0x62, 0x00, 0x00, 0x50, 0x30, 0x10},
1014 /* LCC1 LCC2 LCC3 LCC4 */
1015 {0xa1, 0x21, 0x66, 0x00, 0x00, 0x00, 0x00, 0x10}, /* LCC5 */
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001016 {0xd1, 0x21, 0x67, 0x80, 0x7a, 0x90, 0x80, 0x10}, /* MANU */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001017 {0xa1, 0x21, 0x6b, 0x0a, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001018 /* band gap reference [0:3] DBLV */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001019 {0xd1, 0x21, 0x6c, 0x30, 0x48, 0x80, 0x74, 0x10}, /* gamma curve */
1020 {0xd1, 0x21, 0x70, 0x64, 0x60, 0x5c, 0x58, 0x10}, /* gamma curve */
1021 {0xd1, 0x21, 0x74, 0x54, 0x4c, 0x40, 0x38, 0x10}, /* gamma curve */
1022 {0xd1, 0x21, 0x78, 0x34, 0x30, 0x2f, 0x2b, 0x10}, /* gamma curve */
1023 {0xd1, 0x21, 0x7c, 0x03, 0x07, 0x17, 0x34, 0x10}, /* gamma curve */
1024 {0xd1, 0x21, 0x80, 0x41, 0x4d, 0x58, 0x63, 0x10}, /* gamma curve */
1025 {0xd1, 0x21, 0x84, 0x6e, 0x77, 0x87, 0x95, 0x10}, /* gamma curve */
1026 {0xc1, 0x21, 0x88, 0xaf, 0xc7, 0xdf, 0x00, 0x10}, /* gamma curve */
1027 {0xc1, 0x21, 0x8b, 0x99, 0x99, 0xcf, 0x00, 0x10}, /* reserved */
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001028 {0xb1, 0x21, 0x92, 0x00, 0x00, 0x00, 0x00, 0x10}, /* DM_LNL/H */
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001029/* not in all ms-win traces*/
Jean-Francois Moine47f7f6f2009-08-25 06:14:54 -03001030 {0xa1, 0x21, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001031 {}
1032};
1033static const u8 ov7660_sensor_param1[][8] = {
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001034 {0xa1, 0x21, 0x1e, 0x01, 0x00, 0x00, 0x00, 0x10}, /* MVFP */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001035 /* bits[3..0]reserved */
1036 {0xa1, 0x21, 0x1e, 0x01, 0x00, 0x00, 0x00, 0x10},
1037 {0xa1, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
1038 /* VREF vertical frame ctrl */
1039 {0xa1, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001040 {0xa1, 0x21, 0x10, 0x20, 0x00, 0x00, 0x00, 0x10}, /* AECH 0x20 */
1041 {0xa1, 0x21, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x10}, /* ADVFL */
1042 {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10}, /* ADVFH */
1043 {0xa1, 0x21, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x10}, /* GAIN */
1044/* {0xb1, 0x21, 0x01, 0x78, 0x78, 0x00, 0x00, 0x10}, * BLUE */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001045/****** (some exchanges in the win trace) ******/
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001046/*fixme:param2*/
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001047 {0xa1, 0x21, 0x93, 0x00, 0x00, 0x00, 0x00, 0x10},/* dummy line hight */
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001048 {0xa1, 0x21, 0x92, 0x25, 0x00, 0x00, 0x00, 0x10}, /* dummy line low */
1049 {0xa1, 0x21, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x10}, /* EXHCH */
1050 {0xa1, 0x21, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10}, /* EXHCL */
1051/* {0xa1, 0x21, 0x02, 0x90, 0x00, 0x00, 0x00, 0x10}, * RED */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001052/****** (some exchanges in the win trace) ******/
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001053/******!! startsensor KO if changed !!****/
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001054/*fixme: param3*/
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001055 {0xa1, 0x21, 0x93, 0x01, 0x00, 0x00, 0x00, 0x10},
1056 {0xa1, 0x21, 0x92, 0xff, 0x00, 0x00, 0x00, 0x10},
1057 {0xa1, 0x21, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x10},
1058 {0xa1, 0x21, 0x2b, 0xc3, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03001059 {}
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001060};
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001061
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001062static const u8 po1030_sensor_init[][8] = {
1063/* the sensor registers are described in m5602/m5602_po1030.h */
1064 {0xa1, 0x6e, 0x3f, 0x20, 0x00, 0x00, 0x00, 0x10}, /* sensor reset */
1065 {0xdd, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
1066 {0xa1, 0x6e, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x10},
1067 {0xa1, 0x6e, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x10},
1068 {0xd1, 0x6e, 0x04, 0x02, 0xb1, 0x02, 0x39, 0x10},
1069 {0xd1, 0x6e, 0x08, 0x00, 0x01, 0x00, 0x00, 0x10},
1070 {0xd1, 0x6e, 0x0c, 0x02, 0x7f, 0x01, 0xe0, 0x10},
1071 {0xd1, 0x6e, 0x12, 0x03, 0x02, 0x00, 0x03, 0x10},
1072 {0xd1, 0x6e, 0x16, 0x85, 0x40, 0x4a, 0x40, 0x10}, /* r/g1/b/g2 gains */
1073 {0xc1, 0x6e, 0x1a, 0x00, 0x80, 0x00, 0x00, 0x10},
1074 {0xd1, 0x6e, 0x1d, 0x08, 0x03, 0x00, 0x00, 0x10},
1075 {0xd1, 0x6e, 0x23, 0x00, 0xb0, 0x00, 0x94, 0x10},
1076 {0xd1, 0x6e, 0x27, 0x58, 0x00, 0x00, 0x00, 0x10},
1077 {0xb1, 0x6e, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10},
1078 {0xd1, 0x6e, 0x2d, 0x14, 0x35, 0x61, 0x84, 0x10}, /* gamma corr */
1079 {0xd1, 0x6e, 0x31, 0xa2, 0xbd, 0xd8, 0xff, 0x10},
1080 {0xd1, 0x6e, 0x35, 0x06, 0x1e, 0x12, 0x02, 0x10}, /* color matrix */
1081 {0xd1, 0x6e, 0x39, 0xaa, 0x53, 0x37, 0xd5, 0x10},
1082 {0xa1, 0x6e, 0x3d, 0xf2, 0x00, 0x00, 0x00, 0x10},
1083 {0xd1, 0x6e, 0x3e, 0x00, 0x00, 0x80, 0x03, 0x10},
1084 {0xd1, 0x6e, 0x42, 0x03, 0x00, 0x00, 0x00, 0x10},
1085 {0xc1, 0x6e, 0x46, 0x00, 0x80, 0x80, 0x00, 0x10},
1086 {0xd1, 0x6e, 0x4b, 0x02, 0xef, 0x08, 0xcd, 0x10},
1087 {0xd1, 0x6e, 0x4f, 0x00, 0xd0, 0x00, 0xa0, 0x10},
1088 {0xd1, 0x6e, 0x53, 0x01, 0xaa, 0x01, 0x40, 0x10},
1089 {0xd1, 0x6e, 0x5a, 0x50, 0x04, 0x30, 0x03, 0x10}, /* raw rgb bayer */
1090 {0xa1, 0x6e, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x10},
1091 {0xd1, 0x6e, 0x5f, 0x10, 0x40, 0xff, 0x00, 0x10},
1092
1093 {0xd1, 0x6e, 0x63, 0x40, 0x40, 0x00, 0x00, 0x10},
1094 {0xd1, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x10},
1095 {0xd1, 0x6e, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x10},
1096 {0xd1, 0x6e, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x10},
1097 {0xc1, 0x6e, 0x73, 0x10, 0x80, 0xeb, 0x00, 0x10},
1098 {}
1099};
1100static const u8 po1030_sensor_param1[][8] = {
1101/* from ms-win traces - these values change with auto gain/expo/wb.. */
1102 {0xa1, 0x6e, 0x1e, 0x03, 0x00, 0x00, 0x00, 0x10},
1103 {0xa1, 0x6e, 0x1e, 0x03, 0x00, 0x00, 0x00, 0x10},
1104/* mean values */
1105 {0xc1, 0x6e, 0x1a, 0x02, 0xd4, 0xa4, 0x00, 0x10}, /* integlines */
1106 {0xa1, 0x6e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x10}, /* global gain */
1107 {0xc1, 0x6e, 0x16, 0x40, 0x40, 0x40, 0x00, 0x10}, /* r/g1/b gains */
1108
1109 {0xa1, 0x6e, 0x1d, 0x08, 0x00, 0x00, 0x00, 0x10}, /* control1 */
1110 {0xa1, 0x6e, 0x06, 0x02, 0x00, 0x00, 0x00, 0x10}, /* frameheight */
1111 {0xa1, 0x6e, 0x07, 0xd5, 0x00, 0x00, 0x00, 0x10},
1112/* {0xc1, 0x6e, 0x16, 0x49, 0x40, 0x45, 0x00, 0x10}, */
1113 {}
1114};
1115
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001116static const u8 po2030n_sensor_init[][8] = {
1117 {0xa1, 0x6e, 0x1e, 0x1a, 0x00, 0x00, 0x00, 0x10},
1118 {0xa1, 0x6e, 0x1f, 0x99, 0x00, 0x00, 0x00, 0x10},
1119 {0xdd, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 10ms */
1120 {0xa1, 0x6e, 0x1e, 0x0a, 0x00, 0x00, 0x00, 0x10},
1121 {0xa1, 0x6e, 0x1f, 0x19, 0x00, 0x00, 0x00, 0x10},
1122 {0xdd, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 10ms */
1123 {0xa1, 0x6e, 0x20, 0x44, 0x00, 0x00, 0x00, 0x10},
1124 {0xa1, 0x6e, 0x04, 0x03, 0x00, 0x00, 0x00, 0x10},
1125 {0xa1, 0x6e, 0x05, 0x70, 0x00, 0x00, 0x00, 0x10},
1126 {0xa1, 0x6e, 0x06, 0x02, 0x00, 0x00, 0x00, 0x10},
1127 {0xa1, 0x6e, 0x07, 0x25, 0x00, 0x00, 0x00, 0x10},
1128 {0xd1, 0x6e, 0x08, 0x00, 0xd0, 0x00, 0x08, 0x10},
1129 {0xd1, 0x6e, 0x0c, 0x03, 0x50, 0x01, 0xe8, 0x10},
1130 {0xd1, 0x6e, 0x1d, 0x20, 0x0a, 0x19, 0x44, 0x10},
1131 {0xd1, 0x6e, 0x21, 0x00, 0x00, 0x00, 0x00, 0x10},
1132 {0xd1, 0x6e, 0x25, 0x00, 0x00, 0x00, 0x00, 0x10},
1133 {0xd1, 0x6e, 0x29, 0x00, 0x00, 0x00, 0x00, 0x10},
1134 {0xd1, 0x6e, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x10},
1135 {0xd1, 0x6e, 0x31, 0x00, 0x00, 0x00, 0x00, 0x10},
1136 {0xd1, 0x6e, 0x35, 0x00, 0x00, 0x00, 0x00, 0x10},
1137 {0xd1, 0x6e, 0x39, 0x00, 0x00, 0x00, 0x00, 0x10},
1138 {0xd1, 0x6e, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x10},
1139 {0xd1, 0x6e, 0x41, 0x00, 0x00, 0x00, 0x00, 0x10},
1140 {0xd1, 0x6e, 0x45, 0x00, 0x00, 0x00, 0x00, 0x10},
1141 {0xd1, 0x6e, 0x49, 0x00, 0x00, 0x00, 0x00, 0x10},
1142 {0xd1, 0x6e, 0x4d, 0x00, 0x00, 0x00, 0xed, 0x10},
1143 {0xd1, 0x6e, 0x51, 0x17, 0x4a, 0x2f, 0xc0, 0x10},
1144 {0xd1, 0x6e, 0x55, 0x00, 0x00, 0x00, 0x00, 0x10},
1145 {0xd1, 0x6e, 0x59, 0x00, 0x00, 0x00, 0x00, 0x10},
1146 {0xd1, 0x6e, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x10},
1147 {0xd1, 0x6e, 0x61, 0x00, 0x00, 0x00, 0x00, 0x10},
1148 {0xd1, 0x6e, 0x65, 0x00, 0x00, 0x00, 0x00, 0x10},
1149 {0xd1, 0x6e, 0x69, 0x00, 0x00, 0x00, 0x00, 0x10},
1150 {0xd1, 0x6e, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x10},
1151 {0xd1, 0x6e, 0x71, 0x00, 0x00, 0x00, 0x00, 0x10},
1152 {0xd1, 0x6e, 0x75, 0x00, 0x00, 0x00, 0x00, 0x10},
1153 {0xd1, 0x6e, 0x79, 0x00, 0x00, 0x00, 0x00, 0x10},
1154 {0xd1, 0x6e, 0x7d, 0x00, 0x00, 0x00, 0x00, 0x10},
1155 {0xd1, 0x6e, 0x81, 0x00, 0x00, 0x00, 0x00, 0x10},
1156 {0xd1, 0x6e, 0x85, 0x00, 0x00, 0x00, 0x08, 0x10},
1157 {0xd1, 0x6e, 0x89, 0x01, 0xe8, 0x00, 0x01, 0x10},
1158 {0xa1, 0x6e, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x10},
1159 {0xd1, 0x6e, 0x21, 0x00, 0x00, 0x00, 0x00, 0x10},
1160 {0xd1, 0x6e, 0x25, 0x00, 0x00, 0x00, 0x01, 0x10},
1161 {0xd1, 0x6e, 0x29, 0xe6, 0x00, 0xbd, 0x03, 0x10},
1162 {0xd1, 0x6e, 0x2d, 0x41, 0x38, 0x68, 0x40, 0x10},
1163 {0xd1, 0x6e, 0x31, 0x2b, 0x00, 0x36, 0x00, 0x10},
1164 {0xd1, 0x6e, 0x35, 0x30, 0x30, 0x08, 0x00, 0x10},
1165 {0xd1, 0x6e, 0x39, 0x00, 0x00, 0x33, 0x06, 0x10},
1166 {0xb1, 0x6e, 0x3d, 0x06, 0x02, 0x00, 0x00, 0x10},
1167 {}
1168};
1169static const u8 po2030n_sensor_param1[][8] = {
1170 {0xa1, 0x6e, 0x1a, 0x01, 0x00, 0x00, 0x00, 0x10},
1171 {0xdd, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 8ms */
1172 {0xa1, 0x6e, 0x1b, 0xf4, 0x00, 0x00, 0x00, 0x10},
1173 {0xa1, 0x6e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x10},
1174 {0xd1, 0x6e, 0x16, 0x50, 0x40, 0x49, 0x40, 0x10},
1175/*param2*/
1176 {0xa1, 0x6e, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x10},
1177 {0xa1, 0x6e, 0x04, 0x03, 0x00, 0x00, 0x00, 0x10},
1178 {0xa1, 0x6e, 0x05, 0x6f, 0x00, 0x00, 0x00, 0x10},
1179 {0xa1, 0x6e, 0x06, 0x02, 0x00, 0x00, 0x00, 0x10},
1180 {0xa1, 0x6e, 0x07, 0x25, 0x00, 0x00, 0x00, 0x10},
1181 {0xa1, 0x6e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x10},
1182 {0xc1, 0x6e, 0x16, 0x52, 0x40, 0x48, 0x00, 0x10},
1183/*after start*/
1184 {0xa1, 0x6e, 0x15, 0x0f, 0x00, 0x00, 0x00, 0x10},
1185 {0xdd, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 5ms */
1186 {0xa1, 0x6e, 0x1a, 0x05, 0x00, 0x00, 0x00, 0x10},
1187 {0xdd, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 5ms */
1188 {0xa1, 0x6e, 0x1b, 0x53, 0x00, 0x00, 0x00, 0x10},
1189 {}
1190};
1191
Jean-François Moine03ed2a12010-04-25 14:45:43 -03001192static const u8 soi768_sensor_init[][8] = {
1193 {0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10}, /* reset */
1194 {0xdd, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 96ms */
1195 {0xa1, 0x21, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
1196 {0xa1, 0x21, 0x13, 0x80, 0x00, 0x00, 0x00, 0x10},
1197 {0xa1, 0x21, 0x0f, 0x03, 0x00, 0x00, 0x00, 0x10},
1198 {0xa1, 0x21, 0x19, 0x00, 0x00, 0x00, 0x00, 0x10},
1199 {}
1200};
1201static const u8 soi768_sensor_param1[][8] = {
1202 {0xa1, 0x21, 0x10, 0x10, 0x00, 0x00, 0x00, 0x10},
1203 {0xa1, 0x21, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x10},
1204 {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10},
1205 {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
1206 {0xb1, 0x21, 0x01, 0x7f, 0x7f, 0x00, 0x00, 0x10},
1207/* */
1208/* {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10}, */
1209/* {0xa1, 0x21, 0x2d, 0x25, 0x00, 0x00, 0x00, 0x10}, */
1210 {0xa1, 0x21, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10},
1211/* {0xb1, 0x21, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x10}, */
1212 {0xa1, 0x21, 0x02, 0x8d, 0x00, 0x00, 0x00, 0x10},
1213/* the next sequence should be used for auto gain */
1214 {0xa1, 0x21, 0x00, 0x07, 0x00, 0x00, 0x00, 0x10},
1215 /* global gain ? : 07 - change with 0x15 at the end */
1216 {0xa1, 0x21, 0x10, 0x3f, 0x00, 0x00, 0x00, 0x10}, /* ???? : 063f */
1217 {0xa1, 0x21, 0x04, 0x06, 0x00, 0x00, 0x00, 0x10},
1218 {0xb1, 0x21, 0x2d, 0x00, 0x02, 0x00, 0x00, 0x10},
1219 /* exposure ? : 0200 - change with 0x1e at the end */
1220 {}
1221};
1222
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03001223static const u8 sp80708_sensor_init[][8] = {
1224 {0xa1, 0x18, 0x06, 0xf9, 0x00, 0x00, 0x00, 0x10},
1225 {0xa1, 0x18, 0x09, 0x1f, 0x00, 0x00, 0x00, 0x10},
1226 {0xa1, 0x18, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x10},
1227 {0xa1, 0x18, 0x0d, 0xc0, 0x00, 0x00, 0x00, 0x10},
1228 {0xa1, 0x18, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x10},
1229 {0xa1, 0x18, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x10},
1230 {0xa1, 0x18, 0x10, 0x40, 0x00, 0x00, 0x00, 0x10},
1231 {0xa1, 0x18, 0x11, 0x4e, 0x00, 0x00, 0x00, 0x10},
1232 {0xa1, 0x18, 0x12, 0x53, 0x00, 0x00, 0x00, 0x10},
1233 {0xa1, 0x18, 0x15, 0x80, 0x00, 0x00, 0x00, 0x10},
1234 {0xa1, 0x18, 0x18, 0x18, 0x00, 0x00, 0x00, 0x10},
1235 {0xa1, 0x18, 0x19, 0x18, 0x00, 0x00, 0x00, 0x10},
1236 {0xa1, 0x18, 0x1a, 0x10, 0x00, 0x00, 0x00, 0x10},
1237 {0xa1, 0x18, 0x1b, 0x10, 0x00, 0x00, 0x00, 0x10},
1238 {0xa1, 0x18, 0x1c, 0x28, 0x00, 0x00, 0x00, 0x10},
1239 {0xa1, 0x18, 0x1d, 0x02, 0x00, 0x00, 0x00, 0x10},
1240 {0xa1, 0x18, 0x1e, 0x10, 0x00, 0x00, 0x00, 0x10},
1241 {0xa1, 0x18, 0x26, 0x04, 0x00, 0x00, 0x00, 0x10},
1242 {0xa1, 0x18, 0x27, 0x1e, 0x00, 0x00, 0x00, 0x10},
1243 {0xa1, 0x18, 0x28, 0x5a, 0x00, 0x00, 0x00, 0x10},
1244 {0xa1, 0x18, 0x29, 0x28, 0x00, 0x00, 0x00, 0x10},
1245 {0xa1, 0x18, 0x2a, 0x78, 0x00, 0x00, 0x00, 0x10},
1246 {0xa1, 0x18, 0x2b, 0x01, 0x00, 0x00, 0x00, 0x10},
1247 {0xa1, 0x18, 0x2c, 0xf7, 0x00, 0x00, 0x00, 0x10},
1248 {0xa1, 0x18, 0x2d, 0x2d, 0x00, 0x00, 0x00, 0x10},
1249 {0xa1, 0x18, 0x2e, 0xd5, 0x00, 0x00, 0x00, 0x10},
1250 {0xa1, 0x18, 0x39, 0x42, 0x00, 0x00, 0x00, 0x10},
1251 {0xa1, 0x18, 0x3a, 0x67, 0x00, 0x00, 0x00, 0x10},
1252 {0xa1, 0x18, 0x3b, 0x87, 0x00, 0x00, 0x00, 0x10},
1253 {0xa1, 0x18, 0x3c, 0xa3, 0x00, 0x00, 0x00, 0x10},
1254 {0xa1, 0x18, 0x3d, 0xb0, 0x00, 0x00, 0x00, 0x10},
1255 {0xa1, 0x18, 0x3e, 0xbc, 0x00, 0x00, 0x00, 0x10},
1256 {0xa1, 0x18, 0x3f, 0xc8, 0x00, 0x00, 0x00, 0x10},
1257 {0xa1, 0x18, 0x40, 0xd4, 0x00, 0x00, 0x00, 0x10},
1258 {0xa1, 0x18, 0x41, 0xdf, 0x00, 0x00, 0x00, 0x10},
1259 {0xa1, 0x18, 0x42, 0xea, 0x00, 0x00, 0x00, 0x10},
1260 {0xa1, 0x18, 0x43, 0xf5, 0x00, 0x00, 0x00, 0x10},
1261 {0xa1, 0x18, 0x45, 0x80, 0x00, 0x00, 0x00, 0x10},
1262 {0xa1, 0x18, 0x46, 0x60, 0x00, 0x00, 0x00, 0x10},
1263 {0xa1, 0x18, 0x47, 0x50, 0x00, 0x00, 0x00, 0x10},
1264 {0xa1, 0x18, 0x48, 0x30, 0x00, 0x00, 0x00, 0x10},
1265 {0xa1, 0x18, 0x49, 0x01, 0x00, 0x00, 0x00, 0x10},
1266 {0xa1, 0x18, 0x4d, 0xae, 0x00, 0x00, 0x00, 0x10},
1267 {0xa1, 0x18, 0x4e, 0x03, 0x00, 0x00, 0x00, 0x10},
1268 {0xa1, 0x18, 0x4f, 0x66, 0x00, 0x00, 0x00, 0x10},
1269 {0xa1, 0x18, 0x50, 0x1c, 0x00, 0x00, 0x00, 0x10},
1270 {0xa1, 0x18, 0x44, 0x10, 0x00, 0x00, 0x00, 0x10},
1271 {0xa1, 0x18, 0x4a, 0x30, 0x00, 0x00, 0x00, 0x10},
1272 {0xa1, 0x18, 0x51, 0x80, 0x00, 0x00, 0x00, 0x10},
1273 {0xa1, 0x18, 0x52, 0x80, 0x00, 0x00, 0x00, 0x10},
1274 {0xa1, 0x18, 0x53, 0x80, 0x00, 0x00, 0x00, 0x10},
1275 {0xa1, 0x18, 0x54, 0x80, 0x00, 0x00, 0x00, 0x10},
1276 {0xa1, 0x18, 0x55, 0x80, 0x00, 0x00, 0x00, 0x10},
1277 {0xa1, 0x18, 0x56, 0x80, 0x00, 0x00, 0x00, 0x10},
1278 {0xa1, 0x18, 0x57, 0xe0, 0x00, 0x00, 0x00, 0x10},
1279 {0xa1, 0x18, 0x58, 0xc0, 0x00, 0x00, 0x00, 0x10},
1280 {0xa1, 0x18, 0x59, 0xab, 0x00, 0x00, 0x00, 0x10},
1281 {0xa1, 0x18, 0x5a, 0xa0, 0x00, 0x00, 0x00, 0x10},
1282 {0xa1, 0x18, 0x5b, 0x99, 0x00, 0x00, 0x00, 0x10},
1283 {0xa1, 0x18, 0x5c, 0x90, 0x00, 0x00, 0x00, 0x10},
1284 {0xa1, 0x18, 0x5e, 0x24, 0x00, 0x00, 0x00, 0x10},
1285 {0xa1, 0x18, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x10},
1286 {0xa1, 0x18, 0x60, 0x00, 0x00, 0x00, 0x00, 0x10},
1287 {0xa1, 0x18, 0x61, 0x73, 0x00, 0x00, 0x00, 0x10},
1288 {0xa1, 0x18, 0x63, 0x42, 0x00, 0x00, 0x00, 0x10},
1289 {0xa1, 0x18, 0x64, 0x42, 0x00, 0x00, 0x00, 0x10},
1290 {0xa1, 0x18, 0x65, 0x42, 0x00, 0x00, 0x00, 0x10},
1291 {0xa1, 0x18, 0x66, 0x24, 0x00, 0x00, 0x00, 0x10},
1292 {0xa1, 0x18, 0x67, 0x24, 0x00, 0x00, 0x00, 0x10},
1293 {0xa1, 0x18, 0x68, 0x08, 0x00, 0x00, 0x00, 0x10},
1294 {0xa1, 0x18, 0x2f, 0xc9, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001295 {}
1296};
1297static const u8 sp80708_sensor_param1[][8] = {
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03001298 {0xa1, 0x18, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x10},
1299 {0xa1, 0x18, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x10},
1300 {0xa1, 0x18, 0x03, 0x01, 0x00, 0x00, 0x00, 0x10},
1301 {0xa1, 0x18, 0x04, 0xa4, 0x00, 0x00, 0x00, 0x10},
1302 {0xa1, 0x18, 0x14, 0x3f, 0x00, 0x00, 0x00, 0x10},
1303 {0xa1, 0x18, 0x5d, 0x80, 0x00, 0x00, 0x00, 0x10},
1304 {0xb1, 0x18, 0x11, 0x40, 0x40, 0x00, 0x00, 0x10},
1305 {}
1306};
1307
Jean-François Moine9c33afc2010-03-17 15:25:32 -03001308static const u8 (*sensor_init[])[8] = {
1309[SENSOR_ADCM1700] = adcm1700_sensor_init,
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001310[SENSOR_GC0307] = gc0307_sensor_init,
Jean-François Moine9c33afc2010-03-17 15:25:32 -03001311[SENSOR_HV7131R] = hv7131r_sensor_init,
1312[SENSOR_MI0360] = mi0360_sensor_init,
1313[SENSOR_MO4000] = mo4000_sensor_init,
1314[SENSOR_MT9V111] = mt9v111_sensor_init,
1315[SENSOR_OM6802] = om6802_sensor_init,
1316[SENSOR_OV7630] = ov7630_sensor_init,
1317[SENSOR_OV7648] = ov7648_sensor_init,
1318[SENSOR_OV7660] = ov7660_sensor_init,
1319[SENSOR_PO1030] = po1030_sensor_init,
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001320[SENSOR_PO2030N] = po2030n_sensor_init,
Jean-François Moine03ed2a12010-04-25 14:45:43 -03001321[SENSOR_SOI768] = soi768_sensor_init,
Jean-François Moine9c33afc2010-03-17 15:25:32 -03001322[SENSOR_SP80708] = sp80708_sensor_init,
Jean-Francois Moine23a98272009-11-02 09:10:25 -03001323};
1324
Jean-Francois Moine8295d992008-09-03 17:12:19 -03001325/* read <len> bytes to gspca_dev->usb_buf */
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001326static void reg_r(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03001327 u16 value, int len)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001328{
Jean-Francois Moine8295d992008-09-03 17:12:19 -03001329#ifdef GSPCA_DEBUG
1330 if (len > USB_BUF_SZ) {
1331 err("reg_r: buffer overflow");
1332 return;
1333 }
1334#endif
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001335 usb_control_msg(gspca_dev->dev,
1336 usb_rcvctrlpipe(gspca_dev->dev, 0),
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001337 0,
1338 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1339 value, 0,
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001340 gspca_dev->usb_buf, len,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001341 500);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001342 PDEBUG(D_USBI, "reg_r [%02x] -> %02x", value, gspca_dev->usb_buf[0]);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001343}
1344
Jean-Francois Moine60017612008-07-18 08:46:19 -03001345static void reg_w1(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03001346 u16 value,
1347 u8 data)
Jean-Francois Moine60017612008-07-18 08:46:19 -03001348{
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001349 PDEBUG(D_USBO, "reg_w1 [%04x] = %02x", value, data);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001350 gspca_dev->usb_buf[0] = data;
1351 usb_control_msg(gspca_dev->dev,
1352 usb_sndctrlpipe(gspca_dev->dev, 0),
1353 0x08,
1354 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1355 value,
1356 0,
1357 gspca_dev->usb_buf, 1,
1358 500);
1359}
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001360static void reg_w(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03001361 u16 value,
1362 const u8 *buffer,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001363 int len)
1364{
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001365 PDEBUG(D_USBO, "reg_w [%04x] = %02x %02x ..",
Jean-Francois Moine60017612008-07-18 08:46:19 -03001366 value, buffer[0], buffer[1]);
Jean-Francois Moine8295d992008-09-03 17:12:19 -03001367#ifdef GSPCA_DEBUG
1368 if (len > USB_BUF_SZ) {
1369 err("reg_w: buffer overflow");
1370 return;
Jean-Francois Moinebf7f0b92008-07-03 11:09:12 -03001371 }
Jean-Francois Moine8295d992008-09-03 17:12:19 -03001372#endif
1373 memcpy(gspca_dev->usb_buf, buffer, len);
1374 usb_control_msg(gspca_dev->dev,
1375 usb_sndctrlpipe(gspca_dev->dev, 0),
1376 0x08,
1377 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1378 value, 0,
1379 gspca_dev->usb_buf, len,
1380 500);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001381}
1382
Jean-Francois Moine60017612008-07-18 08:46:19 -03001383/* I2C write 1 byte */
Jean-Francois Moine98819182009-01-19 07:37:33 -03001384static void i2c_w1(struct gspca_dev *gspca_dev, u8 reg, u8 val)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001385{
1386 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001387
Jean-François Moinecfd23c82010-04-25 14:27:39 -03001388 PDEBUG(D_USBO, "i2c_w1 [%02x] = %02x", reg, val);
Jean-Francois Moinea7826362009-11-02 09:21:06 -03001389 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03001390 case SENSOR_ADCM1700:
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001391 case SENSOR_OM6802:
1392 case SENSOR_GC0307: /* i2c command = a0 (100 kHz) */
Jean-Francois Moinea7826362009-11-02 09:21:06 -03001393 gspca_dev->usb_buf[0] = 0x80 | (2 << 4);
1394 break;
1395 default: /* i2c command = a1 (400 kHz) */
1396 gspca_dev->usb_buf[0] = 0x81 | (2 << 4);
1397 break;
1398 }
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001399 gspca_dev->usb_buf[1] = sd->i2c_addr;
Jean-Francois Moine60017612008-07-18 08:46:19 -03001400 gspca_dev->usb_buf[2] = reg;
1401 gspca_dev->usb_buf[3] = val;
1402 gspca_dev->usb_buf[4] = 0;
1403 gspca_dev->usb_buf[5] = 0;
1404 gspca_dev->usb_buf[6] = 0;
1405 gspca_dev->usb_buf[7] = 0x10;
1406 usb_control_msg(gspca_dev->dev,
1407 usb_sndctrlpipe(gspca_dev->dev, 0),
1408 0x08,
1409 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1410 0x08, /* value = i2c */
1411 0,
1412 gspca_dev->usb_buf, 8,
1413 500);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001414}
1415
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001416/* I2C write 8 bytes */
1417static void i2c_w8(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03001418 const u8 *buffer)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001419{
Jean-François Moinecfd23c82010-04-25 14:27:39 -03001420 PDEBUG(D_USBO, "i2c_w8 [%02x] = %02x ..",
1421 buffer[2], buffer[3]);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001422 memcpy(gspca_dev->usb_buf, buffer, 8);
1423 usb_control_msg(gspca_dev->dev,
1424 usb_sndctrlpipe(gspca_dev->dev, 0),
1425 0x08,
1426 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1427 0x08, 0, /* value, index */
1428 gspca_dev->usb_buf, 8,
1429 500);
Jean-Francois Moine8d768e12008-09-21 03:28:55 -03001430 msleep(2);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001431}
1432
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001433/* sensor read 'len' (1..5) bytes in gspca_dev->usb_buf */
1434static void i2c_r(struct gspca_dev *gspca_dev, u8 reg, int len)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001435{
1436 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine98819182009-01-19 07:37:33 -03001437 u8 mode[8];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001438
Jean-Francois Moinea7826362009-11-02 09:21:06 -03001439 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03001440 case SENSOR_ADCM1700:
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001441 case SENSOR_OM6802:
1442 case SENSOR_GC0307: /* i2c command = a0 (100 kHz) */
Jean-Francois Moinea7826362009-11-02 09:21:06 -03001443 mode[0] = 0x80 | 0x10;
1444 break;
1445 default: /* i2c command = 91 (400 kHz) */
1446 mode[0] = 0x81 | 0x10;
1447 break;
1448 }
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001449 mode[1] = sd->i2c_addr;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001450 mode[2] = reg;
1451 mode[3] = 0;
1452 mode[4] = 0;
1453 mode[5] = 0;
1454 mode[6] = 0;
1455 mode[7] = 0x10;
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001456 i2c_w8(gspca_dev, mode);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001457 msleep(2);
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001458 mode[0] = (mode[0] & 0x81) | (len << 4) | 0x02;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001459 mode[2] = 0;
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001460 i2c_w8(gspca_dev, mode);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001461 msleep(2);
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001462 reg_r(gspca_dev, 0x0a, 5);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001463}
1464
Jean-Francois Moine23a98272009-11-02 09:10:25 -03001465static void i2c_w_seq(struct gspca_dev *gspca_dev,
1466 const u8 (*data)[8])
1467{
1468 while ((*data)[0] != 0) {
1469 if ((*data)[0] != 0xdd)
1470 i2c_w8(gspca_dev, *data);
1471 else
1472 msleep((*data)[1]);
1473 data++;
1474 }
1475}
1476
Jean-Francois Moine7fb101a2009-10-22 06:27:14 -03001477static void hv7131r_probe(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001478{
Jean-Francois Moine60017612008-07-18 08:46:19 -03001479 i2c_w1(gspca_dev, 0x02, 0); /* sensor wakeup */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001480 msleep(10);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001481 reg_w1(gspca_dev, 0x02, 0x66); /* Gpio on */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001482 msleep(10);
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001483 i2c_r(gspca_dev, 0, 5); /* read sensor id */
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001484 if (gspca_dev->usb_buf[0] == 0x02
1485 && gspca_dev->usb_buf[1] == 0x09
1486 && gspca_dev->usb_buf[2] == 0x01
1487 && gspca_dev->usb_buf[3] == 0x00
1488 && gspca_dev->usb_buf[4] == 0x00) {
Jean-Francois Moine7fb101a2009-10-22 06:27:14 -03001489 PDEBUG(D_PROBE, "Sensor sn9c102P HV7131R found");
1490 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001491 }
Jean-Francois Moine7fb101a2009-10-22 06:27:14 -03001492 PDEBUG(D_PROBE, "Sensor 0x%02x 0x%02x 0x%02x - sn9c102P not found",
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001493 gspca_dev->usb_buf[0], gspca_dev->usb_buf[1],
1494 gspca_dev->usb_buf[2]);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001495}
1496
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001497static void mi0360_probe(struct gspca_dev *gspca_dev)
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001498{
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001499 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001500 int i, j;
Jean-Francois Moine92e8c912009-02-02 16:25:38 -03001501 u16 val = 0;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001502 static const u8 probe_tb[][4][8] = {
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001503 { /* mi0360 */
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001504 {0xb0, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10},
1505 {0x90, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
1506 {0xa2, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
1507 {0xb0, 0x5d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x10}
1508 },
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001509 { /* mt9v111 */
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001510 {0xb0, 0x5c, 0x01, 0x00, 0x04, 0x00, 0x00, 0x10},
1511 {0x90, 0x5c, 0x36, 0x00, 0x00, 0x00, 0x00, 0x10},
1512 {0xa2, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
1513 {}
1514 },
1515 };
1516
1517 for (i = 0; i < ARRAY_SIZE(probe_tb); i++) {
1518 reg_w1(gspca_dev, 0x17, 0x62);
1519 reg_w1(gspca_dev, 0x01, 0x08);
1520 for (j = 0; j < 3; j++)
1521 i2c_w8(gspca_dev, probe_tb[i][j]);
1522 msleep(2);
1523 reg_r(gspca_dev, 0x0a, 5);
1524 val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
1525 if (probe_tb[i][3][0] != 0)
1526 i2c_w8(gspca_dev, probe_tb[i][3]);
1527 reg_w1(gspca_dev, 0x01, 0x29);
1528 reg_w1(gspca_dev, 0x17, 0x42);
1529 if (val != 0xffff)
1530 break;
1531 }
1532 switch (val) {
1533 case 0x823a:
1534 PDEBUG(D_PROBE, "Sensor mt9v111");
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001535 sd->sensor = SENSOR_MT9V111;
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001536 break;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001537 case 0x8243:
1538 PDEBUG(D_PROBE, "Sensor mi0360");
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001539 break;
1540 default:
1541 PDEBUG(D_PROBE, "Unknown sensor %04x - forced to mi0360", val);
1542 break;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001543 }
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001544}
1545
Jean-François Moine03ed2a12010-04-25 14:45:43 -03001546static void ov7630_probe(struct gspca_dev *gspca_dev)
1547{
1548 struct sd *sd = (struct sd *) gspca_dev;
1549 u16 val;
1550
1551 /* check ov76xx */
1552 reg_w1(gspca_dev, 0x17, 0x62);
1553 reg_w1(gspca_dev, 0x01, 0x08);
1554 sd->i2c_addr = 0x21;
1555 i2c_r(gspca_dev, 0x0a, 2);
1556 val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
1557 reg_w1(gspca_dev, 0x01, 0x29);
1558 reg_w1(gspca_dev, 0x17, 0x42);
1559 if (val == 0x7628) { /* soi768 */
1560 sd->sensor = SENSOR_SOI768;
1561/*fixme: only valid for 0c45:613e?*/
1562 gspca_dev->cam.input_flags =
1563 V4L2_IN_ST_VFLIP | V4L2_IN_ST_HFLIP;
1564 PDEBUG(D_PROBE, "Sensor soi768");
1565 return;
1566 }
1567 PDEBUG(D_PROBE, "Sensor ov%04x", val);
1568}
1569
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001570static void ov7648_probe(struct gspca_dev *gspca_dev)
1571{
1572 struct sd *sd = (struct sd *) gspca_dev;
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001573 u16 val;
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001574
1575 /* check ov76xx */
1576 reg_w1(gspca_dev, 0x17, 0x62);
1577 reg_w1(gspca_dev, 0x01, 0x08);
1578 sd->i2c_addr = 0x21;
1579 i2c_r(gspca_dev, 0x0a, 2);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001580 val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001581 reg_w1(gspca_dev, 0x01, 0x29);
1582 reg_w1(gspca_dev, 0x17, 0x42);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001583 if ((val & 0xff00) == 0x7600) { /* ov76xx */
1584 PDEBUG(D_PROBE, "Sensor ov%04x", val);
1585 return;
1586 }
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001587
1588 /* check po1030 */
1589 reg_w1(gspca_dev, 0x17, 0x62);
1590 reg_w1(gspca_dev, 0x01, 0x08);
1591 sd->i2c_addr = 0x6e;
1592 i2c_r(gspca_dev, 0x00, 2);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001593 val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
1594 reg_w1(gspca_dev, 0x01, 0x29);
1595 reg_w1(gspca_dev, 0x17, 0x42);
1596 if (val == 0x1030) { /* po1030 */
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001597 PDEBUG(D_PROBE, "Sensor po1030");
1598 sd->sensor = SENSOR_PO1030;
1599 return;
1600 }
1601
Jean-François Moine0b656322010-09-13 05:19:58 -03001602 err("Unknown sensor %04x", val);
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001603}
1604
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001605/* 0c45:6142 sensor may be po2030n, gc0305 or gc0307 */
1606static void po2030n_probe(struct gspca_dev *gspca_dev)
1607{
1608 struct sd *sd = (struct sd *) gspca_dev;
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001609 u16 val;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001610
1611 /* check gc0307 */
1612 reg_w1(gspca_dev, 0x17, 0x62);
1613 reg_w1(gspca_dev, 0x01, 0x08);
1614 reg_w1(gspca_dev, 0x02, 0x22);
1615 sd->i2c_addr = 0x21;
1616 i2c_r(gspca_dev, 0x00, 1);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001617 val = gspca_dev->usb_buf[4];
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001618 reg_w1(gspca_dev, 0x01, 0x29); /* reset */
1619 reg_w1(gspca_dev, 0x17, 0x42);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001620 if (val == 0x99) { /* gc0307 (?) */
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001621 PDEBUG(D_PROBE, "Sensor gc0307");
1622 sd->sensor = SENSOR_GC0307;
1623 return;
1624 }
1625
1626 /* check po2030n */
1627 reg_w1(gspca_dev, 0x17, 0x62);
1628 reg_w1(gspca_dev, 0x01, 0x0a);
1629 sd->i2c_addr = 0x6e;
1630 i2c_r(gspca_dev, 0x00, 2);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001631 val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001632 reg_w1(gspca_dev, 0x01, 0x29);
1633 reg_w1(gspca_dev, 0x17, 0x42);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001634 if (val == 0x2030) {
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001635 PDEBUG(D_PROBE, "Sensor po2030n");
1636/* sd->sensor = SENSOR_PO2030N; */
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001637 } else {
Jean-François Moine0b656322010-09-13 05:19:58 -03001638 err("Unknown sensor ID %04x", val);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001639 }
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001640}
1641
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001642static void bridge_init(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03001643 const u8 *sn9c1xx)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001644{
1645 struct sd *sd = (struct sd *) gspca_dev;
Jean-François Moine19697b52010-07-14 06:33:51 -03001646 u8 reg0102[2];
Jean-Francois Moine98819182009-01-19 07:37:33 -03001647 const u8 *reg9a;
1648 static const u8 reg9a_def[] =
Jean-Francois Moinec8b9b2ca2009-04-26 14:46:12 -03001649 {0x00, 0x40, 0x20, 0x00, 0x00, 0x00};
1650 static const u8 reg9a_spec[] =
1651 {0x00, 0x40, 0x38, 0x30, 0x00, 0x20};
Jean-Francois Moine98819182009-01-19 07:37:33 -03001652 static const u8 regd4[] = {0x60, 0x00, 0x00};
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001653
Hans de Goede9712a8b2010-01-31 12:54:29 -03001654 /* sensor clock already enabled in sd_init */
1655 /* reg_w1(gspca_dev, 0xf1, 0x00); */
Jean-Francois Moine05b809c2008-09-03 16:47:59 -03001656 reg_w1(gspca_dev, 0x01, sn9c1xx[1]);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001657
1658 /* configure gpio */
Jean-François Moine19697b52010-07-14 06:33:51 -03001659 reg0102[0] = sn9c1xx[1];
1660 reg0102[1] = sn9c1xx[2];
1661 if (gspca_dev->audio)
1662 reg0102[1] |= 0x04; /* keep the audio connection */
1663 reg_w(gspca_dev, 0x01, reg0102, 2);
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001664 reg_w(gspca_dev, 0x08, &sn9c1xx[8], 2);
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001665 reg_w(gspca_dev, 0x17, &sn9c1xx[0x17], 5);
Jean-Francois Moinec8b9b2ca2009-04-26 14:46:12 -03001666 switch (sd->sensor) {
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001667 case SENSOR_GC0307:
Jean-Francois Moinec8b9b2ca2009-04-26 14:46:12 -03001668 case SENSOR_OV7660:
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001669 case SENSOR_PO1030:
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001670 case SENSOR_PO2030N:
Jean-François Moine03ed2a12010-04-25 14:45:43 -03001671 case SENSOR_SOI768:
Jean-Francois Moinec8b9b2ca2009-04-26 14:46:12 -03001672 case SENSOR_SP80708:
1673 reg9a = reg9a_spec;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001674 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001675 default:
1676 reg9a = reg9a_def;
1677 break;
1678 }
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001679 reg_w(gspca_dev, 0x9a, reg9a, 6);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001680
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001681 reg_w(gspca_dev, 0xd4, regd4, sizeof regd4);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001682
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001683 reg_w(gspca_dev, 0x03, &sn9c1xx[3], 0x0f);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001684
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001685 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03001686 case SENSOR_ADCM1700:
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03001687 reg_w1(gspca_dev, 0x01, 0x43);
Jean-Francois Moine64677572009-12-20 12:31:28 -03001688 reg_w1(gspca_dev, 0x17, 0x62);
1689 reg_w1(gspca_dev, 0x01, 0x42);
1690 reg_w1(gspca_dev, 0x01, 0x42);
1691 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001692 case SENSOR_GC0307:
1693 msleep(50);
1694 reg_w1(gspca_dev, 0x01, 0x61);
1695 reg_w1(gspca_dev, 0x17, 0x22);
1696 reg_w1(gspca_dev, 0x01, 0x60);
1697 reg_w1(gspca_dev, 0x01, 0x40);
1698 msleep(50);
1699 break;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001700 case SENSOR_MT9V111:
1701 reg_w1(gspca_dev, 0x01, 0x61);
1702 reg_w1(gspca_dev, 0x17, 0x61);
1703 reg_w1(gspca_dev, 0x01, 0x60);
1704 reg_w1(gspca_dev, 0x01, 0x40);
1705 break;
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001706 case SENSOR_OM6802:
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001707 msleep(10);
1708 reg_w1(gspca_dev, 0x02, 0x73);
1709 reg_w1(gspca_dev, 0x17, 0x60);
1710 reg_w1(gspca_dev, 0x01, 0x22);
1711 msleep(100);
1712 reg_w1(gspca_dev, 0x01, 0x62);
1713 reg_w1(gspca_dev, 0x17, 0x64);
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001714 reg_w1(gspca_dev, 0x17, 0x64);
1715 reg_w1(gspca_dev, 0x01, 0x42);
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001716 msleep(10);
1717 reg_w1(gspca_dev, 0x01, 0x42);
1718 i2c_w8(gspca_dev, om6802_init0[0]);
1719 i2c_w8(gspca_dev, om6802_init0[1]);
1720 msleep(15);
1721 reg_w1(gspca_dev, 0x02, 0x71);
1722 msleep(150);
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001723 break;
Jean-Francois Moine05b809c2008-09-03 16:47:59 -03001724 case SENSOR_OV7630:
1725 reg_w1(gspca_dev, 0x01, 0x61);
1726 reg_w1(gspca_dev, 0x17, 0xe2);
1727 reg_w1(gspca_dev, 0x01, 0x60);
1728 reg_w1(gspca_dev, 0x01, 0x40);
1729 break;
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001730 case SENSOR_OV7648:
Jean-Francois Moine62703302008-11-11 08:42:56 -03001731 reg_w1(gspca_dev, 0x01, 0x63);
1732 reg_w1(gspca_dev, 0x17, 0x20);
Jean-Francois Moinec8b9b2ca2009-04-26 14:46:12 -03001733 reg_w1(gspca_dev, 0x01, 0x62);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001734 reg_w1(gspca_dev, 0x01, 0x42);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001735 break;
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001736 case SENSOR_PO1030:
Jean-François Moine03ed2a12010-04-25 14:45:43 -03001737 case SENSOR_SOI768:
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001738 reg_w1(gspca_dev, 0x01, 0x61);
1739 reg_w1(gspca_dev, 0x17, 0x20);
1740 reg_w1(gspca_dev, 0x01, 0x60);
1741 reg_w1(gspca_dev, 0x01, 0x40);
1742 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001743 case SENSOR_PO2030N:
Jean-François Moine19697b52010-07-14 06:33:51 -03001744 case SENSOR_OV7660:
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001745 reg_w1(gspca_dev, 0x01, 0x63);
1746 reg_w1(gspca_dev, 0x17, 0x20);
1747 reg_w1(gspca_dev, 0x01, 0x62);
1748 reg_w1(gspca_dev, 0x01, 0x42);
1749 break;
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03001750 case SENSOR_SP80708:
1751 reg_w1(gspca_dev, 0x01, 0x63);
1752 reg_w1(gspca_dev, 0x17, 0x20);
1753 reg_w1(gspca_dev, 0x01, 0x62);
1754 reg_w1(gspca_dev, 0x01, 0x42);
Jean-Francois Moine1f78a972009-08-29 07:11:58 -03001755 msleep(100);
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03001756 reg_w1(gspca_dev, 0x02, 0x62);
1757 break;
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001758 default:
Jean-Francois Moinec8b9b2ca2009-04-26 14:46:12 -03001759/* case SENSOR_HV7131R: */
1760/* case SENSOR_MI0360: */
1761/* case SENSOR_MO4000: */
Jean-Francois Moine60017612008-07-18 08:46:19 -03001762 reg_w1(gspca_dev, 0x01, 0x43);
1763 reg_w1(gspca_dev, 0x17, 0x61);
1764 reg_w1(gspca_dev, 0x01, 0x42);
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001765 if (sd->sensor == SENSOR_HV7131R
1766 && sd->bridge == BRIDGE_SN9C102P)
Jean-Francois Moine7fb101a2009-10-22 06:27:14 -03001767 hv7131r_probe(gspca_dev);
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001768 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001769 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001770}
1771
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001772/* this function is called at probe time */
1773static int sd_config(struct gspca_dev *gspca_dev,
1774 const struct usb_device_id *id)
1775{
1776 struct sd *sd = (struct sd *) gspca_dev;
1777 struct cam *cam;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001778
Jean-Francois Moineeac8f5f2010-01-12 07:12:43 -03001779 sd->bridge = id->driver_info >> 16;
1780 sd->sensor = id->driver_info;
1781
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001782 cam = &gspca_dev->cam;
Jean-Francois Moine64677572009-12-20 12:31:28 -03001783 if (sd->sensor == SENSOR_ADCM1700) {
1784 cam->cam_mode = cif_mode;
1785 cam->nmodes = ARRAY_SIZE(cif_mode);
1786 } else {
1787 cam->cam_mode = vga_mode;
1788 cam->nmodes = ARRAY_SIZE(vga_mode);
1789 }
Jean-Francois Moine49cb6b02009-04-25 13:29:01 -03001790 cam->npkt = 24; /* 24 packets per ISOC message */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03001791
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03001792 sd->brightness = BRIGHTNESS_DEF;
1793 sd->contrast = CONTRAST_DEF;
1794 sd->colors = COLOR_DEF;
Jean-Francois Moine403123d2008-11-26 04:46:15 -03001795 sd->blue = BLUE_BALANCE_DEF;
1796 sd->red = RED_BALANCE_DEF;
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03001797 sd->gamma = GAMMA_DEF;
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03001798 sd->autogain = AUTOGAIN_DEF;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03001799 sd->ag_cnt = -1;
Hans de Goedef8009522009-06-18 14:29:20 -03001800 sd->vflip = VFLIP_DEF;
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03001801 switch (sd->sensor) {
1802 case SENSOR_OM6802:
1803 sd->sharpness = 0x10;
1804 break;
1805 default:
1806 sd->sharpness = SHARPNESS_DEF;
1807 break;
1808 }
Jean-Francois Moine0cae8962008-10-17 07:48:24 -03001809 sd->infrared = INFRARED_DEF;
Hans de Goede37c6dbe2009-06-18 07:35:36 -03001810 sd->freq = FREQ_DEF;
Jean-Francois Moine77ac0ba2009-03-02 06:40:52 -03001811 sd->quality = QUALITY_DEF;
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03001812 sd->jpegqual = 80;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03001813
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001814 return 0;
1815}
1816
Jean-Francois Moine012d6b02008-09-03 17:12:16 -03001817/* this function is called at probe and resume time */
1818static int sd_init(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001819{
1820 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001821 const u8 *sn9c1xx;
Jean-François Moine19697b52010-07-14 06:33:51 -03001822 u8 regGpio[] = { 0x29, 0x74 }; /* with audio */
Jean-Francois Moine98819182009-01-19 07:37:33 -03001823 u8 regF1;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001824
Hans de Goede3647fea2008-07-15 05:36:30 -03001825 /* setup a selector by bridge */
Jean-Francois Moine60017612008-07-18 08:46:19 -03001826 reg_w1(gspca_dev, 0xf1, 0x01);
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001827 reg_r(gspca_dev, 0x00, 1);
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -03001828 reg_w1(gspca_dev, 0xf1, gspca_dev->usb_buf[0]);
1829 reg_r(gspca_dev, 0x00, 1); /* get sonix chip id */
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001830 regF1 = gspca_dev->usb_buf[0];
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -03001831 PDEBUG(D_PROBE, "Sonix chip id: %02x", regF1);
Hans de Goede3647fea2008-07-15 05:36:30 -03001832 switch (sd->bridge) {
1833 case BRIDGE_SN9C102P:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001834 if (regF1 != 0x11)
1835 return -ENODEV;
Jean-Francois Moine60017612008-07-18 08:46:19 -03001836 reg_w1(gspca_dev, 0x02, regGpio[1]);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001837 break;
Hans de Goede3647fea2008-07-15 05:36:30 -03001838 case BRIDGE_SN9C105:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001839 if (regF1 != 0x11)
1840 return -ENODEV;
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001841 if (sd->sensor == SENSOR_MI0360)
1842 mi0360_probe(gspca_dev);
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03001843 reg_w(gspca_dev, 0x01, regGpio, 2);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001844 break;
Hans de Goede3647fea2008-07-15 05:36:30 -03001845 case BRIDGE_SN9C120:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001846 if (regF1 != 0x12)
1847 return -ENODEV;
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001848 switch (sd->sensor) {
1849 case SENSOR_MI0360:
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001850 mi0360_probe(gspca_dev);
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001851 break;
Jean-François Moine03ed2a12010-04-25 14:45:43 -03001852 case SENSOR_OV7630:
1853 ov7630_probe(gspca_dev);
1854 break;
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001855 case SENSOR_OV7648:
1856 ov7648_probe(gspca_dev);
1857 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001858 case SENSOR_PO2030N:
1859 po2030n_probe(gspca_dev);
1860 break;
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001861 }
Jean-François Moine19697b52010-07-14 06:33:51 -03001862 regGpio[1] = 0x70; /* no audio */
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03001863 reg_w(gspca_dev, 0x01, regGpio, 2);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001864 break;
1865 default:
Jean-Francois Moine60017612008-07-18 08:46:19 -03001866/* case BRIDGE_SN9C110: */
Hans de Goede3647fea2008-07-15 05:36:30 -03001867/* case BRIDGE_SN9C325: */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001868 if (regF1 != 0x12)
1869 return -ENODEV;
Jean-Francois Moine60017612008-07-18 08:46:19 -03001870 reg_w1(gspca_dev, 0x02, 0x62);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001871 break;
1872 }
1873
Hans de Goede9712a8b2010-01-31 12:54:29 -03001874 /* Note we do not disable the sensor clock here (power saving mode),
1875 as that also disables the button on the cam. */
1876 reg_w1(gspca_dev, 0xf1, 0x00);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001877
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001878 /* set the i2c address */
1879 sn9c1xx = sn_tb[sd->sensor];
1880 sd->i2c_addr = sn9c1xx[9];
1881
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001882 gspca_dev->ctrl_dis = ctrl_dis[sd->sensor];
1883
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001884 return 0;
1885}
1886
Jean-Francois Moine98819182009-01-19 07:37:33 -03001887static u32 setexposure(struct gspca_dev *gspca_dev,
1888 u32 expo)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001889{
1890 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001891
1892 switch (sd->sensor) {
Jean-François Moinec26b12d2010-04-02 07:08:39 -03001893 case SENSOR_GC0307: {
1894 int a, b;
1895
1896 /* expo = 0..255 -> a = 19..43 */
1897 a = 19 + expo * 25 / 256;
1898 i2c_w1(gspca_dev, 0x68, a);
1899 a -= 12;
1900 b = a * a * 4; /* heuristic */
1901 i2c_w1(gspca_dev, 0x03, b >> 8);
1902 i2c_w1(gspca_dev, 0x04, b);
1903 break;
1904 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001905 case SENSOR_HV7131R: {
Jean-Francois Moine98819182009-01-19 07:37:33 -03001906 u8 Expodoit[] =
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001907 { 0xc1, 0x11, 0x25, 0x00, 0x00, 0x00, 0x00, 0x16 };
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001908
1909 Expodoit[3] = expo >> 16;
1910 Expodoit[4] = expo >> 8;
1911 Expodoit[5] = expo;
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001912 i2c_w8(gspca_dev, Expodoit);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001913 break;
1914 }
1915 case SENSOR_MI0360: {
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001916 u8 expoMi[] = /* exposure 0x0635 -> 4 fp/s 0x10 */
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001917 { 0xb1, 0x5d, 0x09, 0x00, 0x00, 0x00, 0x00, 0x16 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03001918 static const u8 doit[] = /* update sensor */
1919 { 0xb1, 0x5d, 0x07, 0x00, 0x03, 0x00, 0x00, 0x10 };
1920 static const u8 sensorgo[] = /* sensor on */
1921 { 0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10 };
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001922
1923 if (expo > 0x0635)
1924 expo = 0x0635;
1925 else if (expo < 0x0001)
1926 expo = 0x0001;
1927 expoMi[3] = expo >> 8;
1928 expoMi[4] = expo;
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001929 i2c_w8(gspca_dev, expoMi);
1930 i2c_w8(gspca_dev, doit);
1931 i2c_w8(gspca_dev, sensorgo);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001932 break;
1933 }
1934 case SENSOR_MO4000: {
Jean-Francois Moine98819182009-01-19 07:37:33 -03001935 u8 expoMof[] =
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001936 { 0xa1, 0x21, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03001937 u8 expoMo10[] =
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001938 { 0xa1, 0x21, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03001939 static const u8 gainMo[] =
1940 { 0xa1, 0x21, 0x00, 0x10, 0x00, 0x00, 0x00, 0x1d };
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001941
1942 if (expo > 0x1fff)
1943 expo = 0x1fff;
1944 else if (expo < 0x0001)
1945 expo = 0x0001;
1946 expoMof[3] = (expo & 0x03fc) >> 2;
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001947 i2c_w8(gspca_dev, expoMof);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001948 expoMo10[3] = ((expo & 0x1c00) >> 10)
1949 | ((expo & 0x0003) << 4);
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001950 i2c_w8(gspca_dev, expoMo10);
1951 i2c_w8(gspca_dev, gainMo);
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001952 PDEBUG(D_FRAM, "set exposure %d",
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001953 ((expoMo10[3] & 0x07) << 10)
1954 | (expoMof[3] << 2)
1955 | ((expoMo10[3] & 0x30) >> 4));
1956 break;
1957 }
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001958 case SENSOR_MT9V111: {
1959 u8 expo_c1[] =
1960 { 0xb1, 0x5c, 0x09, 0x00, 0x00, 0x00, 0x00, 0x10 };
1961
1962 if (expo > 0x0280)
1963 expo = 0x0280;
1964 else if (expo < 0x0040)
1965 expo = 0x0040;
1966 expo_c1[3] = expo >> 8;
1967 expo_c1[4] = expo;
1968 i2c_w8(gspca_dev, expo_c1);
1969 break;
1970 }
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001971 case SENSOR_OM6802: {
Jean-Francois Moine98819182009-01-19 07:37:33 -03001972 u8 gainOm[] =
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001973 { 0xa0, 0x34, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001974 /* preset AGC - works when AutoExpo = off */
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001975
1976 if (expo > 0x03ff)
1977 expo = 0x03ff;
1978 if (expo < 0x0001)
1979 expo = 0x0001;
1980 gainOm[3] = expo >> 2;
1981 i2c_w8(gspca_dev, gainOm);
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001982 reg_w1(gspca_dev, 0x96, expo >> 5);
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001983 PDEBUG(D_FRAM, "set exposure %d", gainOm[3]);
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001984 break;
1985 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001986 }
1987 return expo;
1988}
1989
1990static void setbrightness(struct gspca_dev *gspca_dev)
1991{
1992 struct sd *sd = (struct sd *) gspca_dev;
1993 unsigned int expo;
Jean-Francois Moine98819182009-01-19 07:37:33 -03001994 u8 k2;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001995
Jean-Francois Moineb1b056a2008-11-25 04:47:09 -03001996 k2 = ((int) sd->brightness - 0x8000) >> 10;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001997 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03001998 case SENSOR_ADCM1700:
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03001999 if (k2 > 0x1f)
2000 k2 = 0; /* only positive Y offset */
2001 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002002 case SENSOR_HV7131R:
2003 expo = sd->brightness << 4;
2004 if (expo > 0x002dc6c0)
2005 expo = 0x002dc6c0;
2006 else if (expo < 0x02a0)
2007 expo = 0x02a0;
2008 sd->exposure = setexposure(gspca_dev, expo);
2009 break;
2010 case SENSOR_MI0360:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002011 case SENSOR_MO4000:
2012 expo = sd->brightness >> 4;
2013 sd->exposure = setexposure(gspca_dev, expo);
2014 break;
Jean-François Moinec26b12d2010-04-02 07:08:39 -03002015 case SENSOR_GC0307:
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03002016 case SENSOR_MT9V111:
2017 expo = sd->brightness >> 8;
2018 sd->exposure = setexposure(gspca_dev, expo);
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002019 return; /* don't set the Y offset */
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03002020 case SENSOR_OM6802:
2021 expo = sd->brightness >> 6;
2022 sd->exposure = setexposure(gspca_dev, expo);
Jean-Francois Moineb1b056a2008-11-25 04:47:09 -03002023 k2 = sd->brightness >> 11;
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03002024 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002025 }
2026
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002027 reg_w1(gspca_dev, 0x96, k2); /* color matrix Y offset */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002028}
2029
2030static void setcontrast(struct gspca_dev *gspca_dev)
2031{
2032 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine98819182009-01-19 07:37:33 -03002033 u8 k2;
2034 u8 contrast[6];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002035
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03002036 k2 = sd->contrast * 0x30 / (CONTRAST_MAX + 1) + 0x10; /* 10..40 */
2037 contrast[0] = (k2 + 1) / 2; /* red */
Jean-Francois Moine577cbf42008-12-05 06:18:37 -03002038 contrast[1] = 0;
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03002039 contrast[2] = k2; /* green */
Jean-Francois Moine577cbf42008-12-05 06:18:37 -03002040 contrast[3] = 0;
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03002041 contrast[4] = (k2 + 1) / 5; /* blue */
Jean-Francois Moine577cbf42008-12-05 06:18:37 -03002042 contrast[5] = 0;
2043 reg_w(gspca_dev, 0x84, contrast, sizeof contrast);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002044}
2045
2046static void setcolors(struct gspca_dev *gspca_dev)
2047{
2048 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine403123d2008-11-26 04:46:15 -03002049 int i, v;
Jean-Francois Moine98819182009-01-19 07:37:33 -03002050 u8 reg8a[12]; /* U & V gains */
Jean-François Moine9c33afc2010-03-17 15:25:32 -03002051 static const s16 uv[6] = { /* same as reg84 in signed decimal */
Jean-Francois Moine403123d2008-11-26 04:46:15 -03002052 -24, -38, 64, /* UR UG UB */
2053 62, -51, -9 /* VR VG VB */
2054 };
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002055
Jean-Francois Moine403123d2008-11-26 04:46:15 -03002056 for (i = 0; i < 6; i++) {
2057 v = uv[i] * sd->colors / COLOR_DEF;
Jean-Francois Moinebd088832008-12-02 06:58:57 -03002058 reg8a[i * 2] = v;
2059 reg8a[i * 2 + 1] = (v >> 8) & 0x0f;
Jean-Francois Moined55b83d2008-09-03 16:48:01 -03002060 }
Jean-Francois Moinebd088832008-12-02 06:58:57 -03002061 reg_w(gspca_dev, 0x8a, reg8a, sizeof reg8a);
Jean-Francois Moine403123d2008-11-26 04:46:15 -03002062}
2063
2064static void setredblue(struct gspca_dev *gspca_dev)
2065{
2066 struct sd *sd = (struct sd *) gspca_dev;
2067
2068 reg_w1(gspca_dev, 0x05, sd->red);
Jean-Francois Moine9c5f70f2008-09-03 16:48:04 -03002069/* reg_w1(gspca_dev, 0x07, 32); */
Jean-Francois Moine403123d2008-11-26 04:46:15 -03002070 reg_w1(gspca_dev, 0x06, sd->blue);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002071}
2072
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03002073static void setgamma(struct gspca_dev *gspca_dev)
2074{
2075 struct sd *sd = (struct sd *) gspca_dev;
2076 int i;
2077 u8 gamma[17];
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002078 const u8 *gamma_base;
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03002079 static const u8 delta[17] = {
2080 0x00, 0x14, 0x1c, 0x1c, 0x1c, 0x1c, 0x1b, 0x1a,
2081 0x18, 0x13, 0x10, 0x0e, 0x08, 0x07, 0x04, 0x02, 0x00
2082 };
2083
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002084 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03002085 case SENSOR_ADCM1700:
2086 gamma_base = gamma_spec_0;
2087 break;
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002088 case SENSOR_HV7131R:
2089 case SENSOR_MT9V111:
2090 gamma_base = gamma_spec_1;
2091 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002092 case SENSOR_GC0307:
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002093 gamma_base = gamma_spec_2;
2094 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002095 case SENSOR_SP80708:
2096 gamma_base = gamma_spec_3;
2097 break;
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002098 default:
2099 gamma_base = gamma_def;
2100 break;
2101 }
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002102
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03002103 for (i = 0; i < sizeof gamma; i++)
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002104 gamma[i] = gamma_base[i]
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03002105 + delta[i] * (sd->gamma - GAMMA_DEF) / 32;
2106 reg_w(gspca_dev, 0x20, gamma, sizeof gamma);
2107}
2108
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002109static void setautogain(struct gspca_dev *gspca_dev)
2110{
2111 struct sd *sd = (struct sd *) gspca_dev;
2112
Jean-Francois Moinef50ba1b2008-09-03 17:12:14 -03002113 if (gspca_dev->ctrl_dis & (1 << AUTOGAIN_IDX))
2114 return;
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03002115 switch (sd->sensor) {
2116 case SENSOR_OV7630:
2117 case SENSOR_OV7648: {
2118 u8 comb;
2119
2120 if (sd->sensor == SENSOR_OV7630)
2121 comb = 0xc0;
2122 else
2123 comb = 0xa0;
2124 if (sd->autogain)
Hans de Goede1fec7472009-06-18 06:05:07 -03002125 comb |= 0x03;
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03002126 i2c_w1(&sd->gspca_dev, 0x13, comb);
2127 return;
2128 }
2129 }
Jean-Francois Moinef50ba1b2008-09-03 17:12:14 -03002130 if (sd->autogain)
2131 sd->ag_cnt = AG_CNT_START;
2132 else
2133 sd->ag_cnt = -1;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002134}
2135
Jean-François Moinef6b22e52010-02-18 04:12:06 -03002136/* hv7131r/ov7630/ov7648 only */
Jean-Francois Moine6c862742008-09-08 04:57:26 -03002137static void setvflip(struct sd *sd)
2138{
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03002139 u8 comn;
2140
Jean-Francois Moine0939e262009-11-02 09:58:49 -03002141 if (sd->gspca_dev.ctrl_dis & (1 << VFLIP_IDX))
2142 return;
Jean-François Moinef6b22e52010-02-18 04:12:06 -03002143 switch (sd->sensor) {
2144 case SENSOR_HV7131R:
2145 comn = 0x18; /* clkdiv = 1, ablcen = 1 */
2146 if (sd->vflip)
2147 comn |= 0x01;
2148 i2c_w1(&sd->gspca_dev, 0x01, comn); /* sctra */
2149 break;
2150 case SENSOR_OV7630:
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03002151 comn = 0x02;
Hans de Goedef8009522009-06-18 14:29:20 -03002152 if (!sd->vflip)
2153 comn |= 0x80;
Jean-François Moinef6b22e52010-02-18 04:12:06 -03002154 i2c_w1(&sd->gspca_dev, 0x75, comn);
2155 break;
2156 default:
2157/* case SENSOR_OV7648: */
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03002158 comn = 0x06;
Hans de Goedef8009522009-06-18 14:29:20 -03002159 if (sd->vflip)
2160 comn |= 0x80;
Jean-François Moinef6b22e52010-02-18 04:12:06 -03002161 i2c_w1(&sd->gspca_dev, 0x75, comn);
2162 break;
Hans de Goedef8009522009-06-18 14:29:20 -03002163 }
Jean-Francois Moine6c862742008-09-08 04:57:26 -03002164}
2165
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002166static void setsharpness(struct sd *sd)
2167{
2168 reg_w1(&sd->gspca_dev, 0x99, sd->sharpness);
2169}
2170
Jean-Francois Moine0cae8962008-10-17 07:48:24 -03002171static void setinfrared(struct sd *sd)
2172{
Jean-Francois Moine47f7f6f2009-08-25 06:14:54 -03002173 if (sd->gspca_dev.ctrl_dis & (1 << INFRARED_IDX))
2174 return;
Jean-Francois Moine0cae8962008-10-17 07:48:24 -03002175/*fixme: different sequence for StarCam Clip and StarCam 370i */
2176/* Clip */
2177 i2c_w1(&sd->gspca_dev, 0x02, /* gpio */
2178 sd->infrared ? 0x66 : 0x64);
2179}
2180
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002181static void setfreq(struct gspca_dev *gspca_dev)
2182{
2183 struct sd *sd = (struct sd *) gspca_dev;
2184
Jean-Francois Moine27954932009-07-08 05:21:50 -03002185 if (gspca_dev->ctrl_dis & (1 << FREQ_IDX))
2186 return;
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002187 if (sd->sensor == SENSOR_OV7660) {
Jean-Francois Moined8f400e2009-07-08 06:33:44 -03002188 u8 com8;
2189
Jean-Francois Moine47f7f6f2009-08-25 06:14:54 -03002190 com8 = 0xdf; /* auto gain/wb/expo */
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002191 switch (sd->freq) {
2192 case 0: /* Banding filter disabled */
Jean-Francois Moine47f7f6f2009-08-25 06:14:54 -03002193 i2c_w1(gspca_dev, 0x13, com8 | 0x20);
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002194 break;
2195 case 1: /* 50 hz */
Jean-Francois Moined8f400e2009-07-08 06:33:44 -03002196 i2c_w1(gspca_dev, 0x13, com8);
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002197 i2c_w1(gspca_dev, 0x3b, 0x0a);
2198 break;
2199 case 2: /* 60 hz */
Jean-Francois Moined8f400e2009-07-08 06:33:44 -03002200 i2c_w1(gspca_dev, 0x13, com8);
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002201 i2c_w1(gspca_dev, 0x3b, 0x02);
2202 break;
2203 }
2204 } else {
2205 u8 reg2a = 0, reg2b = 0, reg2d = 0;
2206
2207 /* Get reg2a / reg2d base values */
2208 switch (sd->sensor) {
2209 case SENSOR_OV7630:
2210 reg2a = 0x08;
2211 reg2d = 0x01;
2212 break;
2213 case SENSOR_OV7648:
2214 reg2a = 0x11;
2215 reg2d = 0x81;
2216 break;
2217 }
2218
2219 switch (sd->freq) {
2220 case 0: /* Banding filter disabled */
2221 break;
2222 case 1: /* 50 hz (filter on and framerate adj) */
2223 reg2a |= 0x80;
2224 reg2b = 0xac;
2225 reg2d |= 0x04;
2226 break;
2227 case 2: /* 60 hz (filter on, no framerate adj) */
2228 reg2a |= 0x80;
2229 reg2d |= 0x04;
2230 break;
2231 }
2232 i2c_w1(gspca_dev, 0x2a, reg2a);
2233 i2c_w1(gspca_dev, 0x2b, reg2b);
2234 i2c_w1(gspca_dev, 0x2d, reg2d);
2235 }
2236}
2237
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002238static void setjpegqual(struct gspca_dev *gspca_dev)
2239{
2240 struct sd *sd = (struct sd *) gspca_dev;
2241 int i, sc;
2242
2243 if (sd->jpegqual < 50)
2244 sc = 5000 / sd->jpegqual;
2245 else
2246 sc = 200 - sd->jpegqual * 2;
2247#if USB_BUF_SZ < 64
2248#error "No room enough in usb_buf for quantization table"
2249#endif
2250 for (i = 0; i < 64; i++)
2251 gspca_dev->usb_buf[i] =
2252 (jpeg_head[JPEG_QT0_OFFSET + i] * sc + 50) / 100;
2253 usb_control_msg(gspca_dev->dev,
2254 usb_sndctrlpipe(gspca_dev->dev, 0),
2255 0x08,
2256 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
2257 0x0100, 0,
2258 gspca_dev->usb_buf, 64,
2259 500);
2260 for (i = 0; i < 64; i++)
2261 gspca_dev->usb_buf[i] =
2262 (jpeg_head[JPEG_QT1_OFFSET + i] * sc + 50) / 100;
2263 usb_control_msg(gspca_dev->dev,
2264 usb_sndctrlpipe(gspca_dev->dev, 0),
2265 0x08,
2266 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
2267 0x0140, 0,
2268 gspca_dev->usb_buf, 64,
2269 500);
2270
2271 sd->reg18 ^= 0x40;
2272 reg_w1(gspca_dev, 0x18, sd->reg18);
2273}
2274
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002275/* -- start the camera -- */
Jean-Francois Moine72ab97c2008-09-20 06:39:08 -03002276static int sd_start(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002277{
2278 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002279 int i;
Jean-François Moine19697b52010-07-14 06:33:51 -03002280 u8 reg1, reg17;
Jean-Francois Moine98819182009-01-19 07:37:33 -03002281 const u8 *sn9c1xx;
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002282 const u8 (*init)[8];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002283 int mode;
Jean-Francois Moine98819182009-01-19 07:37:33 -03002284 static const u8 C0[] = { 0x2d, 0x2d, 0x3a, 0x05, 0x04, 0x3f };
2285 static const u8 CA[] = { 0x28, 0xd8, 0x14, 0xec };
Jean-Francois Moine64677572009-12-20 12:31:28 -03002286 static const u8 CA_adcm1700[] =
2287 { 0x14, 0xec, 0x0a, 0xf6 };
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002288 static const u8 CA_po2030n[] =
2289 { 0x1e, 0xe2, 0x14, 0xec };
Jean-Francois Moine98819182009-01-19 07:37:33 -03002290 static const u8 CE[] = { 0x32, 0xdd, 0x2d, 0xdd }; /* MI0360 */
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002291 static const u8 CE_gc0307[] =
2292 { 0x32, 0xce, 0x2d, 0xd3 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03002293 static const u8 CE_ov76xx[] =
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03002294 { 0x32, 0xdd, 0x32, 0xdd };
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002295 static const u8 CE_po2030n[] =
2296 { 0x14, 0xe7, 0x1e, 0xdd };
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002297
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002298 /* create the JPEG header */
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002299 jpeg_define(sd->jpeg_hdr, gspca_dev->height, gspca_dev->width,
2300 0x21); /* JPEG 422 */
2301 jpeg_set_qual(sd->jpeg_hdr, sd->quality);
2302
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002303 /* initialize the bridge */
2304 sn9c1xx = sn_tb[sd->sensor];
2305 bridge_init(gspca_dev, sn9c1xx);
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002306
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002307 /* initialize the sensor */
2308 i2c_w_seq(gspca_dev, sensor_init[sd->sensor]);
2309
Jean-Francois Moine60017612008-07-18 08:46:19 -03002310 reg_w1(gspca_dev, 0x15, sn9c1xx[0x15]);
2311 reg_w1(gspca_dev, 0x16, sn9c1xx[0x16]);
2312 reg_w1(gspca_dev, 0x12, sn9c1xx[0x12]);
2313 reg_w1(gspca_dev, 0x13, sn9c1xx[0x13]);
2314 reg_w1(gspca_dev, 0x18, sn9c1xx[0x18]);
Jean-Francois Moine64677572009-12-20 12:31:28 -03002315 if (sd->sensor == SENSOR_ADCM1700) {
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002316 reg_w1(gspca_dev, 0xd2, 0x3a); /* AE_H_SIZE = 116 */
2317 reg_w1(gspca_dev, 0xd3, 0x30); /* AE_V_SIZE = 96 */
Jean-Francois Moine64677572009-12-20 12:31:28 -03002318 } else {
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002319 reg_w1(gspca_dev, 0xd2, 0x6a); /* AE_H_SIZE = 212 */
2320 reg_w1(gspca_dev, 0xd3, 0x50); /* AE_V_SIZE = 160 */
Jean-Francois Moine64677572009-12-20 12:31:28 -03002321 }
Jean-Francois Moine60017612008-07-18 08:46:19 -03002322 reg_w1(gspca_dev, 0xc6, 0x00);
2323 reg_w1(gspca_dev, 0xc7, 0x00);
Jean-Francois Moine64677572009-12-20 12:31:28 -03002324 if (sd->sensor == SENSOR_ADCM1700) {
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002325 reg_w1(gspca_dev, 0xc8, 0x2c); /* AW_H_STOP = 352 */
2326 reg_w1(gspca_dev, 0xc9, 0x24); /* AW_V_STOP = 288 */
Jean-Francois Moine64677572009-12-20 12:31:28 -03002327 } else {
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002328 reg_w1(gspca_dev, 0xc8, 0x50); /* AW_H_STOP = 640 */
2329 reg_w1(gspca_dev, 0xc9, 0x3c); /* AW_V_STOP = 480 */
Jean-Francois Moine64677572009-12-20 12:31:28 -03002330 }
Jean-Francois Moine60017612008-07-18 08:46:19 -03002331 reg_w1(gspca_dev, 0x18, sn9c1xx[0x18]);
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002332 switch (sd->sensor) {
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002333 case SENSOR_GC0307:
2334 reg17 = 0xa2;
2335 break;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03002336 case SENSOR_MT9V111:
2337 reg17 = 0xe0;
2338 break;
Jean-Francois Moine64677572009-12-20 12:31:28 -03002339 case SENSOR_ADCM1700:
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002340 case SENSOR_OV7630:
2341 reg17 = 0xe2;
2342 break;
2343 case SENSOR_OV7648:
Jean-Francois Moine62703302008-11-11 08:42:56 -03002344 reg17 = 0x20;
Jean-Francois Moine568788a2008-07-15 11:46:06 -03002345 break;
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002346 case SENSOR_OV7660:
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002347 case SENSOR_SOI768:
Jean-Francois Moinec8b9b2ca2009-04-26 14:46:12 -03002348 reg17 = 0xa0;
2349 break;
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03002350 case SENSOR_PO1030:
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002351 case SENSOR_PO2030N:
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03002352 reg17 = 0xa0;
2353 break;
Jean-Francois Moine568788a2008-07-15 11:46:06 -03002354 default:
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -03002355 reg17 = 0x60;
Jean-Francois Moine568788a2008-07-15 11:46:06 -03002356 break;
2357 }
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -03002358 reg_w1(gspca_dev, 0x17, reg17);
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002359
2360 reg_w1(gspca_dev, 0x05, 0x00); /* red */
2361 reg_w1(gspca_dev, 0x07, 0x00); /* green */
2362 reg_w1(gspca_dev, 0x06, 0x00); /* blue */
Jean-Francois Moine60017612008-07-18 08:46:19 -03002363 reg_w1(gspca_dev, 0x14, sn9c1xx[0x14]);
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002364
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002365 setgamma(gspca_dev);
2366
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002367/*fixme: 8 times with all zeroes and 1 or 2 times with normal values */
Jean-Francois Moine05b809c2008-09-03 16:47:59 -03002368 for (i = 0; i < 8; i++)
2369 reg_w(gspca_dev, 0x84, reg84, sizeof reg84);
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03002370 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03002371 case SENSOR_ADCM1700:
Jean-Francois Moinec8b9b2ca2009-04-26 14:46:12 -03002372 case SENSOR_OV7660:
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002373 case SENSOR_SP80708:
2374 reg_w1(gspca_dev, 0x9a, 0x05);
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002375 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002376 case SENSOR_GC0307:
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002377 case SENSOR_MT9V111:
2378 reg_w1(gspca_dev, 0x9a, 0x07);
2379 break;
Jean-François Moine0a85c742010-04-25 14:33:31 -03002380 case SENSOR_OV7630:
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002381 case SENSOR_OV7648:
2382 reg_w1(gspca_dev, 0x9a, 0x0a);
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002383 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002384 case SENSOR_PO2030N:
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002385 case SENSOR_SOI768:
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002386 reg_w1(gspca_dev, 0x9a, 0x06);
2387 break;
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03002388 default:
Jean-Francois Moine60017612008-07-18 08:46:19 -03002389 reg_w1(gspca_dev, 0x9a, 0x08);
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03002390 break;
2391 }
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002392 setsharpness(sd);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002393
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002394 reg_w(gspca_dev, 0x84, reg84, sizeof reg84);
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002395 reg_w1(gspca_dev, 0x05, 0x20); /* red */
2396 reg_w1(gspca_dev, 0x07, 0x20); /* green */
2397 reg_w1(gspca_dev, 0x06, 0x20); /* blue */
Jean-Francois Moine23a98272009-11-02 09:10:25 -03002398
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002399 init = NULL;
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002400 mode = gspca_dev->cam.cam_mode[gspca_dev->curr_mode].priv;
Jean-Francois Moine60017612008-07-18 08:46:19 -03002401 if (mode)
Jean-Francois Moine1432f302008-11-21 04:34:15 -03002402 reg1 = 0x46; /* 320x240: clk 48Mhz, video trf enable */
Jean-Francois Moine60017612008-07-18 08:46:19 -03002403 else
Jean-Francois Moine1432f302008-11-21 04:34:15 -03002404 reg1 = 0x06; /* 640x480: clk 24Mhz, video trf enable */
2405 reg17 = 0x61; /* 0x:20: enable sensor clock */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002406 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03002407 case SENSOR_ADCM1700:
2408 init = adcm1700_sensor_param1;
2409 reg1 = 0x46;
2410 reg17 = 0xe2;
2411 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002412 case SENSOR_GC0307:
2413 init = gc0307_sensor_param1;
2414 reg17 = 0xa2;
2415 reg1 = 0x44;
2416 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002417 case SENSOR_MO4000:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002418 if (mode) {
2419/* reg1 = 0x46; * 320 clk 48Mhz 60fp/s */
2420 reg1 = 0x06; /* clk 24Mz */
2421 } else {
2422 reg17 = 0x22; /* 640 MCKSIZE */
Jean-Francois Moine60017612008-07-18 08:46:19 -03002423/* reg1 = 0x06; * 640 clk 24Mz (done) */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002424 }
2425 break;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03002426 case SENSOR_MT9V111:
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002427 init = mt9v111_sensor_param1;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03002428 if (mode) {
2429 reg1 = 0x04; /* 320 clk 48Mhz */
2430 } else {
2431/* reg1 = 0x06; * 640 clk 24Mz (done) */
Jean-Francois Moine2687a2f2009-02-01 14:48:55 -03002432 reg17 = 0xc2;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03002433 }
Jean-Francois Moine0fbe0572009-01-30 12:14:02 -03002434 break;
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03002435 case SENSOR_OM6802:
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002436 init = om6802_sensor_param1;
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03002437 reg17 = 0x64; /* 640 MCKSIZE */
2438 break;
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002439 case SENSOR_OV7630:
Jean-François Moinebdd2b932010-04-25 14:23:39 -03002440 init = ov7630_sensor_param1;
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002441 reg17 = 0xe2;
Jean-Francois Moine5b064da2008-09-03 16:48:08 -03002442 reg1 = 0x44;
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002443 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002444 case SENSOR_OV7648:
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002445 init = ov7648_sensor_param1;
Jean-Francois Moine62703302008-11-11 08:42:56 -03002446 reg17 = 0x21;
2447/* reg1 = 0x42; * 42 - 46? */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002448 break;
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002449 case SENSOR_OV7660:
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002450 init = ov7660_sensor_param1;
Jean-Francois Moinedaa5cb42008-12-02 15:00:57 -03002451 if (sd->bridge == BRIDGE_SN9C120) {
2452 if (mode) { /* 320x240 - 160x120 */
Jean-Francois Moine1432f302008-11-21 04:34:15 -03002453 reg17 = 0xa2;
2454 reg1 = 0x44; /* 48 Mhz, video trf eneble */
Jean-Francois Moine1432f302008-11-21 04:34:15 -03002455 }
Jean-Francois Moinedaa5cb42008-12-02 15:00:57 -03002456 } else {
2457 reg17 = 0x22;
2458 reg1 = 0x06; /* 24 Mhz, video trf eneble
2459 * inverse power down */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002460 }
2461 break;
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03002462 case SENSOR_PO1030:
2463 init = po1030_sensor_param1;
2464 reg17 = 0xa2;
2465 reg1 = 0x44;
2466 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002467 case SENSOR_PO2030N:
2468 init = po2030n_sensor_param1;
2469 reg1 = 0x46;
2470 reg17 = 0xa2;
2471 break;
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002472 case SENSOR_SOI768:
2473 init = soi768_sensor_param1;
2474 reg1 = 0x44;
2475 reg17 = 0xa2;
2476 break;
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002477 default:
2478/* case SENSOR_SP80708: */
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002479 init = sp80708_sensor_param1;
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002480 if (mode) {
2481/*?? reg1 = 0x04; * 320 clk 48Mhz */
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002482 } else {
2483 reg1 = 0x46; /* 640 clk 48Mz */
2484 reg17 = 0xa2;
2485 }
2486 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002487 }
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002488
2489 /* more sensor initialization - param1 */
2490 if (init != NULL) {
2491 i2c_w_seq(gspca_dev, init);
2492/* init = NULL; */
2493 }
2494
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002495 reg_w(gspca_dev, 0xc0, C0, 6);
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002496 switch (sd->sensor) {
2497 case SENSOR_ADCM1700:
2498 case SENSOR_GC0307:
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002499 case SENSOR_SOI768:
Jean-Francois Moine64677572009-12-20 12:31:28 -03002500 reg_w(gspca_dev, 0xca, CA_adcm1700, 4);
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002501 break;
2502 case SENSOR_PO2030N:
2503 reg_w(gspca_dev, 0xca, CA_po2030n, 4);
2504 break;
2505 default:
Jean-Francois Moine64677572009-12-20 12:31:28 -03002506 reg_w(gspca_dev, 0xca, CA, 4);
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002507 break;
2508 }
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002509 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03002510 case SENSOR_ADCM1700:
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002511 case SENSOR_OV7630:
2512 case SENSOR_OV7648:
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03002513 case SENSOR_OV7660:
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002514 case SENSOR_SOI768:
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002515 reg_w(gspca_dev, 0xce, CE_ov76xx, 4);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002516 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002517 case SENSOR_GC0307:
2518 reg_w(gspca_dev, 0xce, CE_gc0307, 4);
2519 break;
2520 case SENSOR_PO2030N:
2521 reg_w(gspca_dev, 0xce, CE_po2030n, 4);
2522 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002523 default:
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002524 reg_w(gspca_dev, 0xce, CE, 4);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002525 /* ?? {0x1e, 0xdd, 0x2d, 0xe7} */
2526 break;
2527 }
2528
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002529
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002530 /* here change size mode 0 -> VGA; 1 -> CIF */
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002531 sd->reg18 = sn9c1xx[0x18] | (mode << 4) | 0x40;
2532 reg_w1(gspca_dev, 0x18, sd->reg18);
2533 setjpegqual(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002534
Jean-Francois Moine60017612008-07-18 08:46:19 -03002535 reg_w1(gspca_dev, 0x17, reg17);
Jean-Francois Moine1432f302008-11-21 04:34:15 -03002536 reg_w1(gspca_dev, 0x01, reg1);
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002537
Jean-François Moine1e5eb112010-02-18 14:56:33 -03002538 setvflip(sd);
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03002539 setbrightness(gspca_dev);
2540 setcontrast(gspca_dev);
Jean-François Moinefff2f702010-04-25 14:31:05 -03002541 setcolors(gspca_dev);
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002542 setautogain(gspca_dev);
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002543 setfreq(gspca_dev);
Jean-Francois Moine72ab97c2008-09-20 06:39:08 -03002544 return 0;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002545}
2546
2547static void sd_stopN(struct gspca_dev *gspca_dev)
2548{
2549 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine98819182009-01-19 07:37:33 -03002550 static const u8 stophv7131[] =
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002551 { 0xa1, 0x11, 0x02, 0x09, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03002552 static const u8 stopmi0360[] =
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002553 { 0xb1, 0x5d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03002554 static const u8 stopov7648[] =
Jean-Francois Moine62703302008-11-11 08:42:56 -03002555 { 0xa1, 0x21, 0x76, 0x20, 0x00, 0x00, 0x00, 0x10 };
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002556 static const u8 stopsoi768[] =
2557 { 0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03002558 u8 data;
2559 const u8 *sn9c1xx;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002560
2561 data = 0x0b;
2562 switch (sd->sensor) {
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002563 case SENSOR_GC0307:
2564 data = 0x29;
2565 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002566 case SENSOR_HV7131R:
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002567 i2c_w8(gspca_dev, stophv7131);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002568 data = 0x2b;
2569 break;
2570 case SENSOR_MI0360:
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002571 i2c_w8(gspca_dev, stopmi0360);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002572 data = 0x29;
2573 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002574 case SENSOR_OV7648:
Jean-Francois Moine62703302008-11-11 08:42:56 -03002575 i2c_w8(gspca_dev, stopov7648);
2576 /* fall thru */
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03002577 case SENSOR_MT9V111:
Jean-Francois Moine62703302008-11-11 08:42:56 -03002578 case SENSOR_OV7630:
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03002579 case SENSOR_PO1030:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002580 data = 0x29;
2581 break;
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002582 case SENSOR_SOI768:
2583 i2c_w8(gspca_dev, stopsoi768);
2584 data = 0x29;
2585 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002586 }
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002587 sn9c1xx = sn_tb[sd->sensor];
Jean-Francois Moine60017612008-07-18 08:46:19 -03002588 reg_w1(gspca_dev, 0x01, sn9c1xx[1]);
2589 reg_w1(gspca_dev, 0x17, sn9c1xx[0x17]);
2590 reg_w1(gspca_dev, 0x01, sn9c1xx[1]);
2591 reg_w1(gspca_dev, 0x01, data);
Hans de Goede9712a8b2010-01-31 12:54:29 -03002592 /* Don't disable sensor clock as that disables the button on the cam */
2593 /* reg_w1(gspca_dev, 0xf1, 0x01); */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002594}
2595
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002596static void do_autogain(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002597{
2598 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002599 int delta;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002600 int expotimes;
Jean-Francois Moine98819182009-01-19 07:37:33 -03002601 u8 luma_mean = 130;
2602 u8 luma_delta = 20;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002603
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002604 /* Thanks S., without your advice, autobright should not work :) */
2605 if (sd->ag_cnt < 0)
2606 return;
2607 if (--sd->ag_cnt >= 0)
2608 return;
2609 sd->ag_cnt = AG_CNT_START;
2610
2611 delta = atomic_read(&sd->avg_lum);
2612 PDEBUG(D_FRAM, "mean lum %d", delta);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002613 if (delta < luma_mean - luma_delta ||
2614 delta > luma_mean + luma_delta) {
2615 switch (sd->sensor) {
Jean-François Moinec26b12d2010-04-02 07:08:39 -03002616 case SENSOR_GC0307:
2617 expotimes = sd->exposure;
2618 expotimes += (luma_mean - delta) >> 6;
2619 if (expotimes < 0)
2620 expotimes = 0;
2621 sd->exposure = setexposure(gspca_dev,
2622 (unsigned int) expotimes);
2623 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002624 case SENSOR_HV7131R:
2625 expotimes = sd->exposure >> 8;
2626 expotimes += (luma_mean - delta) >> 4;
2627 if (expotimes < 0)
2628 expotimes = 0;
2629 sd->exposure = setexposure(gspca_dev,
2630 (unsigned int) (expotimes << 8));
2631 break;
Amauri Magagna46b4f2a2009-10-17 07:21:29 -03002632 case SENSOR_OM6802:
2633 expotimes = sd->exposure;
2634 expotimes += (luma_mean - delta) >> 2;
2635 if (expotimes < 0)
2636 expotimes = 0;
2637 sd->exposure = setexposure(gspca_dev,
2638 (unsigned int) expotimes);
2639 setredblue(gspca_dev);
2640 break;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002641 default:
2642/* case SENSOR_MO4000: */
2643/* case SENSOR_MI0360: */
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03002644/* case SENSOR_MT9V111: */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002645 expotimes = sd->exposure;
2646 expotimes += (luma_mean - delta) >> 6;
2647 if (expotimes < 0)
2648 expotimes = 0;
2649 sd->exposure = setexposure(gspca_dev,
2650 (unsigned int) expotimes);
Jean-Francois Moine403123d2008-11-26 04:46:15 -03002651 setredblue(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002652 break;
2653 }
2654 }
2655}
2656
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002657/* scan the URB packets */
2658/* This function is run at interrupt level. */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002659static void sd_pkt_scan(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03002660 u8 *data, /* isoc packet */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002661 int len) /* iso packet length */
2662{
2663 struct sd *sd = (struct sd *) gspca_dev;
2664 int sof, avg_lum;
2665
2666 sof = len - 64;
2667 if (sof >= 0 && data[sof] == 0xff && data[sof + 1] == 0xd9) {
2668
2669 /* end of frame */
2670 gspca_frame_add(gspca_dev, LAST_PACKET,
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03002671 data, sof + 2);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002672 if (sd->ag_cnt < 0)
2673 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002674/* w1 w2 w3 */
2675/* w4 w5 w6 */
2676/* w7 w8 */
2677/* w4 */
2678 avg_lum = ((data[sof + 29] << 8) | data[sof + 30]) >> 6;
2679/* w6 */
2680 avg_lum += ((data[sof + 33] << 8) | data[sof + 34]) >> 6;
2681/* w2 */
2682 avg_lum += ((data[sof + 25] << 8) | data[sof + 26]) >> 6;
2683/* w8 */
2684 avg_lum += ((data[sof + 37] << 8) | data[sof + 38]) >> 6;
2685/* w5 */
2686 avg_lum += ((data[sof + 31] << 8) | data[sof + 32]) >> 4;
2687 avg_lum >>= 4;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002688 atomic_set(&sd->avg_lum, avg_lum);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002689 return;
2690 }
2691 if (gspca_dev->last_packet_type == LAST_PACKET) {
2692
2693 /* put the JPEG 422 header */
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03002694 gspca_frame_add(gspca_dev, FIRST_PACKET,
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002695 sd->jpeg_hdr, JPEG_HDR_SZ);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002696 }
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03002697 gspca_frame_add(gspca_dev, INTER_PACKET, data, len);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002698}
2699
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002700static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val)
2701{
2702 struct sd *sd = (struct sd *) gspca_dev;
2703
2704 sd->brightness = val;
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03002705 if (gspca_dev->streaming)
2706 setbrightness(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002707 return 0;
2708}
2709
2710static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val)
2711{
2712 struct sd *sd = (struct sd *) gspca_dev;
2713
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002714 *val = sd->brightness;
2715 return 0;
2716}
2717
2718static int sd_setcontrast(struct gspca_dev *gspca_dev, __s32 val)
2719{
2720 struct sd *sd = (struct sd *) gspca_dev;
2721
2722 sd->contrast = val;
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03002723 if (gspca_dev->streaming)
2724 setcontrast(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002725 return 0;
2726}
2727
2728static int sd_getcontrast(struct gspca_dev *gspca_dev, __s32 *val)
2729{
2730 struct sd *sd = (struct sd *) gspca_dev;
2731
2732 *val = sd->contrast;
2733 return 0;
2734}
2735
2736static int sd_setcolors(struct gspca_dev *gspca_dev, __s32 val)
2737{
2738 struct sd *sd = (struct sd *) gspca_dev;
2739
2740 sd->colors = val;
2741 if (gspca_dev->streaming)
2742 setcolors(gspca_dev);
2743 return 0;
2744}
2745
2746static int sd_getcolors(struct gspca_dev *gspca_dev, __s32 *val)
2747{
2748 struct sd *sd = (struct sd *) gspca_dev;
2749
2750 *val = sd->colors;
2751 return 0;
2752}
2753
Jean-Francois Moine403123d2008-11-26 04:46:15 -03002754static int sd_setblue_balance(struct gspca_dev *gspca_dev, __s32 val)
2755{
2756 struct sd *sd = (struct sd *) gspca_dev;
2757
2758 sd->blue = val;
2759 if (gspca_dev->streaming)
2760 setredblue(gspca_dev);
2761 return 0;
2762}
2763
2764static int sd_getblue_balance(struct gspca_dev *gspca_dev, __s32 *val)
2765{
2766 struct sd *sd = (struct sd *) gspca_dev;
2767
2768 *val = sd->blue;
2769 return 0;
2770}
2771
2772static int sd_setred_balance(struct gspca_dev *gspca_dev, __s32 val)
2773{
2774 struct sd *sd = (struct sd *) gspca_dev;
2775
2776 sd->red = val;
2777 if (gspca_dev->streaming)
2778 setredblue(gspca_dev);
2779 return 0;
2780}
2781
2782static int sd_getred_balance(struct gspca_dev *gspca_dev, __s32 *val)
2783{
2784 struct sd *sd = (struct sd *) gspca_dev;
2785
2786 *val = sd->red;
2787 return 0;
2788}
2789
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03002790static int sd_setgamma(struct gspca_dev *gspca_dev, __s32 val)
2791{
2792 struct sd *sd = (struct sd *) gspca_dev;
2793
2794 sd->gamma = val;
2795 if (gspca_dev->streaming)
2796 setgamma(gspca_dev);
2797 return 0;
2798}
2799
2800static int sd_getgamma(struct gspca_dev *gspca_dev, __s32 *val)
2801{
2802 struct sd *sd = (struct sd *) gspca_dev;
2803
2804 *val = sd->gamma;
2805 return 0;
2806}
2807
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002808static int sd_setautogain(struct gspca_dev *gspca_dev, __s32 val)
2809{
2810 struct sd *sd = (struct sd *) gspca_dev;
2811
2812 sd->autogain = val;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002813 if (gspca_dev->streaming)
2814 setautogain(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002815 return 0;
2816}
2817
2818static int sd_getautogain(struct gspca_dev *gspca_dev, __s32 *val)
2819{
2820 struct sd *sd = (struct sd *) gspca_dev;
2821
2822 *val = sd->autogain;
2823 return 0;
2824}
2825
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002826static int sd_setsharpness(struct gspca_dev *gspca_dev, __s32 val)
2827{
2828 struct sd *sd = (struct sd *) gspca_dev;
2829
2830 sd->sharpness = val;
2831 if (gspca_dev->streaming)
2832 setsharpness(sd);
2833 return 0;
2834}
2835
2836static int sd_getsharpness(struct gspca_dev *gspca_dev, __s32 *val)
2837{
2838 struct sd *sd = (struct sd *) gspca_dev;
2839
2840 *val = sd->sharpness;
2841 return 0;
2842}
2843
Jean-Francois Moine6c862742008-09-08 04:57:26 -03002844static int sd_setvflip(struct gspca_dev *gspca_dev, __s32 val)
2845{
2846 struct sd *sd = (struct sd *) gspca_dev;
2847
2848 sd->vflip = val;
Jean-Francois Moine79a90982008-10-05 04:21:24 -03002849 if (gspca_dev->streaming)
2850 setvflip(sd);
Jean-Francois Moine6c862742008-09-08 04:57:26 -03002851 return 0;
2852}
2853
2854static int sd_getvflip(struct gspca_dev *gspca_dev, __s32 *val)
2855{
2856 struct sd *sd = (struct sd *) gspca_dev;
2857
2858 *val = sd->vflip;
2859 return 0;
2860}
2861
Jean-Francois Moine0cae8962008-10-17 07:48:24 -03002862static int sd_setinfrared(struct gspca_dev *gspca_dev, __s32 val)
2863{
2864 struct sd *sd = (struct sd *) gspca_dev;
2865
2866 sd->infrared = val;
2867 if (gspca_dev->streaming)
2868 setinfrared(sd);
2869 return 0;
2870}
2871
2872static int sd_getinfrared(struct gspca_dev *gspca_dev, __s32 *val)
2873{
2874 struct sd *sd = (struct sd *) gspca_dev;
2875
2876 *val = sd->infrared;
2877 return 0;
2878}
2879
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002880static int sd_setfreq(struct gspca_dev *gspca_dev, __s32 val)
2881{
2882 struct sd *sd = (struct sd *) gspca_dev;
2883
2884 sd->freq = val;
2885 if (gspca_dev->streaming)
2886 setfreq(gspca_dev);
2887 return 0;
2888}
2889
2890static int sd_getfreq(struct gspca_dev *gspca_dev, __s32 *val)
2891{
2892 struct sd *sd = (struct sd *) gspca_dev;
2893
2894 *val = sd->freq;
2895 return 0;
2896}
2897
Jean-Francois Moine77ac0ba2009-03-02 06:40:52 -03002898static int sd_set_jcomp(struct gspca_dev *gspca_dev,
2899 struct v4l2_jpegcompression *jcomp)
2900{
2901 struct sd *sd = (struct sd *) gspca_dev;
2902
2903 if (jcomp->quality < QUALITY_MIN)
2904 sd->quality = QUALITY_MIN;
2905 else if (jcomp->quality > QUALITY_MAX)
2906 sd->quality = QUALITY_MAX;
2907 else
2908 sd->quality = jcomp->quality;
2909 if (gspca_dev->streaming)
2910 jpeg_set_qual(sd->jpeg_hdr, sd->quality);
2911 return 0;
2912}
2913
2914static int sd_get_jcomp(struct gspca_dev *gspca_dev,
2915 struct v4l2_jpegcompression *jcomp)
2916{
2917 struct sd *sd = (struct sd *) gspca_dev;
2918
2919 memset(jcomp, 0, sizeof *jcomp);
2920 jcomp->quality = sd->quality;
2921 jcomp->jpeg_markers = V4L2_JPEG_MARKER_DHT
2922 | V4L2_JPEG_MARKER_DQT;
2923 return 0;
2924}
2925
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002926static int sd_querymenu(struct gspca_dev *gspca_dev,
2927 struct v4l2_querymenu *menu)
2928{
2929 switch (menu->id) {
2930 case V4L2_CID_POWER_LINE_FREQUENCY:
2931 switch (menu->index) {
2932 case 0: /* V4L2_CID_POWER_LINE_FREQUENCY_DISABLED */
2933 strcpy((char *) menu->name, "NoFliker");
2934 return 0;
2935 case 1: /* V4L2_CID_POWER_LINE_FREQUENCY_50HZ */
2936 strcpy((char *) menu->name, "50 Hz");
2937 return 0;
2938 case 2: /* V4L2_CID_POWER_LINE_FREQUENCY_60HZ */
2939 strcpy((char *) menu->name, "60 Hz");
2940 return 0;
2941 }
2942 break;
2943 }
2944 return -EINVAL;
2945}
2946
Hans de Goede9712a8b2010-01-31 12:54:29 -03002947#ifdef CONFIG_INPUT
2948static int sd_int_pkt_scan(struct gspca_dev *gspca_dev,
2949 u8 *data, /* interrupt packet data */
2950 int len) /* interrupt packet length */
2951{
2952 int ret = -EINVAL;
2953
2954 if (len == 1 && data[0] == 1) {
2955 input_report_key(gspca_dev->input_dev, KEY_CAMERA, 1);
2956 input_sync(gspca_dev->input_dev);
2957 input_report_key(gspca_dev->input_dev, KEY_CAMERA, 0);
2958 input_sync(gspca_dev->input_dev);
2959 ret = 0;
2960 }
2961
2962 return ret;
2963}
2964#endif
2965
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002966/* sub-driver description */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03002967static const struct sd_desc sd_desc = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002968 .name = MODULE_NAME,
2969 .ctrls = sd_ctrls,
2970 .nctrls = ARRAY_SIZE(sd_ctrls),
2971 .config = sd_config,
Jean-Francois Moine012d6b02008-09-03 17:12:16 -03002972 .init = sd_init,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002973 .start = sd_start,
2974 .stopN = sd_stopN,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002975 .pkt_scan = sd_pkt_scan,
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002976 .dq_callback = do_autogain,
Jean-Francois Moine77ac0ba2009-03-02 06:40:52 -03002977 .get_jcomp = sd_get_jcomp,
2978 .set_jcomp = sd_set_jcomp,
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002979 .querymenu = sd_querymenu,
Hans de Goede9712a8b2010-01-31 12:54:29 -03002980#ifdef CONFIG_INPUT
2981 .int_pkt_scan = sd_int_pkt_scan,
2982#endif
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002983};
2984
2985/* -- module initialisation -- */
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002986#define BS(bridge, sensor) \
Jean-Francois Moine9d64fdb2008-07-25 08:53:03 -03002987 .driver_info = (BRIDGE_ ## bridge << 16) \
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002988 | SENSOR_ ## sensor
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03002989static const __devinitdata struct usb_device_id device_table[] = {
Hans de Goede222a07f2008-09-03 17:12:20 -03002990#if !defined CONFIG_USB_SN9C102 && !defined CONFIG_USB_SN9C102_MODULE
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002991 {USB_DEVICE(0x0458, 0x7025), BS(SN9C120, MI0360)},
2992 {USB_DEVICE(0x0458, 0x702e), BS(SN9C120, OV7660)},
Jean-Francois Moinea08d81a2008-11-22 04:53:31 -03002993#endif
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002994 {USB_DEVICE(0x045e, 0x00f5), BS(SN9C105, OV7660)},
2995 {USB_DEVICE(0x045e, 0x00f7), BS(SN9C105, OV7660)},
2996 {USB_DEVICE(0x0471, 0x0327), BS(SN9C105, MI0360)},
2997 {USB_DEVICE(0x0471, 0x0328), BS(SN9C105, MI0360)},
2998 {USB_DEVICE(0x0471, 0x0330), BS(SN9C105, MI0360)},
2999 {USB_DEVICE(0x06f8, 0x3004), BS(SN9C105, OV7660)},
3000 {USB_DEVICE(0x06f8, 0x3008), BS(SN9C105, OV7660)},
3001/* {USB_DEVICE(0x0c45, 0x603a), BS(SN9C102P, OV7648)}, */
3002 {USB_DEVICE(0x0c45, 0x6040), BS(SN9C102P, HV7131R)},
3003/* {USB_DEVICE(0x0c45, 0x607a), BS(SN9C102P, OV7648)}, */
3004/* {USB_DEVICE(0x0c45, 0x607b), BS(SN9C102P, OV7660)}, */
3005 {USB_DEVICE(0x0c45, 0x607c), BS(SN9C102P, HV7131R)},
3006/* {USB_DEVICE(0x0c45, 0x607e), BS(SN9C102P, OV7630)}, */
3007 {USB_DEVICE(0x0c45, 0x60c0), BS(SN9C105, MI0360)},
3008/* {USB_DEVICE(0x0c45, 0x60c2), BS(SN9C105, P1030xC)}, */
3009/* {USB_DEVICE(0x0c45, 0x60c8), BS(SN9C105, OM6802)}, */
3010/* {USB_DEVICE(0x0c45, 0x60cc), BS(SN9C105, HV7131GP)}, */
Warren Bosworth Fockec4f95d82010-05-07 15:40:04 -03003011 {USB_DEVICE(0x0c45, 0x60ce), BS(SN9C105, SP80708)},
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003012 {USB_DEVICE(0x0c45, 0x60ec), BS(SN9C105, MO4000)},
3013/* {USB_DEVICE(0x0c45, 0x60ef), BS(SN9C105, ICM105C)}, */
3014/* {USB_DEVICE(0x0c45, 0x60fa), BS(SN9C105, OV7648)}, */
Jean-François Moine68046752010-05-07 15:35:08 -03003015/* {USB_DEVICE(0x0c45, 0x60f2), BS(SN9C105, OV7660)}, */
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003016 {USB_DEVICE(0x0c45, 0x60fb), BS(SN9C105, OV7660)},
Jean-Francois Moine3c41cb72008-09-10 02:57:09 -03003017#if !defined CONFIG_USB_SN9C102 && !defined CONFIG_USB_SN9C102_MODULE
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003018 {USB_DEVICE(0x0c45, 0x60fc), BS(SN9C105, HV7131R)},
3019 {USB_DEVICE(0x0c45, 0x60fe), BS(SN9C105, OV7630)},
Jean-Francois Moine3c41cb72008-09-10 02:57:09 -03003020#endif
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003021 {USB_DEVICE(0x0c45, 0x6100), BS(SN9C120, MI0360)}, /*sn9c128*/
Jean-François Moine860e7f42010-09-13 06:40:17 -03003022 {USB_DEVICE(0x0c45, 0x6102), BS(SN9C120, PO2030N)}, /* /GC0305*/
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003023/* {USB_DEVICE(0x0c45, 0x6108), BS(SN9C120, OM6802)}, */
3024 {USB_DEVICE(0x0c45, 0x610a), BS(SN9C120, OV7648)}, /*sn9c128*/
3025 {USB_DEVICE(0x0c45, 0x610b), BS(SN9C120, OV7660)}, /*sn9c128*/
3026 {USB_DEVICE(0x0c45, 0x610c), BS(SN9C120, HV7131R)}, /*sn9c128*/
3027 {USB_DEVICE(0x0c45, 0x610e), BS(SN9C120, OV7630)}, /*sn9c128*/
3028/* {USB_DEVICE(0x0c45, 0x610f), BS(SN9C120, S5K53BEB)}, */
3029/* {USB_DEVICE(0x0c45, 0x6122), BS(SN9C110, ICM105C)}, */
3030/* {USB_DEVICE(0x0c45, 0x6123), BS(SN9C110, SanyoCCD)}, */
3031 {USB_DEVICE(0x0c45, 0x6128), BS(SN9C120, OM6802)}, /*sn9c325?*/
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03003032/*bw600.inf:*/
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03003033 {USB_DEVICE(0x0c45, 0x612a), BS(SN9C120, OV7648)}, /*sn9c325?*/
Alexander Goncharov2a3b5012010-09-13 06:58:16 -03003034 {USB_DEVICE(0x0c45, 0x612b), BS(SN9C110, ADCM1700)},
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003035 {USB_DEVICE(0x0c45, 0x612c), BS(SN9C110, MO4000)},
3036 {USB_DEVICE(0x0c45, 0x612e), BS(SN9C110, OV7630)},
3037/* {USB_DEVICE(0x0c45, 0x612f), BS(SN9C110, ICM105C)}, */
Hans de Goede222a07f2008-09-03 17:12:20 -03003038#if !defined CONFIG_USB_SN9C102 && !defined CONFIG_USB_SN9C102_MODULE
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003039 {USB_DEVICE(0x0c45, 0x6130), BS(SN9C120, MI0360)},
Hans de Goede222a07f2008-09-03 17:12:20 -03003040#endif
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003041/* {USB_DEVICE(0x0c45, 0x6132), BS(SN9C120, OV7670)}, */
3042 {USB_DEVICE(0x0c45, 0x6138), BS(SN9C120, MO4000)},
3043 {USB_DEVICE(0x0c45, 0x613a), BS(SN9C120, OV7648)},
Hans de Goede222a07f2008-09-03 17:12:20 -03003044#if !defined CONFIG_USB_SN9C102 && !defined CONFIG_USB_SN9C102_MODULE
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003045 {USB_DEVICE(0x0c45, 0x613b), BS(SN9C120, OV7660)},
Jean-Francois Moine8d977702009-02-19 15:34:48 -03003046#endif
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003047 {USB_DEVICE(0x0c45, 0x613c), BS(SN9C120, HV7131R)},
3048 {USB_DEVICE(0x0c45, 0x613e), BS(SN9C120, OV7630)},
Jean-François Moinead98c0f2010-03-18 05:15:30 -03003049 {USB_DEVICE(0x0c45, 0x6142), BS(SN9C120, PO2030N)}, /*sn9c120b*/
Jean-François Moine68046752010-05-07 15:35:08 -03003050 /* or GC0305 / GC0307 */
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003051 {USB_DEVICE(0x0c45, 0x6143), BS(SN9C120, SP80708)}, /*sn9c120b*/
3052 {USB_DEVICE(0x0c45, 0x6148), BS(SN9C120, OM6802)}, /*sn9c120b*/
Jean-Francois Moine64677572009-12-20 12:31:28 -03003053 {USB_DEVICE(0x0c45, 0x614a), BS(SN9C120, ADCM1700)}, /*sn9c120b*/
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003054 {}
3055};
3056MODULE_DEVICE_TABLE(usb, device_table);
3057
3058/* -- device connect -- */
3059static int sd_probe(struct usb_interface *intf,
3060 const struct usb_device_id *id)
3061{
3062 return gspca_dev_probe(intf, id, &sd_desc, sizeof(struct sd),
3063 THIS_MODULE);
3064}
3065
3066static struct usb_driver sd_driver = {
3067 .name = MODULE_NAME,
3068 .id_table = device_table,
3069 .probe = sd_probe,
3070 .disconnect = gspca_disconnect,
Jean-Francois Moine6a709742008-09-03 16:48:10 -03003071#ifdef CONFIG_PM
3072 .suspend = gspca_suspend,
3073 .resume = gspca_resume,
3074#endif
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003075};
3076
3077/* -- module insert / remove -- */
3078static int __init sd_mod_init(void)
3079{
Jean-François Moine54826432010-09-13 04:53:03 -03003080 return usb_register(&sd_driver);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003081}
3082static void __exit sd_mod_exit(void)
3083{
3084 usb_deregister(&sd_driver);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003085}
3086
3087module_init(sd_mod_init);
3088module_exit(sd_mod_exit);