blob: 1f21c6a7a72c0d893ca980236882d2930b1fc09f [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-Francois Moine5b34e3e2009-11-02 10:00:48 -03004 * Copyright (C) 2009 Jean-Francois Moine <http://moinejf.free.fr>
5 * 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
24#include "gspca.h"
25#include "jpeg.h"
26
Jean-Francois Moine0cae8962008-10-17 07:48:24 -030027#define V4L2_CID_INFRARED (V4L2_CID_PRIVATE_BASE + 0)
28
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030029MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>");
30MODULE_DESCRIPTION("GSPCA/SONIX JPEG USB Camera Driver");
31MODULE_LICENSE("GPL");
32
33/* specific webcam descriptor */
34struct sd {
35 struct gspca_dev gspca_dev; /* !! must be the first item */
36
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -030037 atomic_t avg_lum;
Jean-Francois Moine98819182009-01-19 07:37:33 -030038 u32 exposure;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030039
Jean-Francois Moine98819182009-01-19 07:37:33 -030040 u16 brightness;
41 u8 contrast;
42 u8 colors;
43 u8 autogain;
44 u8 blue;
45 u8 red;
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -030046 u8 gamma;
Jean-Francois Moine2797ba22009-02-05 15:12:24 -030047 u8 vflip; /* ov7630/ov7648 only */
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -030048 u8 infrared; /* mt9v111 only */
Hans de Goede37c6dbe2009-06-18 07:35:36 -030049 u8 freq; /* ov76xx only */
Jean-Francois Moine71cb2762009-03-03 05:33:41 -030050 u8 quality; /* image quality */
Jean-Francois Moine77ac0ba2009-03-02 06:40:52 -030051#define QUALITY_MIN 60
52#define QUALITY_MAX 95
53#define QUALITY_DEF 80
Jean-Francois Moine71cb2762009-03-03 05:33:41 -030054 u8 jpegqual; /* webcam quality */
55
56 u8 reg18;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030057
Jean-Francois Moine98819182009-01-19 07:37:33 -030058 s8 ag_cnt;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030059#define AG_CNT_START 13
60
Jean-Francois Moine98819182009-01-19 07:37:33 -030061 u8 bridge;
Hans de Goede3647fea2008-07-15 05:36:30 -030062#define BRIDGE_SN9C102P 0
63#define BRIDGE_SN9C105 1
64#define BRIDGE_SN9C110 2
65#define BRIDGE_SN9C120 3
Jean-Francois Moine98819182009-01-19 07:37:33 -030066 u8 sensor; /* Type of image sensor chip */
Jean-Francois Moine64677572009-12-20 12:31:28 -030067#define SENSOR_ADCM1700 0
68#define SENSOR_HV7131R 1
69#define SENSOR_MI0360 2
70#define SENSOR_MO4000 3
71#define SENSOR_MT9V111 4
72#define SENSOR_OM6802 5
73#define SENSOR_OV7630 6
74#define SENSOR_OV7648 7
75#define SENSOR_OV7660 8
76#define SENSOR_PO1030 9
77#define SENSOR_SP80708 10
Jean-Francois Moined5aa3852009-11-07 06:10:08 -030078 u8 i2c_addr;
Jean-Francois Moine71cb2762009-03-03 05:33:41 -030079
80 u8 *jpeg_hdr;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030081};
82
83/* V4L2 controls supported by the driver */
84static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val);
85static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val);
86static int sd_setcontrast(struct gspca_dev *gspca_dev, __s32 val);
87static int sd_getcontrast(struct gspca_dev *gspca_dev, __s32 *val);
88static int sd_setcolors(struct gspca_dev *gspca_dev, __s32 val);
89static int sd_getcolors(struct gspca_dev *gspca_dev, __s32 *val);
Jean-Francois Moine403123d2008-11-26 04:46:15 -030090static int sd_setblue_balance(struct gspca_dev *gspca_dev, __s32 val);
91static int sd_getblue_balance(struct gspca_dev *gspca_dev, __s32 *val);
92static int sd_setred_balance(struct gspca_dev *gspca_dev, __s32 val);
93static int sd_getred_balance(struct gspca_dev *gspca_dev, __s32 *val);
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -030094static int sd_setgamma(struct gspca_dev *gspca_dev, __s32 val);
95static int sd_getgamma(struct gspca_dev *gspca_dev, __s32 *val);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030096static int sd_setautogain(struct gspca_dev *gspca_dev, __s32 val);
97static int sd_getautogain(struct gspca_dev *gspca_dev, __s32 *val);
Jean-Francois Moine6c862742008-09-08 04:57:26 -030098static int sd_setvflip(struct gspca_dev *gspca_dev, __s32 val);
99static int sd_getvflip(struct gspca_dev *gspca_dev, __s32 *val);
Jean-Francois Moine0cae8962008-10-17 07:48:24 -0300100static int sd_setinfrared(struct gspca_dev *gspca_dev, __s32 val);
101static int sd_getinfrared(struct gspca_dev *gspca_dev, __s32 *val);
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300102static int sd_setfreq(struct gspca_dev *gspca_dev, __s32 val);
103static int sd_getfreq(struct gspca_dev *gspca_dev, __s32 *val);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300104
105static struct ctrl sd_ctrls[] = {
Hans de Goede97643982009-06-18 05:08:11 -0300106#define BRIGHTNESS_IDX 0
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300107 {
108 {
109 .id = V4L2_CID_BRIGHTNESS,
110 .type = V4L2_CTRL_TYPE_INTEGER,
111 .name = "Brightness",
112 .minimum = 0,
Jean-Francois Moine05b809c2008-09-03 16:47:59 -0300113#define BRIGHTNESS_MAX 0xffff
114 .maximum = BRIGHTNESS_MAX,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300115 .step = 1,
Jean-Francois Moineb1b056a2008-11-25 04:47:09 -0300116#define BRIGHTNESS_DEF 0x8000
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300117 .default_value = BRIGHTNESS_DEF,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300118 },
119 .set = sd_setbrightness,
120 .get = sd_getbrightness,
121 },
Hans de Goede97643982009-06-18 05:08:11 -0300122#define CONTRAST_IDX 1
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300123 {
124 {
125 .id = V4L2_CID_CONTRAST,
126 .type = V4L2_CTRL_TYPE_INTEGER,
127 .name = "Contrast",
128 .minimum = 0,
Jean-Francois Moine05b809c2008-09-03 16:47:59 -0300129#define CONTRAST_MAX 127
130 .maximum = CONTRAST_MAX,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300131 .step = 1,
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300132#define CONTRAST_DEF 63
133 .default_value = CONTRAST_DEF,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300134 },
135 .set = sd_setcontrast,
136 .get = sd_getcontrast,
137 },
Hans de Goede97643982009-06-18 05:08:11 -0300138#define COLOR_IDX 2
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300139 {
140 {
141 .id = V4L2_CID_SATURATION,
142 .type = V4L2_CTRL_TYPE_INTEGER,
Hans de Goede3fb4a572009-06-18 14:31:36 -0300143 .name = "Saturation",
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300144 .minimum = 0,
Jean-Francois Moine403123d2008-11-26 04:46:15 -0300145 .maximum = 40,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300146 .step = 1,
Hans de Goede3fb4a572009-06-18 14:31:36 -0300147#define COLOR_DEF 25
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300148 .default_value = COLOR_DEF,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300149 },
150 .set = sd_setcolors,
151 .get = sd_getcolors,
152 },
Hans de Goede97643982009-06-18 05:08:11 -0300153#define BLUE_BALANCE_IDX 3
Jean-Francois Moine403123d2008-11-26 04:46:15 -0300154 {
155 {
156 .id = V4L2_CID_BLUE_BALANCE,
157 .type = V4L2_CTRL_TYPE_INTEGER,
158 .name = "Blue Balance",
159 .minimum = 24,
160 .maximum = 40,
161 .step = 1,
162#define BLUE_BALANCE_DEF 32
163 .default_value = BLUE_BALANCE_DEF,
164 },
165 .set = sd_setblue_balance,
166 .get = sd_getblue_balance,
167 },
Hans de Goede97643982009-06-18 05:08:11 -0300168#define RED_BALANCE_IDX 4
Jean-Francois Moine403123d2008-11-26 04:46:15 -0300169 {
170 {
171 .id = V4L2_CID_RED_BALANCE,
172 .type = V4L2_CTRL_TYPE_INTEGER,
173 .name = "Red Balance",
174 .minimum = 24,
175 .maximum = 40,
176 .step = 1,
177#define RED_BALANCE_DEF 32
178 .default_value = RED_BALANCE_DEF,
179 },
180 .set = sd_setred_balance,
181 .get = sd_getred_balance,
182 },
Hans de Goede97643982009-06-18 05:08:11 -0300183#define GAMMA_IDX 5
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -0300184 {
185 {
186 .id = V4L2_CID_GAMMA,
187 .type = V4L2_CTRL_TYPE_INTEGER,
188 .name = "Gamma",
189 .minimum = 0,
190 .maximum = 40,
191 .step = 1,
192#define GAMMA_DEF 20
193 .default_value = GAMMA_DEF,
194 },
195 .set = sd_setgamma,
196 .get = sd_getgamma,
197 },
Hans de Goede97643982009-06-18 05:08:11 -0300198#define AUTOGAIN_IDX 6
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300199 {
200 {
201 .id = V4L2_CID_AUTOGAIN,
202 .type = V4L2_CTRL_TYPE_BOOLEAN,
203 .name = "Auto Gain",
204 .minimum = 0,
205 .maximum = 1,
206 .step = 1,
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300207#define AUTOGAIN_DEF 1
208 .default_value = AUTOGAIN_DEF,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300209 },
210 .set = sd_setautogain,
211 .get = sd_getautogain,
212 },
Jean-Francois Moine2797ba22009-02-05 15:12:24 -0300213/* ov7630/ov7648 only */
Hans de Goede97643982009-06-18 05:08:11 -0300214#define VFLIP_IDX 7
Jean-Francois Moine6c862742008-09-08 04:57:26 -0300215 {
216 {
217 .id = V4L2_CID_VFLIP,
218 .type = V4L2_CTRL_TYPE_BOOLEAN,
219 .name = "Vflip",
220 .minimum = 0,
221 .maximum = 1,
222 .step = 1,
Hans de Goedef8009522009-06-18 14:29:20 -0300223#define VFLIP_DEF 0
Jean-Francois Moine6c862742008-09-08 04:57:26 -0300224 .default_value = VFLIP_DEF,
225 },
226 .set = sd_setvflip,
227 .get = sd_getvflip,
228 },
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300229/* mt9v111 only */
Hans de Goede97643982009-06-18 05:08:11 -0300230#define INFRARED_IDX 8
Jean-Francois Moine0cae8962008-10-17 07:48:24 -0300231 {
232 {
233 .id = V4L2_CID_INFRARED,
234 .type = V4L2_CTRL_TYPE_BOOLEAN,
235 .name = "Infrared",
236 .minimum = 0,
237 .maximum = 1,
238 .step = 1,
239#define INFRARED_DEF 0
240 .default_value = INFRARED_DEF,
241 },
242 .set = sd_setinfrared,
243 .get = sd_getinfrared,
244 },
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300245/* ov7630/ov7648/ov7660 only */
246#define FREQ_IDX 9
247 {
248 {
249 .id = V4L2_CID_POWER_LINE_FREQUENCY,
250 .type = V4L2_CTRL_TYPE_MENU,
251 .name = "Light frequency filter",
252 .minimum = 0,
253 .maximum = 2, /* 0: 0, 1: 50Hz, 2:60Hz */
254 .step = 1,
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -0300255#define FREQ_DEF 1
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300256 .default_value = FREQ_DEF,
257 },
258 .set = sd_setfreq,
259 .get = sd_getfreq,
260 },
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300261};
262
Jean-Francois Moine577cbf42008-12-05 06:18:37 -0300263/* table of the disabled controls */
264static __u32 ctrl_dis[] = {
Jean-Francois Moine64677572009-12-20 12:31:28 -0300265 (1 << INFRARED_IDX) | (1 << VFLIP_IDX) | (1 << FREQ_IDX) |
266 (1 << AUTOGAIN_IDX) | (1 << BRIGHTNESS_IDX), /* SENSOR_ADCM1700 0 */
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300267 (1 << INFRARED_IDX) | (1 << VFLIP_IDX) | (1 << FREQ_IDX),
Jean-Francois Moine64677572009-12-20 12:31:28 -0300268 /* SENSOR_HV7131R 1 */
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300269 (1 << INFRARED_IDX) | (1 << VFLIP_IDX) | (1 << FREQ_IDX),
Jean-Francois Moine64677572009-12-20 12:31:28 -0300270 /* SENSOR_MI0360 2 */
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300271 (1 << INFRARED_IDX) | (1 << VFLIP_IDX) | (1 << FREQ_IDX),
Jean-Francois Moine64677572009-12-20 12:31:28 -0300272 /* SENSOR_MO4000 3 */
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300273 (1 << VFLIP_IDX) | (1 << FREQ_IDX),
Jean-Francois Moine64677572009-12-20 12:31:28 -0300274 /* SENSOR_MT9V111 4 */
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300275 (1 << INFRARED_IDX) | (1 << VFLIP_IDX) | (1 << FREQ_IDX),
Jean-Francois Moine64677572009-12-20 12:31:28 -0300276 /* SENSOR_OM6802 5 */
Hans de Goede1fec7472009-06-18 06:05:07 -0300277 (1 << INFRARED_IDX),
Jean-Francois Moine64677572009-12-20 12:31:28 -0300278 /* SENSOR_OV7630 6 */
Jean-Francois Moine2797ba22009-02-05 15:12:24 -0300279 (1 << INFRARED_IDX),
Jean-Francois Moine64677572009-12-20 12:31:28 -0300280 /* SENSOR_OV7648 7 */
Jean-Francois Moine577cbf42008-12-05 06:18:37 -0300281 (1 << AUTOGAIN_IDX) | (1 << INFRARED_IDX) | (1 << VFLIP_IDX),
Jean-Francois Moine64677572009-12-20 12:31:28 -0300282 /* SENSOR_OV7660 8 */
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300283 (1 << AUTOGAIN_IDX) | (1 << INFRARED_IDX) | (1 << VFLIP_IDX) |
Jean-Francois Moine64677572009-12-20 12:31:28 -0300284 (1 << FREQ_IDX), /* SENSOR_PO1030 9 */
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -0300285 (1 << AUTOGAIN_IDX) | (1 << INFRARED_IDX) | (1 << VFLIP_IDX) |
Jean-Francois Moine64677572009-12-20 12:31:28 -0300286 (1 << FREQ_IDX), /* SENSOR_SP80708 10 */
Jean-Francois Moine577cbf42008-12-05 06:18:37 -0300287};
288
Jean-Francois Moine64677572009-12-20 12:31:28 -0300289static const struct v4l2_pix_format cif_mode[] = {
290 {352, 288, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
291 .bytesperline = 352,
292 .sizeimage = 352 * 288 * 4 / 8 + 590,
293 .colorspace = V4L2_COLORSPACE_JPEG,
294 .priv = 0},
295};
Jean-Francois Moinecc611b82008-12-29 07:49:41 -0300296static const struct v4l2_pix_format vga_mode[] = {
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300297 {160, 120, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
298 .bytesperline = 160,
Jean-Francois Moine5d052942008-09-03 16:48:09 -0300299 .sizeimage = 160 * 120 * 4 / 8 + 590,
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300300 .colorspace = V4L2_COLORSPACE_JPEG,
301 .priv = 2},
302 {320, 240, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
303 .bytesperline = 320,
304 .sizeimage = 320 * 240 * 3 / 8 + 590,
305 .colorspace = V4L2_COLORSPACE_JPEG,
306 .priv = 1},
307 {640, 480, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
308 .bytesperline = 640,
Hans de Goedea5d1cc32009-06-18 06:03:20 -0300309 /* Note 3 / 8 is not large enough, not even 5 / 8 is ?! */
310 .sizeimage = 640 * 480 * 3 / 4 + 590,
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300311 .colorspace = V4L2_COLORSPACE_JPEG,
312 .priv = 0},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300313};
314
Jean-Francois Moine64677572009-12-20 12:31:28 -0300315static const u8 sn_adcm1700[0x1c] = {
316/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
317 0x00, 0x42, 0x60, 0x00, 0x1a, 0x20, 0x20, 0x20,
318/* reg8 reg9 rega regb regc regd rege regf */
319 0x80, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
320/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
321 0x03, 0x00, 0x05, 0x01, 0x05, 0x16, 0x12, 0x42,
322/* reg18 reg19 reg1a reg1b */
323 0x06, 0x00, 0x00, 0x00
324};
325
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300326/*Data from sn9c102p+hv7131r */
327static const u8 sn_hv7131[0x1c] = {
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300328/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
329 0x00, 0x03, 0x64, 0x00, 0x1a, 0x20, 0x20, 0x20,
330/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300331 0x81, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300332/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
333 0x03, 0x00, 0x00, 0x01, 0x03, 0x28, 0x1e, 0x41,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300334/* reg18 reg19 reg1a reg1b */
335 0x0a, 0x00, 0x00, 0x00
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300336};
337
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300338static const u8 sn_mi0360[0x1c] = {
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300339/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
340 0x00, 0x61, 0x44, 0x00, 0x1a, 0x20, 0x20, 0x20,
341/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300342 0x81, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300343/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
344 0x03, 0x00, 0x00, 0x02, 0x0a, 0x28, 0x1e, 0x61,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300345/* reg18 reg19 reg1a reg1b */
346 0x06, 0x00, 0x00, 0x00
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300347};
348
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300349static const u8 sn_mo4000[0x1c] = {
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300350/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300351 0x00, 0x23, 0x60, 0x00, 0x1a, 0x00, 0x20, 0x18,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300352/* reg8 reg9 rega regb regc regd rege regf */
353 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
354/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
355 0x03, 0x00, 0x0b, 0x0f, 0x14, 0x28, 0x1e, 0x40,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300356/* reg18 reg19 reg1a reg1b */
357 0x08, 0x00, 0x00, 0x00
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300358};
359
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300360static const u8 sn_mt9v111[0x1c] = {
361/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
362 0x00, 0x61, 0x40, 0x00, 0x1a, 0x20, 0x20, 0x20,
363/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300364 0x81, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300365/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
366 0x03, 0x00, 0x00, 0x02, 0x1c, 0x28, 0x1e, 0x40,
367/* reg18 reg19 reg1a reg1b */
368 0x06, 0x00, 0x00, 0x00
369};
370
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300371static const u8 sn_om6802[0x1c] = {
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300372/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Amauri Magagna46b4f2a2009-10-17 07:21:29 -0300373 0x00, 0x23, 0x72, 0x00, 0x1a, 0x20, 0x20, 0x19,
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300374/* reg8 reg9 rega regb regc regd rege regf */
375 0x80, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
376/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
377 0x03, 0x00, 0x51, 0x01, 0x00, 0x28, 0x1e, 0x40,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300378/* reg18 reg19 reg1a reg1b */
379 0x05, 0x00, 0x00, 0x00
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300380};
381
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300382static const u8 sn_ov7630[0x1c] = {
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300383/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
384 0x00, 0x21, 0x40, 0x00, 0x1a, 0x20, 0x1f, 0x20,
385/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300386 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300387/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
388 0x03, 0x00, 0x04, 0x01, 0x0a, 0x28, 0x1e, 0xc2,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300389/* reg18 reg19 reg1a reg1b */
390 0x0b, 0x00, 0x00, 0x00
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300391};
392
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300393static const u8 sn_ov7648[0x1c] = {
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300394/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-Francois Moine62703302008-11-11 08:42:56 -0300395 0x00, 0x63, 0x40, 0x00, 0x1a, 0x20, 0x20, 0x20,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300396/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300397 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300398/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
Jean-Francois Moine62703302008-11-11 08:42:56 -0300399 0x03, 0x00, 0x00, 0x01, 0x00, 0x28, 0x1e, 0x00,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300400/* reg18 reg19 reg1a reg1b */
401 0x0b, 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_ov7660[0x1c] = {
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300405/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-Francois Moinec8b9b2c2009-04-26 14:46:12 -0300406 0x00, 0x61, 0x40, 0x00, 0x1a, 0x00, 0x00, 0x00,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300407/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moinec8b9b2c2009-04-26 14:46:12 -0300408 0x81, 0x21, 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, 0x01, 0x01, 0x08, 0x28, 0x1e, 0x20,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300411/* reg18 reg19 reg1a reg1b */
412 0x07, 0x00, 0x00, 0x00
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300413};
414
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -0300415static const u8 sn_po1030[0x1c] = {
416/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
417 0x00, 0x21, 0x62, 0x00, 0x1a, 0x20, 0x20, 0x20,
418/* reg8 reg9 rega regb regc regd rege regf */
419 0x81, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
420/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
421 0x03, 0x00, 0x00, 0x06, 0x06, 0x28, 0x1e, 0x00,
422/* reg18 reg19 reg1a reg1b */
423 0x07, 0x00, 0x00, 0x00
424};
425
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -0300426static const u8 sn_sp80708[0x1c] = {
427/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
428 0x00, 0x63, 0x60, 0x00, 0x1a, 0x20, 0x20, 0x20,
429/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300430 0x81, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -0300431/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
432 0x03, 0x00, 0x00, 0x03, 0x04, 0x28, 0x1e, 0x00,
433/* reg18 reg19 reg1a reg1b */
434 0x07, 0x00, 0x00, 0x00
435};
436
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300437/* sequence specific to the sensors - !! index = SENSOR_xxx */
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300438static const u8 *sn_tb[] = {
Jean-Francois Moine64677572009-12-20 12:31:28 -0300439 sn_adcm1700,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300440 sn_hv7131,
441 sn_mi0360,
442 sn_mo4000,
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300443 sn_mt9v111,
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300444 sn_om6802,
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300445 sn_ov7630,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300446 sn_ov7648,
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -0300447 sn_ov7660,
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -0300448 sn_po1030,
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -0300449 sn_sp80708
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300450};
451
Jean-Francois Moineb083b922009-02-01 14:20:07 -0300452/* default gamma table */
Jean-Francois Moine98819182009-01-19 07:37:33 -0300453static const u8 gamma_def[17] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300454 0x00, 0x2d, 0x46, 0x5a, 0x6c, 0x7c, 0x8b, 0x99,
455 0xa6, 0xb2, 0xbf, 0xca, 0xd5, 0xe0, 0xeb, 0xf5, 0xff
456};
Jean-Francois Moine64677572009-12-20 12:31:28 -0300457/* gamma for sensor ADCM1700 */
458static const u8 gamma_spec_0[17] = {
459 0x0f, 0x39, 0x5a, 0x74, 0x86, 0x95, 0xa6, 0xb4,
460 0xbd, 0xc4, 0xcc, 0xd4, 0xd5, 0xde, 0xe4, 0xed, 0xf5
461};
Jean-Francois Moineb083b922009-02-01 14:20:07 -0300462/* gamma for sensors HV7131R and MT9V111 */
463static const u8 gamma_spec_1[17] = {
464 0x08, 0x3a, 0x52, 0x65, 0x75, 0x83, 0x91, 0x9d,
465 0xa9, 0xb4, 0xbe, 0xc8, 0xd2, 0xdb, 0xe4, 0xed, 0xf5
466};
467/* gamma for sensor SP80708 */
468static const u8 gamma_spec_2[17] = {
469 0x0a, 0x2d, 0x4e, 0x68, 0x7d, 0x8f, 0x9f, 0xab,
470 0xb7, 0xc2, 0xcc, 0xd3, 0xd8, 0xde, 0xe2, 0xe5, 0xe6
471};
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -0300472
Jean-Francois Moine803f9cc2008-10-04 14:17:02 -0300473/* color matrix and offsets */
Jean-Francois Moine98819182009-01-19 07:37:33 -0300474static const u8 reg84[] = {
Jean-Francois Moine803f9cc2008-10-04 14:17:02 -0300475 0x14, 0x00, 0x27, 0x00, 0x07, 0x00, /* YR YG YB gains */
476 0xe8, 0x0f, 0xda, 0x0f, 0x40, 0x00, /* UR UG UB */
477 0x3e, 0x00, 0xcd, 0x0f, 0xf7, 0x0f, /* VR VG VB */
478 0x00, 0x00, 0x00 /* YUV offsets */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300479};
Jean-Francois Moine64677572009-12-20 12:31:28 -0300480static const u8 adcm1700_sensor_init[][8] = {
481 {0xa0, 0x51, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x10},
482 {0xb0, 0x51, 0x04, 0x08, 0x00, 0x00, 0x00, 0x10},
483 {0xdd, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
484 {0xb0, 0x51, 0x04, 0x00, 0x00, 0x00, 0x00, 0x10},
485 {0xdd, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
486 {0xb0, 0x51, 0x0c, 0xe0, 0x2e, 0x00, 0x00, 0x10},
487 {0xb0, 0x51, 0x10, 0x02, 0x02, 0x00, 0x00, 0x10},
488 {0xb0, 0x51, 0x14, 0x0e, 0x0e, 0x00, 0x00, 0x10},
489 {0xb0, 0x51, 0x1c, 0x00, 0x80, 0x00, 0x00, 0x10},
490 {0xb0, 0x51, 0x20, 0x01, 0x00, 0x00, 0x00, 0x10},
491 {0xdd, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
492 {0xb0, 0x51, 0x04, 0x04, 0x00, 0x00, 0x00, 0x10},
493 {0xdd, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
494 {0xb0, 0x51, 0x04, 0x01, 0x00, 0x00, 0x00, 0x10},
495 {0xa0, 0x51, 0xfe, 0x10, 0x00, 0x00, 0x00, 0x10},
496 {0xb0, 0x51, 0x14, 0x01, 0x00, 0x00, 0x00, 0x10},
497 {0xb0, 0x51, 0x32, 0x00, 0x00, 0x00, 0x00, 0x10},
498 {}
499};
500static const u8 adcm1700_sensor_param1[][8] = {
501 {0xb0, 0x51, 0x26, 0xf9, 0x01, 0x00, 0x00, 0x10},
502 {0xd0, 0x51, 0x1e, 0x8e, 0x8e, 0x8e, 0x8e, 0x10},
503
504 {0xa0, 0x51, 0xfe, 0x01, 0x00, 0x00, 0x00, 0x10},
505 {0xb0, 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10},
506 {0xa0, 0x51, 0xfe, 0x10, 0x00, 0x00, 0x00, 0x10},
507 {0xb0, 0x51, 0x32, 0x00, 0x72, 0x00, 0x00, 0x10},
508 {0xd0, 0x51, 0x1e, 0x8e, 0x91, 0x91, 0x8e, 0x10},
509
510 {}
511};
Jean-Francois Moine98819182009-01-19 07:37:33 -0300512static const u8 hv7131r_sensor_init[][8] = {
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300513 {0xc1, 0x11, 0x01, 0x08, 0x01, 0x00, 0x00, 0x10},
514 {0xb1, 0x11, 0x34, 0x17, 0x7f, 0x00, 0x00, 0x10},
515 {0xd1, 0x11, 0x40, 0xff, 0x7f, 0x7f, 0x7f, 0x10},
516/* {0x91, 0x11, 0x44, 0x00, 0x00, 0x00, 0x00, 0x10}, */
517 {0xd1, 0x11, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
518 {0xd1, 0x11, 0x14, 0x01, 0xe2, 0x02, 0x82, 0x10},
519/* {0x91, 0x11, 0x18, 0x00, 0x00, 0x00, 0x00, 0x10}, */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300520
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300521 {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
522 {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
523 {0xc1, 0x11, 0x25, 0x00, 0x61, 0xa8, 0x00, 0x10},
524 {0xa1, 0x11, 0x30, 0x22, 0x00, 0x00, 0x00, 0x10},
525 {0xc1, 0x11, 0x31, 0x20, 0x2e, 0x20, 0x00, 0x10},
526 {0xc1, 0x11, 0x25, 0x00, 0xc3, 0x50, 0x00, 0x10},
527 {0xa1, 0x11, 0x30, 0x07, 0x00, 0x00, 0x00, 0x10}, /* gain14 */
528 {0xc1, 0x11, 0x31, 0x10, 0x10, 0x10, 0x00, 0x10}, /* r g b 101a10 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300529
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300530 {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
531 {0xa1, 0x11, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine7fb101a2009-10-22 06:27:14 -0300532 {0xa1, 0x11, 0x21, 0xd0, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300533 {0xa1, 0x11, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
534 {0xa1, 0x11, 0x23, 0x09, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300535
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300536 {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
537 {0xa1, 0x11, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
538 {0xa1, 0x11, 0x21, 0xd0, 0x00, 0x00, 0x00, 0x10},
539 {0xa1, 0x11, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
540 {0xa1, 0x11, 0x23, 0x10, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine23a98272009-11-02 09:10:25 -0300541 {0xa1, 0x11, 0x01, 0x18, 0x00, 0x00, 0x00, 0x10},
542 /* set sensor clock */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300543 {}
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300544};
Jean-Francois Moine98819182009-01-19 07:37:33 -0300545static const u8 mi0360_sensor_init[][8] = {
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300546 {0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10},
Jean-Francois Moine98819182009-01-19 07:37:33 -0300547 {0xb1, 0x5d, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x10},
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300548 {0xb1, 0x5d, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300549 {0xd1, 0x5d, 0x01, 0x00, 0x08, 0x00, 0x16, 0x10},
550 {0xd1, 0x5d, 0x03, 0x01, 0xe2, 0x02, 0x82, 0x10},
551 {0xd1, 0x5d, 0x05, 0x00, 0x09, 0x00, 0x53, 0x10},
552 {0xb1, 0x5d, 0x0d, 0x00, 0x02, 0x00, 0x00, 0x10},
553 {0xd1, 0x5d, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x10},
554 {0xd1, 0x5d, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x10},
555 {0xd1, 0x5d, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x10},
556 {0xd1, 0x5d, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
557 {0xd1, 0x5d, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
558 {0xd1, 0x5d, 0x14, 0x00, 0x00, 0x00, 0x00, 0x10},
559 {0xd1, 0x5d, 0x16, 0x00, 0x00, 0x00, 0x00, 0x10},
560 {0xd1, 0x5d, 0x18, 0x00, 0x00, 0x00, 0x00, 0x10},
561 {0xd1, 0x5d, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x10},
562 {0xd1, 0x5d, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x10},
563 {0xb1, 0x5d, 0x32, 0x00, 0x00, 0x00, 0x00, 0x10},
564 {0xd1, 0x5d, 0x20, 0x91, 0x01, 0x00, 0x00, 0x10},
565 {0xd1, 0x5d, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
566 {0xd1, 0x5d, 0x24, 0x00, 0x00, 0x00, 0x00, 0x10},
567 {0xd1, 0x5d, 0x26, 0x00, 0x00, 0x00, 0x24, 0x10},
Jean-Francois Moine98819182009-01-19 07:37:33 -0300568 {0xd1, 0x5d, 0x2f, 0xf7, 0xB0, 0x00, 0x04, 0x10},
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300569 {0xd1, 0x5d, 0x31, 0x00, 0x00, 0x00, 0x00, 0x10},
570 {0xd1, 0x5d, 0x33, 0x00, 0x00, 0x01, 0x00, 0x10},
571 {0xb1, 0x5d, 0x3d, 0x06, 0x8f, 0x00, 0x00, 0x10},
572 {0xd1, 0x5d, 0x40, 0x01, 0xe0, 0x00, 0xd1, 0x10},
573 {0xb1, 0x5d, 0x44, 0x00, 0x82, 0x00, 0x00, 0x10},
574 {0xd1, 0x5d, 0x58, 0x00, 0x78, 0x00, 0x43, 0x10},
575 {0xd1, 0x5d, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x10},
576 {0xd1, 0x5d, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x10},
577 {0xd1, 0x5d, 0x5e, 0x00, 0x00, 0xa3, 0x1d, 0x10},
578 {0xb1, 0x5d, 0x62, 0x04, 0x11, 0x00, 0x00, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300579
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300580 {0xb1, 0x5d, 0x20, 0x91, 0x01, 0x00, 0x00, 0x10},
581 {0xb1, 0x5d, 0x20, 0x11, 0x01, 0x00, 0x00, 0x10},
582 {0xb1, 0x5d, 0x09, 0x00, 0x64, 0x00, 0x00, 0x10},
583 {0xd1, 0x5d, 0x2b, 0x00, 0xa0, 0x00, 0xb0, 0x10},
584 {0xd1, 0x5d, 0x2d, 0x00, 0xa0, 0x00, 0xa0, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300585
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300586 {0xb1, 0x5d, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x10}, /* sensor clck ?2 */
587 {0xb1, 0x5d, 0x06, 0x00, 0x30, 0x00, 0x00, 0x10},
588 {0xb1, 0x5d, 0x05, 0x00, 0x0a, 0x00, 0x00, 0x10},
589 {0xb1, 0x5d, 0x09, 0x02, 0x35, 0x00, 0x00, 0x10}, /* exposure 2 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300590
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300591 {0xd1, 0x5d, 0x2b, 0x00, 0xb9, 0x00, 0xe3, 0x10},
592 {0xd1, 0x5d, 0x2d, 0x00, 0x5f, 0x00, 0xb9, 0x10}, /* 42 */
593/* {0xb1, 0x5d, 0x35, 0x00, 0x67, 0x00, 0x00, 0x10}, * gain orig */
594/* {0xb1, 0x5d, 0x35, 0x00, 0x20, 0x00, 0x00, 0x10}, * gain */
595 {0xb1, 0x5d, 0x07, 0x00, 0x03, 0x00, 0x00, 0x10}, /* update */
596 {0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10}, /* sensor on */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300597 {}
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300598};
Jean-Francois Moine98819182009-01-19 07:37:33 -0300599static const u8 mo4000_sensor_init[][8] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300600 {0xa1, 0x21, 0x01, 0x02, 0x00, 0x00, 0x00, 0x10},
601 {0xa1, 0x21, 0x02, 0x00, 0x00, 0x00, 0x00, 0x10},
602 {0xa1, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
603 {0xa1, 0x21, 0x04, 0x00, 0x00, 0x00, 0x00, 0x10},
604 {0xa1, 0x21, 0x05, 0x00, 0x00, 0x00, 0x00, 0x10},
605 {0xa1, 0x21, 0x05, 0x04, 0x00, 0x00, 0x00, 0x10},
606 {0xa1, 0x21, 0x06, 0x80, 0x00, 0x00, 0x00, 0x10},
607 {0xa1, 0x21, 0x06, 0x81, 0x00, 0x00, 0x00, 0x10},
608 {0xa1, 0x21, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x10},
609 {0xa1, 0x21, 0x11, 0x00, 0x00, 0x00, 0x00, 0x10},
610 {0xa1, 0x21, 0x11, 0x20, 0x00, 0x00, 0x00, 0x10},
611 {0xa1, 0x21, 0x11, 0x30, 0x00, 0x00, 0x00, 0x10},
612 {0xa1, 0x21, 0x11, 0x38, 0x00, 0x00, 0x00, 0x10},
613 {0xa1, 0x21, 0x11, 0x38, 0x00, 0x00, 0x00, 0x10},
614 {0xa1, 0x21, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
615 {0xa1, 0x21, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
616 {0xa1, 0x21, 0x0f, 0x20, 0x00, 0x00, 0x00, 0x10},
617 {0xa1, 0x21, 0x10, 0x20, 0x00, 0x00, 0x00, 0x10},
618 {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
619 {0xa1, 0x21, 0x11, 0x38, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300620 {}
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300621};
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300622static const u8 mt9v111_sensor_init[][8] = {
623 {0xb1, 0x5c, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x10}, /* reset? */
Jean-Francois Moine23a98272009-11-02 09:10:25 -0300624 {0xdd, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300625 {0xb1, 0x5c, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x10},
626 {0xb1, 0x5c, 0x01, 0x00, 0x01, 0x00, 0x00, 0x10}, /* IFP select */
627 {0xb1, 0x5c, 0x08, 0x04, 0x80, 0x00, 0x00, 0x10}, /* output fmt ctrl */
628 {0xb1, 0x5c, 0x06, 0x00, 0x00, 0x00, 0x00, 0x10}, /* op mode ctrl */
Jean-Francois Moine2687a2f2009-02-01 14:48:55 -0300629 {0xb1, 0x5c, 0x02, 0x00, 0x16, 0x00, 0x00, 0x10},
630 {0xb1, 0x5c, 0x03, 0x01, 0xe1, 0x00, 0x00, 0x10},
631 {0xb1, 0x5c, 0x04, 0x02, 0x81, 0x00, 0x00, 0x10},
632 {0xb1, 0x5c, 0x05, 0x00, 0x04, 0x00, 0x00, 0x10},
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300633 {0xb1, 0x5c, 0x01, 0x00, 0x04, 0x00, 0x00, 0x10}, /* sensor select */
Jean-Francois Moine2687a2f2009-02-01 14:48:55 -0300634 {0xb1, 0x5c, 0x02, 0x00, 0x16, 0x00, 0x00, 0x10},
635 {0xb1, 0x5c, 0x03, 0x01, 0xe6, 0x00, 0x00, 0x10},
636 {0xb1, 0x5c, 0x04, 0x02, 0x86, 0x00, 0x00, 0x10},
637 {0xb1, 0x5c, 0x05, 0x00, 0x04, 0x00, 0x00, 0x10},
638 {0xb1, 0x5c, 0x06, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300639 {0xb1, 0x5c, 0x08, 0x00, 0x08, 0x00, 0x00, 0x10}, /* row start */
Jean-Francois Moine2687a2f2009-02-01 14:48:55 -0300640 {0xb1, 0x5c, 0x0e, 0x00, 0x08, 0x00, 0x00, 0x10},
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300641 {0xb1, 0x5c, 0x02, 0x00, 0x16, 0x00, 0x00, 0x10}, /* col start */
642 {0xb1, 0x5c, 0x03, 0x01, 0xe7, 0x00, 0x00, 0x10}, /* window height */
643 {0xb1, 0x5c, 0x04, 0x02, 0x87, 0x00, 0x00, 0x10}, /* window width */
644 {0xb1, 0x5c, 0x07, 0x30, 0x02, 0x00, 0x00, 0x10}, /* output ctrl */
645 {0xb1, 0x5c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x10}, /* shutter delay */
646 {0xb1, 0x5c, 0x12, 0x00, 0xb0, 0x00, 0x00, 0x10}, /* zoom col start */
647 {0xb1, 0x5c, 0x13, 0x00, 0x7c, 0x00, 0x00, 0x10}, /* zoom row start */
648 {0xb1, 0x5c, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x10}, /* digital zoom */
649 {0xb1, 0x5c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10}, /* read mode */
650 {0xb1, 0x5c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300651 {}
652};
653static const u8 mt9v111_sensor_param1[][8] = {
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300654 {0xb1, 0x5c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
655 {0xb1, 0x5c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine2687a2f2009-02-01 14:48:55 -0300656 {0xb1, 0x5c, 0x09, 0x01, 0x2c, 0x00, 0x00, 0x10},
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300657 {0xd1, 0x5c, 0x2b, 0x00, 0x33, 0x00, 0xa0, 0x10}, /* green1 gain */
658 {0xd1, 0x5c, 0x2d, 0x00, 0xa0, 0x00, 0x33, 0x10}, /* red gain */
659 /*******/
660 {0xb1, 0x5c, 0x06, 0x00, 0x1e, 0x00, 0x00, 0x10}, /* vert blanking */
661 {0xb1, 0x5c, 0x05, 0x00, 0x0a, 0x00, 0x00, 0x10}, /* horiz blanking */
662 {0xd1, 0x5c, 0x2c, 0x00, 0xad, 0x00, 0xad, 0x10}, /* blue gain */
663 {0xb1, 0x5c, 0x35, 0x01, 0xc0, 0x00, 0x00, 0x10}, /* global gain */
664 {}
665};
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300666static const u8 om6802_init0[2][8] = {
667/*fixme: variable*/
668 {0xa0, 0x34, 0x29, 0x0e, 0x00, 0x00, 0x00, 0x10},
669 {0xa0, 0x34, 0x23, 0xb0, 0x00, 0x00, 0x00, 0x10},
670};
Jean-Francois Moine98819182009-01-19 07:37:33 -0300671static const u8 om6802_sensor_init[][8] = {
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300672 {0xa0, 0x34, 0xdf, 0x6d, 0x00, 0x00, 0x00, 0x10},
673 /* factory mode */
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300674 {0xa0, 0x34, 0xdd, 0x18, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moined5aa3852009-11-07 06:10:08 -0300675 /* output raw RGB */
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300676 {0xa0, 0x34, 0x5a, 0xc0, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300677/* {0xa0, 0x34, 0xfb, 0x11, 0x00, 0x00, 0x00, 0x10}, */
678 {0xa0, 0x34, 0xf0, 0x04, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moined5aa3852009-11-07 06:10:08 -0300679 /* auto-exposure speed (0) / white balance mode (auto RGB) */
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300680/* {0xa0, 0x34, 0xf1, 0x02, 0x00, 0x00, 0x00, 0x10},
681 * set color mode */
682/* {0xa0, 0x34, 0xfe, 0x5b, 0x00, 0x00, 0x00, 0x10},
683 * max AGC value in AE */
684/* {0xa0, 0x34, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x10},
685 * preset AGC */
686/* {0xa0, 0x34, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x10},
687 * preset brightness */
688/* {0xa0, 0x34, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x10},
689 * preset contrast */
690/* {0xa0, 0x34, 0xe8, 0x31, 0x00, 0x00, 0x00, 0x10},
691 * preset gamma */
692 {0xa0, 0x34, 0xe9, 0x0f, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moined5aa3852009-11-07 06:10:08 -0300693 /* luminance mode (0x4f -> AutoExpo on) */
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300694 {0xa0, 0x34, 0xe4, 0xff, 0x00, 0x00, 0x00, 0x10},
695 /* preset shutter */
696/* {0xa0, 0x34, 0xef, 0x00, 0x00, 0x00, 0x00, 0x10},
697 * auto frame rate */
698/* {0xa0, 0x34, 0xfb, 0xee, 0x00, 0x00, 0x00, 0x10}, */
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300699 {0xa0, 0x34, 0x5d, 0x80, 0x00, 0x00, 0x00, 0x10},
700 {}
701};
702static const u8 om6802_sensor_param1[][8] = {
703 {0xa0, 0x34, 0x71, 0x84, 0x00, 0x00, 0x00, 0x10},
704 {0xa0, 0x34, 0x72, 0x05, 0x00, 0x00, 0x00, 0x10},
705 {0xa0, 0x34, 0x68, 0x80, 0x00, 0x00, 0x00, 0x10},
706 {0xa0, 0x34, 0x69, 0x01, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300707 {}
708};
Jean-Francois Moine98819182009-01-19 07:37:33 -0300709static const u8 ov7630_sensor_init[][8] = {
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300710 {0xa1, 0x21, 0x76, 0x01, 0x00, 0x00, 0x00, 0x10},
711 {0xa1, 0x21, 0x12, 0xc8, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine23a98272009-11-02 09:10:25 -0300712 {0xdd, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300713 {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
714 {0xa1, 0x21, 0x12, 0xc8, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine23a98272009-11-02 09:10:25 -0300715 {0xdd, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300716 {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine05b809c2008-09-03 16:47:59 -0300717/* win: i2c_r from 00 to 80 */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300718 {0xd1, 0x21, 0x03, 0x80, 0x10, 0x20, 0x80, 0x10},
719 {0xb1, 0x21, 0x0c, 0x20, 0x20, 0x00, 0x00, 0x10},
Hans de Goedecc7b5b52009-06-18 05:14:42 -0300720/* HDG: 0x11 was 0x00 change to 0x01 for better exposure (15 fps instead of 30)
721 0x13 was 0xc0 change to 0xc3 for auto gain and exposure */
722 {0xd1, 0x21, 0x11, 0x01, 0x48, 0xc3, 0x00, 0x10},
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300723 {0xb1, 0x21, 0x15, 0x80, 0x03, 0x00, 0x00, 0x10},
724 {0xd1, 0x21, 0x17, 0x1b, 0xbd, 0x05, 0xf6, 0x10},
725 {0xa1, 0x21, 0x1b, 0x04, 0x00, 0x00, 0x00, 0x10},
726 {0xd1, 0x21, 0x1f, 0x00, 0x80, 0x80, 0x80, 0x10},
727 {0xd1, 0x21, 0x23, 0xde, 0x10, 0x8a, 0xa0, 0x10},
728 {0xc1, 0x21, 0x27, 0xca, 0xa2, 0x74, 0x00, 0x10},
729 {0xd1, 0x21, 0x2a, 0x88, 0x00, 0x88, 0x01, 0x10},
730 {0xc1, 0x21, 0x2e, 0x80, 0x00, 0x18, 0x00, 0x10},
731 {0xa1, 0x21, 0x21, 0x08, 0x00, 0x00, 0x00, 0x10},
732 {0xa1, 0x21, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
733 {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10},
734 {0xb1, 0x21, 0x32, 0xc2, 0x08, 0x00, 0x00, 0x10},
735 {0xb1, 0x21, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x10},
736 {0xd1, 0x21, 0x60, 0x05, 0x40, 0x12, 0x57, 0x10},
737 {0xa1, 0x21, 0x64, 0x73, 0x00, 0x00, 0x00, 0x10},
738 {0xd1, 0x21, 0x65, 0x00, 0x55, 0x01, 0xac, 0x10},
739 {0xa1, 0x21, 0x69, 0x38, 0x00, 0x00, 0x00, 0x10},
740 {0xd1, 0x21, 0x6f, 0x1f, 0x01, 0x00, 0x10, 0x10},
741 {0xd1, 0x21, 0x73, 0x50, 0x20, 0x02, 0x01, 0x10},
742 {0xd1, 0x21, 0x77, 0xf3, 0x90, 0x98, 0x98, 0x10},
743 {0xc1, 0x21, 0x7b, 0x00, 0x4c, 0xf7, 0x00, 0x10},
744 {0xd1, 0x21, 0x17, 0x1b, 0xbd, 0x05, 0xf6, 0x10},
745 {0xa1, 0x21, 0x1b, 0x04, 0x00, 0x00, 0x00, 0x10},
746/* */
747 {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
748 {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
749/*fixme: + 0x12, 0x04*/
Jean-Francois Moine6c862742008-09-08 04:57:26 -0300750/* {0xa1, 0x21, 0x75, 0x82, 0x00, 0x00, 0x00, 0x10}, * COMN
751 * set by setvflip */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300752 {0xa1, 0x21, 0x10, 0x32, 0x00, 0x00, 0x00, 0x10},
753 {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
754 {0xb1, 0x21, 0x01, 0x80, 0x80, 0x00, 0x00, 0x10},
Jean-Francois Moine05b809c2008-09-03 16:47:59 -0300755/* */
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300756/* {0xa1, 0x21, 0x2a, 0x88, 0x00, 0x00, 0x00, 0x10}, * set by setfreq */
757/* {0xa1, 0x21, 0x2b, 0x34, 0x00, 0x00, 0x00, 0x10}, * set by setfreq */
Jean-Francois Moine05b809c2008-09-03 16:47:59 -0300758/* */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300759 {0xa1, 0x21, 0x10, 0x83, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine91de65a2008-09-03 17:12:18 -0300760/* {0xb1, 0x21, 0x01, 0x88, 0x70, 0x00, 0x00, 0x10}, */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300761 {}
762};
Jean-Francois Moine62703302008-11-11 08:42:56 -0300763
Jean-Francois Moine98819182009-01-19 07:37:33 -0300764static const u8 ov7648_sensor_init[][8] = {
Jean-Francois Moine62703302008-11-11 08:42:56 -0300765 {0xa1, 0x21, 0x76, 0x00, 0x00, 0x00, 0x00, 0x10},
766 {0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10}, /* reset */
Jean-Francois Moine23a98272009-11-02 09:10:25 -0300767 {0xdd, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
Jean-Francois Moine62703302008-11-11 08:42:56 -0300768 {0xa1, 0x21, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
769 {0xd1, 0x21, 0x03, 0xa4, 0x30, 0x88, 0x00, 0x10},
770 {0xb1, 0x21, 0x11, 0x80, 0x08, 0x00, 0x00, 0x10},
771 {0xc1, 0x21, 0x13, 0xa0, 0x04, 0x84, 0x00, 0x10},
772 {0xd1, 0x21, 0x17, 0x1a, 0x02, 0xba, 0xf4, 0x10},
773 {0xa1, 0x21, 0x1b, 0x04, 0x00, 0x00, 0x00, 0x10},
774 {0xd1, 0x21, 0x1f, 0x41, 0xc0, 0x80, 0x80, 0x10},
775 {0xd1, 0x21, 0x23, 0xde, 0xa0, 0x80, 0x32, 0x10},
776 {0xd1, 0x21, 0x27, 0xfe, 0xa0, 0x00, 0x91, 0x10},
777 {0xd1, 0x21, 0x2b, 0x00, 0x88, 0x85, 0x80, 0x10},
778 {0xc1, 0x21, 0x2f, 0x9c, 0x00, 0xc4, 0x00, 0x10},
779 {0xd1, 0x21, 0x60, 0xa6, 0x60, 0x88, 0x12, 0x10},
780 {0xd1, 0x21, 0x64, 0x88, 0x00, 0x00, 0x94, 0x10},
781 {0xd1, 0x21, 0x68, 0x7a, 0x0c, 0x00, 0x00, 0x10},
782 {0xd1, 0x21, 0x6c, 0x11, 0x33, 0x22, 0x00, 0x10},
783 {0xd1, 0x21, 0x70, 0x11, 0x00, 0x10, 0x50, 0x10},
784 {0xd1, 0x21, 0x74, 0x20, 0x06, 0x00, 0xb5, 0x10},
785 {0xd1, 0x21, 0x78, 0x8a, 0x00, 0x00, 0x00, 0x10},
786 {0xb1, 0x21, 0x7c, 0x00, 0x43, 0x00, 0x00, 0x10},
787
788 {0xd1, 0x21, 0x21, 0x86, 0x00, 0xde, 0xa0, 0x10},
789/* {0xd1, 0x21, 0x25, 0x80, 0x32, 0xfe, 0xa0, 0x10}, jfm done */
790/* {0xd1, 0x21, 0x29, 0x00, 0x91, 0x00, 0x88, 0x10}, jfm done */
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300791/* {0xb1, 0x21, 0x2d, 0x85, 0x00, 0x00, 0x00, 0x10}, set by setfreq */
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300792 {}
793};
794static const u8 ov7648_sensor_param1[][8] = {
Jean-Francois Moine62703302008-11-11 08:42:56 -0300795/* {0xa1, 0x21, 0x12, 0x08, 0x00, 0x00, 0x00, 0x10}, jfm done */
Jean-Francois Moine2797ba22009-02-05 15:12:24 -0300796/* {0xa1, 0x21, 0x75, 0x06, 0x00, 0x00, 0x00, 0x10}, * COMN
797 * set by setvflip */
Jean-Francois Moine62703302008-11-11 08:42:56 -0300798 {0xa1, 0x21, 0x19, 0x02, 0x00, 0x00, 0x00, 0x10},
799 {0xa1, 0x21, 0x10, 0x32, 0x00, 0x00, 0x00, 0x10},
800/* {0xa1, 0x21, 0x16, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
801/* {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10}, * GAIN - def */
802/* {0xb1, 0x21, 0x01, 0x6c, 0x6c, 0x00, 0x00, 0x10}, * B R - def: 80 */
803/*...*/
804 {0xa1, 0x21, 0x11, 0x81, 0x00, 0x00, 0x00, 0x10}, /* CLKRC */
805/* {0xa1, 0x21, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
806/* {0xa1, 0x21, 0x16, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
807/* {0xa1, 0x21, 0x2a, 0x91, 0x00, 0x00, 0x00, 0x10}, jfm done */
808/* {0xa1, 0x21, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
809/* {0xb1, 0x21, 0x01, 0x64, 0x84, 0x00, 0x00, 0x10}, * B R - def: 80 */
810
811 {}
812};
813
Jean-Francois Moine98819182009-01-19 07:37:33 -0300814static const u8 ov7660_sensor_init[][8] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300815 {0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10}, /* reset SCCB */
Jean-Francois Moine23a98272009-11-02 09:10:25 -0300816 {0xdd, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300817 {0xa1, 0x21, 0x12, 0x05, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine738608a2008-07-28 06:41:51 -0300818 /* Outformat = rawRGB */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300819 {0xa1, 0x21, 0x13, 0xb8, 0x00, 0x00, 0x00, 0x10}, /* init COM8 */
Jean-Francois Moined8f400e2009-07-08 06:33:44 -0300820 {0xd1, 0x21, 0x00, 0x01, 0x74, 0x92, 0x00, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300821 /* GAIN BLUE RED VREF */
822 {0xd1, 0x21, 0x04, 0x00, 0x7d, 0x62, 0x00, 0x10},
823 /* COM 1 BAVE GEAVE AECHH */
824 {0xb1, 0x21, 0x08, 0x83, 0x01, 0x00, 0x00, 0x10}, /* RAVE COM2 */
825 {0xd1, 0x21, 0x0c, 0x00, 0x08, 0x04, 0x4f, 0x10}, /* COM 3 4 5 6 */
Jean-Francois Moine47f7f6f2009-08-25 06:14:54 -0300826 {0xd1, 0x21, 0x10, 0x7f, 0x40, 0x05, 0xff, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300827 /* AECH CLKRC COM7 COM8 */
828 {0xc1, 0x21, 0x14, 0x2c, 0x00, 0x02, 0x00, 0x10}, /* COM9 COM10 */
829 {0xd1, 0x21, 0x17, 0x10, 0x60, 0x02, 0x7b, 0x10},
830 /* HSTART HSTOP VSTRT VSTOP */
831 {0xa1, 0x21, 0x1b, 0x02, 0x00, 0x00, 0x00, 0x10}, /* PSHFT */
832 {0xb1, 0x21, 0x1e, 0x01, 0x0e, 0x00, 0x00, 0x10}, /* MVFP LAEC */
833 {0xd1, 0x21, 0x20, 0x07, 0x07, 0x07, 0x07, 0x10},
834 /* BOS GBOS GROS ROS (BGGR offset) */
Jean-Francois Moine738608a2008-07-28 06:41:51 -0300835/* {0xd1, 0x21, 0x24, 0x68, 0x58, 0xd4, 0x80, 0x10}, */
836 {0xd1, 0x21, 0x24, 0x78, 0x68, 0xd4, 0x80, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300837 /* AEW AEB VPT BBIAS */
838 {0xd1, 0x21, 0x28, 0x80, 0x30, 0x00, 0x00, 0x10},
839 /* GbBIAS RSVD EXHCH EXHCL */
840 {0xd1, 0x21, 0x2c, 0x80, 0x00, 0x00, 0x62, 0x10},
841 /* RBIAS ADVFL ASDVFH YAVE */
842 {0xc1, 0x21, 0x30, 0x08, 0x30, 0xb4, 0x00, 0x10},
843 /* HSYST HSYEN HREF */
844 {0xd1, 0x21, 0x33, 0x00, 0x07, 0x84, 0x00, 0x10}, /* reserved */
845 {0xd1, 0x21, 0x37, 0x0c, 0x02, 0x43, 0x00, 0x10},
846 /* ADC ACOM OFON TSLB */
847 {0xd1, 0x21, 0x3b, 0x02, 0x6c, 0x19, 0x0e, 0x10},
848 /* COM11 COM12 COM13 COM14 */
849 {0xd1, 0x21, 0x3f, 0x41, 0xc1, 0x22, 0x08, 0x10},
850 /* EDGE COM15 COM16 COM17 */
851 {0xd1, 0x21, 0x43, 0xf0, 0x10, 0x78, 0xa8, 0x10}, /* reserved */
852 {0xd1, 0x21, 0x47, 0x60, 0x80, 0x00, 0x00, 0x10}, /* reserved */
853 {0xd1, 0x21, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x10}, /* reserved */
854 {0xd1, 0x21, 0x4f, 0x46, 0x36, 0x0f, 0x17, 0x10}, /* MTX 1 2 3 4 */
855 {0xd1, 0x21, 0x53, 0x7f, 0x96, 0x40, 0x40, 0x10}, /* MTX 5 6 7 8 */
856 {0xb1, 0x21, 0x57, 0x40, 0x0f, 0x00, 0x00, 0x10}, /* MTX9 MTXS */
857 {0xd1, 0x21, 0x59, 0xba, 0x9a, 0x22, 0xb9, 0x10}, /* reserved */
858 {0xd1, 0x21, 0x5d, 0x9b, 0x10, 0xf0, 0x05, 0x10}, /* reserved */
859 {0xa1, 0x21, 0x61, 0x60, 0x00, 0x00, 0x00, 0x10}, /* reserved */
860 {0xd1, 0x21, 0x62, 0x00, 0x00, 0x50, 0x30, 0x10},
861 /* LCC1 LCC2 LCC3 LCC4 */
862 {0xa1, 0x21, 0x66, 0x00, 0x00, 0x00, 0x00, 0x10}, /* LCC5 */
Jean-Francois Moine738608a2008-07-28 06:41:51 -0300863 {0xd1, 0x21, 0x67, 0x80, 0x7a, 0x90, 0x80, 0x10}, /* MANU */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300864 {0xa1, 0x21, 0x6b, 0x0a, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine738608a2008-07-28 06:41:51 -0300865 /* band gap reference [0:3] DBLV */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300866 {0xd1, 0x21, 0x6c, 0x30, 0x48, 0x80, 0x74, 0x10}, /* gamma curve */
867 {0xd1, 0x21, 0x70, 0x64, 0x60, 0x5c, 0x58, 0x10}, /* gamma curve */
868 {0xd1, 0x21, 0x74, 0x54, 0x4c, 0x40, 0x38, 0x10}, /* gamma curve */
869 {0xd1, 0x21, 0x78, 0x34, 0x30, 0x2f, 0x2b, 0x10}, /* gamma curve */
870 {0xd1, 0x21, 0x7c, 0x03, 0x07, 0x17, 0x34, 0x10}, /* gamma curve */
871 {0xd1, 0x21, 0x80, 0x41, 0x4d, 0x58, 0x63, 0x10}, /* gamma curve */
872 {0xd1, 0x21, 0x84, 0x6e, 0x77, 0x87, 0x95, 0x10}, /* gamma curve */
873 {0xc1, 0x21, 0x88, 0xaf, 0xc7, 0xdf, 0x00, 0x10}, /* gamma curve */
874 {0xc1, 0x21, 0x8b, 0x99, 0x99, 0xcf, 0x00, 0x10}, /* reserved */
Jean-Francois Moine738608a2008-07-28 06:41:51 -0300875 {0xb1, 0x21, 0x92, 0x00, 0x00, 0x00, 0x00, 0x10}, /* DM_LNL/H */
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300876/* not in all ms-win traces*/
Jean-Francois Moine47f7f6f2009-08-25 06:14:54 -0300877 {0xa1, 0x21, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300878 {}
879};
880static const u8 ov7660_sensor_param1[][8] = {
Jean-Francois Moine738608a2008-07-28 06:41:51 -0300881 {0xa1, 0x21, 0x1e, 0x01, 0x00, 0x00, 0x00, 0x10}, /* MVFP */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300882 /* bits[3..0]reserved */
883 {0xa1, 0x21, 0x1e, 0x01, 0x00, 0x00, 0x00, 0x10},
884 {0xa1, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
885 /* VREF vertical frame ctrl */
886 {0xa1, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine738608a2008-07-28 06:41:51 -0300887 {0xa1, 0x21, 0x10, 0x20, 0x00, 0x00, 0x00, 0x10}, /* AECH 0x20 */
888 {0xa1, 0x21, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x10}, /* ADVFL */
889 {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10}, /* ADVFH */
890 {0xa1, 0x21, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x10}, /* GAIN */
891/* {0xb1, 0x21, 0x01, 0x78, 0x78, 0x00, 0x00, 0x10}, * BLUE */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300892/****** (some exchanges in the win trace) ******/
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300893/*fixme:param2*/
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300894 {0xa1, 0x21, 0x93, 0x00, 0x00, 0x00, 0x00, 0x10},/* dummy line hight */
Jean-Francois Moine738608a2008-07-28 06:41:51 -0300895 {0xa1, 0x21, 0x92, 0x25, 0x00, 0x00, 0x00, 0x10}, /* dummy line low */
896 {0xa1, 0x21, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x10}, /* EXHCH */
897 {0xa1, 0x21, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10}, /* EXHCL */
898/* {0xa1, 0x21, 0x02, 0x90, 0x00, 0x00, 0x00, 0x10}, * RED */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300899/****** (some exchanges in the win trace) ******/
Jean-Francois Moine738608a2008-07-28 06:41:51 -0300900/******!! startsensor KO if changed !!****/
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300901/*fixme: param3*/
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300902 {0xa1, 0x21, 0x93, 0x01, 0x00, 0x00, 0x00, 0x10},
903 {0xa1, 0x21, 0x92, 0xff, 0x00, 0x00, 0x00, 0x10},
904 {0xa1, 0x21, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x10},
905 {0xa1, 0x21, 0x2b, 0xc3, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300906 {}
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300907};
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300908
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -0300909static const u8 po1030_sensor_init[][8] = {
910/* the sensor registers are described in m5602/m5602_po1030.h */
911 {0xa1, 0x6e, 0x3f, 0x20, 0x00, 0x00, 0x00, 0x10}, /* sensor reset */
912 {0xdd, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
913 {0xa1, 0x6e, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x10},
914 {0xa1, 0x6e, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x10},
915 {0xd1, 0x6e, 0x04, 0x02, 0xb1, 0x02, 0x39, 0x10},
916 {0xd1, 0x6e, 0x08, 0x00, 0x01, 0x00, 0x00, 0x10},
917 {0xd1, 0x6e, 0x0c, 0x02, 0x7f, 0x01, 0xe0, 0x10},
918 {0xd1, 0x6e, 0x12, 0x03, 0x02, 0x00, 0x03, 0x10},
919 {0xd1, 0x6e, 0x16, 0x85, 0x40, 0x4a, 0x40, 0x10}, /* r/g1/b/g2 gains */
920 {0xc1, 0x6e, 0x1a, 0x00, 0x80, 0x00, 0x00, 0x10},
921 {0xd1, 0x6e, 0x1d, 0x08, 0x03, 0x00, 0x00, 0x10},
922 {0xd1, 0x6e, 0x23, 0x00, 0xb0, 0x00, 0x94, 0x10},
923 {0xd1, 0x6e, 0x27, 0x58, 0x00, 0x00, 0x00, 0x10},
924 {0xb1, 0x6e, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10},
925 {0xd1, 0x6e, 0x2d, 0x14, 0x35, 0x61, 0x84, 0x10}, /* gamma corr */
926 {0xd1, 0x6e, 0x31, 0xa2, 0xbd, 0xd8, 0xff, 0x10},
927 {0xd1, 0x6e, 0x35, 0x06, 0x1e, 0x12, 0x02, 0x10}, /* color matrix */
928 {0xd1, 0x6e, 0x39, 0xaa, 0x53, 0x37, 0xd5, 0x10},
929 {0xa1, 0x6e, 0x3d, 0xf2, 0x00, 0x00, 0x00, 0x10},
930 {0xd1, 0x6e, 0x3e, 0x00, 0x00, 0x80, 0x03, 0x10},
931 {0xd1, 0x6e, 0x42, 0x03, 0x00, 0x00, 0x00, 0x10},
932 {0xc1, 0x6e, 0x46, 0x00, 0x80, 0x80, 0x00, 0x10},
933 {0xd1, 0x6e, 0x4b, 0x02, 0xef, 0x08, 0xcd, 0x10},
934 {0xd1, 0x6e, 0x4f, 0x00, 0xd0, 0x00, 0xa0, 0x10},
935 {0xd1, 0x6e, 0x53, 0x01, 0xaa, 0x01, 0x40, 0x10},
936 {0xd1, 0x6e, 0x5a, 0x50, 0x04, 0x30, 0x03, 0x10}, /* raw rgb bayer */
937 {0xa1, 0x6e, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x10},
938 {0xd1, 0x6e, 0x5f, 0x10, 0x40, 0xff, 0x00, 0x10},
939
940 {0xd1, 0x6e, 0x63, 0x40, 0x40, 0x00, 0x00, 0x10},
941 {0xd1, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x10},
942 {0xd1, 0x6e, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x10},
943 {0xd1, 0x6e, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x10},
944 {0xc1, 0x6e, 0x73, 0x10, 0x80, 0xeb, 0x00, 0x10},
945 {}
946};
947static const u8 po1030_sensor_param1[][8] = {
948/* from ms-win traces - these values change with auto gain/expo/wb.. */
949 {0xa1, 0x6e, 0x1e, 0x03, 0x00, 0x00, 0x00, 0x10},
950 {0xa1, 0x6e, 0x1e, 0x03, 0x00, 0x00, 0x00, 0x10},
951/* mean values */
952 {0xc1, 0x6e, 0x1a, 0x02, 0xd4, 0xa4, 0x00, 0x10}, /* integlines */
953 {0xa1, 0x6e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x10}, /* global gain */
954 {0xc1, 0x6e, 0x16, 0x40, 0x40, 0x40, 0x00, 0x10}, /* r/g1/b gains */
955
956 {0xa1, 0x6e, 0x1d, 0x08, 0x00, 0x00, 0x00, 0x10}, /* control1 */
957 {0xa1, 0x6e, 0x06, 0x02, 0x00, 0x00, 0x00, 0x10}, /* frameheight */
958 {0xa1, 0x6e, 0x07, 0xd5, 0x00, 0x00, 0x00, 0x10},
959/* {0xc1, 0x6e, 0x16, 0x49, 0x40, 0x45, 0x00, 0x10}, */
960 {}
961};
962
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -0300963static const u8 sp80708_sensor_init[][8] = {
964 {0xa1, 0x18, 0x06, 0xf9, 0x00, 0x00, 0x00, 0x10},
965 {0xa1, 0x18, 0x09, 0x1f, 0x00, 0x00, 0x00, 0x10},
966 {0xa1, 0x18, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x10},
967 {0xa1, 0x18, 0x0d, 0xc0, 0x00, 0x00, 0x00, 0x10},
968 {0xa1, 0x18, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x10},
969 {0xa1, 0x18, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x10},
970 {0xa1, 0x18, 0x10, 0x40, 0x00, 0x00, 0x00, 0x10},
971 {0xa1, 0x18, 0x11, 0x4e, 0x00, 0x00, 0x00, 0x10},
972 {0xa1, 0x18, 0x12, 0x53, 0x00, 0x00, 0x00, 0x10},
973 {0xa1, 0x18, 0x15, 0x80, 0x00, 0x00, 0x00, 0x10},
974 {0xa1, 0x18, 0x18, 0x18, 0x00, 0x00, 0x00, 0x10},
975 {0xa1, 0x18, 0x19, 0x18, 0x00, 0x00, 0x00, 0x10},
976 {0xa1, 0x18, 0x1a, 0x10, 0x00, 0x00, 0x00, 0x10},
977 {0xa1, 0x18, 0x1b, 0x10, 0x00, 0x00, 0x00, 0x10},
978 {0xa1, 0x18, 0x1c, 0x28, 0x00, 0x00, 0x00, 0x10},
979 {0xa1, 0x18, 0x1d, 0x02, 0x00, 0x00, 0x00, 0x10},
980 {0xa1, 0x18, 0x1e, 0x10, 0x00, 0x00, 0x00, 0x10},
981 {0xa1, 0x18, 0x26, 0x04, 0x00, 0x00, 0x00, 0x10},
982 {0xa1, 0x18, 0x27, 0x1e, 0x00, 0x00, 0x00, 0x10},
983 {0xa1, 0x18, 0x28, 0x5a, 0x00, 0x00, 0x00, 0x10},
984 {0xa1, 0x18, 0x29, 0x28, 0x00, 0x00, 0x00, 0x10},
985 {0xa1, 0x18, 0x2a, 0x78, 0x00, 0x00, 0x00, 0x10},
986 {0xa1, 0x18, 0x2b, 0x01, 0x00, 0x00, 0x00, 0x10},
987 {0xa1, 0x18, 0x2c, 0xf7, 0x00, 0x00, 0x00, 0x10},
988 {0xa1, 0x18, 0x2d, 0x2d, 0x00, 0x00, 0x00, 0x10},
989 {0xa1, 0x18, 0x2e, 0xd5, 0x00, 0x00, 0x00, 0x10},
990 {0xa1, 0x18, 0x39, 0x42, 0x00, 0x00, 0x00, 0x10},
991 {0xa1, 0x18, 0x3a, 0x67, 0x00, 0x00, 0x00, 0x10},
992 {0xa1, 0x18, 0x3b, 0x87, 0x00, 0x00, 0x00, 0x10},
993 {0xa1, 0x18, 0x3c, 0xa3, 0x00, 0x00, 0x00, 0x10},
994 {0xa1, 0x18, 0x3d, 0xb0, 0x00, 0x00, 0x00, 0x10},
995 {0xa1, 0x18, 0x3e, 0xbc, 0x00, 0x00, 0x00, 0x10},
996 {0xa1, 0x18, 0x3f, 0xc8, 0x00, 0x00, 0x00, 0x10},
997 {0xa1, 0x18, 0x40, 0xd4, 0x00, 0x00, 0x00, 0x10},
998 {0xa1, 0x18, 0x41, 0xdf, 0x00, 0x00, 0x00, 0x10},
999 {0xa1, 0x18, 0x42, 0xea, 0x00, 0x00, 0x00, 0x10},
1000 {0xa1, 0x18, 0x43, 0xf5, 0x00, 0x00, 0x00, 0x10},
1001 {0xa1, 0x18, 0x45, 0x80, 0x00, 0x00, 0x00, 0x10},
1002 {0xa1, 0x18, 0x46, 0x60, 0x00, 0x00, 0x00, 0x10},
1003 {0xa1, 0x18, 0x47, 0x50, 0x00, 0x00, 0x00, 0x10},
1004 {0xa1, 0x18, 0x48, 0x30, 0x00, 0x00, 0x00, 0x10},
1005 {0xa1, 0x18, 0x49, 0x01, 0x00, 0x00, 0x00, 0x10},
1006 {0xa1, 0x18, 0x4d, 0xae, 0x00, 0x00, 0x00, 0x10},
1007 {0xa1, 0x18, 0x4e, 0x03, 0x00, 0x00, 0x00, 0x10},
1008 {0xa1, 0x18, 0x4f, 0x66, 0x00, 0x00, 0x00, 0x10},
1009 {0xa1, 0x18, 0x50, 0x1c, 0x00, 0x00, 0x00, 0x10},
1010 {0xa1, 0x18, 0x44, 0x10, 0x00, 0x00, 0x00, 0x10},
1011 {0xa1, 0x18, 0x4a, 0x30, 0x00, 0x00, 0x00, 0x10},
1012 {0xa1, 0x18, 0x51, 0x80, 0x00, 0x00, 0x00, 0x10},
1013 {0xa1, 0x18, 0x52, 0x80, 0x00, 0x00, 0x00, 0x10},
1014 {0xa1, 0x18, 0x53, 0x80, 0x00, 0x00, 0x00, 0x10},
1015 {0xa1, 0x18, 0x54, 0x80, 0x00, 0x00, 0x00, 0x10},
1016 {0xa1, 0x18, 0x55, 0x80, 0x00, 0x00, 0x00, 0x10},
1017 {0xa1, 0x18, 0x56, 0x80, 0x00, 0x00, 0x00, 0x10},
1018 {0xa1, 0x18, 0x57, 0xe0, 0x00, 0x00, 0x00, 0x10},
1019 {0xa1, 0x18, 0x58, 0xc0, 0x00, 0x00, 0x00, 0x10},
1020 {0xa1, 0x18, 0x59, 0xab, 0x00, 0x00, 0x00, 0x10},
1021 {0xa1, 0x18, 0x5a, 0xa0, 0x00, 0x00, 0x00, 0x10},
1022 {0xa1, 0x18, 0x5b, 0x99, 0x00, 0x00, 0x00, 0x10},
1023 {0xa1, 0x18, 0x5c, 0x90, 0x00, 0x00, 0x00, 0x10},
1024 {0xa1, 0x18, 0x5e, 0x24, 0x00, 0x00, 0x00, 0x10},
1025 {0xa1, 0x18, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x10},
1026 {0xa1, 0x18, 0x60, 0x00, 0x00, 0x00, 0x00, 0x10},
1027 {0xa1, 0x18, 0x61, 0x73, 0x00, 0x00, 0x00, 0x10},
1028 {0xa1, 0x18, 0x63, 0x42, 0x00, 0x00, 0x00, 0x10},
1029 {0xa1, 0x18, 0x64, 0x42, 0x00, 0x00, 0x00, 0x10},
1030 {0xa1, 0x18, 0x65, 0x42, 0x00, 0x00, 0x00, 0x10},
1031 {0xa1, 0x18, 0x66, 0x24, 0x00, 0x00, 0x00, 0x10},
1032 {0xa1, 0x18, 0x67, 0x24, 0x00, 0x00, 0x00, 0x10},
1033 {0xa1, 0x18, 0x68, 0x08, 0x00, 0x00, 0x00, 0x10},
1034 {0xa1, 0x18, 0x2f, 0xc9, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001035 {}
1036};
1037static const u8 sp80708_sensor_param1[][8] = {
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03001038 {0xa1, 0x18, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x10},
1039 {0xa1, 0x18, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x10},
1040 {0xa1, 0x18, 0x03, 0x01, 0x00, 0x00, 0x00, 0x10},
1041 {0xa1, 0x18, 0x04, 0xa4, 0x00, 0x00, 0x00, 0x10},
1042 {0xa1, 0x18, 0x14, 0x3f, 0x00, 0x00, 0x00, 0x10},
1043 {0xa1, 0x18, 0x5d, 0x80, 0x00, 0x00, 0x00, 0x10},
1044 {0xb1, 0x18, 0x11, 0x40, 0x40, 0x00, 0x00, 0x10},
1045 {}
1046};
1047
Jean-Francois Moine64677572009-12-20 12:31:28 -03001048static const u8 (*sensor_init[11])[8] = {
1049 adcm1700_sensor_init, /* ADCM1700 0 */
1050 hv7131r_sensor_init, /* HV7131R 1 */
1051 mi0360_sensor_init, /* MI0360 2 */
1052 mo4000_sensor_init, /* MO4000 3 */
1053 mt9v111_sensor_init, /* MT9V111 4 */
1054 om6802_sensor_init, /* OM6802 5 */
1055 ov7630_sensor_init, /* OV7630 6 */
1056 ov7648_sensor_init, /* OV7648 7 */
1057 ov7660_sensor_init, /* OV7660 8 */
1058 po1030_sensor_init, /* PO1030 9 */
1059 sp80708_sensor_init, /* SP80708 10 */
Jean-Francois Moine23a98272009-11-02 09:10:25 -03001060};
1061
Jean-Francois Moine8295d992008-09-03 17:12:19 -03001062/* read <len> bytes to gspca_dev->usb_buf */
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001063static void reg_r(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03001064 u16 value, int len)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001065{
Jean-Francois Moine8295d992008-09-03 17:12:19 -03001066#ifdef GSPCA_DEBUG
1067 if (len > USB_BUF_SZ) {
1068 err("reg_r: buffer overflow");
1069 return;
1070 }
1071#endif
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001072 usb_control_msg(gspca_dev->dev,
1073 usb_rcvctrlpipe(gspca_dev->dev, 0),
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001074 0,
1075 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1076 value, 0,
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001077 gspca_dev->usb_buf, len,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001078 500);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001079 PDEBUG(D_USBI, "reg_r [%02x] -> %02x", value, gspca_dev->usb_buf[0]);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001080}
1081
Jean-Francois Moine60017612008-07-18 08:46:19 -03001082static void reg_w1(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03001083 u16 value,
1084 u8 data)
Jean-Francois Moine60017612008-07-18 08:46:19 -03001085{
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001086 PDEBUG(D_USBO, "reg_w1 [%04x] = %02x", value, data);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001087 gspca_dev->usb_buf[0] = data;
1088 usb_control_msg(gspca_dev->dev,
1089 usb_sndctrlpipe(gspca_dev->dev, 0),
1090 0x08,
1091 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1092 value,
1093 0,
1094 gspca_dev->usb_buf, 1,
1095 500);
1096}
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001097static void reg_w(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03001098 u16 value,
1099 const u8 *buffer,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001100 int len)
1101{
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001102 PDEBUG(D_USBO, "reg_w [%04x] = %02x %02x ..",
Jean-Francois Moine60017612008-07-18 08:46:19 -03001103 value, buffer[0], buffer[1]);
Jean-Francois Moine8295d992008-09-03 17:12:19 -03001104#ifdef GSPCA_DEBUG
1105 if (len > USB_BUF_SZ) {
1106 err("reg_w: buffer overflow");
1107 return;
Jean-Francois Moinebf7f0b92008-07-03 11:09:12 -03001108 }
Jean-Francois Moine8295d992008-09-03 17:12:19 -03001109#endif
1110 memcpy(gspca_dev->usb_buf, buffer, len);
1111 usb_control_msg(gspca_dev->dev,
1112 usb_sndctrlpipe(gspca_dev->dev, 0),
1113 0x08,
1114 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1115 value, 0,
1116 gspca_dev->usb_buf, len,
1117 500);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001118}
1119
Jean-Francois Moine60017612008-07-18 08:46:19 -03001120/* I2C write 1 byte */
Jean-Francois Moine98819182009-01-19 07:37:33 -03001121static void i2c_w1(struct gspca_dev *gspca_dev, u8 reg, u8 val)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001122{
1123 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001124
Jean-Francois Moine60017612008-07-18 08:46:19 -03001125 PDEBUG(D_USBO, "i2c_w2 [%02x] = %02x", reg, val);
Jean-Francois Moinea7826362009-11-02 09:21:06 -03001126 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03001127 case SENSOR_ADCM1700:
Jean-Francois Moinea7826362009-11-02 09:21:06 -03001128 case SENSOR_OM6802: /* i2c command = a0 (100 kHz) */
1129 gspca_dev->usb_buf[0] = 0x80 | (2 << 4);
1130 break;
1131 default: /* i2c command = a1 (400 kHz) */
1132 gspca_dev->usb_buf[0] = 0x81 | (2 << 4);
1133 break;
1134 }
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001135 gspca_dev->usb_buf[1] = sd->i2c_addr;
Jean-Francois Moine60017612008-07-18 08:46:19 -03001136 gspca_dev->usb_buf[2] = reg;
1137 gspca_dev->usb_buf[3] = val;
1138 gspca_dev->usb_buf[4] = 0;
1139 gspca_dev->usb_buf[5] = 0;
1140 gspca_dev->usb_buf[6] = 0;
1141 gspca_dev->usb_buf[7] = 0x10;
1142 usb_control_msg(gspca_dev->dev,
1143 usb_sndctrlpipe(gspca_dev->dev, 0),
1144 0x08,
1145 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1146 0x08, /* value = i2c */
1147 0,
1148 gspca_dev->usb_buf, 8,
1149 500);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001150}
1151
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001152/* I2C write 8 bytes */
1153static void i2c_w8(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03001154 const u8 *buffer)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001155{
Jean-Francois Moine60017612008-07-18 08:46:19 -03001156 memcpy(gspca_dev->usb_buf, buffer, 8);
1157 usb_control_msg(gspca_dev->dev,
1158 usb_sndctrlpipe(gspca_dev->dev, 0),
1159 0x08,
1160 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1161 0x08, 0, /* value, index */
1162 gspca_dev->usb_buf, 8,
1163 500);
Jean-Francois Moine8d768e12008-09-21 03:28:55 -03001164 msleep(2);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001165}
1166
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001167/* sensor read 'len' (1..5) bytes in gspca_dev->usb_buf */
1168static void i2c_r(struct gspca_dev *gspca_dev, u8 reg, int len)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001169{
1170 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine98819182009-01-19 07:37:33 -03001171 u8 mode[8];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001172
Jean-Francois Moinea7826362009-11-02 09:21:06 -03001173 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03001174 case SENSOR_ADCM1700:
Jean-Francois Moinea7826362009-11-02 09:21:06 -03001175 case SENSOR_OM6802: /* i2c command = 90 (100 kHz) */
1176 mode[0] = 0x80 | 0x10;
1177 break;
1178 default: /* i2c command = 91 (400 kHz) */
1179 mode[0] = 0x81 | 0x10;
1180 break;
1181 }
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001182 mode[1] = sd->i2c_addr;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001183 mode[2] = reg;
1184 mode[3] = 0;
1185 mode[4] = 0;
1186 mode[5] = 0;
1187 mode[6] = 0;
1188 mode[7] = 0x10;
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001189 i2c_w8(gspca_dev, mode);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001190 msleep(2);
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001191 mode[0] = (mode[0] & 0x81) | (len << 4) | 0x02;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001192 mode[2] = 0;
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001193 i2c_w8(gspca_dev, mode);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001194 msleep(2);
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001195 reg_r(gspca_dev, 0x0a, 5);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001196}
1197
Jean-Francois Moine23a98272009-11-02 09:10:25 -03001198static void i2c_w_seq(struct gspca_dev *gspca_dev,
1199 const u8 (*data)[8])
1200{
1201 while ((*data)[0] != 0) {
1202 if ((*data)[0] != 0xdd)
1203 i2c_w8(gspca_dev, *data);
1204 else
1205 msleep((*data)[1]);
1206 data++;
1207 }
1208}
1209
Jean-Francois Moine7fb101a2009-10-22 06:27:14 -03001210static void hv7131r_probe(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001211{
Jean-Francois Moine60017612008-07-18 08:46:19 -03001212 i2c_w1(gspca_dev, 0x02, 0); /* sensor wakeup */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001213 msleep(10);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001214 reg_w1(gspca_dev, 0x02, 0x66); /* Gpio on */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001215 msleep(10);
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001216 i2c_r(gspca_dev, 0, 5); /* read sensor id */
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001217 if (gspca_dev->usb_buf[0] == 0x02
1218 && gspca_dev->usb_buf[1] == 0x09
1219 && gspca_dev->usb_buf[2] == 0x01
1220 && gspca_dev->usb_buf[3] == 0x00
1221 && gspca_dev->usb_buf[4] == 0x00) {
Jean-Francois Moine7fb101a2009-10-22 06:27:14 -03001222 PDEBUG(D_PROBE, "Sensor sn9c102P HV7131R found");
1223 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001224 }
Jean-Francois Moine7fb101a2009-10-22 06:27:14 -03001225 PDEBUG(D_PROBE, "Sensor 0x%02x 0x%02x 0x%02x - sn9c102P not found",
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001226 gspca_dev->usb_buf[0], gspca_dev->usb_buf[1],
1227 gspca_dev->usb_buf[2]);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001228}
1229
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001230static void mi0360_probe(struct gspca_dev *gspca_dev)
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001231{
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001232 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001233 int i, j;
Jean-Francois Moine92e8c912009-02-02 16:25:38 -03001234 u16 val = 0;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001235 static const u8 probe_tb[][4][8] = {
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001236 { /* mi0360 */
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001237 {0xb0, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10},
1238 {0x90, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
1239 {0xa2, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
1240 {0xb0, 0x5d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x10}
1241 },
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001242 { /* mt9v111 */
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001243 {0xb0, 0x5c, 0x01, 0x00, 0x04, 0x00, 0x00, 0x10},
1244 {0x90, 0x5c, 0x36, 0x00, 0x00, 0x00, 0x00, 0x10},
1245 {0xa2, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
1246 {}
1247 },
1248 };
1249
1250 for (i = 0; i < ARRAY_SIZE(probe_tb); i++) {
1251 reg_w1(gspca_dev, 0x17, 0x62);
1252 reg_w1(gspca_dev, 0x01, 0x08);
1253 for (j = 0; j < 3; j++)
1254 i2c_w8(gspca_dev, probe_tb[i][j]);
1255 msleep(2);
1256 reg_r(gspca_dev, 0x0a, 5);
1257 val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
1258 if (probe_tb[i][3][0] != 0)
1259 i2c_w8(gspca_dev, probe_tb[i][3]);
1260 reg_w1(gspca_dev, 0x01, 0x29);
1261 reg_w1(gspca_dev, 0x17, 0x42);
1262 if (val != 0xffff)
1263 break;
1264 }
1265 switch (val) {
1266 case 0x823a:
1267 PDEBUG(D_PROBE, "Sensor mt9v111");
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001268 sd->sensor = SENSOR_MT9V111;
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001269 break;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001270 case 0x8243:
1271 PDEBUG(D_PROBE, "Sensor mi0360");
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001272 break;
1273 default:
1274 PDEBUG(D_PROBE, "Unknown sensor %04x - forced to mi0360", val);
1275 break;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001276 }
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001277}
1278
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001279static void ov7648_probe(struct gspca_dev *gspca_dev)
1280{
1281 struct sd *sd = (struct sd *) gspca_dev;
1282
1283 /* check ov76xx */
1284 reg_w1(gspca_dev, 0x17, 0x62);
1285 reg_w1(gspca_dev, 0x01, 0x08);
1286 sd->i2c_addr = 0x21;
1287 i2c_r(gspca_dev, 0x0a, 2);
1288 if (gspca_dev->usb_buf[3] == 0x76) { /* ov76xx */
1289 PDEBUG(D_PROBE, "Sensor ov%02x%02x",
1290 gspca_dev->usb_buf[3], gspca_dev->usb_buf[4]);
1291 return;
1292 }
1293
1294 /* reset */
1295 reg_w1(gspca_dev, 0x01, 0x29);
1296 reg_w1(gspca_dev, 0x17, 0x42);
1297
1298 /* check po1030 */
1299 reg_w1(gspca_dev, 0x17, 0x62);
1300 reg_w1(gspca_dev, 0x01, 0x08);
1301 sd->i2c_addr = 0x6e;
1302 i2c_r(gspca_dev, 0x00, 2);
1303 if (gspca_dev->usb_buf[3] == 0x10 /* po1030 */
1304 && gspca_dev->usb_buf[4] == 0x30) {
1305 PDEBUG(D_PROBE, "Sensor po1030");
1306 sd->sensor = SENSOR_PO1030;
1307 return;
1308 }
1309
1310 PDEBUG(D_PROBE, "Unknown sensor %02x%02x",
1311 gspca_dev->usb_buf[3], gspca_dev->usb_buf[4]);
1312}
1313
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001314static void bridge_init(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03001315 const u8 *sn9c1xx)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001316{
1317 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine98819182009-01-19 07:37:33 -03001318 const u8 *reg9a;
1319 static const u8 reg9a_def[] =
Jean-Francois Moinec8b9b2c2009-04-26 14:46:12 -03001320 {0x00, 0x40, 0x20, 0x00, 0x00, 0x00};
1321 static const u8 reg9a_spec[] =
1322 {0x00, 0x40, 0x38, 0x30, 0x00, 0x20};
Jean-Francois Moine98819182009-01-19 07:37:33 -03001323 static const u8 regd4[] = {0x60, 0x00, 0x00};
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001324
Jean-Francois Moine60017612008-07-18 08:46:19 -03001325 reg_w1(gspca_dev, 0xf1, 0x00);
Jean-Francois Moine05b809c2008-09-03 16:47:59 -03001326 reg_w1(gspca_dev, 0x01, sn9c1xx[1]);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001327
1328 /* configure gpio */
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001329 reg_w(gspca_dev, 0x01, &sn9c1xx[1], 2);
1330 reg_w(gspca_dev, 0x08, &sn9c1xx[8], 2);
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001331 reg_w(gspca_dev, 0x17, &sn9c1xx[0x17], 5);
Jean-Francois Moinec8b9b2c2009-04-26 14:46:12 -03001332 switch (sd->sensor) {
1333 case SENSOR_OV7660:
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001334 case SENSOR_PO1030:
Jean-Francois Moinec8b9b2c2009-04-26 14:46:12 -03001335 case SENSOR_SP80708:
1336 reg9a = reg9a_spec;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001337 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001338 default:
1339 reg9a = reg9a_def;
1340 break;
1341 }
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001342 reg_w(gspca_dev, 0x9a, reg9a, 6);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001343
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001344 reg_w(gspca_dev, 0xd4, regd4, sizeof regd4);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001345
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001346 reg_w(gspca_dev, 0x03, &sn9c1xx[3], 0x0f);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001347
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001348 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03001349 case SENSOR_ADCM1700:
1350 reg_w1(gspca_dev, 0x01, 0x42);
1351 reg_w1(gspca_dev, 0x17, 0x62);
1352 reg_w1(gspca_dev, 0x01, 0x42);
1353 reg_w1(gspca_dev, 0x01, 0x42);
1354 break;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001355 case SENSOR_MT9V111:
1356 reg_w1(gspca_dev, 0x01, 0x61);
1357 reg_w1(gspca_dev, 0x17, 0x61);
1358 reg_w1(gspca_dev, 0x01, 0x60);
1359 reg_w1(gspca_dev, 0x01, 0x40);
1360 break;
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001361 case SENSOR_OM6802:
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001362 msleep(10);
1363 reg_w1(gspca_dev, 0x02, 0x73);
1364 reg_w1(gspca_dev, 0x17, 0x60);
1365 reg_w1(gspca_dev, 0x01, 0x22);
1366 msleep(100);
1367 reg_w1(gspca_dev, 0x01, 0x62);
1368 reg_w1(gspca_dev, 0x17, 0x64);
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001369 reg_w1(gspca_dev, 0x17, 0x64);
1370 reg_w1(gspca_dev, 0x01, 0x42);
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001371 msleep(10);
1372 reg_w1(gspca_dev, 0x01, 0x42);
1373 i2c_w8(gspca_dev, om6802_init0[0]);
1374 i2c_w8(gspca_dev, om6802_init0[1]);
1375 msleep(15);
1376 reg_w1(gspca_dev, 0x02, 0x71);
1377 msleep(150);
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001378 break;
Jean-Francois Moine05b809c2008-09-03 16:47:59 -03001379 case SENSOR_OV7630:
1380 reg_w1(gspca_dev, 0x01, 0x61);
1381 reg_w1(gspca_dev, 0x17, 0xe2);
1382 reg_w1(gspca_dev, 0x01, 0x60);
1383 reg_w1(gspca_dev, 0x01, 0x40);
1384 break;
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001385 case SENSOR_OV7648:
Jean-Francois Moine62703302008-11-11 08:42:56 -03001386 reg_w1(gspca_dev, 0x01, 0x63);
1387 reg_w1(gspca_dev, 0x17, 0x20);
Jean-Francois Moinec8b9b2c2009-04-26 14:46:12 -03001388 reg_w1(gspca_dev, 0x01, 0x62);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001389 reg_w1(gspca_dev, 0x01, 0x42);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001390 break;
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001391 case SENSOR_PO1030:
1392 reg_w1(gspca_dev, 0x01, 0x61);
1393 reg_w1(gspca_dev, 0x17, 0x20);
1394 reg_w1(gspca_dev, 0x01, 0x60);
1395 reg_w1(gspca_dev, 0x01, 0x40);
1396 break;
Jean-Francois Moine91de65a2008-09-03 17:12:18 -03001397 case SENSOR_OV7660:
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001398 /* fall thru */
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03001399 case SENSOR_SP80708:
1400 reg_w1(gspca_dev, 0x01, 0x63);
1401 reg_w1(gspca_dev, 0x17, 0x20);
1402 reg_w1(gspca_dev, 0x01, 0x62);
1403 reg_w1(gspca_dev, 0x01, 0x42);
Jean-Francois Moine1f78a972009-08-29 07:11:58 -03001404 msleep(100);
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03001405 reg_w1(gspca_dev, 0x02, 0x62);
1406 break;
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001407 default:
Jean-Francois Moinec8b9b2c2009-04-26 14:46:12 -03001408/* case SENSOR_HV7131R: */
1409/* case SENSOR_MI0360: */
1410/* case SENSOR_MO4000: */
Jean-Francois Moine60017612008-07-18 08:46:19 -03001411 reg_w1(gspca_dev, 0x01, 0x43);
1412 reg_w1(gspca_dev, 0x17, 0x61);
1413 reg_w1(gspca_dev, 0x01, 0x42);
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001414 if (sd->sensor == SENSOR_HV7131R
1415 && sd->bridge == BRIDGE_SN9C102P)
Jean-Francois Moine7fb101a2009-10-22 06:27:14 -03001416 hv7131r_probe(gspca_dev);
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001417 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001418 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001419}
1420
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001421/* this function is called at probe time */
1422static int sd_config(struct gspca_dev *gspca_dev,
1423 const struct usb_device_id *id)
1424{
1425 struct sd *sd = (struct sd *) gspca_dev;
1426 struct cam *cam;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001427
1428 cam = &gspca_dev->cam;
Jean-Francois Moine64677572009-12-20 12:31:28 -03001429 if (sd->sensor == SENSOR_ADCM1700) {
1430 cam->cam_mode = cif_mode;
1431 cam->nmodes = ARRAY_SIZE(cif_mode);
1432 } else {
1433 cam->cam_mode = vga_mode;
1434 cam->nmodes = ARRAY_SIZE(vga_mode);
1435 }
Jean-Francois Moine49cb6b02009-04-25 13:29:01 -03001436 cam->npkt = 24; /* 24 packets per ISOC message */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03001437
Jean-Francois Moine9d64fdb2008-07-25 08:53:03 -03001438 sd->bridge = id->driver_info >> 16;
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001439 sd->sensor = id->driver_info;
Jean-Francois Moine9d64fdb2008-07-25 08:53:03 -03001440
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03001441 sd->brightness = BRIGHTNESS_DEF;
1442 sd->contrast = CONTRAST_DEF;
1443 sd->colors = COLOR_DEF;
Jean-Francois Moine403123d2008-11-26 04:46:15 -03001444 sd->blue = BLUE_BALANCE_DEF;
1445 sd->red = RED_BALANCE_DEF;
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03001446 sd->gamma = GAMMA_DEF;
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03001447 sd->autogain = AUTOGAIN_DEF;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03001448 sd->ag_cnt = -1;
Hans de Goedef8009522009-06-18 14:29:20 -03001449 sd->vflip = VFLIP_DEF;
Jean-Francois Moine0cae8962008-10-17 07:48:24 -03001450 sd->infrared = INFRARED_DEF;
Hans de Goede37c6dbe2009-06-18 07:35:36 -03001451 sd->freq = FREQ_DEF;
Jean-Francois Moine77ac0ba2009-03-02 06:40:52 -03001452 sd->quality = QUALITY_DEF;
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03001453 sd->jpegqual = 80;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03001454
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001455 return 0;
1456}
1457
Jean-Francois Moine012d6b02008-09-03 17:12:16 -03001458/* this function is called at probe and resume time */
1459static int sd_init(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001460{
1461 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001462 const u8 *sn9c1xx;
Jean-Francois Moine98819182009-01-19 07:37:33 -03001463 u8 regGpio[] = { 0x29, 0x74 };
1464 u8 regF1;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001465
Hans de Goede3647fea2008-07-15 05:36:30 -03001466 /* setup a selector by bridge */
Jean-Francois Moine60017612008-07-18 08:46:19 -03001467 reg_w1(gspca_dev, 0xf1, 0x01);
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001468 reg_r(gspca_dev, 0x00, 1);
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -03001469 reg_w1(gspca_dev, 0xf1, gspca_dev->usb_buf[0]);
1470 reg_r(gspca_dev, 0x00, 1); /* get sonix chip id */
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001471 regF1 = gspca_dev->usb_buf[0];
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -03001472 PDEBUG(D_PROBE, "Sonix chip id: %02x", regF1);
Hans de Goede3647fea2008-07-15 05:36:30 -03001473 switch (sd->bridge) {
1474 case BRIDGE_SN9C102P:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001475 if (regF1 != 0x11)
1476 return -ENODEV;
Jean-Francois Moine60017612008-07-18 08:46:19 -03001477 reg_w1(gspca_dev, 0x02, regGpio[1]);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001478 break;
Hans de Goede3647fea2008-07-15 05:36:30 -03001479 case BRIDGE_SN9C105:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001480 if (regF1 != 0x11)
1481 return -ENODEV;
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001482 if (sd->sensor == SENSOR_MI0360)
1483 mi0360_probe(gspca_dev);
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03001484 reg_w(gspca_dev, 0x01, regGpio, 2);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001485 break;
Hans de Goede3647fea2008-07-15 05:36:30 -03001486 case BRIDGE_SN9C120:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001487 if (regF1 != 0x12)
1488 return -ENODEV;
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001489 switch (sd->sensor) {
1490 case SENSOR_MI0360:
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001491 mi0360_probe(gspca_dev);
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001492 break;
1493 case SENSOR_OV7648:
1494 ov7648_probe(gspca_dev);
1495 break;
1496 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001497 regGpio[1] = 0x70;
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03001498 reg_w(gspca_dev, 0x01, regGpio, 2);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001499 break;
1500 default:
Jean-Francois Moine60017612008-07-18 08:46:19 -03001501/* case BRIDGE_SN9C110: */
Hans de Goede3647fea2008-07-15 05:36:30 -03001502/* case BRIDGE_SN9C325: */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001503 if (regF1 != 0x12)
1504 return -ENODEV;
Jean-Francois Moine60017612008-07-18 08:46:19 -03001505 reg_w1(gspca_dev, 0x02, 0x62);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001506 break;
1507 }
1508
Jean-Francois Moine759aa3c2008-09-03 16:48:03 -03001509 reg_w1(gspca_dev, 0xf1, 0x01);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001510
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001511 /* set the i2c address */
1512 sn9c1xx = sn_tb[sd->sensor];
1513 sd->i2c_addr = sn9c1xx[9];
1514
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001515 gspca_dev->ctrl_dis = ctrl_dis[sd->sensor];
1516
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001517 return 0;
1518}
1519
Jean-Francois Moine98819182009-01-19 07:37:33 -03001520static u32 setexposure(struct gspca_dev *gspca_dev,
1521 u32 expo)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001522{
1523 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001524
1525 switch (sd->sensor) {
1526 case SENSOR_HV7131R: {
Jean-Francois Moine98819182009-01-19 07:37:33 -03001527 u8 Expodoit[] =
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001528 { 0xc1, 0x11, 0x25, 0x00, 0x00, 0x00, 0x00, 0x16 };
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001529
1530 Expodoit[3] = expo >> 16;
1531 Expodoit[4] = expo >> 8;
1532 Expodoit[5] = expo;
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001533 i2c_w8(gspca_dev, Expodoit);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001534 break;
1535 }
1536 case SENSOR_MI0360: {
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001537 u8 expoMi[] = /* exposure 0x0635 -> 4 fp/s 0x10 */
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001538 { 0xb1, 0x5d, 0x09, 0x00, 0x00, 0x00, 0x00, 0x16 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03001539 static const u8 doit[] = /* update sensor */
1540 { 0xb1, 0x5d, 0x07, 0x00, 0x03, 0x00, 0x00, 0x10 };
1541 static const u8 sensorgo[] = /* sensor on */
1542 { 0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10 };
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001543
1544 if (expo > 0x0635)
1545 expo = 0x0635;
1546 else if (expo < 0x0001)
1547 expo = 0x0001;
1548 expoMi[3] = expo >> 8;
1549 expoMi[4] = expo;
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001550 i2c_w8(gspca_dev, expoMi);
1551 i2c_w8(gspca_dev, doit);
1552 i2c_w8(gspca_dev, sensorgo);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001553 break;
1554 }
1555 case SENSOR_MO4000: {
Jean-Francois Moine98819182009-01-19 07:37:33 -03001556 u8 expoMof[] =
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001557 { 0xa1, 0x21, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03001558 u8 expoMo10[] =
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001559 { 0xa1, 0x21, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03001560 static const u8 gainMo[] =
1561 { 0xa1, 0x21, 0x00, 0x10, 0x00, 0x00, 0x00, 0x1d };
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001562
1563 if (expo > 0x1fff)
1564 expo = 0x1fff;
1565 else if (expo < 0x0001)
1566 expo = 0x0001;
1567 expoMof[3] = (expo & 0x03fc) >> 2;
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001568 i2c_w8(gspca_dev, expoMof);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001569 expoMo10[3] = ((expo & 0x1c00) >> 10)
1570 | ((expo & 0x0003) << 4);
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001571 i2c_w8(gspca_dev, expoMo10);
1572 i2c_w8(gspca_dev, gainMo);
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001573 PDEBUG(D_FRAM, "set exposure %d",
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001574 ((expoMo10[3] & 0x07) << 10)
1575 | (expoMof[3] << 2)
1576 | ((expoMo10[3] & 0x30) >> 4));
1577 break;
1578 }
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001579 case SENSOR_MT9V111: {
1580 u8 expo_c1[] =
1581 { 0xb1, 0x5c, 0x09, 0x00, 0x00, 0x00, 0x00, 0x10 };
1582
1583 if (expo > 0x0280)
1584 expo = 0x0280;
1585 else if (expo < 0x0040)
1586 expo = 0x0040;
1587 expo_c1[3] = expo >> 8;
1588 expo_c1[4] = expo;
1589 i2c_w8(gspca_dev, expo_c1);
1590 break;
1591 }
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001592 case SENSOR_OM6802: {
Jean-Francois Moine98819182009-01-19 07:37:33 -03001593 u8 gainOm[] =
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001594 { 0xa0, 0x34, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001595 /* preset AGC - works when AutoExpo = off */
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001596
1597 if (expo > 0x03ff)
1598 expo = 0x03ff;
1599 if (expo < 0x0001)
1600 expo = 0x0001;
1601 gainOm[3] = expo >> 2;
1602 i2c_w8(gspca_dev, gainOm);
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001603 reg_w1(gspca_dev, 0x96, expo >> 5);
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001604 PDEBUG(D_FRAM, "set exposure %d", gainOm[3]);
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001605 break;
1606 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001607 }
1608 return expo;
1609}
1610
1611static void setbrightness(struct gspca_dev *gspca_dev)
1612{
1613 struct sd *sd = (struct sd *) gspca_dev;
1614 unsigned int expo;
Jean-Francois Moine98819182009-01-19 07:37:33 -03001615 u8 k2;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001616
Jean-Francois Moineb1b056a2008-11-25 04:47:09 -03001617 k2 = ((int) sd->brightness - 0x8000) >> 10;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001618 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03001619 case SENSOR_ADCM1700:
1620 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001621 case SENSOR_HV7131R:
1622 expo = sd->brightness << 4;
1623 if (expo > 0x002dc6c0)
1624 expo = 0x002dc6c0;
1625 else if (expo < 0x02a0)
1626 expo = 0x02a0;
1627 sd->exposure = setexposure(gspca_dev, expo);
1628 break;
1629 case SENSOR_MI0360:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001630 case SENSOR_MO4000:
1631 expo = sd->brightness >> 4;
1632 sd->exposure = setexposure(gspca_dev, expo);
1633 break;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001634 case SENSOR_MT9V111:
1635 expo = sd->brightness >> 8;
1636 sd->exposure = setexposure(gspca_dev, expo);
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001637 return; /* don't set the Y offset */
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001638 case SENSOR_OM6802:
1639 expo = sd->brightness >> 6;
1640 sd->exposure = setexposure(gspca_dev, expo);
Jean-Francois Moineb1b056a2008-11-25 04:47:09 -03001641 k2 = sd->brightness >> 11;
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001642 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001643 }
1644
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001645 reg_w1(gspca_dev, 0x96, k2); /* color matrix Y offset */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001646}
1647
1648static void setcontrast(struct gspca_dev *gspca_dev)
1649{
1650 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine98819182009-01-19 07:37:33 -03001651 u8 k2;
1652 u8 contrast[6];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001653
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03001654 k2 = sd->contrast * 0x30 / (CONTRAST_MAX + 1) + 0x10; /* 10..40 */
1655 contrast[0] = (k2 + 1) / 2; /* red */
Jean-Francois Moine577cbf42008-12-05 06:18:37 -03001656 contrast[1] = 0;
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03001657 contrast[2] = k2; /* green */
Jean-Francois Moine577cbf42008-12-05 06:18:37 -03001658 contrast[3] = 0;
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03001659 contrast[4] = (k2 + 1) / 5; /* blue */
Jean-Francois Moine577cbf42008-12-05 06:18:37 -03001660 contrast[5] = 0;
1661 reg_w(gspca_dev, 0x84, contrast, sizeof contrast);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001662}
1663
1664static void setcolors(struct gspca_dev *gspca_dev)
1665{
1666 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine403123d2008-11-26 04:46:15 -03001667 int i, v;
Jean-Francois Moine98819182009-01-19 07:37:33 -03001668 u8 reg8a[12]; /* U & V gains */
1669 static s16 uv[6] = { /* same as reg84 in signed decimal */
Jean-Francois Moine403123d2008-11-26 04:46:15 -03001670 -24, -38, 64, /* UR UG UB */
1671 62, -51, -9 /* VR VG VB */
1672 };
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001673
Jean-Francois Moine403123d2008-11-26 04:46:15 -03001674 for (i = 0; i < 6; i++) {
1675 v = uv[i] * sd->colors / COLOR_DEF;
Jean-Francois Moinebd088832008-12-02 06:58:57 -03001676 reg8a[i * 2] = v;
1677 reg8a[i * 2 + 1] = (v >> 8) & 0x0f;
Jean-Francois Moined55b83d2008-09-03 16:48:01 -03001678 }
Jean-Francois Moinebd088832008-12-02 06:58:57 -03001679 reg_w(gspca_dev, 0x8a, reg8a, sizeof reg8a);
Jean-Francois Moine403123d2008-11-26 04:46:15 -03001680}
1681
1682static void setredblue(struct gspca_dev *gspca_dev)
1683{
1684 struct sd *sd = (struct sd *) gspca_dev;
1685
1686 reg_w1(gspca_dev, 0x05, sd->red);
Jean-Francois Moine9c5f70f2008-09-03 16:48:04 -03001687/* reg_w1(gspca_dev, 0x07, 32); */
Jean-Francois Moine403123d2008-11-26 04:46:15 -03001688 reg_w1(gspca_dev, 0x06, sd->blue);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001689}
1690
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03001691static void setgamma(struct gspca_dev *gspca_dev)
1692{
1693 struct sd *sd = (struct sd *) gspca_dev;
1694 int i;
1695 u8 gamma[17];
Jean-Francois Moineb083b922009-02-01 14:20:07 -03001696 const u8 *gamma_base;
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03001697 static const u8 delta[17] = {
1698 0x00, 0x14, 0x1c, 0x1c, 0x1c, 0x1c, 0x1b, 0x1a,
1699 0x18, 0x13, 0x10, 0x0e, 0x08, 0x07, 0x04, 0x02, 0x00
1700 };
1701
Jean-Francois Moineb083b922009-02-01 14:20:07 -03001702 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03001703 case SENSOR_ADCM1700:
1704 gamma_base = gamma_spec_0;
1705 break;
Jean-Francois Moineb083b922009-02-01 14:20:07 -03001706 case SENSOR_HV7131R:
1707 case SENSOR_MT9V111:
1708 gamma_base = gamma_spec_1;
1709 break;
1710 case SENSOR_SP80708:
1711 gamma_base = gamma_spec_2;
1712 break;
1713 default:
1714 gamma_base = gamma_def;
1715 break;
1716 }
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03001717
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03001718 for (i = 0; i < sizeof gamma; i++)
Jean-Francois Moineb083b922009-02-01 14:20:07 -03001719 gamma[i] = gamma_base[i]
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03001720 + delta[i] * (sd->gamma - GAMMA_DEF) / 32;
1721 reg_w(gspca_dev, 0x20, gamma, sizeof gamma);
1722}
1723
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03001724static void setautogain(struct gspca_dev *gspca_dev)
1725{
1726 struct sd *sd = (struct sd *) gspca_dev;
1727
Jean-Francois Moinef50ba1b2008-09-03 17:12:14 -03001728 if (gspca_dev->ctrl_dis & (1 << AUTOGAIN_IDX))
1729 return;
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03001730 switch (sd->sensor) {
1731 case SENSOR_OV7630:
1732 case SENSOR_OV7648: {
1733 u8 comb;
1734
1735 if (sd->sensor == SENSOR_OV7630)
1736 comb = 0xc0;
1737 else
1738 comb = 0xa0;
1739 if (sd->autogain)
Hans de Goede1fec7472009-06-18 06:05:07 -03001740 comb |= 0x03;
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03001741 i2c_w1(&sd->gspca_dev, 0x13, comb);
1742 return;
1743 }
1744 }
Jean-Francois Moinef50ba1b2008-09-03 17:12:14 -03001745 if (sd->autogain)
1746 sd->ag_cnt = AG_CNT_START;
1747 else
1748 sd->ag_cnt = -1;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03001749}
1750
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03001751/* ov7630/ov7648 only */
Jean-Francois Moine6c862742008-09-08 04:57:26 -03001752static void setvflip(struct sd *sd)
1753{
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03001754 u8 comn;
1755
Jean-Francois Moine0939e262009-11-02 09:58:49 -03001756 if (sd->gspca_dev.ctrl_dis & (1 << VFLIP_IDX))
1757 return;
Hans de Goedef8009522009-06-18 14:29:20 -03001758 if (sd->sensor == SENSOR_OV7630) {
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03001759 comn = 0x02;
Hans de Goedef8009522009-06-18 14:29:20 -03001760 if (!sd->vflip)
1761 comn |= 0x80;
1762 } else {
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03001763 comn = 0x06;
Hans de Goedef8009522009-06-18 14:29:20 -03001764 if (sd->vflip)
1765 comn |= 0x80;
1766 }
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03001767 i2c_w1(&sd->gspca_dev, 0x75, comn);
Jean-Francois Moine6c862742008-09-08 04:57:26 -03001768}
1769
Jean-Francois Moine0cae8962008-10-17 07:48:24 -03001770static void setinfrared(struct sd *sd)
1771{
Jean-Francois Moine47f7f6f2009-08-25 06:14:54 -03001772 if (sd->gspca_dev.ctrl_dis & (1 << INFRARED_IDX))
1773 return;
Jean-Francois Moine0cae8962008-10-17 07:48:24 -03001774/*fixme: different sequence for StarCam Clip and StarCam 370i */
1775/* Clip */
1776 i2c_w1(&sd->gspca_dev, 0x02, /* gpio */
1777 sd->infrared ? 0x66 : 0x64);
1778}
1779
Hans de Goede37c6dbe2009-06-18 07:35:36 -03001780static void setfreq(struct gspca_dev *gspca_dev)
1781{
1782 struct sd *sd = (struct sd *) gspca_dev;
1783
Jean-Francois Moine27954932009-07-08 05:21:50 -03001784 if (gspca_dev->ctrl_dis & (1 << FREQ_IDX))
1785 return;
Hans de Goede37c6dbe2009-06-18 07:35:36 -03001786 if (sd->sensor == SENSOR_OV7660) {
Jean-Francois Moined8f400e2009-07-08 06:33:44 -03001787 u8 com8;
1788
Jean-Francois Moine47f7f6f2009-08-25 06:14:54 -03001789 com8 = 0xdf; /* auto gain/wb/expo */
Hans de Goede37c6dbe2009-06-18 07:35:36 -03001790 switch (sd->freq) {
1791 case 0: /* Banding filter disabled */
Jean-Francois Moine47f7f6f2009-08-25 06:14:54 -03001792 i2c_w1(gspca_dev, 0x13, com8 | 0x20);
Hans de Goede37c6dbe2009-06-18 07:35:36 -03001793 break;
1794 case 1: /* 50 hz */
Jean-Francois Moined8f400e2009-07-08 06:33:44 -03001795 i2c_w1(gspca_dev, 0x13, com8);
Hans de Goede37c6dbe2009-06-18 07:35:36 -03001796 i2c_w1(gspca_dev, 0x3b, 0x0a);
1797 break;
1798 case 2: /* 60 hz */
Jean-Francois Moined8f400e2009-07-08 06:33:44 -03001799 i2c_w1(gspca_dev, 0x13, com8);
Hans de Goede37c6dbe2009-06-18 07:35:36 -03001800 i2c_w1(gspca_dev, 0x3b, 0x02);
1801 break;
1802 }
1803 } else {
1804 u8 reg2a = 0, reg2b = 0, reg2d = 0;
1805
1806 /* Get reg2a / reg2d base values */
1807 switch (sd->sensor) {
1808 case SENSOR_OV7630:
1809 reg2a = 0x08;
1810 reg2d = 0x01;
1811 break;
1812 case SENSOR_OV7648:
1813 reg2a = 0x11;
1814 reg2d = 0x81;
1815 break;
1816 }
1817
1818 switch (sd->freq) {
1819 case 0: /* Banding filter disabled */
1820 break;
1821 case 1: /* 50 hz (filter on and framerate adj) */
1822 reg2a |= 0x80;
1823 reg2b = 0xac;
1824 reg2d |= 0x04;
1825 break;
1826 case 2: /* 60 hz (filter on, no framerate adj) */
1827 reg2a |= 0x80;
1828 reg2d |= 0x04;
1829 break;
1830 }
1831 i2c_w1(gspca_dev, 0x2a, reg2a);
1832 i2c_w1(gspca_dev, 0x2b, reg2b);
1833 i2c_w1(gspca_dev, 0x2d, reg2d);
1834 }
1835}
1836
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03001837static void setjpegqual(struct gspca_dev *gspca_dev)
1838{
1839 struct sd *sd = (struct sd *) gspca_dev;
1840 int i, sc;
1841
1842 if (sd->jpegqual < 50)
1843 sc = 5000 / sd->jpegqual;
1844 else
1845 sc = 200 - sd->jpegqual * 2;
1846#if USB_BUF_SZ < 64
1847#error "No room enough in usb_buf for quantization table"
1848#endif
1849 for (i = 0; i < 64; i++)
1850 gspca_dev->usb_buf[i] =
1851 (jpeg_head[JPEG_QT0_OFFSET + i] * sc + 50) / 100;
1852 usb_control_msg(gspca_dev->dev,
1853 usb_sndctrlpipe(gspca_dev->dev, 0),
1854 0x08,
1855 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1856 0x0100, 0,
1857 gspca_dev->usb_buf, 64,
1858 500);
1859 for (i = 0; i < 64; i++)
1860 gspca_dev->usb_buf[i] =
1861 (jpeg_head[JPEG_QT1_OFFSET + i] * sc + 50) / 100;
1862 usb_control_msg(gspca_dev->dev,
1863 usb_sndctrlpipe(gspca_dev->dev, 0),
1864 0x08,
1865 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1866 0x0140, 0,
1867 gspca_dev->usb_buf, 64,
1868 500);
1869
1870 sd->reg18 ^= 0x40;
1871 reg_w1(gspca_dev, 0x18, sd->reg18);
1872}
1873
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001874/* -- start the camera -- */
Jean-Francois Moine72ab97c2008-09-20 06:39:08 -03001875static int sd_start(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001876{
1877 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001878 int i;
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001879 u8 reg1, reg2, reg17;
Jean-Francois Moine98819182009-01-19 07:37:33 -03001880 const u8 *sn9c1xx;
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001881 const u8 (*init)[8];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001882 int mode;
Jean-Francois Moine98819182009-01-19 07:37:33 -03001883 static const u8 C0[] = { 0x2d, 0x2d, 0x3a, 0x05, 0x04, 0x3f };
1884 static const u8 CA[] = { 0x28, 0xd8, 0x14, 0xec };
Jean-Francois Moine64677572009-12-20 12:31:28 -03001885 static const u8 CA_adcm1700[] =
1886 { 0x14, 0xec, 0x0a, 0xf6 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03001887 static const u8 CE[] = { 0x32, 0xdd, 0x2d, 0xdd }; /* MI0360 */
1888 static const u8 CE_ov76xx[] =
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03001889 { 0x32, 0xdd, 0x32, 0xdd };
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001890
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03001891 /* create the JPEG header */
1892 sd->jpeg_hdr = kmalloc(JPEG_HDR_SZ, GFP_KERNEL);
Julia Lawall3eb02372009-07-19 07:09:32 -03001893 if (!sd->jpeg_hdr)
1894 return -ENOMEM;
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03001895 jpeg_define(sd->jpeg_hdr, gspca_dev->height, gspca_dev->width,
1896 0x21); /* JPEG 422 */
1897 jpeg_set_qual(sd->jpeg_hdr, sd->quality);
1898
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001899 /* initialize the bridge */
1900 sn9c1xx = sn_tb[sd->sensor];
1901 bridge_init(gspca_dev, sn9c1xx);
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001902
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001903 /* initialize the sensor */
1904 i2c_w_seq(gspca_dev, sensor_init[sd->sensor]);
1905
1906 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03001907 case SENSOR_ADCM1700:
1908 reg2 = 0x60;
1909 break;
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001910 case SENSOR_OM6802:
1911 reg2 = 0x71;
1912 break;
1913 case SENSOR_SP80708:
1914 reg2 = 0x62;
1915 break;
1916 default:
1917 reg2 = 0x40;
1918 break;
1919 }
1920 reg_w1(gspca_dev, 0x02, reg2);
1921 reg_w1(gspca_dev, 0x02, reg2);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001922
Jean-Francois Moine60017612008-07-18 08:46:19 -03001923 reg_w1(gspca_dev, 0x15, sn9c1xx[0x15]);
1924 reg_w1(gspca_dev, 0x16, sn9c1xx[0x16]);
1925 reg_w1(gspca_dev, 0x12, sn9c1xx[0x12]);
1926 reg_w1(gspca_dev, 0x13, sn9c1xx[0x13]);
1927 reg_w1(gspca_dev, 0x18, sn9c1xx[0x18]);
Jean-Francois Moine64677572009-12-20 12:31:28 -03001928 if (sd->sensor == SENSOR_ADCM1700) {
1929 reg_w1(gspca_dev, 0xd2, 0x3a); /* DC29 */
1930 reg_w1(gspca_dev, 0xd3, 0x30);
1931 } else {
1932 reg_w1(gspca_dev, 0xd2, 0x6a); /* DC29 */
1933 reg_w1(gspca_dev, 0xd3, 0x50);
1934 }
Jean-Francois Moine60017612008-07-18 08:46:19 -03001935 reg_w1(gspca_dev, 0xc6, 0x00);
1936 reg_w1(gspca_dev, 0xc7, 0x00);
Jean-Francois Moine64677572009-12-20 12:31:28 -03001937 if (sd->sensor == SENSOR_ADCM1700) {
1938 reg_w1(gspca_dev, 0xc8, 0x2c);
1939 reg_w1(gspca_dev, 0xc9, 0x24);
1940 } else {
1941 reg_w1(gspca_dev, 0xc8, 0x50);
1942 reg_w1(gspca_dev, 0xc9, 0x3c);
1943 }
Jean-Francois Moine60017612008-07-18 08:46:19 -03001944 reg_w1(gspca_dev, 0x18, sn9c1xx[0x18]);
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03001945 switch (sd->sensor) {
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001946 case SENSOR_MT9V111:
1947 reg17 = 0xe0;
1948 break;
Jean-Francois Moine64677572009-12-20 12:31:28 -03001949 case SENSOR_ADCM1700:
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03001950 case SENSOR_OV7630:
1951 reg17 = 0xe2;
1952 break;
1953 case SENSOR_OV7648:
Jean-Francois Moine62703302008-11-11 08:42:56 -03001954 reg17 = 0x20;
Jean-Francois Moine568788a2008-07-15 11:46:06 -03001955 break;
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03001956 case SENSOR_OV7660:
Jean-Francois Moinec8b9b2c2009-04-26 14:46:12 -03001957 reg17 = 0xa0;
1958 break;
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001959 case SENSOR_PO1030:
1960 reg17 = 0xa0;
1961 break;
Jean-Francois Moine568788a2008-07-15 11:46:06 -03001962 default:
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -03001963 reg17 = 0x60;
Jean-Francois Moine568788a2008-07-15 11:46:06 -03001964 break;
1965 }
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -03001966 reg_w1(gspca_dev, 0x17, reg17);
Jean-Francois Moine1432f302008-11-21 04:34:15 -03001967/* set reg1 was here */
Jean-Francois Moine403123d2008-11-26 04:46:15 -03001968 reg_w1(gspca_dev, 0x05, sn9c1xx[5]); /* red */
1969 reg_w1(gspca_dev, 0x07, sn9c1xx[7]); /* green */
1970 reg_w1(gspca_dev, 0x06, sn9c1xx[6]); /* blue */
Jean-Francois Moine60017612008-07-18 08:46:19 -03001971 reg_w1(gspca_dev, 0x14, sn9c1xx[0x14]);
Jean-Francois Moineb083b922009-02-01 14:20:07 -03001972
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03001973 setgamma(gspca_dev);
1974
Jean-Francois Moine05b809c2008-09-03 16:47:59 -03001975 for (i = 0; i < 8; i++)
1976 reg_w(gspca_dev, 0x84, reg84, sizeof reg84);
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03001977 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03001978 case SENSOR_ADCM1700:
1979 reg_w1(gspca_dev, 0x9a, 0x05);
1980 reg_w1(gspca_dev, 0x99, 0x60);
1981 break;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001982 case SENSOR_MT9V111:
1983 reg_w1(gspca_dev, 0x9a, 0x07);
1984 reg_w1(gspca_dev, 0x99, 0x59);
1985 break;
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001986 case SENSOR_OM6802:
1987 reg_w1(gspca_dev, 0x9a, 0x08);
1988 reg_w1(gspca_dev, 0x99, 0x10);
1989 break;
Jean-Francois Moine62703302008-11-11 08:42:56 -03001990 case SENSOR_OV7648:
1991 reg_w1(gspca_dev, 0x9a, 0x0a);
1992 reg_w1(gspca_dev, 0x99, 0x60);
1993 break;
Jean-Francois Moinec8b9b2c2009-04-26 14:46:12 -03001994 case SENSOR_OV7660:
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03001995 case SENSOR_SP80708:
1996 reg_w1(gspca_dev, 0x9a, 0x05);
1997 reg_w1(gspca_dev, 0x99, 0x59);
1998 break;
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03001999 default:
Jean-Francois Moine60017612008-07-18 08:46:19 -03002000 reg_w1(gspca_dev, 0x9a, 0x08);
2001 reg_w1(gspca_dev, 0x99, 0x59);
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03002002 break;
2003 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002004
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002005 reg_w(gspca_dev, 0x84, reg84, sizeof reg84);
2006 reg_w1(gspca_dev, 0x05, sn9c1xx[5]); /* red */
2007 reg_w1(gspca_dev, 0x07, sn9c1xx[7]); /* green */
2008 reg_w1(gspca_dev, 0x06, sn9c1xx[6]); /* blue */
Jean-Francois Moine23a98272009-11-02 09:10:25 -03002009
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002010 init = NULL;
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002011 mode = gspca_dev->cam.cam_mode[gspca_dev->curr_mode].priv;
Jean-Francois Moine60017612008-07-18 08:46:19 -03002012 if (mode)
Jean-Francois Moine1432f302008-11-21 04:34:15 -03002013 reg1 = 0x46; /* 320x240: clk 48Mhz, video trf enable */
Jean-Francois Moine60017612008-07-18 08:46:19 -03002014 else
Jean-Francois Moine1432f302008-11-21 04:34:15 -03002015 reg1 = 0x06; /* 640x480: clk 24Mhz, video trf enable */
2016 reg17 = 0x61; /* 0x:20: enable sensor clock */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002017 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03002018 case SENSOR_ADCM1700:
2019 init = adcm1700_sensor_param1;
2020 reg1 = 0x46;
2021 reg17 = 0xe2;
2022 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002023 case SENSOR_MO4000:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002024 if (mode) {
2025/* reg1 = 0x46; * 320 clk 48Mhz 60fp/s */
2026 reg1 = 0x06; /* clk 24Mz */
2027 } else {
2028 reg17 = 0x22; /* 640 MCKSIZE */
Jean-Francois Moine60017612008-07-18 08:46:19 -03002029/* reg1 = 0x06; * 640 clk 24Mz (done) */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002030 }
2031 break;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03002032 case SENSOR_MT9V111:
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002033 init = mt9v111_sensor_param1;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03002034 if (mode) {
2035 reg1 = 0x04; /* 320 clk 48Mhz */
2036 } else {
2037/* reg1 = 0x06; * 640 clk 24Mz (done) */
Jean-Francois Moine2687a2f2009-02-01 14:48:55 -03002038 reg17 = 0xc2;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03002039 }
Jean-Francois Moine0fbe0572009-01-30 12:14:02 -03002040 break;
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03002041 case SENSOR_OM6802:
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002042 init = om6802_sensor_param1;
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03002043 reg17 = 0x64; /* 640 MCKSIZE */
2044 break;
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002045 case SENSOR_OV7630:
Jean-Francois Moine6c862742008-09-08 04:57:26 -03002046 setvflip(sd);
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002047 reg17 = 0xe2;
Jean-Francois Moine5b064da2008-09-03 16:48:08 -03002048 reg1 = 0x44;
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002049 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002050 case SENSOR_OV7648:
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002051 init = ov7648_sensor_param1;
Jean-Francois Moine62703302008-11-11 08:42:56 -03002052 reg17 = 0x21;
2053/* reg1 = 0x42; * 42 - 46? */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002054 break;
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002055 case SENSOR_OV7660:
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002056 init = ov7660_sensor_param1;
Jean-Francois Moinedaa5cb42008-12-02 15:00:57 -03002057 if (sd->bridge == BRIDGE_SN9C120) {
2058 if (mode) { /* 320x240 - 160x120 */
Jean-Francois Moine1432f302008-11-21 04:34:15 -03002059 reg17 = 0xa2;
2060 reg1 = 0x44; /* 48 Mhz, video trf eneble */
Jean-Francois Moine1432f302008-11-21 04:34:15 -03002061 }
Jean-Francois Moinedaa5cb42008-12-02 15:00:57 -03002062 } else {
2063 reg17 = 0x22;
2064 reg1 = 0x06; /* 24 Mhz, video trf eneble
2065 * inverse power down */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002066 }
2067 break;
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03002068 case SENSOR_PO1030:
2069 init = po1030_sensor_param1;
2070 reg17 = 0xa2;
2071 reg1 = 0x44;
2072 break;
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002073 default:
2074/* case SENSOR_SP80708: */
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002075 init = sp80708_sensor_param1;
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002076 if (mode) {
2077/*?? reg1 = 0x04; * 320 clk 48Mhz */
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002078 } else {
2079 reg1 = 0x46; /* 640 clk 48Mz */
2080 reg17 = 0xa2;
2081 }
2082 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002083 }
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002084
2085 /* more sensor initialization - param1 */
2086 if (init != NULL) {
2087 i2c_w_seq(gspca_dev, init);
2088/* init = NULL; */
2089 }
2090
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002091 reg_w(gspca_dev, 0xc0, C0, 6);
Jean-Francois Moine64677572009-12-20 12:31:28 -03002092 if (sd->sensor == SENSOR_ADCM1700)
2093 reg_w(gspca_dev, 0xca, CA_adcm1700, 4);
2094 else
2095 reg_w(gspca_dev, 0xca, CA, 4);
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002096 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03002097 case SENSOR_ADCM1700:
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002098 case SENSOR_OV7630:
2099 case SENSOR_OV7648:
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03002100 case SENSOR_OV7660:
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002101 reg_w(gspca_dev, 0xce, CE_ov76xx, 4);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002102 break;
2103 default:
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002104 reg_w(gspca_dev, 0xce, CE, 4);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002105 /* ?? {0x1e, 0xdd, 0x2d, 0xe7} */
2106 break;
2107 }
2108
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002109
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002110 /* here change size mode 0 -> VGA; 1 -> CIF */
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002111 sd->reg18 = sn9c1xx[0x18] | (mode << 4) | 0x40;
2112 reg_w1(gspca_dev, 0x18, sd->reg18);
2113 setjpegqual(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002114
Jean-Francois Moine60017612008-07-18 08:46:19 -03002115 reg_w1(gspca_dev, 0x17, reg17);
Jean-Francois Moine1432f302008-11-21 04:34:15 -03002116 reg_w1(gspca_dev, 0x01, reg1);
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002117
Jean-Francois Moine05b809c2008-09-03 16:47:59 -03002118 switch (sd->sensor) {
Jean-Francois Moine79a90982008-10-05 04:21:24 -03002119 case SENSOR_OV7630:
2120 setvflip(sd);
Jean-Francois Moine05b809c2008-09-03 16:47:59 -03002121 break;
2122 }
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03002123 setbrightness(gspca_dev);
2124 setcontrast(gspca_dev);
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002125 setautogain(gspca_dev);
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002126 setfreq(gspca_dev);
Jean-Francois Moine72ab97c2008-09-20 06:39:08 -03002127 return 0;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002128}
2129
2130static void sd_stopN(struct gspca_dev *gspca_dev)
2131{
2132 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine98819182009-01-19 07:37:33 -03002133 static const u8 stophv7131[] =
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002134 { 0xa1, 0x11, 0x02, 0x09, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03002135 static const u8 stopmi0360[] =
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002136 { 0xb1, 0x5d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03002137 static const u8 stopov7648[] =
Jean-Francois Moine62703302008-11-11 08:42:56 -03002138 { 0xa1, 0x21, 0x76, 0x20, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03002139 u8 data;
2140 const u8 *sn9c1xx;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002141
2142 data = 0x0b;
2143 switch (sd->sensor) {
2144 case SENSOR_HV7131R:
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002145 i2c_w8(gspca_dev, stophv7131);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002146 data = 0x2b;
2147 break;
2148 case SENSOR_MI0360:
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002149 i2c_w8(gspca_dev, stopmi0360);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002150 data = 0x29;
2151 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002152 case SENSOR_OV7648:
Jean-Francois Moine62703302008-11-11 08:42:56 -03002153 i2c_w8(gspca_dev, stopov7648);
2154 /* fall thru */
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03002155 case SENSOR_MT9V111:
Jean-Francois Moine62703302008-11-11 08:42:56 -03002156 case SENSOR_OV7630:
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03002157 case SENSOR_PO1030:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002158 data = 0x29;
2159 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002160 }
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002161 sn9c1xx = sn_tb[sd->sensor];
Jean-Francois Moine60017612008-07-18 08:46:19 -03002162 reg_w1(gspca_dev, 0x01, sn9c1xx[1]);
2163 reg_w1(gspca_dev, 0x17, sn9c1xx[0x17]);
2164 reg_w1(gspca_dev, 0x01, sn9c1xx[1]);
2165 reg_w1(gspca_dev, 0x01, data);
Jean-Francois Moine759aa3c2008-09-03 16:48:03 -03002166 reg_w1(gspca_dev, 0xf1, 0x00);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002167}
2168
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002169static void sd_stop0(struct gspca_dev *gspca_dev)
2170{
2171 struct sd *sd = (struct sd *) gspca_dev;
2172
2173 kfree(sd->jpeg_hdr);
2174}
2175
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002176static void do_autogain(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002177{
2178 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002179 int delta;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002180 int expotimes;
Jean-Francois Moine98819182009-01-19 07:37:33 -03002181 u8 luma_mean = 130;
2182 u8 luma_delta = 20;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002183
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002184 /* Thanks S., without your advice, autobright should not work :) */
2185 if (sd->ag_cnt < 0)
2186 return;
2187 if (--sd->ag_cnt >= 0)
2188 return;
2189 sd->ag_cnt = AG_CNT_START;
2190
2191 delta = atomic_read(&sd->avg_lum);
2192 PDEBUG(D_FRAM, "mean lum %d", delta);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002193 if (delta < luma_mean - luma_delta ||
2194 delta > luma_mean + luma_delta) {
2195 switch (sd->sensor) {
2196 case SENSOR_HV7131R:
2197 expotimes = sd->exposure >> 8;
2198 expotimes += (luma_mean - delta) >> 4;
2199 if (expotimes < 0)
2200 expotimes = 0;
2201 sd->exposure = setexposure(gspca_dev,
2202 (unsigned int) (expotimes << 8));
2203 break;
Amauri Magagna46b4f2a2009-10-17 07:21:29 -03002204 case SENSOR_OM6802:
2205 expotimes = sd->exposure;
2206 expotimes += (luma_mean - delta) >> 2;
2207 if (expotimes < 0)
2208 expotimes = 0;
2209 sd->exposure = setexposure(gspca_dev,
2210 (unsigned int) expotimes);
2211 setredblue(gspca_dev);
2212 break;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002213 default:
2214/* case SENSOR_MO4000: */
2215/* case SENSOR_MI0360: */
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03002216/* case SENSOR_MT9V111: */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002217 expotimes = sd->exposure;
2218 expotimes += (luma_mean - delta) >> 6;
2219 if (expotimes < 0)
2220 expotimes = 0;
2221 sd->exposure = setexposure(gspca_dev,
2222 (unsigned int) expotimes);
Jean-Francois Moine403123d2008-11-26 04:46:15 -03002223 setredblue(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002224 break;
2225 }
2226 }
2227}
2228
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002229/* scan the URB packets */
2230/* This function is run at interrupt level. */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002231static void sd_pkt_scan(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03002232 u8 *data, /* isoc packet */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002233 int len) /* iso packet length */
2234{
2235 struct sd *sd = (struct sd *) gspca_dev;
2236 int sof, avg_lum;
2237
2238 sof = len - 64;
2239 if (sof >= 0 && data[sof] == 0xff && data[sof + 1] == 0xd9) {
2240
2241 /* end of frame */
2242 gspca_frame_add(gspca_dev, LAST_PACKET,
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03002243 data, sof + 2);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002244 if (sd->ag_cnt < 0)
2245 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002246/* w1 w2 w3 */
2247/* w4 w5 w6 */
2248/* w7 w8 */
2249/* w4 */
2250 avg_lum = ((data[sof + 29] << 8) | data[sof + 30]) >> 6;
2251/* w6 */
2252 avg_lum += ((data[sof + 33] << 8) | data[sof + 34]) >> 6;
2253/* w2 */
2254 avg_lum += ((data[sof + 25] << 8) | data[sof + 26]) >> 6;
2255/* w8 */
2256 avg_lum += ((data[sof + 37] << 8) | data[sof + 38]) >> 6;
2257/* w5 */
2258 avg_lum += ((data[sof + 31] << 8) | data[sof + 32]) >> 4;
2259 avg_lum >>= 4;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002260 atomic_set(&sd->avg_lum, avg_lum);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002261 return;
2262 }
2263 if (gspca_dev->last_packet_type == LAST_PACKET) {
2264
2265 /* put the JPEG 422 header */
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03002266 gspca_frame_add(gspca_dev, FIRST_PACKET,
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002267 sd->jpeg_hdr, JPEG_HDR_SZ);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002268 }
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03002269 gspca_frame_add(gspca_dev, INTER_PACKET, data, len);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002270}
2271
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002272static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val)
2273{
2274 struct sd *sd = (struct sd *) gspca_dev;
2275
2276 sd->brightness = val;
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03002277 if (gspca_dev->streaming)
2278 setbrightness(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002279 return 0;
2280}
2281
2282static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val)
2283{
2284 struct sd *sd = (struct sd *) gspca_dev;
2285
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002286 *val = sd->brightness;
2287 return 0;
2288}
2289
2290static int sd_setcontrast(struct gspca_dev *gspca_dev, __s32 val)
2291{
2292 struct sd *sd = (struct sd *) gspca_dev;
2293
2294 sd->contrast = val;
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03002295 if (gspca_dev->streaming)
2296 setcontrast(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002297 return 0;
2298}
2299
2300static int sd_getcontrast(struct gspca_dev *gspca_dev, __s32 *val)
2301{
2302 struct sd *sd = (struct sd *) gspca_dev;
2303
2304 *val = sd->contrast;
2305 return 0;
2306}
2307
2308static int sd_setcolors(struct gspca_dev *gspca_dev, __s32 val)
2309{
2310 struct sd *sd = (struct sd *) gspca_dev;
2311
2312 sd->colors = val;
2313 if (gspca_dev->streaming)
2314 setcolors(gspca_dev);
2315 return 0;
2316}
2317
2318static int sd_getcolors(struct gspca_dev *gspca_dev, __s32 *val)
2319{
2320 struct sd *sd = (struct sd *) gspca_dev;
2321
2322 *val = sd->colors;
2323 return 0;
2324}
2325
Jean-Francois Moine403123d2008-11-26 04:46:15 -03002326static int sd_setblue_balance(struct gspca_dev *gspca_dev, __s32 val)
2327{
2328 struct sd *sd = (struct sd *) gspca_dev;
2329
2330 sd->blue = val;
2331 if (gspca_dev->streaming)
2332 setredblue(gspca_dev);
2333 return 0;
2334}
2335
2336static int sd_getblue_balance(struct gspca_dev *gspca_dev, __s32 *val)
2337{
2338 struct sd *sd = (struct sd *) gspca_dev;
2339
2340 *val = sd->blue;
2341 return 0;
2342}
2343
2344static int sd_setred_balance(struct gspca_dev *gspca_dev, __s32 val)
2345{
2346 struct sd *sd = (struct sd *) gspca_dev;
2347
2348 sd->red = val;
2349 if (gspca_dev->streaming)
2350 setredblue(gspca_dev);
2351 return 0;
2352}
2353
2354static int sd_getred_balance(struct gspca_dev *gspca_dev, __s32 *val)
2355{
2356 struct sd *sd = (struct sd *) gspca_dev;
2357
2358 *val = sd->red;
2359 return 0;
2360}
2361
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03002362static int sd_setgamma(struct gspca_dev *gspca_dev, __s32 val)
2363{
2364 struct sd *sd = (struct sd *) gspca_dev;
2365
2366 sd->gamma = val;
2367 if (gspca_dev->streaming)
2368 setgamma(gspca_dev);
2369 return 0;
2370}
2371
2372static int sd_getgamma(struct gspca_dev *gspca_dev, __s32 *val)
2373{
2374 struct sd *sd = (struct sd *) gspca_dev;
2375
2376 *val = sd->gamma;
2377 return 0;
2378}
2379
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002380static int sd_setautogain(struct gspca_dev *gspca_dev, __s32 val)
2381{
2382 struct sd *sd = (struct sd *) gspca_dev;
2383
2384 sd->autogain = val;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002385 if (gspca_dev->streaming)
2386 setautogain(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002387 return 0;
2388}
2389
2390static int sd_getautogain(struct gspca_dev *gspca_dev, __s32 *val)
2391{
2392 struct sd *sd = (struct sd *) gspca_dev;
2393
2394 *val = sd->autogain;
2395 return 0;
2396}
2397
Jean-Francois Moine6c862742008-09-08 04:57:26 -03002398static int sd_setvflip(struct gspca_dev *gspca_dev, __s32 val)
2399{
2400 struct sd *sd = (struct sd *) gspca_dev;
2401
2402 sd->vflip = val;
Jean-Francois Moine79a90982008-10-05 04:21:24 -03002403 if (gspca_dev->streaming)
2404 setvflip(sd);
Jean-Francois Moine6c862742008-09-08 04:57:26 -03002405 return 0;
2406}
2407
2408static int sd_getvflip(struct gspca_dev *gspca_dev, __s32 *val)
2409{
2410 struct sd *sd = (struct sd *) gspca_dev;
2411
2412 *val = sd->vflip;
2413 return 0;
2414}
2415
Jean-Francois Moine0cae8962008-10-17 07:48:24 -03002416static int sd_setinfrared(struct gspca_dev *gspca_dev, __s32 val)
2417{
2418 struct sd *sd = (struct sd *) gspca_dev;
2419
2420 sd->infrared = val;
2421 if (gspca_dev->streaming)
2422 setinfrared(sd);
2423 return 0;
2424}
2425
2426static int sd_getinfrared(struct gspca_dev *gspca_dev, __s32 *val)
2427{
2428 struct sd *sd = (struct sd *) gspca_dev;
2429
2430 *val = sd->infrared;
2431 return 0;
2432}
2433
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002434static int sd_setfreq(struct gspca_dev *gspca_dev, __s32 val)
2435{
2436 struct sd *sd = (struct sd *) gspca_dev;
2437
2438 sd->freq = val;
2439 if (gspca_dev->streaming)
2440 setfreq(gspca_dev);
2441 return 0;
2442}
2443
2444static int sd_getfreq(struct gspca_dev *gspca_dev, __s32 *val)
2445{
2446 struct sd *sd = (struct sd *) gspca_dev;
2447
2448 *val = sd->freq;
2449 return 0;
2450}
2451
Jean-Francois Moine77ac0ba2009-03-02 06:40:52 -03002452static int sd_set_jcomp(struct gspca_dev *gspca_dev,
2453 struct v4l2_jpegcompression *jcomp)
2454{
2455 struct sd *sd = (struct sd *) gspca_dev;
2456
2457 if (jcomp->quality < QUALITY_MIN)
2458 sd->quality = QUALITY_MIN;
2459 else if (jcomp->quality > QUALITY_MAX)
2460 sd->quality = QUALITY_MAX;
2461 else
2462 sd->quality = jcomp->quality;
2463 if (gspca_dev->streaming)
2464 jpeg_set_qual(sd->jpeg_hdr, sd->quality);
2465 return 0;
2466}
2467
2468static int sd_get_jcomp(struct gspca_dev *gspca_dev,
2469 struct v4l2_jpegcompression *jcomp)
2470{
2471 struct sd *sd = (struct sd *) gspca_dev;
2472
2473 memset(jcomp, 0, sizeof *jcomp);
2474 jcomp->quality = sd->quality;
2475 jcomp->jpeg_markers = V4L2_JPEG_MARKER_DHT
2476 | V4L2_JPEG_MARKER_DQT;
2477 return 0;
2478}
2479
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002480static int sd_querymenu(struct gspca_dev *gspca_dev,
2481 struct v4l2_querymenu *menu)
2482{
2483 switch (menu->id) {
2484 case V4L2_CID_POWER_LINE_FREQUENCY:
2485 switch (menu->index) {
2486 case 0: /* V4L2_CID_POWER_LINE_FREQUENCY_DISABLED */
2487 strcpy((char *) menu->name, "NoFliker");
2488 return 0;
2489 case 1: /* V4L2_CID_POWER_LINE_FREQUENCY_50HZ */
2490 strcpy((char *) menu->name, "50 Hz");
2491 return 0;
2492 case 2: /* V4L2_CID_POWER_LINE_FREQUENCY_60HZ */
2493 strcpy((char *) menu->name, "60 Hz");
2494 return 0;
2495 }
2496 break;
2497 }
2498 return -EINVAL;
2499}
2500
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002501/* sub-driver description */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03002502static const struct sd_desc sd_desc = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002503 .name = MODULE_NAME,
2504 .ctrls = sd_ctrls,
2505 .nctrls = ARRAY_SIZE(sd_ctrls),
2506 .config = sd_config,
Jean-Francois Moine012d6b02008-09-03 17:12:16 -03002507 .init = sd_init,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002508 .start = sd_start,
2509 .stopN = sd_stopN,
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002510 .stop0 = sd_stop0,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002511 .pkt_scan = sd_pkt_scan,
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002512 .dq_callback = do_autogain,
Jean-Francois Moine77ac0ba2009-03-02 06:40:52 -03002513 .get_jcomp = sd_get_jcomp,
2514 .set_jcomp = sd_set_jcomp,
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002515 .querymenu = sd_querymenu,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002516};
2517
2518/* -- module initialisation -- */
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002519#define BS(bridge, sensor) \
Jean-Francois Moine9d64fdb2008-07-25 08:53:03 -03002520 .driver_info = (BRIDGE_ ## bridge << 16) \
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002521 | SENSOR_ ## sensor
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03002522static const __devinitdata struct usb_device_id device_table[] = {
Hans de Goede222a07f2008-09-03 17:12:20 -03002523#if !defined CONFIG_USB_SN9C102 && !defined CONFIG_USB_SN9C102_MODULE
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002524 {USB_DEVICE(0x0458, 0x7025), BS(SN9C120, MI0360)},
2525 {USB_DEVICE(0x0458, 0x702e), BS(SN9C120, OV7660)},
Jean-Francois Moinea08d81a2008-11-22 04:53:31 -03002526#endif
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002527 {USB_DEVICE(0x045e, 0x00f5), BS(SN9C105, OV7660)},
2528 {USB_DEVICE(0x045e, 0x00f7), BS(SN9C105, OV7660)},
2529 {USB_DEVICE(0x0471, 0x0327), BS(SN9C105, MI0360)},
2530 {USB_DEVICE(0x0471, 0x0328), BS(SN9C105, MI0360)},
2531 {USB_DEVICE(0x0471, 0x0330), BS(SN9C105, MI0360)},
2532 {USB_DEVICE(0x06f8, 0x3004), BS(SN9C105, OV7660)},
2533 {USB_DEVICE(0x06f8, 0x3008), BS(SN9C105, OV7660)},
2534/* {USB_DEVICE(0x0c45, 0x603a), BS(SN9C102P, OV7648)}, */
2535 {USB_DEVICE(0x0c45, 0x6040), BS(SN9C102P, HV7131R)},
2536/* {USB_DEVICE(0x0c45, 0x607a), BS(SN9C102P, OV7648)}, */
2537/* {USB_DEVICE(0x0c45, 0x607b), BS(SN9C102P, OV7660)}, */
2538 {USB_DEVICE(0x0c45, 0x607c), BS(SN9C102P, HV7131R)},
2539/* {USB_DEVICE(0x0c45, 0x607e), BS(SN9C102P, OV7630)}, */
2540 {USB_DEVICE(0x0c45, 0x60c0), BS(SN9C105, MI0360)},
2541/* {USB_DEVICE(0x0c45, 0x60c2), BS(SN9C105, P1030xC)}, */
2542/* {USB_DEVICE(0x0c45, 0x60c8), BS(SN9C105, OM6802)}, */
2543/* {USB_DEVICE(0x0c45, 0x60cc), BS(SN9C105, HV7131GP)}, */
2544 {USB_DEVICE(0x0c45, 0x60ec), BS(SN9C105, MO4000)},
2545/* {USB_DEVICE(0x0c45, 0x60ef), BS(SN9C105, ICM105C)}, */
2546/* {USB_DEVICE(0x0c45, 0x60fa), BS(SN9C105, OV7648)}, */
2547 {USB_DEVICE(0x0c45, 0x60fb), BS(SN9C105, OV7660)},
Jean-Francois Moine3c41cb72008-09-10 02:57:09 -03002548#if !defined CONFIG_USB_SN9C102 && !defined CONFIG_USB_SN9C102_MODULE
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002549 {USB_DEVICE(0x0c45, 0x60fc), BS(SN9C105, HV7131R)},
2550 {USB_DEVICE(0x0c45, 0x60fe), BS(SN9C105, OV7630)},
Jean-Francois Moine3c41cb72008-09-10 02:57:09 -03002551#endif
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002552 {USB_DEVICE(0x0c45, 0x6100), BS(SN9C120, MI0360)}, /*sn9c128*/
2553/* {USB_DEVICE(0x0c45, 0x6102), BS(SN9C120, P1030xC)}, */
2554/* {USB_DEVICE(0x0c45, 0x6108), BS(SN9C120, OM6802)}, */
2555 {USB_DEVICE(0x0c45, 0x610a), BS(SN9C120, OV7648)}, /*sn9c128*/
2556 {USB_DEVICE(0x0c45, 0x610b), BS(SN9C120, OV7660)}, /*sn9c128*/
2557 {USB_DEVICE(0x0c45, 0x610c), BS(SN9C120, HV7131R)}, /*sn9c128*/
2558 {USB_DEVICE(0x0c45, 0x610e), BS(SN9C120, OV7630)}, /*sn9c128*/
2559/* {USB_DEVICE(0x0c45, 0x610f), BS(SN9C120, S5K53BEB)}, */
2560/* {USB_DEVICE(0x0c45, 0x6122), BS(SN9C110, ICM105C)}, */
2561/* {USB_DEVICE(0x0c45, 0x6123), BS(SN9C110, SanyoCCD)}, */
2562 {USB_DEVICE(0x0c45, 0x6128), BS(SN9C120, OM6802)}, /*sn9c325?*/
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03002563/*bw600.inf:*/
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03002564 {USB_DEVICE(0x0c45, 0x612a), BS(SN9C120, OV7648)}, /*sn9c325?*/
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002565 {USB_DEVICE(0x0c45, 0x612c), BS(SN9C110, MO4000)},
2566 {USB_DEVICE(0x0c45, 0x612e), BS(SN9C110, OV7630)},
2567/* {USB_DEVICE(0x0c45, 0x612f), BS(SN9C110, ICM105C)}, */
Hans de Goede222a07f2008-09-03 17:12:20 -03002568#if !defined CONFIG_USB_SN9C102 && !defined CONFIG_USB_SN9C102_MODULE
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002569 {USB_DEVICE(0x0c45, 0x6130), BS(SN9C120, MI0360)},
Hans de Goede222a07f2008-09-03 17:12:20 -03002570#endif
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002571/* {USB_DEVICE(0x0c45, 0x6132), BS(SN9C120, OV7670)}, */
2572 {USB_DEVICE(0x0c45, 0x6138), BS(SN9C120, MO4000)},
2573 {USB_DEVICE(0x0c45, 0x613a), BS(SN9C120, OV7648)},
Hans de Goede222a07f2008-09-03 17:12:20 -03002574#if !defined CONFIG_USB_SN9C102 && !defined CONFIG_USB_SN9C102_MODULE
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002575 {USB_DEVICE(0x0c45, 0x613b), BS(SN9C120, OV7660)},
Jean-Francois Moine8d977702009-02-19 15:34:48 -03002576#endif
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002577 {USB_DEVICE(0x0c45, 0x613c), BS(SN9C120, HV7131R)},
2578 {USB_DEVICE(0x0c45, 0x613e), BS(SN9C120, OV7630)},
2579/* {USB_DEVICE(0x0c45, 0x6142), BS(SN9C120, PO2030N)}, *sn9c120b*/
2580 {USB_DEVICE(0x0c45, 0x6143), BS(SN9C120, SP80708)}, /*sn9c120b*/
2581 {USB_DEVICE(0x0c45, 0x6148), BS(SN9C120, OM6802)}, /*sn9c120b*/
Jean-Francois Moine64677572009-12-20 12:31:28 -03002582 {USB_DEVICE(0x0c45, 0x614a), BS(SN9C120, ADCM1700)}, /*sn9c120b*/
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002583 {}
2584};
2585MODULE_DEVICE_TABLE(usb, device_table);
2586
2587/* -- device connect -- */
2588static int sd_probe(struct usb_interface *intf,
2589 const struct usb_device_id *id)
2590{
2591 return gspca_dev_probe(intf, id, &sd_desc, sizeof(struct sd),
2592 THIS_MODULE);
2593}
2594
2595static struct usb_driver sd_driver = {
2596 .name = MODULE_NAME,
2597 .id_table = device_table,
2598 .probe = sd_probe,
2599 .disconnect = gspca_disconnect,
Jean-Francois Moine6a709742008-09-03 16:48:10 -03002600#ifdef CONFIG_PM
2601 .suspend = gspca_suspend,
2602 .resume = gspca_resume,
2603#endif
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002604};
2605
2606/* -- module insert / remove -- */
2607static int __init sd_mod_init(void)
2608{
Alexey Klimovf69e9522009-01-01 13:02:07 -03002609 int ret;
2610 ret = usb_register(&sd_driver);
2611 if (ret < 0)
Alexey Klimove6b14842009-01-01 13:04:58 -03002612 return ret;
Jean-Francois Moine10b0e962008-07-22 05:35:10 -03002613 info("registered");
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002614 return 0;
2615}
2616static void __exit sd_mod_exit(void)
2617{
2618 usb_deregister(&sd_driver);
2619 info("deregistered");
2620}
2621
2622module_init(sd_mod_init);
2623module_exit(sd_mod_exit);