blob: 146b459b08d575e2eeff52d721c48b6e6aa3f09e [file] [log] [blame]
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001/*
2 * sonix sn9c102 (bayer) library
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03003 *
Jean-François Moine75b79ff2011-03-13 16:07:25 -03004 * Copyright (C) 2009-2011 Jean-François Moine <http://moinejf.free.fr>
5 * Copyright (C) 2003 2004 Michel Xhaard mxhaard@magic.fr
6 * Add Pas106 Stefano Mozzi (C) 2004
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
Hans de Goede93627732008-09-04 16:20:12 -030023/* Some documentation on known sonixb registers:
24
25Reg Use
Hans de Goede0a76cb82011-01-05 13:55:43 -030026sn9c101 / sn9c102:
Hans de Goede93627732008-09-04 16:20:12 -0300270x10 high nibble red gain low nibble blue gain
280x11 low nibble green gain
Hans de Goede0a76cb82011-01-05 13:55:43 -030029sn9c103:
300x05 red gain 0-127
310x06 blue gain 0-127
320x07 green gain 0-127
33all:
340x08-0x0f i2c / 3wire registers
Hans de Goede93627732008-09-04 16:20:12 -0300350x12 hstart
360x13 vstart
370x15 hsize (hsize = register-value * 16)
380x16 vsize (vsize = register-value * 16)
390x17 bit 0 toggle compression quality (according to sn9c102 driver)
400x18 bit 7 enables compression, bit 4-5 set image down scaling:
41 00 scale 1, 01 scale 1/2, 10, scale 1/4
420x19 high-nibble is sensor clock divider, changes exposure on sensors which
43 use a clock generated by the bridge. Some sensors have their own clock.
440x1c auto_exposure area (for avg_lum) startx (startx = register-value * 32)
450x1d auto_exposure area (for avg_lum) starty (starty = register-value * 32)
460x1e auto_exposure area (for avg_lum) stopx (hsize = (0x1e - 0x1c) * 32)
470x1f auto_exposure area (for avg_lum) stopy (vsize = (0x1f - 0x1d) * 32)
48*/
49
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030050#define MODULE_NAME "sonixb"
51
Hans de Goedef65e93d2010-01-31 10:35:15 -030052#include <linux/input.h>
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030053#include "gspca.h"
54
Jean-François Moine75b79ff2011-03-13 16:07:25 -030055MODULE_AUTHOR("Jean-François Moine <http://moinejf.free.fr>");
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030056MODULE_DESCRIPTION("GSPCA/SN9C102 USB Camera Driver");
57MODULE_LICENSE("GPL");
58
Jean-François Moinef51a8ca2011-03-13 15:04:11 -030059/* controls */
60enum e_ctrl {
61 BRIGHTNESS,
62 GAIN,
63 EXPOSURE,
64 AUTOGAIN,
65 FREQ,
66 NCTRLS /* number of controls */
67};
68
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030069/* specific webcam descriptor */
70struct sd {
71 struct gspca_dev gspca_dev; /* !! must be the first item */
Jean-François Moinef51a8ca2011-03-13 15:04:11 -030072
73 struct gspca_ctrl ctrls[NCTRLS];
74
Hans de Goededcef3232008-07-10 10:40:53 -030075 atomic_t avg_lum;
Hans de Goedebf2a2202008-09-04 16:22:56 -030076 int prev_avg_lum;
Hans de Goede26984b02010-02-01 13:18:37 -030077 int exp_too_low_cnt;
78 int exp_too_high_cnt;
Hans de Goede2b3e2842010-12-12 08:55:04 -030079 int header_read;
80 u8 header[12]; /* Header without sof marker */
Hans de Goededcef3232008-07-10 10:40:53 -030081
Hans de Goededcef3232008-07-10 10:40:53 -030082 unsigned char autogain_ignore_frames;
Hans de Goede6af492e2008-07-22 07:09:33 -030083 unsigned char frames_to_drop;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030084
Hans de Goedef45f06b2008-09-03 17:12:21 -030085 __u8 bridge; /* Type of bridge */
86#define BRIDGE_101 0
87#define BRIDGE_102 0 /* We make no difference between 101 and 102 */
88#define BRIDGE_103 1
89
90 __u8 sensor; /* Type of image sensor chip */
Hans de Goede00765f12010-12-12 15:55:03 -030091#define SENSOR_HV7131D 0
92#define SENSOR_HV7131R 1
93#define SENSOR_OV6650 2
94#define SENSOR_OV7630 3
95#define SENSOR_PAS106 4
96#define SENSOR_PAS202 5
97#define SENSOR_TAS5110C 6
98#define SENSOR_TAS5110D 7
99#define SENSOR_TAS5130CXX 8
Hans de Goede6af492e2008-07-22 07:09:33 -0300100 __u8 reg11;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300101};
102
Hans de Goedef45f06b2008-09-03 17:12:21 -0300103typedef const __u8 sensor_init_t[8];
104
105struct sensor_data {
Hans de Goede0a76cb82011-01-05 13:55:43 -0300106 const __u8 *bridge_init;
Hans de Goedef45f06b2008-09-03 17:12:21 -0300107 sensor_init_t *sensor_init;
108 int sensor_init_size;
Hans de Goedef45f06b2008-09-03 17:12:21 -0300109 int flags;
110 unsigned ctrl_dis;
111 __u8 sensor_addr;
112};
113
114/* sensor_data flags */
Jean-Francois Moine5da162e2008-07-26 14:17:23 -0300115#define F_GAIN 0x01 /* has gain */
Hans de Goedee2ad2a52008-09-03 17:12:15 -0300116#define F_SIF 0x02 /* sif or vga */
Hans de Goede26984b02010-02-01 13:18:37 -0300117#define F_COARSE_EXPO 0x04 /* exposure control is coarse */
Hans de Goedec437d652008-09-03 17:12:22 -0300118
119/* priv field of struct v4l2_pix_format flags (do not use low nibble!) */
120#define MODE_RAW 0x10 /* raw bayer mode */
Hans de Goede93627732008-09-04 16:20:12 -0300121#define MODE_REDUCED_SIF 0x20 /* vga mode (320x240 / 160x120) on sif cam */
Hans de Goedef45f06b2008-09-03 17:12:21 -0300122
123/* ctrl_dis helper macros */
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300124#define NO_EXPO ((1 << EXPOSURE) | (1 << AUTOGAIN))
125#define NO_FREQ (1 << FREQ)
126#define NO_BRIGHTNESS (1 << BRIGHTNESS)
Jean-Francois Moine5da162e2008-07-26 14:17:23 -0300127
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300128#define COMP 0xc7 /* 0x87 //0x07 */
129#define COMP1 0xc9 /* 0x89 //0x09 */
130
131#define MCK_INIT 0x63
132#define MCK_INIT1 0x20 /*fixme: Bayer - 0x50 for JPEG ??*/
133
134#define SYS_CLK 0x04
135
Hans de Goede0a76cb82011-01-05 13:55:43 -0300136#define SENS(bridge, sensor, _flags, _ctrl_dis, _sensor_addr) \
Hans de Goedef45f06b2008-09-03 17:12:21 -0300137{ \
Hans de Goede0a76cb82011-01-05 13:55:43 -0300138 .bridge_init = bridge, \
Hans de Goedef45f06b2008-09-03 17:12:21 -0300139 .sensor_init = sensor, \
140 .sensor_init_size = sizeof(sensor), \
Hans de Goedef45f06b2008-09-03 17:12:21 -0300141 .flags = _flags, .ctrl_dis = _ctrl_dis, .sensor_addr = _sensor_addr \
142}
143
Hans de Goededcef3232008-07-10 10:40:53 -0300144/* We calculate the autogain at the end of the transfer of a frame, at this
Hans de Goede26984b02010-02-01 13:18:37 -0300145 moment a frame with the old settings is being captured and transmitted. So
146 if we adjust the gain or exposure we must ignore atleast the next frame for
147 the new settings to come into effect before doing any other adjustments. */
148#define AUTOGAIN_IGNORE_FRAMES 1
Hans de Goededcef3232008-07-10 10:40:53 -0300149
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300150/* V4L2 controls supported by the driver */
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300151static void setbrightness(struct gspca_dev *gspca_dev);
152static void setgain(struct gspca_dev *gspca_dev);
153static void setexposure(struct gspca_dev *gspca_dev);
Hans de Goededcef3232008-07-10 10:40:53 -0300154static int sd_setautogain(struct gspca_dev *gspca_dev, __s32 val);
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300155static void setfreq(struct gspca_dev *gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300156
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300157static const struct ctrl sd_ctrls[NCTRLS] = {
158[BRIGHTNESS] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300159 {
160 .id = V4L2_CID_BRIGHTNESS,
161 .type = V4L2_CTRL_TYPE_INTEGER,
162 .name = "Brightness",
163 .minimum = 0,
164 .maximum = 255,
165 .step = 1,
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300166 .default_value = 127,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300167 },
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300168 .set_control = setbrightness
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300169 },
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300170[GAIN] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300171 {
Hans de Goededcef3232008-07-10 10:40:53 -0300172 .id = V4L2_CID_GAIN,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300173 .type = V4L2_CTRL_TYPE_INTEGER,
Hans de Goededcef3232008-07-10 10:40:53 -0300174 .name = "Gain",
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300175 .minimum = 0,
Hans de Goedead5ef80d2008-07-14 10:11:42 -0300176 .maximum = 255,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300177 .step = 1,
Hans de Goede82e839c2010-02-03 14:37:30 -0300178#define GAIN_KNEE 230
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300179 .default_value = 127,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300180 },
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300181 .set_control = setgain
Hans de Goededcef3232008-07-10 10:40:53 -0300182 },
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300183[EXPOSURE] = {
Hans de Goededcef3232008-07-10 10:40:53 -0300184 {
185 .id = V4L2_CID_EXPOSURE,
186 .type = V4L2_CTRL_TYPE_INTEGER,
187 .name = "Exposure",
Hans de Goededcef3232008-07-10 10:40:53 -0300188 .minimum = 0,
Hans de Goede82e839c2010-02-03 14:37:30 -0300189 .maximum = 1023,
Hans de Goededcef3232008-07-10 10:40:53 -0300190 .step = 1,
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300191 .default_value = 66,
192 /* 33 ms / 30 fps (except on PASXXX) */
193#define EXPOSURE_KNEE 200 /* 100 ms / 10 fps (except on PASXXX) */
Hans de Goededcef3232008-07-10 10:40:53 -0300194 .flags = 0,
195 },
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300196 .set_control = setexposure
Hans de Goededcef3232008-07-10 10:40:53 -0300197 },
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300198/* for coarse exposure */
199#define COARSE_EXPOSURE_MIN 2
200#define COARSE_EXPOSURE_MAX 15
Hans de Goede26984b02010-02-01 13:18:37 -0300201#define COARSE_EXPOSURE_DEF 2 /* 30 fps */
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300202[AUTOGAIN] = {
Hans de Goededcef3232008-07-10 10:40:53 -0300203 {
204 .id = V4L2_CID_AUTOGAIN,
205 .type = V4L2_CTRL_TYPE_BOOLEAN,
206 .name = "Automatic Gain (and Exposure)",
207 .minimum = 0,
208 .maximum = 1,
209 .step = 1,
Andoni Zubimendi51fc8e32008-07-10 11:12:24 -0300210#define AUTOGAIN_DEF 1
211 .default_value = AUTOGAIN_DEF,
Hans de Goedef0baad82011-03-13 16:05:55 -0300212 .flags = V4L2_CTRL_FLAG_UPDATE
Hans de Goededcef3232008-07-10 10:40:53 -0300213 },
214 .set = sd_setautogain,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300215 },
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300216[FREQ] = {
Hans de Goede66f35822008-07-16 10:16:28 -0300217 {
218 .id = V4L2_CID_POWER_LINE_FREQUENCY,
219 .type = V4L2_CTRL_TYPE_MENU,
220 .name = "Light frequency filter",
221 .minimum = 0,
222 .maximum = 2, /* 0: 0, 1: 50Hz, 2:60Hz */
223 .step = 1,
Hans de Goede606f8422010-02-10 06:49:23 -0300224#define FREQ_DEF 0
Hans de Goede66f35822008-07-16 10:16:28 -0300225 .default_value = FREQ_DEF,
226 },
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300227 .set_control = setfreq
Hans de Goede66f35822008-07-16 10:16:28 -0300228 },
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300229};
230
Jean-Francois Moinecc611b82008-12-29 07:49:41 -0300231static const struct v4l2_pix_format vga_mode[] = {
Hans de Goedec437d652008-09-03 17:12:22 -0300232 {160, 120, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
233 .bytesperline = 160,
Mauro Carvalho Chehab2389b362008-08-06 20:13:46 -0300234 .sizeimage = 160 * 120,
Hans de Goedec437d652008-09-03 17:12:22 -0300235 .colorspace = V4L2_COLORSPACE_SRGB,
236 .priv = 2 | MODE_RAW},
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300237 {160, 120, V4L2_PIX_FMT_SN9C10X, V4L2_FIELD_NONE,
238 .bytesperline = 160,
Hans de Goede5c515182008-09-03 17:12:22 -0300239 .sizeimage = 160 * 120 * 5 / 4,
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300240 .colorspace = V4L2_COLORSPACE_SRGB,
241 .priv = 2},
242 {320, 240, V4L2_PIX_FMT_SN9C10X, V4L2_FIELD_NONE,
243 .bytesperline = 320,
Hans de Goede5c515182008-09-03 17:12:22 -0300244 .sizeimage = 320 * 240 * 5 / 4,
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300245 .colorspace = V4L2_COLORSPACE_SRGB,
246 .priv = 1},
247 {640, 480, V4L2_PIX_FMT_SN9C10X, V4L2_FIELD_NONE,
248 .bytesperline = 640,
Hans de Goede5c515182008-09-03 17:12:22 -0300249 .sizeimage = 640 * 480 * 5 / 4,
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300250 .colorspace = V4L2_COLORSPACE_SRGB,
251 .priv = 0},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300252};
Jean-Francois Moinecc611b82008-12-29 07:49:41 -0300253static const struct v4l2_pix_format sif_mode[] = {
Hans de Goede93627732008-09-04 16:20:12 -0300254 {160, 120, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
255 .bytesperline = 160,
256 .sizeimage = 160 * 120,
257 .colorspace = V4L2_COLORSPACE_SRGB,
258 .priv = 1 | MODE_RAW | MODE_REDUCED_SIF},
259 {160, 120, V4L2_PIX_FMT_SN9C10X, V4L2_FIELD_NONE,
260 .bytesperline = 160,
261 .sizeimage = 160 * 120 * 5 / 4,
262 .colorspace = V4L2_COLORSPACE_SRGB,
263 .priv = 1 | MODE_REDUCED_SIF},
Hans de Goedec437d652008-09-03 17:12:22 -0300264 {176, 144, V4L2_PIX_FMT_SBGGR8, V4L2_FIELD_NONE,
265 .bytesperline = 176,
Mauro Carvalho Chehab2389b362008-08-06 20:13:46 -0300266 .sizeimage = 176 * 144,
Hans de Goedec437d652008-09-03 17:12:22 -0300267 .colorspace = V4L2_COLORSPACE_SRGB,
268 .priv = 1 | MODE_RAW},
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300269 {176, 144, V4L2_PIX_FMT_SN9C10X, V4L2_FIELD_NONE,
270 .bytesperline = 176,
Hans de Goede5c515182008-09-03 17:12:22 -0300271 .sizeimage = 176 * 144 * 5 / 4,
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300272 .colorspace = V4L2_COLORSPACE_SRGB,
273 .priv = 1},
Hans de Goede93627732008-09-04 16:20:12 -0300274 {320, 240, V4L2_PIX_FMT_SN9C10X, V4L2_FIELD_NONE,
275 .bytesperline = 320,
276 .sizeimage = 320 * 240 * 5 / 4,
277 .colorspace = V4L2_COLORSPACE_SRGB,
278 .priv = 0 | MODE_REDUCED_SIF},
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300279 {352, 288, V4L2_PIX_FMT_SN9C10X, V4L2_FIELD_NONE,
280 .bytesperline = 352,
Hans de Goede5c515182008-09-03 17:12:22 -0300281 .sizeimage = 352 * 288 * 5 / 4,
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300282 .colorspace = V4L2_COLORSPACE_SRGB,
283 .priv = 0},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300284};
285
Hans de Goede00765f12010-12-12 15:55:03 -0300286static const __u8 initHv7131d[] = {
287 0x04, 0x03, 0x00, 0x04, 0x00, 0x00, 0x00, 0x80, 0x11, 0x00, 0x00, 0x00,
288 0x00, 0x00,
289 0x00, 0x00, 0x00, 0x02, 0x02, 0x00,
290 0x28, 0x1e, 0x60, 0x8e, 0x42,
Hans de Goede00765f12010-12-12 15:55:03 -0300291};
292static const __u8 hv7131d_sensor_init[][8] = {
293 {0xa0, 0x11, 0x01, 0x04, 0x00, 0x00, 0x00, 0x17},
294 {0xa0, 0x11, 0x02, 0x00, 0x00, 0x00, 0x00, 0x17},
295 {0xa0, 0x11, 0x28, 0x00, 0x00, 0x00, 0x00, 0x17},
296 {0xa0, 0x11, 0x30, 0x30, 0x00, 0x00, 0x00, 0x17}, /* reset level */
297 {0xa0, 0x11, 0x34, 0x02, 0x00, 0x00, 0x00, 0x17}, /* pixel bias volt */
298};
299
300static const __u8 initHv7131r[] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300301 0x46, 0x77, 0x00, 0x04, 0x00, 0x00, 0x00, 0x80, 0x11, 0x00, 0x00, 0x00,
302 0x00, 0x00,
Hans de Goedec437d652008-09-03 17:12:22 -0300303 0x00, 0x00, 0x00, 0x02, 0x01, 0x00,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300304 0x28, 0x1e, 0x60, 0x8a, 0x20,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300305};
Hans de Goede00765f12010-12-12 15:55:03 -0300306static const __u8 hv7131r_sensor_init[][8] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300307 {0xc0, 0x11, 0x31, 0x38, 0x2a, 0x2e, 0x00, 0x10},
308 {0xa0, 0x11, 0x01, 0x08, 0x2a, 0x2e, 0x00, 0x10},
309 {0xb0, 0x11, 0x20, 0x00, 0xd0, 0x2e, 0x00, 0x10},
310 {0xc0, 0x11, 0x25, 0x03, 0x0e, 0x28, 0x00, 0x16},
311 {0xa0, 0x11, 0x30, 0x10, 0x0e, 0x28, 0x00, 0x15},
312};
313static const __u8 initOv6650[] = {
314 0x44, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80,
315 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Hans de Goedec437d652008-09-03 17:12:22 -0300316 0x00, 0x01, 0x01, 0x0a, 0x16, 0x12, 0x68, 0x8b,
Hans de Goede0a76cb82011-01-05 13:55:43 -0300317 0x10,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300318};
Jean-François Moine780e3122010-10-19 04:29:10 -0300319static const __u8 ov6650_sensor_init[][8] = {
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200320 /* Bright, contrast, etc are set through SCBB interface.
Jean-François Moine780e3122010-10-19 04:29:10 -0300321 * AVCAP on win2 do not send any data on this controls. */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300322 /* Anyway, some registers appears to alter bright and constrat */
Hans de Goededcef3232008-07-10 10:40:53 -0300323
324 /* Reset sensor */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300325 {0xa0, 0x60, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10},
Hans de Goededcef3232008-07-10 10:40:53 -0300326 /* Set clock register 0x11 low nibble is clock divider */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300327 {0xd0, 0x60, 0x11, 0xc0, 0x1b, 0x18, 0xc1, 0x10},
Hans de Goededcef3232008-07-10 10:40:53 -0300328 /* Next some unknown stuff */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300329 {0xb0, 0x60, 0x15, 0x00, 0x02, 0x18, 0xc1, 0x10},
330/* {0xa0, 0x60, 0x1b, 0x01, 0x02, 0x18, 0xc1, 0x10},
331 * THIS SET GREEN SCREEN
332 * (pixels could be innverted in decode kind of "brg",
333 * but blue wont be there. Avoid this data ... */
334 {0xd0, 0x60, 0x26, 0x01, 0x14, 0xd8, 0xa4, 0x10}, /* format out? */
335 {0xd0, 0x60, 0x26, 0x01, 0x14, 0xd8, 0xa4, 0x10},
Jean-François Moine1d00d6c2010-10-29 13:58:22 -0300336 {0xa0, 0x60, 0x30, 0x3d, 0x0a, 0xd8, 0xa4, 0x10},
Hans de Goede722103e2008-07-17 10:24:47 -0300337 /* Enable rgb brightness control */
338 {0xa0, 0x60, 0x61, 0x08, 0x00, 0x00, 0x00, 0x10},
339 /* HDG: Note windows uses the line below, which sets both register 0x60
340 and 0x61 I believe these registers of the ov6650 are identical as
341 those of the ov7630, because if this is true the windows settings
342 add a bit additional red gain and a lot additional blue gain, which
343 matches my findings that the windows settings make blue much too
344 blue and red a little too red.
345 {0xb0, 0x60, 0x60, 0x66, 0x68, 0xd8, 0xa4, 0x10}, */
Hans de Goededcef3232008-07-10 10:40:53 -0300346 /* Some more unknown stuff */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300347 {0xa0, 0x60, 0x68, 0x04, 0x68, 0xd8, 0xa4, 0x10},
348 {0xd0, 0x60, 0x17, 0x24, 0xd6, 0x04, 0x94, 0x10}, /* Clipreg */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300349};
Hans de Goededcef3232008-07-10 10:40:53 -0300350
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300351static const __u8 initOv7630[] = {
352 0x04, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, /* r01 .. r08 */
353 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* r09 .. r10 */
Hans de Goedec437d652008-09-03 17:12:22 -0300354 0x00, 0x01, 0x01, 0x0a, /* r11 .. r14 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300355 0x28, 0x1e, /* H & V sizes r15 .. r16 */
Andoni Zubimendi51fc8e32008-07-10 11:12:24 -0300356 0x68, 0x8f, MCK_INIT1, /* r17 .. r19 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300357};
Hans de Goede6af492e2008-07-22 07:09:33 -0300358static const __u8 ov7630_sensor_init[][8] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300359 {0xa0, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10},
360 {0xb0, 0x21, 0x01, 0x77, 0x3a, 0x00, 0x00, 0x10},
361/* {0xd0, 0x21, 0x12, 0x7c, 0x01, 0x80, 0x34, 0x10}, jfm */
Hans de Goede4c775902011-01-07 07:29:24 -0300362 {0xd0, 0x21, 0x12, 0x5c, 0x00, 0x80, 0x34, 0x10}, /* jfm */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300363 {0xa0, 0x21, 0x1b, 0x04, 0x00, 0x80, 0x34, 0x10},
364 {0xa0, 0x21, 0x20, 0x44, 0x00, 0x80, 0x34, 0x10},
365 {0xa0, 0x21, 0x23, 0xee, 0x00, 0x80, 0x34, 0x10},
366 {0xd0, 0x21, 0x26, 0xa0, 0x9a, 0xa0, 0x30, 0x10},
367 {0xb0, 0x21, 0x2a, 0x80, 0x00, 0xa0, 0x30, 0x10},
368 {0xb0, 0x21, 0x2f, 0x3d, 0x24, 0xa0, 0x30, 0x10},
369 {0xa0, 0x21, 0x32, 0x86, 0x24, 0xa0, 0x30, 0x10},
Andoni Zubimendi794af522008-07-16 08:33:14 -0300370 {0xb0, 0x21, 0x60, 0xa9, 0x4a, 0xa0, 0x30, 0x10},
371/* {0xb0, 0x21, 0x60, 0xa9, 0x42, 0xa0, 0x30, 0x10}, * jfm */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300372 {0xa0, 0x21, 0x65, 0x00, 0x42, 0xa0, 0x30, 0x10},
373 {0xa0, 0x21, 0x69, 0x38, 0x42, 0xa0, 0x30, 0x10},
374 {0xc0, 0x21, 0x6f, 0x88, 0x0b, 0x00, 0x30, 0x10},
375 {0xc0, 0x21, 0x74, 0x21, 0x8e, 0x00, 0x30, 0x10},
376 {0xa0, 0x21, 0x7d, 0xf7, 0x8e, 0x00, 0x30, 0x10},
377 {0xd0, 0x21, 0x17, 0x1c, 0xbd, 0x06, 0xf6, 0x10},
378};
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300379
380static const __u8 initPas106[] = {
381 0x04, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x81, 0x40, 0x00, 0x00, 0x00,
382 0x00, 0x00,
Hans de Goedec437d652008-09-03 17:12:22 -0300383 0x00, 0x00, 0x00, 0x04, 0x01, 0x00,
Hans de Goedef45f06b2008-09-03 17:12:21 -0300384 0x16, 0x12, 0x24, COMP1, MCK_INIT1,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300385};
386/* compression 0x86 mckinit1 0x2b */
Hans de Goede421763e2010-02-10 18:57:40 -0300387
388/* "Known" PAS106B registers:
389 0x02 clock divider
390 0x03 Variable framerate bits 4-11
391 0x04 Var framerate bits 0-3, one must leave the 4 msb's at 0 !!
392 The variable framerate control must never be set lower then 300,
393 which sets the framerate at 90 / reg02, otherwise vsync is lost.
394 0x05 Shutter Time Line Offset, this can be used as an exposure control:
395 0 = use full frame time, 255 = no exposure at all
396 Note this may never be larger then "var-framerate control" / 2 - 2.
397 When var-framerate control is < 514, no exposure is reached at the max
398 allowed value for the framerate control value, rather then at 255.
399 0x06 Shutter Time Pixel Offset, like reg05 this influences exposure, but
400 only a very little bit, leave at 0xcd
401 0x07 offset sign bit (bit0 1 > negative offset)
402 0x08 offset
403 0x09 Blue Gain
404 0x0a Green1 Gain
405 0x0b Green2 Gain
406 0x0c Red Gain
407 0x0e Global gain
408 0x13 Write 1 to commit settings to sensor
409*/
410
Hans de Goedef45f06b2008-09-03 17:12:21 -0300411static const __u8 pas106_sensor_init[][8] = {
412 /* Pixel Clock Divider 6 */
413 { 0xa1, 0x40, 0x02, 0x04, 0x00, 0x00, 0x00, 0x14 },
414 /* Frame Time MSB (also seen as 0x12) */
415 { 0xa1, 0x40, 0x03, 0x13, 0x00, 0x00, 0x00, 0x14 },
416 /* Frame Time LSB (also seen as 0x05) */
417 { 0xa1, 0x40, 0x04, 0x06, 0x00, 0x00, 0x00, 0x14 },
418 /* Shutter Time Line Offset (also seen as 0x6d) */
419 { 0xa1, 0x40, 0x05, 0x65, 0x00, 0x00, 0x00, 0x14 },
420 /* Shutter Time Pixel Offset (also seen as 0xb1) */
421 { 0xa1, 0x40, 0x06, 0xcd, 0x00, 0x00, 0x00, 0x14 },
422 /* Black Level Subtract Sign (also seen 0x00) */
423 { 0xa1, 0x40, 0x07, 0xc1, 0x00, 0x00, 0x00, 0x14 },
424 /* Black Level Subtract Level (also seen 0x01) */
425 { 0xa1, 0x40, 0x08, 0x06, 0x00, 0x00, 0x00, 0x14 },
426 { 0xa1, 0x40, 0x08, 0x06, 0x00, 0x00, 0x00, 0x14 },
427 /* Color Gain B Pixel 5 a */
428 { 0xa1, 0x40, 0x09, 0x05, 0x00, 0x00, 0x00, 0x14 },
429 /* Color Gain G1 Pixel 1 5 */
430 { 0xa1, 0x40, 0x0a, 0x04, 0x00, 0x00, 0x00, 0x14 },
431 /* Color Gain G2 Pixel 1 0 5 */
432 { 0xa1, 0x40, 0x0b, 0x04, 0x00, 0x00, 0x00, 0x14 },
433 /* Color Gain R Pixel 3 1 */
434 { 0xa1, 0x40, 0x0c, 0x05, 0x00, 0x00, 0x00, 0x14 },
435 /* Color GainH Pixel */
436 { 0xa1, 0x40, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x14 },
437 /* Global Gain */
438 { 0xa1, 0x40, 0x0e, 0x0e, 0x00, 0x00, 0x00, 0x14 },
439 /* Contrast */
440 { 0xa1, 0x40, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x14 },
441 /* H&V synchro polarity */
442 { 0xa1, 0x40, 0x10, 0x06, 0x00, 0x00, 0x00, 0x14 },
443 /* ?default */
444 { 0xa1, 0x40, 0x11, 0x06, 0x00, 0x00, 0x00, 0x14 },
445 /* DAC scale */
446 { 0xa1, 0x40, 0x12, 0x06, 0x00, 0x00, 0x00, 0x14 },
447 /* ?default */
448 { 0xa1, 0x40, 0x14, 0x02, 0x00, 0x00, 0x00, 0x14 },
449 /* Validate Settings */
450 { 0xa1, 0x40, 0x13, 0x01, 0x00, 0x00, 0x00, 0x14 },
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300451};
Hans de Goedef45f06b2008-09-03 17:12:21 -0300452
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300453static const __u8 initPas202[] = {
454 0x44, 0x44, 0x21, 0x30, 0x00, 0x00, 0x00, 0x80, 0x40, 0x00, 0x00, 0x00,
455 0x00, 0x00,
Hans de Goedec437d652008-09-03 17:12:22 -0300456 0x00, 0x00, 0x00, 0x06, 0x03, 0x0a,
Hans de Goede82e839c2010-02-03 14:37:30 -0300457 0x28, 0x1e, 0x20, 0x89, 0x20,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300458};
Hans de Goede82e839c2010-02-03 14:37:30 -0300459
460/* "Known" PAS202BCB registers:
461 0x02 clock divider
462 0x04 Variable framerate bits 6-11 (*)
463 0x05 Var framerate bits 0-5, one must leave the 2 msb's at 0 !!
464 0x07 Blue Gain
465 0x08 Green Gain
466 0x09 Red Gain
467 0x0b offset sign bit (bit0 1 > negative offset)
468 0x0c offset
469 0x0e Unknown image is slightly brighter when bit 0 is 0, if reg0f is 0 too,
470 leave at 1 otherwise we get a jump in our exposure control
471 0x0f Exposure 0-255, 0 = use full frame time, 255 = no exposure at all
472 0x10 Master gain 0 - 31
473 0x11 write 1 to apply changes
474 (*) The variable framerate control must never be set lower then 500
475 which sets the framerate at 30 / reg02, otherwise vsync is lost.
476*/
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300477static const __u8 pas202_sensor_init[][8] = {
Hans de Goede82e839c2010-02-03 14:37:30 -0300478 /* Set the clock divider to 4 -> 30 / 4 = 7.5 fps, we would like
479 to set it lower, but for some reason the bridge starts missing
480 vsync's then */
481 {0xa0, 0x40, 0x02, 0x04, 0x00, 0x00, 0x00, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300482 {0xd0, 0x40, 0x04, 0x07, 0x34, 0x00, 0x09, 0x10},
483 {0xd0, 0x40, 0x08, 0x01, 0x00, 0x00, 0x01, 0x10},
Jean-François Moine1d00d6c2010-10-29 13:58:22 -0300484 {0xd0, 0x40, 0x0c, 0x00, 0x0c, 0x01, 0x32, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300485 {0xd0, 0x40, 0x10, 0x00, 0x01, 0x00, 0x63, 0x10},
486 {0xa0, 0x40, 0x15, 0x70, 0x01, 0x00, 0x63, 0x10},
487 {0xa0, 0x40, 0x18, 0x00, 0x01, 0x00, 0x63, 0x10},
488 {0xa0, 0x40, 0x11, 0x01, 0x01, 0x00, 0x63, 0x10},
489 {0xa0, 0x40, 0x03, 0x56, 0x01, 0x00, 0x63, 0x10},
490 {0xa0, 0x40, 0x11, 0x01, 0x01, 0x00, 0x63, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300491};
492
Hans de Goedeb10af3f2010-01-10 19:31:34 -0300493static const __u8 initTas5110c[] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300494 0x44, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x11, 0x00, 0x00, 0x00,
495 0x00, 0x00,
Hans de Goede4efcfa02010-02-01 07:48:17 -0300496 0x00, 0x00, 0x00, 0x45, 0x09, 0x0a,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300497 0x16, 0x12, 0x60, 0x86, 0x2b,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300498};
Hans de Goedeb10af3f2010-01-10 19:31:34 -0300499/* Same as above, except a different hstart */
500static const __u8 initTas5110d[] = {
501 0x44, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x11, 0x00, 0x00, 0x00,
502 0x00, 0x00,
Hans de Goede4efcfa02010-02-01 07:48:17 -0300503 0x00, 0x00, 0x00, 0x41, 0x09, 0x0a,
Hans de Goedeb10af3f2010-01-10 19:31:34 -0300504 0x16, 0x12, 0x60, 0x86, 0x2b,
Hans de Goedeb10af3f2010-01-10 19:31:34 -0300505};
Hans de Goede0d0d7ef2011-01-06 07:55:20 -0300506/* tas5110c is 3 wire, tas5110d is 2 wire (regular i2c) */
507static const __u8 tas5110c_sensor_init[][8] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300508 {0x30, 0x11, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x10},
509 {0x30, 0x11, 0x02, 0x20, 0xa9, 0x00, 0x00, 0x10},
Hans de Goede0d0d7ef2011-01-06 07:55:20 -0300510};
511/* Known TAS5110D registers
512 * reg02: gain, bit order reversed!! 0 == max gain, 255 == min gain
513 * reg03: bit3: vflip, bit4: ~hflip, bit7: ~gainboost (~ == inverted)
514 * Note: writing reg03 seems to only work when written together with 02
515 */
516static const __u8 tas5110d_sensor_init[][8] = {
517 {0xa0, 0x61, 0x9a, 0xca, 0x00, 0x00, 0x00, 0x17}, /* reset */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300518};
519
520static const __u8 initTas5130[] = {
521 0x04, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x11, 0x00, 0x00, 0x00,
522 0x00, 0x00,
Hans de Goede4efcfa02010-02-01 07:48:17 -0300523 0x00, 0x00, 0x00, 0x68, 0x0c, 0x0a,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300524 0x28, 0x1e, 0x60, COMP, MCK_INIT,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300525};
526static const __u8 tas5130_sensor_init[][8] = {
Jean-François Moine780e3122010-10-19 04:29:10 -0300527/* {0x30, 0x11, 0x00, 0x40, 0x47, 0x00, 0x00, 0x10},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300528 * shutter 0x47 short exposure? */
529 {0x30, 0x11, 0x00, 0x40, 0x01, 0x00, 0x00, 0x10},
530 /* shutter 0x01 long exposure */
531 {0x30, 0x11, 0x02, 0x20, 0x70, 0x00, 0x00, 0x10},
532};
533
Jean-François Moine75b79ff2011-03-13 16:07:25 -0300534static const struct sensor_data sensor_data[] = {
Hans de Goede0a76cb82011-01-05 13:55:43 -0300535SENS(initHv7131d, hv7131d_sensor_init, F_GAIN, NO_BRIGHTNESS|NO_FREQ, 0),
536SENS(initHv7131r, hv7131r_sensor_init, 0, NO_BRIGHTNESS|NO_EXPO|NO_FREQ, 0),
537SENS(initOv6650, ov6650_sensor_init, F_GAIN|F_SIF, 0, 0x60),
538SENS(initOv7630, ov7630_sensor_init, F_GAIN, 0, 0x21),
539SENS(initPas106, pas106_sensor_init, F_GAIN|F_SIF, NO_FREQ, 0),
540SENS(initPas202, pas202_sensor_init, F_GAIN, NO_FREQ, 0),
Hans de Goede0d0d7ef2011-01-06 07:55:20 -0300541SENS(initTas5110c, tas5110c_sensor_init, F_GAIN|F_SIF|F_COARSE_EXPO,
Hans de Goede0a76cb82011-01-05 13:55:43 -0300542 NO_BRIGHTNESS|NO_FREQ, 0),
Hans de Goede0d0d7ef2011-01-06 07:55:20 -0300543SENS(initTas5110d, tas5110d_sensor_init, F_GAIN|F_SIF|F_COARSE_EXPO,
Hans de Goede0a76cb82011-01-05 13:55:43 -0300544 NO_BRIGHTNESS|NO_FREQ, 0),
Hans de Goede4e17cd22011-01-06 10:58:53 -0300545SENS(initTas5130, tas5130_sensor_init, F_GAIN,
546 NO_BRIGHTNESS|NO_EXPO|NO_FREQ, 0),
Hans de Goedef45f06b2008-09-03 17:12:21 -0300547};
548
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300549/* get one byte in gspca_dev->usb_buf */
550static void reg_r(struct gspca_dev *gspca_dev,
551 __u16 value)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300552{
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300553 usb_control_msg(gspca_dev->dev,
554 usb_rcvctrlpipe(gspca_dev->dev, 0),
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300555 0, /* request */
556 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
557 value,
558 0, /* index */
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300559 gspca_dev->usb_buf, 1,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300560 500);
561}
562
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300563static void reg_w(struct gspca_dev *gspca_dev,
564 __u16 value,
565 const __u8 *buffer,
566 int len)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300567{
Jean-Francois Moine335b3f82008-07-30 04:53:02 -0300568#ifdef GSPCA_DEBUG
Jean-Francois Moine8295d992008-09-03 17:12:19 -0300569 if (len > USB_BUF_SZ) {
Hans de Goede0d2a7222008-07-03 08:15:22 -0300570 PDEBUG(D_ERR|D_PACK, "reg_w: buffer overflow");
571 return;
572 }
573#endif
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300574 memcpy(gspca_dev->usb_buf, buffer, len);
575 usb_control_msg(gspca_dev->dev,
576 usb_sndctrlpipe(gspca_dev->dev, 0),
577 0x08, /* request */
578 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
579 value,
580 0, /* index */
581 gspca_dev->usb_buf, len,
582 500);
583}
584
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300585static int i2c_w(struct gspca_dev *gspca_dev, const __u8 *buffer)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300586{
587 int retry = 60;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300588
589 /* is i2c ready */
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300590 reg_w(gspca_dev, 0x08, buffer, 8);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300591 while (retry--) {
592 msleep(10);
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300593 reg_r(gspca_dev, 0x08);
Andoni Zubimendib7474cf2008-07-16 08:40:30 -0300594 if (gspca_dev->usb_buf[0] & 0x04) {
595 if (gspca_dev->usb_buf[0] & 0x08)
596 return -1;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300597 return 0;
Andoni Zubimendib7474cf2008-07-16 08:40:30 -0300598 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300599 }
600 return -1;
601}
602
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300603static void i2c_w_vector(struct gspca_dev *gspca_dev,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300604 const __u8 buffer[][8], int len)
605{
606 for (;;) {
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300607 reg_w(gspca_dev, 0x08, *buffer, 8);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300608 len -= 8;
609 if (len <= 0)
610 break;
611 buffer++;
612 }
613}
614
615static void setbrightness(struct gspca_dev *gspca_dev)
616{
617 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300618
619 switch (sd->sensor) {
Hans de Goedea975a522008-07-16 15:29:11 -0300620 case SENSOR_OV6650:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300621 case SENSOR_OV7630: {
622 __u8 i2cOV[] =
Hans de Goedea975a522008-07-16 15:29:11 -0300623 {0xa0, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x10};
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300624
625 /* change reg 0x06 */
Hans de Goedef45f06b2008-09-03 17:12:21 -0300626 i2cOV[1] = sensor_data[sd->sensor].sensor_addr;
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300627 i2cOV[3] = sd->ctrls[BRIGHTNESS].val;
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300628 if (i2c_w(gspca_dev, i2cOV) < 0)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300629 goto err;
630 break;
631 }
Hans de Goede421763e2010-02-10 18:57:40 -0300632 case SENSOR_PAS106:
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300633 case SENSOR_PAS202: {
Hans de Goede82e839c2010-02-03 14:37:30 -0300634 __u8 i2cpbright[] =
635 {0xb0, 0x40, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x16};
Hans de Goede421763e2010-02-10 18:57:40 -0300636 __u8 i2cpdoit[] =
Hans de Goede82e839c2010-02-03 14:37:30 -0300637 {0xa0, 0x40, 0x11, 0x01, 0x00, 0x00, 0x00, 0x16};
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300638
Hans de Goede421763e2010-02-10 18:57:40 -0300639 /* PAS106 uses reg 7 and 8 instead of b and c */
640 if (sd->sensor == SENSOR_PAS106) {
641 i2cpbright[2] = 7;
642 i2cpdoit[2] = 0x13;
643 }
644
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300645 if (sd->ctrls[BRIGHTNESS].val < 127) {
Hans de Goede82e839c2010-02-03 14:37:30 -0300646 /* change reg 0x0b, signreg */
647 i2cpbright[3] = 0x01;
648 /* set reg 0x0c, offset */
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300649 i2cpbright[4] = 127 - sd->ctrls[BRIGHTNESS].val;
Hans de Goede82e839c2010-02-03 14:37:30 -0300650 } else
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300651 i2cpbright[4] = sd->ctrls[BRIGHTNESS].val - 127;
Hans de Goede82e839c2010-02-03 14:37:30 -0300652
653 if (i2c_w(gspca_dev, i2cpbright) < 0)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300654 goto err;
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300655 if (i2c_w(gspca_dev, i2cpdoit) < 0)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300656 goto err;
657 break;
658 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300659 }
660 return;
661err:
662 PDEBUG(D_ERR, "i2c error brightness");
663}
Hans de Goededcef3232008-07-10 10:40:53 -0300664
665static void setsensorgain(struct gspca_dev *gspca_dev)
666{
667 struct sd *sd = (struct sd *) gspca_dev;
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300668 u8 gain = sd->ctrls[GAIN].val;
Hans de Goededcef3232008-07-10 10:40:53 -0300669
670 switch (sd->sensor) {
Hans de Goede00765f12010-12-12 15:55:03 -0300671 case SENSOR_HV7131D: {
672 __u8 i2c[] =
673 {0xc0, 0x11, 0x31, 0x00, 0x00, 0x00, 0x00, 0x17};
Hans de Goededcef3232008-07-10 10:40:53 -0300674
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300675 i2c[3] = 0x3f - (gain / 4);
676 i2c[4] = 0x3f - (gain / 4);
677 i2c[5] = 0x3f - (gain / 4);
Hans de Goede00765f12010-12-12 15:55:03 -0300678
679 if (i2c_w(gspca_dev, i2c) < 0)
680 goto err;
681 break;
682 }
Hans de Goede4e17cd22011-01-06 10:58:53 -0300683 case SENSOR_TAS5110C:
684 case SENSOR_TAS5130CXX: {
Hans de Goededcef3232008-07-10 10:40:53 -0300685 __u8 i2c[] =
686 {0x30, 0x11, 0x02, 0x20, 0x70, 0x00, 0x00, 0x10};
687
Hans de Goedea975a522008-07-16 15:29:11 -0300688 i2c[4] = 255 - gain;
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300689 if (i2c_w(gspca_dev, i2c) < 0)
Hans de Goededcef3232008-07-10 10:40:53 -0300690 goto err;
Andoni Zubimendi51fc8e32008-07-10 11:12:24 -0300691 break;
692 }
Hans de Goede0d0d7ef2011-01-06 07:55:20 -0300693 case SENSOR_TAS5110D: {
694 __u8 i2c[] = {
695 0xb0, 0x61, 0x02, 0x00, 0x10, 0x00, 0x00, 0x17 };
696 gain = 255 - gain;
697 /* The bits in the register are the wrong way around!! */
698 i2c[3] |= (gain & 0x80) >> 7;
699 i2c[3] |= (gain & 0x40) >> 5;
700 i2c[3] |= (gain & 0x20) >> 3;
701 i2c[3] |= (gain & 0x10) >> 1;
702 i2c[3] |= (gain & 0x08) << 1;
703 i2c[3] |= (gain & 0x04) << 3;
704 i2c[3] |= (gain & 0x02) << 5;
705 i2c[3] |= (gain & 0x01) << 7;
706 if (i2c_w(gspca_dev, i2c) < 0)
707 goto err;
708 break;
709 }
Hans de Goedead5ef80d2008-07-14 10:11:42 -0300710
Hans de Goedea975a522008-07-16 15:29:11 -0300711 case SENSOR_OV6650:
712 gain >>= 1;
713 /* fall thru */
Hans de Goede6af492e2008-07-22 07:09:33 -0300714 case SENSOR_OV7630: {
Hans de Goedea975a522008-07-16 15:29:11 -0300715 __u8 i2c[] = {0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10};
Andoni Zubimendi794af522008-07-16 08:33:14 -0300716
Hans de Goedef45f06b2008-09-03 17:12:21 -0300717 i2c[1] = sensor_data[sd->sensor].sensor_addr;
Hans de Goedea975a522008-07-16 15:29:11 -0300718 i2c[3] = gain >> 2;
Andoni Zubimendi794af522008-07-16 08:33:14 -0300719 if (i2c_w(gspca_dev, i2c) < 0)
720 goto err;
721 break;
722 }
Hans de Goede421763e2010-02-10 18:57:40 -0300723 case SENSOR_PAS106:
Hans de Goede82e839c2010-02-03 14:37:30 -0300724 case SENSOR_PAS202: {
725 __u8 i2cpgain[] =
Hans de Goede421763e2010-02-10 18:57:40 -0300726 {0xa0, 0x40, 0x10, 0x00, 0x00, 0x00, 0x00, 0x15};
Hans de Goede82e839c2010-02-03 14:37:30 -0300727 __u8 i2cpcolorgain[] =
728 {0xc0, 0x40, 0x07, 0x00, 0x00, 0x00, 0x00, 0x15};
Hans de Goede421763e2010-02-10 18:57:40 -0300729 __u8 i2cpdoit[] =
730 {0xa0, 0x40, 0x11, 0x01, 0x00, 0x00, 0x00, 0x16};
731
732 /* PAS106 uses different regs (and has split green gains) */
733 if (sd->sensor == SENSOR_PAS106) {
734 i2cpgain[2] = 0x0e;
735 i2cpcolorgain[0] = 0xd0;
736 i2cpcolorgain[2] = 0x09;
737 i2cpdoit[2] = 0x13;
738 }
Hans de Goede82e839c2010-02-03 14:37:30 -0300739
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300740 i2cpgain[3] = gain >> 3;
741 i2cpcolorgain[3] = gain >> 4;
742 i2cpcolorgain[4] = gain >> 4;
743 i2cpcolorgain[5] = gain >> 4;
744 i2cpcolorgain[6] = gain >> 4;
Hans de Goede82e839c2010-02-03 14:37:30 -0300745
746 if (i2c_w(gspca_dev, i2cpgain) < 0)
747 goto err;
748 if (i2c_w(gspca_dev, i2cpcolorgain) < 0)
749 goto err;
750 if (i2c_w(gspca_dev, i2cpdoit) < 0)
751 goto err;
752 break;
753 }
Hans de Goededcef3232008-07-10 10:40:53 -0300754 }
755 return;
756err:
757 PDEBUG(D_ERR, "i2c error gain");
758}
759
760static void setgain(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300761{
762 struct sd *sd = (struct sd *) gspca_dev;
763 __u8 gain;
Hans de Goede0a76cb82011-01-05 13:55:43 -0300764 __u8 buf[3] = { 0, 0, 0 };
Hans de Goede4efcfa02010-02-01 07:48:17 -0300765
766 if (sensor_data[sd->sensor].flags & F_GAIN) {
767 /* Use the sensor gain to do the actual gain */
768 setsensorgain(gspca_dev);
769 return;
770 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300771
Hans de Goede0a76cb82011-01-05 13:55:43 -0300772 if (sd->bridge == BRIDGE_103) {
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300773 gain = sd->ctrls[GAIN].val >> 1;
Hans de Goede0a76cb82011-01-05 13:55:43 -0300774 buf[0] = gain; /* Red */
775 buf[1] = gain; /* Green */
776 buf[2] = gain; /* Blue */
777 reg_w(gspca_dev, 0x05, buf, 3);
778 } else {
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300779 gain = sd->ctrls[GAIN].val >> 4;
Hans de Goede0a76cb82011-01-05 13:55:43 -0300780 buf[0] = gain << 4 | gain; /* Red and blue */
781 buf[1] = gain; /* Green */
782 reg_w(gspca_dev, 0x10, buf, 2);
783 }
Hans de Goededcef3232008-07-10 10:40:53 -0300784}
785
786static void setexposure(struct gspca_dev *gspca_dev)
787{
788 struct sd *sd = (struct sd *) gspca_dev;
Hans de Goededcef3232008-07-10 10:40:53 -0300789
790 switch (sd->sensor) {
Hans de Goede00765f12010-12-12 15:55:03 -0300791 case SENSOR_HV7131D: {
792 /* Note the datasheet wrongly says line mode exposure uses reg
793 0x26 and 0x27, testing has shown 0x25 + 0x26 */
794 __u8 i2c[] = {0xc0, 0x11, 0x25, 0x00, 0x00, 0x00, 0x00, 0x17};
795 /* The HV7131D's exposure goes from 0 - 65535, we scale our
796 exposure of 0-1023 to 0-6138. There are 2 reasons for this:
797 1) This puts our exposure knee of 200 at approx the point
798 where the framerate starts dropping
799 2) At 6138 the framerate has already dropped to 2 fps,
800 going any lower makes little sense */
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300801 u16 reg = sd->ctrls[EXPOSURE].val * 6;
802
Hans de Goede00765f12010-12-12 15:55:03 -0300803 i2c[3] = reg >> 8;
804 i2c[4] = reg & 0xff;
805 if (i2c_w(gspca_dev, i2c) != 0)
806 goto err;
807 break;
808 }
Hans de Goedeb10af3f2010-01-10 19:31:34 -0300809 case SENSOR_TAS5110C:
810 case SENSOR_TAS5110D: {
Hans de Goededcef3232008-07-10 10:40:53 -0300811 /* register 19's high nibble contains the sn9c10x clock divider
812 The high nibble configures the no fps according to the
813 formula: 60 / high_nibble. With a maximum of 30 fps */
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300814 u8 reg = sd->ctrls[EXPOSURE].val;
815
Hans de Goededcef3232008-07-10 10:40:53 -0300816 reg = (reg << 4) | 0x0b;
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300817 reg_w(gspca_dev, 0x19, &reg, 1);
Andoni Zubimendi51fc8e32008-07-10 11:12:24 -0300818 break;
819 }
Hans de Goedea975a522008-07-16 15:29:11 -0300820 case SENSOR_OV6650:
Hans de Goede6af492e2008-07-22 07:09:33 -0300821 case SENSOR_OV7630: {
Hans de Goedea975a522008-07-16 15:29:11 -0300822 /* The ov6650 / ov7630 have 2 registers which both influence
823 exposure, register 11, whose low nibble sets the nr off fps
Hans de Goedef4d52022008-07-15 09:36:42 -0300824 according to: fps = 30 / (low_nibble + 1)
825
826 The fps configures the maximum exposure setting, but it is
827 possible to use less exposure then what the fps maximum
828 allows by setting register 10. register 10 configures the
829 actual exposure as quotient of the full exposure, with 0
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300830 being no exposure at all (not very useful) and reg10_max
Hans de Goedef4d52022008-07-15 09:36:42 -0300831 being max exposure possible at that framerate.
832
833 The code maps our 0 - 510 ms exposure ctrl to these 2
834 registers, trying to keep fps as high as possible.
835 */
Hans de Goede6af492e2008-07-22 07:09:33 -0300836 __u8 i2c[] = {0xb0, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10};
837 int reg10, reg11, reg10_max;
838
Hans de Goede66f35822008-07-16 10:16:28 -0300839 /* ov6645 datasheet says reg10_max is 9a, but that uses
840 tline * 2 * reg10 as formula for calculating texpo, the
841 ov6650 probably uses the same formula as the 7730 which uses
842 tline * 4 * reg10, which explains why the reg10max we've
843 found experimentally for the ov6650 is exactly half that of
Hans de Goedea975a522008-07-16 15:29:11 -0300844 the ov6645. The ov7630 datasheet says the max is 0x41. */
Hans de Goede6af492e2008-07-22 07:09:33 -0300845 if (sd->sensor == SENSOR_OV6650) {
846 reg10_max = 0x4d;
847 i2c[4] = 0xc0; /* OV6650 needs non default vsync pol */
848 } else
849 reg10_max = 0x41;
Hans de Goedef4d52022008-07-15 09:36:42 -0300850
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300851 reg11 = (15 * sd->ctrls[EXPOSURE].val + 999) / 1000;
Hans de Goedef4d52022008-07-15 09:36:42 -0300852 if (reg11 < 1)
853 reg11 = 1;
854 else if (reg11 > 16)
855 reg11 = 16;
856
Hans de Goede10bb7532010-02-04 06:10:55 -0300857 /* In 640x480, if the reg11 has less than 4, the image is
858 unstable (the bridge goes into a higher compression mode
859 which we have not reverse engineered yet). */
860 if (gspca_dev->width == 640 && reg11 < 4)
861 reg11 = 4;
Hans de Goedee2ad2a52008-09-03 17:12:15 -0300862
Hans de Goedef4d52022008-07-15 09:36:42 -0300863 /* frame exposure time in ms = 1000 * reg11 / 30 ->
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300864 reg10 = (sd->ctrls[EXPOSURE].val / 2) * reg10_max
865 / (1000 * reg11 / 30) */
866 reg10 = (sd->ctrls[EXPOSURE].val * 15 * reg10_max)
867 / (1000 * reg11);
Hans de Goedea975a522008-07-16 15:29:11 -0300868
869 /* Don't allow this to get below 10 when using autogain, the
870 steps become very large (relatively) when below 10 causing
871 the image to oscilate from much too dark, to much too bright
872 and back again. */
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300873 if (sd->ctrls[AUTOGAIN].val && reg10 < 10)
Hans de Goedea975a522008-07-16 15:29:11 -0300874 reg10 = 10;
Hans de Goedef4d52022008-07-15 09:36:42 -0300875 else if (reg10 > reg10_max)
876 reg10 = reg10_max;
877
878 /* Write reg 10 and reg11 low nibble */
Hans de Goedef45f06b2008-09-03 17:12:21 -0300879 i2c[1] = sensor_data[sd->sensor].sensor_addr;
Andoni Zubimendi794af522008-07-16 08:33:14 -0300880 i2c[3] = reg10;
881 i2c[4] |= reg11 - 1;
Hans de Goede6af492e2008-07-22 07:09:33 -0300882
883 /* If register 11 didn't change, don't change it */
Jean-François Moine780e3122010-10-19 04:29:10 -0300884 if (sd->reg11 == reg11)
Hans de Goede6af492e2008-07-22 07:09:33 -0300885 i2c[0] = 0xa0;
886
887 if (i2c_w(gspca_dev, i2c) == 0)
888 sd->reg11 = reg11;
889 else
Hans de Goede82e839c2010-02-03 14:37:30 -0300890 goto err;
891 break;
892 }
893 case SENSOR_PAS202: {
894 __u8 i2cpframerate[] =
895 {0xb0, 0x40, 0x04, 0x00, 0x00, 0x00, 0x00, 0x16};
896 __u8 i2cpexpo[] =
897 {0xa0, 0x40, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x16};
898 const __u8 i2cpdoit[] =
899 {0xa0, 0x40, 0x11, 0x01, 0x00, 0x00, 0x00, 0x16};
900 int framerate_ctrl;
901
902 /* The exposure knee for the autogain algorithm is 200
903 (100 ms / 10 fps on other sensors), for values below this
904 use the control for setting the partial frame expose time,
905 above that use variable framerate. This way we run at max
906 framerate (640x480@7.5 fps, 320x240@10fps) until the knee
907 is reached. Using the variable framerate control above 200
908 is better then playing around with both clockdiv + partial
909 frame exposure times (like we are doing with the ov chips),
910 as that sometimes leads to jumps in the exposure control,
911 which are bad for auto exposure. */
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300912 if (sd->ctrls[EXPOSURE].val < 200) {
913 i2cpexpo[3] = 255 - (sd->ctrls[EXPOSURE].val * 255)
914 / 200;
Hans de Goede82e839c2010-02-03 14:37:30 -0300915 framerate_ctrl = 500;
916 } else {
917 /* The PAS202's exposure control goes from 0 - 4095,
918 but anything below 500 causes vsync issues, so scale
919 our 200-1023 to 500-4095 */
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300920 framerate_ctrl = (sd->ctrls[EXPOSURE].val - 200)
921 * 1000 / 229 + 500;
Hans de Goede82e839c2010-02-03 14:37:30 -0300922 }
923
924 i2cpframerate[3] = framerate_ctrl >> 6;
925 i2cpframerate[4] = framerate_ctrl & 0x3f;
926 if (i2c_w(gspca_dev, i2cpframerate) < 0)
927 goto err;
928 if (i2c_w(gspca_dev, i2cpexpo) < 0)
929 goto err;
930 if (i2c_w(gspca_dev, i2cpdoit) < 0)
931 goto err;
Andoni Zubimendi794af522008-07-16 08:33:14 -0300932 break;
933 }
Hans de Goede421763e2010-02-10 18:57:40 -0300934 case SENSOR_PAS106: {
935 __u8 i2cpframerate[] =
936 {0xb1, 0x40, 0x03, 0x00, 0x00, 0x00, 0x00, 0x14};
937 __u8 i2cpexpo[] =
938 {0xa1, 0x40, 0x05, 0x00, 0x00, 0x00, 0x00, 0x14};
939 const __u8 i2cpdoit[] =
940 {0xa1, 0x40, 0x13, 0x01, 0x00, 0x00, 0x00, 0x14};
941 int framerate_ctrl;
942
943 /* For values below 150 use partial frame exposure, above
944 that use framerate ctrl */
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300945 if (sd->ctrls[EXPOSURE].val < 150) {
946 i2cpexpo[3] = 150 - sd->ctrls[EXPOSURE].val;
Hans de Goede421763e2010-02-10 18:57:40 -0300947 framerate_ctrl = 300;
948 } else {
949 /* The PAS106's exposure control goes from 0 - 4095,
950 but anything below 300 causes vsync issues, so scale
951 our 150-1023 to 300-4095 */
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300952 framerate_ctrl = (sd->ctrls[EXPOSURE].val - 150)
953 * 1000 / 230 + 300;
Hans de Goede421763e2010-02-10 18:57:40 -0300954 }
955
956 i2cpframerate[3] = framerate_ctrl >> 4;
957 i2cpframerate[4] = framerate_ctrl & 0x0f;
958 if (i2c_w(gspca_dev, i2cpframerate) < 0)
959 goto err;
960 if (i2c_w(gspca_dev, i2cpexpo) < 0)
961 goto err;
962 if (i2c_w(gspca_dev, i2cpdoit) < 0)
963 goto err;
964 break;
965 }
Hans de Goededcef3232008-07-10 10:40:53 -0300966 }
Hans de Goede82e839c2010-02-03 14:37:30 -0300967 return;
968err:
969 PDEBUG(D_ERR, "i2c error exposure");
Hans de Goededcef3232008-07-10 10:40:53 -0300970}
971
Hans de Goede66f35822008-07-16 10:16:28 -0300972static void setfreq(struct gspca_dev *gspca_dev)
973{
974 struct sd *sd = (struct sd *) gspca_dev;
975
976 switch (sd->sensor) {
Andoni Zubimendid87616f2008-07-17 05:35:52 -0300977 case SENSOR_OV6650:
Hans de Goede6af492e2008-07-22 07:09:33 -0300978 case SENSOR_OV7630: {
Hans de Goede66f35822008-07-16 10:16:28 -0300979 /* Framerate adjust register for artificial light 50 hz flicker
Hans de Goede6af492e2008-07-22 07:09:33 -0300980 compensation, for the ov6650 this is identical to ov6630
981 0x2b register, see ov6630 datasheet.
982 0x4f / 0x8a -> (30 fps -> 25 fps), 0x00 -> no adjustment */
Andoni Zubimendid87616f2008-07-17 05:35:52 -0300983 __u8 i2c[] = {0xa0, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10};
Jean-François Moinef51a8ca2011-03-13 15:04:11 -0300984 switch (sd->ctrls[FREQ].val) {
Hans de Goede66f35822008-07-16 10:16:28 -0300985 default:
986/* case 0: * no filter*/
987/* case 2: * 60 hz */
988 i2c[3] = 0;
989 break;
990 case 1: /* 50 hz */
Hans de Goede722103e2008-07-17 10:24:47 -0300991 i2c[3] = (sd->sensor == SENSOR_OV6650)
992 ? 0x4f : 0x8a;
Hans de Goede66f35822008-07-16 10:16:28 -0300993 break;
994 }
Hans de Goedef45f06b2008-09-03 17:12:21 -0300995 i2c[1] = sensor_data[sd->sensor].sensor_addr;
Hans de Goede66f35822008-07-16 10:16:28 -0300996 if (i2c_w(gspca_dev, i2c) < 0)
997 PDEBUG(D_ERR, "i2c error setfreq");
998 break;
999 }
1000 }
1001}
1002
Jean-François Moinef51a8ca2011-03-13 15:04:11 -03001003#include "autogain_functions.h"
Hans de Goede26984b02010-02-01 13:18:37 -03001004
Hans de Goededcef3232008-07-10 10:40:53 -03001005static void do_autogain(struct gspca_dev *gspca_dev)
1006{
Hans de Goede26984b02010-02-01 13:18:37 -03001007 int deadzone, desired_avg_lum, result;
Hans de Goededcef3232008-07-10 10:40:53 -03001008 struct sd *sd = (struct sd *) gspca_dev;
1009 int avg_lum = atomic_read(&sd->avg_lum);
1010
Hans de Goedef0baad82011-03-13 16:05:55 -03001011 if ((gspca_dev->ctrl_dis & (1 << AUTOGAIN)) ||
1012 avg_lum == -1 || !sd->ctrls[AUTOGAIN].val)
Hans de Goededcef3232008-07-10 10:40:53 -03001013 return;
1014
Hans de Goede26984b02010-02-01 13:18:37 -03001015 if (sd->autogain_ignore_frames > 0) {
1016 sd->autogain_ignore_frames--;
1017 return;
1018 }
1019
Hans de Goede5017c7b2008-10-22 04:59:29 -03001020 /* SIF / VGA sensors have a different autoexposure area and thus
1021 different avg_lum values for the same picture brightness */
1022 if (sensor_data[sd->sensor].flags & F_SIF) {
Hans de Goede26984b02010-02-01 13:18:37 -03001023 deadzone = 500;
1024 /* SIF sensors tend to overexpose, so keep this small */
1025 desired_avg_lum = 5000;
Hans de Goede5017c7b2008-10-22 04:59:29 -03001026 } else {
Hans de Goede26984b02010-02-01 13:18:37 -03001027 deadzone = 1500;
Hans de Goedef913c002011-01-05 16:01:16 -03001028 desired_avg_lum = 13000;
Hans de Goede5017c7b2008-10-22 04:59:29 -03001029 }
1030
Hans de Goede26984b02010-02-01 13:18:37 -03001031 if (sensor_data[sd->sensor].flags & F_COARSE_EXPO)
Jean-François Moinef51a8ca2011-03-13 15:04:11 -03001032 result = coarse_grained_expo_autogain(gspca_dev, avg_lum,
1033 sd->ctrls[BRIGHTNESS].val
1034 * desired_avg_lum / 127,
Hans de Goede26984b02010-02-01 13:18:37 -03001035 deadzone);
1036 else
Jean-François Moinef51a8ca2011-03-13 15:04:11 -03001037 result = auto_gain_n_exposure(gspca_dev, avg_lum,
1038 sd->ctrls[BRIGHTNESS].val
1039 * desired_avg_lum / 127,
Hans de Goede26984b02010-02-01 13:18:37 -03001040 deadzone, GAIN_KNEE, EXPOSURE_KNEE);
1041
1042 if (result) {
Jean-Francois Moine1c44d812008-11-10 05:56:55 -03001043 PDEBUG(D_FRAM, "autogain: gain changed: gain: %d expo: %d",
Jean-François Moinef51a8ca2011-03-13 15:04:11 -03001044 (int) sd->ctrls[GAIN].val,
1045 (int) sd->ctrls[EXPOSURE].val);
Hans de Goededcef3232008-07-10 10:40:53 -03001046 sd->autogain_ignore_frames = AUTOGAIN_IGNORE_FRAMES;
Hans de Goedea975a522008-07-16 15:29:11 -03001047 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001048}
1049
1050/* this function is called at probe time */
1051static int sd_config(struct gspca_dev *gspca_dev,
1052 const struct usb_device_id *id)
1053{
1054 struct sd *sd = (struct sd *) gspca_dev;
1055 struct cam *cam;
Hans de Goede65f33392008-09-03 17:12:15 -03001056
1057 reg_r(gspca_dev, 0x00);
1058 if (gspca_dev->usb_buf[0] != 0x10)
1059 return -ENODEV;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001060
Jean-Francois Moine5da162e2008-07-26 14:17:23 -03001061 /* copy the webcam info from the device id */
Hans de Goedef45f06b2008-09-03 17:12:21 -03001062 sd->sensor = id->driver_info >> 8;
1063 sd->bridge = id->driver_info & 0xff;
Jean-François Moinef51a8ca2011-03-13 15:04:11 -03001064
Hans de Goedef45f06b2008-09-03 17:12:21 -03001065 gspca_dev->ctrl_dis = sensor_data[sd->sensor].ctrl_dis;
Hans de Goedef0baad82011-03-13 16:05:55 -03001066#if AUTOGAIN_DEF
1067 if (!(gspca_dev->ctrl_dis & (1 << AUTOGAIN)))
1068 gspca_dev->ctrl_inac = (1 << GAIN) | (1 << EXPOSURE);
1069#endif
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001070
1071 cam = &gspca_dev->cam;
Jean-François Moinef51a8ca2011-03-13 15:04:11 -03001072 cam->ctrls = sd->ctrls;
Hans de Goedef45f06b2008-09-03 17:12:21 -03001073 if (!(sensor_data[sd->sensor].flags & F_SIF)) {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001074 cam->cam_mode = vga_mode;
Andoni Zubimendi51fc8e32008-07-10 11:12:24 -03001075 cam->nmodes = ARRAY_SIZE(vga_mode);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001076 } else {
1077 cam->cam_mode = sif_mode;
Andoni Zubimendi51fc8e32008-07-10 11:12:24 -03001078 cam->nmodes = ARRAY_SIZE(sif_mode);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001079 }
Jean-Francois Moine49cb6b02009-04-25 13:29:01 -03001080 cam->npkt = 36; /* 36 packets per ISOC message */
1081
Hans de Goede26984b02010-02-01 13:18:37 -03001082 if (sensor_data[sd->sensor].flags & F_COARSE_EXPO) {
Jean-François Moinef51a8ca2011-03-13 15:04:11 -03001083 sd->ctrls[EXPOSURE].min = COARSE_EXPOSURE_MIN;
1084 sd->ctrls[EXPOSURE].max = COARSE_EXPOSURE_MAX;
1085 sd->ctrls[EXPOSURE].def = COARSE_EXPOSURE_DEF;
Hans de Goede26984b02010-02-01 13:18:37 -03001086 }
Hans de Goede6af492e2008-07-22 07:09:33 -03001087
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001088 return 0;
1089}
1090
Jean-Francois Moine012d6b02008-09-03 17:12:16 -03001091/* this function is called at probe and resume time */
1092static int sd_init(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001093{
Hans de Goede271315a2008-09-03 17:12:19 -03001094 const __u8 stop = 0x09; /* Disable stream turn of LED */
1095
1096 reg_w(gspca_dev, 0x01, &stop, 1);
1097
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001098 return 0;
1099}
1100
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001101/* -- start the camera -- */
Jean-Francois Moine72ab97c2008-09-20 06:39:08 -03001102static int sd_start(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001103{
1104 struct sd *sd = (struct sd *) gspca_dev;
Hans de Goede93627732008-09-04 16:20:12 -03001105 struct cam *cam = &gspca_dev->cam;
Hans de Goede0a76cb82011-01-05 13:55:43 -03001106 int i, mode;
1107 __u8 regs[0x31];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001108
Hans de Goede93627732008-09-04 16:20:12 -03001109 mode = cam->cam_mode[gspca_dev->curr_mode].priv & 0x07;
Hans de Goede0a76cb82011-01-05 13:55:43 -03001110 /* Copy registers 0x01 - 0x19 from the template */
1111 memcpy(&regs[0x01], sensor_data[sd->sensor].bridge_init, 0x19);
1112 /* Set the mode */
1113 regs[0x18] |= mode << 4;
1114
1115 /* Set bridge gain to 1.0 */
1116 if (sd->bridge == BRIDGE_103) {
1117 regs[0x05] = 0x20; /* Red */
1118 regs[0x06] = 0x20; /* Green */
1119 regs[0x07] = 0x20; /* Blue */
1120 } else {
1121 regs[0x10] = 0x00; /* Red and blue */
1122 regs[0x11] = 0x00; /* Green */
1123 }
1124
1125 /* Setup pixel numbers and auto exposure window */
1126 if (sensor_data[sd->sensor].flags & F_SIF) {
1127 regs[0x1a] = 0x14; /* HO_SIZE 640, makes no sense */
1128 regs[0x1b] = 0x0a; /* VO_SIZE 320, makes no sense */
1129 regs[0x1c] = 0x02; /* AE H-start 64 */
1130 regs[0x1d] = 0x02; /* AE V-start 64 */
1131 regs[0x1e] = 0x09; /* AE H-end 288 */
1132 regs[0x1f] = 0x07; /* AE V-end 224 */
1133 } else {
1134 regs[0x1a] = 0x1d; /* HO_SIZE 960, makes no sense */
1135 regs[0x1b] = 0x10; /* VO_SIZE 512, makes no sense */
Hans de Goedef913c002011-01-05 16:01:16 -03001136 regs[0x1c] = 0x05; /* AE H-start 160 */
Hans de Goede0a76cb82011-01-05 13:55:43 -03001137 regs[0x1d] = 0x03; /* AE V-start 96 */
1138 regs[0x1e] = 0x0f; /* AE H-end 480 */
1139 regs[0x1f] = 0x0c; /* AE V-end 384 */
1140 }
1141
1142 /* Setup the gamma table (only used with the sn9c103 bridge) */
1143 for (i = 0; i < 16; i++)
1144 regs[0x20 + i] = i * 16;
1145 regs[0x20 + i] = 255;
1146
1147 /* Special cases where some regs depend on mode or bridge */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001148 switch (sd->sensor) {
Hans de Goedef45f06b2008-09-03 17:12:21 -03001149 case SENSOR_TAS5130CXX:
Hans de Goede0a76cb82011-01-05 13:55:43 -03001150 /* FIXME / TESTME
1151 probably not mode specific at all most likely the upper
Hans de Goedef45f06b2008-09-03 17:12:21 -03001152 nibble of 0x19 is exposure (clock divider) just as with
1153 the tas5110, we need someone to test this. */
Hans de Goede0a76cb82011-01-05 13:55:43 -03001154 regs[0x19] = mode ? 0x23 : 0x43;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001155 break;
Hans de Goede0a76cb82011-01-05 13:55:43 -03001156 case SENSOR_OV7630:
1157 /* FIXME / TESTME for some reason with the 101/102 bridge the
1158 clock is set to 12 Mhz (reg1 == 0x04), rather then 24.
1159 Also the hstart needs to go from 1 to 2 when using a 103,
1160 which is likely related. This does not seem right. */
1161 if (sd->bridge == BRIDGE_103) {
1162 regs[0x01] = 0x44; /* Select 24 Mhz clock */
1163 regs[0x12] = 0x02; /* Set hstart to 2 */
1164 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001165 }
Hans de Goedec437d652008-09-03 17:12:22 -03001166 /* Disable compression when the raw bayer format has been selected */
Hans de Goede93627732008-09-04 16:20:12 -03001167 if (cam->cam_mode[gspca_dev->curr_mode].priv & MODE_RAW)
Hans de Goede0a76cb82011-01-05 13:55:43 -03001168 regs[0x18] &= ~0x80;
Hans de Goede93627732008-09-04 16:20:12 -03001169
1170 /* Vga mode emulation on SIF sensor? */
1171 if (cam->cam_mode[gspca_dev->curr_mode].priv & MODE_REDUCED_SIF) {
Hans de Goede0a76cb82011-01-05 13:55:43 -03001172 regs[0x12] += 16; /* hstart adjust */
1173 regs[0x13] += 24; /* vstart adjust */
1174 regs[0x15] = 320 / 16; /* hsize */
1175 regs[0x16] = 240 / 16; /* vsize */
Hans de Goede93627732008-09-04 16:20:12 -03001176 }
Hans de Goede6af492e2008-07-22 07:09:33 -03001177
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001178 /* reg 0x01 bit 2 video transfert on */
Hans de Goede0a76cb82011-01-05 13:55:43 -03001179 reg_w(gspca_dev, 0x01, &regs[0x01], 1);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001180 /* reg 0x17 SensorClk enable inv Clk 0x60 */
Hans de Goede0a76cb82011-01-05 13:55:43 -03001181 reg_w(gspca_dev, 0x17, &regs[0x17], 1);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001182 /* Set the registers from the template */
Hans de Goede0a76cb82011-01-05 13:55:43 -03001183 reg_w(gspca_dev, 0x01, &regs[0x01],
1184 (sd->bridge == BRIDGE_103) ? 0x30 : 0x1f);
Hans de Goedef45f06b2008-09-03 17:12:21 -03001185
1186 /* Init the sensor */
1187 i2c_w_vector(gspca_dev, sensor_data[sd->sensor].sensor_init,
1188 sensor_data[sd->sensor].sensor_init_size);
Hans de Goedef45f06b2008-09-03 17:12:21 -03001189
Hans de Goede0a76cb82011-01-05 13:55:43 -03001190 /* Mode / bridge specific sensor setup */
Hans de Goede82e839c2010-02-03 14:37:30 -03001191 switch (sd->sensor) {
1192 case SENSOR_PAS202: {
1193 const __u8 i2cpclockdiv[] =
1194 {0xa0, 0x40, 0x02, 0x03, 0x00, 0x00, 0x00, 0x10};
1195 /* clockdiv from 4 to 3 (7.5 -> 10 fps) when in low res mode */
1196 if (mode)
1197 i2c_w(gspca_dev, i2cpclockdiv);
Hans de Goede0a76cb82011-01-05 13:55:43 -03001198 break;
Hans de Goede82e839c2010-02-03 14:37:30 -03001199 }
Hans de Goede0a76cb82011-01-05 13:55:43 -03001200 case SENSOR_OV7630:
1201 /* FIXME / TESTME We should be able to handle this identical
1202 for the 101/102 and the 103 case */
1203 if (sd->bridge == BRIDGE_103) {
1204 const __u8 i2c[] = { 0xa0, 0x21, 0x13,
1205 0x80, 0x00, 0x00, 0x00, 0x10 };
1206 i2c_w(gspca_dev, i2c);
1207 }
1208 break;
Hans de Goede82e839c2010-02-03 14:37:30 -03001209 }
Hans de Goede3647fea2008-07-15 05:36:30 -03001210 /* H_size V_size 0x28, 0x1e -> 640x480. 0x16, 0x12 -> 352x288 */
Hans de Goede0a76cb82011-01-05 13:55:43 -03001211 reg_w(gspca_dev, 0x15, &regs[0x15], 2);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001212 /* compression register */
Hans de Goede0a76cb82011-01-05 13:55:43 -03001213 reg_w(gspca_dev, 0x18, &regs[0x18], 1);
Andoni Zubimendi794af522008-07-16 08:33:14 -03001214 /* H_start */
Hans de Goede0a76cb82011-01-05 13:55:43 -03001215 reg_w(gspca_dev, 0x12, &regs[0x12], 1);
Andoni Zubimendi794af522008-07-16 08:33:14 -03001216 /* V_START */
Hans de Goede0a76cb82011-01-05 13:55:43 -03001217 reg_w(gspca_dev, 0x13, &regs[0x13], 1);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001218 /* reset 0x17 SensorClk enable inv Clk 0x60 */
1219 /*fixme: ov7630 [17]=68 8f (+20 if 102)*/
Hans de Goede0a76cb82011-01-05 13:55:43 -03001220 reg_w(gspca_dev, 0x17, &regs[0x17], 1);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001221 /*MCKSIZE ->3 */ /*fixme: not ov7630*/
Hans de Goede0a76cb82011-01-05 13:55:43 -03001222 reg_w(gspca_dev, 0x19, &regs[0x19], 1);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001223 /* AE_STRX AE_STRY AE_ENDX AE_ENDY */
Hans de Goede0a76cb82011-01-05 13:55:43 -03001224 reg_w(gspca_dev, 0x1c, &regs[0x1c], 4);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001225 /* Enable video transfert */
Hans de Goede0a76cb82011-01-05 13:55:43 -03001226 reg_w(gspca_dev, 0x01, &regs[0x01], 1);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001227 /* Compression */
Hans de Goede0a76cb82011-01-05 13:55:43 -03001228 reg_w(gspca_dev, 0x18, &regs[0x18], 2);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001229 msleep(20);
1230
Hans de Goede6af492e2008-07-22 07:09:33 -03001231 sd->reg11 = -1;
1232
Hans de Goededcef3232008-07-10 10:40:53 -03001233 setgain(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001234 setbrightness(gspca_dev);
Hans de Goededcef3232008-07-10 10:40:53 -03001235 setexposure(gspca_dev);
Hans de Goede66f35822008-07-16 10:16:28 -03001236 setfreq(gspca_dev);
Hans de Goededcef3232008-07-10 10:40:53 -03001237
Hans de Goede6af492e2008-07-22 07:09:33 -03001238 sd->frames_to_drop = 0;
Hans de Goededcef3232008-07-10 10:40:53 -03001239 sd->autogain_ignore_frames = 0;
Hans de Goede26984b02010-02-01 13:18:37 -03001240 sd->exp_too_high_cnt = 0;
1241 sd->exp_too_low_cnt = 0;
Hans de Goededcef3232008-07-10 10:40:53 -03001242 atomic_set(&sd->avg_lum, -1);
Jean-Francois Moine72ab97c2008-09-20 06:39:08 -03001243 return 0;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001244}
1245
1246static void sd_stopN(struct gspca_dev *gspca_dev)
1247{
Hans de Goedef45f06b2008-09-03 17:12:21 -03001248 sd_init(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001249}
1250
Hans de Goede2b3e2842010-12-12 08:55:04 -03001251static u8* find_sof(struct gspca_dev *gspca_dev, u8 *data, int len)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001252{
Hans de Goededcef3232008-07-10 10:40:53 -03001253 struct sd *sd = (struct sd *) gspca_dev;
Hans de Goede2b3e2842010-12-12 08:55:04 -03001254 int i, header_size = (sd->bridge == BRIDGE_103) ? 18 : 12;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001255
Hans de Goedec36260e2008-07-16 09:56:07 -03001256 /* frames start with:
1257 * ff ff 00 c4 c4 96 synchro
1258 * 00 (unknown)
1259 * xx (frame sequence / size / compression)
1260 * (xx) (idem - extra byte for sn9c103)
1261 * ll mm brightness sum inside auto exposure
1262 * ll mm brightness sum outside auto exposure
1263 * (xx xx xx xx xx) audio values for snc103
1264 */
Hans de Goede2b3e2842010-12-12 08:55:04 -03001265 for (i = 0; i < len; i++) {
1266 switch (sd->header_read) {
1267 case 0:
1268 if (data[i] == 0xff)
1269 sd->header_read++;
1270 break;
1271 case 1:
1272 if (data[i] == 0xff)
1273 sd->header_read++;
1274 else
1275 sd->header_read = 0;
1276 break;
1277 case 2:
1278 if (data[i] == 0x00)
1279 sd->header_read++;
1280 else if (data[i] != 0xff)
1281 sd->header_read = 0;
1282 break;
1283 case 3:
1284 if (data[i] == 0xc4)
1285 sd->header_read++;
1286 else if (data[i] == 0xff)
1287 sd->header_read = 1;
1288 else
1289 sd->header_read = 0;
1290 break;
1291 case 4:
1292 if (data[i] == 0xc4)
1293 sd->header_read++;
1294 else if (data[i] == 0xff)
1295 sd->header_read = 1;
1296 else
1297 sd->header_read = 0;
1298 break;
1299 case 5:
1300 if (data[i] == 0x96)
1301 sd->header_read++;
1302 else if (data[i] == 0xff)
1303 sd->header_read = 1;
1304 else
1305 sd->header_read = 0;
1306 break;
1307 default:
1308 sd->header[sd->header_read - 6] = data[i];
1309 sd->header_read++;
1310 if (sd->header_read == header_size) {
1311 sd->header_read = 0;
1312 return data + i + 1;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001313 }
1314 }
1315 }
Hans de Goede2b3e2842010-12-12 08:55:04 -03001316 return NULL;
1317}
1318
1319static void sd_pkt_scan(struct gspca_dev *gspca_dev,
1320 u8 *data, /* isoc packet */
1321 int len) /* iso packet length */
1322{
1323 int fr_h_sz = 0, lum_offset = 0, len_after_sof = 0;
1324 struct sd *sd = (struct sd *) gspca_dev;
1325 struct cam *cam = &gspca_dev->cam;
1326 u8 *sof;
1327
1328 sof = find_sof(gspca_dev, data, len);
1329 if (sof) {
1330 if (sd->bridge == BRIDGE_103) {
1331 fr_h_sz = 18;
1332 lum_offset = 3;
1333 } else {
1334 fr_h_sz = 12;
1335 lum_offset = 2;
1336 }
1337
1338 len_after_sof = len - (sof - data);
1339 len = (sof - data) - fr_h_sz;
1340 if (len < 0)
1341 len = 0;
1342 }
Hans de Goedec437d652008-09-03 17:12:22 -03001343
1344 if (cam->cam_mode[gspca_dev->curr_mode].priv & MODE_RAW) {
1345 /* In raw mode we sometimes get some garbage after the frame
1346 ignore this */
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03001347 int used;
Hans de Goedec437d652008-09-03 17:12:22 -03001348 int size = cam->cam_mode[gspca_dev->curr_mode].sizeimage;
1349
Jean-François Moineb192ca92010-06-27 03:08:19 -03001350 used = gspca_dev->image_len;
Hans de Goedec437d652008-09-03 17:12:22 -03001351 if (used + len > size)
1352 len = size - used;
1353 }
1354
Jean-Francois Moine76dd2722009-11-13 09:21:03 -03001355 gspca_frame_add(gspca_dev, INTER_PACKET, data, len);
Hans de Goede2b3e2842010-12-12 08:55:04 -03001356
1357 if (sof) {
1358 int lum = sd->header[lum_offset] +
1359 (sd->header[lum_offset + 1] << 8);
1360
1361 /* When exposure changes midway a frame we
1362 get a lum of 0 in this case drop 2 frames
1363 as the frames directly after an exposure
1364 change have an unstable image. Sometimes lum
1365 *really* is 0 (cam used in low light with
1366 low exposure setting), so do not drop frames
1367 if the previous lum was 0 too. */
1368 if (lum == 0 && sd->prev_avg_lum != 0) {
1369 lum = -1;
1370 sd->frames_to_drop = 2;
1371 sd->prev_avg_lum = 0;
1372 } else
1373 sd->prev_avg_lum = lum;
1374 atomic_set(&sd->avg_lum, lum);
1375
1376 if (sd->frames_to_drop)
1377 sd->frames_to_drop--;
1378 else
1379 gspca_frame_add(gspca_dev, LAST_PACKET, NULL, 0);
1380
1381 gspca_frame_add(gspca_dev, FIRST_PACKET, sof, len_after_sof);
1382 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001383}
1384
Hans de Goededcef3232008-07-10 10:40:53 -03001385static int sd_setautogain(struct gspca_dev *gspca_dev, __s32 val)
1386{
1387 struct sd *sd = (struct sd *) gspca_dev;
1388
Jean-François Moinef51a8ca2011-03-13 15:04:11 -03001389 sd->ctrls[AUTOGAIN].val = val;
Hans de Goede26984b02010-02-01 13:18:37 -03001390 sd->exp_too_high_cnt = 0;
1391 sd->exp_too_low_cnt = 0;
1392
Hans de Goededcef3232008-07-10 10:40:53 -03001393 /* when switching to autogain set defaults to make sure
1394 we are on a valid point of the autogain gain /
1395 exposure knee graph, and give this change time to
1396 take effect before doing autogain. */
Jean-François Moinef51a8ca2011-03-13 15:04:11 -03001397 if (sd->ctrls[AUTOGAIN].val
1398 && !(sensor_data[sd->sensor].flags & F_COARSE_EXPO)) {
1399 sd->ctrls[EXPOSURE].val = sd->ctrls[EXPOSURE].def;
1400 sd->ctrls[GAIN].val = sd->ctrls[GAIN].def;
Hans de Goededcef3232008-07-10 10:40:53 -03001401 if (gspca_dev->streaming) {
1402 sd->autogain_ignore_frames = AUTOGAIN_IGNORE_FRAMES;
1403 setexposure(gspca_dev);
1404 setgain(gspca_dev);
1405 }
1406 }
1407
Hans de Goedef0baad82011-03-13 16:05:55 -03001408 if (sd->ctrls[AUTOGAIN].val)
1409 gspca_dev->ctrl_inac = (1 << GAIN) | (1 << EXPOSURE);
1410 else
1411 gspca_dev->ctrl_inac = 0;
1412
Hans de Goededcef3232008-07-10 10:40:53 -03001413 return 0;
1414}
1415
Hans de Goede66f35822008-07-16 10:16:28 -03001416static int sd_querymenu(struct gspca_dev *gspca_dev,
1417 struct v4l2_querymenu *menu)
1418{
1419 switch (menu->id) {
1420 case V4L2_CID_POWER_LINE_FREQUENCY:
1421 switch (menu->index) {
1422 case 0: /* V4L2_CID_POWER_LINE_FREQUENCY_DISABLED */
1423 strcpy((char *) menu->name, "NoFliker");
1424 return 0;
1425 case 1: /* V4L2_CID_POWER_LINE_FREQUENCY_50HZ */
1426 strcpy((char *) menu->name, "50 Hz");
1427 return 0;
1428 case 2: /* V4L2_CID_POWER_LINE_FREQUENCY_60HZ */
1429 strcpy((char *) menu->name, "60 Hz");
1430 return 0;
1431 }
1432 break;
1433 }
1434 return -EINVAL;
1435}
1436
Jean-François Moine28566432010-10-01 07:33:26 -03001437#if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
Hans de Goedef65e93d2010-01-31 10:35:15 -03001438static int sd_int_pkt_scan(struct gspca_dev *gspca_dev,
1439 u8 *data, /* interrupt packet data */
1440 int len) /* interrupt packet length */
1441{
1442 int ret = -EINVAL;
1443
1444 if (len == 1 && data[0] == 1) {
1445 input_report_key(gspca_dev->input_dev, KEY_CAMERA, 1);
1446 input_sync(gspca_dev->input_dev);
1447 input_report_key(gspca_dev->input_dev, KEY_CAMERA, 0);
1448 input_sync(gspca_dev->input_dev);
1449 ret = 0;
1450 }
1451
1452 return ret;
1453}
1454#endif
1455
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001456/* sub-driver description */
Hans de Goededcef3232008-07-10 10:40:53 -03001457static const struct sd_desc sd_desc = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001458 .name = MODULE_NAME,
1459 .ctrls = sd_ctrls,
1460 .nctrls = ARRAY_SIZE(sd_ctrls),
1461 .config = sd_config,
Jean-Francois Moine012d6b02008-09-03 17:12:16 -03001462 .init = sd_init,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001463 .start = sd_start,
1464 .stopN = sd_stopN,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001465 .pkt_scan = sd_pkt_scan,
Hans de Goede66f35822008-07-16 10:16:28 -03001466 .querymenu = sd_querymenu,
Hans de Goedee2ad2a52008-09-03 17:12:15 -03001467 .dq_callback = do_autogain,
Jean-François Moine28566432010-10-01 07:33:26 -03001468#if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
Hans de Goedef65e93d2010-01-31 10:35:15 -03001469 .int_pkt_scan = sd_int_pkt_scan,
1470#endif
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001471};
1472
1473/* -- module initialisation -- */
Hans de Goedef45f06b2008-09-03 17:12:21 -03001474#define SB(sensor, bridge) \
1475 .driver_info = (SENSOR_ ## sensor << 8) | BRIDGE_ ## bridge
1476
Hans de Goedee2ad2a52008-09-03 17:12:15 -03001477
Jean-François Moine95c967c2011-01-13 05:20:29 -03001478static const struct usb_device_id device_table[] = {
Hans de Goedeb10af3f2010-01-10 19:31:34 -03001479 {USB_DEVICE(0x0c45, 0x6001), SB(TAS5110C, 102)}, /* TAS5110C1B */
1480 {USB_DEVICE(0x0c45, 0x6005), SB(TAS5110C, 101)}, /* TAS5110C1B */
Hans de Goedeb10af3f2010-01-10 19:31:34 -03001481 {USB_DEVICE(0x0c45, 0x6007), SB(TAS5110D, 101)}, /* TAS5110D */
Hans de Goedef45f06b2008-09-03 17:12:21 -03001482 {USB_DEVICE(0x0c45, 0x6009), SB(PAS106, 101)},
1483 {USB_DEVICE(0x0c45, 0x600d), SB(PAS106, 101)},
Hans de Goedef45f06b2008-09-03 17:12:21 -03001484 {USB_DEVICE(0x0c45, 0x6011), SB(OV6650, 101)},
Hans de Goedef45f06b2008-09-03 17:12:21 -03001485 {USB_DEVICE(0x0c45, 0x6019), SB(OV7630, 101)},
Hans de Goede69ffd252011-01-06 11:56:30 -03001486#if !defined CONFIG_USB_SN9C102 && !defined CONFIG_USB_SN9C102_MODULE
Hans de Goedef45f06b2008-09-03 17:12:21 -03001487 {USB_DEVICE(0x0c45, 0x6024), SB(TAS5130CXX, 102)},
1488 {USB_DEVICE(0x0c45, 0x6025), SB(TAS5130CXX, 102)},
Hans de Goede0e4b91c2010-02-10 20:29:43 -03001489#endif
Hans de Goedef45f06b2008-09-03 17:12:21 -03001490 {USB_DEVICE(0x0c45, 0x6028), SB(PAS202, 102)},
1491 {USB_DEVICE(0x0c45, 0x6029), SB(PAS106, 102)},
Hans de Goede00765f12010-12-12 15:55:03 -03001492 {USB_DEVICE(0x0c45, 0x602a), SB(HV7131D, 102)},
1493 /* {USB_DEVICE(0x0c45, 0x602b), SB(MI0343, 102)}, */
Jean-Francois Moine29fbdf32008-11-07 04:53:28 -03001494 {USB_DEVICE(0x0c45, 0x602c), SB(OV7630, 102)},
Hans de Goedef45f06b2008-09-03 17:12:21 -03001495 {USB_DEVICE(0x0c45, 0x602d), SB(HV7131R, 102)},
Hans de Goedef45f06b2008-09-03 17:12:21 -03001496 {USB_DEVICE(0x0c45, 0x602e), SB(OV7630, 102)},
Hans de Goede69ffd252011-01-06 11:56:30 -03001497 /* {USB_DEVICE(0x0c45, 0x6030), SB(MI03XX, 102)}, */ /* MI0343 MI0360 MI0330 */
1498 /* {USB_DEVICE(0x0c45, 0x6082), SB(MI03XX, 103)}, */ /* MI0343 MI0360 */
1499 {USB_DEVICE(0x0c45, 0x6083), SB(HV7131D, 103)},
1500 {USB_DEVICE(0x0c45, 0x608c), SB(HV7131R, 103)},
1501 /* {USB_DEVICE(0x0c45, 0x608e), SB(CISVF10, 103)}, */
Hans de Goede4cce1652008-09-04 16:22:57 -03001502 {USB_DEVICE(0x0c45, 0x608f), SB(OV7630, 103)},
Hans de Goede69ffd252011-01-06 11:56:30 -03001503 {USB_DEVICE(0x0c45, 0x60a8), SB(PAS106, 103)},
1504 {USB_DEVICE(0x0c45, 0x60aa), SB(TAS5130CXX, 103)},
Hans de Goede4cce1652008-09-04 16:22:57 -03001505 {USB_DEVICE(0x0c45, 0x60af), SB(PAS202, 103)},
Hans de Goede4cce1652008-09-04 16:22:57 -03001506 {USB_DEVICE(0x0c45, 0x60b0), SB(OV7630, 103)},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001507 {}
1508};
1509MODULE_DEVICE_TABLE(usb, device_table);
1510
1511/* -- device connect -- */
Jean-François Moine95c967c2011-01-13 05:20:29 -03001512static int sd_probe(struct usb_interface *intf,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001513 const struct usb_device_id *id)
1514{
1515 return gspca_dev_probe(intf, id, &sd_desc, sizeof(struct sd),
1516 THIS_MODULE);
1517}
1518
1519static struct usb_driver sd_driver = {
1520 .name = MODULE_NAME,
1521 .id_table = device_table,
1522 .probe = sd_probe,
1523 .disconnect = gspca_disconnect,
Jean-Francois Moine6a709742008-09-03 16:48:10 -03001524#ifdef CONFIG_PM
1525 .suspend = gspca_suspend,
1526 .resume = gspca_resume,
1527#endif
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001528};
1529
1530/* -- module insert / remove -- */
1531static int __init sd_mod_init(void)
1532{
Jean-François Moine54826432010-09-13 04:53:03 -03001533 return usb_register(&sd_driver);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001534}
1535static void __exit sd_mod_exit(void)
1536{
1537 usb_deregister(&sd_driver);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001538}
1539
1540module_init(sd_mod_init);
1541module_exit(sd_mod_exit);