blob: bb923efb75bd5c0ddd6cec17633a256f32973557 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030026#include "gspca.h"
27#include "jpeg.h"
28
Jean-Francois Moine0cae8962008-10-17 07:48:24 -030029#define V4L2_CID_INFRARED (V4L2_CID_PRIVATE_BASE + 0)
30
Jean-François Moine27c6f9e2010-04-02 06:59:13 -030031MODULE_AUTHOR("Jean-François Moine <http://moinejf.free.fr>");
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030032MODULE_DESCRIPTION("GSPCA/SONIX JPEG USB Camera Driver");
33MODULE_LICENSE("GPL");
34
35/* specific webcam descriptor */
36struct sd {
37 struct gspca_dev gspca_dev; /* !! must be the first item */
38
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -030039 atomic_t avg_lum;
Jean-Francois Moine98819182009-01-19 07:37:33 -030040 u32 exposure;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030041
Jean-Francois Moine98819182009-01-19 07:37:33 -030042 u16 brightness;
43 u8 contrast;
44 u8 colors;
45 u8 autogain;
46 u8 blue;
47 u8 red;
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -030048 u8 gamma;
Jean-Francois Moine2797ba22009-02-05 15:12:24 -030049 u8 vflip; /* ov7630/ov7648 only */
Jean-Francois Moine878b35a2009-12-30 04:53:07 -030050 u8 sharpness;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -030051 u8 infrared; /* mt9v111 only */
Hans de Goede37c6dbe2009-06-18 07:35:36 -030052 u8 freq; /* ov76xx only */
Jean-Francois Moine71cb2762009-03-03 05:33:41 -030053 u8 quality; /* image quality */
Jean-Francois Moine77ac0ba2009-03-02 06:40:52 -030054#define QUALITY_MIN 60
55#define QUALITY_MAX 95
56#define QUALITY_DEF 80
Jean-Francois Moine71cb2762009-03-03 05:33:41 -030057 u8 jpegqual; /* webcam quality */
58
59 u8 reg18;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030060
Jean-Francois Moine98819182009-01-19 07:37:33 -030061 s8 ag_cnt;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030062#define AG_CNT_START 13
63
Jean-Francois Moine98819182009-01-19 07:37:33 -030064 u8 bridge;
Hans de Goede3647fea2008-07-15 05:36:30 -030065#define BRIDGE_SN9C102P 0
66#define BRIDGE_SN9C105 1
67#define BRIDGE_SN9C110 2
68#define BRIDGE_SN9C120 3
Jean-Francois Moine98819182009-01-19 07:37:33 -030069 u8 sensor; /* Type of image sensor chip */
Jean-François Moine9c33afc2010-03-17 15:25:32 -030070enum {
71 SENSOR_ADCM1700,
Jean-François Moinead98c0f2010-03-18 05:15:30 -030072 SENSOR_GC0307,
Jean-François Moine9c33afc2010-03-17 15:25:32 -030073 SENSOR_HV7131R,
74 SENSOR_MI0360,
75 SENSOR_MO4000,
76 SENSOR_MT9V111,
77 SENSOR_OM6802,
78 SENSOR_OV7630,
79 SENSOR_OV7648,
80 SENSOR_OV7660,
81 SENSOR_PO1030,
Jean-François Moinead98c0f2010-03-18 05:15:30 -030082 SENSOR_PO2030N,
Jean-François Moine03ed2a12010-04-25 14:45:43 -030083 SENSOR_SOI768,
Jean-François Moine9c33afc2010-03-17 15:25:32 -030084 SENSOR_SP80708,
85} sensors;
Jean-Francois Moined5aa3852009-11-07 06:10:08 -030086 u8 i2c_addr;
Jean-Francois Moine71cb2762009-03-03 05:33:41 -030087
Jean-François Moine73e49342010-04-02 07:05:59 -030088 u8 jpeg_hdr[JPEG_HDR_SZ];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030089};
90
91/* V4L2 controls supported by the driver */
92static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val);
93static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val);
94static int sd_setcontrast(struct gspca_dev *gspca_dev, __s32 val);
95static int sd_getcontrast(struct gspca_dev *gspca_dev, __s32 *val);
96static int sd_setcolors(struct gspca_dev *gspca_dev, __s32 val);
97static int sd_getcolors(struct gspca_dev *gspca_dev, __s32 *val);
Jean-Francois Moine403123d2008-11-26 04:46:15 -030098static int sd_setblue_balance(struct gspca_dev *gspca_dev, __s32 val);
99static int sd_getblue_balance(struct gspca_dev *gspca_dev, __s32 *val);
100static int sd_setred_balance(struct gspca_dev *gspca_dev, __s32 val);
101static int sd_getred_balance(struct gspca_dev *gspca_dev, __s32 *val);
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -0300102static int sd_setgamma(struct gspca_dev *gspca_dev, __s32 val);
103static int sd_getgamma(struct gspca_dev *gspca_dev, __s32 *val);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300104static int sd_setautogain(struct gspca_dev *gspca_dev, __s32 val);
105static int sd_getautogain(struct gspca_dev *gspca_dev, __s32 *val);
Jean-Francois Moine6c862742008-09-08 04:57:26 -0300106static int sd_setvflip(struct gspca_dev *gspca_dev, __s32 val);
107static int sd_getvflip(struct gspca_dev *gspca_dev, __s32 *val);
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300108static int sd_setsharpness(struct gspca_dev *gspca_dev, __s32 val);
109static int sd_getsharpness(struct gspca_dev *gspca_dev, __s32 *val);
Jean-Francois Moine0cae8962008-10-17 07:48:24 -0300110static int sd_setinfrared(struct gspca_dev *gspca_dev, __s32 val);
111static int sd_getinfrared(struct gspca_dev *gspca_dev, __s32 *val);
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300112static int sd_setfreq(struct gspca_dev *gspca_dev, __s32 val);
113static int sd_getfreq(struct gspca_dev *gspca_dev, __s32 *val);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300114
Marton Nemeth7e64dc42009-12-30 09:12:41 -0300115static const struct ctrl sd_ctrls[] = {
Hans de Goede97643982009-06-18 05:08:11 -0300116#define BRIGHTNESS_IDX 0
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300117 {
118 {
119 .id = V4L2_CID_BRIGHTNESS,
120 .type = V4L2_CTRL_TYPE_INTEGER,
121 .name = "Brightness",
122 .minimum = 0,
Jean-Francois Moine05b809c2008-09-03 16:47:59 -0300123#define BRIGHTNESS_MAX 0xffff
124 .maximum = BRIGHTNESS_MAX,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300125 .step = 1,
Jean-Francois Moineb1b056a2008-11-25 04:47:09 -0300126#define BRIGHTNESS_DEF 0x8000
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300127 .default_value = BRIGHTNESS_DEF,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300128 },
129 .set = sd_setbrightness,
130 .get = sd_getbrightness,
131 },
Hans de Goede97643982009-06-18 05:08:11 -0300132#define CONTRAST_IDX 1
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300133 {
134 {
135 .id = V4L2_CID_CONTRAST,
136 .type = V4L2_CTRL_TYPE_INTEGER,
137 .name = "Contrast",
138 .minimum = 0,
Jean-Francois Moine05b809c2008-09-03 16:47:59 -0300139#define CONTRAST_MAX 127
140 .maximum = CONTRAST_MAX,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300141 .step = 1,
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300142#define CONTRAST_DEF 63
143 .default_value = CONTRAST_DEF,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300144 },
145 .set = sd_setcontrast,
146 .get = sd_getcontrast,
147 },
Hans de Goede97643982009-06-18 05:08:11 -0300148#define COLOR_IDX 2
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300149 {
150 {
151 .id = V4L2_CID_SATURATION,
152 .type = V4L2_CTRL_TYPE_INTEGER,
Hans de Goede3fb4a572009-06-18 14:31:36 -0300153 .name = "Saturation",
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300154 .minimum = 0,
Jean-Francois Moine403123d2008-11-26 04:46:15 -0300155 .maximum = 40,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300156 .step = 1,
Hans de Goede3fb4a572009-06-18 14:31:36 -0300157#define COLOR_DEF 25
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300158 .default_value = COLOR_DEF,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300159 },
160 .set = sd_setcolors,
161 .get = sd_getcolors,
162 },
Hans de Goede97643982009-06-18 05:08:11 -0300163#define BLUE_BALANCE_IDX 3
Jean-Francois Moine403123d2008-11-26 04:46:15 -0300164 {
165 {
166 .id = V4L2_CID_BLUE_BALANCE,
167 .type = V4L2_CTRL_TYPE_INTEGER,
168 .name = "Blue Balance",
169 .minimum = 24,
170 .maximum = 40,
171 .step = 1,
172#define BLUE_BALANCE_DEF 32
173 .default_value = BLUE_BALANCE_DEF,
174 },
175 .set = sd_setblue_balance,
176 .get = sd_getblue_balance,
177 },
Hans de Goede97643982009-06-18 05:08:11 -0300178#define RED_BALANCE_IDX 4
Jean-Francois Moine403123d2008-11-26 04:46:15 -0300179 {
180 {
181 .id = V4L2_CID_RED_BALANCE,
182 .type = V4L2_CTRL_TYPE_INTEGER,
183 .name = "Red Balance",
184 .minimum = 24,
185 .maximum = 40,
186 .step = 1,
187#define RED_BALANCE_DEF 32
188 .default_value = RED_BALANCE_DEF,
189 },
190 .set = sd_setred_balance,
191 .get = sd_getred_balance,
192 },
Hans de Goede97643982009-06-18 05:08:11 -0300193#define GAMMA_IDX 5
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -0300194 {
195 {
196 .id = V4L2_CID_GAMMA,
197 .type = V4L2_CTRL_TYPE_INTEGER,
198 .name = "Gamma",
199 .minimum = 0,
200 .maximum = 40,
201 .step = 1,
202#define GAMMA_DEF 20
203 .default_value = GAMMA_DEF,
204 },
205 .set = sd_setgamma,
206 .get = sd_getgamma,
207 },
Hans de Goede97643982009-06-18 05:08:11 -0300208#define AUTOGAIN_IDX 6
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300209 {
210 {
211 .id = V4L2_CID_AUTOGAIN,
212 .type = V4L2_CTRL_TYPE_BOOLEAN,
213 .name = "Auto Gain",
214 .minimum = 0,
215 .maximum = 1,
216 .step = 1,
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300217#define AUTOGAIN_DEF 1
218 .default_value = AUTOGAIN_DEF,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300219 },
220 .set = sd_setautogain,
221 .get = sd_getautogain,
222 },
Jean-Francois Moine2797ba22009-02-05 15:12:24 -0300223/* ov7630/ov7648 only */
Hans de Goede97643982009-06-18 05:08:11 -0300224#define VFLIP_IDX 7
Jean-Francois Moine6c862742008-09-08 04:57:26 -0300225 {
226 {
227 .id = V4L2_CID_VFLIP,
228 .type = V4L2_CTRL_TYPE_BOOLEAN,
229 .name = "Vflip",
230 .minimum = 0,
231 .maximum = 1,
232 .step = 1,
Hans de Goedef8009522009-06-18 14:29:20 -0300233#define VFLIP_DEF 0
Jean-Francois Moine6c862742008-09-08 04:57:26 -0300234 .default_value = VFLIP_DEF,
235 },
236 .set = sd_setvflip,
237 .get = sd_getvflip,
238 },
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300239#define SHARPNESS_IDX 8
240 {
241 {
242 .id = V4L2_CID_SHARPNESS,
243 .type = V4L2_CTRL_TYPE_INTEGER,
244 .name = "Sharpness",
245 .minimum = 0,
246 .maximum = 255,
247 .step = 1,
248#define SHARPNESS_DEF 90
249 .default_value = SHARPNESS_DEF,
250 },
251 .set = sd_setsharpness,
252 .get = sd_getsharpness,
253 },
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300254/* mt9v111 only */
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300255#define INFRARED_IDX 9
Jean-Francois Moine0cae8962008-10-17 07:48:24 -0300256 {
257 {
258 .id = V4L2_CID_INFRARED,
259 .type = V4L2_CTRL_TYPE_BOOLEAN,
260 .name = "Infrared",
261 .minimum = 0,
262 .maximum = 1,
263 .step = 1,
264#define INFRARED_DEF 0
265 .default_value = INFRARED_DEF,
266 },
267 .set = sd_setinfrared,
268 .get = sd_getinfrared,
269 },
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300270/* ov7630/ov7648/ov7660 only */
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300271#define FREQ_IDX 10
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300272 {
273 {
274 .id = V4L2_CID_POWER_LINE_FREQUENCY,
275 .type = V4L2_CTRL_TYPE_MENU,
276 .name = "Light frequency filter",
277 .minimum = 0,
278 .maximum = 2, /* 0: 0, 1: 50Hz, 2:60Hz */
279 .step = 1,
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -0300280#define FREQ_DEF 1
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300281 .default_value = FREQ_DEF,
282 },
283 .set = sd_setfreq,
284 .get = sd_getfreq,
285 },
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300286};
287
Jean-Francois Moine577cbf42008-12-05 06:18:37 -0300288/* table of the disabled controls */
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300289static const __u32 ctrl_dis[] = {
290[SENSOR_ADCM1700] = (1 << AUTOGAIN_IDX) |
291 (1 << INFRARED_IDX) |
292 (1 << VFLIP_IDX) |
293 (1 << FREQ_IDX),
294
Jean-François Moinec26b12d2010-04-02 07:08:39 -0300295[SENSOR_GC0307] = (1 << INFRARED_IDX) |
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300296 (1 << VFLIP_IDX) |
297 (1 << FREQ_IDX),
298
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300299[SENSOR_HV7131R] = (1 << INFRARED_IDX) |
300 (1 << FREQ_IDX),
301
302[SENSOR_MI0360] = (1 << INFRARED_IDX) |
303 (1 << VFLIP_IDX) |
304 (1 << FREQ_IDX),
305
306[SENSOR_MO4000] = (1 << INFRARED_IDX) |
307 (1 << VFLIP_IDX) |
308 (1 << FREQ_IDX),
309
310[SENSOR_MT9V111] = (1 << VFLIP_IDX) |
311 (1 << FREQ_IDX),
312
313[SENSOR_OM6802] = (1 << INFRARED_IDX) |
314 (1 << VFLIP_IDX) |
315 (1 << FREQ_IDX),
316
317[SENSOR_OV7630] = (1 << INFRARED_IDX),
318
319[SENSOR_OV7648] = (1 << INFRARED_IDX),
320
321[SENSOR_OV7660] = (1 << AUTOGAIN_IDX) |
322 (1 << INFRARED_IDX) |
323 (1 << VFLIP_IDX),
324
325[SENSOR_PO1030] = (1 << AUTOGAIN_IDX) |
326 (1 << INFRARED_IDX) |
327 (1 << VFLIP_IDX) |
328 (1 << FREQ_IDX),
329
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300330[SENSOR_PO2030N] = (1 << AUTOGAIN_IDX) |
331 (1 << INFRARED_IDX) |
332 (1 << VFLIP_IDX) |
333 (1 << FREQ_IDX),
Jean-François Moine03ed2a12010-04-25 14:45:43 -0300334[SENSOR_SOI768] = (1 << AUTOGAIN_IDX) |
335 (1 << INFRARED_IDX) |
336 (1 << VFLIP_IDX) |
337 (1 << FREQ_IDX),
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300338
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300339[SENSOR_SP80708] = (1 << AUTOGAIN_IDX) |
340 (1 << INFRARED_IDX) |
341 (1 << VFLIP_IDX) |
342 (1 << FREQ_IDX),
Jean-Francois Moine577cbf42008-12-05 06:18:37 -0300343};
344
Jean-Francois Moine646775732009-12-20 12:31:28 -0300345static const struct v4l2_pix_format cif_mode[] = {
346 {352, 288, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
347 .bytesperline = 352,
348 .sizeimage = 352 * 288 * 4 / 8 + 590,
349 .colorspace = V4L2_COLORSPACE_JPEG,
350 .priv = 0},
351};
Jean-Francois Moinecc611b82008-12-29 07:49:41 -0300352static const struct v4l2_pix_format vga_mode[] = {
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300353 {160, 120, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
354 .bytesperline = 160,
Jean-Francois Moine5d052942008-09-03 16:48:09 -0300355 .sizeimage = 160 * 120 * 4 / 8 + 590,
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300356 .colorspace = V4L2_COLORSPACE_JPEG,
357 .priv = 2},
358 {320, 240, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
359 .bytesperline = 320,
360 .sizeimage = 320 * 240 * 3 / 8 + 590,
361 .colorspace = V4L2_COLORSPACE_JPEG,
362 .priv = 1},
363 {640, 480, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
364 .bytesperline = 640,
Hans de Goedea5d1cc32009-06-18 06:03:20 -0300365 /* Note 3 / 8 is not large enough, not even 5 / 8 is ?! */
366 .sizeimage = 640 * 480 * 3 / 4 + 590,
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300367 .colorspace = V4L2_COLORSPACE_JPEG,
368 .priv = 0},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300369};
370
Jean-Francois Moine646775732009-12-20 12:31:28 -0300371static const u8 sn_adcm1700[0x1c] = {
372/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300373 0x00, 0x43, 0x60, 0x00, 0x1a, 0x00, 0x00, 0x00,
Jean-Francois Moine646775732009-12-20 12:31:28 -0300374/* reg8 reg9 rega regb regc regd rege regf */
375 0x80, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
376/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
377 0x03, 0x00, 0x05, 0x01, 0x05, 0x16, 0x12, 0x42,
378/* reg18 reg19 reg1a reg1b */
379 0x06, 0x00, 0x00, 0x00
380};
381
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300382static const u8 sn_gc0307[0x1c] = {
383/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
384 0x00, 0x61, 0x62, 0x00, 0x1a, 0x00, 0x00, 0x00,
385/* reg8 reg9 rega regb regc regd rege regf */
386 0x80, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
387/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
388 0x03, 0x00, 0x03, 0x01, 0x08, 0x28, 0x1e, 0x02,
389/* reg18 reg19 reg1a reg1b */
390 0x06, 0x00, 0x00, 0x00
391};
392
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300393static const u8 sn_hv7131[0x1c] = {
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300394/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
395 0x00, 0x03, 0x64, 0x00, 0x1a, 0x20, 0x20, 0x20,
396/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300397 0x81, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300398/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
399 0x03, 0x00, 0x00, 0x01, 0x03, 0x28, 0x1e, 0x41,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300400/* reg18 reg19 reg1a reg1b */
401 0x0a, 0x00, 0x00, 0x00
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300402};
403
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300404static const u8 sn_mi0360[0x1c] = {
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300405/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
406 0x00, 0x61, 0x44, 0x00, 0x1a, 0x20, 0x20, 0x20,
407/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300408 0x81, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300409/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
410 0x03, 0x00, 0x00, 0x02, 0x0a, 0x28, 0x1e, 0x61,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300411/* reg18 reg19 reg1a reg1b */
412 0x06, 0x00, 0x00, 0x00
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300413};
414
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300415static const u8 sn_mo4000[0x1c] = {
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300416/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300417 0x00, 0x23, 0x60, 0x00, 0x1a, 0x00, 0x20, 0x18,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300418/* reg8 reg9 rega regb regc regd rege regf */
419 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
420/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
421 0x03, 0x00, 0x0b, 0x0f, 0x14, 0x28, 0x1e, 0x40,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300422/* reg18 reg19 reg1a reg1b */
423 0x08, 0x00, 0x00, 0x00
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300424};
425
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300426static const u8 sn_mt9v111[0x1c] = {
427/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
428 0x00, 0x61, 0x40, 0x00, 0x1a, 0x20, 0x20, 0x20,
429/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300430 0x81, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300431/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
432 0x03, 0x00, 0x00, 0x02, 0x1c, 0x28, 0x1e, 0x40,
433/* reg18 reg19 reg1a reg1b */
434 0x06, 0x00, 0x00, 0x00
435};
436
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300437static const u8 sn_om6802[0x1c] = {
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300438/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Amauri Magagna46b4f2a2009-10-17 07:21:29 -0300439 0x00, 0x23, 0x72, 0x00, 0x1a, 0x20, 0x20, 0x19,
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300440/* reg8 reg9 rega regb regc regd rege regf */
441 0x80, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
442/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
443 0x03, 0x00, 0x51, 0x01, 0x00, 0x28, 0x1e, 0x40,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300444/* reg18 reg19 reg1a reg1b */
445 0x05, 0x00, 0x00, 0x00
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300446};
447
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300448static const u8 sn_ov7630[0x1c] = {
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300449/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-François Moine0a85c742010-04-25 14:33:31 -0300450 0x00, 0x21, 0x40, 0x00, 0x1a, 0x00, 0x00, 0x00,
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300451/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300452 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300453/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
454 0x03, 0x00, 0x04, 0x01, 0x0a, 0x28, 0x1e, 0xc2,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300455/* reg18 reg19 reg1a reg1b */
456 0x0b, 0x00, 0x00, 0x00
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300457};
458
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300459static const u8 sn_ov7648[0x1c] = {
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300460/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-Francois Moine62703302008-11-11 08:42:56 -0300461 0x00, 0x63, 0x40, 0x00, 0x1a, 0x20, 0x20, 0x20,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300462/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300463 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300464/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
Jean-Francois Moine62703302008-11-11 08:42:56 -0300465 0x03, 0x00, 0x00, 0x01, 0x00, 0x28, 0x1e, 0x00,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300466/* reg18 reg19 reg1a reg1b */
467 0x0b, 0x00, 0x00, 0x00
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300468};
469
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300470static const u8 sn_ov7660[0x1c] = {
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300471/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-Francois Moinec8b9b2c2009-04-26 14:46:12 -0300472 0x00, 0x61, 0x40, 0x00, 0x1a, 0x00, 0x00, 0x00,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300473/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moinec8b9b2c2009-04-26 14:46:12 -0300474 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300475/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
476 0x03, 0x00, 0x01, 0x01, 0x08, 0x28, 0x1e, 0x20,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300477/* reg18 reg19 reg1a reg1b */
478 0x07, 0x00, 0x00, 0x00
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300479};
480
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -0300481static const u8 sn_po1030[0x1c] = {
482/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
483 0x00, 0x21, 0x62, 0x00, 0x1a, 0x20, 0x20, 0x20,
484/* reg8 reg9 rega regb regc regd rege regf */
485 0x81, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
486/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
487 0x03, 0x00, 0x00, 0x06, 0x06, 0x28, 0x1e, 0x00,
488/* reg18 reg19 reg1a reg1b */
489 0x07, 0x00, 0x00, 0x00
490};
491
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300492static const u8 sn_po2030n[0x1c] = {
493/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
494 0x00, 0x63, 0x40, 0x00, 0x1a, 0x00, 0x00, 0x00,
495/* reg8 reg9 rega regb regc regd rege regf */
496 0x81, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
497/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
498 0x03, 0x00, 0x00, 0x01, 0x14, 0x28, 0x1e, 0x00,
499/* reg18 reg19 reg1a reg1b */
500 0x07, 0x00, 0x00, 0x00
501};
502
Jean-François Moine03ed2a12010-04-25 14:45:43 -0300503static const u8 sn_soi768[0x1c] = {
504/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
505 0x00, 0x21, 0x40, 0x00, 0x1a, 0x00, 0x00, 0x00,
506/* reg8 reg9 rega regb regc regd rege regf */
507 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
508/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
509 0x03, 0x00, 0x00, 0x01, 0x08, 0x28, 0x1e, 0x00,
510/* reg18 reg19 reg1a reg1b */
511 0x07, 0x00, 0x00, 0x00
512};
513
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -0300514static const u8 sn_sp80708[0x1c] = {
515/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
516 0x00, 0x63, 0x60, 0x00, 0x1a, 0x20, 0x20, 0x20,
517/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300518 0x81, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -0300519/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
520 0x03, 0x00, 0x00, 0x03, 0x04, 0x28, 0x1e, 0x00,
521/* reg18 reg19 reg1a reg1b */
522 0x07, 0x00, 0x00, 0x00
523};
524
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300525/* sequence specific to the sensors - !! index = SENSOR_xxx */
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300526static const u8 *sn_tb[] = {
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300527[SENSOR_ADCM1700] = sn_adcm1700,
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300528[SENSOR_GC0307] = sn_gc0307,
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300529[SENSOR_HV7131R] = sn_hv7131,
530[SENSOR_MI0360] = sn_mi0360,
531[SENSOR_MO4000] = sn_mo4000,
532[SENSOR_MT9V111] = sn_mt9v111,
533[SENSOR_OM6802] = sn_om6802,
534[SENSOR_OV7630] = sn_ov7630,
535[SENSOR_OV7648] = sn_ov7648,
536[SENSOR_OV7660] = sn_ov7660,
537[SENSOR_PO1030] = sn_po1030,
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300538[SENSOR_PO2030N] = sn_po2030n,
Jean-François Moine03ed2a12010-04-25 14:45:43 -0300539[SENSOR_SOI768] = sn_soi768,
540[SENSOR_SP80708] = sn_sp80708,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300541};
542
Jean-Francois Moineb083b922009-02-01 14:20:07 -0300543/* default gamma table */
Jean-Francois Moine98819182009-01-19 07:37:33 -0300544static const u8 gamma_def[17] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300545 0x00, 0x2d, 0x46, 0x5a, 0x6c, 0x7c, 0x8b, 0x99,
546 0xa6, 0xb2, 0xbf, 0xca, 0xd5, 0xe0, 0xeb, 0xf5, 0xff
547};
Jean-Francois Moine646775732009-12-20 12:31:28 -0300548/* gamma for sensor ADCM1700 */
549static const u8 gamma_spec_0[17] = {
550 0x0f, 0x39, 0x5a, 0x74, 0x86, 0x95, 0xa6, 0xb4,
551 0xbd, 0xc4, 0xcc, 0xd4, 0xd5, 0xde, 0xe4, 0xed, 0xf5
552};
Jean-Francois Moineb083b922009-02-01 14:20:07 -0300553/* gamma for sensors HV7131R and MT9V111 */
554static const u8 gamma_spec_1[17] = {
555 0x08, 0x3a, 0x52, 0x65, 0x75, 0x83, 0x91, 0x9d,
556 0xa9, 0xb4, 0xbe, 0xc8, 0xd2, 0xdb, 0xe4, 0xed, 0xf5
557};
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300558/* gamma for sensor GC0307 */
Jean-Francois Moineb083b922009-02-01 14:20:07 -0300559static const u8 gamma_spec_2[17] = {
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300560 0x14, 0x37, 0x50, 0x6a, 0x7c, 0x8d, 0x9d, 0xab,
561 0xb5, 0xbf, 0xc2, 0xcb, 0xd1, 0xd6, 0xdb, 0xe1, 0xeb
562};
563/* gamma for sensor SP80708 */
564static const u8 gamma_spec_3[17] = {
Jean-Francois Moineb083b922009-02-01 14:20:07 -0300565 0x0a, 0x2d, 0x4e, 0x68, 0x7d, 0x8f, 0x9f, 0xab,
566 0xb7, 0xc2, 0xcc, 0xd3, 0xd8, 0xde, 0xe2, 0xe5, 0xe6
567};
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -0300568
Jean-Francois Moine803f9cc2008-10-04 14:17:02 -0300569/* color matrix and offsets */
Jean-Francois Moine98819182009-01-19 07:37:33 -0300570static const u8 reg84[] = {
Jean-Francois Moine803f9cc2008-10-04 14:17:02 -0300571 0x14, 0x00, 0x27, 0x00, 0x07, 0x00, /* YR YG YB gains */
572 0xe8, 0x0f, 0xda, 0x0f, 0x40, 0x00, /* UR UG UB */
573 0x3e, 0x00, 0xcd, 0x0f, 0xf7, 0x0f, /* VR VG VB */
574 0x00, 0x00, 0x00 /* YUV offsets */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300575};
Jean-Francois Moine646775732009-12-20 12:31:28 -0300576static const u8 adcm1700_sensor_init[][8] = {
577 {0xa0, 0x51, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300578 {0xb0, 0x51, 0x04, 0x08, 0x00, 0x00, 0x00, 0x10}, /* reset */
Jean-Francois Moine646775732009-12-20 12:31:28 -0300579 {0xdd, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
580 {0xb0, 0x51, 0x04, 0x00, 0x00, 0x00, 0x00, 0x10},
581 {0xdd, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
582 {0xb0, 0x51, 0x0c, 0xe0, 0x2e, 0x00, 0x00, 0x10},
583 {0xb0, 0x51, 0x10, 0x02, 0x02, 0x00, 0x00, 0x10},
584 {0xb0, 0x51, 0x14, 0x0e, 0x0e, 0x00, 0x00, 0x10},
585 {0xb0, 0x51, 0x1c, 0x00, 0x80, 0x00, 0x00, 0x10},
586 {0xb0, 0x51, 0x20, 0x01, 0x00, 0x00, 0x00, 0x10},
587 {0xdd, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
588 {0xb0, 0x51, 0x04, 0x04, 0x00, 0x00, 0x00, 0x10},
589 {0xdd, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
590 {0xb0, 0x51, 0x04, 0x01, 0x00, 0x00, 0x00, 0x10},
591 {0xa0, 0x51, 0xfe, 0x10, 0x00, 0x00, 0x00, 0x10},
592 {0xb0, 0x51, 0x14, 0x01, 0x00, 0x00, 0x00, 0x10},
593 {0xb0, 0x51, 0x32, 0x00, 0x00, 0x00, 0x00, 0x10},
594 {}
595};
596static const u8 adcm1700_sensor_param1[][8] = {
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300597 {0xb0, 0x51, 0x26, 0xf9, 0x01, 0x00, 0x00, 0x10}, /* exposure? */
Jean-Francois Moine646775732009-12-20 12:31:28 -0300598 {0xd0, 0x51, 0x1e, 0x8e, 0x8e, 0x8e, 0x8e, 0x10},
599
600 {0xa0, 0x51, 0xfe, 0x01, 0x00, 0x00, 0x00, 0x10},
601 {0xb0, 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10},
602 {0xa0, 0x51, 0xfe, 0x10, 0x00, 0x00, 0x00, 0x10},
603 {0xb0, 0x51, 0x32, 0x00, 0x72, 0x00, 0x00, 0x10},
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300604 {0xd0, 0x51, 0x1e, 0xbe, 0xd7, 0xe8, 0xbe, 0x10}, /* exposure? */
Jean-Francois Moine646775732009-12-20 12:31:28 -0300605
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300606 {0xa0, 0x51, 0xfe, 0x01, 0x00, 0x00, 0x00, 0x10},
607 {0xb0, 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10},
608 {0xa0, 0x51, 0xfe, 0x10, 0x00, 0x00, 0x00, 0x10},
609 {0xb0, 0x51, 0x32, 0x00, 0xa2, 0x00, 0x00, 0x10},
Jean-Francois Moine646775732009-12-20 12:31:28 -0300610 {}
611};
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300612static const u8 gc0307_sensor_init[][8] = {
613 {0xa0, 0x21, 0x43, 0x00, 0x00, 0x00, 0x00, 0x10},
614 {0xa0, 0x21, 0x44, 0xa2, 0x00, 0x00, 0x00, 0x10},
615 {0xa0, 0x21, 0x01, 0x6a, 0x00, 0x00, 0x00, 0x10},
616 {0xa0, 0x21, 0x02, 0x70, 0x00, 0x00, 0x00, 0x10},
617 {0xa0, 0x21, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
618 {0xa0, 0x21, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x10},
619 {0xa0, 0x21, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x10},
620 {0xa0, 0x21, 0x11, 0x05, 0x00, 0x00, 0x00, 0x10},
621 {0xa0, 0x21, 0x05, 0x00, 0x00, 0x00, 0x00, 0x10},
622 {0xa0, 0x21, 0x06, 0x00, 0x00, 0x00, 0x00, 0x10},
623 {0xa0, 0x21, 0x07, 0x00, 0x00, 0x00, 0x00, 0x10},
624 {0xa0, 0x21, 0x08, 0x02, 0x00, 0x00, 0x00, 0x10},
625 {0xa0, 0x21, 0x09, 0x01, 0x00, 0x00, 0x00, 0x10},
626 {0xa0, 0x21, 0x0a, 0xe8, 0x00, 0x00, 0x00, 0x10},
627 {0xa0, 0x21, 0x0b, 0x02, 0x00, 0x00, 0x00, 0x10},
628 {0xa0, 0x21, 0x0c, 0x80, 0x00, 0x00, 0x00, 0x10},
629 {0xa0, 0x21, 0x0d, 0x22, 0x00, 0x00, 0x00, 0x10},
630 {0xa0, 0x21, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x10},
631 {0xa0, 0x21, 0x0f, 0xb2, 0x00, 0x00, 0x00, 0x10},
632 {0xa0, 0x21, 0x12, 0x70, 0x00, 0x00, 0x00, 0x10},
633 {0xdd, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /*delay 10ms*/
634 {0xa0, 0x21, 0x13, 0x00, 0x00, 0x00, 0x00, 0x10},
635 {0xa0, 0x21, 0x15, 0xb8, 0x00, 0x00, 0x00, 0x10},
636 {0xa0, 0x21, 0x16, 0x13, 0x00, 0x00, 0x00, 0x10},
637 {0xa0, 0x21, 0x17, 0x52, 0x00, 0x00, 0x00, 0x10},
638 {0xa0, 0x21, 0x18, 0x50, 0x00, 0x00, 0x00, 0x10},
639 {0xa0, 0x21, 0x1e, 0x0d, 0x00, 0x00, 0x00, 0x10},
640 {0xa0, 0x21, 0x1f, 0x32, 0x00, 0x00, 0x00, 0x10},
641 {0xa0, 0x21, 0x61, 0x90, 0x00, 0x00, 0x00, 0x10},
642 {0xa0, 0x21, 0x63, 0x70, 0x00, 0x00, 0x00, 0x10},
643 {0xa0, 0x21, 0x65, 0x98, 0x00, 0x00, 0x00, 0x10},
644 {0xa0, 0x21, 0x67, 0x90, 0x00, 0x00, 0x00, 0x10},
645 {0xa0, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
646 {0xa0, 0x21, 0x04, 0x96, 0x00, 0x00, 0x00, 0x10},
647 {0xa0, 0x21, 0x45, 0x27, 0x00, 0x00, 0x00, 0x10},
648 {0xa0, 0x21, 0x47, 0x2c, 0x00, 0x00, 0x00, 0x10},
649 {0xa0, 0x21, 0x43, 0x47, 0x00, 0x00, 0x00, 0x10},
650 {0xa0, 0x21, 0x44, 0xd8, 0x00, 0x00, 0x00, 0x10},
651 {}
652};
653static const u8 gc0307_sensor_param1[][8] = {
654 {0xa0, 0x21, 0x68, 0x13, 0x00, 0x00, 0x00, 0x10},
655 {0xd0, 0x21, 0x61, 0x80, 0x00, 0x80, 0x00, 0x10},
656 {0xc0, 0x21, 0x65, 0x80, 0x00, 0x80, 0x00, 0x10},
657 {0xc0, 0x21, 0x63, 0xa0, 0x00, 0xa6, 0x00, 0x10},
658/*param3*/
659 {0xa0, 0x21, 0x01, 0x6e, 0x00, 0x00, 0x00, 0x10},
660 {0xa0, 0x21, 0x02, 0x88, 0x00, 0x00, 0x00, 0x10},
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300661 {}
662};
663
Jean-Francois Moine98819182009-01-19 07:37:33 -0300664static const u8 hv7131r_sensor_init[][8] = {
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300665 {0xc1, 0x11, 0x01, 0x08, 0x01, 0x00, 0x00, 0x10},
666 {0xb1, 0x11, 0x34, 0x17, 0x7f, 0x00, 0x00, 0x10},
667 {0xd1, 0x11, 0x40, 0xff, 0x7f, 0x7f, 0x7f, 0x10},
668/* {0x91, 0x11, 0x44, 0x00, 0x00, 0x00, 0x00, 0x10}, */
669 {0xd1, 0x11, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
670 {0xd1, 0x11, 0x14, 0x01, 0xe2, 0x02, 0x82, 0x10},
671/* {0x91, 0x11, 0x18, 0x00, 0x00, 0x00, 0x00, 0x10}, */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300672
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300673 {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
674 {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
675 {0xc1, 0x11, 0x25, 0x00, 0x61, 0xa8, 0x00, 0x10},
676 {0xa1, 0x11, 0x30, 0x22, 0x00, 0x00, 0x00, 0x10},
677 {0xc1, 0x11, 0x31, 0x20, 0x2e, 0x20, 0x00, 0x10},
678 {0xc1, 0x11, 0x25, 0x00, 0xc3, 0x50, 0x00, 0x10},
679 {0xa1, 0x11, 0x30, 0x07, 0x00, 0x00, 0x00, 0x10}, /* gain14 */
680 {0xc1, 0x11, 0x31, 0x10, 0x10, 0x10, 0x00, 0x10}, /* r g b 101a10 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300681
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300682 {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
683 {0xa1, 0x11, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine7fb101a2009-10-22 06:27:14 -0300684 {0xa1, 0x11, 0x21, 0xd0, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300685 {0xa1, 0x11, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
686 {0xa1, 0x11, 0x23, 0x09, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300687
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300688 {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
689 {0xa1, 0x11, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
690 {0xa1, 0x11, 0x21, 0xd0, 0x00, 0x00, 0x00, 0x10},
691 {0xa1, 0x11, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
692 {0xa1, 0x11, 0x23, 0x10, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine23a98272009-11-02 09:10:25 -0300693 {0xa1, 0x11, 0x01, 0x18, 0x00, 0x00, 0x00, 0x10},
694 /* set sensor clock */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300695 {}
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300696};
Jean-Francois Moine98819182009-01-19 07:37:33 -0300697static const u8 mi0360_sensor_init[][8] = {
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300698 {0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10},
Jean-Francois Moine98819182009-01-19 07:37:33 -0300699 {0xb1, 0x5d, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x10},
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300700 {0xb1, 0x5d, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300701 {0xd1, 0x5d, 0x01, 0x00, 0x08, 0x00, 0x16, 0x10},
702 {0xd1, 0x5d, 0x03, 0x01, 0xe2, 0x02, 0x82, 0x10},
703 {0xd1, 0x5d, 0x05, 0x00, 0x09, 0x00, 0x53, 0x10},
704 {0xb1, 0x5d, 0x0d, 0x00, 0x02, 0x00, 0x00, 0x10},
705 {0xd1, 0x5d, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x10},
706 {0xd1, 0x5d, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x10},
707 {0xd1, 0x5d, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x10},
708 {0xd1, 0x5d, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
709 {0xd1, 0x5d, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
710 {0xd1, 0x5d, 0x14, 0x00, 0x00, 0x00, 0x00, 0x10},
711 {0xd1, 0x5d, 0x16, 0x00, 0x00, 0x00, 0x00, 0x10},
712 {0xd1, 0x5d, 0x18, 0x00, 0x00, 0x00, 0x00, 0x10},
713 {0xd1, 0x5d, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x10},
714 {0xd1, 0x5d, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x10},
715 {0xb1, 0x5d, 0x32, 0x00, 0x00, 0x00, 0x00, 0x10},
716 {0xd1, 0x5d, 0x20, 0x91, 0x01, 0x00, 0x00, 0x10},
717 {0xd1, 0x5d, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
718 {0xd1, 0x5d, 0x24, 0x00, 0x00, 0x00, 0x00, 0x10},
719 {0xd1, 0x5d, 0x26, 0x00, 0x00, 0x00, 0x24, 0x10},
Jean-Francois Moine98819182009-01-19 07:37:33 -0300720 {0xd1, 0x5d, 0x2f, 0xf7, 0xB0, 0x00, 0x04, 0x10},
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300721 {0xd1, 0x5d, 0x31, 0x00, 0x00, 0x00, 0x00, 0x10},
722 {0xd1, 0x5d, 0x33, 0x00, 0x00, 0x01, 0x00, 0x10},
723 {0xb1, 0x5d, 0x3d, 0x06, 0x8f, 0x00, 0x00, 0x10},
724 {0xd1, 0x5d, 0x40, 0x01, 0xe0, 0x00, 0xd1, 0x10},
725 {0xb1, 0x5d, 0x44, 0x00, 0x82, 0x00, 0x00, 0x10},
726 {0xd1, 0x5d, 0x58, 0x00, 0x78, 0x00, 0x43, 0x10},
727 {0xd1, 0x5d, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x10},
728 {0xd1, 0x5d, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x10},
729 {0xd1, 0x5d, 0x5e, 0x00, 0x00, 0xa3, 0x1d, 0x10},
730 {0xb1, 0x5d, 0x62, 0x04, 0x11, 0x00, 0x00, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300731
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300732 {0xb1, 0x5d, 0x20, 0x91, 0x01, 0x00, 0x00, 0x10},
733 {0xb1, 0x5d, 0x20, 0x11, 0x01, 0x00, 0x00, 0x10},
734 {0xb1, 0x5d, 0x09, 0x00, 0x64, 0x00, 0x00, 0x10},
735 {0xd1, 0x5d, 0x2b, 0x00, 0xa0, 0x00, 0xb0, 0x10},
736 {0xd1, 0x5d, 0x2d, 0x00, 0xa0, 0x00, 0xa0, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300737
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300738 {0xb1, 0x5d, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x10}, /* sensor clck ?2 */
739 {0xb1, 0x5d, 0x06, 0x00, 0x30, 0x00, 0x00, 0x10},
740 {0xb1, 0x5d, 0x05, 0x00, 0x0a, 0x00, 0x00, 0x10},
741 {0xb1, 0x5d, 0x09, 0x02, 0x35, 0x00, 0x00, 0x10}, /* exposure 2 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300742
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300743 {0xd1, 0x5d, 0x2b, 0x00, 0xb9, 0x00, 0xe3, 0x10},
744 {0xd1, 0x5d, 0x2d, 0x00, 0x5f, 0x00, 0xb9, 0x10}, /* 42 */
745/* {0xb1, 0x5d, 0x35, 0x00, 0x67, 0x00, 0x00, 0x10}, * gain orig */
746/* {0xb1, 0x5d, 0x35, 0x00, 0x20, 0x00, 0x00, 0x10}, * gain */
747 {0xb1, 0x5d, 0x07, 0x00, 0x03, 0x00, 0x00, 0x10}, /* update */
748 {0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10}, /* sensor on */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300749 {}
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300750};
Jean-Francois Moine98819182009-01-19 07:37:33 -0300751static const u8 mo4000_sensor_init[][8] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300752 {0xa1, 0x21, 0x01, 0x02, 0x00, 0x00, 0x00, 0x10},
753 {0xa1, 0x21, 0x02, 0x00, 0x00, 0x00, 0x00, 0x10},
754 {0xa1, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
755 {0xa1, 0x21, 0x04, 0x00, 0x00, 0x00, 0x00, 0x10},
756 {0xa1, 0x21, 0x05, 0x00, 0x00, 0x00, 0x00, 0x10},
757 {0xa1, 0x21, 0x05, 0x04, 0x00, 0x00, 0x00, 0x10},
758 {0xa1, 0x21, 0x06, 0x80, 0x00, 0x00, 0x00, 0x10},
759 {0xa1, 0x21, 0x06, 0x81, 0x00, 0x00, 0x00, 0x10},
760 {0xa1, 0x21, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x10},
761 {0xa1, 0x21, 0x11, 0x00, 0x00, 0x00, 0x00, 0x10},
762 {0xa1, 0x21, 0x11, 0x20, 0x00, 0x00, 0x00, 0x10},
763 {0xa1, 0x21, 0x11, 0x30, 0x00, 0x00, 0x00, 0x10},
764 {0xa1, 0x21, 0x11, 0x38, 0x00, 0x00, 0x00, 0x10},
765 {0xa1, 0x21, 0x11, 0x38, 0x00, 0x00, 0x00, 0x10},
766 {0xa1, 0x21, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
767 {0xa1, 0x21, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
768 {0xa1, 0x21, 0x0f, 0x20, 0x00, 0x00, 0x00, 0x10},
769 {0xa1, 0x21, 0x10, 0x20, 0x00, 0x00, 0x00, 0x10},
770 {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
771 {0xa1, 0x21, 0x11, 0x38, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300772 {}
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300773};
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300774static const u8 mt9v111_sensor_init[][8] = {
775 {0xb1, 0x5c, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x10}, /* reset? */
Jean-Francois Moine23a98272009-11-02 09:10:25 -0300776 {0xdd, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300777 {0xb1, 0x5c, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x10},
778 {0xb1, 0x5c, 0x01, 0x00, 0x01, 0x00, 0x00, 0x10}, /* IFP select */
779 {0xb1, 0x5c, 0x08, 0x04, 0x80, 0x00, 0x00, 0x10}, /* output fmt ctrl */
780 {0xb1, 0x5c, 0x06, 0x00, 0x00, 0x00, 0x00, 0x10}, /* op mode ctrl */
Jean-Francois Moine2687a2f2009-02-01 14:48:55 -0300781 {0xb1, 0x5c, 0x02, 0x00, 0x16, 0x00, 0x00, 0x10},
782 {0xb1, 0x5c, 0x03, 0x01, 0xe1, 0x00, 0x00, 0x10},
783 {0xb1, 0x5c, 0x04, 0x02, 0x81, 0x00, 0x00, 0x10},
784 {0xb1, 0x5c, 0x05, 0x00, 0x04, 0x00, 0x00, 0x10},
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300785 {0xb1, 0x5c, 0x01, 0x00, 0x04, 0x00, 0x00, 0x10}, /* sensor select */
Jean-Francois Moine2687a2f2009-02-01 14:48:55 -0300786 {0xb1, 0x5c, 0x02, 0x00, 0x16, 0x00, 0x00, 0x10},
787 {0xb1, 0x5c, 0x03, 0x01, 0xe6, 0x00, 0x00, 0x10},
788 {0xb1, 0x5c, 0x04, 0x02, 0x86, 0x00, 0x00, 0x10},
789 {0xb1, 0x5c, 0x05, 0x00, 0x04, 0x00, 0x00, 0x10},
790 {0xb1, 0x5c, 0x06, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300791 {0xb1, 0x5c, 0x08, 0x00, 0x08, 0x00, 0x00, 0x10}, /* row start */
Jean-Francois Moine2687a2f2009-02-01 14:48:55 -0300792 {0xb1, 0x5c, 0x0e, 0x00, 0x08, 0x00, 0x00, 0x10},
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300793 {0xb1, 0x5c, 0x02, 0x00, 0x16, 0x00, 0x00, 0x10}, /* col start */
794 {0xb1, 0x5c, 0x03, 0x01, 0xe7, 0x00, 0x00, 0x10}, /* window height */
795 {0xb1, 0x5c, 0x04, 0x02, 0x87, 0x00, 0x00, 0x10}, /* window width */
796 {0xb1, 0x5c, 0x07, 0x30, 0x02, 0x00, 0x00, 0x10}, /* output ctrl */
797 {0xb1, 0x5c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x10}, /* shutter delay */
798 {0xb1, 0x5c, 0x12, 0x00, 0xb0, 0x00, 0x00, 0x10}, /* zoom col start */
799 {0xb1, 0x5c, 0x13, 0x00, 0x7c, 0x00, 0x00, 0x10}, /* zoom row start */
800 {0xb1, 0x5c, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x10}, /* digital zoom */
801 {0xb1, 0x5c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10}, /* read mode */
802 {0xb1, 0x5c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300803 {}
804};
805static const u8 mt9v111_sensor_param1[][8] = {
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300806 {0xb1, 0x5c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
807 {0xb1, 0x5c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine2687a2f2009-02-01 14:48:55 -0300808 {0xb1, 0x5c, 0x09, 0x01, 0x2c, 0x00, 0x00, 0x10},
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300809 {0xd1, 0x5c, 0x2b, 0x00, 0x33, 0x00, 0xa0, 0x10}, /* green1 gain */
810 {0xd1, 0x5c, 0x2d, 0x00, 0xa0, 0x00, 0x33, 0x10}, /* red gain */
811 /*******/
812 {0xb1, 0x5c, 0x06, 0x00, 0x1e, 0x00, 0x00, 0x10}, /* vert blanking */
813 {0xb1, 0x5c, 0x05, 0x00, 0x0a, 0x00, 0x00, 0x10}, /* horiz blanking */
814 {0xd1, 0x5c, 0x2c, 0x00, 0xad, 0x00, 0xad, 0x10}, /* blue gain */
815 {0xb1, 0x5c, 0x35, 0x01, 0xc0, 0x00, 0x00, 0x10}, /* global gain */
816 {}
817};
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300818static const u8 om6802_init0[2][8] = {
819/*fixme: variable*/
820 {0xa0, 0x34, 0x29, 0x0e, 0x00, 0x00, 0x00, 0x10},
821 {0xa0, 0x34, 0x23, 0xb0, 0x00, 0x00, 0x00, 0x10},
822};
Jean-Francois Moine98819182009-01-19 07:37:33 -0300823static const u8 om6802_sensor_init[][8] = {
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300824 {0xa0, 0x34, 0xdf, 0x6d, 0x00, 0x00, 0x00, 0x10},
825 /* factory mode */
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300826 {0xa0, 0x34, 0xdd, 0x18, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moined5aa3852009-11-07 06:10:08 -0300827 /* output raw RGB */
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300828 {0xa0, 0x34, 0x5a, 0xc0, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300829/* {0xa0, 0x34, 0xfb, 0x11, 0x00, 0x00, 0x00, 0x10}, */
830 {0xa0, 0x34, 0xf0, 0x04, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moined5aa3852009-11-07 06:10:08 -0300831 /* auto-exposure speed (0) / white balance mode (auto RGB) */
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300832/* {0xa0, 0x34, 0xf1, 0x02, 0x00, 0x00, 0x00, 0x10},
833 * set color mode */
834/* {0xa0, 0x34, 0xfe, 0x5b, 0x00, 0x00, 0x00, 0x10},
835 * max AGC value in AE */
836/* {0xa0, 0x34, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x10},
837 * preset AGC */
838/* {0xa0, 0x34, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x10},
839 * preset brightness */
840/* {0xa0, 0x34, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x10},
841 * preset contrast */
842/* {0xa0, 0x34, 0xe8, 0x31, 0x00, 0x00, 0x00, 0x10},
843 * preset gamma */
844 {0xa0, 0x34, 0xe9, 0x0f, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moined5aa3852009-11-07 06:10:08 -0300845 /* luminance mode (0x4f -> AutoExpo on) */
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300846 {0xa0, 0x34, 0xe4, 0xff, 0x00, 0x00, 0x00, 0x10},
847 /* preset shutter */
848/* {0xa0, 0x34, 0xef, 0x00, 0x00, 0x00, 0x00, 0x10},
849 * auto frame rate */
850/* {0xa0, 0x34, 0xfb, 0xee, 0x00, 0x00, 0x00, 0x10}, */
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300851 {0xa0, 0x34, 0x5d, 0x80, 0x00, 0x00, 0x00, 0x10},
852 {}
853};
854static const u8 om6802_sensor_param1[][8] = {
855 {0xa0, 0x34, 0x71, 0x84, 0x00, 0x00, 0x00, 0x10},
856 {0xa0, 0x34, 0x72, 0x05, 0x00, 0x00, 0x00, 0x10},
857 {0xa0, 0x34, 0x68, 0x80, 0x00, 0x00, 0x00, 0x10},
858 {0xa0, 0x34, 0x69, 0x01, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300859 {}
860};
Jean-Francois Moine98819182009-01-19 07:37:33 -0300861static const u8 ov7630_sensor_init[][8] = {
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300862 {0xa1, 0x21, 0x76, 0x01, 0x00, 0x00, 0x00, 0x10},
863 {0xa1, 0x21, 0x12, 0xc8, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine23a98272009-11-02 09:10:25 -0300864 {0xdd, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300865 {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
866 {0xa1, 0x21, 0x12, 0xc8, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine23a98272009-11-02 09:10:25 -0300867 {0xdd, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300868 {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine05b809c2008-09-03 16:47:59 -0300869/* win: i2c_r from 00 to 80 */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300870 {0xd1, 0x21, 0x03, 0x80, 0x10, 0x20, 0x80, 0x10},
871 {0xb1, 0x21, 0x0c, 0x20, 0x20, 0x00, 0x00, 0x10},
Hans de Goedecc7b5b52009-06-18 05:14:42 -0300872/* HDG: 0x11 was 0x00 change to 0x01 for better exposure (15 fps instead of 30)
873 0x13 was 0xc0 change to 0xc3 for auto gain and exposure */
874 {0xd1, 0x21, 0x11, 0x01, 0x48, 0xc3, 0x00, 0x10},
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300875 {0xb1, 0x21, 0x15, 0x80, 0x03, 0x00, 0x00, 0x10},
876 {0xd1, 0x21, 0x17, 0x1b, 0xbd, 0x05, 0xf6, 0x10},
877 {0xa1, 0x21, 0x1b, 0x04, 0x00, 0x00, 0x00, 0x10},
878 {0xd1, 0x21, 0x1f, 0x00, 0x80, 0x80, 0x80, 0x10},
879 {0xd1, 0x21, 0x23, 0xde, 0x10, 0x8a, 0xa0, 0x10},
880 {0xc1, 0x21, 0x27, 0xca, 0xa2, 0x74, 0x00, 0x10},
881 {0xd1, 0x21, 0x2a, 0x88, 0x00, 0x88, 0x01, 0x10},
882 {0xc1, 0x21, 0x2e, 0x80, 0x00, 0x18, 0x00, 0x10},
883 {0xa1, 0x21, 0x21, 0x08, 0x00, 0x00, 0x00, 0x10},
884 {0xa1, 0x21, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
885 {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10},
886 {0xb1, 0x21, 0x32, 0xc2, 0x08, 0x00, 0x00, 0x10},
887 {0xb1, 0x21, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x10},
888 {0xd1, 0x21, 0x60, 0x05, 0x40, 0x12, 0x57, 0x10},
889 {0xa1, 0x21, 0x64, 0x73, 0x00, 0x00, 0x00, 0x10},
890 {0xd1, 0x21, 0x65, 0x00, 0x55, 0x01, 0xac, 0x10},
891 {0xa1, 0x21, 0x69, 0x38, 0x00, 0x00, 0x00, 0x10},
892 {0xd1, 0x21, 0x6f, 0x1f, 0x01, 0x00, 0x10, 0x10},
893 {0xd1, 0x21, 0x73, 0x50, 0x20, 0x02, 0x01, 0x10},
894 {0xd1, 0x21, 0x77, 0xf3, 0x90, 0x98, 0x98, 0x10},
895 {0xc1, 0x21, 0x7b, 0x00, 0x4c, 0xf7, 0x00, 0x10},
896 {0xd1, 0x21, 0x17, 0x1b, 0xbd, 0x05, 0xf6, 0x10},
897 {0xa1, 0x21, 0x1b, 0x04, 0x00, 0x00, 0x00, 0x10},
Jean-François Moinebdd2b932010-04-25 14:23:39 -0300898 {}
899};
900static const u8 ov7630_sensor_param1[][8] = {
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300901 {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
902 {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
903/*fixme: + 0x12, 0x04*/
Jean-Francois Moine6c862742008-09-08 04:57:26 -0300904/* {0xa1, 0x21, 0x75, 0x82, 0x00, 0x00, 0x00, 0x10}, * COMN
905 * set by setvflip */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300906 {0xa1, 0x21, 0x10, 0x32, 0x00, 0x00, 0x00, 0x10},
907 {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
908 {0xb1, 0x21, 0x01, 0x80, 0x80, 0x00, 0x00, 0x10},
Jean-Francois Moine05b809c2008-09-03 16:47:59 -0300909/* */
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300910/* {0xa1, 0x21, 0x2a, 0x88, 0x00, 0x00, 0x00, 0x10}, * set by setfreq */
911/* {0xa1, 0x21, 0x2b, 0x34, 0x00, 0x00, 0x00, 0x10}, * set by setfreq */
Jean-Francois Moine05b809c2008-09-03 16:47:59 -0300912/* */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300913 {0xa1, 0x21, 0x10, 0x83, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine91de65a2008-09-03 17:12:18 -0300914/* {0xb1, 0x21, 0x01, 0x88, 0x70, 0x00, 0x00, 0x10}, */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300915 {}
916};
Jean-Francois Moine62703302008-11-11 08:42:56 -0300917
Jean-Francois Moine98819182009-01-19 07:37:33 -0300918static const u8 ov7648_sensor_init[][8] = {
Jean-Francois Moine62703302008-11-11 08:42:56 -0300919 {0xa1, 0x21, 0x76, 0x00, 0x00, 0x00, 0x00, 0x10},
920 {0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10}, /* reset */
Jean-Francois Moine23a98272009-11-02 09:10:25 -0300921 {0xdd, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
Jean-Francois Moine62703302008-11-11 08:42:56 -0300922 {0xa1, 0x21, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
923 {0xd1, 0x21, 0x03, 0xa4, 0x30, 0x88, 0x00, 0x10},
924 {0xb1, 0x21, 0x11, 0x80, 0x08, 0x00, 0x00, 0x10},
925 {0xc1, 0x21, 0x13, 0xa0, 0x04, 0x84, 0x00, 0x10},
926 {0xd1, 0x21, 0x17, 0x1a, 0x02, 0xba, 0xf4, 0x10},
927 {0xa1, 0x21, 0x1b, 0x04, 0x00, 0x00, 0x00, 0x10},
928 {0xd1, 0x21, 0x1f, 0x41, 0xc0, 0x80, 0x80, 0x10},
929 {0xd1, 0x21, 0x23, 0xde, 0xa0, 0x80, 0x32, 0x10},
930 {0xd1, 0x21, 0x27, 0xfe, 0xa0, 0x00, 0x91, 0x10},
931 {0xd1, 0x21, 0x2b, 0x00, 0x88, 0x85, 0x80, 0x10},
932 {0xc1, 0x21, 0x2f, 0x9c, 0x00, 0xc4, 0x00, 0x10},
933 {0xd1, 0x21, 0x60, 0xa6, 0x60, 0x88, 0x12, 0x10},
934 {0xd1, 0x21, 0x64, 0x88, 0x00, 0x00, 0x94, 0x10},
935 {0xd1, 0x21, 0x68, 0x7a, 0x0c, 0x00, 0x00, 0x10},
936 {0xd1, 0x21, 0x6c, 0x11, 0x33, 0x22, 0x00, 0x10},
937 {0xd1, 0x21, 0x70, 0x11, 0x00, 0x10, 0x50, 0x10},
938 {0xd1, 0x21, 0x74, 0x20, 0x06, 0x00, 0xb5, 0x10},
939 {0xd1, 0x21, 0x78, 0x8a, 0x00, 0x00, 0x00, 0x10},
940 {0xb1, 0x21, 0x7c, 0x00, 0x43, 0x00, 0x00, 0x10},
941
942 {0xd1, 0x21, 0x21, 0x86, 0x00, 0xde, 0xa0, 0x10},
943/* {0xd1, 0x21, 0x25, 0x80, 0x32, 0xfe, 0xa0, 0x10}, jfm done */
944/* {0xd1, 0x21, 0x29, 0x00, 0x91, 0x00, 0x88, 0x10}, jfm done */
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300945/* {0xb1, 0x21, 0x2d, 0x85, 0x00, 0x00, 0x00, 0x10}, set by setfreq */
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300946 {}
947};
948static const u8 ov7648_sensor_param1[][8] = {
Jean-Francois Moine62703302008-11-11 08:42:56 -0300949/* {0xa1, 0x21, 0x12, 0x08, 0x00, 0x00, 0x00, 0x10}, jfm done */
Jean-Francois Moine2797ba22009-02-05 15:12:24 -0300950/* {0xa1, 0x21, 0x75, 0x06, 0x00, 0x00, 0x00, 0x10}, * COMN
951 * set by setvflip */
Jean-Francois Moine62703302008-11-11 08:42:56 -0300952 {0xa1, 0x21, 0x19, 0x02, 0x00, 0x00, 0x00, 0x10},
953 {0xa1, 0x21, 0x10, 0x32, 0x00, 0x00, 0x00, 0x10},
954/* {0xa1, 0x21, 0x16, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
955/* {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10}, * GAIN - def */
956/* {0xb1, 0x21, 0x01, 0x6c, 0x6c, 0x00, 0x00, 0x10}, * B R - def: 80 */
957/*...*/
958 {0xa1, 0x21, 0x11, 0x81, 0x00, 0x00, 0x00, 0x10}, /* CLKRC */
959/* {0xa1, 0x21, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
960/* {0xa1, 0x21, 0x16, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
961/* {0xa1, 0x21, 0x2a, 0x91, 0x00, 0x00, 0x00, 0x10}, jfm done */
962/* {0xa1, 0x21, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
963/* {0xb1, 0x21, 0x01, 0x64, 0x84, 0x00, 0x00, 0x10}, * B R - def: 80 */
964
965 {}
966};
967
Jean-Francois Moine98819182009-01-19 07:37:33 -0300968static const u8 ov7660_sensor_init[][8] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300969 {0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10}, /* reset SCCB */
Jean-Francois Moine23a98272009-11-02 09:10:25 -0300970 {0xdd, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300971 {0xa1, 0x21, 0x12, 0x05, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine738608a2008-07-28 06:41:51 -0300972 /* Outformat = rawRGB */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300973 {0xa1, 0x21, 0x13, 0xb8, 0x00, 0x00, 0x00, 0x10}, /* init COM8 */
Jean-Francois Moined8f400e2009-07-08 06:33:44 -0300974 {0xd1, 0x21, 0x00, 0x01, 0x74, 0x92, 0x00, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300975 /* GAIN BLUE RED VREF */
976 {0xd1, 0x21, 0x04, 0x00, 0x7d, 0x62, 0x00, 0x10},
977 /* COM 1 BAVE GEAVE AECHH */
978 {0xb1, 0x21, 0x08, 0x83, 0x01, 0x00, 0x00, 0x10}, /* RAVE COM2 */
979 {0xd1, 0x21, 0x0c, 0x00, 0x08, 0x04, 0x4f, 0x10}, /* COM 3 4 5 6 */
Jean-Francois Moine47f7f6f2009-08-25 06:14:54 -0300980 {0xd1, 0x21, 0x10, 0x7f, 0x40, 0x05, 0xff, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300981 /* AECH CLKRC COM7 COM8 */
982 {0xc1, 0x21, 0x14, 0x2c, 0x00, 0x02, 0x00, 0x10}, /* COM9 COM10 */
983 {0xd1, 0x21, 0x17, 0x10, 0x60, 0x02, 0x7b, 0x10},
984 /* HSTART HSTOP VSTRT VSTOP */
985 {0xa1, 0x21, 0x1b, 0x02, 0x00, 0x00, 0x00, 0x10}, /* PSHFT */
986 {0xb1, 0x21, 0x1e, 0x01, 0x0e, 0x00, 0x00, 0x10}, /* MVFP LAEC */
987 {0xd1, 0x21, 0x20, 0x07, 0x07, 0x07, 0x07, 0x10},
988 /* BOS GBOS GROS ROS (BGGR offset) */
Jean-Francois Moine738608a2008-07-28 06:41:51 -0300989/* {0xd1, 0x21, 0x24, 0x68, 0x58, 0xd4, 0x80, 0x10}, */
990 {0xd1, 0x21, 0x24, 0x78, 0x68, 0xd4, 0x80, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300991 /* AEW AEB VPT BBIAS */
992 {0xd1, 0x21, 0x28, 0x80, 0x30, 0x00, 0x00, 0x10},
993 /* GbBIAS RSVD EXHCH EXHCL */
994 {0xd1, 0x21, 0x2c, 0x80, 0x00, 0x00, 0x62, 0x10},
995 /* RBIAS ADVFL ASDVFH YAVE */
996 {0xc1, 0x21, 0x30, 0x08, 0x30, 0xb4, 0x00, 0x10},
997 /* HSYST HSYEN HREF */
998 {0xd1, 0x21, 0x33, 0x00, 0x07, 0x84, 0x00, 0x10}, /* reserved */
999 {0xd1, 0x21, 0x37, 0x0c, 0x02, 0x43, 0x00, 0x10},
1000 /* ADC ACOM OFON TSLB */
1001 {0xd1, 0x21, 0x3b, 0x02, 0x6c, 0x19, 0x0e, 0x10},
1002 /* COM11 COM12 COM13 COM14 */
1003 {0xd1, 0x21, 0x3f, 0x41, 0xc1, 0x22, 0x08, 0x10},
1004 /* EDGE COM15 COM16 COM17 */
1005 {0xd1, 0x21, 0x43, 0xf0, 0x10, 0x78, 0xa8, 0x10}, /* reserved */
1006 {0xd1, 0x21, 0x47, 0x60, 0x80, 0x00, 0x00, 0x10}, /* reserved */
1007 {0xd1, 0x21, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x10}, /* reserved */
1008 {0xd1, 0x21, 0x4f, 0x46, 0x36, 0x0f, 0x17, 0x10}, /* MTX 1 2 3 4 */
1009 {0xd1, 0x21, 0x53, 0x7f, 0x96, 0x40, 0x40, 0x10}, /* MTX 5 6 7 8 */
1010 {0xb1, 0x21, 0x57, 0x40, 0x0f, 0x00, 0x00, 0x10}, /* MTX9 MTXS */
1011 {0xd1, 0x21, 0x59, 0xba, 0x9a, 0x22, 0xb9, 0x10}, /* reserved */
1012 {0xd1, 0x21, 0x5d, 0x9b, 0x10, 0xf0, 0x05, 0x10}, /* reserved */
1013 {0xa1, 0x21, 0x61, 0x60, 0x00, 0x00, 0x00, 0x10}, /* reserved */
1014 {0xd1, 0x21, 0x62, 0x00, 0x00, 0x50, 0x30, 0x10},
1015 /* LCC1 LCC2 LCC3 LCC4 */
1016 {0xa1, 0x21, 0x66, 0x00, 0x00, 0x00, 0x00, 0x10}, /* LCC5 */
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001017 {0xd1, 0x21, 0x67, 0x80, 0x7a, 0x90, 0x80, 0x10}, /* MANU */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001018 {0xa1, 0x21, 0x6b, 0x0a, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001019 /* band gap reference [0:3] DBLV */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001020 {0xd1, 0x21, 0x6c, 0x30, 0x48, 0x80, 0x74, 0x10}, /* gamma curve */
1021 {0xd1, 0x21, 0x70, 0x64, 0x60, 0x5c, 0x58, 0x10}, /* gamma curve */
1022 {0xd1, 0x21, 0x74, 0x54, 0x4c, 0x40, 0x38, 0x10}, /* gamma curve */
1023 {0xd1, 0x21, 0x78, 0x34, 0x30, 0x2f, 0x2b, 0x10}, /* gamma curve */
1024 {0xd1, 0x21, 0x7c, 0x03, 0x07, 0x17, 0x34, 0x10}, /* gamma curve */
1025 {0xd1, 0x21, 0x80, 0x41, 0x4d, 0x58, 0x63, 0x10}, /* gamma curve */
1026 {0xd1, 0x21, 0x84, 0x6e, 0x77, 0x87, 0x95, 0x10}, /* gamma curve */
1027 {0xc1, 0x21, 0x88, 0xaf, 0xc7, 0xdf, 0x00, 0x10}, /* gamma curve */
1028 {0xc1, 0x21, 0x8b, 0x99, 0x99, 0xcf, 0x00, 0x10}, /* reserved */
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001029 {0xb1, 0x21, 0x92, 0x00, 0x00, 0x00, 0x00, 0x10}, /* DM_LNL/H */
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001030/* not in all ms-win traces*/
Jean-Francois Moine47f7f6f2009-08-25 06:14:54 -03001031 {0xa1, 0x21, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001032 {}
1033};
1034static const u8 ov7660_sensor_param1[][8] = {
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001035 {0xa1, 0x21, 0x1e, 0x01, 0x00, 0x00, 0x00, 0x10}, /* MVFP */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001036 /* bits[3..0]reserved */
1037 {0xa1, 0x21, 0x1e, 0x01, 0x00, 0x00, 0x00, 0x10},
1038 {0xa1, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
1039 /* VREF vertical frame ctrl */
1040 {0xa1, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001041 {0xa1, 0x21, 0x10, 0x20, 0x00, 0x00, 0x00, 0x10}, /* AECH 0x20 */
1042 {0xa1, 0x21, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x10}, /* ADVFL */
1043 {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10}, /* ADVFH */
1044 {0xa1, 0x21, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x10}, /* GAIN */
1045/* {0xb1, 0x21, 0x01, 0x78, 0x78, 0x00, 0x00, 0x10}, * BLUE */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001046/****** (some exchanges in the win trace) ******/
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001047/*fixme:param2*/
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001048 {0xa1, 0x21, 0x93, 0x00, 0x00, 0x00, 0x00, 0x10},/* dummy line hight */
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001049 {0xa1, 0x21, 0x92, 0x25, 0x00, 0x00, 0x00, 0x10}, /* dummy line low */
1050 {0xa1, 0x21, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x10}, /* EXHCH */
1051 {0xa1, 0x21, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10}, /* EXHCL */
1052/* {0xa1, 0x21, 0x02, 0x90, 0x00, 0x00, 0x00, 0x10}, * RED */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001053/****** (some exchanges in the win trace) ******/
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001054/******!! startsensor KO if changed !!****/
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001055/*fixme: param3*/
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001056 {0xa1, 0x21, 0x93, 0x01, 0x00, 0x00, 0x00, 0x10},
1057 {0xa1, 0x21, 0x92, 0xff, 0x00, 0x00, 0x00, 0x10},
1058 {0xa1, 0x21, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x10},
1059 {0xa1, 0x21, 0x2b, 0xc3, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03001060 {}
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001061};
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001062
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001063static const u8 po1030_sensor_init[][8] = {
1064/* the sensor registers are described in m5602/m5602_po1030.h */
1065 {0xa1, 0x6e, 0x3f, 0x20, 0x00, 0x00, 0x00, 0x10}, /* sensor reset */
1066 {0xdd, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
1067 {0xa1, 0x6e, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x10},
1068 {0xa1, 0x6e, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x10},
1069 {0xd1, 0x6e, 0x04, 0x02, 0xb1, 0x02, 0x39, 0x10},
1070 {0xd1, 0x6e, 0x08, 0x00, 0x01, 0x00, 0x00, 0x10},
1071 {0xd1, 0x6e, 0x0c, 0x02, 0x7f, 0x01, 0xe0, 0x10},
1072 {0xd1, 0x6e, 0x12, 0x03, 0x02, 0x00, 0x03, 0x10},
1073 {0xd1, 0x6e, 0x16, 0x85, 0x40, 0x4a, 0x40, 0x10}, /* r/g1/b/g2 gains */
1074 {0xc1, 0x6e, 0x1a, 0x00, 0x80, 0x00, 0x00, 0x10},
1075 {0xd1, 0x6e, 0x1d, 0x08, 0x03, 0x00, 0x00, 0x10},
1076 {0xd1, 0x6e, 0x23, 0x00, 0xb0, 0x00, 0x94, 0x10},
1077 {0xd1, 0x6e, 0x27, 0x58, 0x00, 0x00, 0x00, 0x10},
1078 {0xb1, 0x6e, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10},
1079 {0xd1, 0x6e, 0x2d, 0x14, 0x35, 0x61, 0x84, 0x10}, /* gamma corr */
1080 {0xd1, 0x6e, 0x31, 0xa2, 0xbd, 0xd8, 0xff, 0x10},
1081 {0xd1, 0x6e, 0x35, 0x06, 0x1e, 0x12, 0x02, 0x10}, /* color matrix */
1082 {0xd1, 0x6e, 0x39, 0xaa, 0x53, 0x37, 0xd5, 0x10},
1083 {0xa1, 0x6e, 0x3d, 0xf2, 0x00, 0x00, 0x00, 0x10},
1084 {0xd1, 0x6e, 0x3e, 0x00, 0x00, 0x80, 0x03, 0x10},
1085 {0xd1, 0x6e, 0x42, 0x03, 0x00, 0x00, 0x00, 0x10},
1086 {0xc1, 0x6e, 0x46, 0x00, 0x80, 0x80, 0x00, 0x10},
1087 {0xd1, 0x6e, 0x4b, 0x02, 0xef, 0x08, 0xcd, 0x10},
1088 {0xd1, 0x6e, 0x4f, 0x00, 0xd0, 0x00, 0xa0, 0x10},
1089 {0xd1, 0x6e, 0x53, 0x01, 0xaa, 0x01, 0x40, 0x10},
1090 {0xd1, 0x6e, 0x5a, 0x50, 0x04, 0x30, 0x03, 0x10}, /* raw rgb bayer */
1091 {0xa1, 0x6e, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x10},
1092 {0xd1, 0x6e, 0x5f, 0x10, 0x40, 0xff, 0x00, 0x10},
1093
1094 {0xd1, 0x6e, 0x63, 0x40, 0x40, 0x00, 0x00, 0x10},
1095 {0xd1, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x10},
1096 {0xd1, 0x6e, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x10},
1097 {0xd1, 0x6e, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x10},
1098 {0xc1, 0x6e, 0x73, 0x10, 0x80, 0xeb, 0x00, 0x10},
1099 {}
1100};
1101static const u8 po1030_sensor_param1[][8] = {
1102/* from ms-win traces - these values change with auto gain/expo/wb.. */
1103 {0xa1, 0x6e, 0x1e, 0x03, 0x00, 0x00, 0x00, 0x10},
1104 {0xa1, 0x6e, 0x1e, 0x03, 0x00, 0x00, 0x00, 0x10},
1105/* mean values */
1106 {0xc1, 0x6e, 0x1a, 0x02, 0xd4, 0xa4, 0x00, 0x10}, /* integlines */
1107 {0xa1, 0x6e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x10}, /* global gain */
1108 {0xc1, 0x6e, 0x16, 0x40, 0x40, 0x40, 0x00, 0x10}, /* r/g1/b gains */
1109
1110 {0xa1, 0x6e, 0x1d, 0x08, 0x00, 0x00, 0x00, 0x10}, /* control1 */
1111 {0xa1, 0x6e, 0x06, 0x02, 0x00, 0x00, 0x00, 0x10}, /* frameheight */
1112 {0xa1, 0x6e, 0x07, 0xd5, 0x00, 0x00, 0x00, 0x10},
1113/* {0xc1, 0x6e, 0x16, 0x49, 0x40, 0x45, 0x00, 0x10}, */
1114 {}
1115};
1116
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001117static const u8 po2030n_sensor_init[][8] = {
1118 {0xa1, 0x6e, 0x1e, 0x1a, 0x00, 0x00, 0x00, 0x10},
1119 {0xa1, 0x6e, 0x1f, 0x99, 0x00, 0x00, 0x00, 0x10},
1120 {0xdd, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 10ms */
1121 {0xa1, 0x6e, 0x1e, 0x0a, 0x00, 0x00, 0x00, 0x10},
1122 {0xa1, 0x6e, 0x1f, 0x19, 0x00, 0x00, 0x00, 0x10},
1123 {0xdd, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 10ms */
1124 {0xa1, 0x6e, 0x20, 0x44, 0x00, 0x00, 0x00, 0x10},
1125 {0xa1, 0x6e, 0x04, 0x03, 0x00, 0x00, 0x00, 0x10},
1126 {0xa1, 0x6e, 0x05, 0x70, 0x00, 0x00, 0x00, 0x10},
1127 {0xa1, 0x6e, 0x06, 0x02, 0x00, 0x00, 0x00, 0x10},
1128 {0xa1, 0x6e, 0x07, 0x25, 0x00, 0x00, 0x00, 0x10},
1129 {0xd1, 0x6e, 0x08, 0x00, 0xd0, 0x00, 0x08, 0x10},
1130 {0xd1, 0x6e, 0x0c, 0x03, 0x50, 0x01, 0xe8, 0x10},
1131 {0xd1, 0x6e, 0x1d, 0x20, 0x0a, 0x19, 0x44, 0x10},
1132 {0xd1, 0x6e, 0x21, 0x00, 0x00, 0x00, 0x00, 0x10},
1133 {0xd1, 0x6e, 0x25, 0x00, 0x00, 0x00, 0x00, 0x10},
1134 {0xd1, 0x6e, 0x29, 0x00, 0x00, 0x00, 0x00, 0x10},
1135 {0xd1, 0x6e, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x10},
1136 {0xd1, 0x6e, 0x31, 0x00, 0x00, 0x00, 0x00, 0x10},
1137 {0xd1, 0x6e, 0x35, 0x00, 0x00, 0x00, 0x00, 0x10},
1138 {0xd1, 0x6e, 0x39, 0x00, 0x00, 0x00, 0x00, 0x10},
1139 {0xd1, 0x6e, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x10},
1140 {0xd1, 0x6e, 0x41, 0x00, 0x00, 0x00, 0x00, 0x10},
1141 {0xd1, 0x6e, 0x45, 0x00, 0x00, 0x00, 0x00, 0x10},
1142 {0xd1, 0x6e, 0x49, 0x00, 0x00, 0x00, 0x00, 0x10},
1143 {0xd1, 0x6e, 0x4d, 0x00, 0x00, 0x00, 0xed, 0x10},
1144 {0xd1, 0x6e, 0x51, 0x17, 0x4a, 0x2f, 0xc0, 0x10},
1145 {0xd1, 0x6e, 0x55, 0x00, 0x00, 0x00, 0x00, 0x10},
1146 {0xd1, 0x6e, 0x59, 0x00, 0x00, 0x00, 0x00, 0x10},
1147 {0xd1, 0x6e, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x10},
1148 {0xd1, 0x6e, 0x61, 0x00, 0x00, 0x00, 0x00, 0x10},
1149 {0xd1, 0x6e, 0x65, 0x00, 0x00, 0x00, 0x00, 0x10},
1150 {0xd1, 0x6e, 0x69, 0x00, 0x00, 0x00, 0x00, 0x10},
1151 {0xd1, 0x6e, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x10},
1152 {0xd1, 0x6e, 0x71, 0x00, 0x00, 0x00, 0x00, 0x10},
1153 {0xd1, 0x6e, 0x75, 0x00, 0x00, 0x00, 0x00, 0x10},
1154 {0xd1, 0x6e, 0x79, 0x00, 0x00, 0x00, 0x00, 0x10},
1155 {0xd1, 0x6e, 0x7d, 0x00, 0x00, 0x00, 0x00, 0x10},
1156 {0xd1, 0x6e, 0x81, 0x00, 0x00, 0x00, 0x00, 0x10},
1157 {0xd1, 0x6e, 0x85, 0x00, 0x00, 0x00, 0x08, 0x10},
1158 {0xd1, 0x6e, 0x89, 0x01, 0xe8, 0x00, 0x01, 0x10},
1159 {0xa1, 0x6e, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x10},
1160 {0xd1, 0x6e, 0x21, 0x00, 0x00, 0x00, 0x00, 0x10},
1161 {0xd1, 0x6e, 0x25, 0x00, 0x00, 0x00, 0x01, 0x10},
1162 {0xd1, 0x6e, 0x29, 0xe6, 0x00, 0xbd, 0x03, 0x10},
1163 {0xd1, 0x6e, 0x2d, 0x41, 0x38, 0x68, 0x40, 0x10},
1164 {0xd1, 0x6e, 0x31, 0x2b, 0x00, 0x36, 0x00, 0x10},
1165 {0xd1, 0x6e, 0x35, 0x30, 0x30, 0x08, 0x00, 0x10},
1166 {0xd1, 0x6e, 0x39, 0x00, 0x00, 0x33, 0x06, 0x10},
1167 {0xb1, 0x6e, 0x3d, 0x06, 0x02, 0x00, 0x00, 0x10},
1168 {}
1169};
1170static const u8 po2030n_sensor_param1[][8] = {
1171 {0xa1, 0x6e, 0x1a, 0x01, 0x00, 0x00, 0x00, 0x10},
1172 {0xdd, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 8ms */
1173 {0xa1, 0x6e, 0x1b, 0xf4, 0x00, 0x00, 0x00, 0x10},
1174 {0xa1, 0x6e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x10},
1175 {0xd1, 0x6e, 0x16, 0x50, 0x40, 0x49, 0x40, 0x10},
1176/*param2*/
1177 {0xa1, 0x6e, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x10},
1178 {0xa1, 0x6e, 0x04, 0x03, 0x00, 0x00, 0x00, 0x10},
1179 {0xa1, 0x6e, 0x05, 0x6f, 0x00, 0x00, 0x00, 0x10},
1180 {0xa1, 0x6e, 0x06, 0x02, 0x00, 0x00, 0x00, 0x10},
1181 {0xa1, 0x6e, 0x07, 0x25, 0x00, 0x00, 0x00, 0x10},
1182 {0xa1, 0x6e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x10},
1183 {0xc1, 0x6e, 0x16, 0x52, 0x40, 0x48, 0x00, 0x10},
1184/*after start*/
1185 {0xa1, 0x6e, 0x15, 0x0f, 0x00, 0x00, 0x00, 0x10},
1186 {0xdd, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 5ms */
1187 {0xa1, 0x6e, 0x1a, 0x05, 0x00, 0x00, 0x00, 0x10},
1188 {0xdd, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 5ms */
1189 {0xa1, 0x6e, 0x1b, 0x53, 0x00, 0x00, 0x00, 0x10},
1190 {}
1191};
1192
Jean-François Moine03ed2a12010-04-25 14:45:43 -03001193static const u8 soi768_sensor_init[][8] = {
1194 {0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10}, /* reset */
1195 {0xdd, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 96ms */
1196 {0xa1, 0x21, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
1197 {0xa1, 0x21, 0x13, 0x80, 0x00, 0x00, 0x00, 0x10},
1198 {0xa1, 0x21, 0x0f, 0x03, 0x00, 0x00, 0x00, 0x10},
1199 {0xa1, 0x21, 0x19, 0x00, 0x00, 0x00, 0x00, 0x10},
1200 {}
1201};
1202static const u8 soi768_sensor_param1[][8] = {
1203 {0xa1, 0x21, 0x10, 0x10, 0x00, 0x00, 0x00, 0x10},
1204 {0xa1, 0x21, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x10},
1205 {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10},
1206 {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
1207 {0xb1, 0x21, 0x01, 0x7f, 0x7f, 0x00, 0x00, 0x10},
1208/* */
1209/* {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10}, */
1210/* {0xa1, 0x21, 0x2d, 0x25, 0x00, 0x00, 0x00, 0x10}, */
1211 {0xa1, 0x21, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10},
1212/* {0xb1, 0x21, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x10}, */
1213 {0xa1, 0x21, 0x02, 0x8d, 0x00, 0x00, 0x00, 0x10},
1214/* the next sequence should be used for auto gain */
1215 {0xa1, 0x21, 0x00, 0x07, 0x00, 0x00, 0x00, 0x10},
1216 /* global gain ? : 07 - change with 0x15 at the end */
1217 {0xa1, 0x21, 0x10, 0x3f, 0x00, 0x00, 0x00, 0x10}, /* ???? : 063f */
1218 {0xa1, 0x21, 0x04, 0x06, 0x00, 0x00, 0x00, 0x10},
1219 {0xb1, 0x21, 0x2d, 0x00, 0x02, 0x00, 0x00, 0x10},
1220 /* exposure ? : 0200 - change with 0x1e at the end */
1221 {}
1222};
1223
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03001224static const u8 sp80708_sensor_init[][8] = {
1225 {0xa1, 0x18, 0x06, 0xf9, 0x00, 0x00, 0x00, 0x10},
1226 {0xa1, 0x18, 0x09, 0x1f, 0x00, 0x00, 0x00, 0x10},
1227 {0xa1, 0x18, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x10},
1228 {0xa1, 0x18, 0x0d, 0xc0, 0x00, 0x00, 0x00, 0x10},
1229 {0xa1, 0x18, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x10},
1230 {0xa1, 0x18, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x10},
1231 {0xa1, 0x18, 0x10, 0x40, 0x00, 0x00, 0x00, 0x10},
1232 {0xa1, 0x18, 0x11, 0x4e, 0x00, 0x00, 0x00, 0x10},
1233 {0xa1, 0x18, 0x12, 0x53, 0x00, 0x00, 0x00, 0x10},
1234 {0xa1, 0x18, 0x15, 0x80, 0x00, 0x00, 0x00, 0x10},
1235 {0xa1, 0x18, 0x18, 0x18, 0x00, 0x00, 0x00, 0x10},
1236 {0xa1, 0x18, 0x19, 0x18, 0x00, 0x00, 0x00, 0x10},
1237 {0xa1, 0x18, 0x1a, 0x10, 0x00, 0x00, 0x00, 0x10},
1238 {0xa1, 0x18, 0x1b, 0x10, 0x00, 0x00, 0x00, 0x10},
1239 {0xa1, 0x18, 0x1c, 0x28, 0x00, 0x00, 0x00, 0x10},
1240 {0xa1, 0x18, 0x1d, 0x02, 0x00, 0x00, 0x00, 0x10},
1241 {0xa1, 0x18, 0x1e, 0x10, 0x00, 0x00, 0x00, 0x10},
1242 {0xa1, 0x18, 0x26, 0x04, 0x00, 0x00, 0x00, 0x10},
1243 {0xa1, 0x18, 0x27, 0x1e, 0x00, 0x00, 0x00, 0x10},
1244 {0xa1, 0x18, 0x28, 0x5a, 0x00, 0x00, 0x00, 0x10},
1245 {0xa1, 0x18, 0x29, 0x28, 0x00, 0x00, 0x00, 0x10},
1246 {0xa1, 0x18, 0x2a, 0x78, 0x00, 0x00, 0x00, 0x10},
1247 {0xa1, 0x18, 0x2b, 0x01, 0x00, 0x00, 0x00, 0x10},
1248 {0xa1, 0x18, 0x2c, 0xf7, 0x00, 0x00, 0x00, 0x10},
1249 {0xa1, 0x18, 0x2d, 0x2d, 0x00, 0x00, 0x00, 0x10},
1250 {0xa1, 0x18, 0x2e, 0xd5, 0x00, 0x00, 0x00, 0x10},
1251 {0xa1, 0x18, 0x39, 0x42, 0x00, 0x00, 0x00, 0x10},
1252 {0xa1, 0x18, 0x3a, 0x67, 0x00, 0x00, 0x00, 0x10},
1253 {0xa1, 0x18, 0x3b, 0x87, 0x00, 0x00, 0x00, 0x10},
1254 {0xa1, 0x18, 0x3c, 0xa3, 0x00, 0x00, 0x00, 0x10},
1255 {0xa1, 0x18, 0x3d, 0xb0, 0x00, 0x00, 0x00, 0x10},
1256 {0xa1, 0x18, 0x3e, 0xbc, 0x00, 0x00, 0x00, 0x10},
1257 {0xa1, 0x18, 0x3f, 0xc8, 0x00, 0x00, 0x00, 0x10},
1258 {0xa1, 0x18, 0x40, 0xd4, 0x00, 0x00, 0x00, 0x10},
1259 {0xa1, 0x18, 0x41, 0xdf, 0x00, 0x00, 0x00, 0x10},
1260 {0xa1, 0x18, 0x42, 0xea, 0x00, 0x00, 0x00, 0x10},
1261 {0xa1, 0x18, 0x43, 0xf5, 0x00, 0x00, 0x00, 0x10},
1262 {0xa1, 0x18, 0x45, 0x80, 0x00, 0x00, 0x00, 0x10},
1263 {0xa1, 0x18, 0x46, 0x60, 0x00, 0x00, 0x00, 0x10},
1264 {0xa1, 0x18, 0x47, 0x50, 0x00, 0x00, 0x00, 0x10},
1265 {0xa1, 0x18, 0x48, 0x30, 0x00, 0x00, 0x00, 0x10},
1266 {0xa1, 0x18, 0x49, 0x01, 0x00, 0x00, 0x00, 0x10},
1267 {0xa1, 0x18, 0x4d, 0xae, 0x00, 0x00, 0x00, 0x10},
1268 {0xa1, 0x18, 0x4e, 0x03, 0x00, 0x00, 0x00, 0x10},
1269 {0xa1, 0x18, 0x4f, 0x66, 0x00, 0x00, 0x00, 0x10},
1270 {0xa1, 0x18, 0x50, 0x1c, 0x00, 0x00, 0x00, 0x10},
1271 {0xa1, 0x18, 0x44, 0x10, 0x00, 0x00, 0x00, 0x10},
1272 {0xa1, 0x18, 0x4a, 0x30, 0x00, 0x00, 0x00, 0x10},
1273 {0xa1, 0x18, 0x51, 0x80, 0x00, 0x00, 0x00, 0x10},
1274 {0xa1, 0x18, 0x52, 0x80, 0x00, 0x00, 0x00, 0x10},
1275 {0xa1, 0x18, 0x53, 0x80, 0x00, 0x00, 0x00, 0x10},
1276 {0xa1, 0x18, 0x54, 0x80, 0x00, 0x00, 0x00, 0x10},
1277 {0xa1, 0x18, 0x55, 0x80, 0x00, 0x00, 0x00, 0x10},
1278 {0xa1, 0x18, 0x56, 0x80, 0x00, 0x00, 0x00, 0x10},
1279 {0xa1, 0x18, 0x57, 0xe0, 0x00, 0x00, 0x00, 0x10},
1280 {0xa1, 0x18, 0x58, 0xc0, 0x00, 0x00, 0x00, 0x10},
1281 {0xa1, 0x18, 0x59, 0xab, 0x00, 0x00, 0x00, 0x10},
1282 {0xa1, 0x18, 0x5a, 0xa0, 0x00, 0x00, 0x00, 0x10},
1283 {0xa1, 0x18, 0x5b, 0x99, 0x00, 0x00, 0x00, 0x10},
1284 {0xa1, 0x18, 0x5c, 0x90, 0x00, 0x00, 0x00, 0x10},
1285 {0xa1, 0x18, 0x5e, 0x24, 0x00, 0x00, 0x00, 0x10},
1286 {0xa1, 0x18, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x10},
1287 {0xa1, 0x18, 0x60, 0x00, 0x00, 0x00, 0x00, 0x10},
1288 {0xa1, 0x18, 0x61, 0x73, 0x00, 0x00, 0x00, 0x10},
1289 {0xa1, 0x18, 0x63, 0x42, 0x00, 0x00, 0x00, 0x10},
1290 {0xa1, 0x18, 0x64, 0x42, 0x00, 0x00, 0x00, 0x10},
1291 {0xa1, 0x18, 0x65, 0x42, 0x00, 0x00, 0x00, 0x10},
1292 {0xa1, 0x18, 0x66, 0x24, 0x00, 0x00, 0x00, 0x10},
1293 {0xa1, 0x18, 0x67, 0x24, 0x00, 0x00, 0x00, 0x10},
1294 {0xa1, 0x18, 0x68, 0x08, 0x00, 0x00, 0x00, 0x10},
1295 {0xa1, 0x18, 0x2f, 0xc9, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001296 {}
1297};
1298static const u8 sp80708_sensor_param1[][8] = {
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03001299 {0xa1, 0x18, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x10},
1300 {0xa1, 0x18, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x10},
1301 {0xa1, 0x18, 0x03, 0x01, 0x00, 0x00, 0x00, 0x10},
1302 {0xa1, 0x18, 0x04, 0xa4, 0x00, 0x00, 0x00, 0x10},
1303 {0xa1, 0x18, 0x14, 0x3f, 0x00, 0x00, 0x00, 0x10},
1304 {0xa1, 0x18, 0x5d, 0x80, 0x00, 0x00, 0x00, 0x10},
1305 {0xb1, 0x18, 0x11, 0x40, 0x40, 0x00, 0x00, 0x10},
1306 {}
1307};
1308
Jean-François Moine9c33afc2010-03-17 15:25:32 -03001309static const u8 (*sensor_init[])[8] = {
1310[SENSOR_ADCM1700] = adcm1700_sensor_init,
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001311[SENSOR_GC0307] = gc0307_sensor_init,
Jean-François Moine9c33afc2010-03-17 15:25:32 -03001312[SENSOR_HV7131R] = hv7131r_sensor_init,
1313[SENSOR_MI0360] = mi0360_sensor_init,
1314[SENSOR_MO4000] = mo4000_sensor_init,
1315[SENSOR_MT9V111] = mt9v111_sensor_init,
1316[SENSOR_OM6802] = om6802_sensor_init,
1317[SENSOR_OV7630] = ov7630_sensor_init,
1318[SENSOR_OV7648] = ov7648_sensor_init,
1319[SENSOR_OV7660] = ov7660_sensor_init,
1320[SENSOR_PO1030] = po1030_sensor_init,
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001321[SENSOR_PO2030N] = po2030n_sensor_init,
Jean-François Moine03ed2a12010-04-25 14:45:43 -03001322[SENSOR_SOI768] = soi768_sensor_init,
Jean-François Moine9c33afc2010-03-17 15:25:32 -03001323[SENSOR_SP80708] = sp80708_sensor_init,
Jean-Francois Moine23a98272009-11-02 09:10:25 -03001324};
1325
Jean-Francois Moine8295d992008-09-03 17:12:19 -03001326/* read <len> bytes to gspca_dev->usb_buf */
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001327static void reg_r(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03001328 u16 value, int len)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001329{
Jean-Francois Moine8295d992008-09-03 17:12:19 -03001330#ifdef GSPCA_DEBUG
1331 if (len > USB_BUF_SZ) {
1332 err("reg_r: buffer overflow");
1333 return;
1334 }
1335#endif
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001336 usb_control_msg(gspca_dev->dev,
1337 usb_rcvctrlpipe(gspca_dev->dev, 0),
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001338 0,
1339 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1340 value, 0,
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001341 gspca_dev->usb_buf, len,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001342 500);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001343 PDEBUG(D_USBI, "reg_r [%02x] -> %02x", value, gspca_dev->usb_buf[0]);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001344}
1345
Jean-Francois Moine60017612008-07-18 08:46:19 -03001346static void reg_w1(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03001347 u16 value,
1348 u8 data)
Jean-Francois Moine60017612008-07-18 08:46:19 -03001349{
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001350 PDEBUG(D_USBO, "reg_w1 [%04x] = %02x", value, data);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001351 gspca_dev->usb_buf[0] = data;
1352 usb_control_msg(gspca_dev->dev,
1353 usb_sndctrlpipe(gspca_dev->dev, 0),
1354 0x08,
1355 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1356 value,
1357 0,
1358 gspca_dev->usb_buf, 1,
1359 500);
1360}
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001361static void reg_w(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03001362 u16 value,
1363 const u8 *buffer,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001364 int len)
1365{
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001366 PDEBUG(D_USBO, "reg_w [%04x] = %02x %02x ..",
Jean-Francois Moine60017612008-07-18 08:46:19 -03001367 value, buffer[0], buffer[1]);
Jean-Francois Moine8295d992008-09-03 17:12:19 -03001368#ifdef GSPCA_DEBUG
1369 if (len > USB_BUF_SZ) {
1370 err("reg_w: buffer overflow");
1371 return;
Jean-Francois Moinebf7f0b92008-07-03 11:09:12 -03001372 }
Jean-Francois Moine8295d992008-09-03 17:12:19 -03001373#endif
1374 memcpy(gspca_dev->usb_buf, buffer, len);
1375 usb_control_msg(gspca_dev->dev,
1376 usb_sndctrlpipe(gspca_dev->dev, 0),
1377 0x08,
1378 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1379 value, 0,
1380 gspca_dev->usb_buf, len,
1381 500);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001382}
1383
Jean-Francois Moine60017612008-07-18 08:46:19 -03001384/* I2C write 1 byte */
Jean-Francois Moine98819182009-01-19 07:37:33 -03001385static void i2c_w1(struct gspca_dev *gspca_dev, u8 reg, u8 val)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001386{
1387 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001388
Jean-François Moinecfd23c82010-04-25 14:27:39 -03001389 PDEBUG(D_USBO, "i2c_w1 [%02x] = %02x", reg, val);
Jean-Francois Moinea7826362009-11-02 09:21:06 -03001390 switch (sd->sensor) {
Jean-Francois Moine646775732009-12-20 12:31:28 -03001391 case SENSOR_ADCM1700:
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001392 case SENSOR_OM6802:
1393 case SENSOR_GC0307: /* i2c command = a0 (100 kHz) */
Jean-Francois Moinea7826362009-11-02 09:21:06 -03001394 gspca_dev->usb_buf[0] = 0x80 | (2 << 4);
1395 break;
1396 default: /* i2c command = a1 (400 kHz) */
1397 gspca_dev->usb_buf[0] = 0x81 | (2 << 4);
1398 break;
1399 }
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001400 gspca_dev->usb_buf[1] = sd->i2c_addr;
Jean-Francois Moine60017612008-07-18 08:46:19 -03001401 gspca_dev->usb_buf[2] = reg;
1402 gspca_dev->usb_buf[3] = val;
1403 gspca_dev->usb_buf[4] = 0;
1404 gspca_dev->usb_buf[5] = 0;
1405 gspca_dev->usb_buf[6] = 0;
1406 gspca_dev->usb_buf[7] = 0x10;
1407 usb_control_msg(gspca_dev->dev,
1408 usb_sndctrlpipe(gspca_dev->dev, 0),
1409 0x08,
1410 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1411 0x08, /* value = i2c */
1412 0,
1413 gspca_dev->usb_buf, 8,
1414 500);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001415}
1416
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001417/* I2C write 8 bytes */
1418static void i2c_w8(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03001419 const u8 *buffer)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001420{
Jean-François Moinecfd23c82010-04-25 14:27:39 -03001421 PDEBUG(D_USBO, "i2c_w8 [%02x] = %02x ..",
1422 buffer[2], buffer[3]);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001423 memcpy(gspca_dev->usb_buf, buffer, 8);
1424 usb_control_msg(gspca_dev->dev,
1425 usb_sndctrlpipe(gspca_dev->dev, 0),
1426 0x08,
1427 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1428 0x08, 0, /* value, index */
1429 gspca_dev->usb_buf, 8,
1430 500);
Jean-Francois Moine8d768e12008-09-21 03:28:55 -03001431 msleep(2);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001432}
1433
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001434/* sensor read 'len' (1..5) bytes in gspca_dev->usb_buf */
1435static void i2c_r(struct gspca_dev *gspca_dev, u8 reg, int len)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001436{
1437 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine98819182009-01-19 07:37:33 -03001438 u8 mode[8];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001439
Jean-Francois Moinea7826362009-11-02 09:21:06 -03001440 switch (sd->sensor) {
Jean-Francois Moine646775732009-12-20 12:31:28 -03001441 case SENSOR_ADCM1700:
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001442 case SENSOR_OM6802:
1443 case SENSOR_GC0307: /* i2c command = a0 (100 kHz) */
Jean-Francois Moinea7826362009-11-02 09:21:06 -03001444 mode[0] = 0x80 | 0x10;
1445 break;
1446 default: /* i2c command = 91 (400 kHz) */
1447 mode[0] = 0x81 | 0x10;
1448 break;
1449 }
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001450 mode[1] = sd->i2c_addr;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001451 mode[2] = reg;
1452 mode[3] = 0;
1453 mode[4] = 0;
1454 mode[5] = 0;
1455 mode[6] = 0;
1456 mode[7] = 0x10;
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001457 i2c_w8(gspca_dev, mode);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001458 msleep(2);
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001459 mode[0] = (mode[0] & 0x81) | (len << 4) | 0x02;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001460 mode[2] = 0;
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001461 i2c_w8(gspca_dev, mode);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001462 msleep(2);
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001463 reg_r(gspca_dev, 0x0a, 5);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001464}
1465
Jean-Francois Moine23a98272009-11-02 09:10:25 -03001466static void i2c_w_seq(struct gspca_dev *gspca_dev,
1467 const u8 (*data)[8])
1468{
1469 while ((*data)[0] != 0) {
1470 if ((*data)[0] != 0xdd)
1471 i2c_w8(gspca_dev, *data);
1472 else
1473 msleep((*data)[1]);
1474 data++;
1475 }
1476}
1477
Jean-Francois Moine7fb101a2009-10-22 06:27:14 -03001478static void hv7131r_probe(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001479{
Jean-Francois Moine60017612008-07-18 08:46:19 -03001480 i2c_w1(gspca_dev, 0x02, 0); /* sensor wakeup */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001481 msleep(10);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001482 reg_w1(gspca_dev, 0x02, 0x66); /* Gpio on */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001483 msleep(10);
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001484 i2c_r(gspca_dev, 0, 5); /* read sensor id */
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001485 if (gspca_dev->usb_buf[0] == 0x02
1486 && gspca_dev->usb_buf[1] == 0x09
1487 && gspca_dev->usb_buf[2] == 0x01
1488 && gspca_dev->usb_buf[3] == 0x00
1489 && gspca_dev->usb_buf[4] == 0x00) {
Jean-Francois Moine7fb101a2009-10-22 06:27:14 -03001490 PDEBUG(D_PROBE, "Sensor sn9c102P HV7131R found");
1491 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001492 }
Jean-Francois Moine7fb101a2009-10-22 06:27:14 -03001493 PDEBUG(D_PROBE, "Sensor 0x%02x 0x%02x 0x%02x - sn9c102P not found",
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001494 gspca_dev->usb_buf[0], gspca_dev->usb_buf[1],
1495 gspca_dev->usb_buf[2]);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001496}
1497
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001498static void mi0360_probe(struct gspca_dev *gspca_dev)
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001499{
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001500 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001501 int i, j;
Jean-Francois Moine92e8c912009-02-02 16:25:38 -03001502 u16 val = 0;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001503 static const u8 probe_tb[][4][8] = {
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001504 { /* mi0360 */
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001505 {0xb0, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10},
1506 {0x90, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
1507 {0xa2, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
1508 {0xb0, 0x5d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x10}
1509 },
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001510 { /* mt9v111 */
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001511 {0xb0, 0x5c, 0x01, 0x00, 0x04, 0x00, 0x00, 0x10},
1512 {0x90, 0x5c, 0x36, 0x00, 0x00, 0x00, 0x00, 0x10},
1513 {0xa2, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
1514 {}
1515 },
1516 };
1517
1518 for (i = 0; i < ARRAY_SIZE(probe_tb); i++) {
1519 reg_w1(gspca_dev, 0x17, 0x62);
1520 reg_w1(gspca_dev, 0x01, 0x08);
1521 for (j = 0; j < 3; j++)
1522 i2c_w8(gspca_dev, probe_tb[i][j]);
1523 msleep(2);
1524 reg_r(gspca_dev, 0x0a, 5);
1525 val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
1526 if (probe_tb[i][3][0] != 0)
1527 i2c_w8(gspca_dev, probe_tb[i][3]);
1528 reg_w1(gspca_dev, 0x01, 0x29);
1529 reg_w1(gspca_dev, 0x17, 0x42);
1530 if (val != 0xffff)
1531 break;
1532 }
1533 switch (val) {
1534 case 0x823a:
1535 PDEBUG(D_PROBE, "Sensor mt9v111");
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001536 sd->sensor = SENSOR_MT9V111;
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001537 break;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001538 case 0x8243:
1539 PDEBUG(D_PROBE, "Sensor mi0360");
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001540 break;
1541 default:
1542 PDEBUG(D_PROBE, "Unknown sensor %04x - forced to mi0360", val);
1543 break;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001544 }
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001545}
1546
Jean-François Moine03ed2a12010-04-25 14:45:43 -03001547static void ov7630_probe(struct gspca_dev *gspca_dev)
1548{
1549 struct sd *sd = (struct sd *) gspca_dev;
1550 u16 val;
1551
1552 /* check ov76xx */
1553 reg_w1(gspca_dev, 0x17, 0x62);
1554 reg_w1(gspca_dev, 0x01, 0x08);
1555 sd->i2c_addr = 0x21;
1556 i2c_r(gspca_dev, 0x0a, 2);
1557 val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
1558 reg_w1(gspca_dev, 0x01, 0x29);
1559 reg_w1(gspca_dev, 0x17, 0x42);
1560 if (val == 0x7628) { /* soi768 */
1561 sd->sensor = SENSOR_SOI768;
1562/*fixme: only valid for 0c45:613e?*/
1563 gspca_dev->cam.input_flags =
1564 V4L2_IN_ST_VFLIP | V4L2_IN_ST_HFLIP;
1565 PDEBUG(D_PROBE, "Sensor soi768");
1566 return;
1567 }
1568 PDEBUG(D_PROBE, "Sensor ov%04x", val);
1569}
1570
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001571static void ov7648_probe(struct gspca_dev *gspca_dev)
1572{
1573 struct sd *sd = (struct sd *) gspca_dev;
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001574 u16 val;
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001575
1576 /* check ov76xx */
1577 reg_w1(gspca_dev, 0x17, 0x62);
1578 reg_w1(gspca_dev, 0x01, 0x08);
1579 sd->i2c_addr = 0x21;
1580 i2c_r(gspca_dev, 0x0a, 2);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001581 val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001582 reg_w1(gspca_dev, 0x01, 0x29);
1583 reg_w1(gspca_dev, 0x17, 0x42);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001584 if ((val & 0xff00) == 0x7600) { /* ov76xx */
1585 PDEBUG(D_PROBE, "Sensor ov%04x", val);
1586 return;
1587 }
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001588
1589 /* check po1030 */
1590 reg_w1(gspca_dev, 0x17, 0x62);
1591 reg_w1(gspca_dev, 0x01, 0x08);
1592 sd->i2c_addr = 0x6e;
1593 i2c_r(gspca_dev, 0x00, 2);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001594 val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
1595 reg_w1(gspca_dev, 0x01, 0x29);
1596 reg_w1(gspca_dev, 0x17, 0x42);
1597 if (val == 0x1030) { /* po1030 */
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001598 PDEBUG(D_PROBE, "Sensor po1030");
1599 sd->sensor = SENSOR_PO1030;
1600 return;
1601 }
1602
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001603 PDEBUG(D_PROBE, "Unknown sensor %04x", val);
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001604}
1605
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001606/* 0c45:6142 sensor may be po2030n, gc0305 or gc0307 */
1607static void po2030n_probe(struct gspca_dev *gspca_dev)
1608{
1609 struct sd *sd = (struct sd *) gspca_dev;
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001610 u16 val;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001611
1612 /* check gc0307 */
1613 reg_w1(gspca_dev, 0x17, 0x62);
1614 reg_w1(gspca_dev, 0x01, 0x08);
1615 reg_w1(gspca_dev, 0x02, 0x22);
1616 sd->i2c_addr = 0x21;
1617 i2c_r(gspca_dev, 0x00, 1);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001618 val = gspca_dev->usb_buf[4];
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001619 reg_w1(gspca_dev, 0x01, 0x29); /* reset */
1620 reg_w1(gspca_dev, 0x17, 0x42);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001621 if (val == 0x99) { /* gc0307 (?) */
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001622 PDEBUG(D_PROBE, "Sensor gc0307");
1623 sd->sensor = SENSOR_GC0307;
1624 return;
1625 }
1626
1627 /* check po2030n */
1628 reg_w1(gspca_dev, 0x17, 0x62);
1629 reg_w1(gspca_dev, 0x01, 0x0a);
1630 sd->i2c_addr = 0x6e;
1631 i2c_r(gspca_dev, 0x00, 2);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001632 val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001633 reg_w1(gspca_dev, 0x01, 0x29);
1634 reg_w1(gspca_dev, 0x17, 0x42);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001635 if (val == 0x2030) {
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001636 PDEBUG(D_PROBE, "Sensor po2030n");
1637/* sd->sensor = SENSOR_PO2030N; */
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001638 } else {
1639 PDEBUG(D_PROBE, "Unknown sensor ID %04x", val);
1640 }
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001641}
1642
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001643static void bridge_init(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03001644 const u8 *sn9c1xx)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001645{
1646 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine98819182009-01-19 07:37:33 -03001647 const u8 *reg9a;
1648 static const u8 reg9a_def[] =
Jean-Francois Moinec8b9b2c2009-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-Francois Moine739570b2008-07-14 09:38:29 -03001659 reg_w(gspca_dev, 0x01, &sn9c1xx[1], 2);
1660 reg_w(gspca_dev, 0x08, &sn9c1xx[8], 2);
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001661 reg_w(gspca_dev, 0x17, &sn9c1xx[0x17], 5);
Jean-Francois Moinec8b9b2c2009-04-26 14:46:12 -03001662 switch (sd->sensor) {
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001663 case SENSOR_GC0307:
Jean-Francois Moinec8b9b2c2009-04-26 14:46:12 -03001664 case SENSOR_OV7660:
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001665 case SENSOR_PO1030:
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001666 case SENSOR_PO2030N:
Jean-François Moine03ed2a12010-04-25 14:45:43 -03001667 case SENSOR_SOI768:
Jean-Francois Moinec8b9b2c2009-04-26 14:46:12 -03001668 case SENSOR_SP80708:
1669 reg9a = reg9a_spec;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001670 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001671 default:
1672 reg9a = reg9a_def;
1673 break;
1674 }
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001675 reg_w(gspca_dev, 0x9a, reg9a, 6);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001676
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001677 reg_w(gspca_dev, 0xd4, regd4, sizeof regd4);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001678
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001679 reg_w(gspca_dev, 0x03, &sn9c1xx[3], 0x0f);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001680
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001681 switch (sd->sensor) {
Jean-Francois Moine646775732009-12-20 12:31:28 -03001682 case SENSOR_ADCM1700:
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03001683 reg_w1(gspca_dev, 0x01, 0x43);
Jean-Francois Moine646775732009-12-20 12:31:28 -03001684 reg_w1(gspca_dev, 0x17, 0x62);
1685 reg_w1(gspca_dev, 0x01, 0x42);
1686 reg_w1(gspca_dev, 0x01, 0x42);
1687 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001688 case SENSOR_GC0307:
1689 msleep(50);
1690 reg_w1(gspca_dev, 0x01, 0x61);
1691 reg_w1(gspca_dev, 0x17, 0x22);
1692 reg_w1(gspca_dev, 0x01, 0x60);
1693 reg_w1(gspca_dev, 0x01, 0x40);
1694 msleep(50);
1695 break;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001696 case SENSOR_MT9V111:
1697 reg_w1(gspca_dev, 0x01, 0x61);
1698 reg_w1(gspca_dev, 0x17, 0x61);
1699 reg_w1(gspca_dev, 0x01, 0x60);
1700 reg_w1(gspca_dev, 0x01, 0x40);
1701 break;
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001702 case SENSOR_OM6802:
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001703 msleep(10);
1704 reg_w1(gspca_dev, 0x02, 0x73);
1705 reg_w1(gspca_dev, 0x17, 0x60);
1706 reg_w1(gspca_dev, 0x01, 0x22);
1707 msleep(100);
1708 reg_w1(gspca_dev, 0x01, 0x62);
1709 reg_w1(gspca_dev, 0x17, 0x64);
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001710 reg_w1(gspca_dev, 0x17, 0x64);
1711 reg_w1(gspca_dev, 0x01, 0x42);
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001712 msleep(10);
1713 reg_w1(gspca_dev, 0x01, 0x42);
1714 i2c_w8(gspca_dev, om6802_init0[0]);
1715 i2c_w8(gspca_dev, om6802_init0[1]);
1716 msleep(15);
1717 reg_w1(gspca_dev, 0x02, 0x71);
1718 msleep(150);
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001719 break;
Jean-Francois Moine05b809c2008-09-03 16:47:59 -03001720 case SENSOR_OV7630:
1721 reg_w1(gspca_dev, 0x01, 0x61);
1722 reg_w1(gspca_dev, 0x17, 0xe2);
1723 reg_w1(gspca_dev, 0x01, 0x60);
1724 reg_w1(gspca_dev, 0x01, 0x40);
1725 break;
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001726 case SENSOR_OV7648:
Jean-Francois Moine62703302008-11-11 08:42:56 -03001727 reg_w1(gspca_dev, 0x01, 0x63);
1728 reg_w1(gspca_dev, 0x17, 0x20);
Jean-Francois Moinec8b9b2c2009-04-26 14:46:12 -03001729 reg_w1(gspca_dev, 0x01, 0x62);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001730 reg_w1(gspca_dev, 0x01, 0x42);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001731 break;
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001732 case SENSOR_PO1030:
Jean-François Moine03ed2a12010-04-25 14:45:43 -03001733 case SENSOR_SOI768:
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001734 reg_w1(gspca_dev, 0x01, 0x61);
1735 reg_w1(gspca_dev, 0x17, 0x20);
1736 reg_w1(gspca_dev, 0x01, 0x60);
1737 reg_w1(gspca_dev, 0x01, 0x40);
1738 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001739 case SENSOR_PO2030N:
1740 reg_w1(gspca_dev, 0x01, 0x63);
1741 reg_w1(gspca_dev, 0x17, 0x20);
1742 reg_w1(gspca_dev, 0x01, 0x62);
1743 reg_w1(gspca_dev, 0x01, 0x42);
1744 break;
Jean-Francois Moine91de65a2008-09-03 17:12:18 -03001745 case SENSOR_OV7660:
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001746 /* fall thru */
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03001747 case SENSOR_SP80708:
1748 reg_w1(gspca_dev, 0x01, 0x63);
1749 reg_w1(gspca_dev, 0x17, 0x20);
1750 reg_w1(gspca_dev, 0x01, 0x62);
1751 reg_w1(gspca_dev, 0x01, 0x42);
Jean-Francois Moine1f78a972009-08-29 07:11:58 -03001752 msleep(100);
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03001753 reg_w1(gspca_dev, 0x02, 0x62);
1754 break;
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001755 default:
Jean-Francois Moinec8b9b2c2009-04-26 14:46:12 -03001756/* case SENSOR_HV7131R: */
1757/* case SENSOR_MI0360: */
1758/* case SENSOR_MO4000: */
Jean-Francois Moine60017612008-07-18 08:46:19 -03001759 reg_w1(gspca_dev, 0x01, 0x43);
1760 reg_w1(gspca_dev, 0x17, 0x61);
1761 reg_w1(gspca_dev, 0x01, 0x42);
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001762 if (sd->sensor == SENSOR_HV7131R
1763 && sd->bridge == BRIDGE_SN9C102P)
Jean-Francois Moine7fb101a2009-10-22 06:27:14 -03001764 hv7131r_probe(gspca_dev);
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001765 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001766 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001767}
1768
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001769/* this function is called at probe time */
1770static int sd_config(struct gspca_dev *gspca_dev,
1771 const struct usb_device_id *id)
1772{
1773 struct sd *sd = (struct sd *) gspca_dev;
1774 struct cam *cam;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001775
Jean-Francois Moineeac8f5f2010-01-12 07:12:43 -03001776 sd->bridge = id->driver_info >> 16;
1777 sd->sensor = id->driver_info;
1778
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001779 cam = &gspca_dev->cam;
Jean-Francois Moine646775732009-12-20 12:31:28 -03001780 if (sd->sensor == SENSOR_ADCM1700) {
1781 cam->cam_mode = cif_mode;
1782 cam->nmodes = ARRAY_SIZE(cif_mode);
1783 } else {
1784 cam->cam_mode = vga_mode;
1785 cam->nmodes = ARRAY_SIZE(vga_mode);
1786 }
Jean-Francois Moine49cb6b02009-04-25 13:29:01 -03001787 cam->npkt = 24; /* 24 packets per ISOC message */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03001788
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03001789 sd->brightness = BRIGHTNESS_DEF;
1790 sd->contrast = CONTRAST_DEF;
1791 sd->colors = COLOR_DEF;
Jean-Francois Moine403123d2008-11-26 04:46:15 -03001792 sd->blue = BLUE_BALANCE_DEF;
1793 sd->red = RED_BALANCE_DEF;
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03001794 sd->gamma = GAMMA_DEF;
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03001795 sd->autogain = AUTOGAIN_DEF;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03001796 sd->ag_cnt = -1;
Hans de Goedef8009522009-06-18 14:29:20 -03001797 sd->vflip = VFLIP_DEF;
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03001798 switch (sd->sensor) {
1799 case SENSOR_OM6802:
1800 sd->sharpness = 0x10;
1801 break;
1802 default:
1803 sd->sharpness = SHARPNESS_DEF;
1804 break;
1805 }
Jean-Francois Moine0cae8962008-10-17 07:48:24 -03001806 sd->infrared = INFRARED_DEF;
Hans de Goede37c6dbe2009-06-18 07:35:36 -03001807 sd->freq = FREQ_DEF;
Jean-Francois Moine77ac0ba2009-03-02 06:40:52 -03001808 sd->quality = QUALITY_DEF;
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03001809 sd->jpegqual = 80;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03001810
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001811 return 0;
1812}
1813
Jean-Francois Moine012d6b02008-09-03 17:12:16 -03001814/* this function is called at probe and resume time */
1815static int sd_init(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001816{
1817 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001818 const u8 *sn9c1xx;
Jean-Francois Moine98819182009-01-19 07:37:33 -03001819 u8 regGpio[] = { 0x29, 0x74 };
1820 u8 regF1;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001821
Hans de Goede3647fea2008-07-15 05:36:30 -03001822 /* setup a selector by bridge */
Jean-Francois Moine60017612008-07-18 08:46:19 -03001823 reg_w1(gspca_dev, 0xf1, 0x01);
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001824 reg_r(gspca_dev, 0x00, 1);
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -03001825 reg_w1(gspca_dev, 0xf1, gspca_dev->usb_buf[0]);
1826 reg_r(gspca_dev, 0x00, 1); /* get sonix chip id */
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001827 regF1 = gspca_dev->usb_buf[0];
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -03001828 PDEBUG(D_PROBE, "Sonix chip id: %02x", regF1);
Hans de Goede3647fea2008-07-15 05:36:30 -03001829 switch (sd->bridge) {
1830 case BRIDGE_SN9C102P:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001831 if (regF1 != 0x11)
1832 return -ENODEV;
Jean-Francois Moine60017612008-07-18 08:46:19 -03001833 reg_w1(gspca_dev, 0x02, regGpio[1]);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001834 break;
Hans de Goede3647fea2008-07-15 05:36:30 -03001835 case BRIDGE_SN9C105:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001836 if (regF1 != 0x11)
1837 return -ENODEV;
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001838 if (sd->sensor == SENSOR_MI0360)
1839 mi0360_probe(gspca_dev);
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03001840 reg_w(gspca_dev, 0x01, regGpio, 2);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001841 break;
Hans de Goede3647fea2008-07-15 05:36:30 -03001842 case BRIDGE_SN9C120:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001843 if (regF1 != 0x12)
1844 return -ENODEV;
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001845 switch (sd->sensor) {
1846 case SENSOR_MI0360:
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001847 mi0360_probe(gspca_dev);
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001848 break;
Jean-François Moine03ed2a12010-04-25 14:45:43 -03001849 case SENSOR_OV7630:
1850 ov7630_probe(gspca_dev);
1851 break;
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001852 case SENSOR_OV7648:
1853 ov7648_probe(gspca_dev);
1854 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001855 case SENSOR_PO2030N:
1856 po2030n_probe(gspca_dev);
1857 break;
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001858 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001859 regGpio[1] = 0x70;
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03001860 reg_w(gspca_dev, 0x01, regGpio, 2);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001861 break;
1862 default:
Jean-Francois Moine60017612008-07-18 08:46:19 -03001863/* case BRIDGE_SN9C110: */
Hans de Goede3647fea2008-07-15 05:36:30 -03001864/* case BRIDGE_SN9C325: */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001865 if (regF1 != 0x12)
1866 return -ENODEV;
Jean-Francois Moine60017612008-07-18 08:46:19 -03001867 reg_w1(gspca_dev, 0x02, 0x62);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001868 break;
1869 }
1870
Hans de Goede9712a8b2010-01-31 12:54:29 -03001871 /* Note we do not disable the sensor clock here (power saving mode),
1872 as that also disables the button on the cam. */
1873 reg_w1(gspca_dev, 0xf1, 0x00);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001874
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001875 /* set the i2c address */
1876 sn9c1xx = sn_tb[sd->sensor];
1877 sd->i2c_addr = sn9c1xx[9];
1878
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001879 gspca_dev->ctrl_dis = ctrl_dis[sd->sensor];
1880
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001881 return 0;
1882}
1883
Jean-Francois Moine98819182009-01-19 07:37:33 -03001884static u32 setexposure(struct gspca_dev *gspca_dev,
1885 u32 expo)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001886{
1887 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001888
1889 switch (sd->sensor) {
Jean-François Moinec26b12d2010-04-02 07:08:39 -03001890 case SENSOR_GC0307: {
1891 int a, b;
1892
1893 /* expo = 0..255 -> a = 19..43 */
1894 a = 19 + expo * 25 / 256;
1895 i2c_w1(gspca_dev, 0x68, a);
1896 a -= 12;
1897 b = a * a * 4; /* heuristic */
1898 i2c_w1(gspca_dev, 0x03, b >> 8);
1899 i2c_w1(gspca_dev, 0x04, b);
1900 break;
1901 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001902 case SENSOR_HV7131R: {
Jean-Francois Moine98819182009-01-19 07:37:33 -03001903 u8 Expodoit[] =
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001904 { 0xc1, 0x11, 0x25, 0x00, 0x00, 0x00, 0x00, 0x16 };
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001905
1906 Expodoit[3] = expo >> 16;
1907 Expodoit[4] = expo >> 8;
1908 Expodoit[5] = expo;
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001909 i2c_w8(gspca_dev, Expodoit);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001910 break;
1911 }
1912 case SENSOR_MI0360: {
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001913 u8 expoMi[] = /* exposure 0x0635 -> 4 fp/s 0x10 */
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001914 { 0xb1, 0x5d, 0x09, 0x00, 0x00, 0x00, 0x00, 0x16 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03001915 static const u8 doit[] = /* update sensor */
1916 { 0xb1, 0x5d, 0x07, 0x00, 0x03, 0x00, 0x00, 0x10 };
1917 static const u8 sensorgo[] = /* sensor on */
1918 { 0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10 };
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001919
1920 if (expo > 0x0635)
1921 expo = 0x0635;
1922 else if (expo < 0x0001)
1923 expo = 0x0001;
1924 expoMi[3] = expo >> 8;
1925 expoMi[4] = expo;
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001926 i2c_w8(gspca_dev, expoMi);
1927 i2c_w8(gspca_dev, doit);
1928 i2c_w8(gspca_dev, sensorgo);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001929 break;
1930 }
1931 case SENSOR_MO4000: {
Jean-Francois Moine98819182009-01-19 07:37:33 -03001932 u8 expoMof[] =
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001933 { 0xa1, 0x21, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03001934 u8 expoMo10[] =
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001935 { 0xa1, 0x21, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03001936 static const u8 gainMo[] =
1937 { 0xa1, 0x21, 0x00, 0x10, 0x00, 0x00, 0x00, 0x1d };
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001938
1939 if (expo > 0x1fff)
1940 expo = 0x1fff;
1941 else if (expo < 0x0001)
1942 expo = 0x0001;
1943 expoMof[3] = (expo & 0x03fc) >> 2;
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001944 i2c_w8(gspca_dev, expoMof);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001945 expoMo10[3] = ((expo & 0x1c00) >> 10)
1946 | ((expo & 0x0003) << 4);
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001947 i2c_w8(gspca_dev, expoMo10);
1948 i2c_w8(gspca_dev, gainMo);
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001949 PDEBUG(D_FRAM, "set exposure %d",
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001950 ((expoMo10[3] & 0x07) << 10)
1951 | (expoMof[3] << 2)
1952 | ((expoMo10[3] & 0x30) >> 4));
1953 break;
1954 }
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001955 case SENSOR_MT9V111: {
1956 u8 expo_c1[] =
1957 { 0xb1, 0x5c, 0x09, 0x00, 0x00, 0x00, 0x00, 0x10 };
1958
1959 if (expo > 0x0280)
1960 expo = 0x0280;
1961 else if (expo < 0x0040)
1962 expo = 0x0040;
1963 expo_c1[3] = expo >> 8;
1964 expo_c1[4] = expo;
1965 i2c_w8(gspca_dev, expo_c1);
1966 break;
1967 }
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001968 case SENSOR_OM6802: {
Jean-Francois Moine98819182009-01-19 07:37:33 -03001969 u8 gainOm[] =
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001970 { 0xa0, 0x34, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001971 /* preset AGC - works when AutoExpo = off */
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001972
1973 if (expo > 0x03ff)
1974 expo = 0x03ff;
1975 if (expo < 0x0001)
1976 expo = 0x0001;
1977 gainOm[3] = expo >> 2;
1978 i2c_w8(gspca_dev, gainOm);
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001979 reg_w1(gspca_dev, 0x96, expo >> 5);
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001980 PDEBUG(D_FRAM, "set exposure %d", gainOm[3]);
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001981 break;
1982 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001983 }
1984 return expo;
1985}
1986
1987static void setbrightness(struct gspca_dev *gspca_dev)
1988{
1989 struct sd *sd = (struct sd *) gspca_dev;
1990 unsigned int expo;
Jean-Francois Moine98819182009-01-19 07:37:33 -03001991 u8 k2;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001992
Jean-Francois Moineb1b056a2008-11-25 04:47:09 -03001993 k2 = ((int) sd->brightness - 0x8000) >> 10;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001994 switch (sd->sensor) {
Jean-Francois Moine646775732009-12-20 12:31:28 -03001995 case SENSOR_ADCM1700:
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03001996 if (k2 > 0x1f)
1997 k2 = 0; /* only positive Y offset */
1998 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001999 case SENSOR_HV7131R:
2000 expo = sd->brightness << 4;
2001 if (expo > 0x002dc6c0)
2002 expo = 0x002dc6c0;
2003 else if (expo < 0x02a0)
2004 expo = 0x02a0;
2005 sd->exposure = setexposure(gspca_dev, expo);
2006 break;
2007 case SENSOR_MI0360:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002008 case SENSOR_MO4000:
2009 expo = sd->brightness >> 4;
2010 sd->exposure = setexposure(gspca_dev, expo);
2011 break;
Jean-François Moinec26b12d2010-04-02 07:08:39 -03002012 case SENSOR_GC0307:
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03002013 case SENSOR_MT9V111:
2014 expo = sd->brightness >> 8;
2015 sd->exposure = setexposure(gspca_dev, expo);
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002016 return; /* don't set the Y offset */
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03002017 case SENSOR_OM6802:
2018 expo = sd->brightness >> 6;
2019 sd->exposure = setexposure(gspca_dev, expo);
Jean-Francois Moineb1b056a2008-11-25 04:47:09 -03002020 k2 = sd->brightness >> 11;
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03002021 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002022 }
2023
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002024 reg_w1(gspca_dev, 0x96, k2); /* color matrix Y offset */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002025}
2026
2027static void setcontrast(struct gspca_dev *gspca_dev)
2028{
2029 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine98819182009-01-19 07:37:33 -03002030 u8 k2;
2031 u8 contrast[6];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002032
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03002033 k2 = sd->contrast * 0x30 / (CONTRAST_MAX + 1) + 0x10; /* 10..40 */
2034 contrast[0] = (k2 + 1) / 2; /* red */
Jean-Francois Moine577cbf42008-12-05 06:18:37 -03002035 contrast[1] = 0;
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03002036 contrast[2] = k2; /* green */
Jean-Francois Moine577cbf42008-12-05 06:18:37 -03002037 contrast[3] = 0;
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03002038 contrast[4] = (k2 + 1) / 5; /* blue */
Jean-Francois Moine577cbf42008-12-05 06:18:37 -03002039 contrast[5] = 0;
2040 reg_w(gspca_dev, 0x84, contrast, sizeof contrast);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002041}
2042
2043static void setcolors(struct gspca_dev *gspca_dev)
2044{
2045 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine403123d2008-11-26 04:46:15 -03002046 int i, v;
Jean-Francois Moine98819182009-01-19 07:37:33 -03002047 u8 reg8a[12]; /* U & V gains */
Jean-François Moine9c33afc2010-03-17 15:25:32 -03002048 static const s16 uv[6] = { /* same as reg84 in signed decimal */
Jean-Francois Moine403123d2008-11-26 04:46:15 -03002049 -24, -38, 64, /* UR UG UB */
2050 62, -51, -9 /* VR VG VB */
2051 };
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002052
Jean-Francois Moine403123d2008-11-26 04:46:15 -03002053 for (i = 0; i < 6; i++) {
2054 v = uv[i] * sd->colors / COLOR_DEF;
Jean-Francois Moinebd088832008-12-02 06:58:57 -03002055 reg8a[i * 2] = v;
2056 reg8a[i * 2 + 1] = (v >> 8) & 0x0f;
Jean-Francois Moined55b83d2008-09-03 16:48:01 -03002057 }
Jean-Francois Moinebd088832008-12-02 06:58:57 -03002058 reg_w(gspca_dev, 0x8a, reg8a, sizeof reg8a);
Jean-Francois Moine403123d2008-11-26 04:46:15 -03002059}
2060
2061static void setredblue(struct gspca_dev *gspca_dev)
2062{
2063 struct sd *sd = (struct sd *) gspca_dev;
2064
2065 reg_w1(gspca_dev, 0x05, sd->red);
Jean-Francois Moine9c5f70f2008-09-03 16:48:04 -03002066/* reg_w1(gspca_dev, 0x07, 32); */
Jean-Francois Moine403123d2008-11-26 04:46:15 -03002067 reg_w1(gspca_dev, 0x06, sd->blue);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002068}
2069
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03002070static void setgamma(struct gspca_dev *gspca_dev)
2071{
2072 struct sd *sd = (struct sd *) gspca_dev;
2073 int i;
2074 u8 gamma[17];
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002075 const u8 *gamma_base;
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03002076 static const u8 delta[17] = {
2077 0x00, 0x14, 0x1c, 0x1c, 0x1c, 0x1c, 0x1b, 0x1a,
2078 0x18, 0x13, 0x10, 0x0e, 0x08, 0x07, 0x04, 0x02, 0x00
2079 };
2080
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002081 switch (sd->sensor) {
Jean-Francois Moine646775732009-12-20 12:31:28 -03002082 case SENSOR_ADCM1700:
2083 gamma_base = gamma_spec_0;
2084 break;
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002085 case SENSOR_HV7131R:
2086 case SENSOR_MT9V111:
2087 gamma_base = gamma_spec_1;
2088 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002089 case SENSOR_GC0307:
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002090 gamma_base = gamma_spec_2;
2091 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002092 case SENSOR_SP80708:
2093 gamma_base = gamma_spec_3;
2094 break;
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002095 default:
2096 gamma_base = gamma_def;
2097 break;
2098 }
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002099
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03002100 for (i = 0; i < sizeof gamma; i++)
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002101 gamma[i] = gamma_base[i]
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03002102 + delta[i] * (sd->gamma - GAMMA_DEF) / 32;
2103 reg_w(gspca_dev, 0x20, gamma, sizeof gamma);
2104}
2105
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002106static void setautogain(struct gspca_dev *gspca_dev)
2107{
2108 struct sd *sd = (struct sd *) gspca_dev;
2109
Jean-Francois Moinef50ba1b2008-09-03 17:12:14 -03002110 if (gspca_dev->ctrl_dis & (1 << AUTOGAIN_IDX))
2111 return;
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03002112 switch (sd->sensor) {
2113 case SENSOR_OV7630:
2114 case SENSOR_OV7648: {
2115 u8 comb;
2116
2117 if (sd->sensor == SENSOR_OV7630)
2118 comb = 0xc0;
2119 else
2120 comb = 0xa0;
2121 if (sd->autogain)
Hans de Goede1fec747c2009-06-18 06:05:07 -03002122 comb |= 0x03;
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03002123 i2c_w1(&sd->gspca_dev, 0x13, comb);
2124 return;
2125 }
2126 }
Jean-Francois Moinef50ba1b2008-09-03 17:12:14 -03002127 if (sd->autogain)
2128 sd->ag_cnt = AG_CNT_START;
2129 else
2130 sd->ag_cnt = -1;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002131}
2132
Jean-François Moinef6b22e52010-02-18 04:12:06 -03002133/* hv7131r/ov7630/ov7648 only */
Jean-Francois Moine6c862742008-09-08 04:57:26 -03002134static void setvflip(struct sd *sd)
2135{
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03002136 u8 comn;
2137
Jean-Francois Moine0939e262009-11-02 09:58:49 -03002138 if (sd->gspca_dev.ctrl_dis & (1 << VFLIP_IDX))
2139 return;
Jean-François Moinef6b22e52010-02-18 04:12:06 -03002140 switch (sd->sensor) {
2141 case SENSOR_HV7131R:
2142 comn = 0x18; /* clkdiv = 1, ablcen = 1 */
2143 if (sd->vflip)
2144 comn |= 0x01;
2145 i2c_w1(&sd->gspca_dev, 0x01, comn); /* sctra */
2146 break;
2147 case SENSOR_OV7630:
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03002148 comn = 0x02;
Hans de Goedef8009522009-06-18 14:29:20 -03002149 if (!sd->vflip)
2150 comn |= 0x80;
Jean-François Moinef6b22e52010-02-18 04:12:06 -03002151 i2c_w1(&sd->gspca_dev, 0x75, comn);
2152 break;
2153 default:
2154/* case SENSOR_OV7648: */
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03002155 comn = 0x06;
Hans de Goedef8009522009-06-18 14:29:20 -03002156 if (sd->vflip)
2157 comn |= 0x80;
Jean-François Moinef6b22e52010-02-18 04:12:06 -03002158 i2c_w1(&sd->gspca_dev, 0x75, comn);
2159 break;
Hans de Goedef8009522009-06-18 14:29:20 -03002160 }
Jean-Francois Moine6c862742008-09-08 04:57:26 -03002161}
2162
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002163static void setsharpness(struct sd *sd)
2164{
2165 reg_w1(&sd->gspca_dev, 0x99, sd->sharpness);
2166}
2167
Jean-Francois Moine0cae8962008-10-17 07:48:24 -03002168static void setinfrared(struct sd *sd)
2169{
Jean-Francois Moine47f7f6f2009-08-25 06:14:54 -03002170 if (sd->gspca_dev.ctrl_dis & (1 << INFRARED_IDX))
2171 return;
Jean-Francois Moine0cae8962008-10-17 07:48:24 -03002172/*fixme: different sequence for StarCam Clip and StarCam 370i */
2173/* Clip */
2174 i2c_w1(&sd->gspca_dev, 0x02, /* gpio */
2175 sd->infrared ? 0x66 : 0x64);
2176}
2177
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002178static void setfreq(struct gspca_dev *gspca_dev)
2179{
2180 struct sd *sd = (struct sd *) gspca_dev;
2181
Jean-Francois Moine27954932009-07-08 05:21:50 -03002182 if (gspca_dev->ctrl_dis & (1 << FREQ_IDX))
2183 return;
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002184 if (sd->sensor == SENSOR_OV7660) {
Jean-Francois Moined8f400e2009-07-08 06:33:44 -03002185 u8 com8;
2186
Jean-Francois Moine47f7f6f2009-08-25 06:14:54 -03002187 com8 = 0xdf; /* auto gain/wb/expo */
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002188 switch (sd->freq) {
2189 case 0: /* Banding filter disabled */
Jean-Francois Moine47f7f6f2009-08-25 06:14:54 -03002190 i2c_w1(gspca_dev, 0x13, com8 | 0x20);
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002191 break;
2192 case 1: /* 50 hz */
Jean-Francois Moined8f400e2009-07-08 06:33:44 -03002193 i2c_w1(gspca_dev, 0x13, com8);
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002194 i2c_w1(gspca_dev, 0x3b, 0x0a);
2195 break;
2196 case 2: /* 60 hz */
Jean-Francois Moined8f400e2009-07-08 06:33:44 -03002197 i2c_w1(gspca_dev, 0x13, com8);
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002198 i2c_w1(gspca_dev, 0x3b, 0x02);
2199 break;
2200 }
2201 } else {
2202 u8 reg2a = 0, reg2b = 0, reg2d = 0;
2203
2204 /* Get reg2a / reg2d base values */
2205 switch (sd->sensor) {
2206 case SENSOR_OV7630:
2207 reg2a = 0x08;
2208 reg2d = 0x01;
2209 break;
2210 case SENSOR_OV7648:
2211 reg2a = 0x11;
2212 reg2d = 0x81;
2213 break;
2214 }
2215
2216 switch (sd->freq) {
2217 case 0: /* Banding filter disabled */
2218 break;
2219 case 1: /* 50 hz (filter on and framerate adj) */
2220 reg2a |= 0x80;
2221 reg2b = 0xac;
2222 reg2d |= 0x04;
2223 break;
2224 case 2: /* 60 hz (filter on, no framerate adj) */
2225 reg2a |= 0x80;
2226 reg2d |= 0x04;
2227 break;
2228 }
2229 i2c_w1(gspca_dev, 0x2a, reg2a);
2230 i2c_w1(gspca_dev, 0x2b, reg2b);
2231 i2c_w1(gspca_dev, 0x2d, reg2d);
2232 }
2233}
2234
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002235static void setjpegqual(struct gspca_dev *gspca_dev)
2236{
2237 struct sd *sd = (struct sd *) gspca_dev;
2238 int i, sc;
2239
2240 if (sd->jpegqual < 50)
2241 sc = 5000 / sd->jpegqual;
2242 else
2243 sc = 200 - sd->jpegqual * 2;
2244#if USB_BUF_SZ < 64
2245#error "No room enough in usb_buf for quantization table"
2246#endif
2247 for (i = 0; i < 64; i++)
2248 gspca_dev->usb_buf[i] =
2249 (jpeg_head[JPEG_QT0_OFFSET + i] * sc + 50) / 100;
2250 usb_control_msg(gspca_dev->dev,
2251 usb_sndctrlpipe(gspca_dev->dev, 0),
2252 0x08,
2253 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
2254 0x0100, 0,
2255 gspca_dev->usb_buf, 64,
2256 500);
2257 for (i = 0; i < 64; i++)
2258 gspca_dev->usb_buf[i] =
2259 (jpeg_head[JPEG_QT1_OFFSET + i] * sc + 50) / 100;
2260 usb_control_msg(gspca_dev->dev,
2261 usb_sndctrlpipe(gspca_dev->dev, 0),
2262 0x08,
2263 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
2264 0x0140, 0,
2265 gspca_dev->usb_buf, 64,
2266 500);
2267
2268 sd->reg18 ^= 0x40;
2269 reg_w1(gspca_dev, 0x18, sd->reg18);
2270}
2271
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002272/* -- start the camera -- */
Jean-Francois Moine72ab97c2008-09-20 06:39:08 -03002273static int sd_start(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002274{
2275 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002276 int i;
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002277 u8 reg1, reg2, reg17;
Jean-Francois Moine98819182009-01-19 07:37:33 -03002278 const u8 *sn9c1xx;
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002279 const u8 (*init)[8];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002280 int mode;
Jean-Francois Moine98819182009-01-19 07:37:33 -03002281 static const u8 C0[] = { 0x2d, 0x2d, 0x3a, 0x05, 0x04, 0x3f };
2282 static const u8 CA[] = { 0x28, 0xd8, 0x14, 0xec };
Jean-Francois Moine646775732009-12-20 12:31:28 -03002283 static const u8 CA_adcm1700[] =
2284 { 0x14, 0xec, 0x0a, 0xf6 };
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002285 static const u8 CA_po2030n[] =
2286 { 0x1e, 0xe2, 0x14, 0xec };
Jean-Francois Moine98819182009-01-19 07:37:33 -03002287 static const u8 CE[] = { 0x32, 0xdd, 0x2d, 0xdd }; /* MI0360 */
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002288 static const u8 CE_gc0307[] =
2289 { 0x32, 0xce, 0x2d, 0xd3 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03002290 static const u8 CE_ov76xx[] =
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03002291 { 0x32, 0xdd, 0x32, 0xdd };
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002292 static const u8 CE_po2030n[] =
2293 { 0x14, 0xe7, 0x1e, 0xdd };
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002294
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002295 /* create the JPEG header */
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002296 jpeg_define(sd->jpeg_hdr, gspca_dev->height, gspca_dev->width,
2297 0x21); /* JPEG 422 */
2298 jpeg_set_qual(sd->jpeg_hdr, sd->quality);
2299
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002300 /* initialize the bridge */
2301 sn9c1xx = sn_tb[sd->sensor];
2302 bridge_init(gspca_dev, sn9c1xx);
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002303
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002304 /* initialize the sensor */
2305 i2c_w_seq(gspca_dev, sensor_init[sd->sensor]);
2306
2307 switch (sd->sensor) {
Jean-Francois Moine646775732009-12-20 12:31:28 -03002308 case SENSOR_ADCM1700:
2309 reg2 = 0x60;
2310 break;
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002311 case SENSOR_OM6802:
2312 reg2 = 0x71;
2313 break;
2314 case SENSOR_SP80708:
2315 reg2 = 0x62;
2316 break;
2317 default:
2318 reg2 = 0x40;
2319 break;
2320 }
2321 reg_w1(gspca_dev, 0x02, reg2);
2322 reg_w1(gspca_dev, 0x02, reg2);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002323
Jean-Francois Moine60017612008-07-18 08:46:19 -03002324 reg_w1(gspca_dev, 0x15, sn9c1xx[0x15]);
2325 reg_w1(gspca_dev, 0x16, sn9c1xx[0x16]);
2326 reg_w1(gspca_dev, 0x12, sn9c1xx[0x12]);
2327 reg_w1(gspca_dev, 0x13, sn9c1xx[0x13]);
2328 reg_w1(gspca_dev, 0x18, sn9c1xx[0x18]);
Jean-Francois Moine646775732009-12-20 12:31:28 -03002329 if (sd->sensor == SENSOR_ADCM1700) {
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002330 reg_w1(gspca_dev, 0xd2, 0x3a); /* AE_H_SIZE = 116 */
2331 reg_w1(gspca_dev, 0xd3, 0x30); /* AE_V_SIZE = 96 */
Jean-Francois Moine646775732009-12-20 12:31:28 -03002332 } else {
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002333 reg_w1(gspca_dev, 0xd2, 0x6a); /* AE_H_SIZE = 212 */
2334 reg_w1(gspca_dev, 0xd3, 0x50); /* AE_V_SIZE = 160 */
Jean-Francois Moine646775732009-12-20 12:31:28 -03002335 }
Jean-Francois Moine60017612008-07-18 08:46:19 -03002336 reg_w1(gspca_dev, 0xc6, 0x00);
2337 reg_w1(gspca_dev, 0xc7, 0x00);
Jean-Francois Moine646775732009-12-20 12:31:28 -03002338 if (sd->sensor == SENSOR_ADCM1700) {
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002339 reg_w1(gspca_dev, 0xc8, 0x2c); /* AW_H_STOP = 352 */
2340 reg_w1(gspca_dev, 0xc9, 0x24); /* AW_V_STOP = 288 */
Jean-Francois Moine646775732009-12-20 12:31:28 -03002341 } else {
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002342 reg_w1(gspca_dev, 0xc8, 0x50); /* AW_H_STOP = 640 */
2343 reg_w1(gspca_dev, 0xc9, 0x3c); /* AW_V_STOP = 480 */
Jean-Francois Moine646775732009-12-20 12:31:28 -03002344 }
Jean-Francois Moine60017612008-07-18 08:46:19 -03002345 reg_w1(gspca_dev, 0x18, sn9c1xx[0x18]);
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002346 switch (sd->sensor) {
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002347 case SENSOR_GC0307:
2348 reg17 = 0xa2;
2349 break;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03002350 case SENSOR_MT9V111:
2351 reg17 = 0xe0;
2352 break;
Jean-Francois Moine646775732009-12-20 12:31:28 -03002353 case SENSOR_ADCM1700:
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002354 case SENSOR_OV7630:
2355 reg17 = 0xe2;
2356 break;
2357 case SENSOR_OV7648:
Jean-Francois Moine62703302008-11-11 08:42:56 -03002358 reg17 = 0x20;
Jean-Francois Moine568788a2008-07-15 11:46:06 -03002359 break;
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002360 case SENSOR_OV7660:
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002361 case SENSOR_SOI768:
Jean-Francois Moinec8b9b2c2009-04-26 14:46:12 -03002362 reg17 = 0xa0;
2363 break;
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03002364 case SENSOR_PO1030:
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002365 case SENSOR_PO2030N:
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03002366 reg17 = 0xa0;
2367 break;
Jean-Francois Moine568788a2008-07-15 11:46:06 -03002368 default:
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -03002369 reg17 = 0x60;
Jean-Francois Moine568788a2008-07-15 11:46:06 -03002370 break;
2371 }
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -03002372 reg_w1(gspca_dev, 0x17, reg17);
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002373
2374 reg_w1(gspca_dev, 0x05, 0x00); /* red */
2375 reg_w1(gspca_dev, 0x07, 0x00); /* green */
2376 reg_w1(gspca_dev, 0x06, 0x00); /* blue */
Jean-Francois Moine60017612008-07-18 08:46:19 -03002377 reg_w1(gspca_dev, 0x14, sn9c1xx[0x14]);
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002378
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002379 setgamma(gspca_dev);
2380
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002381/*fixme: 8 times with all zeroes and 1 or 2 times with normal values */
Jean-Francois Moine05b809c2008-09-03 16:47:59 -03002382 for (i = 0; i < 8; i++)
2383 reg_w(gspca_dev, 0x84, reg84, sizeof reg84);
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03002384 switch (sd->sensor) {
Jean-Francois Moine646775732009-12-20 12:31:28 -03002385 case SENSOR_ADCM1700:
Jean-Francois Moinec8b9b2c2009-04-26 14:46:12 -03002386 case SENSOR_OV7660:
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002387 case SENSOR_SP80708:
2388 reg_w1(gspca_dev, 0x9a, 0x05);
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002389 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002390 case SENSOR_GC0307:
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002391 case SENSOR_MT9V111:
2392 reg_w1(gspca_dev, 0x9a, 0x07);
2393 break;
Jean-François Moine0a85c742010-04-25 14:33:31 -03002394 case SENSOR_OV7630:
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002395 case SENSOR_OV7648:
2396 reg_w1(gspca_dev, 0x9a, 0x0a);
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002397 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002398 case SENSOR_PO2030N:
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002399 case SENSOR_SOI768:
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002400 reg_w1(gspca_dev, 0x9a, 0x06);
2401 break;
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03002402 default:
Jean-Francois Moine60017612008-07-18 08:46:19 -03002403 reg_w1(gspca_dev, 0x9a, 0x08);
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03002404 break;
2405 }
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002406 setsharpness(sd);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002407
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002408 reg_w(gspca_dev, 0x84, reg84, sizeof reg84);
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002409 reg_w1(gspca_dev, 0x05, 0x20); /* red */
2410 reg_w1(gspca_dev, 0x07, 0x20); /* green */
2411 reg_w1(gspca_dev, 0x06, 0x20); /* blue */
Jean-Francois Moine23a98272009-11-02 09:10:25 -03002412
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002413 init = NULL;
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002414 mode = gspca_dev->cam.cam_mode[gspca_dev->curr_mode].priv;
Jean-Francois Moine60017612008-07-18 08:46:19 -03002415 if (mode)
Jean-Francois Moine1432f302008-11-21 04:34:15 -03002416 reg1 = 0x46; /* 320x240: clk 48Mhz, video trf enable */
Jean-Francois Moine60017612008-07-18 08:46:19 -03002417 else
Jean-Francois Moine1432f302008-11-21 04:34:15 -03002418 reg1 = 0x06; /* 640x480: clk 24Mhz, video trf enable */
2419 reg17 = 0x61; /* 0x:20: enable sensor clock */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002420 switch (sd->sensor) {
Jean-Francois Moine646775732009-12-20 12:31:28 -03002421 case SENSOR_ADCM1700:
2422 init = adcm1700_sensor_param1;
2423 reg1 = 0x46;
2424 reg17 = 0xe2;
2425 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002426 case SENSOR_GC0307:
2427 init = gc0307_sensor_param1;
2428 reg17 = 0xa2;
2429 reg1 = 0x44;
2430 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002431 case SENSOR_MO4000:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002432 if (mode) {
2433/* reg1 = 0x46; * 320 clk 48Mhz 60fp/s */
2434 reg1 = 0x06; /* clk 24Mz */
2435 } else {
2436 reg17 = 0x22; /* 640 MCKSIZE */
Jean-Francois Moine60017612008-07-18 08:46:19 -03002437/* reg1 = 0x06; * 640 clk 24Mz (done) */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002438 }
2439 break;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03002440 case SENSOR_MT9V111:
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002441 init = mt9v111_sensor_param1;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03002442 if (mode) {
2443 reg1 = 0x04; /* 320 clk 48Mhz */
2444 } else {
2445/* reg1 = 0x06; * 640 clk 24Mz (done) */
Jean-Francois Moine2687a2f2009-02-01 14:48:55 -03002446 reg17 = 0xc2;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03002447 }
Jean-Francois Moine0fbe0572009-01-30 12:14:02 -03002448 break;
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03002449 case SENSOR_OM6802:
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002450 init = om6802_sensor_param1;
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03002451 reg17 = 0x64; /* 640 MCKSIZE */
2452 break;
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002453 case SENSOR_OV7630:
Jean-François Moinebdd2b932010-04-25 14:23:39 -03002454 init = ov7630_sensor_param1;
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002455 reg17 = 0xe2;
Jean-Francois Moine5b064da2008-09-03 16:48:08 -03002456 reg1 = 0x44;
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002457 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002458 case SENSOR_OV7648:
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002459 init = ov7648_sensor_param1;
Jean-Francois Moine62703302008-11-11 08:42:56 -03002460 reg17 = 0x21;
2461/* reg1 = 0x42; * 42 - 46? */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002462 break;
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002463 case SENSOR_OV7660:
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002464 init = ov7660_sensor_param1;
Jean-Francois Moinedaa5cb42008-12-02 15:00:57 -03002465 if (sd->bridge == BRIDGE_SN9C120) {
2466 if (mode) { /* 320x240 - 160x120 */
Jean-Francois Moine1432f302008-11-21 04:34:15 -03002467 reg17 = 0xa2;
2468 reg1 = 0x44; /* 48 Mhz, video trf eneble */
Jean-Francois Moine1432f302008-11-21 04:34:15 -03002469 }
Jean-Francois Moinedaa5cb42008-12-02 15:00:57 -03002470 } else {
2471 reg17 = 0x22;
2472 reg1 = 0x06; /* 24 Mhz, video trf eneble
2473 * inverse power down */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002474 }
2475 break;
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03002476 case SENSOR_PO1030:
2477 init = po1030_sensor_param1;
2478 reg17 = 0xa2;
2479 reg1 = 0x44;
2480 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002481 case SENSOR_PO2030N:
2482 init = po2030n_sensor_param1;
2483 reg1 = 0x46;
2484 reg17 = 0xa2;
2485 break;
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002486 case SENSOR_SOI768:
2487 init = soi768_sensor_param1;
2488 reg1 = 0x44;
2489 reg17 = 0xa2;
2490 break;
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002491 default:
2492/* case SENSOR_SP80708: */
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002493 init = sp80708_sensor_param1;
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002494 if (mode) {
2495/*?? reg1 = 0x04; * 320 clk 48Mhz */
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002496 } else {
2497 reg1 = 0x46; /* 640 clk 48Mz */
2498 reg17 = 0xa2;
2499 }
2500 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002501 }
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002502
2503 /* more sensor initialization - param1 */
2504 if (init != NULL) {
2505 i2c_w_seq(gspca_dev, init);
2506/* init = NULL; */
2507 }
2508
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002509 reg_w(gspca_dev, 0xc0, C0, 6);
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002510 switch (sd->sensor) {
2511 case SENSOR_ADCM1700:
2512 case SENSOR_GC0307:
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002513 case SENSOR_SOI768:
Jean-Francois Moine646775732009-12-20 12:31:28 -03002514 reg_w(gspca_dev, 0xca, CA_adcm1700, 4);
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002515 break;
2516 case SENSOR_PO2030N:
2517 reg_w(gspca_dev, 0xca, CA_po2030n, 4);
2518 break;
2519 default:
Jean-Francois Moine646775732009-12-20 12:31:28 -03002520 reg_w(gspca_dev, 0xca, CA, 4);
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002521 break;
2522 }
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002523 switch (sd->sensor) {
Jean-Francois Moine646775732009-12-20 12:31:28 -03002524 case SENSOR_ADCM1700:
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002525 case SENSOR_OV7630:
2526 case SENSOR_OV7648:
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03002527 case SENSOR_OV7660:
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002528 case SENSOR_SOI768:
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002529 reg_w(gspca_dev, 0xce, CE_ov76xx, 4);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002530 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002531 case SENSOR_GC0307:
2532 reg_w(gspca_dev, 0xce, CE_gc0307, 4);
2533 break;
2534 case SENSOR_PO2030N:
2535 reg_w(gspca_dev, 0xce, CE_po2030n, 4);
2536 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002537 default:
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002538 reg_w(gspca_dev, 0xce, CE, 4);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002539 /* ?? {0x1e, 0xdd, 0x2d, 0xe7} */
2540 break;
2541 }
2542
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002543
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002544 /* here change size mode 0 -> VGA; 1 -> CIF */
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002545 sd->reg18 = sn9c1xx[0x18] | (mode << 4) | 0x40;
2546 reg_w1(gspca_dev, 0x18, sd->reg18);
2547 setjpegqual(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002548
Jean-Francois Moine60017612008-07-18 08:46:19 -03002549 reg_w1(gspca_dev, 0x17, reg17);
Jean-Francois Moine1432f302008-11-21 04:34:15 -03002550 reg_w1(gspca_dev, 0x01, reg1);
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002551
Jean-François Moine1e5eb112010-02-18 14:56:33 -03002552 setvflip(sd);
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03002553 setbrightness(gspca_dev);
2554 setcontrast(gspca_dev);
Jean-François Moinefff2f702010-04-25 14:31:05 -03002555 setcolors(gspca_dev);
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002556 setautogain(gspca_dev);
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002557 setfreq(gspca_dev);
Jean-Francois Moine72ab97c2008-09-20 06:39:08 -03002558 return 0;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002559}
2560
2561static void sd_stopN(struct gspca_dev *gspca_dev)
2562{
2563 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine98819182009-01-19 07:37:33 -03002564 static const u8 stophv7131[] =
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002565 { 0xa1, 0x11, 0x02, 0x09, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03002566 static const u8 stopmi0360[] =
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002567 { 0xb1, 0x5d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03002568 static const u8 stopov7648[] =
Jean-Francois Moine62703302008-11-11 08:42:56 -03002569 { 0xa1, 0x21, 0x76, 0x20, 0x00, 0x00, 0x00, 0x10 };
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002570 static const u8 stopsoi768[] =
2571 { 0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03002572 u8 data;
2573 const u8 *sn9c1xx;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002574
2575 data = 0x0b;
2576 switch (sd->sensor) {
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002577 case SENSOR_GC0307:
2578 data = 0x29;
2579 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002580 case SENSOR_HV7131R:
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002581 i2c_w8(gspca_dev, stophv7131);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002582 data = 0x2b;
2583 break;
2584 case SENSOR_MI0360:
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002585 i2c_w8(gspca_dev, stopmi0360);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002586 data = 0x29;
2587 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002588 case SENSOR_OV7648:
Jean-Francois Moine62703302008-11-11 08:42:56 -03002589 i2c_w8(gspca_dev, stopov7648);
2590 /* fall thru */
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03002591 case SENSOR_MT9V111:
Jean-Francois Moine62703302008-11-11 08:42:56 -03002592 case SENSOR_OV7630:
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03002593 case SENSOR_PO1030:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002594 data = 0x29;
2595 break;
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002596 case SENSOR_SOI768:
2597 i2c_w8(gspca_dev, stopsoi768);
2598 data = 0x29;
2599 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002600 }
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002601 sn9c1xx = sn_tb[sd->sensor];
Jean-Francois Moine60017612008-07-18 08:46:19 -03002602 reg_w1(gspca_dev, 0x01, sn9c1xx[1]);
2603 reg_w1(gspca_dev, 0x17, sn9c1xx[0x17]);
2604 reg_w1(gspca_dev, 0x01, sn9c1xx[1]);
2605 reg_w1(gspca_dev, 0x01, data);
Hans de Goede9712a8b2010-01-31 12:54:29 -03002606 /* Don't disable sensor clock as that disables the button on the cam */
2607 /* reg_w1(gspca_dev, 0xf1, 0x01); */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002608}
2609
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002610static void do_autogain(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002611{
2612 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002613 int delta;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002614 int expotimes;
Jean-Francois Moine98819182009-01-19 07:37:33 -03002615 u8 luma_mean = 130;
2616 u8 luma_delta = 20;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002617
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002618 /* Thanks S., without your advice, autobright should not work :) */
2619 if (sd->ag_cnt < 0)
2620 return;
2621 if (--sd->ag_cnt >= 0)
2622 return;
2623 sd->ag_cnt = AG_CNT_START;
2624
2625 delta = atomic_read(&sd->avg_lum);
2626 PDEBUG(D_FRAM, "mean lum %d", delta);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002627 if (delta < luma_mean - luma_delta ||
2628 delta > luma_mean + luma_delta) {
2629 switch (sd->sensor) {
Jean-François Moinec26b12d2010-04-02 07:08:39 -03002630 case SENSOR_GC0307:
2631 expotimes = sd->exposure;
2632 expotimes += (luma_mean - delta) >> 6;
2633 if (expotimes < 0)
2634 expotimes = 0;
2635 sd->exposure = setexposure(gspca_dev,
2636 (unsigned int) expotimes);
2637 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002638 case SENSOR_HV7131R:
2639 expotimes = sd->exposure >> 8;
2640 expotimes += (luma_mean - delta) >> 4;
2641 if (expotimes < 0)
2642 expotimes = 0;
2643 sd->exposure = setexposure(gspca_dev,
2644 (unsigned int) (expotimes << 8));
2645 break;
Amauri Magagna46b4f2a2009-10-17 07:21:29 -03002646 case SENSOR_OM6802:
2647 expotimes = sd->exposure;
2648 expotimes += (luma_mean - delta) >> 2;
2649 if (expotimes < 0)
2650 expotimes = 0;
2651 sd->exposure = setexposure(gspca_dev,
2652 (unsigned int) expotimes);
2653 setredblue(gspca_dev);
2654 break;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002655 default:
2656/* case SENSOR_MO4000: */
2657/* case SENSOR_MI0360: */
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03002658/* case SENSOR_MT9V111: */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002659 expotimes = sd->exposure;
2660 expotimes += (luma_mean - delta) >> 6;
2661 if (expotimes < 0)
2662 expotimes = 0;
2663 sd->exposure = setexposure(gspca_dev,
2664 (unsigned int) expotimes);
Jean-Francois Moine403123d2008-11-26 04:46:15 -03002665 setredblue(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002666 break;
2667 }
2668 }
2669}
2670
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002671/* scan the URB packets */
2672/* This function is run at interrupt level. */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002673static void sd_pkt_scan(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03002674 u8 *data, /* isoc packet */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002675 int len) /* iso packet length */
2676{
2677 struct sd *sd = (struct sd *) gspca_dev;
2678 int sof, avg_lum;
2679
2680 sof = len - 64;
2681 if (sof >= 0 && data[sof] == 0xff && data[sof + 1] == 0xd9) {
2682
2683 /* end of frame */
2684 gspca_frame_add(gspca_dev, LAST_PACKET,
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03002685 data, sof + 2);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002686 if (sd->ag_cnt < 0)
2687 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002688/* w1 w2 w3 */
2689/* w4 w5 w6 */
2690/* w7 w8 */
2691/* w4 */
2692 avg_lum = ((data[sof + 29] << 8) | data[sof + 30]) >> 6;
2693/* w6 */
2694 avg_lum += ((data[sof + 33] << 8) | data[sof + 34]) >> 6;
2695/* w2 */
2696 avg_lum += ((data[sof + 25] << 8) | data[sof + 26]) >> 6;
2697/* w8 */
2698 avg_lum += ((data[sof + 37] << 8) | data[sof + 38]) >> 6;
2699/* w5 */
2700 avg_lum += ((data[sof + 31] << 8) | data[sof + 32]) >> 4;
2701 avg_lum >>= 4;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002702 atomic_set(&sd->avg_lum, avg_lum);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002703 return;
2704 }
2705 if (gspca_dev->last_packet_type == LAST_PACKET) {
2706
2707 /* put the JPEG 422 header */
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03002708 gspca_frame_add(gspca_dev, FIRST_PACKET,
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002709 sd->jpeg_hdr, JPEG_HDR_SZ);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002710 }
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03002711 gspca_frame_add(gspca_dev, INTER_PACKET, data, len);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002712}
2713
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002714static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val)
2715{
2716 struct sd *sd = (struct sd *) gspca_dev;
2717
2718 sd->brightness = val;
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03002719 if (gspca_dev->streaming)
2720 setbrightness(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002721 return 0;
2722}
2723
2724static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val)
2725{
2726 struct sd *sd = (struct sd *) gspca_dev;
2727
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002728 *val = sd->brightness;
2729 return 0;
2730}
2731
2732static int sd_setcontrast(struct gspca_dev *gspca_dev, __s32 val)
2733{
2734 struct sd *sd = (struct sd *) gspca_dev;
2735
2736 sd->contrast = val;
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03002737 if (gspca_dev->streaming)
2738 setcontrast(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002739 return 0;
2740}
2741
2742static int sd_getcontrast(struct gspca_dev *gspca_dev, __s32 *val)
2743{
2744 struct sd *sd = (struct sd *) gspca_dev;
2745
2746 *val = sd->contrast;
2747 return 0;
2748}
2749
2750static int sd_setcolors(struct gspca_dev *gspca_dev, __s32 val)
2751{
2752 struct sd *sd = (struct sd *) gspca_dev;
2753
2754 sd->colors = val;
2755 if (gspca_dev->streaming)
2756 setcolors(gspca_dev);
2757 return 0;
2758}
2759
2760static int sd_getcolors(struct gspca_dev *gspca_dev, __s32 *val)
2761{
2762 struct sd *sd = (struct sd *) gspca_dev;
2763
2764 *val = sd->colors;
2765 return 0;
2766}
2767
Jean-Francois Moine403123d2008-11-26 04:46:15 -03002768static int sd_setblue_balance(struct gspca_dev *gspca_dev, __s32 val)
2769{
2770 struct sd *sd = (struct sd *) gspca_dev;
2771
2772 sd->blue = val;
2773 if (gspca_dev->streaming)
2774 setredblue(gspca_dev);
2775 return 0;
2776}
2777
2778static int sd_getblue_balance(struct gspca_dev *gspca_dev, __s32 *val)
2779{
2780 struct sd *sd = (struct sd *) gspca_dev;
2781
2782 *val = sd->blue;
2783 return 0;
2784}
2785
2786static int sd_setred_balance(struct gspca_dev *gspca_dev, __s32 val)
2787{
2788 struct sd *sd = (struct sd *) gspca_dev;
2789
2790 sd->red = val;
2791 if (gspca_dev->streaming)
2792 setredblue(gspca_dev);
2793 return 0;
2794}
2795
2796static int sd_getred_balance(struct gspca_dev *gspca_dev, __s32 *val)
2797{
2798 struct sd *sd = (struct sd *) gspca_dev;
2799
2800 *val = sd->red;
2801 return 0;
2802}
2803
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03002804static int sd_setgamma(struct gspca_dev *gspca_dev, __s32 val)
2805{
2806 struct sd *sd = (struct sd *) gspca_dev;
2807
2808 sd->gamma = val;
2809 if (gspca_dev->streaming)
2810 setgamma(gspca_dev);
2811 return 0;
2812}
2813
2814static int sd_getgamma(struct gspca_dev *gspca_dev, __s32 *val)
2815{
2816 struct sd *sd = (struct sd *) gspca_dev;
2817
2818 *val = sd->gamma;
2819 return 0;
2820}
2821
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002822static int sd_setautogain(struct gspca_dev *gspca_dev, __s32 val)
2823{
2824 struct sd *sd = (struct sd *) gspca_dev;
2825
2826 sd->autogain = val;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002827 if (gspca_dev->streaming)
2828 setautogain(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002829 return 0;
2830}
2831
2832static int sd_getautogain(struct gspca_dev *gspca_dev, __s32 *val)
2833{
2834 struct sd *sd = (struct sd *) gspca_dev;
2835
2836 *val = sd->autogain;
2837 return 0;
2838}
2839
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002840static int sd_setsharpness(struct gspca_dev *gspca_dev, __s32 val)
2841{
2842 struct sd *sd = (struct sd *) gspca_dev;
2843
2844 sd->sharpness = val;
2845 if (gspca_dev->streaming)
2846 setsharpness(sd);
2847 return 0;
2848}
2849
2850static int sd_getsharpness(struct gspca_dev *gspca_dev, __s32 *val)
2851{
2852 struct sd *sd = (struct sd *) gspca_dev;
2853
2854 *val = sd->sharpness;
2855 return 0;
2856}
2857
Jean-Francois Moine6c862742008-09-08 04:57:26 -03002858static int sd_setvflip(struct gspca_dev *gspca_dev, __s32 val)
2859{
2860 struct sd *sd = (struct sd *) gspca_dev;
2861
2862 sd->vflip = val;
Jean-Francois Moine79a90982008-10-05 04:21:24 -03002863 if (gspca_dev->streaming)
2864 setvflip(sd);
Jean-Francois Moine6c862742008-09-08 04:57:26 -03002865 return 0;
2866}
2867
2868static int sd_getvflip(struct gspca_dev *gspca_dev, __s32 *val)
2869{
2870 struct sd *sd = (struct sd *) gspca_dev;
2871
2872 *val = sd->vflip;
2873 return 0;
2874}
2875
Jean-Francois Moine0cae8962008-10-17 07:48:24 -03002876static int sd_setinfrared(struct gspca_dev *gspca_dev, __s32 val)
2877{
2878 struct sd *sd = (struct sd *) gspca_dev;
2879
2880 sd->infrared = val;
2881 if (gspca_dev->streaming)
2882 setinfrared(sd);
2883 return 0;
2884}
2885
2886static int sd_getinfrared(struct gspca_dev *gspca_dev, __s32 *val)
2887{
2888 struct sd *sd = (struct sd *) gspca_dev;
2889
2890 *val = sd->infrared;
2891 return 0;
2892}
2893
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002894static int sd_setfreq(struct gspca_dev *gspca_dev, __s32 val)
2895{
2896 struct sd *sd = (struct sd *) gspca_dev;
2897
2898 sd->freq = val;
2899 if (gspca_dev->streaming)
2900 setfreq(gspca_dev);
2901 return 0;
2902}
2903
2904static int sd_getfreq(struct gspca_dev *gspca_dev, __s32 *val)
2905{
2906 struct sd *sd = (struct sd *) gspca_dev;
2907
2908 *val = sd->freq;
2909 return 0;
2910}
2911
Jean-Francois Moine77ac0ba2009-03-02 06:40:52 -03002912static int sd_set_jcomp(struct gspca_dev *gspca_dev,
2913 struct v4l2_jpegcompression *jcomp)
2914{
2915 struct sd *sd = (struct sd *) gspca_dev;
2916
2917 if (jcomp->quality < QUALITY_MIN)
2918 sd->quality = QUALITY_MIN;
2919 else if (jcomp->quality > QUALITY_MAX)
2920 sd->quality = QUALITY_MAX;
2921 else
2922 sd->quality = jcomp->quality;
2923 if (gspca_dev->streaming)
2924 jpeg_set_qual(sd->jpeg_hdr, sd->quality);
2925 return 0;
2926}
2927
2928static int sd_get_jcomp(struct gspca_dev *gspca_dev,
2929 struct v4l2_jpegcompression *jcomp)
2930{
2931 struct sd *sd = (struct sd *) gspca_dev;
2932
2933 memset(jcomp, 0, sizeof *jcomp);
2934 jcomp->quality = sd->quality;
2935 jcomp->jpeg_markers = V4L2_JPEG_MARKER_DHT
2936 | V4L2_JPEG_MARKER_DQT;
2937 return 0;
2938}
2939
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002940static int sd_querymenu(struct gspca_dev *gspca_dev,
2941 struct v4l2_querymenu *menu)
2942{
2943 switch (menu->id) {
2944 case V4L2_CID_POWER_LINE_FREQUENCY:
2945 switch (menu->index) {
2946 case 0: /* V4L2_CID_POWER_LINE_FREQUENCY_DISABLED */
2947 strcpy((char *) menu->name, "NoFliker");
2948 return 0;
2949 case 1: /* V4L2_CID_POWER_LINE_FREQUENCY_50HZ */
2950 strcpy((char *) menu->name, "50 Hz");
2951 return 0;
2952 case 2: /* V4L2_CID_POWER_LINE_FREQUENCY_60HZ */
2953 strcpy((char *) menu->name, "60 Hz");
2954 return 0;
2955 }
2956 break;
2957 }
2958 return -EINVAL;
2959}
2960
Hans de Goede9712a8b2010-01-31 12:54:29 -03002961#ifdef CONFIG_INPUT
2962static int sd_int_pkt_scan(struct gspca_dev *gspca_dev,
2963 u8 *data, /* interrupt packet data */
2964 int len) /* interrupt packet length */
2965{
2966 int ret = -EINVAL;
2967
2968 if (len == 1 && data[0] == 1) {
2969 input_report_key(gspca_dev->input_dev, KEY_CAMERA, 1);
2970 input_sync(gspca_dev->input_dev);
2971 input_report_key(gspca_dev->input_dev, KEY_CAMERA, 0);
2972 input_sync(gspca_dev->input_dev);
2973 ret = 0;
2974 }
2975
2976 return ret;
2977}
2978#endif
2979
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002980/* sub-driver description */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03002981static const struct sd_desc sd_desc = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002982 .name = MODULE_NAME,
2983 .ctrls = sd_ctrls,
2984 .nctrls = ARRAY_SIZE(sd_ctrls),
2985 .config = sd_config,
Jean-Francois Moine012d6b02008-09-03 17:12:16 -03002986 .init = sd_init,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002987 .start = sd_start,
2988 .stopN = sd_stopN,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002989 .pkt_scan = sd_pkt_scan,
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002990 .dq_callback = do_autogain,
Jean-Francois Moine77ac0ba2009-03-02 06:40:52 -03002991 .get_jcomp = sd_get_jcomp,
2992 .set_jcomp = sd_set_jcomp,
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002993 .querymenu = sd_querymenu,
Hans de Goede9712a8b2010-01-31 12:54:29 -03002994#ifdef CONFIG_INPUT
2995 .int_pkt_scan = sd_int_pkt_scan,
2996#endif
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002997};
2998
2999/* -- module initialisation -- */
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003000#define BS(bridge, sensor) \
Jean-Francois Moine9d64fdb2008-07-25 08:53:03 -03003001 .driver_info = (BRIDGE_ ## bridge << 16) \
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003002 | SENSOR_ ## sensor
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03003003static const __devinitdata struct usb_device_id device_table[] = {
Hans de Goede222a07f2008-09-03 17:12:20 -03003004#if !defined CONFIG_USB_SN9C102 && !defined CONFIG_USB_SN9C102_MODULE
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003005 {USB_DEVICE(0x0458, 0x7025), BS(SN9C120, MI0360)},
3006 {USB_DEVICE(0x0458, 0x702e), BS(SN9C120, OV7660)},
Jean-Francois Moinea08d81a2008-11-22 04:53:31 -03003007#endif
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003008 {USB_DEVICE(0x045e, 0x00f5), BS(SN9C105, OV7660)},
3009 {USB_DEVICE(0x045e, 0x00f7), BS(SN9C105, OV7660)},
3010 {USB_DEVICE(0x0471, 0x0327), BS(SN9C105, MI0360)},
3011 {USB_DEVICE(0x0471, 0x0328), BS(SN9C105, MI0360)},
3012 {USB_DEVICE(0x0471, 0x0330), BS(SN9C105, MI0360)},
3013 {USB_DEVICE(0x06f8, 0x3004), BS(SN9C105, OV7660)},
3014 {USB_DEVICE(0x06f8, 0x3008), BS(SN9C105, OV7660)},
3015/* {USB_DEVICE(0x0c45, 0x603a), BS(SN9C102P, OV7648)}, */
3016 {USB_DEVICE(0x0c45, 0x6040), BS(SN9C102P, HV7131R)},
3017/* {USB_DEVICE(0x0c45, 0x607a), BS(SN9C102P, OV7648)}, */
3018/* {USB_DEVICE(0x0c45, 0x607b), BS(SN9C102P, OV7660)}, */
3019 {USB_DEVICE(0x0c45, 0x607c), BS(SN9C102P, HV7131R)},
3020/* {USB_DEVICE(0x0c45, 0x607e), BS(SN9C102P, OV7630)}, */
3021 {USB_DEVICE(0x0c45, 0x60c0), BS(SN9C105, MI0360)},
3022/* {USB_DEVICE(0x0c45, 0x60c2), BS(SN9C105, P1030xC)}, */
3023/* {USB_DEVICE(0x0c45, 0x60c8), BS(SN9C105, OM6802)}, */
3024/* {USB_DEVICE(0x0c45, 0x60cc), BS(SN9C105, HV7131GP)}, */
3025 {USB_DEVICE(0x0c45, 0x60ec), BS(SN9C105, MO4000)},
3026/* {USB_DEVICE(0x0c45, 0x60ef), BS(SN9C105, ICM105C)}, */
3027/* {USB_DEVICE(0x0c45, 0x60fa), BS(SN9C105, OV7648)}, */
3028 {USB_DEVICE(0x0c45, 0x60fb), BS(SN9C105, OV7660)},
Jean-Francois Moine3c41cb72008-09-10 02:57:09 -03003029#if !defined CONFIG_USB_SN9C102 && !defined CONFIG_USB_SN9C102_MODULE
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003030 {USB_DEVICE(0x0c45, 0x60fc), BS(SN9C105, HV7131R)},
3031 {USB_DEVICE(0x0c45, 0x60fe), BS(SN9C105, OV7630)},
Jean-Francois Moine3c41cb72008-09-10 02:57:09 -03003032#endif
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003033 {USB_DEVICE(0x0c45, 0x6100), BS(SN9C120, MI0360)}, /*sn9c128*/
3034/* {USB_DEVICE(0x0c45, 0x6102), BS(SN9C120, P1030xC)}, */
3035/* {USB_DEVICE(0x0c45, 0x6108), BS(SN9C120, OM6802)}, */
3036 {USB_DEVICE(0x0c45, 0x610a), BS(SN9C120, OV7648)}, /*sn9c128*/
3037 {USB_DEVICE(0x0c45, 0x610b), BS(SN9C120, OV7660)}, /*sn9c128*/
3038 {USB_DEVICE(0x0c45, 0x610c), BS(SN9C120, HV7131R)}, /*sn9c128*/
3039 {USB_DEVICE(0x0c45, 0x610e), BS(SN9C120, OV7630)}, /*sn9c128*/
3040/* {USB_DEVICE(0x0c45, 0x610f), BS(SN9C120, S5K53BEB)}, */
3041/* {USB_DEVICE(0x0c45, 0x6122), BS(SN9C110, ICM105C)}, */
3042/* {USB_DEVICE(0x0c45, 0x6123), BS(SN9C110, SanyoCCD)}, */
3043 {USB_DEVICE(0x0c45, 0x6128), BS(SN9C120, OM6802)}, /*sn9c325?*/
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03003044/*bw600.inf:*/
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03003045 {USB_DEVICE(0x0c45, 0x612a), BS(SN9C120, OV7648)}, /*sn9c325?*/
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003046 {USB_DEVICE(0x0c45, 0x612c), BS(SN9C110, MO4000)},
3047 {USB_DEVICE(0x0c45, 0x612e), BS(SN9C110, OV7630)},
3048/* {USB_DEVICE(0x0c45, 0x612f), BS(SN9C110, ICM105C)}, */
Hans de Goede222a07f2008-09-03 17:12:20 -03003049#if !defined CONFIG_USB_SN9C102 && !defined CONFIG_USB_SN9C102_MODULE
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003050 {USB_DEVICE(0x0c45, 0x6130), BS(SN9C120, MI0360)},
Hans de Goede222a07f2008-09-03 17:12:20 -03003051#endif
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003052/* {USB_DEVICE(0x0c45, 0x6132), BS(SN9C120, OV7670)}, */
3053 {USB_DEVICE(0x0c45, 0x6138), BS(SN9C120, MO4000)},
3054 {USB_DEVICE(0x0c45, 0x613a), BS(SN9C120, OV7648)},
Hans de Goede222a07f2008-09-03 17:12:20 -03003055#if !defined CONFIG_USB_SN9C102 && !defined CONFIG_USB_SN9C102_MODULE
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003056 {USB_DEVICE(0x0c45, 0x613b), BS(SN9C120, OV7660)},
Jean-Francois Moine8d977702009-02-19 15:34:48 -03003057#endif
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003058 {USB_DEVICE(0x0c45, 0x613c), BS(SN9C120, HV7131R)},
3059 {USB_DEVICE(0x0c45, 0x613e), BS(SN9C120, OV7630)},
Jean-François Moinead98c0f2010-03-18 05:15:30 -03003060 {USB_DEVICE(0x0c45, 0x6142), BS(SN9C120, PO2030N)}, /*sn9c120b*/
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003061 {USB_DEVICE(0x0c45, 0x6143), BS(SN9C120, SP80708)}, /*sn9c120b*/
3062 {USB_DEVICE(0x0c45, 0x6148), BS(SN9C120, OM6802)}, /*sn9c120b*/
Jean-Francois Moine646775732009-12-20 12:31:28 -03003063 {USB_DEVICE(0x0c45, 0x614a), BS(SN9C120, ADCM1700)}, /*sn9c120b*/
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003064 {}
3065};
3066MODULE_DEVICE_TABLE(usb, device_table);
3067
3068/* -- device connect -- */
3069static int sd_probe(struct usb_interface *intf,
3070 const struct usb_device_id *id)
3071{
3072 return gspca_dev_probe(intf, id, &sd_desc, sizeof(struct sd),
3073 THIS_MODULE);
3074}
3075
3076static struct usb_driver sd_driver = {
3077 .name = MODULE_NAME,
3078 .id_table = device_table,
3079 .probe = sd_probe,
3080 .disconnect = gspca_disconnect,
Jean-Francois Moine6a709742008-09-03 16:48:10 -03003081#ifdef CONFIG_PM
3082 .suspend = gspca_suspend,
3083 .resume = gspca_resume,
3084#endif
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003085};
3086
3087/* -- module insert / remove -- */
3088static int __init sd_mod_init(void)
3089{
Alexey Klimovf69e9522009-01-01 13:02:07 -03003090 int ret;
3091 ret = usb_register(&sd_driver);
3092 if (ret < 0)
Alexey Klimove6b14842009-01-01 13:04:58 -03003093 return ret;
Jean-Francois Moine10b0e962008-07-22 05:35:10 -03003094 info("registered");
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003095 return 0;
3096}
3097static void __exit sd_mod_exit(void)
3098{
3099 usb_deregister(&sd_driver);
3100 info("deregistered");
3101}
3102
3103module_init(sd_mod_init);
3104module_exit(sd_mod_exit);