blob: eb7b2613ab455c95dd975dd856e12c2621619c3c [file] [log] [blame]
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001/*
Jean-Francois Moine5b34e3e2009-11-02 10:00:48 -03002 * Sonix sn9c102p sn9c105 sn9c120 (jpeg) subdriver
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003 *
Jean-François Moine27c6f9e2010-04-02 06:59:13 -03004 * Copyright (C) 2009-2010 Jean-François Moine <http://moinejf.free.fr>
Jean-Francois Moine5b34e3e2009-11-02 10:00:48 -03005 * Copyright (C) 2005 Michel Xhaard mxhaard@magic.fr
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22#define MODULE_NAME "sonixj"
23
Hans de Goede9712a8b2010-01-31 12:54:29 -030024#include <linux/input.h>
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030025#include "gspca.h"
26#include "jpeg.h"
27
Jean-François Moine27c6f9e2010-04-02 06:59:13 -030028MODULE_AUTHOR("Jean-François Moine <http://moinejf.free.fr>");
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030029MODULE_DESCRIPTION("GSPCA/SONIX JPEG USB Camera Driver");
30MODULE_LICENSE("GPL");
31
Jean-François Moine72b667e2010-10-02 04:35:25 -030032/* controls */
33enum e_ctrl {
34 BRIGHTNESS,
35 CONTRAST,
36 COLORS,
37 BLUE,
38 RED,
39 GAMMA,
40 AUTOGAIN,
Németh Márton76ad3b62010-10-19 03:33:47 -030041 HFLIP,
Jean-François Moine72b667e2010-10-02 04:35:25 -030042 VFLIP,
43 SHARPNESS,
Jean-François Moine3afef852011-01-13 06:39:11 -030044 ILLUM,
Jean-François Moine72b667e2010-10-02 04:35:25 -030045 FREQ,
46 NCTRLS /* number of controls */
47};
48
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030049/* specific webcam descriptor */
50struct sd {
51 struct gspca_dev gspca_dev; /* !! must be the first item */
52
Jean-François Moine72b667e2010-10-02 04:35:25 -030053 struct gspca_ctrl ctrls[NCTRLS];
54
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -030055 atomic_t avg_lum;
Jean-Francois Moine98819182009-01-19 07:37:33 -030056 u32 exposure;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030057
Jean-François Moineb96cfc32011-02-10 07:38:58 -030058 struct work_struct work;
59 struct workqueue_struct *work_thread;
60
61 u32 pktsz; /* (used by pkt_scan) */
62 u16 npkt;
63 u8 nchg;
Jean-François Moinea4a30762011-02-10 07:15:24 -030064 s8 short_mark;
65
Jean-Francois Moine71cb2762009-03-03 05:33:41 -030066 u8 quality; /* image quality */
Jean-François Moineb96cfc32011-02-10 07:38:58 -030067#define QUALITY_MIN 25
68#define QUALITY_MAX 90
69#define QUALITY_DEF 70
Jean-Francois Moine71cb2762009-03-03 05:33:41 -030070
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -030071 u8 reg01;
72 u8 reg17;
Jean-Francois Moine71cb2762009-03-03 05:33:41 -030073 u8 reg18;
Jean-Francois Moinec6c14332010-12-14 16:15:37 -030074 u8 flags;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030075
Jean-Francois Moine98819182009-01-19 07:37:33 -030076 s8 ag_cnt;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030077#define AG_CNT_START 13
78
Jean-Francois Moine98819182009-01-19 07:37:33 -030079 u8 bridge;
Hans de Goede3647fea2008-07-15 05:36:30 -030080#define BRIDGE_SN9C102P 0
81#define BRIDGE_SN9C105 1
82#define BRIDGE_SN9C110 2
83#define BRIDGE_SN9C120 3
Jean-Francois Moine98819182009-01-19 07:37:33 -030084 u8 sensor; /* Type of image sensor chip */
Jean-François Moine11ce8842010-07-26 06:39:40 -030085 u8 i2c_addr;
86
87 u8 jpeg_hdr[JPEG_HDR_SZ];
88};
89enum sensors {
Jean-François Moine9c33afc2010-03-17 15:25:32 -030090 SENSOR_ADCM1700,
Jean-François Moinead98c0f2010-03-18 05:15:30 -030091 SENSOR_GC0307,
Jean-François Moine9c33afc2010-03-17 15:25:32 -030092 SENSOR_HV7131R,
93 SENSOR_MI0360,
Jean-François Moinea067db82010-10-01 07:51:24 -030094 SENSOR_MI0360B,
Jean-François Moine9c33afc2010-03-17 15:25:32 -030095 SENSOR_MO4000,
96 SENSOR_MT9V111,
97 SENSOR_OM6802,
98 SENSOR_OV7630,
99 SENSOR_OV7648,
100 SENSOR_OV7660,
101 SENSOR_PO1030,
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300102 SENSOR_PO2030N,
Jean-François Moine03ed2a12010-04-25 14:45:43 -0300103 SENSOR_SOI768,
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300104 SENSOR_SP80708,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300105};
106
Jean-François Moineb96cfc32011-02-10 07:38:58 -0300107static void qual_upd(struct work_struct *work);
108
Jean-Francois Moineb2272a42010-12-14 16:16:16 -0300109/* device flags */
Jean-François Moine3afef852011-01-13 06:39:11 -0300110#define F_PDN_INV 0x01 /* inverse pin S_PWR_DN / sn_xxx tables */
111#define F_ILLUM 0x02 /* presence of illuminator */
Jean-Francois Moineb2272a42010-12-14 16:16:16 -0300112
Jean-Francois Moine4fd350e2010-12-14 16:16:58 -0300113/* sn9c1xx definitions */
114/* register 0x01 */
115#define S_PWR_DN 0x01 /* sensor power down */
116#define S_PDN_INV 0x02 /* inverse pin S_PWR_DN */
117#define V_TX_EN 0x04 /* video transfer enable */
118#define LED 0x08 /* output to pin LED */
119#define SCL_SEL_OD 0x20 /* open-drain mode */
120#define SYS_SEL_48M 0x40 /* system clock 0: 24MHz, 1: 48MHz */
121/* register 0x17 */
122#define MCK_SIZE_MASK 0x1f /* sensor master clock */
123#define SEN_CLK_EN 0x20 /* enable sensor clock */
124#define DEF_EN 0x80 /* defect pixel by 0: soft, 1: hard */
125
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300126/* V4L2 controls supported by the driver */
Jean-François Moine72b667e2010-10-02 04:35:25 -0300127static void setbrightness(struct gspca_dev *gspca_dev);
128static void setcontrast(struct gspca_dev *gspca_dev);
129static void setcolors(struct gspca_dev *gspca_dev);
130static void setredblue(struct gspca_dev *gspca_dev);
131static void setgamma(struct gspca_dev *gspca_dev);
132static void setautogain(struct gspca_dev *gspca_dev);
Németh Márton76ad3b62010-10-19 03:33:47 -0300133static void sethvflip(struct gspca_dev *gspca_dev);
Jean-François Moine72b667e2010-10-02 04:35:25 -0300134static void setsharpness(struct gspca_dev *gspca_dev);
Jean-François Moine3afef852011-01-13 06:39:11 -0300135static void setillum(struct gspca_dev *gspca_dev);
Jean-François Moine72b667e2010-10-02 04:35:25 -0300136static void setfreq(struct gspca_dev *gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300137
Jean-François Moine72b667e2010-10-02 04:35:25 -0300138static const struct ctrl sd_ctrls[NCTRLS] = {
139[BRIGHTNESS] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300140 {
141 .id = V4L2_CID_BRIGHTNESS,
142 .type = V4L2_CTRL_TYPE_INTEGER,
143 .name = "Brightness",
144 .minimum = 0,
Jean-François Moine72b667e2010-10-02 04:35:25 -0300145 .maximum = 0xff,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300146 .step = 1,
Jean-François Moine72b667e2010-10-02 04:35:25 -0300147 .default_value = 0x80,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300148 },
Jean-François Moine72b667e2010-10-02 04:35:25 -0300149 .set_control = setbrightness
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300150 },
Jean-François Moine72b667e2010-10-02 04:35:25 -0300151[CONTRAST] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300152 {
153 .id = V4L2_CID_CONTRAST,
154 .type = V4L2_CTRL_TYPE_INTEGER,
155 .name = "Contrast",
156 .minimum = 0,
Jean-Francois Moine05b809c2008-09-03 16:47:59 -0300157#define CONTRAST_MAX 127
158 .maximum = CONTRAST_MAX,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300159 .step = 1,
Jean-François Moine72b667e2010-10-02 04:35:25 -0300160 .default_value = 63,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300161 },
Jean-François Moine72b667e2010-10-02 04:35:25 -0300162 .set_control = setcontrast
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300163 },
Jean-François Moine72b667e2010-10-02 04:35:25 -0300164[COLORS] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300165 {
166 .id = V4L2_CID_SATURATION,
167 .type = V4L2_CTRL_TYPE_INTEGER,
Hans de Goede3fb4a572009-06-18 14:31:36 -0300168 .name = "Saturation",
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300169 .minimum = 0,
Jean-Francois Moine403123d2008-11-26 04:46:15 -0300170 .maximum = 40,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300171 .step = 1,
Jean-François Moine72b667e2010-10-02 04:35:25 -0300172#define COLORS_DEF 25
173 .default_value = COLORS_DEF,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300174 },
Jean-François Moine72b667e2010-10-02 04:35:25 -0300175 .set_control = setcolors
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300176 },
Jean-François Moine72b667e2010-10-02 04:35:25 -0300177[BLUE] = {
Jean-Francois Moine403123d2008-11-26 04:46:15 -0300178 {
179 .id = V4L2_CID_BLUE_BALANCE,
180 .type = V4L2_CTRL_TYPE_INTEGER,
181 .name = "Blue Balance",
182 .minimum = 24,
183 .maximum = 40,
184 .step = 1,
Jean-François Moine72b667e2010-10-02 04:35:25 -0300185 .default_value = 32,
Jean-Francois Moine403123d2008-11-26 04:46:15 -0300186 },
Jean-François Moine72b667e2010-10-02 04:35:25 -0300187 .set_control = setredblue
Jean-Francois Moine403123d2008-11-26 04:46:15 -0300188 },
Jean-François Moine72b667e2010-10-02 04:35:25 -0300189[RED] = {
Jean-Francois Moine403123d2008-11-26 04:46:15 -0300190 {
191 .id = V4L2_CID_RED_BALANCE,
192 .type = V4L2_CTRL_TYPE_INTEGER,
193 .name = "Red Balance",
194 .minimum = 24,
195 .maximum = 40,
196 .step = 1,
Jean-François Moine72b667e2010-10-02 04:35:25 -0300197 .default_value = 32,
Jean-Francois Moine403123d2008-11-26 04:46:15 -0300198 },
Jean-François Moine72b667e2010-10-02 04:35:25 -0300199 .set_control = setredblue
Jean-Francois Moine403123d2008-11-26 04:46:15 -0300200 },
Jean-François Moine72b667e2010-10-02 04:35:25 -0300201[GAMMA] = {
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -0300202 {
203 .id = V4L2_CID_GAMMA,
204 .type = V4L2_CTRL_TYPE_INTEGER,
205 .name = "Gamma",
206 .minimum = 0,
207 .maximum = 40,
208 .step = 1,
209#define GAMMA_DEF 20
210 .default_value = GAMMA_DEF,
211 },
Jean-François Moine72b667e2010-10-02 04:35:25 -0300212 .set_control = setgamma
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -0300213 },
Jean-François Moine72b667e2010-10-02 04:35:25 -0300214[AUTOGAIN] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300215 {
216 .id = V4L2_CID_AUTOGAIN,
217 .type = V4L2_CTRL_TYPE_BOOLEAN,
218 .name = "Auto Gain",
219 .minimum = 0,
220 .maximum = 1,
221 .step = 1,
Jean-François Moine72b667e2010-10-02 04:35:25 -0300222 .default_value = 1
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300223 },
Jean-François Moine72b667e2010-10-02 04:35:25 -0300224 .set_control = setautogain
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300225 },
Németh Márton76ad3b62010-10-19 03:33:47 -0300226[HFLIP] = {
227 {
228 .id = V4L2_CID_HFLIP,
229 .type = V4L2_CTRL_TYPE_BOOLEAN,
230 .name = "Mirror",
231 .minimum = 0,
232 .maximum = 1,
233 .step = 1,
234 .default_value = 0,
235 },
236 .set_control = sethvflip
237 },
Jean-François Moine72b667e2010-10-02 04:35:25 -0300238[VFLIP] = {
Jean-Francois Moine6c862742008-09-08 04:57:26 -0300239 {
240 .id = V4L2_CID_VFLIP,
241 .type = V4L2_CTRL_TYPE_BOOLEAN,
242 .name = "Vflip",
243 .minimum = 0,
244 .maximum = 1,
245 .step = 1,
Jean-François Moine72b667e2010-10-02 04:35:25 -0300246 .default_value = 0,
Jean-Francois Moine6c862742008-09-08 04:57:26 -0300247 },
Németh Márton76ad3b62010-10-19 03:33:47 -0300248 .set_control = sethvflip
Jean-Francois Moine6c862742008-09-08 04:57:26 -0300249 },
Jean-François Moine72b667e2010-10-02 04:35:25 -0300250[SHARPNESS] = {
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300251 {
252 .id = V4L2_CID_SHARPNESS,
253 .type = V4L2_CTRL_TYPE_INTEGER,
254 .name = "Sharpness",
255 .minimum = 0,
256 .maximum = 255,
257 .step = 1,
Jean-François Moine72b667e2010-10-02 04:35:25 -0300258 .default_value = 90,
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300259 },
Jean-François Moine72b667e2010-10-02 04:35:25 -0300260 .set_control = setsharpness
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300261 },
Jean-François Moine3afef852011-01-13 06:39:11 -0300262[ILLUM] = {
Jean-Francois Moine0cae8962008-10-17 07:48:24 -0300263 {
Jean-François Moine3afef852011-01-13 06:39:11 -0300264 .id = V4L2_CID_ILLUMINATORS_1,
Jean-Francois Moine0cae8962008-10-17 07:48:24 -0300265 .type = V4L2_CTRL_TYPE_BOOLEAN,
Jean-François Moine3afef852011-01-13 06:39:11 -0300266 .name = "Illuminator / infrared",
Jean-Francois Moine0cae8962008-10-17 07:48:24 -0300267 .minimum = 0,
268 .maximum = 1,
269 .step = 1,
Jean-François Moine72b667e2010-10-02 04:35:25 -0300270 .default_value = 0,
Jean-Francois Moine0cae8962008-10-17 07:48:24 -0300271 },
Jean-François Moine3afef852011-01-13 06:39:11 -0300272 .set_control = setillum
Jean-Francois Moine0cae8962008-10-17 07:48:24 -0300273 },
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300274/* ov7630/ov7648/ov7660 only */
Jean-François Moine72b667e2010-10-02 04:35:25 -0300275[FREQ] = {
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300276 {
277 .id = V4L2_CID_POWER_LINE_FREQUENCY,
278 .type = V4L2_CTRL_TYPE_MENU,
279 .name = "Light frequency filter",
280 .minimum = 0,
281 .maximum = 2, /* 0: 0, 1: 50Hz, 2:60Hz */
282 .step = 1,
Jean-François Moine72b667e2010-10-02 04:35:25 -0300283 .default_value = 1,
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300284 },
Jean-François Moine72b667e2010-10-02 04:35:25 -0300285 .set_control = setfreq
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300286 },
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300287};
288
Jean-Francois Moine577cbf42008-12-05 06:18:37 -0300289/* table of the disabled controls */
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300290static const __u32 ctrl_dis[] = {
Jean-François Moine72b667e2010-10-02 04:35:25 -0300291[SENSOR_ADCM1700] = (1 << AUTOGAIN) |
Németh Márton76ad3b62010-10-19 03:33:47 -0300292 (1 << HFLIP) |
Jean-François Moine72b667e2010-10-02 04:35:25 -0300293 (1 << VFLIP) |
294 (1 << FREQ),
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300295
Jean-François Moine3afef852011-01-13 06:39:11 -0300296[SENSOR_GC0307] = (1 << HFLIP) |
Jean-François Moine72b667e2010-10-02 04:35:25 -0300297 (1 << VFLIP) |
298 (1 << FREQ),
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300299
Jean-François Moine3afef852011-01-13 06:39:11 -0300300[SENSOR_HV7131R] = (1 << HFLIP) |
Jean-François Moine72b667e2010-10-02 04:35:25 -0300301 (1 << FREQ),
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300302
Jean-François Moine3afef852011-01-13 06:39:11 -0300303[SENSOR_MI0360] = (1 << HFLIP) |
Jean-François Moine72b667e2010-10-02 04:35:25 -0300304 (1 << VFLIP) |
305 (1 << FREQ),
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300306
Jean-François Moine3afef852011-01-13 06:39:11 -0300307[SENSOR_MI0360B] = (1 << HFLIP) |
Jean-François Moine72b667e2010-10-02 04:35:25 -0300308 (1 << VFLIP) |
309 (1 << FREQ),
Jean-François Moinea067db82010-10-01 07:51:24 -0300310
Jean-François Moine3afef852011-01-13 06:39:11 -0300311[SENSOR_MO4000] = (1 << HFLIP) |
Jean-François Moine72b667e2010-10-02 04:35:25 -0300312 (1 << VFLIP) |
313 (1 << FREQ),
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300314
Németh Márton76ad3b62010-10-19 03:33:47 -0300315[SENSOR_MT9V111] = (1 << HFLIP) |
316 (1 << VFLIP) |
Jean-François Moine72b667e2010-10-02 04:35:25 -0300317 (1 << FREQ),
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300318
Jean-François Moine3afef852011-01-13 06:39:11 -0300319[SENSOR_OM6802] = (1 << HFLIP) |
Jean-François Moine72b667e2010-10-02 04:35:25 -0300320 (1 << VFLIP) |
321 (1 << FREQ),
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300322
Jean-François Moine3afef852011-01-13 06:39:11 -0300323[SENSOR_OV7630] = (1 << HFLIP),
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300324
Jean-François Moine3afef852011-01-13 06:39:11 -0300325[SENSOR_OV7648] = (1 << HFLIP),
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300326
Jean-François Moine72b667e2010-10-02 04:35:25 -0300327[SENSOR_OV7660] = (1 << AUTOGAIN) |
Németh Márton76ad3b62010-10-19 03:33:47 -0300328 (1 << HFLIP) |
Jean-François Moine72b667e2010-10-02 04:35:25 -0300329 (1 << VFLIP),
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300330
Jean-François Moine72b667e2010-10-02 04:35:25 -0300331[SENSOR_PO1030] = (1 << AUTOGAIN) |
Németh Márton76ad3b62010-10-19 03:33:47 -0300332 (1 << HFLIP) |
Jean-François Moine72b667e2010-10-02 04:35:25 -0300333 (1 << VFLIP) |
334 (1 << FREQ),
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300335
Jean-François Moine72b667e2010-10-02 04:35:25 -0300336[SENSOR_PO2030N] = (1 << AUTOGAIN) |
Jean-François Moine72b667e2010-10-02 04:35:25 -0300337 (1 << FREQ),
Jean-François Moine780e3122010-10-19 04:29:10 -0300338
Jean-François Moine72b667e2010-10-02 04:35:25 -0300339[SENSOR_SOI768] = (1 << AUTOGAIN) |
Németh Márton76ad3b62010-10-19 03:33:47 -0300340 (1 << HFLIP) |
Jean-François Moine72b667e2010-10-02 04:35:25 -0300341 (1 << VFLIP) |
342 (1 << FREQ),
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300343
Jean-François Moine72b667e2010-10-02 04:35:25 -0300344[SENSOR_SP80708] = (1 << AUTOGAIN) |
Németh Márton76ad3b62010-10-19 03:33:47 -0300345 (1 << HFLIP) |
Jean-François Moine72b667e2010-10-02 04:35:25 -0300346 (1 << VFLIP) |
347 (1 << FREQ),
Jean-Francois Moine577cbf42008-12-05 06:18:37 -0300348};
349
Jean-Francois Moine64677572009-12-20 12:31:28 -0300350static const struct v4l2_pix_format cif_mode[] = {
351 {352, 288, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
352 .bytesperline = 352,
353 .sizeimage = 352 * 288 * 4 / 8 + 590,
354 .colorspace = V4L2_COLORSPACE_JPEG,
355 .priv = 0},
356};
Jean-Francois Moinecc611b82008-12-29 07:49:41 -0300357static const struct v4l2_pix_format vga_mode[] = {
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300358 {160, 120, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
359 .bytesperline = 160,
Jean-Francois Moine5d052942008-09-03 16:48:09 -0300360 .sizeimage = 160 * 120 * 4 / 8 + 590,
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300361 .colorspace = V4L2_COLORSPACE_JPEG,
362 .priv = 2},
363 {320, 240, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
364 .bytesperline = 320,
365 .sizeimage = 320 * 240 * 3 / 8 + 590,
366 .colorspace = V4L2_COLORSPACE_JPEG,
367 .priv = 1},
368 {640, 480, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
369 .bytesperline = 640,
Hans de Goedea5d1cc32009-06-18 06:03:20 -0300370 /* Note 3 / 8 is not large enough, not even 5 / 8 is ?! */
371 .sizeimage = 640 * 480 * 3 / 4 + 590,
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300372 .colorspace = V4L2_COLORSPACE_JPEG,
373 .priv = 0},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300374};
375
Jean-Francois Moine64677572009-12-20 12:31:28 -0300376static const u8 sn_adcm1700[0x1c] = {
377/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300378 0x00, 0x43, 0x60, 0x00, 0x1a, 0x00, 0x00, 0x00,
Jean-Francois Moine64677572009-12-20 12:31:28 -0300379/* reg8 reg9 rega regb regc regd rege regf */
380 0x80, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
381/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
382 0x03, 0x00, 0x05, 0x01, 0x05, 0x16, 0x12, 0x42,
383/* reg18 reg19 reg1a reg1b */
384 0x06, 0x00, 0x00, 0x00
385};
386
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300387static const u8 sn_gc0307[0x1c] = {
388/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
389 0x00, 0x61, 0x62, 0x00, 0x1a, 0x00, 0x00, 0x00,
390/* reg8 reg9 rega regb regc regd rege regf */
391 0x80, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
392/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
393 0x03, 0x00, 0x03, 0x01, 0x08, 0x28, 0x1e, 0x02,
394/* reg18 reg19 reg1a reg1b */
395 0x06, 0x00, 0x00, 0x00
396};
397
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300398static const u8 sn_hv7131[0x1c] = {
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300399/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-François Moine19697b52010-07-14 06:33:51 -0300400 0x00, 0x03, 0x60, 0x00, 0x1a, 0x20, 0x20, 0x20,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300401/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300402 0x81, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300403/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
404 0x03, 0x00, 0x00, 0x01, 0x03, 0x28, 0x1e, 0x41,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300405/* reg18 reg19 reg1a reg1b */
406 0x0a, 0x00, 0x00, 0x00
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300407};
408
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300409static const u8 sn_mi0360[0x1c] = {
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300410/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-François Moine19697b52010-07-14 06:33:51 -0300411 0x00, 0x61, 0x40, 0x00, 0x1a, 0x20, 0x20, 0x20,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300412/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300413 0x81, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300414/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
415 0x03, 0x00, 0x00, 0x02, 0x0a, 0x28, 0x1e, 0x61,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300416/* reg18 reg19 reg1a reg1b */
417 0x06, 0x00, 0x00, 0x00
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300418};
419
Jean-François Moinea067db82010-10-01 07:51:24 -0300420static const u8 sn_mi0360b[0x1c] = {
421/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
422 0x00, 0x61, 0x40, 0x00, 0x1a, 0x00, 0x00, 0x00,
423/* reg8 reg9 rega regb regc regd rege regf */
424 0x81, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
425/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
426 0x03, 0x00, 0x00, 0x02, 0x0a, 0x28, 0x1e, 0x40,
427/* reg18 reg19 reg1a reg1b */
428 0x06, 0x00, 0x00, 0x00
429};
430
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300431static const u8 sn_mo4000[0x1c] = {
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300432/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300433 0x00, 0x23, 0x60, 0x00, 0x1a, 0x00, 0x20, 0x18,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300434/* reg8 reg9 rega regb regc regd rege regf */
435 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
436/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
437 0x03, 0x00, 0x0b, 0x0f, 0x14, 0x28, 0x1e, 0x40,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300438/* reg18 reg19 reg1a reg1b */
439 0x08, 0x00, 0x00, 0x00
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300440};
441
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300442static const u8 sn_mt9v111[0x1c] = {
443/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
444 0x00, 0x61, 0x40, 0x00, 0x1a, 0x20, 0x20, 0x20,
445/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300446 0x81, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300447/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
448 0x03, 0x00, 0x00, 0x02, 0x1c, 0x28, 0x1e, 0x40,
449/* reg18 reg19 reg1a reg1b */
450 0x06, 0x00, 0x00, 0x00
451};
452
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300453static const u8 sn_om6802[0x1c] = {
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300454/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Amauri Magagna46b4f2a2009-10-17 07:21:29 -0300455 0x00, 0x23, 0x72, 0x00, 0x1a, 0x20, 0x20, 0x19,
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300456/* reg8 reg9 rega regb regc regd rege regf */
457 0x80, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
458/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
459 0x03, 0x00, 0x51, 0x01, 0x00, 0x28, 0x1e, 0x40,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300460/* reg18 reg19 reg1a reg1b */
461 0x05, 0x00, 0x00, 0x00
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300462};
463
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300464static const u8 sn_ov7630[0x1c] = {
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300465/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-François Moine0a85c742010-04-25 14:33:31 -0300466 0x00, 0x21, 0x40, 0x00, 0x1a, 0x00, 0x00, 0x00,
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300467/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300468 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300469/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
470 0x03, 0x00, 0x04, 0x01, 0x0a, 0x28, 0x1e, 0xc2,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300471/* reg18 reg19 reg1a reg1b */
472 0x0b, 0x00, 0x00, 0x00
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300473};
474
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300475static const u8 sn_ov7648[0x1c] = {
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300476/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-Francois Moine62703302008-11-11 08:42:56 -0300477 0x00, 0x63, 0x40, 0x00, 0x1a, 0x20, 0x20, 0x20,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300478/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300479 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300480/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
Jean-Francois Moine62703302008-11-11 08:42:56 -0300481 0x03, 0x00, 0x00, 0x01, 0x00, 0x28, 0x1e, 0x00,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300482/* reg18 reg19 reg1a reg1b */
483 0x0b, 0x00, 0x00, 0x00
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300484};
485
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300486static const u8 sn_ov7660[0x1c] = {
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300487/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
Jean-Francois Moinec8b9b2c2009-04-26 14:46:12 -0300488 0x00, 0x61, 0x40, 0x00, 0x1a, 0x00, 0x00, 0x00,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300489/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moinec8b9b2c2009-04-26 14:46:12 -0300490 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -0300491/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
492 0x03, 0x00, 0x01, 0x01, 0x08, 0x28, 0x1e, 0x20,
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300493/* reg18 reg19 reg1a reg1b */
494 0x07, 0x00, 0x00, 0x00
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300495};
496
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -0300497static const u8 sn_po1030[0x1c] = {
498/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
499 0x00, 0x21, 0x62, 0x00, 0x1a, 0x20, 0x20, 0x20,
500/* reg8 reg9 rega regb regc regd rege regf */
501 0x81, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
502/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
503 0x03, 0x00, 0x00, 0x06, 0x06, 0x28, 0x1e, 0x00,
504/* reg18 reg19 reg1a reg1b */
505 0x07, 0x00, 0x00, 0x00
506};
507
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300508static const u8 sn_po2030n[0x1c] = {
509/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
510 0x00, 0x63, 0x40, 0x00, 0x1a, 0x00, 0x00, 0x00,
511/* reg8 reg9 rega regb regc regd rege regf */
512 0x81, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
513/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
514 0x03, 0x00, 0x00, 0x01, 0x14, 0x28, 0x1e, 0x00,
515/* reg18 reg19 reg1a reg1b */
516 0x07, 0x00, 0x00, 0x00
517};
518
Jean-François Moine03ed2a12010-04-25 14:45:43 -0300519static const u8 sn_soi768[0x1c] = {
520/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
521 0x00, 0x21, 0x40, 0x00, 0x1a, 0x00, 0x00, 0x00,
522/* reg8 reg9 rega regb regc regd rege regf */
523 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
524/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
525 0x03, 0x00, 0x00, 0x01, 0x08, 0x28, 0x1e, 0x00,
526/* reg18 reg19 reg1a reg1b */
527 0x07, 0x00, 0x00, 0x00
528};
529
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -0300530static const u8 sn_sp80708[0x1c] = {
531/* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
532 0x00, 0x63, 0x60, 0x00, 0x1a, 0x20, 0x20, 0x20,
533/* reg8 reg9 rega regb regc regd rege regf */
Jean-Francois Moine98941e42009-11-02 09:56:59 -0300534 0x81, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -0300535/* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
536 0x03, 0x00, 0x00, 0x03, 0x04, 0x28, 0x1e, 0x00,
537/* reg18 reg19 reg1a reg1b */
538 0x07, 0x00, 0x00, 0x00
539};
540
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300541/* sequence specific to the sensors - !! index = SENSOR_xxx */
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300542static const u8 *sn_tb[] = {
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300543[SENSOR_ADCM1700] = sn_adcm1700,
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300544[SENSOR_GC0307] = sn_gc0307,
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300545[SENSOR_HV7131R] = sn_hv7131,
546[SENSOR_MI0360] = sn_mi0360,
Jean-François Moinea067db82010-10-01 07:51:24 -0300547[SENSOR_MI0360B] = sn_mi0360b,
Jean-François Moine9c33afc2010-03-17 15:25:32 -0300548[SENSOR_MO4000] = sn_mo4000,
549[SENSOR_MT9V111] = sn_mt9v111,
550[SENSOR_OM6802] = sn_om6802,
551[SENSOR_OV7630] = sn_ov7630,
552[SENSOR_OV7648] = sn_ov7648,
553[SENSOR_OV7660] = sn_ov7660,
554[SENSOR_PO1030] = sn_po1030,
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300555[SENSOR_PO2030N] = sn_po2030n,
Jean-François Moine03ed2a12010-04-25 14:45:43 -0300556[SENSOR_SOI768] = sn_soi768,
557[SENSOR_SP80708] = sn_sp80708,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300558};
559
Jean-Francois Moineb083b922009-02-01 14:20:07 -0300560/* default gamma table */
Jean-Francois Moine98819182009-01-19 07:37:33 -0300561static const u8 gamma_def[17] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300562 0x00, 0x2d, 0x46, 0x5a, 0x6c, 0x7c, 0x8b, 0x99,
563 0xa6, 0xb2, 0xbf, 0xca, 0xd5, 0xe0, 0xeb, 0xf5, 0xff
564};
Jean-Francois Moine64677572009-12-20 12:31:28 -0300565/* gamma for sensor ADCM1700 */
566static const u8 gamma_spec_0[17] = {
567 0x0f, 0x39, 0x5a, 0x74, 0x86, 0x95, 0xa6, 0xb4,
568 0xbd, 0xc4, 0xcc, 0xd4, 0xd5, 0xde, 0xe4, 0xed, 0xf5
569};
Jean-Francois Moineb083b922009-02-01 14:20:07 -0300570/* gamma for sensors HV7131R and MT9V111 */
571static const u8 gamma_spec_1[17] = {
572 0x08, 0x3a, 0x52, 0x65, 0x75, 0x83, 0x91, 0x9d,
573 0xa9, 0xb4, 0xbe, 0xc8, 0xd2, 0xdb, 0xe4, 0xed, 0xf5
574};
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300575/* gamma for sensor GC0307 */
Jean-Francois Moineb083b922009-02-01 14:20:07 -0300576static const u8 gamma_spec_2[17] = {
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300577 0x14, 0x37, 0x50, 0x6a, 0x7c, 0x8d, 0x9d, 0xab,
578 0xb5, 0xbf, 0xc2, 0xcb, 0xd1, 0xd6, 0xdb, 0xe1, 0xeb
579};
580/* gamma for sensor SP80708 */
581static const u8 gamma_spec_3[17] = {
Jean-Francois Moineb083b922009-02-01 14:20:07 -0300582 0x0a, 0x2d, 0x4e, 0x68, 0x7d, 0x8f, 0x9f, 0xab,
583 0xb7, 0xc2, 0xcc, 0xd3, 0xd8, 0xde, 0xe2, 0xe5, 0xe6
584};
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -0300585
Jean-Francois Moine803f9cc2008-10-04 14:17:02 -0300586/* color matrix and offsets */
Jean-Francois Moine98819182009-01-19 07:37:33 -0300587static const u8 reg84[] = {
Jean-Francois Moine803f9cc2008-10-04 14:17:02 -0300588 0x14, 0x00, 0x27, 0x00, 0x07, 0x00, /* YR YG YB gains */
589 0xe8, 0x0f, 0xda, 0x0f, 0x40, 0x00, /* UR UG UB */
590 0x3e, 0x00, 0xcd, 0x0f, 0xf7, 0x0f, /* VR VG VB */
591 0x00, 0x00, 0x00 /* YUV offsets */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300592};
Németh Mártonccbc5df2010-10-18 07:00:48 -0300593
594#define DELAY 0xdd
595
Jean-Francois Moine64677572009-12-20 12:31:28 -0300596static const u8 adcm1700_sensor_init[][8] = {
597 {0xa0, 0x51, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300598 {0xb0, 0x51, 0x04, 0x08, 0x00, 0x00, 0x00, 0x10}, /* reset */
Németh Mártonccbc5df2010-10-18 07:00:48 -0300599 {DELAY, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
Jean-Francois Moine64677572009-12-20 12:31:28 -0300600 {0xb0, 0x51, 0x04, 0x00, 0x00, 0x00, 0x00, 0x10},
Németh Mártonccbc5df2010-10-18 07:00:48 -0300601 {DELAY, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
Jean-Francois Moine64677572009-12-20 12:31:28 -0300602 {0xb0, 0x51, 0x0c, 0xe0, 0x2e, 0x00, 0x00, 0x10},
603 {0xb0, 0x51, 0x10, 0x02, 0x02, 0x00, 0x00, 0x10},
604 {0xb0, 0x51, 0x14, 0x0e, 0x0e, 0x00, 0x00, 0x10},
605 {0xb0, 0x51, 0x1c, 0x00, 0x80, 0x00, 0x00, 0x10},
606 {0xb0, 0x51, 0x20, 0x01, 0x00, 0x00, 0x00, 0x10},
Németh Mártonccbc5df2010-10-18 07:00:48 -0300607 {DELAY, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
Jean-Francois Moine64677572009-12-20 12:31:28 -0300608 {0xb0, 0x51, 0x04, 0x04, 0x00, 0x00, 0x00, 0x10},
Németh Mártonccbc5df2010-10-18 07:00:48 -0300609 {DELAY, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
Jean-Francois Moine64677572009-12-20 12:31:28 -0300610 {0xb0, 0x51, 0x04, 0x01, 0x00, 0x00, 0x00, 0x10},
611 {0xa0, 0x51, 0xfe, 0x10, 0x00, 0x00, 0x00, 0x10},
612 {0xb0, 0x51, 0x14, 0x01, 0x00, 0x00, 0x00, 0x10},
613 {0xb0, 0x51, 0x32, 0x00, 0x00, 0x00, 0x00, 0x10},
614 {}
615};
616static const u8 adcm1700_sensor_param1[][8] = {
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300617 {0xb0, 0x51, 0x26, 0xf9, 0x01, 0x00, 0x00, 0x10}, /* exposure? */
Jean-Francois Moine64677572009-12-20 12:31:28 -0300618 {0xd0, 0x51, 0x1e, 0x8e, 0x8e, 0x8e, 0x8e, 0x10},
619
620 {0xa0, 0x51, 0xfe, 0x01, 0x00, 0x00, 0x00, 0x10},
621 {0xb0, 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10},
622 {0xa0, 0x51, 0xfe, 0x10, 0x00, 0x00, 0x00, 0x10},
623 {0xb0, 0x51, 0x32, 0x00, 0x72, 0x00, 0x00, 0x10},
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300624 {0xd0, 0x51, 0x1e, 0xbe, 0xd7, 0xe8, 0xbe, 0x10}, /* exposure? */
Jean-Francois Moine64677572009-12-20 12:31:28 -0300625
Jean-Francois Moine878b35a2009-12-30 04:53:07 -0300626 {0xa0, 0x51, 0xfe, 0x01, 0x00, 0x00, 0x00, 0x10},
627 {0xb0, 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10},
628 {0xa0, 0x51, 0xfe, 0x10, 0x00, 0x00, 0x00, 0x10},
629 {0xb0, 0x51, 0x32, 0x00, 0xa2, 0x00, 0x00, 0x10},
Jean-Francois Moine64677572009-12-20 12:31:28 -0300630 {}
631};
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300632static const u8 gc0307_sensor_init[][8] = {
633 {0xa0, 0x21, 0x43, 0x00, 0x00, 0x00, 0x00, 0x10},
634 {0xa0, 0x21, 0x44, 0xa2, 0x00, 0x00, 0x00, 0x10},
635 {0xa0, 0x21, 0x01, 0x6a, 0x00, 0x00, 0x00, 0x10},
636 {0xa0, 0x21, 0x02, 0x70, 0x00, 0x00, 0x00, 0x10},
637 {0xa0, 0x21, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
638 {0xa0, 0x21, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x10},
639 {0xa0, 0x21, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x10},
640 {0xa0, 0x21, 0x11, 0x05, 0x00, 0x00, 0x00, 0x10},
641 {0xa0, 0x21, 0x05, 0x00, 0x00, 0x00, 0x00, 0x10},
642 {0xa0, 0x21, 0x06, 0x00, 0x00, 0x00, 0x00, 0x10},
643 {0xa0, 0x21, 0x07, 0x00, 0x00, 0x00, 0x00, 0x10},
644 {0xa0, 0x21, 0x08, 0x02, 0x00, 0x00, 0x00, 0x10},
645 {0xa0, 0x21, 0x09, 0x01, 0x00, 0x00, 0x00, 0x10},
646 {0xa0, 0x21, 0x0a, 0xe8, 0x00, 0x00, 0x00, 0x10},
647 {0xa0, 0x21, 0x0b, 0x02, 0x00, 0x00, 0x00, 0x10},
648 {0xa0, 0x21, 0x0c, 0x80, 0x00, 0x00, 0x00, 0x10},
649 {0xa0, 0x21, 0x0d, 0x22, 0x00, 0x00, 0x00, 0x10},
650 {0xa0, 0x21, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x10},
651 {0xa0, 0x21, 0x0f, 0xb2, 0x00, 0x00, 0x00, 0x10},
652 {0xa0, 0x21, 0x12, 0x70, 0x00, 0x00, 0x00, 0x10},
Németh Mártonccbc5df2010-10-18 07:00:48 -0300653 {DELAY, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /*delay 10ms*/
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300654 {0xa0, 0x21, 0x13, 0x00, 0x00, 0x00, 0x00, 0x10},
655 {0xa0, 0x21, 0x15, 0xb8, 0x00, 0x00, 0x00, 0x10},
656 {0xa0, 0x21, 0x16, 0x13, 0x00, 0x00, 0x00, 0x10},
657 {0xa0, 0x21, 0x17, 0x52, 0x00, 0x00, 0x00, 0x10},
658 {0xa0, 0x21, 0x18, 0x50, 0x00, 0x00, 0x00, 0x10},
659 {0xa0, 0x21, 0x1e, 0x0d, 0x00, 0x00, 0x00, 0x10},
660 {0xa0, 0x21, 0x1f, 0x32, 0x00, 0x00, 0x00, 0x10},
661 {0xa0, 0x21, 0x61, 0x90, 0x00, 0x00, 0x00, 0x10},
662 {0xa0, 0x21, 0x63, 0x70, 0x00, 0x00, 0x00, 0x10},
663 {0xa0, 0x21, 0x65, 0x98, 0x00, 0x00, 0x00, 0x10},
664 {0xa0, 0x21, 0x67, 0x90, 0x00, 0x00, 0x00, 0x10},
665 {0xa0, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
666 {0xa0, 0x21, 0x04, 0x96, 0x00, 0x00, 0x00, 0x10},
667 {0xa0, 0x21, 0x45, 0x27, 0x00, 0x00, 0x00, 0x10},
668 {0xa0, 0x21, 0x47, 0x2c, 0x00, 0x00, 0x00, 0x10},
669 {0xa0, 0x21, 0x43, 0x47, 0x00, 0x00, 0x00, 0x10},
670 {0xa0, 0x21, 0x44, 0xd8, 0x00, 0x00, 0x00, 0x10},
671 {}
672};
673static const u8 gc0307_sensor_param1[][8] = {
674 {0xa0, 0x21, 0x68, 0x13, 0x00, 0x00, 0x00, 0x10},
675 {0xd0, 0x21, 0x61, 0x80, 0x00, 0x80, 0x00, 0x10},
676 {0xc0, 0x21, 0x65, 0x80, 0x00, 0x80, 0x00, 0x10},
677 {0xc0, 0x21, 0x63, 0xa0, 0x00, 0xa6, 0x00, 0x10},
678/*param3*/
679 {0xa0, 0x21, 0x01, 0x6e, 0x00, 0x00, 0x00, 0x10},
680 {0xa0, 0x21, 0x02, 0x88, 0x00, 0x00, 0x00, 0x10},
Jean-François Moinead98c0f2010-03-18 05:15:30 -0300681 {}
682};
683
Jean-Francois Moine98819182009-01-19 07:37:33 -0300684static const u8 hv7131r_sensor_init[][8] = {
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300685 {0xc1, 0x11, 0x01, 0x08, 0x01, 0x00, 0x00, 0x10},
686 {0xb1, 0x11, 0x34, 0x17, 0x7f, 0x00, 0x00, 0x10},
687 {0xd1, 0x11, 0x40, 0xff, 0x7f, 0x7f, 0x7f, 0x10},
688/* {0x91, 0x11, 0x44, 0x00, 0x00, 0x00, 0x00, 0x10}, */
689 {0xd1, 0x11, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
690 {0xd1, 0x11, 0x14, 0x01, 0xe2, 0x02, 0x82, 0x10},
691/* {0x91, 0x11, 0x18, 0x00, 0x00, 0x00, 0x00, 0x10}, */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300692
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300693 {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
694 {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
695 {0xc1, 0x11, 0x25, 0x00, 0x61, 0xa8, 0x00, 0x10},
696 {0xa1, 0x11, 0x30, 0x22, 0x00, 0x00, 0x00, 0x10},
697 {0xc1, 0x11, 0x31, 0x20, 0x2e, 0x20, 0x00, 0x10},
698 {0xc1, 0x11, 0x25, 0x00, 0xc3, 0x50, 0x00, 0x10},
699 {0xa1, 0x11, 0x30, 0x07, 0x00, 0x00, 0x00, 0x10}, /* gain14 */
700 {0xc1, 0x11, 0x31, 0x10, 0x10, 0x10, 0x00, 0x10}, /* r g b 101a10 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300701
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300702 {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
703 {0xa1, 0x11, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine7fb101a2009-10-22 06:27:14 -0300704 {0xa1, 0x11, 0x21, 0xd0, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300705 {0xa1, 0x11, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
706 {0xa1, 0x11, 0x23, 0x09, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300707
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300708 {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
709 {0xa1, 0x11, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
710 {0xa1, 0x11, 0x21, 0xd0, 0x00, 0x00, 0x00, 0x10},
711 {0xa1, 0x11, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
712 {0xa1, 0x11, 0x23, 0x10, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine23a98272009-11-02 09:10:25 -0300713 {0xa1, 0x11, 0x01, 0x18, 0x00, 0x00, 0x00, 0x10},
714 /* set sensor clock */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300715 {}
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300716};
Jean-Francois Moine98819182009-01-19 07:37:33 -0300717static const u8 mi0360_sensor_init[][8] = {
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300718 {0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10},
Jean-Francois Moine98819182009-01-19 07:37:33 -0300719 {0xb1, 0x5d, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x10},
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300720 {0xb1, 0x5d, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300721 {0xd1, 0x5d, 0x01, 0x00, 0x08, 0x00, 0x16, 0x10},
722 {0xd1, 0x5d, 0x03, 0x01, 0xe2, 0x02, 0x82, 0x10},
723 {0xd1, 0x5d, 0x05, 0x00, 0x09, 0x00, 0x53, 0x10},
724 {0xb1, 0x5d, 0x0d, 0x00, 0x02, 0x00, 0x00, 0x10},
725 {0xd1, 0x5d, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x10},
726 {0xd1, 0x5d, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x10},
727 {0xd1, 0x5d, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x10},
728 {0xd1, 0x5d, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
729 {0xd1, 0x5d, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
730 {0xd1, 0x5d, 0x14, 0x00, 0x00, 0x00, 0x00, 0x10},
731 {0xd1, 0x5d, 0x16, 0x00, 0x00, 0x00, 0x00, 0x10},
732 {0xd1, 0x5d, 0x18, 0x00, 0x00, 0x00, 0x00, 0x10},
733 {0xd1, 0x5d, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x10},
734 {0xd1, 0x5d, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x10},
735 {0xb1, 0x5d, 0x32, 0x00, 0x00, 0x00, 0x00, 0x10},
736 {0xd1, 0x5d, 0x20, 0x91, 0x01, 0x00, 0x00, 0x10},
737 {0xd1, 0x5d, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
738 {0xd1, 0x5d, 0x24, 0x00, 0x00, 0x00, 0x00, 0x10},
739 {0xd1, 0x5d, 0x26, 0x00, 0x00, 0x00, 0x24, 0x10},
Jean-Francois Moine98819182009-01-19 07:37:33 -0300740 {0xd1, 0x5d, 0x2f, 0xf7, 0xB0, 0x00, 0x04, 0x10},
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300741 {0xd1, 0x5d, 0x31, 0x00, 0x00, 0x00, 0x00, 0x10},
742 {0xd1, 0x5d, 0x33, 0x00, 0x00, 0x01, 0x00, 0x10},
743 {0xb1, 0x5d, 0x3d, 0x06, 0x8f, 0x00, 0x00, 0x10},
744 {0xd1, 0x5d, 0x40, 0x01, 0xe0, 0x00, 0xd1, 0x10},
745 {0xb1, 0x5d, 0x44, 0x00, 0x82, 0x00, 0x00, 0x10},
746 {0xd1, 0x5d, 0x58, 0x00, 0x78, 0x00, 0x43, 0x10},
747 {0xd1, 0x5d, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x10},
748 {0xd1, 0x5d, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x10},
749 {0xd1, 0x5d, 0x5e, 0x00, 0x00, 0xa3, 0x1d, 0x10},
750 {0xb1, 0x5d, 0x62, 0x04, 0x11, 0x00, 0x00, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300751
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300752 {0xb1, 0x5d, 0x20, 0x91, 0x01, 0x00, 0x00, 0x10},
753 {0xb1, 0x5d, 0x20, 0x11, 0x01, 0x00, 0x00, 0x10},
754 {0xb1, 0x5d, 0x09, 0x00, 0x64, 0x00, 0x00, 0x10},
755 {0xd1, 0x5d, 0x2b, 0x00, 0xa0, 0x00, 0xb0, 0x10},
756 {0xd1, 0x5d, 0x2d, 0x00, 0xa0, 0x00, 0xa0, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300757
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300758 {0xb1, 0x5d, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x10}, /* sensor clck ?2 */
759 {0xb1, 0x5d, 0x06, 0x00, 0x30, 0x00, 0x00, 0x10},
760 {0xb1, 0x5d, 0x05, 0x00, 0x0a, 0x00, 0x00, 0x10},
761 {0xb1, 0x5d, 0x09, 0x02, 0x35, 0x00, 0x00, 0x10}, /* exposure 2 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300762
Jean-Francois Moine8c2ba442009-01-13 05:55:40 -0300763 {0xd1, 0x5d, 0x2b, 0x00, 0xb9, 0x00, 0xe3, 0x10},
764 {0xd1, 0x5d, 0x2d, 0x00, 0x5f, 0x00, 0xb9, 0x10}, /* 42 */
765/* {0xb1, 0x5d, 0x35, 0x00, 0x67, 0x00, 0x00, 0x10}, * gain orig */
766/* {0xb1, 0x5d, 0x35, 0x00, 0x20, 0x00, 0x00, 0x10}, * gain */
767 {0xb1, 0x5d, 0x07, 0x00, 0x03, 0x00, 0x00, 0x10}, /* update */
768 {0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10}, /* sensor on */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300769 {}
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300770};
Jean-François Moinea067db82010-10-01 07:51:24 -0300771static const u8 mi0360b_sensor_init[][8] = {
772 {0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10},
773 {0xb1, 0x5d, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x10},
Németh Mártonccbc5df2010-10-18 07:00:48 -0300774 {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /*delay 20ms*/
Jean-François Moinea067db82010-10-01 07:51:24 -0300775 {0xb1, 0x5d, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x10},
Németh Mártonccbc5df2010-10-18 07:00:48 -0300776 {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /*delay 20ms*/
Jean-François Moinea067db82010-10-01 07:51:24 -0300777 {0xd1, 0x5d, 0x01, 0x00, 0x08, 0x00, 0x16, 0x10},
778 {0xd1, 0x5d, 0x03, 0x01, 0xe2, 0x02, 0x82, 0x10},
779 {0xd1, 0x5d, 0x05, 0x00, 0x00, 0x00, 0x00, 0x10},
780 {0xb1, 0x5d, 0x0d, 0x00, 0x02, 0x00, 0x00, 0x10},
781 {0xd1, 0x5d, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x10},
782 {0xd1, 0x5d, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x10},
783 {0xd1, 0x5d, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x10},
784 {0xd1, 0x5d, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
785 {0xd1, 0x5d, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
786 {0xd1, 0x5d, 0x14, 0x00, 0x00, 0x00, 0x00, 0x10},
787 {0xd1, 0x5d, 0x16, 0x00, 0x00, 0x00, 0x00, 0x10},
788 {0xd1, 0x5d, 0x18, 0x00, 0x00, 0x00, 0x00, 0x10},
789 {0xd1, 0x5d, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x10},
790 {0xd1, 0x5d, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x10},
791 {0xb1, 0x5d, 0x32, 0x00, 0x00, 0x00, 0x00, 0x10},
792 {0xd1, 0x5d, 0x20, 0x11, 0x01, 0x00, 0x00, 0x10},
793 {0xd1, 0x5d, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
794 {0xd1, 0x5d, 0x24, 0x00, 0x00, 0x00, 0x00, 0x10},
795 {0xd1, 0x5d, 0x26, 0x00, 0x00, 0x00, 0x24, 0x10},
796 {0xd1, 0x5d, 0x2f, 0xf7, 0xb0, 0x00, 0x04, 0x10},
797 {0xd1, 0x5d, 0x31, 0x00, 0x00, 0x00, 0x00, 0x10},
798 {0xd1, 0x5d, 0x33, 0x00, 0x00, 0x01, 0x00, 0x10},
799 {0xb1, 0x5d, 0x3d, 0x06, 0x8f, 0x00, 0x00, 0x10},
800 {0xd1, 0x5d, 0x40, 0x01, 0xe0, 0x00, 0xd1, 0x10},
801 {0xb1, 0x5d, 0x44, 0x00, 0x82, 0x00, 0x00, 0x10},
802 {0xd1, 0x5d, 0x58, 0x00, 0x78, 0x00, 0x43, 0x10},
803 {0xd1, 0x5d, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x10},
804 {0xd1, 0x5d, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x10},
805 {0xd1, 0x5d, 0x5e, 0x00, 0x00, 0xa3, 0x1d, 0x10},
806 {0xb1, 0x5d, 0x62, 0x04, 0x11, 0x00, 0x00, 0x10},
807
808 {0xb1, 0x5d, 0x20, 0x11, 0x01, 0x00, 0x00, 0x10},
809 {0xb1, 0x5d, 0x20, 0x11, 0x01, 0x00, 0x00, 0x10},
810 {0xb1, 0x5d, 0x09, 0x00, 0x64, 0x00, 0x00, 0x10},
811 {0xd1, 0x5d, 0x2b, 0x00, 0x33, 0x00, 0xa0, 0x10},
812 {0xd1, 0x5d, 0x2d, 0x00, 0xa0, 0x00, 0x33, 0x10},
813 {}
814};
815static const u8 mi0360b_sensor_param1[][8] = {
816 {0xb1, 0x5d, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x10},
817 {0xb1, 0x5d, 0x06, 0x00, 0x53, 0x00, 0x00, 0x10},
818 {0xb1, 0x5d, 0x05, 0x00, 0x09, 0x00, 0x00, 0x10},
819 {0xb1, 0x5d, 0x09, 0x02, 0x35, 0x00, 0x00, 0x10}, /* exposure 2 */
820
821 {0xd1, 0x5d, 0x2b, 0x00, 0xd1, 0x01, 0xc9, 0x10},
822 {0xd1, 0x5d, 0x2d, 0x00, 0xed, 0x00, 0xd1, 0x10},
823 {0xb1, 0x5d, 0x07, 0x00, 0x03, 0x00, 0x00, 0x10}, /* update */
824 {0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10}, /* sensor on */
825 {}
826};
Jean-Francois Moine98819182009-01-19 07:37:33 -0300827static const u8 mo4000_sensor_init[][8] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300828 {0xa1, 0x21, 0x01, 0x02, 0x00, 0x00, 0x00, 0x10},
829 {0xa1, 0x21, 0x02, 0x00, 0x00, 0x00, 0x00, 0x10},
830 {0xa1, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
831 {0xa1, 0x21, 0x04, 0x00, 0x00, 0x00, 0x00, 0x10},
832 {0xa1, 0x21, 0x05, 0x00, 0x00, 0x00, 0x00, 0x10},
833 {0xa1, 0x21, 0x05, 0x04, 0x00, 0x00, 0x00, 0x10},
834 {0xa1, 0x21, 0x06, 0x80, 0x00, 0x00, 0x00, 0x10},
835 {0xa1, 0x21, 0x06, 0x81, 0x00, 0x00, 0x00, 0x10},
836 {0xa1, 0x21, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x10},
837 {0xa1, 0x21, 0x11, 0x00, 0x00, 0x00, 0x00, 0x10},
838 {0xa1, 0x21, 0x11, 0x20, 0x00, 0x00, 0x00, 0x10},
839 {0xa1, 0x21, 0x11, 0x30, 0x00, 0x00, 0x00, 0x10},
840 {0xa1, 0x21, 0x11, 0x38, 0x00, 0x00, 0x00, 0x10},
841 {0xa1, 0x21, 0x11, 0x38, 0x00, 0x00, 0x00, 0x10},
842 {0xa1, 0x21, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
843 {0xa1, 0x21, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
844 {0xa1, 0x21, 0x0f, 0x20, 0x00, 0x00, 0x00, 0x10},
845 {0xa1, 0x21, 0x10, 0x20, 0x00, 0x00, 0x00, 0x10},
846 {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
847 {0xa1, 0x21, 0x11, 0x38, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300848 {}
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300849};
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300850static const u8 mt9v111_sensor_init[][8] = {
851 {0xb1, 0x5c, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x10}, /* reset? */
Németh Mártonccbc5df2010-10-18 07:00:48 -0300852 {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300853 {0xb1, 0x5c, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x10},
854 {0xb1, 0x5c, 0x01, 0x00, 0x01, 0x00, 0x00, 0x10}, /* IFP select */
855 {0xb1, 0x5c, 0x08, 0x04, 0x80, 0x00, 0x00, 0x10}, /* output fmt ctrl */
856 {0xb1, 0x5c, 0x06, 0x00, 0x00, 0x00, 0x00, 0x10}, /* op mode ctrl */
857 {0xb1, 0x5c, 0x01, 0x00, 0x04, 0x00, 0x00, 0x10}, /* sensor select */
858 {0xb1, 0x5c, 0x08, 0x00, 0x08, 0x00, 0x00, 0x10}, /* row start */
859 {0xb1, 0x5c, 0x02, 0x00, 0x16, 0x00, 0x00, 0x10}, /* col start */
860 {0xb1, 0x5c, 0x03, 0x01, 0xe7, 0x00, 0x00, 0x10}, /* window height */
861 {0xb1, 0x5c, 0x04, 0x02, 0x87, 0x00, 0x00, 0x10}, /* window width */
862 {0xb1, 0x5c, 0x07, 0x30, 0x02, 0x00, 0x00, 0x10}, /* output ctrl */
863 {0xb1, 0x5c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x10}, /* shutter delay */
864 {0xb1, 0x5c, 0x12, 0x00, 0xb0, 0x00, 0x00, 0x10}, /* zoom col start */
865 {0xb1, 0x5c, 0x13, 0x00, 0x7c, 0x00, 0x00, 0x10}, /* zoom row start */
866 {0xb1, 0x5c, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x10}, /* digital zoom */
867 {0xb1, 0x5c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10}, /* read mode */
868 {0xb1, 0x5c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300869 {}
870};
871static const u8 mt9v111_sensor_param1[][8] = {
Jean-François Moine80463222011-02-10 07:44:59 -0300872 {0xd1, 0x5c, 0x2b, 0x00, 0x33, 0x00, 0xad, 0x10}, /* G1 and B gains */
873 {0xd1, 0x5c, 0x2d, 0x00, 0xad, 0x00, 0x33, 0x10}, /* R and G2 gains */
874 {0xb1, 0x5c, 0x06, 0x00, 0x40, 0x00, 0x00, 0x10}, /* vert blanking */
875 {0xb1, 0x5c, 0x05, 0x00, 0x09, 0x00, 0x00, 0x10}, /* horiz blanking */
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -0300876 {0xb1, 0x5c, 0x35, 0x01, 0xc0, 0x00, 0x00, 0x10}, /* global gain */
877 {}
878};
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300879static const u8 om6802_init0[2][8] = {
880/*fixme: variable*/
881 {0xa0, 0x34, 0x29, 0x0e, 0x00, 0x00, 0x00, 0x10},
882 {0xa0, 0x34, 0x23, 0xb0, 0x00, 0x00, 0x00, 0x10},
883};
Jean-Francois Moine98819182009-01-19 07:37:33 -0300884static const u8 om6802_sensor_init[][8] = {
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300885 {0xa0, 0x34, 0xdf, 0x6d, 0x00, 0x00, 0x00, 0x10},
886 /* factory mode */
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300887 {0xa0, 0x34, 0xdd, 0x18, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moined5aa3852009-11-07 06:10:08 -0300888 /* output raw RGB */
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300889 {0xa0, 0x34, 0x5a, 0xc0, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300890/* {0xa0, 0x34, 0xfb, 0x11, 0x00, 0x00, 0x00, 0x10}, */
891 {0xa0, 0x34, 0xf0, 0x04, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moined5aa3852009-11-07 06:10:08 -0300892 /* auto-exposure speed (0) / white balance mode (auto RGB) */
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300893/* {0xa0, 0x34, 0xf1, 0x02, 0x00, 0x00, 0x00, 0x10},
894 * set color mode */
895/* {0xa0, 0x34, 0xfe, 0x5b, 0x00, 0x00, 0x00, 0x10},
896 * max AGC value in AE */
897/* {0xa0, 0x34, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x10},
898 * preset AGC */
899/* {0xa0, 0x34, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x10},
900 * preset brightness */
901/* {0xa0, 0x34, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x10},
902 * preset contrast */
903/* {0xa0, 0x34, 0xe8, 0x31, 0x00, 0x00, 0x00, 0x10},
904 * preset gamma */
905 {0xa0, 0x34, 0xe9, 0x0f, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moined5aa3852009-11-07 06:10:08 -0300906 /* luminance mode (0x4f -> AutoExpo on) */
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300907 {0xa0, 0x34, 0xe4, 0xff, 0x00, 0x00, 0x00, 0x10},
908 /* preset shutter */
909/* {0xa0, 0x34, 0xef, 0x00, 0x00, 0x00, 0x00, 0x10},
910 * auto frame rate */
911/* {0xa0, 0x34, 0xfb, 0xee, 0x00, 0x00, 0x00, 0x10}, */
Jean-Francois Moine3fccb772009-11-02 09:54:04 -0300912 {0xa0, 0x34, 0x5d, 0x80, 0x00, 0x00, 0x00, 0x10},
913 {}
914};
915static const u8 om6802_sensor_param1[][8] = {
916 {0xa0, 0x34, 0x71, 0x84, 0x00, 0x00, 0x00, 0x10},
917 {0xa0, 0x34, 0x72, 0x05, 0x00, 0x00, 0x00, 0x10},
918 {0xa0, 0x34, 0x68, 0x80, 0x00, 0x00, 0x00, 0x10},
919 {0xa0, 0x34, 0x69, 0x01, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moined2d16e92008-09-03 16:47:23 -0300920 {}
921};
Jean-Francois Moine98819182009-01-19 07:37:33 -0300922static const u8 ov7630_sensor_init[][8] = {
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300923 {0xa1, 0x21, 0x76, 0x01, 0x00, 0x00, 0x00, 0x10},
924 {0xa1, 0x21, 0x12, 0xc8, 0x00, 0x00, 0x00, 0x10},
Németh Mártonccbc5df2010-10-18 07:00:48 -0300925 {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300926 {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
927 {0xa1, 0x21, 0x12, 0xc8, 0x00, 0x00, 0x00, 0x10},
Németh Mártonccbc5df2010-10-18 07:00:48 -0300928 {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300929 {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine05b809c2008-09-03 16:47:59 -0300930/* win: i2c_r from 00 to 80 */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300931 {0xd1, 0x21, 0x03, 0x80, 0x10, 0x20, 0x80, 0x10},
932 {0xb1, 0x21, 0x0c, 0x20, 0x20, 0x00, 0x00, 0x10},
Hans de Goedecc7b5b52009-06-18 05:14:42 -0300933/* HDG: 0x11 was 0x00 change to 0x01 for better exposure (15 fps instead of 30)
934 0x13 was 0xc0 change to 0xc3 for auto gain and exposure */
935 {0xd1, 0x21, 0x11, 0x01, 0x48, 0xc3, 0x00, 0x10},
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300936 {0xb1, 0x21, 0x15, 0x80, 0x03, 0x00, 0x00, 0x10},
937 {0xd1, 0x21, 0x17, 0x1b, 0xbd, 0x05, 0xf6, 0x10},
938 {0xa1, 0x21, 0x1b, 0x04, 0x00, 0x00, 0x00, 0x10},
939 {0xd1, 0x21, 0x1f, 0x00, 0x80, 0x80, 0x80, 0x10},
940 {0xd1, 0x21, 0x23, 0xde, 0x10, 0x8a, 0xa0, 0x10},
941 {0xc1, 0x21, 0x27, 0xca, 0xa2, 0x74, 0x00, 0x10},
942 {0xd1, 0x21, 0x2a, 0x88, 0x00, 0x88, 0x01, 0x10},
943 {0xc1, 0x21, 0x2e, 0x80, 0x00, 0x18, 0x00, 0x10},
944 {0xa1, 0x21, 0x21, 0x08, 0x00, 0x00, 0x00, 0x10},
945 {0xa1, 0x21, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
946 {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10},
947 {0xb1, 0x21, 0x32, 0xc2, 0x08, 0x00, 0x00, 0x10},
948 {0xb1, 0x21, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x10},
949 {0xd1, 0x21, 0x60, 0x05, 0x40, 0x12, 0x57, 0x10},
950 {0xa1, 0x21, 0x64, 0x73, 0x00, 0x00, 0x00, 0x10},
951 {0xd1, 0x21, 0x65, 0x00, 0x55, 0x01, 0xac, 0x10},
952 {0xa1, 0x21, 0x69, 0x38, 0x00, 0x00, 0x00, 0x10},
953 {0xd1, 0x21, 0x6f, 0x1f, 0x01, 0x00, 0x10, 0x10},
954 {0xd1, 0x21, 0x73, 0x50, 0x20, 0x02, 0x01, 0x10},
955 {0xd1, 0x21, 0x77, 0xf3, 0x90, 0x98, 0x98, 0x10},
956 {0xc1, 0x21, 0x7b, 0x00, 0x4c, 0xf7, 0x00, 0x10},
957 {0xd1, 0x21, 0x17, 0x1b, 0xbd, 0x05, 0xf6, 0x10},
958 {0xa1, 0x21, 0x1b, 0x04, 0x00, 0x00, 0x00, 0x10},
Jean-François Moinebdd2b932010-04-25 14:23:39 -0300959 {}
960};
961static const u8 ov7630_sensor_param1[][8] = {
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300962 {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
963 {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
964/*fixme: + 0x12, 0x04*/
Jean-Francois Moine6c862742008-09-08 04:57:26 -0300965/* {0xa1, 0x21, 0x75, 0x82, 0x00, 0x00, 0x00, 0x10}, * COMN
966 * set by setvflip */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300967 {0xa1, 0x21, 0x10, 0x32, 0x00, 0x00, 0x00, 0x10},
968 {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
969 {0xb1, 0x21, 0x01, 0x80, 0x80, 0x00, 0x00, 0x10},
Jean-Francois Moine05b809c2008-09-03 16:47:59 -0300970/* */
Hans de Goede37c6dbe2009-06-18 07:35:36 -0300971/* {0xa1, 0x21, 0x2a, 0x88, 0x00, 0x00, 0x00, 0x10}, * set by setfreq */
972/* {0xa1, 0x21, 0x2b, 0x34, 0x00, 0x00, 0x00, 0x10}, * set by setfreq */
Jean-Francois Moine05b809c2008-09-03 16:47:59 -0300973/* */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300974 {0xa1, 0x21, 0x10, 0x83, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine91de65a2008-09-03 17:12:18 -0300975/* {0xb1, 0x21, 0x01, 0x88, 0x70, 0x00, 0x00, 0x10}, */
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -0300976 {}
977};
Jean-Francois Moine62703302008-11-11 08:42:56 -0300978
Jean-Francois Moine98819182009-01-19 07:37:33 -0300979static const u8 ov7648_sensor_init[][8] = {
Jean-Francois Moine62703302008-11-11 08:42:56 -0300980 {0xa1, 0x21, 0x76, 0x00, 0x00, 0x00, 0x00, 0x10},
981 {0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10}, /* reset */
Németh Mártonccbc5df2010-10-18 07:00:48 -0300982 {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
Jean-Francois Moine62703302008-11-11 08:42:56 -0300983 {0xa1, 0x21, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
984 {0xd1, 0x21, 0x03, 0xa4, 0x30, 0x88, 0x00, 0x10},
985 {0xb1, 0x21, 0x11, 0x80, 0x08, 0x00, 0x00, 0x10},
986 {0xc1, 0x21, 0x13, 0xa0, 0x04, 0x84, 0x00, 0x10},
987 {0xd1, 0x21, 0x17, 0x1a, 0x02, 0xba, 0xf4, 0x10},
988 {0xa1, 0x21, 0x1b, 0x04, 0x00, 0x00, 0x00, 0x10},
989 {0xd1, 0x21, 0x1f, 0x41, 0xc0, 0x80, 0x80, 0x10},
990 {0xd1, 0x21, 0x23, 0xde, 0xa0, 0x80, 0x32, 0x10},
991 {0xd1, 0x21, 0x27, 0xfe, 0xa0, 0x00, 0x91, 0x10},
992 {0xd1, 0x21, 0x2b, 0x00, 0x88, 0x85, 0x80, 0x10},
993 {0xc1, 0x21, 0x2f, 0x9c, 0x00, 0xc4, 0x00, 0x10},
994 {0xd1, 0x21, 0x60, 0xa6, 0x60, 0x88, 0x12, 0x10},
995 {0xd1, 0x21, 0x64, 0x88, 0x00, 0x00, 0x94, 0x10},
996 {0xd1, 0x21, 0x68, 0x7a, 0x0c, 0x00, 0x00, 0x10},
997 {0xd1, 0x21, 0x6c, 0x11, 0x33, 0x22, 0x00, 0x10},
998 {0xd1, 0x21, 0x70, 0x11, 0x00, 0x10, 0x50, 0x10},
999 {0xd1, 0x21, 0x74, 0x20, 0x06, 0x00, 0xb5, 0x10},
1000 {0xd1, 0x21, 0x78, 0x8a, 0x00, 0x00, 0x00, 0x10},
1001 {0xb1, 0x21, 0x7c, 0x00, 0x43, 0x00, 0x00, 0x10},
1002
1003 {0xd1, 0x21, 0x21, 0x86, 0x00, 0xde, 0xa0, 0x10},
1004/* {0xd1, 0x21, 0x25, 0x80, 0x32, 0xfe, 0xa0, 0x10}, jfm done */
1005/* {0xd1, 0x21, 0x29, 0x00, 0x91, 0x00, 0x88, 0x10}, jfm done */
Hans de Goede37c6dbe2009-06-18 07:35:36 -03001006/* {0xb1, 0x21, 0x2d, 0x85, 0x00, 0x00, 0x00, 0x10}, set by setfreq */
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001007 {}
1008};
1009static const u8 ov7648_sensor_param1[][8] = {
Jean-Francois Moine62703302008-11-11 08:42:56 -03001010/* {0xa1, 0x21, 0x12, 0x08, 0x00, 0x00, 0x00, 0x10}, jfm done */
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03001011/* {0xa1, 0x21, 0x75, 0x06, 0x00, 0x00, 0x00, 0x10}, * COMN
1012 * set by setvflip */
Jean-Francois Moine62703302008-11-11 08:42:56 -03001013 {0xa1, 0x21, 0x19, 0x02, 0x00, 0x00, 0x00, 0x10},
1014 {0xa1, 0x21, 0x10, 0x32, 0x00, 0x00, 0x00, 0x10},
1015/* {0xa1, 0x21, 0x16, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
1016/* {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10}, * GAIN - def */
1017/* {0xb1, 0x21, 0x01, 0x6c, 0x6c, 0x00, 0x00, 0x10}, * B R - def: 80 */
1018/*...*/
1019 {0xa1, 0x21, 0x11, 0x81, 0x00, 0x00, 0x00, 0x10}, /* CLKRC */
1020/* {0xa1, 0x21, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
1021/* {0xa1, 0x21, 0x16, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
1022/* {0xa1, 0x21, 0x2a, 0x91, 0x00, 0x00, 0x00, 0x10}, jfm done */
1023/* {0xa1, 0x21, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
1024/* {0xb1, 0x21, 0x01, 0x64, 0x84, 0x00, 0x00, 0x10}, * B R - def: 80 */
1025
1026 {}
1027};
1028
Jean-Francois Moine98819182009-01-19 07:37:33 -03001029static const u8 ov7660_sensor_init[][8] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001030 {0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10}, /* reset SCCB */
Németh Mártonccbc5df2010-10-18 07:00:48 -03001031 {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001032 {0xa1, 0x21, 0x12, 0x05, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001033 /* Outformat = rawRGB */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001034 {0xa1, 0x21, 0x13, 0xb8, 0x00, 0x00, 0x00, 0x10}, /* init COM8 */
Jean-Francois Moined8f400e2009-07-08 06:33:44 -03001035 {0xd1, 0x21, 0x00, 0x01, 0x74, 0x92, 0x00, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001036 /* GAIN BLUE RED VREF */
1037 {0xd1, 0x21, 0x04, 0x00, 0x7d, 0x62, 0x00, 0x10},
1038 /* COM 1 BAVE GEAVE AECHH */
1039 {0xb1, 0x21, 0x08, 0x83, 0x01, 0x00, 0x00, 0x10}, /* RAVE COM2 */
1040 {0xd1, 0x21, 0x0c, 0x00, 0x08, 0x04, 0x4f, 0x10}, /* COM 3 4 5 6 */
Jean-Francois Moine47f7f6f2009-08-25 06:14:54 -03001041 {0xd1, 0x21, 0x10, 0x7f, 0x40, 0x05, 0xff, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001042 /* AECH CLKRC COM7 COM8 */
1043 {0xc1, 0x21, 0x14, 0x2c, 0x00, 0x02, 0x00, 0x10}, /* COM9 COM10 */
1044 {0xd1, 0x21, 0x17, 0x10, 0x60, 0x02, 0x7b, 0x10},
1045 /* HSTART HSTOP VSTRT VSTOP */
1046 {0xa1, 0x21, 0x1b, 0x02, 0x00, 0x00, 0x00, 0x10}, /* PSHFT */
1047 {0xb1, 0x21, 0x1e, 0x01, 0x0e, 0x00, 0x00, 0x10}, /* MVFP LAEC */
1048 {0xd1, 0x21, 0x20, 0x07, 0x07, 0x07, 0x07, 0x10},
1049 /* BOS GBOS GROS ROS (BGGR offset) */
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001050/* {0xd1, 0x21, 0x24, 0x68, 0x58, 0xd4, 0x80, 0x10}, */
1051 {0xd1, 0x21, 0x24, 0x78, 0x68, 0xd4, 0x80, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001052 /* AEW AEB VPT BBIAS */
1053 {0xd1, 0x21, 0x28, 0x80, 0x30, 0x00, 0x00, 0x10},
1054 /* GbBIAS RSVD EXHCH EXHCL */
1055 {0xd1, 0x21, 0x2c, 0x80, 0x00, 0x00, 0x62, 0x10},
1056 /* RBIAS ADVFL ASDVFH YAVE */
1057 {0xc1, 0x21, 0x30, 0x08, 0x30, 0xb4, 0x00, 0x10},
1058 /* HSYST HSYEN HREF */
1059 {0xd1, 0x21, 0x33, 0x00, 0x07, 0x84, 0x00, 0x10}, /* reserved */
1060 {0xd1, 0x21, 0x37, 0x0c, 0x02, 0x43, 0x00, 0x10},
1061 /* ADC ACOM OFON TSLB */
1062 {0xd1, 0x21, 0x3b, 0x02, 0x6c, 0x19, 0x0e, 0x10},
1063 /* COM11 COM12 COM13 COM14 */
1064 {0xd1, 0x21, 0x3f, 0x41, 0xc1, 0x22, 0x08, 0x10},
1065 /* EDGE COM15 COM16 COM17 */
1066 {0xd1, 0x21, 0x43, 0xf0, 0x10, 0x78, 0xa8, 0x10}, /* reserved */
1067 {0xd1, 0x21, 0x47, 0x60, 0x80, 0x00, 0x00, 0x10}, /* reserved */
1068 {0xd1, 0x21, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x10}, /* reserved */
1069 {0xd1, 0x21, 0x4f, 0x46, 0x36, 0x0f, 0x17, 0x10}, /* MTX 1 2 3 4 */
1070 {0xd1, 0x21, 0x53, 0x7f, 0x96, 0x40, 0x40, 0x10}, /* MTX 5 6 7 8 */
1071 {0xb1, 0x21, 0x57, 0x40, 0x0f, 0x00, 0x00, 0x10}, /* MTX9 MTXS */
1072 {0xd1, 0x21, 0x59, 0xba, 0x9a, 0x22, 0xb9, 0x10}, /* reserved */
1073 {0xd1, 0x21, 0x5d, 0x9b, 0x10, 0xf0, 0x05, 0x10}, /* reserved */
1074 {0xa1, 0x21, 0x61, 0x60, 0x00, 0x00, 0x00, 0x10}, /* reserved */
1075 {0xd1, 0x21, 0x62, 0x00, 0x00, 0x50, 0x30, 0x10},
1076 /* LCC1 LCC2 LCC3 LCC4 */
1077 {0xa1, 0x21, 0x66, 0x00, 0x00, 0x00, 0x00, 0x10}, /* LCC5 */
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001078 {0xd1, 0x21, 0x67, 0x80, 0x7a, 0x90, 0x80, 0x10}, /* MANU */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001079 {0xa1, 0x21, 0x6b, 0x0a, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001080 /* band gap reference [0:3] DBLV */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001081 {0xd1, 0x21, 0x6c, 0x30, 0x48, 0x80, 0x74, 0x10}, /* gamma curve */
1082 {0xd1, 0x21, 0x70, 0x64, 0x60, 0x5c, 0x58, 0x10}, /* gamma curve */
1083 {0xd1, 0x21, 0x74, 0x54, 0x4c, 0x40, 0x38, 0x10}, /* gamma curve */
1084 {0xd1, 0x21, 0x78, 0x34, 0x30, 0x2f, 0x2b, 0x10}, /* gamma curve */
1085 {0xd1, 0x21, 0x7c, 0x03, 0x07, 0x17, 0x34, 0x10}, /* gamma curve */
1086 {0xd1, 0x21, 0x80, 0x41, 0x4d, 0x58, 0x63, 0x10}, /* gamma curve */
1087 {0xd1, 0x21, 0x84, 0x6e, 0x77, 0x87, 0x95, 0x10}, /* gamma curve */
1088 {0xc1, 0x21, 0x88, 0xaf, 0xc7, 0xdf, 0x00, 0x10}, /* gamma curve */
1089 {0xc1, 0x21, 0x8b, 0x99, 0x99, 0xcf, 0x00, 0x10}, /* reserved */
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001090 {0xb1, 0x21, 0x92, 0x00, 0x00, 0x00, 0x00, 0x10}, /* DM_LNL/H */
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001091/* not in all ms-win traces*/
Jean-Francois Moine47f7f6f2009-08-25 06:14:54 -03001092 {0xa1, 0x21, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001093 {}
1094};
1095static const u8 ov7660_sensor_param1[][8] = {
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001096 {0xa1, 0x21, 0x1e, 0x01, 0x00, 0x00, 0x00, 0x10}, /* MVFP */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001097 /* bits[3..0]reserved */
1098 {0xa1, 0x21, 0x1e, 0x01, 0x00, 0x00, 0x00, 0x10},
1099 {0xa1, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
1100 /* VREF vertical frame ctrl */
1101 {0xa1, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001102 {0xa1, 0x21, 0x10, 0x20, 0x00, 0x00, 0x00, 0x10}, /* AECH 0x20 */
1103 {0xa1, 0x21, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x10}, /* ADVFL */
1104 {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10}, /* ADVFH */
1105 {0xa1, 0x21, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x10}, /* GAIN */
1106/* {0xb1, 0x21, 0x01, 0x78, 0x78, 0x00, 0x00, 0x10}, * BLUE */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001107/****** (some exchanges in the win trace) ******/
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001108/*fixme:param2*/
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001109 {0xa1, 0x21, 0x93, 0x00, 0x00, 0x00, 0x00, 0x10},/* dummy line hight */
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001110 {0xa1, 0x21, 0x92, 0x25, 0x00, 0x00, 0x00, 0x10}, /* dummy line low */
1111 {0xa1, 0x21, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x10}, /* EXHCH */
1112 {0xa1, 0x21, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10}, /* EXHCL */
1113/* {0xa1, 0x21, 0x02, 0x90, 0x00, 0x00, 0x00, 0x10}, * RED */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001114/****** (some exchanges in the win trace) ******/
Jean-Francois Moine738608a2008-07-28 06:41:51 -03001115/******!! startsensor KO if changed !!****/
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001116/*fixme: param3*/
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001117 {0xa1, 0x21, 0x93, 0x01, 0x00, 0x00, 0x00, 0x10},
1118 {0xa1, 0x21, 0x92, 0xff, 0x00, 0x00, 0x00, 0x10},
1119 {0xa1, 0x21, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x10},
1120 {0xa1, 0x21, 0x2b, 0xc3, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03001121 {}
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001122};
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001123
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001124static const u8 po1030_sensor_init[][8] = {
1125/* the sensor registers are described in m5602/m5602_po1030.h */
1126 {0xa1, 0x6e, 0x3f, 0x20, 0x00, 0x00, 0x00, 0x10}, /* sensor reset */
Németh Mártonccbc5df2010-10-18 07:00:48 -03001127 {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001128 {0xa1, 0x6e, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x10},
1129 {0xa1, 0x6e, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x10},
1130 {0xd1, 0x6e, 0x04, 0x02, 0xb1, 0x02, 0x39, 0x10},
1131 {0xd1, 0x6e, 0x08, 0x00, 0x01, 0x00, 0x00, 0x10},
1132 {0xd1, 0x6e, 0x0c, 0x02, 0x7f, 0x01, 0xe0, 0x10},
1133 {0xd1, 0x6e, 0x12, 0x03, 0x02, 0x00, 0x03, 0x10},
1134 {0xd1, 0x6e, 0x16, 0x85, 0x40, 0x4a, 0x40, 0x10}, /* r/g1/b/g2 gains */
1135 {0xc1, 0x6e, 0x1a, 0x00, 0x80, 0x00, 0x00, 0x10},
1136 {0xd1, 0x6e, 0x1d, 0x08, 0x03, 0x00, 0x00, 0x10},
1137 {0xd1, 0x6e, 0x23, 0x00, 0xb0, 0x00, 0x94, 0x10},
1138 {0xd1, 0x6e, 0x27, 0x58, 0x00, 0x00, 0x00, 0x10},
1139 {0xb1, 0x6e, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10},
1140 {0xd1, 0x6e, 0x2d, 0x14, 0x35, 0x61, 0x84, 0x10}, /* gamma corr */
1141 {0xd1, 0x6e, 0x31, 0xa2, 0xbd, 0xd8, 0xff, 0x10},
1142 {0xd1, 0x6e, 0x35, 0x06, 0x1e, 0x12, 0x02, 0x10}, /* color matrix */
1143 {0xd1, 0x6e, 0x39, 0xaa, 0x53, 0x37, 0xd5, 0x10},
1144 {0xa1, 0x6e, 0x3d, 0xf2, 0x00, 0x00, 0x00, 0x10},
1145 {0xd1, 0x6e, 0x3e, 0x00, 0x00, 0x80, 0x03, 0x10},
1146 {0xd1, 0x6e, 0x42, 0x03, 0x00, 0x00, 0x00, 0x10},
1147 {0xc1, 0x6e, 0x46, 0x00, 0x80, 0x80, 0x00, 0x10},
1148 {0xd1, 0x6e, 0x4b, 0x02, 0xef, 0x08, 0xcd, 0x10},
1149 {0xd1, 0x6e, 0x4f, 0x00, 0xd0, 0x00, 0xa0, 0x10},
1150 {0xd1, 0x6e, 0x53, 0x01, 0xaa, 0x01, 0x40, 0x10},
1151 {0xd1, 0x6e, 0x5a, 0x50, 0x04, 0x30, 0x03, 0x10}, /* raw rgb bayer */
1152 {0xa1, 0x6e, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x10},
1153 {0xd1, 0x6e, 0x5f, 0x10, 0x40, 0xff, 0x00, 0x10},
1154
1155 {0xd1, 0x6e, 0x63, 0x40, 0x40, 0x00, 0x00, 0x10},
1156 {0xd1, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x10},
1157 {0xd1, 0x6e, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x10},
1158 {0xd1, 0x6e, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x10},
1159 {0xc1, 0x6e, 0x73, 0x10, 0x80, 0xeb, 0x00, 0x10},
1160 {}
1161};
1162static const u8 po1030_sensor_param1[][8] = {
1163/* from ms-win traces - these values change with auto gain/expo/wb.. */
1164 {0xa1, 0x6e, 0x1e, 0x03, 0x00, 0x00, 0x00, 0x10},
1165 {0xa1, 0x6e, 0x1e, 0x03, 0x00, 0x00, 0x00, 0x10},
1166/* mean values */
1167 {0xc1, 0x6e, 0x1a, 0x02, 0xd4, 0xa4, 0x00, 0x10}, /* integlines */
1168 {0xa1, 0x6e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x10}, /* global gain */
1169 {0xc1, 0x6e, 0x16, 0x40, 0x40, 0x40, 0x00, 0x10}, /* r/g1/b gains */
1170
1171 {0xa1, 0x6e, 0x1d, 0x08, 0x00, 0x00, 0x00, 0x10}, /* control1 */
1172 {0xa1, 0x6e, 0x06, 0x02, 0x00, 0x00, 0x00, 0x10}, /* frameheight */
1173 {0xa1, 0x6e, 0x07, 0xd5, 0x00, 0x00, 0x00, 0x10},
1174/* {0xc1, 0x6e, 0x16, 0x49, 0x40, 0x45, 0x00, 0x10}, */
1175 {}
1176};
1177
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001178static const u8 po2030n_sensor_init[][8] = {
1179 {0xa1, 0x6e, 0x1e, 0x1a, 0x00, 0x00, 0x00, 0x10},
1180 {0xa1, 0x6e, 0x1f, 0x99, 0x00, 0x00, 0x00, 0x10},
Németh Mártonccbc5df2010-10-18 07:00:48 -03001181 {DELAY, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 10ms */
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001182 {0xa1, 0x6e, 0x1e, 0x0a, 0x00, 0x00, 0x00, 0x10},
1183 {0xa1, 0x6e, 0x1f, 0x19, 0x00, 0x00, 0x00, 0x10},
Németh Mártonccbc5df2010-10-18 07:00:48 -03001184 {DELAY, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 10ms */
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001185 {0xa1, 0x6e, 0x20, 0x44, 0x00, 0x00, 0x00, 0x10},
1186 {0xa1, 0x6e, 0x04, 0x03, 0x00, 0x00, 0x00, 0x10},
1187 {0xa1, 0x6e, 0x05, 0x70, 0x00, 0x00, 0x00, 0x10},
1188 {0xa1, 0x6e, 0x06, 0x02, 0x00, 0x00, 0x00, 0x10},
1189 {0xa1, 0x6e, 0x07, 0x25, 0x00, 0x00, 0x00, 0x10},
1190 {0xd1, 0x6e, 0x08, 0x00, 0xd0, 0x00, 0x08, 0x10},
1191 {0xd1, 0x6e, 0x0c, 0x03, 0x50, 0x01, 0xe8, 0x10},
1192 {0xd1, 0x6e, 0x1d, 0x20, 0x0a, 0x19, 0x44, 0x10},
1193 {0xd1, 0x6e, 0x21, 0x00, 0x00, 0x00, 0x00, 0x10},
1194 {0xd1, 0x6e, 0x25, 0x00, 0x00, 0x00, 0x00, 0x10},
1195 {0xd1, 0x6e, 0x29, 0x00, 0x00, 0x00, 0x00, 0x10},
1196 {0xd1, 0x6e, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x10},
1197 {0xd1, 0x6e, 0x31, 0x00, 0x00, 0x00, 0x00, 0x10},
1198 {0xd1, 0x6e, 0x35, 0x00, 0x00, 0x00, 0x00, 0x10},
1199 {0xd1, 0x6e, 0x39, 0x00, 0x00, 0x00, 0x00, 0x10},
1200 {0xd1, 0x6e, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x10},
1201 {0xd1, 0x6e, 0x41, 0x00, 0x00, 0x00, 0x00, 0x10},
1202 {0xd1, 0x6e, 0x45, 0x00, 0x00, 0x00, 0x00, 0x10},
1203 {0xd1, 0x6e, 0x49, 0x00, 0x00, 0x00, 0x00, 0x10},
1204 {0xd1, 0x6e, 0x4d, 0x00, 0x00, 0x00, 0xed, 0x10},
1205 {0xd1, 0x6e, 0x51, 0x17, 0x4a, 0x2f, 0xc0, 0x10},
1206 {0xd1, 0x6e, 0x55, 0x00, 0x00, 0x00, 0x00, 0x10},
1207 {0xd1, 0x6e, 0x59, 0x00, 0x00, 0x00, 0x00, 0x10},
1208 {0xd1, 0x6e, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x10},
1209 {0xd1, 0x6e, 0x61, 0x00, 0x00, 0x00, 0x00, 0x10},
1210 {0xd1, 0x6e, 0x65, 0x00, 0x00, 0x00, 0x00, 0x10},
1211 {0xd1, 0x6e, 0x69, 0x00, 0x00, 0x00, 0x00, 0x10},
1212 {0xd1, 0x6e, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x10},
1213 {0xd1, 0x6e, 0x71, 0x00, 0x00, 0x00, 0x00, 0x10},
1214 {0xd1, 0x6e, 0x75, 0x00, 0x00, 0x00, 0x00, 0x10},
1215 {0xd1, 0x6e, 0x79, 0x00, 0x00, 0x00, 0x00, 0x10},
1216 {0xd1, 0x6e, 0x7d, 0x00, 0x00, 0x00, 0x00, 0x10},
1217 {0xd1, 0x6e, 0x81, 0x00, 0x00, 0x00, 0x00, 0x10},
1218 {0xd1, 0x6e, 0x85, 0x00, 0x00, 0x00, 0x08, 0x10},
1219 {0xd1, 0x6e, 0x89, 0x01, 0xe8, 0x00, 0x01, 0x10},
1220 {0xa1, 0x6e, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x10},
1221 {0xd1, 0x6e, 0x21, 0x00, 0x00, 0x00, 0x00, 0x10},
1222 {0xd1, 0x6e, 0x25, 0x00, 0x00, 0x00, 0x01, 0x10},
1223 {0xd1, 0x6e, 0x29, 0xe6, 0x00, 0xbd, 0x03, 0x10},
1224 {0xd1, 0x6e, 0x2d, 0x41, 0x38, 0x68, 0x40, 0x10},
1225 {0xd1, 0x6e, 0x31, 0x2b, 0x00, 0x36, 0x00, 0x10},
1226 {0xd1, 0x6e, 0x35, 0x30, 0x30, 0x08, 0x00, 0x10},
1227 {0xd1, 0x6e, 0x39, 0x00, 0x00, 0x33, 0x06, 0x10},
1228 {0xb1, 0x6e, 0x3d, 0x06, 0x02, 0x00, 0x00, 0x10},
1229 {}
1230};
1231static const u8 po2030n_sensor_param1[][8] = {
1232 {0xa1, 0x6e, 0x1a, 0x01, 0x00, 0x00, 0x00, 0x10},
Németh Mártonccbc5df2010-10-18 07:00:48 -03001233 {DELAY, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 8ms */
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001234 {0xa1, 0x6e, 0x1b, 0xf4, 0x00, 0x00, 0x00, 0x10},
1235 {0xa1, 0x6e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x10},
1236 {0xd1, 0x6e, 0x16, 0x50, 0x40, 0x49, 0x40, 0x10},
1237/*param2*/
1238 {0xa1, 0x6e, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x10},
1239 {0xa1, 0x6e, 0x04, 0x03, 0x00, 0x00, 0x00, 0x10},
1240 {0xa1, 0x6e, 0x05, 0x6f, 0x00, 0x00, 0x00, 0x10},
1241 {0xa1, 0x6e, 0x06, 0x02, 0x00, 0x00, 0x00, 0x10},
1242 {0xa1, 0x6e, 0x07, 0x25, 0x00, 0x00, 0x00, 0x10},
1243 {0xa1, 0x6e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x10},
1244 {0xc1, 0x6e, 0x16, 0x52, 0x40, 0x48, 0x00, 0x10},
1245/*after start*/
1246 {0xa1, 0x6e, 0x15, 0x0f, 0x00, 0x00, 0x00, 0x10},
Németh Mártonccbc5df2010-10-18 07:00:48 -03001247 {DELAY, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 5ms */
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001248 {0xa1, 0x6e, 0x1a, 0x05, 0x00, 0x00, 0x00, 0x10},
Németh Mártonccbc5df2010-10-18 07:00:48 -03001249 {DELAY, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 5ms */
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001250 {0xa1, 0x6e, 0x1b, 0x53, 0x00, 0x00, 0x00, 0x10},
1251 {}
1252};
1253
Jean-François Moine03ed2a12010-04-25 14:45:43 -03001254static const u8 soi768_sensor_init[][8] = {
1255 {0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10}, /* reset */
Németh Mártonccbc5df2010-10-18 07:00:48 -03001256 {DELAY, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 96ms */
Jean-François Moine03ed2a12010-04-25 14:45:43 -03001257 {0xa1, 0x21, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
1258 {0xa1, 0x21, 0x13, 0x80, 0x00, 0x00, 0x00, 0x10},
1259 {0xa1, 0x21, 0x0f, 0x03, 0x00, 0x00, 0x00, 0x10},
1260 {0xa1, 0x21, 0x19, 0x00, 0x00, 0x00, 0x00, 0x10},
1261 {}
1262};
1263static const u8 soi768_sensor_param1[][8] = {
1264 {0xa1, 0x21, 0x10, 0x10, 0x00, 0x00, 0x00, 0x10},
1265 {0xa1, 0x21, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x10},
1266 {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10},
1267 {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
1268 {0xb1, 0x21, 0x01, 0x7f, 0x7f, 0x00, 0x00, 0x10},
1269/* */
1270/* {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10}, */
1271/* {0xa1, 0x21, 0x2d, 0x25, 0x00, 0x00, 0x00, 0x10}, */
1272 {0xa1, 0x21, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10},
1273/* {0xb1, 0x21, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x10}, */
1274 {0xa1, 0x21, 0x02, 0x8d, 0x00, 0x00, 0x00, 0x10},
1275/* the next sequence should be used for auto gain */
1276 {0xa1, 0x21, 0x00, 0x07, 0x00, 0x00, 0x00, 0x10},
1277 /* global gain ? : 07 - change with 0x15 at the end */
1278 {0xa1, 0x21, 0x10, 0x3f, 0x00, 0x00, 0x00, 0x10}, /* ???? : 063f */
1279 {0xa1, 0x21, 0x04, 0x06, 0x00, 0x00, 0x00, 0x10},
1280 {0xb1, 0x21, 0x2d, 0x00, 0x02, 0x00, 0x00, 0x10},
1281 /* exposure ? : 0200 - change with 0x1e at the end */
1282 {}
1283};
1284
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03001285static const u8 sp80708_sensor_init[][8] = {
1286 {0xa1, 0x18, 0x06, 0xf9, 0x00, 0x00, 0x00, 0x10},
1287 {0xa1, 0x18, 0x09, 0x1f, 0x00, 0x00, 0x00, 0x10},
1288 {0xa1, 0x18, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x10},
1289 {0xa1, 0x18, 0x0d, 0xc0, 0x00, 0x00, 0x00, 0x10},
1290 {0xa1, 0x18, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x10},
1291 {0xa1, 0x18, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x10},
1292 {0xa1, 0x18, 0x10, 0x40, 0x00, 0x00, 0x00, 0x10},
1293 {0xa1, 0x18, 0x11, 0x4e, 0x00, 0x00, 0x00, 0x10},
1294 {0xa1, 0x18, 0x12, 0x53, 0x00, 0x00, 0x00, 0x10},
1295 {0xa1, 0x18, 0x15, 0x80, 0x00, 0x00, 0x00, 0x10},
1296 {0xa1, 0x18, 0x18, 0x18, 0x00, 0x00, 0x00, 0x10},
1297 {0xa1, 0x18, 0x19, 0x18, 0x00, 0x00, 0x00, 0x10},
1298 {0xa1, 0x18, 0x1a, 0x10, 0x00, 0x00, 0x00, 0x10},
1299 {0xa1, 0x18, 0x1b, 0x10, 0x00, 0x00, 0x00, 0x10},
1300 {0xa1, 0x18, 0x1c, 0x28, 0x00, 0x00, 0x00, 0x10},
1301 {0xa1, 0x18, 0x1d, 0x02, 0x00, 0x00, 0x00, 0x10},
1302 {0xa1, 0x18, 0x1e, 0x10, 0x00, 0x00, 0x00, 0x10},
1303 {0xa1, 0x18, 0x26, 0x04, 0x00, 0x00, 0x00, 0x10},
1304 {0xa1, 0x18, 0x27, 0x1e, 0x00, 0x00, 0x00, 0x10},
1305 {0xa1, 0x18, 0x28, 0x5a, 0x00, 0x00, 0x00, 0x10},
1306 {0xa1, 0x18, 0x29, 0x28, 0x00, 0x00, 0x00, 0x10},
1307 {0xa1, 0x18, 0x2a, 0x78, 0x00, 0x00, 0x00, 0x10},
1308 {0xa1, 0x18, 0x2b, 0x01, 0x00, 0x00, 0x00, 0x10},
1309 {0xa1, 0x18, 0x2c, 0xf7, 0x00, 0x00, 0x00, 0x10},
1310 {0xa1, 0x18, 0x2d, 0x2d, 0x00, 0x00, 0x00, 0x10},
1311 {0xa1, 0x18, 0x2e, 0xd5, 0x00, 0x00, 0x00, 0x10},
1312 {0xa1, 0x18, 0x39, 0x42, 0x00, 0x00, 0x00, 0x10},
1313 {0xa1, 0x18, 0x3a, 0x67, 0x00, 0x00, 0x00, 0x10},
1314 {0xa1, 0x18, 0x3b, 0x87, 0x00, 0x00, 0x00, 0x10},
1315 {0xa1, 0x18, 0x3c, 0xa3, 0x00, 0x00, 0x00, 0x10},
1316 {0xa1, 0x18, 0x3d, 0xb0, 0x00, 0x00, 0x00, 0x10},
1317 {0xa1, 0x18, 0x3e, 0xbc, 0x00, 0x00, 0x00, 0x10},
1318 {0xa1, 0x18, 0x3f, 0xc8, 0x00, 0x00, 0x00, 0x10},
1319 {0xa1, 0x18, 0x40, 0xd4, 0x00, 0x00, 0x00, 0x10},
1320 {0xa1, 0x18, 0x41, 0xdf, 0x00, 0x00, 0x00, 0x10},
1321 {0xa1, 0x18, 0x42, 0xea, 0x00, 0x00, 0x00, 0x10},
1322 {0xa1, 0x18, 0x43, 0xf5, 0x00, 0x00, 0x00, 0x10},
1323 {0xa1, 0x18, 0x45, 0x80, 0x00, 0x00, 0x00, 0x10},
1324 {0xa1, 0x18, 0x46, 0x60, 0x00, 0x00, 0x00, 0x10},
1325 {0xa1, 0x18, 0x47, 0x50, 0x00, 0x00, 0x00, 0x10},
1326 {0xa1, 0x18, 0x48, 0x30, 0x00, 0x00, 0x00, 0x10},
1327 {0xa1, 0x18, 0x49, 0x01, 0x00, 0x00, 0x00, 0x10},
1328 {0xa1, 0x18, 0x4d, 0xae, 0x00, 0x00, 0x00, 0x10},
1329 {0xa1, 0x18, 0x4e, 0x03, 0x00, 0x00, 0x00, 0x10},
1330 {0xa1, 0x18, 0x4f, 0x66, 0x00, 0x00, 0x00, 0x10},
1331 {0xa1, 0x18, 0x50, 0x1c, 0x00, 0x00, 0x00, 0x10},
1332 {0xa1, 0x18, 0x44, 0x10, 0x00, 0x00, 0x00, 0x10},
1333 {0xa1, 0x18, 0x4a, 0x30, 0x00, 0x00, 0x00, 0x10},
1334 {0xa1, 0x18, 0x51, 0x80, 0x00, 0x00, 0x00, 0x10},
1335 {0xa1, 0x18, 0x52, 0x80, 0x00, 0x00, 0x00, 0x10},
1336 {0xa1, 0x18, 0x53, 0x80, 0x00, 0x00, 0x00, 0x10},
1337 {0xa1, 0x18, 0x54, 0x80, 0x00, 0x00, 0x00, 0x10},
1338 {0xa1, 0x18, 0x55, 0x80, 0x00, 0x00, 0x00, 0x10},
1339 {0xa1, 0x18, 0x56, 0x80, 0x00, 0x00, 0x00, 0x10},
1340 {0xa1, 0x18, 0x57, 0xe0, 0x00, 0x00, 0x00, 0x10},
1341 {0xa1, 0x18, 0x58, 0xc0, 0x00, 0x00, 0x00, 0x10},
1342 {0xa1, 0x18, 0x59, 0xab, 0x00, 0x00, 0x00, 0x10},
1343 {0xa1, 0x18, 0x5a, 0xa0, 0x00, 0x00, 0x00, 0x10},
1344 {0xa1, 0x18, 0x5b, 0x99, 0x00, 0x00, 0x00, 0x10},
1345 {0xa1, 0x18, 0x5c, 0x90, 0x00, 0x00, 0x00, 0x10},
1346 {0xa1, 0x18, 0x5e, 0x24, 0x00, 0x00, 0x00, 0x10},
1347 {0xa1, 0x18, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x10},
1348 {0xa1, 0x18, 0x60, 0x00, 0x00, 0x00, 0x00, 0x10},
1349 {0xa1, 0x18, 0x61, 0x73, 0x00, 0x00, 0x00, 0x10},
1350 {0xa1, 0x18, 0x63, 0x42, 0x00, 0x00, 0x00, 0x10},
1351 {0xa1, 0x18, 0x64, 0x42, 0x00, 0x00, 0x00, 0x10},
1352 {0xa1, 0x18, 0x65, 0x42, 0x00, 0x00, 0x00, 0x10},
1353 {0xa1, 0x18, 0x66, 0x24, 0x00, 0x00, 0x00, 0x10},
1354 {0xa1, 0x18, 0x67, 0x24, 0x00, 0x00, 0x00, 0x10},
1355 {0xa1, 0x18, 0x68, 0x08, 0x00, 0x00, 0x00, 0x10},
1356 {0xa1, 0x18, 0x2f, 0xc9, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03001357 {}
1358};
1359static const u8 sp80708_sensor_param1[][8] = {
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03001360 {0xa1, 0x18, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x10},
1361 {0xa1, 0x18, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x10},
1362 {0xa1, 0x18, 0x03, 0x01, 0x00, 0x00, 0x00, 0x10},
1363 {0xa1, 0x18, 0x04, 0xa4, 0x00, 0x00, 0x00, 0x10},
1364 {0xa1, 0x18, 0x14, 0x3f, 0x00, 0x00, 0x00, 0x10},
1365 {0xa1, 0x18, 0x5d, 0x80, 0x00, 0x00, 0x00, 0x10},
1366 {0xb1, 0x18, 0x11, 0x40, 0x40, 0x00, 0x00, 0x10},
1367 {}
1368};
1369
Jean-François Moine9c33afc2010-03-17 15:25:32 -03001370static const u8 (*sensor_init[])[8] = {
1371[SENSOR_ADCM1700] = adcm1700_sensor_init,
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001372[SENSOR_GC0307] = gc0307_sensor_init,
Jean-François Moine9c33afc2010-03-17 15:25:32 -03001373[SENSOR_HV7131R] = hv7131r_sensor_init,
1374[SENSOR_MI0360] = mi0360_sensor_init,
Jean-François Moinea067db82010-10-01 07:51:24 -03001375[SENSOR_MI0360B] = mi0360b_sensor_init,
Jean-François Moine9c33afc2010-03-17 15:25:32 -03001376[SENSOR_MO4000] = mo4000_sensor_init,
1377[SENSOR_MT9V111] = mt9v111_sensor_init,
1378[SENSOR_OM6802] = om6802_sensor_init,
1379[SENSOR_OV7630] = ov7630_sensor_init,
1380[SENSOR_OV7648] = ov7648_sensor_init,
1381[SENSOR_OV7660] = ov7660_sensor_init,
1382[SENSOR_PO1030] = po1030_sensor_init,
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001383[SENSOR_PO2030N] = po2030n_sensor_init,
Jean-François Moine03ed2a12010-04-25 14:45:43 -03001384[SENSOR_SOI768] = soi768_sensor_init,
Jean-François Moine9c33afc2010-03-17 15:25:32 -03001385[SENSOR_SP80708] = sp80708_sensor_init,
Jean-Francois Moine23a98272009-11-02 09:10:25 -03001386};
1387
Jean-Francois Moine8295d992008-09-03 17:12:19 -03001388/* read <len> bytes to gspca_dev->usb_buf */
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001389static void reg_r(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03001390 u16 value, int len)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001391{
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001392 int ret;
1393
1394 if (gspca_dev->usb_err < 0)
1395 return;
Jean-Francois Moine8295d992008-09-03 17:12:19 -03001396#ifdef GSPCA_DEBUG
1397 if (len > USB_BUF_SZ) {
1398 err("reg_r: buffer overflow");
1399 return;
1400 }
1401#endif
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001402 ret = usb_control_msg(gspca_dev->dev,
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001403 usb_rcvctrlpipe(gspca_dev->dev, 0),
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001404 0,
1405 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1406 value, 0,
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001407 gspca_dev->usb_buf, len,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001408 500);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001409 PDEBUG(D_USBI, "reg_r [%02x] -> %02x", value, gspca_dev->usb_buf[0]);
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001410 if (ret < 0) {
1411 err("reg_r err %d", ret);
1412 gspca_dev->usb_err = ret;
1413 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001414}
1415
Jean-Francois Moine60017612008-07-18 08:46:19 -03001416static void reg_w1(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03001417 u16 value,
1418 u8 data)
Jean-Francois Moine60017612008-07-18 08:46:19 -03001419{
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001420 int ret;
1421
1422 if (gspca_dev->usb_err < 0)
1423 return;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001424 PDEBUG(D_USBO, "reg_w1 [%04x] = %02x", value, data);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001425 gspca_dev->usb_buf[0] = data;
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001426 ret = usb_control_msg(gspca_dev->dev,
Jean-Francois Moine60017612008-07-18 08:46:19 -03001427 usb_sndctrlpipe(gspca_dev->dev, 0),
1428 0x08,
1429 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1430 value,
1431 0,
1432 gspca_dev->usb_buf, 1,
1433 500);
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001434 if (ret < 0) {
1435 err("reg_w1 err %d", ret);
1436 gspca_dev->usb_err = ret;
1437 }
Jean-Francois Moine60017612008-07-18 08:46:19 -03001438}
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001439static void reg_w(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03001440 u16 value,
1441 const u8 *buffer,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001442 int len)
1443{
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001444 int ret;
1445
1446 if (gspca_dev->usb_err < 0)
1447 return;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001448 PDEBUG(D_USBO, "reg_w [%04x] = %02x %02x ..",
Jean-Francois Moine60017612008-07-18 08:46:19 -03001449 value, buffer[0], buffer[1]);
Jean-Francois Moine8295d992008-09-03 17:12:19 -03001450#ifdef GSPCA_DEBUG
1451 if (len > USB_BUF_SZ) {
1452 err("reg_w: buffer overflow");
1453 return;
Jean-Francois Moinebf7f0b92008-07-03 11:09:12 -03001454 }
Jean-Francois Moine8295d992008-09-03 17:12:19 -03001455#endif
1456 memcpy(gspca_dev->usb_buf, buffer, len);
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001457 ret = usb_control_msg(gspca_dev->dev,
Jean-Francois Moine8295d992008-09-03 17:12:19 -03001458 usb_sndctrlpipe(gspca_dev->dev, 0),
1459 0x08,
1460 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1461 value, 0,
1462 gspca_dev->usb_buf, len,
1463 500);
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001464 if (ret < 0) {
1465 err("reg_w err %d", ret);
1466 gspca_dev->usb_err = ret;
1467 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001468}
1469
Jean-Francois Moine60017612008-07-18 08:46:19 -03001470/* I2C write 1 byte */
Jean-Francois Moine98819182009-01-19 07:37:33 -03001471static void i2c_w1(struct gspca_dev *gspca_dev, u8 reg, u8 val)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001472{
1473 struct sd *sd = (struct sd *) gspca_dev;
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001474 int ret;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001475
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001476 if (gspca_dev->usb_err < 0)
1477 return;
Jean-François Moinecfd23c82010-04-25 14:27:39 -03001478 PDEBUG(D_USBO, "i2c_w1 [%02x] = %02x", reg, val);
Jean-Francois Moinea7826362009-11-02 09:21:06 -03001479 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03001480 case SENSOR_ADCM1700:
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001481 case SENSOR_OM6802:
1482 case SENSOR_GC0307: /* i2c command = a0 (100 kHz) */
Jean-Francois Moinea7826362009-11-02 09:21:06 -03001483 gspca_dev->usb_buf[0] = 0x80 | (2 << 4);
1484 break;
1485 default: /* i2c command = a1 (400 kHz) */
1486 gspca_dev->usb_buf[0] = 0x81 | (2 << 4);
1487 break;
1488 }
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001489 gspca_dev->usb_buf[1] = sd->i2c_addr;
Jean-Francois Moine60017612008-07-18 08:46:19 -03001490 gspca_dev->usb_buf[2] = reg;
1491 gspca_dev->usb_buf[3] = val;
1492 gspca_dev->usb_buf[4] = 0;
1493 gspca_dev->usb_buf[5] = 0;
1494 gspca_dev->usb_buf[6] = 0;
1495 gspca_dev->usb_buf[7] = 0x10;
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001496 ret = usb_control_msg(gspca_dev->dev,
Jean-Francois Moine60017612008-07-18 08:46:19 -03001497 usb_sndctrlpipe(gspca_dev->dev, 0),
1498 0x08,
1499 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1500 0x08, /* value = i2c */
1501 0,
1502 gspca_dev->usb_buf, 8,
1503 500);
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001504 if (ret < 0) {
1505 err("i2c_w1 err %d", ret);
1506 gspca_dev->usb_err = ret;
1507 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001508}
1509
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001510/* I2C write 8 bytes */
1511static void i2c_w8(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03001512 const u8 *buffer)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001513{
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001514 int ret;
1515
1516 if (gspca_dev->usb_err < 0)
1517 return;
Jean-François Moinecfd23c82010-04-25 14:27:39 -03001518 PDEBUG(D_USBO, "i2c_w8 [%02x] = %02x ..",
1519 buffer[2], buffer[3]);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001520 memcpy(gspca_dev->usb_buf, buffer, 8);
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001521 ret = usb_control_msg(gspca_dev->dev,
Jean-Francois Moine60017612008-07-18 08:46:19 -03001522 usb_sndctrlpipe(gspca_dev->dev, 0),
1523 0x08,
1524 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1525 0x08, 0, /* value, index */
1526 gspca_dev->usb_buf, 8,
1527 500);
Jean-Francois Moine8d768e12008-09-21 03:28:55 -03001528 msleep(2);
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001529 if (ret < 0) {
1530 err("i2c_w8 err %d", ret);
1531 gspca_dev->usb_err = ret;
1532 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001533}
1534
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001535/* sensor read 'len' (1..5) bytes in gspca_dev->usb_buf */
1536static void i2c_r(struct gspca_dev *gspca_dev, u8 reg, int len)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001537{
1538 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine98819182009-01-19 07:37:33 -03001539 u8 mode[8];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001540
Jean-Francois Moinea7826362009-11-02 09:21:06 -03001541 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03001542 case SENSOR_ADCM1700:
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001543 case SENSOR_OM6802:
1544 case SENSOR_GC0307: /* i2c command = a0 (100 kHz) */
Jean-Francois Moinea7826362009-11-02 09:21:06 -03001545 mode[0] = 0x80 | 0x10;
1546 break;
1547 default: /* i2c command = 91 (400 kHz) */
1548 mode[0] = 0x81 | 0x10;
1549 break;
1550 }
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001551 mode[1] = sd->i2c_addr;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001552 mode[2] = reg;
1553 mode[3] = 0;
1554 mode[4] = 0;
1555 mode[5] = 0;
1556 mode[6] = 0;
1557 mode[7] = 0x10;
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001558 i2c_w8(gspca_dev, mode);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001559 msleep(2);
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001560 mode[0] = (mode[0] & 0x81) | (len << 4) | 0x02;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001561 mode[2] = 0;
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001562 i2c_w8(gspca_dev, mode);
Jean-Francois Moine60017612008-07-18 08:46:19 -03001563 msleep(2);
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001564 reg_r(gspca_dev, 0x0a, 5);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001565}
1566
Jean-Francois Moine23a98272009-11-02 09:10:25 -03001567static void i2c_w_seq(struct gspca_dev *gspca_dev,
1568 const u8 (*data)[8])
1569{
1570 while ((*data)[0] != 0) {
Németh Mártonccbc5df2010-10-18 07:00:48 -03001571 if ((*data)[0] != DELAY)
Jean-Francois Moine23a98272009-11-02 09:10:25 -03001572 i2c_w8(gspca_dev, *data);
1573 else
1574 msleep((*data)[1]);
1575 data++;
1576 }
1577}
1578
Jean-François Moinea79cc7b2010-10-29 08:10:37 -03001579/* check the ID of the hv7131 sensor */
1580/* this sequence is needed because it activates the sensor */
Jean-Francois Moine7fb101a2009-10-22 06:27:14 -03001581static void hv7131r_probe(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001582{
Jean-François Moinea79cc7b2010-10-29 08:10:37 -03001583 i2c_w1(gspca_dev, 0x02, 0); /* sensor wakeup */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001584 msleep(10);
Jean-François Moinea79cc7b2010-10-29 08:10:37 -03001585 reg_w1(gspca_dev, 0x02, 0x66); /* Gpio on */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001586 msleep(10);
Jean-François Moinea79cc7b2010-10-29 08:10:37 -03001587 i2c_r(gspca_dev, 0, 5); /* read sensor id */
1588 if (gspca_dev->usb_buf[0] == 0x02 /* chip ID (02 is R) */
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001589 && gspca_dev->usb_buf[1] == 0x09
Jean-François Moinea79cc7b2010-10-29 08:10:37 -03001590 && gspca_dev->usb_buf[2] == 0x01) {
1591 PDEBUG(D_PROBE, "Sensor HV7131R found");
Jean-Francois Moine7fb101a2009-10-22 06:27:14 -03001592 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001593 }
Jean-François Moinea79cc7b2010-10-29 08:10:37 -03001594 warn("Erroneous HV7131R ID 0x%02x 0x%02x 0x%02x",
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001595 gspca_dev->usb_buf[0], gspca_dev->usb_buf[1],
1596 gspca_dev->usb_buf[2]);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001597}
1598
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001599static void mi0360_probe(struct gspca_dev *gspca_dev)
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001600{
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001601 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001602 int i, j;
Jean-Francois Moine92e8c912009-02-02 16:25:38 -03001603 u16 val = 0;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001604 static const u8 probe_tb[][4][8] = {
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001605 { /* mi0360 */
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001606 {0xb0, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10},
1607 {0x90, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
1608 {0xa2, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
1609 {0xb0, 0x5d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x10}
1610 },
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001611 { /* mt9v111 */
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001612 {0xb0, 0x5c, 0x01, 0x00, 0x04, 0x00, 0x00, 0x10},
1613 {0x90, 0x5c, 0x36, 0x00, 0x00, 0x00, 0x00, 0x10},
1614 {0xa2, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
1615 {}
1616 },
1617 };
1618
1619 for (i = 0; i < ARRAY_SIZE(probe_tb); i++) {
1620 reg_w1(gspca_dev, 0x17, 0x62);
1621 reg_w1(gspca_dev, 0x01, 0x08);
1622 for (j = 0; j < 3; j++)
1623 i2c_w8(gspca_dev, probe_tb[i][j]);
1624 msleep(2);
1625 reg_r(gspca_dev, 0x0a, 5);
1626 val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
1627 if (probe_tb[i][3][0] != 0)
1628 i2c_w8(gspca_dev, probe_tb[i][3]);
1629 reg_w1(gspca_dev, 0x01, 0x29);
1630 reg_w1(gspca_dev, 0x17, 0x42);
1631 if (val != 0xffff)
1632 break;
1633 }
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001634 if (gspca_dev->usb_err < 0)
1635 return;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001636 switch (val) {
Jean-François Moinea067db82010-10-01 07:51:24 -03001637 case 0x8221:
1638 PDEBUG(D_PROBE, "Sensor mi0360b");
1639 sd->sensor = SENSOR_MI0360B;
1640 break;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001641 case 0x823a:
1642 PDEBUG(D_PROBE, "Sensor mt9v111");
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001643 sd->sensor = SENSOR_MT9V111;
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001644 break;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001645 case 0x8243:
1646 PDEBUG(D_PROBE, "Sensor mi0360");
Jean-Francois Moine65c52592009-02-01 14:26:51 -03001647 break;
1648 default:
1649 PDEBUG(D_PROBE, "Unknown sensor %04x - forced to mi0360", val);
1650 break;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001651 }
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001652}
1653
Jean-François Moine03ed2a12010-04-25 14:45:43 -03001654static void ov7630_probe(struct gspca_dev *gspca_dev)
1655{
1656 struct sd *sd = (struct sd *) gspca_dev;
1657 u16 val;
1658
1659 /* check ov76xx */
1660 reg_w1(gspca_dev, 0x17, 0x62);
1661 reg_w1(gspca_dev, 0x01, 0x08);
1662 sd->i2c_addr = 0x21;
1663 i2c_r(gspca_dev, 0x0a, 2);
1664 val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
1665 reg_w1(gspca_dev, 0x01, 0x29);
1666 reg_w1(gspca_dev, 0x17, 0x42);
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001667 if (gspca_dev->usb_err < 0)
1668 return;
Jean-François Moine03ed2a12010-04-25 14:45:43 -03001669 if (val == 0x7628) { /* soi768 */
1670 sd->sensor = SENSOR_SOI768;
1671/*fixme: only valid for 0c45:613e?*/
1672 gspca_dev->cam.input_flags =
1673 V4L2_IN_ST_VFLIP | V4L2_IN_ST_HFLIP;
1674 PDEBUG(D_PROBE, "Sensor soi768");
1675 return;
1676 }
1677 PDEBUG(D_PROBE, "Sensor ov%04x", val);
1678}
1679
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001680static void ov7648_probe(struct gspca_dev *gspca_dev)
1681{
1682 struct sd *sd = (struct sd *) gspca_dev;
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001683 u16 val;
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001684
1685 /* check ov76xx */
1686 reg_w1(gspca_dev, 0x17, 0x62);
1687 reg_w1(gspca_dev, 0x01, 0x08);
1688 sd->i2c_addr = 0x21;
1689 i2c_r(gspca_dev, 0x0a, 2);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001690 val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001691 reg_w1(gspca_dev, 0x01, 0x29);
1692 reg_w1(gspca_dev, 0x17, 0x42);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001693 if ((val & 0xff00) == 0x7600) { /* ov76xx */
1694 PDEBUG(D_PROBE, "Sensor ov%04x", val);
1695 return;
1696 }
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001697
1698 /* check po1030 */
1699 reg_w1(gspca_dev, 0x17, 0x62);
1700 reg_w1(gspca_dev, 0x01, 0x08);
1701 sd->i2c_addr = 0x6e;
1702 i2c_r(gspca_dev, 0x00, 2);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001703 val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
1704 reg_w1(gspca_dev, 0x01, 0x29);
1705 reg_w1(gspca_dev, 0x17, 0x42);
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001706 if (gspca_dev->usb_err < 0)
1707 return;
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001708 if (val == 0x1030) { /* po1030 */
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001709 PDEBUG(D_PROBE, "Sensor po1030");
1710 sd->sensor = SENSOR_PO1030;
1711 return;
1712 }
Jean-François Moine0b656322010-09-13 05:19:58 -03001713 err("Unknown sensor %04x", val);
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001714}
1715
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001716/* 0c45:6142 sensor may be po2030n, gc0305 or gc0307 */
1717static void po2030n_probe(struct gspca_dev *gspca_dev)
1718{
1719 struct sd *sd = (struct sd *) gspca_dev;
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001720 u16 val;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001721
1722 /* check gc0307 */
1723 reg_w1(gspca_dev, 0x17, 0x62);
1724 reg_w1(gspca_dev, 0x01, 0x08);
1725 reg_w1(gspca_dev, 0x02, 0x22);
1726 sd->i2c_addr = 0x21;
1727 i2c_r(gspca_dev, 0x00, 1);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001728 val = gspca_dev->usb_buf[4];
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001729 reg_w1(gspca_dev, 0x01, 0x29); /* reset */
1730 reg_w1(gspca_dev, 0x17, 0x42);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001731 if (val == 0x99) { /* gc0307 (?) */
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001732 PDEBUG(D_PROBE, "Sensor gc0307");
1733 sd->sensor = SENSOR_GC0307;
1734 return;
1735 }
1736
1737 /* check po2030n */
1738 reg_w1(gspca_dev, 0x17, 0x62);
1739 reg_w1(gspca_dev, 0x01, 0x0a);
1740 sd->i2c_addr = 0x6e;
1741 i2c_r(gspca_dev, 0x00, 2);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001742 val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001743 reg_w1(gspca_dev, 0x01, 0x29);
1744 reg_w1(gspca_dev, 0x17, 0x42);
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001745 if (gspca_dev->usb_err < 0)
1746 return;
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001747 if (val == 0x2030) {
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001748 PDEBUG(D_PROBE, "Sensor po2030n");
1749/* sd->sensor = SENSOR_PO2030N; */
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001750 } else {
Jean-François Moine0b656322010-09-13 05:19:58 -03001751 err("Unknown sensor ID %04x", val);
Jean-François Moinee3302ca2010-04-25 14:41:51 -03001752 }
Jean-François Moinead98c0f2010-03-18 05:15:30 -03001753}
1754
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001755/* this function is called at probe time */
1756static int sd_config(struct gspca_dev *gspca_dev,
1757 const struct usb_device_id *id)
1758{
1759 struct sd *sd = (struct sd *) gspca_dev;
1760 struct cam *cam;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001761
Jean-Francois Moineeac8f5f2010-01-12 07:12:43 -03001762 sd->bridge = id->driver_info >> 16;
Jean-Francois Moinec6c14332010-12-14 16:15:37 -03001763 sd->sensor = id->driver_info >> 8;
1764 sd->flags = id->driver_info;
Jean-Francois Moineeac8f5f2010-01-12 07:12:43 -03001765
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001766 cam = &gspca_dev->cam;
Jean-Francois Moine64677572009-12-20 12:31:28 -03001767 if (sd->sensor == SENSOR_ADCM1700) {
1768 cam->cam_mode = cif_mode;
1769 cam->nmodes = ARRAY_SIZE(cif_mode);
1770 } else {
1771 cam->cam_mode = vga_mode;
1772 cam->nmodes = ARRAY_SIZE(vga_mode);
1773 }
Jean-Francois Moine49cb6b02009-04-25 13:29:01 -03001774 cam->npkt = 24; /* 24 packets per ISOC message */
Jean-François Moine72b667e2010-10-02 04:35:25 -03001775 cam->ctrls = sd->ctrls;
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03001776
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03001777 sd->ag_cnt = -1;
Jean-Francois Moine77ac0ba2009-03-02 06:40:52 -03001778 sd->quality = QUALITY_DEF;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03001779
Jean-François Moineb96cfc32011-02-10 07:38:58 -03001780 INIT_WORK(&sd->work, qual_upd);
1781
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001782 return 0;
1783}
1784
Jean-Francois Moine012d6b02008-09-03 17:12:16 -03001785/* this function is called at probe and resume time */
1786static int sd_init(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001787{
1788 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001789 const u8 *sn9c1xx;
Jean-François Moinee6a92a72011-02-10 07:52:58 -03001790 u8 regGpio[] = { 0x29, 0x70 }; /* no audio */
Jean-Francois Moine98819182009-01-19 07:37:33 -03001791 u8 regF1;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001792
Hans de Goede3647fea2008-07-15 05:36:30 -03001793 /* setup a selector by bridge */
Jean-Francois Moine60017612008-07-18 08:46:19 -03001794 reg_w1(gspca_dev, 0xf1, 0x01);
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001795 reg_r(gspca_dev, 0x00, 1);
Jean-Francois Moine4f67f3a2010-12-14 16:15:00 -03001796 reg_w1(gspca_dev, 0xf1, 0x00);
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -03001797 reg_r(gspca_dev, 0x00, 1); /* get sonix chip id */
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001798 regF1 = gspca_dev->usb_buf[0];
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001799 if (gspca_dev->usb_err < 0)
1800 return gspca_dev->usb_err;
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -03001801 PDEBUG(D_PROBE, "Sonix chip id: %02x", regF1);
Jean-François Moinee6a92a72011-02-10 07:52:58 -03001802 if (gspca_dev->audio)
1803 regGpio[1] |= 0x04; /* with audio */
Hans de Goede3647fea2008-07-15 05:36:30 -03001804 switch (sd->bridge) {
1805 case BRIDGE_SN9C102P:
Hans de Goede3647fea2008-07-15 05:36:30 -03001806 case BRIDGE_SN9C105:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001807 if (regF1 != 0x11)
1808 return -ENODEV;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001809 break;
1810 default:
Jean-Francois Moine60017612008-07-18 08:46:19 -03001811/* case BRIDGE_SN9C110: */
Hans de Goedee530a5e2011-01-06 15:23:55 -03001812/* case BRIDGE_SN9C120: */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001813 if (regF1 != 0x12)
1814 return -ENODEV;
Hans de Goedee530a5e2011-01-06 15:23:55 -03001815 }
1816
1817 switch (sd->sensor) {
1818 case SENSOR_MI0360:
1819 mi0360_probe(gspca_dev);
1820 break;
1821 case SENSOR_OV7630:
1822 ov7630_probe(gspca_dev);
1823 break;
1824 case SENSOR_OV7648:
1825 ov7648_probe(gspca_dev);
1826 break;
1827 case SENSOR_PO2030N:
1828 po2030n_probe(gspca_dev);
1829 break;
1830 }
1831
1832 switch (sd->bridge) {
1833 case BRIDGE_SN9C102P:
1834 reg_w1(gspca_dev, 0x02, regGpio[1]);
1835 break;
Jean-François Moine336d23e2011-02-10 08:00:40 -03001836 default:
Hans de Goedee530a5e2011-01-06 15:23:55 -03001837 reg_w(gspca_dev, 0x01, regGpio, 2);
1838 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001839 }
1840
Jean-François Moine72b667e2010-10-02 04:35:25 -03001841 if (sd->sensor == SENSOR_OM6802)
1842 sd->ctrls[SHARPNESS].def = 0x10;
1843
Hans de Goede9712a8b2010-01-31 12:54:29 -03001844 /* Note we do not disable the sensor clock here (power saving mode),
1845 as that also disables the button on the cam. */
1846 reg_w1(gspca_dev, 0xf1, 0x00);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001847
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001848 /* set the i2c address */
1849 sn9c1xx = sn_tb[sd->sensor];
1850 sd->i2c_addr = sn9c1xx[9];
1851
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001852 gspca_dev->ctrl_dis = ctrl_dis[sd->sensor];
Jean-François Moine3afef852011-01-13 06:39:11 -03001853 if (!(sd->flags & F_ILLUM))
1854 gspca_dev->ctrl_dis |= (1 << ILLUM);
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03001855
Jean-François Moine4bf8b672010-09-25 06:12:44 -03001856 return gspca_dev->usb_err;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001857}
1858
Jean-Francois Moine98819182009-01-19 07:37:33 -03001859static u32 setexposure(struct gspca_dev *gspca_dev,
1860 u32 expo)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001861{
1862 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001863
1864 switch (sd->sensor) {
Jean-François Moinec26b12d2010-04-02 07:08:39 -03001865 case SENSOR_GC0307: {
1866 int a, b;
1867
1868 /* expo = 0..255 -> a = 19..43 */
1869 a = 19 + expo * 25 / 256;
1870 i2c_w1(gspca_dev, 0x68, a);
1871 a -= 12;
1872 b = a * a * 4; /* heuristic */
1873 i2c_w1(gspca_dev, 0x03, b >> 8);
1874 i2c_w1(gspca_dev, 0x04, b);
1875 break;
1876 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001877 case SENSOR_HV7131R: {
Jean-Francois Moine98819182009-01-19 07:37:33 -03001878 u8 Expodoit[] =
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001879 { 0xc1, 0x11, 0x25, 0x00, 0x00, 0x00, 0x00, 0x16 };
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001880
1881 Expodoit[3] = expo >> 16;
1882 Expodoit[4] = expo >> 8;
1883 Expodoit[5] = expo;
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001884 i2c_w8(gspca_dev, Expodoit);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001885 break;
1886 }
Jean-François Moinea067db82010-10-01 07:51:24 -03001887 case SENSOR_MI0360:
1888 case SENSOR_MI0360B: {
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001889 u8 expoMi[] = /* exposure 0x0635 -> 4 fp/s 0x10 */
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001890 { 0xb1, 0x5d, 0x09, 0x00, 0x00, 0x00, 0x00, 0x16 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03001891 static const u8 doit[] = /* update sensor */
1892 { 0xb1, 0x5d, 0x07, 0x00, 0x03, 0x00, 0x00, 0x10 };
1893 static const u8 sensorgo[] = /* sensor on */
1894 { 0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10 };
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001895
1896 if (expo > 0x0635)
1897 expo = 0x0635;
1898 else if (expo < 0x0001)
1899 expo = 0x0001;
1900 expoMi[3] = expo >> 8;
1901 expoMi[4] = expo;
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001902 i2c_w8(gspca_dev, expoMi);
1903 i2c_w8(gspca_dev, doit);
1904 i2c_w8(gspca_dev, sensorgo);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001905 break;
1906 }
1907 case SENSOR_MO4000: {
Jean-Francois Moine98819182009-01-19 07:37:33 -03001908 u8 expoMof[] =
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001909 { 0xa1, 0x21, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03001910 u8 expoMo10[] =
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001911 { 0xa1, 0x21, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03001912 static const u8 gainMo[] =
1913 { 0xa1, 0x21, 0x00, 0x10, 0x00, 0x00, 0x00, 0x1d };
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001914
1915 if (expo > 0x1fff)
1916 expo = 0x1fff;
1917 else if (expo < 0x0001)
1918 expo = 0x0001;
1919 expoMof[3] = (expo & 0x03fc) >> 2;
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001920 i2c_w8(gspca_dev, expoMof);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001921 expoMo10[3] = ((expo & 0x1c00) >> 10)
1922 | ((expo & 0x0003) << 4);
Jean-Francois Moine739570b2008-07-14 09:38:29 -03001923 i2c_w8(gspca_dev, expoMo10);
1924 i2c_w8(gspca_dev, gainMo);
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001925 PDEBUG(D_FRAM, "set exposure %d",
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001926 ((expoMo10[3] & 0x07) << 10)
1927 | (expoMof[3] << 2)
1928 | ((expoMo10[3] & 0x30) >> 4));
1929 break;
1930 }
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001931 case SENSOR_MT9V111: {
1932 u8 expo_c1[] =
1933 { 0xb1, 0x5c, 0x09, 0x00, 0x00, 0x00, 0x00, 0x10 };
1934
Jean-François Moine22203672011-02-10 07:49:32 -03001935 if (expo > 0x0390)
1936 expo = 0x0390;
1937 else if (expo < 0x0060)
1938 expo = 0x0060;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001939 expo_c1[3] = expo >> 8;
1940 expo_c1[4] = expo;
1941 i2c_w8(gspca_dev, expo_c1);
1942 break;
1943 }
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001944 case SENSOR_OM6802: {
Jean-Francois Moine98819182009-01-19 07:37:33 -03001945 u8 gainOm[] =
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001946 { 0xa0, 0x34, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001947 /* preset AGC - works when AutoExpo = off */
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001948
1949 if (expo > 0x03ff)
1950 expo = 0x03ff;
1951 if (expo < 0x0001)
1952 expo = 0x0001;
1953 gainOm[3] = expo >> 2;
1954 i2c_w8(gspca_dev, gainOm);
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001955 reg_w1(gspca_dev, 0x96, expo >> 5);
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001956 PDEBUG(D_FRAM, "set exposure %d", gainOm[3]);
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03001957 break;
1958 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001959 }
1960 return expo;
1961}
1962
1963static void setbrightness(struct gspca_dev *gspca_dev)
1964{
1965 struct sd *sd = (struct sd *) gspca_dev;
1966 unsigned int expo;
Jean-François Moine72b667e2010-10-02 04:35:25 -03001967 int brightness;
Jean-Francois Moine98819182009-01-19 07:37:33 -03001968 u8 k2;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001969
Jean-François Moine72b667e2010-10-02 04:35:25 -03001970 brightness = sd->ctrls[BRIGHTNESS].val;
1971 k2 = (brightness - 0x80) >> 2;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001972 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03001973 case SENSOR_ADCM1700:
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03001974 if (k2 > 0x1f)
1975 k2 = 0; /* only positive Y offset */
1976 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001977 case SENSOR_HV7131R:
Jean-François Moine72b667e2010-10-02 04:35:25 -03001978 expo = brightness << 12;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001979 if (expo > 0x002dc6c0)
1980 expo = 0x002dc6c0;
1981 else if (expo < 0x02a0)
1982 expo = 0x02a0;
1983 sd->exposure = setexposure(gspca_dev, expo);
1984 break;
1985 case SENSOR_MI0360:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001986 case SENSOR_MO4000:
Jean-François Moine72b667e2010-10-02 04:35:25 -03001987 expo = brightness << 4;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001988 sd->exposure = setexposure(gspca_dev, expo);
1989 break;
Jean-François Moinea067db82010-10-01 07:51:24 -03001990 case SENSOR_MI0360B:
Jean-François Moine72b667e2010-10-02 04:35:25 -03001991 expo = brightness << 2;
Jean-François Moinea067db82010-10-01 07:51:24 -03001992 sd->exposure = setexposure(gspca_dev, expo);
1993 break;
Jean-François Moinec26b12d2010-04-02 07:08:39 -03001994 case SENSOR_GC0307:
Jean-François Moine72b667e2010-10-02 04:35:25 -03001995 expo = brightness;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03001996 sd->exposure = setexposure(gspca_dev, expo);
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03001997 return; /* don't set the Y offset */
Jean-François Moine22203672011-02-10 07:49:32 -03001998 case SENSOR_MT9V111:
1999 expo = brightness << 2;
2000 sd->exposure = setexposure(gspca_dev, expo);
2001 return; /* don't set the Y offset */
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03002002 case SENSOR_OM6802:
Jean-François Moine72b667e2010-10-02 04:35:25 -03002003 expo = brightness << 2;
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03002004 sd->exposure = setexposure(gspca_dev, expo);
Jean-François Moine72b667e2010-10-02 04:35:25 -03002005 k2 = brightness >> 3;
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03002006 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002007 }
2008
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002009 reg_w1(gspca_dev, 0x96, k2); /* color matrix Y offset */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002010}
2011
2012static void setcontrast(struct gspca_dev *gspca_dev)
2013{
2014 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine98819182009-01-19 07:37:33 -03002015 u8 k2;
2016 u8 contrast[6];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002017
Jean-François Moine72b667e2010-10-02 04:35:25 -03002018 k2 = sd->ctrls[CONTRAST].val * 0x30 / (CONTRAST_MAX + 1)
2019 + 0x10; /* 10..40 */
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03002020 contrast[0] = (k2 + 1) / 2; /* red */
Jean-Francois Moine577cbf42008-12-05 06:18:37 -03002021 contrast[1] = 0;
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03002022 contrast[2] = k2; /* green */
Jean-Francois Moine577cbf42008-12-05 06:18:37 -03002023 contrast[3] = 0;
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03002024 contrast[4] = (k2 + 1) / 5; /* blue */
Jean-Francois Moine577cbf42008-12-05 06:18:37 -03002025 contrast[5] = 0;
2026 reg_w(gspca_dev, 0x84, contrast, sizeof contrast);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002027}
2028
2029static void setcolors(struct gspca_dev *gspca_dev)
2030{
2031 struct sd *sd = (struct sd *) gspca_dev;
Jean-François Moine72b667e2010-10-02 04:35:25 -03002032 int i, v, colors;
Jean-François Moinea067db82010-10-01 07:51:24 -03002033 const s16 *uv;
Jean-Francois Moine98819182009-01-19 07:37:33 -03002034 u8 reg8a[12]; /* U & V gains */
Jean-François Moinea067db82010-10-01 07:51:24 -03002035 static const s16 uv_com[6] = { /* same as reg84 in signed decimal */
Jean-Francois Moine403123d2008-11-26 04:46:15 -03002036 -24, -38, 64, /* UR UG UB */
2037 62, -51, -9 /* VR VG VB */
2038 };
Jean-François Moinea067db82010-10-01 07:51:24 -03002039 static const s16 uv_mi0360b[6] = {
2040 -20, -38, 64, /* UR UG UB */
2041 60, -51, -9 /* VR VG VB */
2042 };
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002043
Jean-François Moine72b667e2010-10-02 04:35:25 -03002044 colors = sd->ctrls[COLORS].val;
Jean-François Moinea067db82010-10-01 07:51:24 -03002045 if (sd->sensor == SENSOR_MI0360B)
2046 uv = uv_mi0360b;
2047 else
2048 uv = uv_com;
Jean-Francois Moine403123d2008-11-26 04:46:15 -03002049 for (i = 0; i < 6; i++) {
Jean-François Moine72b667e2010-10-02 04:35:25 -03002050 v = uv[i] * colors / COLORS_DEF;
Jean-Francois Moinebd088832008-12-02 06:58:57 -03002051 reg8a[i * 2] = v;
2052 reg8a[i * 2 + 1] = (v >> 8) & 0x0f;
Jean-Francois Moined55b83d2008-09-03 16:48:01 -03002053 }
Jean-Francois Moinebd088832008-12-02 06:58:57 -03002054 reg_w(gspca_dev, 0x8a, reg8a, sizeof reg8a);
Jean-Francois Moine403123d2008-11-26 04:46:15 -03002055}
2056
2057static void setredblue(struct gspca_dev *gspca_dev)
2058{
2059 struct sd *sd = (struct sd *) gspca_dev;
2060
Jean-François Moine72b667e2010-10-02 04:35:25 -03002061 reg_w1(gspca_dev, 0x05, sd->ctrls[RED].val);
Jean-Francois Moine9c5f70f2008-09-03 16:48:04 -03002062/* reg_w1(gspca_dev, 0x07, 32); */
Jean-François Moine72b667e2010-10-02 04:35:25 -03002063 reg_w1(gspca_dev, 0x06, sd->ctrls[BLUE].val);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002064}
2065
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03002066static void setgamma(struct gspca_dev *gspca_dev)
2067{
2068 struct sd *sd = (struct sd *) gspca_dev;
Jean-François Moine72b667e2010-10-02 04:35:25 -03002069 int i, val;
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03002070 u8 gamma[17];
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002071 const u8 *gamma_base;
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03002072 static const u8 delta[17] = {
2073 0x00, 0x14, 0x1c, 0x1c, 0x1c, 0x1c, 0x1b, 0x1a,
2074 0x18, 0x13, 0x10, 0x0e, 0x08, 0x07, 0x04, 0x02, 0x00
2075 };
2076
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002077 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03002078 case SENSOR_ADCM1700:
2079 gamma_base = gamma_spec_0;
2080 break;
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002081 case SENSOR_HV7131R:
Jean-François Moinea067db82010-10-01 07:51:24 -03002082 case SENSOR_MI0360B:
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002083 case SENSOR_MT9V111:
2084 gamma_base = gamma_spec_1;
2085 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002086 case SENSOR_GC0307:
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002087 gamma_base = gamma_spec_2;
2088 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002089 case SENSOR_SP80708:
2090 gamma_base = gamma_spec_3;
2091 break;
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002092 default:
2093 gamma_base = gamma_def;
2094 break;
2095 }
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002096
Jean-François Moine72b667e2010-10-02 04:35:25 -03002097 val = sd->ctrls[GAMMA].val;
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03002098 for (i = 0; i < sizeof gamma; i++)
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002099 gamma[i] = gamma_base[i]
Jean-François Moine72b667e2010-10-02 04:35:25 -03002100 + delta[i] * (val - GAMMA_DEF) / 32;
Jean-Francois Moine592f4eb2009-01-15 08:01:32 -03002101 reg_w(gspca_dev, 0x20, gamma, sizeof gamma);
2102}
2103
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002104static void setautogain(struct gspca_dev *gspca_dev)
2105{
2106 struct sd *sd = (struct sd *) gspca_dev;
2107
Jean-François Moine72b667e2010-10-02 04:35:25 -03002108 if (gspca_dev->ctrl_dis & (1 << AUTOGAIN))
Jean-Francois Moinef50ba1b2008-09-03 17:12:14 -03002109 return;
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03002110 switch (sd->sensor) {
2111 case SENSOR_OV7630:
2112 case SENSOR_OV7648: {
2113 u8 comb;
2114
2115 if (sd->sensor == SENSOR_OV7630)
2116 comb = 0xc0;
2117 else
2118 comb = 0xa0;
Jean-François Moine72b667e2010-10-02 04:35:25 -03002119 if (sd->ctrls[AUTOGAIN].val)
Hans de Goede1fec7472009-06-18 06:05:07 -03002120 comb |= 0x03;
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03002121 i2c_w1(&sd->gspca_dev, 0x13, comb);
2122 return;
2123 }
2124 }
Jean-François Moine72b667e2010-10-02 04:35:25 -03002125 if (sd->ctrls[AUTOGAIN].val)
Jean-Francois Moinef50ba1b2008-09-03 17:12:14 -03002126 sd->ag_cnt = AG_CNT_START;
2127 else
2128 sd->ag_cnt = -1;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002129}
2130
Németh Márton76ad3b62010-10-19 03:33:47 -03002131static void sethvflip(struct gspca_dev *gspca_dev)
Jean-Francois Moine6c862742008-09-08 04:57:26 -03002132{
Jean-François Moine72b667e2010-10-02 04:35:25 -03002133 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03002134 u8 comn;
2135
Jean-François Moinef6b22e52010-02-18 04:12:06 -03002136 switch (sd->sensor) {
2137 case SENSOR_HV7131R:
2138 comn = 0x18; /* clkdiv = 1, ablcen = 1 */
Jean-François Moine72b667e2010-10-02 04:35:25 -03002139 if (sd->ctrls[VFLIP].val)
Jean-François Moinef6b22e52010-02-18 04:12:06 -03002140 comn |= 0x01;
Jean-François Moine72b667e2010-10-02 04:35:25 -03002141 i2c_w1(gspca_dev, 0x01, comn); /* sctra */
Jean-François Moinef6b22e52010-02-18 04:12:06 -03002142 break;
2143 case SENSOR_OV7630:
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03002144 comn = 0x02;
Jean-François Moine72b667e2010-10-02 04:35:25 -03002145 if (!sd->ctrls[VFLIP].val)
Hans de Goedef8009522009-06-18 14:29:20 -03002146 comn |= 0x80;
Jean-François Moine72b667e2010-10-02 04:35:25 -03002147 i2c_w1(gspca_dev, 0x75, comn);
Jean-François Moinef6b22e52010-02-18 04:12:06 -03002148 break;
Németh Márton76ad3b62010-10-19 03:33:47 -03002149 case SENSOR_OV7648:
Jean-Francois Moine2797ba22009-02-05 15:12:24 -03002150 comn = 0x06;
Jean-François Moine72b667e2010-10-02 04:35:25 -03002151 if (sd->ctrls[VFLIP].val)
Hans de Goedef8009522009-06-18 14:29:20 -03002152 comn |= 0x80;
Jean-François Moine72b667e2010-10-02 04:35:25 -03002153 i2c_w1(gspca_dev, 0x75, comn);
Jean-François Moinef6b22e52010-02-18 04:12:06 -03002154 break;
Németh Márton76ad3b62010-10-19 03:33:47 -03002155 case SENSOR_PO2030N:
2156 /* Reg. 0x1E: Timing Generator Control Register 2 (Tgcontrol2)
2157 * (reset value: 0x0A)
2158 * bit7: HM: Horizontal Mirror: 0: disable, 1: enable
2159 * bit6: VM: Vertical Mirror: 0: disable, 1: enable
2160 * bit5: ST: Shutter Selection: 0: electrical, 1: mechanical
2161 * bit4: FT: Single Frame Transfer: 0: disable, 1: enable
2162 * bit3-0: X
2163 */
2164 comn = 0x0a;
2165 if (sd->ctrls[HFLIP].val)
2166 comn |= 0x80;
2167 if (sd->ctrls[VFLIP].val)
2168 comn |= 0x40;
2169 i2c_w1(&sd->gspca_dev, 0x1e, comn);
2170 break;
Hans de Goedef8009522009-06-18 14:29:20 -03002171 }
Jean-Francois Moine6c862742008-09-08 04:57:26 -03002172}
2173
Jean-François Moine72b667e2010-10-02 04:35:25 -03002174static void setsharpness(struct gspca_dev *gspca_dev)
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002175{
Jean-François Moine72b667e2010-10-02 04:35:25 -03002176 struct sd *sd = (struct sd *) gspca_dev;
2177
2178 reg_w1(gspca_dev, 0x99, sd->ctrls[SHARPNESS].val);
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002179}
2180
Jean-François Moine3afef852011-01-13 06:39:11 -03002181static void setillum(struct gspca_dev *gspca_dev)
Jean-Francois Moine0cae8962008-10-17 07:48:24 -03002182{
Jean-François Moine72b667e2010-10-02 04:35:25 -03002183 struct sd *sd = (struct sd *) gspca_dev;
2184
Jean-François Moine3afef852011-01-13 06:39:11 -03002185 if (gspca_dev->ctrl_dis & (1 << ILLUM))
Jean-Francois Moine47f7f6f2009-08-25 06:14:54 -03002186 return;
Jean-François Moinea63d6012011-01-13 07:56:00 -03002187 switch (sd->sensor) {
2188 case SENSOR_ADCM1700:
2189 reg_w1(gspca_dev, 0x02, /* gpio */
2190 sd->ctrls[ILLUM].val ? 0x64 : 0x60);
2191 break;
2192 case SENSOR_MT9V111:
Jean-François Moine5c956062011-02-10 08:03:24 -03002193 reg_w1(gspca_dev, 0x02,
2194 sd->ctrls[ILLUM].val ? 0x77 : 0x74);
2195/* should have been: */
2196/* 0x55 : 0x54); * 370i */
2197/* 0x66 : 0x64); * Clip */
Jean-François Moinea63d6012011-01-13 07:56:00 -03002198 break;
2199 }
Jean-Francois Moine0cae8962008-10-17 07:48:24 -03002200}
2201
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002202static void setfreq(struct gspca_dev *gspca_dev)
2203{
2204 struct sd *sd = (struct sd *) gspca_dev;
2205
Jean-François Moine72b667e2010-10-02 04:35:25 -03002206 if (gspca_dev->ctrl_dis & (1 << FREQ))
Jean-Francois Moine27954932009-07-08 05:21:50 -03002207 return;
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002208 if (sd->sensor == SENSOR_OV7660) {
Jean-Francois Moined8f400e2009-07-08 06:33:44 -03002209 u8 com8;
2210
Jean-Francois Moine47f7f6f2009-08-25 06:14:54 -03002211 com8 = 0xdf; /* auto gain/wb/expo */
Jean-François Moine72b667e2010-10-02 04:35:25 -03002212 switch (sd->ctrls[FREQ].val) {
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002213 case 0: /* Banding filter disabled */
Jean-Francois Moine47f7f6f2009-08-25 06:14:54 -03002214 i2c_w1(gspca_dev, 0x13, com8 | 0x20);
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002215 break;
2216 case 1: /* 50 hz */
Jean-Francois Moined8f400e2009-07-08 06:33:44 -03002217 i2c_w1(gspca_dev, 0x13, com8);
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002218 i2c_w1(gspca_dev, 0x3b, 0x0a);
2219 break;
2220 case 2: /* 60 hz */
Jean-Francois Moined8f400e2009-07-08 06:33:44 -03002221 i2c_w1(gspca_dev, 0x13, com8);
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002222 i2c_w1(gspca_dev, 0x3b, 0x02);
2223 break;
2224 }
2225 } else {
2226 u8 reg2a = 0, reg2b = 0, reg2d = 0;
2227
2228 /* Get reg2a / reg2d base values */
2229 switch (sd->sensor) {
2230 case SENSOR_OV7630:
2231 reg2a = 0x08;
2232 reg2d = 0x01;
2233 break;
2234 case SENSOR_OV7648:
2235 reg2a = 0x11;
2236 reg2d = 0x81;
2237 break;
2238 }
2239
Jean-François Moine72b667e2010-10-02 04:35:25 -03002240 switch (sd->ctrls[FREQ].val) {
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002241 case 0: /* Banding filter disabled */
2242 break;
2243 case 1: /* 50 hz (filter on and framerate adj) */
2244 reg2a |= 0x80;
2245 reg2b = 0xac;
2246 reg2d |= 0x04;
2247 break;
2248 case 2: /* 60 hz (filter on, no framerate adj) */
2249 reg2a |= 0x80;
2250 reg2d |= 0x04;
2251 break;
2252 }
2253 i2c_w1(gspca_dev, 0x2a, reg2a);
2254 i2c_w1(gspca_dev, 0x2b, reg2b);
2255 i2c_w1(gspca_dev, 0x2d, reg2d);
2256 }
2257}
2258
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002259static void setjpegqual(struct gspca_dev *gspca_dev)
2260{
2261 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002262
Jean-François Moinedccdccc2011-02-10 07:30:03 -03002263 jpeg_set_qual(sd->jpeg_hdr, sd->quality);
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002264#if USB_BUF_SZ < 64
2265#error "No room enough in usb_buf for quantization table"
2266#endif
Jean-François Moinedccdccc2011-02-10 07:30:03 -03002267 memcpy(gspca_dev->usb_buf, &sd->jpeg_hdr[JPEG_QT0_OFFSET], 64);
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002268 usb_control_msg(gspca_dev->dev,
2269 usb_sndctrlpipe(gspca_dev->dev, 0),
2270 0x08,
2271 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
2272 0x0100, 0,
2273 gspca_dev->usb_buf, 64,
2274 500);
Jean-François Moinedccdccc2011-02-10 07:30:03 -03002275 memcpy(gspca_dev->usb_buf, &sd->jpeg_hdr[JPEG_QT1_OFFSET], 64);
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002276 usb_control_msg(gspca_dev->dev,
2277 usb_sndctrlpipe(gspca_dev->dev, 0),
2278 0x08,
2279 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
2280 0x0140, 0,
2281 gspca_dev->usb_buf, 64,
2282 500);
2283
2284 sd->reg18 ^= 0x40;
2285 reg_w1(gspca_dev, 0x18, sd->reg18);
2286}
2287
Jean-François Moineb96cfc32011-02-10 07:38:58 -03002288/* JPEG quality update */
2289/* This function is executed from a work queue. */
2290static void qual_upd(struct work_struct *work)
2291{
2292 struct sd *sd = container_of(work, struct sd, work);
2293 struct gspca_dev *gspca_dev = &sd->gspca_dev;
2294
2295 mutex_lock(&gspca_dev->usb_lock);
2296 PDEBUG(D_STREAM, "qual_upd %d%%", sd->quality);
2297 setjpegqual(gspca_dev);
2298 mutex_unlock(&gspca_dev->usb_lock);
2299}
2300
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002301/* -- start the camera -- */
Jean-Francois Moine72ab97c2008-09-20 06:39:08 -03002302static int sd_start(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002303{
2304 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002305 int i;
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002306 u8 reg01, reg17;
Jean-Francois Moine5e68f402010-12-14 16:14:10 -03002307 u8 reg0102[2];
Jean-Francois Moine98819182009-01-19 07:37:33 -03002308 const u8 *sn9c1xx;
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002309 const u8 (*init)[8];
Jean-Francois Moine4f67f3a2010-12-14 16:15:00 -03002310 const u8 *reg9a;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002311 int mode;
Jean-Francois Moine5e68f402010-12-14 16:14:10 -03002312 static const u8 reg9a_def[] =
2313 {0x00, 0x40, 0x20, 0x00, 0x00, 0x00};
2314 static const u8 reg9a_spec[] =
2315 {0x00, 0x40, 0x38, 0x30, 0x00, 0x20};
2316 static const u8 regd4[] = {0x60, 0x00, 0x00};
Jean-Francois Moine98819182009-01-19 07:37:33 -03002317 static const u8 C0[] = { 0x2d, 0x2d, 0x3a, 0x05, 0x04, 0x3f };
2318 static const u8 CA[] = { 0x28, 0xd8, 0x14, 0xec };
Jean-Francois Moine64677572009-12-20 12:31:28 -03002319 static const u8 CA_adcm1700[] =
2320 { 0x14, 0xec, 0x0a, 0xf6 };
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002321 static const u8 CA_po2030n[] =
2322 { 0x1e, 0xe2, 0x14, 0xec };
Jean-Francois Moine98819182009-01-19 07:37:33 -03002323 static const u8 CE[] = { 0x32, 0xdd, 0x2d, 0xdd }; /* MI0360 */
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002324 static const u8 CE_gc0307[] =
2325 { 0x32, 0xce, 0x2d, 0xd3 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03002326 static const u8 CE_ov76xx[] =
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03002327 { 0x32, 0xdd, 0x32, 0xdd };
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002328 static const u8 CE_po2030n[] =
2329 { 0x14, 0xe7, 0x1e, 0xdd };
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002330
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002331 /* create the JPEG header */
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002332 jpeg_define(sd->jpeg_hdr, gspca_dev->height, gspca_dev->width,
2333 0x21); /* JPEG 422 */
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002334
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002335 /* initialize the bridge */
2336 sn9c1xx = sn_tb[sd->sensor];
Jean-Francois Moine5e68f402010-12-14 16:14:10 -03002337
2338 /* sensor clock already enabled in sd_init */
2339 /* reg_w1(gspca_dev, 0xf1, 0x00); */
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002340 reg01 = sn9c1xx[1];
Jean-François Moine3afef852011-01-13 06:39:11 -03002341 if (sd->flags & F_PDN_INV)
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002342 reg01 ^= S_PDN_INV; /* power down inverted */
2343 reg_w1(gspca_dev, 0x01, reg01);
Jean-Francois Moine5e68f402010-12-14 16:14:10 -03002344
2345 /* configure gpio */
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002346 reg0102[0] = reg01;
Jean-Francois Moine5e68f402010-12-14 16:14:10 -03002347 reg0102[1] = sn9c1xx[2];
2348 if (gspca_dev->audio)
2349 reg0102[1] |= 0x04; /* keep the audio connection */
2350 reg_w(gspca_dev, 0x01, reg0102, 2);
2351 reg_w(gspca_dev, 0x08, &sn9c1xx[8], 2);
2352 reg_w(gspca_dev, 0x17, &sn9c1xx[0x17], 5);
2353 switch (sd->sensor) {
2354 case SENSOR_GC0307:
2355 case SENSOR_OV7660:
2356 case SENSOR_PO1030:
2357 case SENSOR_PO2030N:
2358 case SENSOR_SOI768:
2359 case SENSOR_SP80708:
2360 reg9a = reg9a_spec;
2361 break;
2362 default:
2363 reg9a = reg9a_def;
2364 break;
2365 }
2366 reg_w(gspca_dev, 0x9a, reg9a, 6);
2367
2368 reg_w(gspca_dev, 0xd4, regd4, sizeof regd4);
2369
2370 reg_w(gspca_dev, 0x03, &sn9c1xx[3], 0x0f);
2371
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002372 reg17 = sn9c1xx[0x17];
Jean-Francois Moine5e68f402010-12-14 16:14:10 -03002373 switch (sd->sensor) {
Jean-Francois Moine5e68f402010-12-14 16:14:10 -03002374 case SENSOR_GC0307:
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002375 msleep(50); /*fixme: is it useful? */
Jean-Francois Moine5e68f402010-12-14 16:14:10 -03002376 break;
2377 case SENSOR_OM6802:
2378 msleep(10);
2379 reg_w1(gspca_dev, 0x02, 0x73);
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002380 reg17 |= SEN_CLK_EN;
2381 reg_w1(gspca_dev, 0x17, reg17);
Jean-Francois Moine5e68f402010-12-14 16:14:10 -03002382 reg_w1(gspca_dev, 0x01, 0x22);
2383 msleep(100);
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002384 reg01 = SCL_SEL_OD | S_PDN_INV;
2385 reg17 &= MCK_SIZE_MASK;
2386 reg17 |= 0x04; /* clock / 4 */
2387 break;
2388 }
2389 reg01 |= SYS_SEL_48M;
2390 reg_w1(gspca_dev, 0x01, reg01);
2391 reg17 |= SEN_CLK_EN;
2392 reg_w1(gspca_dev, 0x17, reg17);
2393 reg01 &= ~S_PWR_DN; /* sensor power on */
2394 reg_w1(gspca_dev, 0x01, reg01);
2395 reg01 &= ~SYS_SEL_48M;
2396 reg_w1(gspca_dev, 0x01, reg01);
2397
2398 switch (sd->sensor) {
2399 case SENSOR_HV7131R:
2400 hv7131r_probe(gspca_dev); /*fixme: is it useful? */
2401 break;
2402 case SENSOR_OM6802:
Jean-Francois Moine5e68f402010-12-14 16:14:10 -03002403 msleep(10);
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002404 reg_w1(gspca_dev, 0x01, reg01);
Jean-Francois Moine5e68f402010-12-14 16:14:10 -03002405 i2c_w8(gspca_dev, om6802_init0[0]);
2406 i2c_w8(gspca_dev, om6802_init0[1]);
2407 msleep(15);
2408 reg_w1(gspca_dev, 0x02, 0x71);
2409 msleep(150);
2410 break;
Jean-Francois Moine5e68f402010-12-14 16:14:10 -03002411 case SENSOR_SP80708:
Jean-Francois Moine5e68f402010-12-14 16:14:10 -03002412 msleep(100);
2413 reg_w1(gspca_dev, 0x02, 0x62);
2414 break;
Jean-Francois Moine5e68f402010-12-14 16:14:10 -03002415 }
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002416
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002417 /* initialize the sensor */
2418 i2c_w_seq(gspca_dev, sensor_init[sd->sensor]);
2419
Jean-Francois Moine60017612008-07-18 08:46:19 -03002420 reg_w1(gspca_dev, 0x15, sn9c1xx[0x15]);
2421 reg_w1(gspca_dev, 0x16, sn9c1xx[0x16]);
2422 reg_w1(gspca_dev, 0x12, sn9c1xx[0x12]);
2423 reg_w1(gspca_dev, 0x13, sn9c1xx[0x13]);
2424 reg_w1(gspca_dev, 0x18, sn9c1xx[0x18]);
Jean-Francois Moine64677572009-12-20 12:31:28 -03002425 if (sd->sensor == SENSOR_ADCM1700) {
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002426 reg_w1(gspca_dev, 0xd2, 0x3a); /* AE_H_SIZE = 116 */
2427 reg_w1(gspca_dev, 0xd3, 0x30); /* AE_V_SIZE = 96 */
Jean-Francois Moine64677572009-12-20 12:31:28 -03002428 } else {
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002429 reg_w1(gspca_dev, 0xd2, 0x6a); /* AE_H_SIZE = 212 */
2430 reg_w1(gspca_dev, 0xd3, 0x50); /* AE_V_SIZE = 160 */
Jean-Francois Moine64677572009-12-20 12:31:28 -03002431 }
Jean-Francois Moine60017612008-07-18 08:46:19 -03002432 reg_w1(gspca_dev, 0xc6, 0x00);
2433 reg_w1(gspca_dev, 0xc7, 0x00);
Jean-Francois Moine64677572009-12-20 12:31:28 -03002434 if (sd->sensor == SENSOR_ADCM1700) {
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002435 reg_w1(gspca_dev, 0xc8, 0x2c); /* AW_H_STOP = 352 */
2436 reg_w1(gspca_dev, 0xc9, 0x24); /* AW_V_STOP = 288 */
Jean-Francois Moine64677572009-12-20 12:31:28 -03002437 } else {
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002438 reg_w1(gspca_dev, 0xc8, 0x50); /* AW_H_STOP = 640 */
2439 reg_w1(gspca_dev, 0xc9, 0x3c); /* AW_V_STOP = 480 */
Jean-Francois Moine64677572009-12-20 12:31:28 -03002440 }
Jean-Francois Moine60017612008-07-18 08:46:19 -03002441 reg_w1(gspca_dev, 0x18, sn9c1xx[0x18]);
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002442 switch (sd->sensor) {
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002443 case SENSOR_OM6802:
2444/* case SENSOR_OV7648: * fixme: sometimes */
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03002445 break;
Jean-Francois Moine568788a2008-07-15 11:46:06 -03002446 default:
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002447 reg17 |= DEF_EN;
Jean-Francois Moine568788a2008-07-15 11:46:06 -03002448 break;
2449 }
Jean-Francois Moine8f47a3c2008-07-29 14:14:04 -03002450 reg_w1(gspca_dev, 0x17, reg17);
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002451
2452 reg_w1(gspca_dev, 0x05, 0x00); /* red */
2453 reg_w1(gspca_dev, 0x07, 0x00); /* green */
2454 reg_w1(gspca_dev, 0x06, 0x00); /* blue */
Jean-Francois Moine60017612008-07-18 08:46:19 -03002455 reg_w1(gspca_dev, 0x14, sn9c1xx[0x14]);
Jean-Francois Moineb083b922009-02-01 14:20:07 -03002456
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002457 setgamma(gspca_dev);
2458
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002459/*fixme: 8 times with all zeroes and 1 or 2 times with normal values */
Jean-Francois Moine05b809c2008-09-03 16:47:59 -03002460 for (i = 0; i < 8; i++)
2461 reg_w(gspca_dev, 0x84, reg84, sizeof reg84);
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03002462 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03002463 case SENSOR_ADCM1700:
Jean-Francois Moinec8b9b2c2009-04-26 14:46:12 -03002464 case SENSOR_OV7660:
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002465 case SENSOR_SP80708:
2466 reg_w1(gspca_dev, 0x9a, 0x05);
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002467 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002468 case SENSOR_GC0307:
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002469 case SENSOR_MT9V111:
Jean-François Moinea067db82010-10-01 07:51:24 -03002470 case SENSOR_MI0360B:
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002471 reg_w1(gspca_dev, 0x9a, 0x07);
2472 break;
Jean-François Moine0a85c742010-04-25 14:33:31 -03002473 case SENSOR_OV7630:
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002474 case SENSOR_OV7648:
2475 reg_w1(gspca_dev, 0x9a, 0x0a);
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002476 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002477 case SENSOR_PO2030N:
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002478 case SENSOR_SOI768:
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002479 reg_w1(gspca_dev, 0x9a, 0x06);
2480 break;
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03002481 default:
Jean-Francois Moine60017612008-07-18 08:46:19 -03002482 reg_w1(gspca_dev, 0x9a, 0x08);
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03002483 break;
2484 }
Jean-François Moine72b667e2010-10-02 04:35:25 -03002485 setsharpness(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002486
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002487 reg_w(gspca_dev, 0x84, reg84, sizeof reg84);
Jean-Francois Moine878b35a2009-12-30 04:53:07 -03002488 reg_w1(gspca_dev, 0x05, 0x20); /* red */
2489 reg_w1(gspca_dev, 0x07, 0x20); /* green */
2490 reg_w1(gspca_dev, 0x06, 0x20); /* blue */
Jean-Francois Moine23a98272009-11-02 09:10:25 -03002491
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002492 init = NULL;
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03002493 mode = gspca_dev->cam.cam_mode[gspca_dev->curr_mode].priv;
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002494 reg01 |= SYS_SEL_48M | V_TX_EN;
2495 reg17 &= ~MCK_SIZE_MASK;
2496 reg17 |= 0x02; /* clock / 2 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002497 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03002498 case SENSOR_ADCM1700:
2499 init = adcm1700_sensor_param1;
Jean-Francois Moine64677572009-12-20 12:31:28 -03002500 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002501 case SENSOR_GC0307:
2502 init = gc0307_sensor_param1;
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002503 break;
2504 case SENSOR_HV7131R:
2505 case SENSOR_MI0360:
2506 if (mode)
2507 reg01 |= SYS_SEL_48M; /* 320x240: clk 48Mhz */
2508 else
2509 reg01 &= ~SYS_SEL_48M; /* 640x480: clk 24Mhz */
2510 reg17 &= ~MCK_SIZE_MASK;
2511 reg17 |= 0x01; /* clock / 1 */
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002512 break;
Jean-François Moinea067db82010-10-01 07:51:24 -03002513 case SENSOR_MI0360B:
2514 init = mi0360b_sensor_param1;
Jean-François Moinea067db82010-10-01 07:51:24 -03002515 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002516 case SENSOR_MO4000:
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002517 if (mode) { /* if 320x240 */
2518 reg01 &= ~SYS_SEL_48M; /* clk 24Mz */
2519 reg17 &= ~MCK_SIZE_MASK;
2520 reg17 |= 0x01; /* clock / 1 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002521 }
2522 break;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03002523 case SENSOR_MT9V111:
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002524 init = mt9v111_sensor_param1;
Jean-Francois Moine0fbe0572009-01-30 12:14:02 -03002525 break;
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03002526 case SENSOR_OM6802:
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002527 init = om6802_sensor_param1;
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002528 if (!mode) { /* if 640x480 */
2529 reg17 &= ~MCK_SIZE_MASK;
Jean-François Moineaa777a82010-12-28 07:39:13 -03002530 reg17 |= 0x04; /* clock / 4 */
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002531 }
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03002532 break;
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002533 case SENSOR_OV7630:
Jean-François Moinebdd2b932010-04-25 14:23:39 -03002534 init = ov7630_sensor_param1;
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002535 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002536 case SENSOR_OV7648:
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002537 init = ov7648_sensor_param1;
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002538 reg17 &= ~MCK_SIZE_MASK;
2539 reg17 |= 0x01; /* clock / 1 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002540 break;
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002541 case SENSOR_OV7660:
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002542 init = ov7660_sensor_param1;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002543 break;
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03002544 case SENSOR_PO1030:
2545 init = po1030_sensor_param1;
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03002546 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002547 case SENSOR_PO2030N:
2548 init = po2030n_sensor_param1;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002549 break;
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002550 case SENSOR_SOI768:
2551 init = soi768_sensor_param1;
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002552 break;
Jean-François Moine0303a902010-10-21 04:05:15 -03002553 case SENSOR_SP80708:
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002554 init = sp80708_sensor_param1;
Jean-Francois Moine5e31dc82009-02-01 13:59:42 -03002555 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002556 }
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002557
2558 /* more sensor initialization - param1 */
2559 if (init != NULL) {
2560 i2c_w_seq(gspca_dev, init);
2561/* init = NULL; */
2562 }
2563
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002564 reg_w(gspca_dev, 0xc0, C0, 6);
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002565 switch (sd->sensor) {
2566 case SENSOR_ADCM1700:
2567 case SENSOR_GC0307:
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002568 case SENSOR_SOI768:
Jean-Francois Moine64677572009-12-20 12:31:28 -03002569 reg_w(gspca_dev, 0xca, CA_adcm1700, 4);
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002570 break;
2571 case SENSOR_PO2030N:
2572 reg_w(gspca_dev, 0xca, CA_po2030n, 4);
2573 break;
2574 default:
Jean-Francois Moine64677572009-12-20 12:31:28 -03002575 reg_w(gspca_dev, 0xca, CA, 4);
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002576 break;
2577 }
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002578 switch (sd->sensor) {
Jean-Francois Moine64677572009-12-20 12:31:28 -03002579 case SENSOR_ADCM1700:
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002580 case SENSOR_OV7630:
2581 case SENSOR_OV7648:
Jean-Francois Moine674cbc62008-10-02 08:06:59 -03002582 case SENSOR_OV7660:
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002583 case SENSOR_SOI768:
Jean-Francois Moine6ab0b172008-09-03 16:47:34 -03002584 reg_w(gspca_dev, 0xce, CE_ov76xx, 4);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002585 break;
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002586 case SENSOR_GC0307:
2587 reg_w(gspca_dev, 0xce, CE_gc0307, 4);
2588 break;
2589 case SENSOR_PO2030N:
2590 reg_w(gspca_dev, 0xce, CE_po2030n, 4);
2591 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002592 default:
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002593 reg_w(gspca_dev, 0xce, CE, 4);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002594 /* ?? {0x1e, 0xdd, 0x2d, 0xe7} */
2595 break;
2596 }
2597
2598 /* here change size mode 0 -> VGA; 1 -> CIF */
Jean-Francois Moine71cb2762009-03-03 05:33:41 -03002599 sd->reg18 = sn9c1xx[0x18] | (mode << 4) | 0x40;
2600 reg_w1(gspca_dev, 0x18, sd->reg18);
2601 setjpegqual(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002602
Jean-Francois Moine60017612008-07-18 08:46:19 -03002603 reg_w1(gspca_dev, 0x17, reg17);
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002604 reg_w1(gspca_dev, 0x01, reg01);
2605 sd->reg01 = reg01;
2606 sd->reg17 = reg17;
Jean-Francois Moine3fccb772009-11-02 09:54:04 -03002607
Németh Márton76ad3b62010-10-19 03:33:47 -03002608 sethvflip(gspca_dev);
Jean-Francois Moine91bd3412008-11-23 14:47:50 -03002609 setbrightness(gspca_dev);
2610 setcontrast(gspca_dev);
Jean-François Moinefff2f702010-04-25 14:31:05 -03002611 setcolors(gspca_dev);
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002612 setautogain(gspca_dev);
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002613 setfreq(gspca_dev);
Jean-François Moineb96cfc32011-02-10 07:38:58 -03002614
2615 sd->pktsz = sd->npkt = 0;
2616 sd->nchg = sd->short_mark = 0;
2617 sd->work_thread = create_singlethread_workqueue(MODULE_NAME);
2618
Jean-François Moine4bf8b672010-09-25 06:12:44 -03002619 return gspca_dev->usb_err;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002620}
2621
2622static void sd_stopN(struct gspca_dev *gspca_dev)
2623{
2624 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine98819182009-01-19 07:37:33 -03002625 static const u8 stophv7131[] =
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002626 { 0xa1, 0x11, 0x02, 0x09, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03002627 static const u8 stopmi0360[] =
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002628 { 0xb1, 0x5d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moine98819182009-01-19 07:37:33 -03002629 static const u8 stopov7648[] =
Jean-Francois Moine62703302008-11-11 08:42:56 -03002630 { 0xa1, 0x21, 0x76, 0x20, 0x00, 0x00, 0x00, 0x10 };
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002631 static const u8 stopsoi768[] =
2632 { 0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10 };
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002633 u8 reg01;
2634 u8 reg17;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002635
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002636 reg01 = sd->reg01;
2637 reg17 = sd->reg17 & ~SEN_CLK_EN;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002638 switch (sd->sensor) {
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002639 case SENSOR_ADCM1700:
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002640 case SENSOR_GC0307:
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002641 case SENSOR_PO2030N:
2642 case SENSOR_SP80708:
2643 reg01 |= LED;
2644 reg_w1(gspca_dev, 0x01, reg01);
2645 reg01 &= ~(LED | V_TX_EN);
2646 reg_w1(gspca_dev, 0x01, reg01);
2647/* reg_w1(gspca_dev, 0x02, 0x??); * LED off ? */
Jean-François Moinead98c0f2010-03-18 05:15:30 -03002648 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002649 case SENSOR_HV7131R:
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002650 reg01 &= ~V_TX_EN;
2651 reg_w1(gspca_dev, 0x01, reg01);
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002652 i2c_w8(gspca_dev, stophv7131);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002653 break;
2654 case SENSOR_MI0360:
Jean-François Moinea067db82010-10-01 07:51:24 -03002655 case SENSOR_MI0360B:
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002656 reg01 &= ~V_TX_EN;
2657 reg_w1(gspca_dev, 0x01, reg01);
2658/* reg_w1(gspca_dev, 0x02, 0x40); * LED off ? */
Jean-Francois Moine739570b2008-07-14 09:38:29 -03002659 i2c_w8(gspca_dev, stopmi0360);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002660 break;
Jean-Francois Moine3ef2c5b2009-01-29 04:59:45 -03002661 case SENSOR_MT9V111:
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002662 case SENSOR_OM6802:
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03002663 case SENSOR_PO1030:
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002664 reg01 &= ~V_TX_EN;
2665 reg_w1(gspca_dev, 0x01, reg01);
2666 break;
2667 case SENSOR_OV7630:
2668 case SENSOR_OV7648:
2669 reg01 &= ~V_TX_EN;
2670 reg_w1(gspca_dev, 0x01, reg01);
2671 i2c_w8(gspca_dev, stopov7648);
2672 break;
2673 case SENSOR_OV7660:
2674 reg01 &= ~V_TX_EN;
2675 reg_w1(gspca_dev, 0x01, reg01);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002676 break;
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002677 case SENSOR_SOI768:
2678 i2c_w8(gspca_dev, stopsoi768);
Jean-François Moine03ed2a12010-04-25 14:45:43 -03002679 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002680 }
Jean-Francois Moine0e4d4132010-12-14 16:17:40 -03002681
2682 reg01 |= SCL_SEL_OD;
2683 reg_w1(gspca_dev, 0x01, reg01);
2684 reg01 |= S_PWR_DN; /* sensor power down */
2685 reg_w1(gspca_dev, 0x01, reg01);
2686 reg_w1(gspca_dev, 0x17, reg17);
2687 reg01 &= ~SYS_SEL_48M; /* clock 24MHz */
2688 reg_w1(gspca_dev, 0x01, reg01);
2689 reg01 |= LED;
2690 reg_w1(gspca_dev, 0x01, reg01);
Hans de Goede9712a8b2010-01-31 12:54:29 -03002691 /* Don't disable sensor clock as that disables the button on the cam */
2692 /* reg_w1(gspca_dev, 0xf1, 0x01); */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002693}
2694
Jean-François Moineb96cfc32011-02-10 07:38:58 -03002695/* called on streamoff with alt==0 and on disconnect */
2696/* the usb_lock is held at entry - restore on exit */
2697static void sd_stop0(struct gspca_dev *gspca_dev)
2698{
2699 struct sd *sd = (struct sd *) gspca_dev;
2700
2701 if (sd->work_thread != NULL) {
2702 mutex_unlock(&gspca_dev->usb_lock);
2703 destroy_workqueue(sd->work_thread);
2704 mutex_lock(&gspca_dev->usb_lock);
2705 sd->work_thread = NULL;
2706 }
2707}
2708
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002709static void do_autogain(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002710{
2711 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002712 int delta;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002713 int expotimes;
Jean-Francois Moine98819182009-01-19 07:37:33 -03002714 u8 luma_mean = 130;
2715 u8 luma_delta = 20;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002716
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002717 /* Thanks S., without your advice, autobright should not work :) */
2718 if (sd->ag_cnt < 0)
2719 return;
2720 if (--sd->ag_cnt >= 0)
2721 return;
2722 sd->ag_cnt = AG_CNT_START;
2723
2724 delta = atomic_read(&sd->avg_lum);
2725 PDEBUG(D_FRAM, "mean lum %d", delta);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002726 if (delta < luma_mean - luma_delta ||
2727 delta > luma_mean + luma_delta) {
2728 switch (sd->sensor) {
Jean-François Moinec26b12d2010-04-02 07:08:39 -03002729 case SENSOR_GC0307:
2730 expotimes = sd->exposure;
2731 expotimes += (luma_mean - delta) >> 6;
2732 if (expotimes < 0)
2733 expotimes = 0;
2734 sd->exposure = setexposure(gspca_dev,
2735 (unsigned int) expotimes);
2736 break;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002737 case SENSOR_HV7131R:
2738 expotimes = sd->exposure >> 8;
2739 expotimes += (luma_mean - delta) >> 4;
2740 if (expotimes < 0)
2741 expotimes = 0;
2742 sd->exposure = setexposure(gspca_dev,
2743 (unsigned int) (expotimes << 8));
2744 break;
Amauri Magagna46b4f2a2009-10-17 07:21:29 -03002745 case SENSOR_OM6802:
Jean-François Moine22203672011-02-10 07:49:32 -03002746 case SENSOR_MT9V111:
Amauri Magagna46b4f2a2009-10-17 07:21:29 -03002747 expotimes = sd->exposure;
2748 expotimes += (luma_mean - delta) >> 2;
2749 if (expotimes < 0)
2750 expotimes = 0;
2751 sd->exposure = setexposure(gspca_dev,
2752 (unsigned int) expotimes);
2753 setredblue(gspca_dev);
2754 break;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002755 default:
2756/* case SENSOR_MO4000: */
2757/* case SENSOR_MI0360: */
Jean-François Moinea067db82010-10-01 07:51:24 -03002758/* case SENSOR_MI0360B: */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002759 expotimes = sd->exposure;
2760 expotimes += (luma_mean - delta) >> 6;
2761 if (expotimes < 0)
2762 expotimes = 0;
2763 sd->exposure = setexposure(gspca_dev,
2764 (unsigned int) expotimes);
Jean-Francois Moine403123d2008-11-26 04:46:15 -03002765 setredblue(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002766 break;
2767 }
2768 }
2769}
2770
Jean-François Moine0f77f402011-02-10 07:01:30 -03002771/* set the average luminosity from an isoc marker */
2772static void set_lum(struct sd *sd,
2773 u8 *data)
2774{
2775 int avg_lum;
2776
2777 /* w0 w1 w2
2778 * w3 w4 w5
2779 * w6 w7 w8
2780 */
2781 avg_lum = (data[27] << 8) + data[28] /* w3 */
2782
2783 + (data[31] << 8) + data[32] /* w5 */
2784
2785 + (data[23] << 8) + data[24] /* w1 */
2786
2787 + (data[35] << 8) + data[36] /* w7 */
2788
2789 + (data[29] << 10) + (data[30] << 2); /* w4 * 4 */
2790 avg_lum >>= 10;
2791 atomic_set(&sd->avg_lum, avg_lum);
2792}
2793
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03002794/* scan the URB packets */
2795/* This function is run at interrupt level. */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002796static void sd_pkt_scan(struct gspca_dev *gspca_dev,
Jean-Francois Moine98819182009-01-19 07:37:33 -03002797 u8 *data, /* isoc packet */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002798 int len) /* iso packet length */
2799{
2800 struct sd *sd = (struct sd *) gspca_dev;
Jean-François Moineb96cfc32011-02-10 07:38:58 -03002801 int i, new_qual;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002802
Jean-François Moinea4a30762011-02-10 07:15:24 -03002803 /*
2804 * A frame ends on the marker
2805 * ff ff 00 c4 c4 96 ..
2806 * which is 62 bytes long and is followed by various information
2807 * including statuses and luminosity.
2808 *
2809 * A marker may be splitted on two packets.
2810 *
2811 * The 6th byte of a marker contains the bits:
2812 * 0x08: USB full
2813 * 0xc0: frame sequence
2814 * When the bit 'USB full' is set, the frame must be discarded;
2815 * this is also the case when the 2 bytes before the marker are
2816 * not the JPEG end of frame ('ff d9').
2817 */
2818
2819/*fixme: assumption about the following code:
2820 * - there can be only one marker in a packet
2821 */
2822
2823 /* skip the remaining bytes of a short marker */
2824 i = sd->short_mark;
2825 if (i != 0) {
2826 sd->short_mark = 0;
2827 if (i < 0 /* if 'ff' at end of previous packet */
2828 && data[0] == 0xff
2829 && data[1] == 0x00)
2830 goto marker_found;
2831 if (data[0] == 0xff && data[1] == 0xff) {
2832 i = 0;
2833 goto marker_found;
2834 }
2835 len -= i;
2836 if (len <= 0)
2837 return;
2838 data += i;
2839 }
2840
Jean-François Moineb96cfc32011-02-10 07:38:58 -03002841 /* count the packets and their size */
2842 sd->npkt++;
2843 sd->pktsz += len;
2844
Jean-François Moinea4a30762011-02-10 07:15:24 -03002845 /* search backwards if there is a marker in the packet */
2846 for (i = len - 1; --i >= 0; ) {
2847 if (data[i] != 0xff) {
2848 i--;
2849 continue;
2850 }
2851 if (data[i + 1] == 0xff) {
2852
2853 /* (there may be 'ff ff' inside a marker) */
2854 if (i + 2 >= len || data[i + 2] == 0x00)
2855 goto marker_found;
2856 }
2857 }
2858
2859 /* no marker found */
2860 /* add the JPEG header if first fragment */
2861 if (data[len - 1] == 0xff)
2862 sd->short_mark = -1;
2863 if (gspca_dev->last_packet_type == LAST_PACKET)
Jean-François Moinea95bd642010-10-01 07:54:30 -03002864 gspca_frame_add(gspca_dev, FIRST_PACKET,
2865 sd->jpeg_hdr, JPEG_HDR_SZ);
Jean-François Moinea95bd642010-10-01 07:54:30 -03002866 gspca_frame_add(gspca_dev, INTER_PACKET, data, len);
Jean-François Moinea4a30762011-02-10 07:15:24 -03002867 return;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002868
Jean-François Moinea4a30762011-02-10 07:15:24 -03002869 /* marker found */
Jean-François Moineb96cfc32011-02-10 07:38:58 -03002870 /* if some error, discard the frame and decrease the quality */
Jean-François Moinea4a30762011-02-10 07:15:24 -03002871marker_found:
Jean-François Moineb96cfc32011-02-10 07:38:58 -03002872 new_qual = 0;
Jean-François Moinea4a30762011-02-10 07:15:24 -03002873 if (i > 2) {
2874 if (data[i - 2] != 0xff || data[i - 1] != 0xd9) {
2875 gspca_dev->last_packet_type = DISCARD_PACKET;
Jean-François Moineb96cfc32011-02-10 07:38:58 -03002876 new_qual = -3;
Jean-François Moinea4a30762011-02-10 07:15:24 -03002877 }
2878 } else if (i + 6 < len) {
2879 if (data[i + 6] & 0x08) {
2880 gspca_dev->last_packet_type = DISCARD_PACKET;
Jean-François Moineb96cfc32011-02-10 07:38:58 -03002881 new_qual = -5;
Jean-François Moinea4a30762011-02-10 07:15:24 -03002882 }
2883 }
Jean-François Moinea95bd642010-10-01 07:54:30 -03002884
Jean-François Moinea4a30762011-02-10 07:15:24 -03002885 gspca_frame_add(gspca_dev, LAST_PACKET, data, i);
2886
Jean-François Moineb96cfc32011-02-10 07:38:58 -03002887 /* compute the filling rate and a new JPEG quality */
2888 if (new_qual == 0) {
2889 int r;
2890
2891 r = (sd->pktsz * 100) /
2892 (sd->npkt *
2893 gspca_dev->urb[0]->iso_frame_desc[0].length);
2894 if (r >= 85)
2895 new_qual = -3;
2896 else if (r < 75)
2897 new_qual = 2;
2898 }
2899 if (new_qual != 0) {
2900 sd->nchg += new_qual;
2901 if (sd->nchg < -6 || sd->nchg >= 12) {
2902 sd->nchg = 0;
2903 new_qual += sd->quality;
2904 if (new_qual < QUALITY_MIN)
2905 new_qual = QUALITY_MIN;
2906 else if (new_qual > QUALITY_MAX)
2907 new_qual = QUALITY_MAX;
2908 if (new_qual != sd->quality) {
2909 sd->quality = new_qual;
2910 queue_work(sd->work_thread, &sd->work);
2911 }
2912 }
2913 } else {
2914 sd->nchg = 0;
2915 }
2916 sd->pktsz = sd->npkt = 0;
2917
Jean-François Moinea4a30762011-02-10 07:15:24 -03002918 /* if the marker is smaller than 62 bytes,
2919 * memorize the number of bytes to skip in the next packet */
2920 if (i + 62 > len) { /* no more usable data */
2921 sd->short_mark = i + 62 - len;
2922 return;
2923 }
Jean-François Moine0f77f402011-02-10 07:01:30 -03002924 if (sd->ag_cnt >= 0)
Jean-François Moinea4a30762011-02-10 07:15:24 -03002925 set_lum(sd, data + i);
2926
2927 /* if more data, start a new frame */
2928 i += 62;
2929 if (i < len) {
2930 data += i;
2931 len -= i;
2932 gspca_frame_add(gspca_dev, FIRST_PACKET,
2933 sd->jpeg_hdr, JPEG_HDR_SZ);
2934 gspca_frame_add(gspca_dev, INTER_PACKET, data, len);
2935 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002936}
2937
Jean-Francois Moine77ac0ba2009-03-02 06:40:52 -03002938static int sd_get_jcomp(struct gspca_dev *gspca_dev,
2939 struct v4l2_jpegcompression *jcomp)
2940{
2941 struct sd *sd = (struct sd *) gspca_dev;
2942
2943 memset(jcomp, 0, sizeof *jcomp);
2944 jcomp->quality = sd->quality;
2945 jcomp->jpeg_markers = V4L2_JPEG_MARKER_DHT
2946 | V4L2_JPEG_MARKER_DQT;
2947 return 0;
2948}
2949
Hans de Goede37c6dbe2009-06-18 07:35:36 -03002950static int sd_querymenu(struct gspca_dev *gspca_dev,
2951 struct v4l2_querymenu *menu)
2952{
2953 switch (menu->id) {
2954 case V4L2_CID_POWER_LINE_FREQUENCY:
2955 switch (menu->index) {
2956 case 0: /* V4L2_CID_POWER_LINE_FREQUENCY_DISABLED */
2957 strcpy((char *) menu->name, "NoFliker");
2958 return 0;
2959 case 1: /* V4L2_CID_POWER_LINE_FREQUENCY_50HZ */
2960 strcpy((char *) menu->name, "50 Hz");
2961 return 0;
2962 case 2: /* V4L2_CID_POWER_LINE_FREQUENCY_60HZ */
2963 strcpy((char *) menu->name, "60 Hz");
2964 return 0;
2965 }
2966 break;
2967 }
2968 return -EINVAL;
2969}
2970
Jean-François Moine28566432010-10-01 07:33:26 -03002971#if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
Hans de Goede9712a8b2010-01-31 12:54:29 -03002972static int sd_int_pkt_scan(struct gspca_dev *gspca_dev,
2973 u8 *data, /* interrupt packet data */
2974 int len) /* interrupt packet length */
2975{
2976 int ret = -EINVAL;
2977
2978 if (len == 1 && data[0] == 1) {
2979 input_report_key(gspca_dev->input_dev, KEY_CAMERA, 1);
2980 input_sync(gspca_dev->input_dev);
2981 input_report_key(gspca_dev->input_dev, KEY_CAMERA, 0);
2982 input_sync(gspca_dev->input_dev);
2983 ret = 0;
2984 }
2985
2986 return ret;
2987}
2988#endif
2989
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002990/* sub-driver description */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03002991static const struct sd_desc sd_desc = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002992 .name = MODULE_NAME,
2993 .ctrls = sd_ctrls,
Jean-François Moine72b667e2010-10-02 04:35:25 -03002994 .nctrls = NCTRLS,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002995 .config = sd_config,
Jean-Francois Moine012d6b02008-09-03 17:12:16 -03002996 .init = sd_init,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03002997 .start = sd_start,
2998 .stopN = sd_stopN,
Jean-François Moineb96cfc32011-02-10 07:38:58 -03002999 .stop0 = sd_stop0,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003000 .pkt_scan = sd_pkt_scan,
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03003001 .dq_callback = do_autogain,
Jean-Francois Moine77ac0ba2009-03-02 06:40:52 -03003002 .get_jcomp = sd_get_jcomp,
Hans de Goede37c6dbe2009-06-18 07:35:36 -03003003 .querymenu = sd_querymenu,
Jean-François Moine28566432010-10-01 07:33:26 -03003004#if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
Hans de Goede9712a8b2010-01-31 12:54:29 -03003005 .int_pkt_scan = sd_int_pkt_scan,
3006#endif
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003007};
3008
3009/* -- module initialisation -- */
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003010#define BS(bridge, sensor) \
Jean-Francois Moine9d64fdb2008-07-25 08:53:03 -03003011 .driver_info = (BRIDGE_ ## bridge << 16) \
Jean-Francois Moinec6c14332010-12-14 16:15:37 -03003012 | (SENSOR_ ## sensor << 8)
3013#define BSF(bridge, sensor, flags) \
3014 .driver_info = (BRIDGE_ ## bridge << 16) \
3015 | (SENSOR_ ## sensor << 8) \
3016 | (flags)
Jean-François Moine95c967c2011-01-13 05:20:29 -03003017static const struct usb_device_id device_table[] = {
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003018 {USB_DEVICE(0x0458, 0x7025), BS(SN9C120, MI0360)},
3019 {USB_DEVICE(0x0458, 0x702e), BS(SN9C120, OV7660)},
Jean-François Moine3afef852011-01-13 06:39:11 -03003020 {USB_DEVICE(0x045e, 0x00f5), BSF(SN9C105, OV7660, F_PDN_INV)},
3021 {USB_DEVICE(0x045e, 0x00f7), BSF(SN9C105, OV7660, F_PDN_INV)},
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003022 {USB_DEVICE(0x0471, 0x0327), BS(SN9C105, MI0360)},
3023 {USB_DEVICE(0x0471, 0x0328), BS(SN9C105, MI0360)},
3024 {USB_DEVICE(0x0471, 0x0330), BS(SN9C105, MI0360)},
3025 {USB_DEVICE(0x06f8, 0x3004), BS(SN9C105, OV7660)},
3026 {USB_DEVICE(0x06f8, 0x3008), BS(SN9C105, OV7660)},
3027/* {USB_DEVICE(0x0c45, 0x603a), BS(SN9C102P, OV7648)}, */
3028 {USB_DEVICE(0x0c45, 0x6040), BS(SN9C102P, HV7131R)},
3029/* {USB_DEVICE(0x0c45, 0x607a), BS(SN9C102P, OV7648)}, */
3030/* {USB_DEVICE(0x0c45, 0x607b), BS(SN9C102P, OV7660)}, */
3031 {USB_DEVICE(0x0c45, 0x607c), BS(SN9C102P, HV7131R)},
3032/* {USB_DEVICE(0x0c45, 0x607e), BS(SN9C102P, OV7630)}, */
Jean-François Moine3afef852011-01-13 06:39:11 -03003033 {USB_DEVICE(0x0c45, 0x60c0), BSF(SN9C105, MI0360, F_ILLUM)},
Jean-François Moinea067db82010-10-01 07:51:24 -03003034 /* or MT9V111 */
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003035/* {USB_DEVICE(0x0c45, 0x60c2), BS(SN9C105, P1030xC)}, */
3036/* {USB_DEVICE(0x0c45, 0x60c8), BS(SN9C105, OM6802)}, */
3037/* {USB_DEVICE(0x0c45, 0x60cc), BS(SN9C105, HV7131GP)}, */
Warren Bosworth Fockec4f95d82010-05-07 15:40:04 -03003038 {USB_DEVICE(0x0c45, 0x60ce), BS(SN9C105, SP80708)},
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003039 {USB_DEVICE(0x0c45, 0x60ec), BS(SN9C105, MO4000)},
3040/* {USB_DEVICE(0x0c45, 0x60ef), BS(SN9C105, ICM105C)}, */
3041/* {USB_DEVICE(0x0c45, 0x60fa), BS(SN9C105, OV7648)}, */
Jean-François Moine68046752010-05-07 15:35:08 -03003042/* {USB_DEVICE(0x0c45, 0x60f2), BS(SN9C105, OV7660)}, */
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003043 {USB_DEVICE(0x0c45, 0x60fb), BS(SN9C105, OV7660)},
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003044 {USB_DEVICE(0x0c45, 0x60fc), BS(SN9C105, HV7131R)},
3045 {USB_DEVICE(0x0c45, 0x60fe), BS(SN9C105, OV7630)},
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003046 {USB_DEVICE(0x0c45, 0x6100), BS(SN9C120, MI0360)}, /*sn9c128*/
Jean-François Moine860e7f42010-09-13 06:40:17 -03003047 {USB_DEVICE(0x0c45, 0x6102), BS(SN9C120, PO2030N)}, /* /GC0305*/
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003048/* {USB_DEVICE(0x0c45, 0x6108), BS(SN9C120, OM6802)}, */
3049 {USB_DEVICE(0x0c45, 0x610a), BS(SN9C120, OV7648)}, /*sn9c128*/
3050 {USB_DEVICE(0x0c45, 0x610b), BS(SN9C120, OV7660)}, /*sn9c128*/
3051 {USB_DEVICE(0x0c45, 0x610c), BS(SN9C120, HV7131R)}, /*sn9c128*/
3052 {USB_DEVICE(0x0c45, 0x610e), BS(SN9C120, OV7630)}, /*sn9c128*/
3053/* {USB_DEVICE(0x0c45, 0x610f), BS(SN9C120, S5K53BEB)}, */
3054/* {USB_DEVICE(0x0c45, 0x6122), BS(SN9C110, ICM105C)}, */
3055/* {USB_DEVICE(0x0c45, 0x6123), BS(SN9C110, SanyoCCD)}, */
3056 {USB_DEVICE(0x0c45, 0x6128), BS(SN9C120, OM6802)}, /*sn9c325?*/
Jean-Francois Moined2d16e92008-09-03 16:47:23 -03003057/*bw600.inf:*/
Jean-Francois Moineb8c8a5b2009-11-23 06:46:35 -03003058 {USB_DEVICE(0x0c45, 0x612a), BS(SN9C120, OV7648)}, /*sn9c325?*/
Alexander Goncharov2a3b5012010-09-13 06:58:16 -03003059 {USB_DEVICE(0x0c45, 0x612b), BS(SN9C110, ADCM1700)},
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003060 {USB_DEVICE(0x0c45, 0x612c), BS(SN9C110, MO4000)},
3061 {USB_DEVICE(0x0c45, 0x612e), BS(SN9C110, OV7630)},
3062/* {USB_DEVICE(0x0c45, 0x612f), BS(SN9C110, ICM105C)}, */
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003063 {USB_DEVICE(0x0c45, 0x6130), BS(SN9C120, MI0360)},
Jean-François Moinea067db82010-10-01 07:51:24 -03003064 /* or MT9V111 / MI0360B */
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003065/* {USB_DEVICE(0x0c45, 0x6132), BS(SN9C120, OV7670)}, */
3066 {USB_DEVICE(0x0c45, 0x6138), BS(SN9C120, MO4000)},
3067 {USB_DEVICE(0x0c45, 0x613a), BS(SN9C120, OV7648)},
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003068 {USB_DEVICE(0x0c45, 0x613b), BS(SN9C120, OV7660)},
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003069 {USB_DEVICE(0x0c45, 0x613c), BS(SN9C120, HV7131R)},
3070 {USB_DEVICE(0x0c45, 0x613e), BS(SN9C120, OV7630)},
Jean-François Moinead98c0f2010-03-18 05:15:30 -03003071 {USB_DEVICE(0x0c45, 0x6142), BS(SN9C120, PO2030N)}, /*sn9c120b*/
Jean-François Moine68046752010-05-07 15:35:08 -03003072 /* or GC0305 / GC0307 */
Jean-Francois Moined5aa3852009-11-07 06:10:08 -03003073 {USB_DEVICE(0x0c45, 0x6143), BS(SN9C120, SP80708)}, /*sn9c120b*/
3074 {USB_DEVICE(0x0c45, 0x6148), BS(SN9C120, OM6802)}, /*sn9c120b*/
Jean-François Moinea63d6012011-01-13 07:56:00 -03003075 {USB_DEVICE(0x0c45, 0x614a), BSF(SN9C120, ADCM1700, F_ILLUM)},
Hans de Goedee48d38f2011-01-06 16:21:57 -03003076/* {USB_DEVICE(0x0c45, 0x614c), BS(SN9C120, GC0306)}, */ /*sn9c120b*/
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003077 {}
3078};
3079MODULE_DEVICE_TABLE(usb, device_table);
3080
3081/* -- device connect -- */
3082static int sd_probe(struct usb_interface *intf,
3083 const struct usb_device_id *id)
3084{
3085 return gspca_dev_probe(intf, id, &sd_desc, sizeof(struct sd),
3086 THIS_MODULE);
3087}
3088
3089static struct usb_driver sd_driver = {
3090 .name = MODULE_NAME,
3091 .id_table = device_table,
3092 .probe = sd_probe,
3093 .disconnect = gspca_disconnect,
Jean-Francois Moine6a709742008-09-03 16:48:10 -03003094#ifdef CONFIG_PM
3095 .suspend = gspca_suspend,
3096 .resume = gspca_resume,
3097#endif
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003098};
3099
3100/* -- module insert / remove -- */
3101static int __init sd_mod_init(void)
3102{
Jean-François Moine54826432010-09-13 04:53:03 -03003103 return usb_register(&sd_driver);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003104}
3105static void __exit sd_mod_exit(void)
3106{
3107 usb_deregister(&sd_driver);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003108}
3109
3110module_init(sd_mod_init);
3111module_exit(sd_mod_exit);