blob: 0a1e66201a6572e42acfa87071e10ecb7028bf0f [file] [log] [blame]
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001/*
2 * Sunplus spca561 subdriver
3 *
4 * Copyright (C) 2004 Michel Xhaard mxhaard@magic.fr
5 *
6 * V4L2 by Jean-Francois Moine <http://moinejf.free.fr>
7 *
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
23#define MODULE_NAME "spca561"
24
25#include "gspca.h"
26
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030027MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>");
28MODULE_DESCRIPTION("GSPCA/SPCA561 USB Camera Driver");
29MODULE_LICENSE("GPL");
30
31/* specific webcam descriptor */
32struct sd {
33 struct gspca_dev gspca_dev; /* !! must be the first item */
34
Jean-Francois Moine7879d452008-09-03 16:47:32 -030035 __u16 contrast; /* rev72a only */
36#define CONTRAST_MIN 0x0000
37#define CONTRAST_DEF 0x2000
38#define CONTRAST_MAX 0x3fff
39
40 __u16 exposure; /* rev12a only */
Jean-Francois Moined698dc62008-09-03 16:47:51 -030041#define EXPOSURE_MIN 0x2001
Jean-Francois Moine7879d452008-09-03 16:47:32 -030042#define EXPOSURE_DEF 0x20ae
Jean-Francois Moined698dc62008-09-03 16:47:51 -030043#define EXPOSURE_MAX 0x421d
Jean-Francois Moine7879d452008-09-03 16:47:32 -030044
45 __u8 brightness; /* rev72a only */
46#define BRIGHTNESS_MIN 0
47#define BRIGHTNESS_DEF 32
48#define BRIGHTNESS_MAX 63
49
50 __u8 white; /* rev12a only */
51#define WHITE_MIN 0
52#define WHITE_DEF 0x40
53#define WHITE_MAX 0x7f
54
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030055 __u8 autogain;
Jean-Francois Moine7879d452008-09-03 16:47:32 -030056#define AUTOGAIN_MIN 0
57#define AUTOGAIN_DEF 1
58#define AUTOGAIN_MAX 1
59
60 __u8 gain; /* rev12a only */
61#define GAIN_MIN 0x0
62#define GAIN_DEF 0x24
63#define GAIN_MAX 0x24
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030064
Jean-Francois Moined698dc62008-09-03 16:47:51 -030065#define EXPO12A_DEF 3
66 __u8 expo12a; /* expo/gain? for rev 12a */
67
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030068 __u8 chip_revision;
Jean-Francois Moine7879d452008-09-03 16:47:32 -030069#define Rev012A 0
70#define Rev072A 1
71
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030072 signed char ag_cnt;
73#define AG_CNT_START 13
74};
75
Jean-Francois Moinec2446b32008-07-05 11:49:20 -030076static struct v4l2_pix_format sif_mode[] = {
77 {160, 120, V4L2_PIX_FMT_SGBRG8, V4L2_FIELD_NONE,
78 .bytesperline = 160,
79 .sizeimage = 160 * 120,
80 .colorspace = V4L2_COLORSPACE_SRGB,
81 .priv = 3},
82 {176, 144, V4L2_PIX_FMT_SGBRG8, V4L2_FIELD_NONE,
83 .bytesperline = 176,
84 .sizeimage = 176 * 144,
85 .colorspace = V4L2_COLORSPACE_SRGB,
86 .priv = 2},
87 {320, 240, V4L2_PIX_FMT_SPCA561, V4L2_FIELD_NONE,
88 .bytesperline = 320,
89 .sizeimage = 320 * 240 * 4 / 8,
90 .colorspace = V4L2_COLORSPACE_SRGB,
91 .priv = 1},
92 {352, 288, V4L2_PIX_FMT_SPCA561, V4L2_FIELD_NONE,
93 .bytesperline = 352,
94 .sizeimage = 352 * 288 * 4 / 8,
95 .colorspace = V4L2_COLORSPACE_SRGB,
96 .priv = 0},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030097};
98
99/*
100 * Initialization data
101 * I'm not very sure how to split initialization from open data
102 * chunks. For now, we'll consider everything as initialization
103 */
104/* Frame packet header offsets for the spca561 */
105#define SPCA561_OFFSET_SNAP 1
106#define SPCA561_OFFSET_TYPE 2
107#define SPCA561_OFFSET_COMPRESS 3
108#define SPCA561_OFFSET_FRAMSEQ 4
109#define SPCA561_OFFSET_GPIO 5
110#define SPCA561_OFFSET_USBBUFF 6
111#define SPCA561_OFFSET_WIN2GRAVE 7
112#define SPCA561_OFFSET_WIN2RAVE 8
113#define SPCA561_OFFSET_WIN2BAVE 9
114#define SPCA561_OFFSET_WIN2GBAVE 10
115#define SPCA561_OFFSET_WIN1GRAVE 11
116#define SPCA561_OFFSET_WIN1RAVE 12
117#define SPCA561_OFFSET_WIN1BAVE 13
118#define SPCA561_OFFSET_WIN1GBAVE 14
119#define SPCA561_OFFSET_FREQ 15
120#define SPCA561_OFFSET_VSYNC 16
121#define SPCA561_OFFSET_DATA 1
122#define SPCA561_INDEX_I2C_BASE 0x8800
123#define SPCA561_SNAPBIT 0x20
124#define SPCA561_SNAPCTRL 0x40
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300125
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300126static void reg_w_val(struct usb_device *dev, __u16 index, __u8 value)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300127{
128 int ret;
129
130 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
131 0, /* request */
132 USB_TYPE_VENDOR | USB_RECIP_DEVICE,
133 value, index, NULL, 0, 500);
134 PDEBUG(D_USBO, "reg write: 0x%02x:0x%02x", index, value);
135 if (ret < 0)
136 PDEBUG(D_ERR, "reg write: error %d", ret);
137}
138
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300139static void write_vector(struct gspca_dev *gspca_dev,
140 const __u16 data[][2])
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300141{
142 struct usb_device *dev = gspca_dev->dev;
143 int i;
144
145 i = 0;
146 while (data[i][1] != 0) {
147 reg_w_val(dev, data[i][1], data[i][0]);
148 i++;
149 }
150}
151
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300152/* read 'len' bytes to gspca_dev->usb_buf */
153static void reg_r(struct gspca_dev *gspca_dev,
154 __u16 index, __u16 length)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300155{
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300156 usb_control_msg(gspca_dev->dev,
157 usb_rcvctrlpipe(gspca_dev->dev, 0),
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300158 0, /* request */
159 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
160 0, /* value */
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300161 index, gspca_dev->usb_buf, length, 500);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300162}
163
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300164static void reg_w_buf(struct gspca_dev *gspca_dev,
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300165 __u16 index, const __u8 *buffer, __u16 len)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300166{
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300167 memcpy(gspca_dev->usb_buf, buffer, len);
168 usb_control_msg(gspca_dev->dev,
169 usb_sndctrlpipe(gspca_dev->dev, 0),
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300170 0, /* request */
171 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
172 0, /* value */
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300173 index, gspca_dev->usb_buf, len, 500);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300174}
175
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300176static void i2c_write(struct gspca_dev *gspca_dev, __u16 valeur, __u16 reg)
177{
178 int retry = 60;
179 __u8 DataLow;
180 __u8 DataHight;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300181
182 DataLow = valeur;
183 DataHight = valeur >> 8;
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300184 reg_w_val(gspca_dev->dev, 0x8801, reg);
185 reg_w_val(gspca_dev->dev, 0x8805, DataLow);
186 reg_w_val(gspca_dev->dev, 0x8800, DataHight);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300187 while (retry--) {
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300188 reg_r(gspca_dev, 0x8803, 1);
189 if (!gspca_dev->usb_buf[0])
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300190 break;
191 }
192}
193
194static int i2c_read(struct gspca_dev *gspca_dev, __u16 reg, __u8 mode)
195{
196 int retry = 60;
197 __u8 value;
198 __u8 vallsb;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300199
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300200 reg_w_val(gspca_dev->dev, 0x8804, 0x92);
201 reg_w_val(gspca_dev->dev, 0x8801, reg);
202 reg_w_val(gspca_dev->dev, 0x8802, (mode | 0x01));
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300203 while (retry--) {
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300204 reg_r(gspca_dev, 0x8803, 1);
205 if (!gspca_dev->usb_buf)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300206 break;
207 }
208 if (retry == 0)
209 return -1;
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300210 reg_r(gspca_dev, 0x8800, 1);
211 value = gspca_dev->usb_buf[0];
212 reg_r(gspca_dev, 0x8805, 1);
213 vallsb = gspca_dev->usb_buf[0];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300214 return ((int) value << 8) | vallsb;
215}
216
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300217static const __u16 spca561_init_data[][2] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300218 {0x0000, 0x8114}, /* Software GPIO output data */
219 {0x0001, 0x8114}, /* Software GPIO output data */
220 {0x0000, 0x8112}, /* Some kind of reset */
221 {0x0003, 0x8701}, /* PCLK clock delay adjustment */
222 {0x0001, 0x8703}, /* HSYNC from cmos inverted */
223 {0x0011, 0x8118}, /* Enable and conf sensor */
224 {0x0001, 0x8118}, /* Conf sensor */
225 {0x0092, 0x8804}, /* I know nothing about these */
226 {0x0010, 0x8802}, /* 0x88xx registers, so I won't */
227 /***************/
228 {0x000d, 0x8805}, /* sensor default setting */
229 {0x0001, 0x8801}, /* 1 <- 0x0d */
230 {0x0000, 0x8800},
231 {0x0018, 0x8805},
232 {0x0002, 0x8801}, /* 2 <- 0x18 */
233 {0x0000, 0x8800},
234 {0x0065, 0x8805},
235 {0x0004, 0x8801}, /* 4 <- 0x01 0x65 */
236 {0x0001, 0x8800},
237 {0x0021, 0x8805},
238 {0x0005, 0x8801}, /* 5 <- 0x21 */
239 {0x0000, 0x8800},
240 {0x00aa, 0x8805},
241 {0x0007, 0x8801}, /* 7 <- 0xaa */
242 {0x0000, 0x8800},
243 {0x0004, 0x8805},
244 {0x0020, 0x8801}, /* 0x20 <- 0x15 0x04 */
245 {0x0015, 0x8800},
246 {0x0002, 0x8805},
247 {0x0039, 0x8801}, /* 0x39 <- 0x02 */
248 {0x0000, 0x8800},
249 {0x0010, 0x8805},
250 {0x0035, 0x8801}, /* 0x35 <- 0x10 */
251 {0x0000, 0x8800},
252 {0x0049, 0x8805},
253 {0x0009, 0x8801}, /* 0x09 <- 0x10 0x49 */
254 {0x0010, 0x8800},
255 {0x000b, 0x8805},
256 {0x0028, 0x8801}, /* 0x28 <- 0x0b */
257 {0x0000, 0x8800},
258 {0x000f, 0x8805},
259 {0x003b, 0x8801}, /* 0x3b <- 0x0f */
260 {0x0000, 0x8800},
261 {0x0000, 0x8805},
262 {0x003c, 0x8801}, /* 0x3c <- 0x00 */
263 {0x0000, 0x8800},
264 /***************/
265 {0x0018, 0x8601}, /* Pixel/line selection for color separation */
266 {0x0000, 0x8602}, /* Optical black level for user setting */
267 {0x0060, 0x8604}, /* Optical black horizontal offset */
268 {0x0002, 0x8605}, /* Optical black vertical offset */
269 {0x0000, 0x8603}, /* Non-automatic optical black level */
270 {0x0002, 0x865b}, /* Horizontal offset for valid pixels */
271 {0x0000, 0x865f}, /* Vertical valid pixels window (x2) */
272 {0x00b0, 0x865d}, /* Horizontal valid pixels window (x2) */
273 {0x0090, 0x865e}, /* Vertical valid lines window (x2) */
274 {0x00e0, 0x8406}, /* Memory buffer threshold */
275 {0x0000, 0x8660}, /* Compensation memory stuff */
276 {0x0002, 0x8201}, /* Output address for r/w serial EEPROM */
277 {0x0008, 0x8200}, /* Clear valid bit for serial EEPROM */
278 {0x0001, 0x8200}, /* OprMode to be executed by hardware */
279 {0x0007, 0x8201}, /* Output address for r/w serial EEPROM */
280 {0x0008, 0x8200}, /* Clear valid bit for serial EEPROM */
281 {0x0001, 0x8200}, /* OprMode to be executed by hardware */
282 {0x0010, 0x8660}, /* Compensation memory stuff */
283 {0x0018, 0x8660}, /* Compensation memory stuff */
284
285 {0x0004, 0x8611}, /* R offset for white balance */
286 {0x0004, 0x8612}, /* Gr offset for white balance */
287 {0x0007, 0x8613}, /* B offset for white balance */
288 {0x0000, 0x8614}, /* Gb offset for white balance */
289 {0x008c, 0x8651}, /* R gain for white balance */
290 {0x008c, 0x8652}, /* Gr gain for white balance */
291 {0x00b5, 0x8653}, /* B gain for white balance */
292 {0x008c, 0x8654}, /* Gb gain for white balance */
293 {0x0002, 0x8502}, /* Maximum average bit rate stuff */
294
295 {0x0011, 0x8802},
296 {0x0087, 0x8700}, /* Set master clock (96Mhz????) */
297 {0x0081, 0x8702}, /* Master clock output enable */
298
299 {0x0000, 0x8500}, /* Set image type (352x288 no compression) */
300 /* Originally was 0x0010 (352x288 compression) */
301
302 {0x0002, 0x865b}, /* Horizontal offset for valid pixels */
303 {0x0003, 0x865c}, /* Vertical offset for valid lines */
304 /***************//* sensor active */
305 {0x0003, 0x8801}, /* 0x03 <- 0x01 0x21 //289 */
306 {0x0021, 0x8805},
307 {0x0001, 0x8800},
308 {0x0004, 0x8801}, /* 0x04 <- 0x01 0x65 //357 */
309 {0x0065, 0x8805},
310 {0x0001, 0x8800},
311 {0x0005, 0x8801}, /* 0x05 <- 0x2f */
312 {0x002f, 0x8805},
313 {0x0000, 0x8800},
314 {0x0006, 0x8801}, /* 0x06 <- 0 */
315 {0x0000, 0x8805},
316 {0x0000, 0x8800},
317 {0x000a, 0x8801}, /* 0x0a <- 2 */
318 {0x0002, 0x8805},
319 {0x0000, 0x8800},
320 {0x0009, 0x8801}, /* 0x09 <- 0x1061 */
321 {0x0061, 0x8805},
322 {0x0010, 0x8800},
323 {0x0035, 0x8801}, /* 0x35 <-0x14 */
324 {0x0014, 0x8805},
325 {0x0000, 0x8800},
326 {0x0030, 0x8112}, /* ISO and drop packet enable */
327 {0x0000, 0x8112}, /* Some kind of reset ???? */
328 {0x0009, 0x8118}, /* Enable sensor and set standby */
329 {0x0000, 0x8114}, /* Software GPIO output data */
330 {0x0000, 0x8114}, /* Software GPIO output data */
331 {0x0001, 0x8114}, /* Software GPIO output data */
332 {0x0000, 0x8112}, /* Some kind of reset ??? */
333 {0x0003, 0x8701},
334 {0x0001, 0x8703},
335 {0x0011, 0x8118},
336 {0x0001, 0x8118},
337 /***************/
338 {0x0092, 0x8804},
339 {0x0010, 0x8802},
340 {0x000d, 0x8805},
341 {0x0001, 0x8801},
342 {0x0000, 0x8800},
343 {0x0018, 0x8805},
344 {0x0002, 0x8801},
345 {0x0000, 0x8800},
346 {0x0065, 0x8805},
347 {0x0004, 0x8801},
348 {0x0001, 0x8800},
349 {0x0021, 0x8805},
350 {0x0005, 0x8801},
351 {0x0000, 0x8800},
352 {0x00aa, 0x8805},
353 {0x0007, 0x8801}, /* mode 0xaa */
354 {0x0000, 0x8800},
355 {0x0004, 0x8805},
356 {0x0020, 0x8801},
357 {0x0015, 0x8800}, /* mode 0x0415 */
358 {0x0002, 0x8805},
359 {0x0039, 0x8801},
360 {0x0000, 0x8800},
361 {0x0010, 0x8805},
362 {0x0035, 0x8801},
363 {0x0000, 0x8800},
364 {0x0049, 0x8805},
365 {0x0009, 0x8801},
366 {0x0010, 0x8800},
367 {0x000b, 0x8805},
368 {0x0028, 0x8801},
369 {0x0000, 0x8800},
370 {0x000f, 0x8805},
371 {0x003b, 0x8801},
372 {0x0000, 0x8800},
373 {0x0000, 0x8805},
374 {0x003c, 0x8801},
375 {0x0000, 0x8800},
376 {0x0002, 0x8502},
377 {0x0039, 0x8801},
378 {0x0000, 0x8805},
379 {0x0000, 0x8800},
380
381 {0x0087, 0x8700}, /* overwrite by start */
382 {0x0081, 0x8702},
383 {0x0000, 0x8500},
384/* {0x0010, 0x8500}, -- Previous line was this */
385 {0x0002, 0x865b},
386 {0x0003, 0x865c},
387 /***************/
388 {0x0003, 0x8801}, /* 0x121-> 289 */
389 {0x0021, 0x8805},
390 {0x0001, 0x8800},
391 {0x0004, 0x8801}, /* 0x165 -> 357 */
392 {0x0065, 0x8805},
393 {0x0001, 0x8800},
394 {0x0005, 0x8801}, /* 0x2f //blanking control colonne */
395 {0x002f, 0x8805},
396 {0x0000, 0x8800},
397 {0x0006, 0x8801}, /* 0x00 //blanking mode row */
398 {0x0000, 0x8805},
399 {0x0000, 0x8800},
400 {0x000a, 0x8801}, /* 0x01 //0x02 */
401 {0x0001, 0x8805},
402 {0x0000, 0x8800},
403 {0x0009, 0x8801}, /* 0x1061 - setexposure times && pixel clock
404 * 0001 0 | 000 0110 0001 */
405 {0x0061, 0x8805}, /* 61 31 */
406 {0x0008, 0x8800}, /* 08 */
407 {0x0035, 0x8801}, /* 0x14 - set gain general */
408 {0x001f, 0x8805}, /* 0x14 */
409 {0x0000, 0x8800},
Jean-Francois Moine6c9d3c52008-09-03 16:47:30 -0300410 {0x000e, 0x8112}, /* white balance - was 30 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300411 {}
412};
413
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300414
415/******************** QC Express etch2 stuff ********************/
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300416static const __u16 Pb100_1map8300[][2] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300417 /* reg, value */
418 {0x8320, 0x3304},
419
420 {0x8303, 0x0125}, /* image area */
421 {0x8304, 0x0169},
422 {0x8328, 0x000b},
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300423 {0x833c, 0x0001}, /*fixme: win:07*/
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300424
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300425 {0x832f, 0x1904}, /*fixme: was 0419*/
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300426 {0x8307, 0x00aa},
427 {0x8301, 0x0003},
428 {0x8302, 0x000e},
429 {}
430};
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300431static const __u16 Pb100_2map8300[][2] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300432 /* reg, value */
433 {0x8339, 0x0000},
434 {0x8307, 0x00aa},
435 {}
436};
437
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300438static const __u16 spca561_161rev12A_data1[][2] = {
Jean-Francois Moine6c9d3c52008-09-03 16:47:30 -0300439 {0x29, 0x8118}, /* white balance - was 21 */
440 {0x08, 0x8114}, /* white balance - was 01 */
441 {0x0e, 0x8112}, /* white balance - was 00 */
442 {0x00, 0x8102}, /* white balance - new */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300443 {0x92, 0x8804},
444 {0x04, 0x8802}, /* windows uses 08 */
445 {}
446};
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300447static const __u16 spca561_161rev12A_data2[][2] = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300448 {0x21, 0x8118},
449 {0x10, 0x8500},
450 {0x07, 0x8601},
451 {0x07, 0x8602},
452 {0x04, 0x8501},
453 {0x21, 0x8118},
454
455 {0x07, 0x8201}, /* windows uses 02 */
456 {0x08, 0x8200},
457 {0x01, 0x8200},
458
459 {0x00, 0x8114},
460 {0x01, 0x8114}, /* windows uses 00 */
461
462 {0x90, 0x8604},
463 {0x00, 0x8605},
464 {0xb0, 0x8603},
465
466 /* sensor gains */
Jean-Francois Moine6c9d3c52008-09-03 16:47:30 -0300467 {0x07, 0x8601}, /* white balance - new */
468 {0x07, 0x8602}, /* white balance - new */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300469 {0x00, 0x8610}, /* *red */
470 {0x00, 0x8611}, /* 3f *green */
471 {0x00, 0x8612}, /* green *blue */
472 {0x00, 0x8613}, /* blue *green */
Jean-Francois Moine6c9d3c52008-09-03 16:47:30 -0300473 {0x43, 0x8614}, /* green *red - white balance - was 0x35 */
474 {0x40, 0x8615}, /* 40 *green - white balance - was 0x35 */
475 {0x71, 0x8616}, /* 7a *blue - white balance - was 0x35 */
476 {0x40, 0x8617}, /* 40 *green - white balance - was 0x35 */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300477
478 {0x0c, 0x8620}, /* 0c */
479 {0xc8, 0x8631}, /* c8 */
480 {0xc8, 0x8634}, /* c8 */
481 {0x23, 0x8635}, /* 23 */
482 {0x1f, 0x8636}, /* 1f */
483 {0xdd, 0x8637}, /* dd */
484 {0xe1, 0x8638}, /* e1 */
485 {0x1d, 0x8639}, /* 1d */
486 {0x21, 0x863a}, /* 21 */
487 {0xe3, 0x863b}, /* e3 */
488 {0xdf, 0x863c}, /* df */
489 {0xf0, 0x8505},
490 {0x32, 0x850a},
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300491/* {0x99, 0x8700}, * - white balance - new (removed) */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300492 {}
493};
494
495static void sensor_mapwrite(struct gspca_dev *gspca_dev,
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300496 const __u16 sensormap[][2])
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300497{
498 int i = 0;
499 __u8 usbval[2];
500
501 while (sensormap[i][0]) {
502 usbval[0] = sensormap[i][1];
503 usbval[1] = sensormap[i][1] >> 8;
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300504 reg_w_buf(gspca_dev, sensormap[i][0], usbval, 2);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300505 i++;
506 }
507}
508static void init_161rev12A(struct gspca_dev *gspca_dev)
509{
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300510/* sensor_reset(gspca_dev); (not in win) */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300511 write_vector(gspca_dev, spca561_161rev12A_data1);
512 sensor_mapwrite(gspca_dev, Pb100_1map8300);
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300513/*fixme: should be in sd_start*/
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300514 write_vector(gspca_dev, spca561_161rev12A_data2);
515 sensor_mapwrite(gspca_dev, Pb100_2map8300);
516}
517
518/* this function is called at probe time */
519static int sd_config(struct gspca_dev *gspca_dev,
520 const struct usb_device_id *id)
521{
522 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300523 struct cam *cam;
524 __u16 vendor, product;
525 __u8 data1, data2;
526
527 /* Read frm global register the USB product and vendor IDs, just to
528 * prove that we can communicate with the device. This works, which
529 * confirms at we are communicating properly and that the device
530 * is a 561. */
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300531 reg_r(gspca_dev, 0x8104, 1);
532 data1 = gspca_dev->usb_buf[0];
533 reg_r(gspca_dev, 0x8105, 1);
534 data2 = gspca_dev->usb_buf[0];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300535 vendor = (data2 << 8) | data1;
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300536 reg_r(gspca_dev, 0x8106, 1);
537 data1 = gspca_dev->usb_buf[0];
538 reg_r(gspca_dev, 0x8107, 1);
539 data2 = gspca_dev->usb_buf[0];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300540 product = (data2 << 8) | data1;
541 if (vendor != id->idVendor || product != id->idProduct) {
542 PDEBUG(D_PROBE, "Bad vendor / product from device");
543 return -EINVAL;
544 }
Jean-Francois Moine9d64fdb2008-07-25 08:53:03 -0300545
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300546 cam = &gspca_dev->cam;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300547 cam->epaddr = 0x01;
548 gspca_dev->nbalt = 7 + 1; /* choose alternate 7 first */
549 cam->cam_mode = sif_mode;
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300550 cam->nmodes = ARRAY_SIZE(sif_mode);
Jean-Francois Moine9d64fdb2008-07-25 08:53:03 -0300551
552 sd->chip_revision = id->driver_info;
Jean-Francois Moine6c9d3c52008-09-03 16:47:30 -0300553 sd->brightness = BRIGHTNESS_DEF;
554 sd->contrast = CONTRAST_DEF;
Jean-Francois Moine6c9d3c52008-09-03 16:47:30 -0300555 sd->white = WHITE_DEF;
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300556 sd->exposure = EXPOSURE_DEF;
557 sd->autogain = AUTOGAIN_DEF;
558 sd->gain = GAIN_DEF;
Jean-Francois Moined698dc62008-09-03 16:47:51 -0300559 sd->expo12a = EXPO12A_DEF;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300560 return 0;
561}
562
563/* this function is called at open time */
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300564static int sd_open_12a(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300565{
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300566 PDEBUG(D_STREAM, "Chip revision: 012a");
567 init_161rev12A(gspca_dev);
568 return 0;
569}
570static int sd_open_72a(struct gspca_dev *gspca_dev)
571{
572 PDEBUG(D_STREAM, "Chip revision: 072a");
573 write_vector(gspca_dev, spca561_init_data);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300574 return 0;
575}
576
577static void setcontrast(struct gspca_dev *gspca_dev)
578{
579 struct sd *sd = (struct sd *) gspca_dev;
580 struct usb_device *dev = gspca_dev->dev;
581 __u8 lowb;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300582
583 switch (sd->chip_revision) {
584 case Rev072A:
585 lowb = sd->contrast >> 8;
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300586 reg_w_val(dev, 0x8651, lowb);
587 reg_w_val(dev, 0x8652, lowb);
588 reg_w_val(dev, 0x8653, lowb);
589 reg_w_val(dev, 0x8654, lowb);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300590 break;
Jean-Francois Moine6c9d3c52008-09-03 16:47:30 -0300591 default: {
592/* case Rev012A: { */
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300593 static const __u8 Reg8391[] =
594 { 0x92, 0x30, 0x20, 0x00, 0x0c, 0x00, 0x00, 0x00 };
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300595
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300596 reg_w_buf(gspca_dev, 0x8391, Reg8391, 8);
597 reg_w_buf(gspca_dev, 0x8390, Reg8391, 8);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300598 break;
599 }
600 }
601}
602
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300603/* rev12a only */
Jean-Francois Moine6c9d3c52008-09-03 16:47:30 -0300604static void setwhite(struct gspca_dev *gspca_dev)
605{
606 struct sd *sd = (struct sd *) gspca_dev;
607 __u16 white;
608 __u8 reg8614, reg8616;
609
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300610 white = sd->white;
611 if (sd->white == 0) {
612 PDEBUG(D_CONF, "Discarding null whiteness");
613 return;
Jean-Francois Moine6c9d3c52008-09-03 16:47:30 -0300614 }
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300615 /* try to emulate MS-win as possible */
Jean-Francois Moined698dc62008-09-03 16:47:51 -0300616 reg8616 = 0x90 - white * 5 / 8;
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300617 reg_w_val(gspca_dev->dev, 0x8616, reg8616);
Jean-Francois Moined698dc62008-09-03 16:47:51 -0300618 reg8614 = 0x20 + white * 3 / 8;
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300619 reg_w_val(gspca_dev->dev, 0x8614, reg8614);
620}
621
622/* rev 12a only */
623static void setexposure(struct gspca_dev *gspca_dev)
624{
625 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moined698dc62008-09-03 16:47:51 -0300626 __u8 data[2];
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300627
Jean-Francois Moined698dc62008-09-03 16:47:51 -0300628 data[0] = sd->exposure;
629 data[1] = sd->exposure >> 8;
630 reg_w_buf(gspca_dev, 0x8309, data, 2);
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300631}
632
633/* rev 12a only */
634static void setgain(struct gspca_dev *gspca_dev)
635{
636 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moined698dc62008-09-03 16:47:51 -0300637 __u8 data[2];
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300638
Jean-Francois Moined698dc62008-09-03 16:47:51 -0300639 data[0] = sd->gain;
640 data[1] = 0;
641 reg_w_buf(gspca_dev, 0x8335, data, 2);
Jean-Francois Moine6c9d3c52008-09-03 16:47:30 -0300642}
643
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -0300644static void setautogain(struct gspca_dev *gspca_dev)
645{
646 struct sd *sd = (struct sd *) gspca_dev;
647
Jean-Francois Moined698dc62008-09-03 16:47:51 -0300648 if (sd->autogain)
649 sd->ag_cnt = AG_CNT_START;
650 else
651 sd->ag_cnt = -1;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -0300652}
653
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300654static void sd_start_12a(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300655{
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300656 struct usb_device *dev = gspca_dev->dev;
657 int Clck;
658 __u8 Reg8307[] = { 0xaa, 0x00 };
659 int mode;
660
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300661 mode = gspca_dev->cam.cam_mode[(int) gspca_dev->curr_mode].priv;
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300662 switch (mode) {
663 case 0:
664 case 1:
665 Clck = 0x8a;
666 break;
667 case 2:
668 Clck = 0x85;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300669 break;
670 default:
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300671 Clck = 0x83;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300672 break;
673 }
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300674 if (mode <= 1) {
675 /* Use compression on 320x240 and above */
676 reg_w_val(dev, 0x8500, 0x10 | mode);
677 } else {
678 /* I couldn't get the compression to work below 320x240
679 * Fortunately at these resolutions the bandwidth
680 * is sufficient to push raw frames at ~20fps */
681 reg_w_val(dev, 0x8500, mode);
682 } /* -- qq@kuku.eu.org */
683 reg_w_buf(gspca_dev, 0x8307, Reg8307, 2);
684 reg_w_val(gspca_dev->dev, 0x8700, Clck);
685 /* 0x8f 0x85 0x27 clock */
686 reg_w_val(gspca_dev->dev, 0x8112, 0x1e | 0x20);
687 reg_w_val(gspca_dev->dev, 0x850b, 0x03);
688 setcontrast(gspca_dev);
689 setwhite(gspca_dev);
Jean-Francois Moined698dc62008-09-03 16:47:51 -0300690 setautogain(gspca_dev);
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300691}
692static void sd_start_72a(struct gspca_dev *gspca_dev)
693{
694 struct usb_device *dev = gspca_dev->dev;
695 int Clck;
696 int mode;
697
698 mode = gspca_dev->cam.cam_mode[(int) gspca_dev->curr_mode].priv;
699 switch (mode) {
700 default:
701/* case 0:
702 case 1: */
703 Clck = 0x25;
704 break;
705 case 2:
706 Clck = 0x22;
707 break;
708 case 3:
709 Clck = 0x21;
710 break;
711 }
712 reg_w_val(dev, 0x8500, mode); /* mode */
713 reg_w_val(dev, 0x8700, Clck); /* 0x27 clock */
714 reg_w_val(dev, 0x8112, 0x10 | 0x20);
715 setautogain(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300716}
717
718static void sd_stopN(struct gspca_dev *gspca_dev)
719{
Jean-Francois Moined698dc62008-09-03 16:47:51 -0300720 struct sd *sd = (struct sd *) gspca_dev;
721
722 if (sd->chip_revision == Rev012A) {
723 reg_w_val(gspca_dev->dev, 0x8112, 0x0e);
724 } else {
725 reg_w_val(gspca_dev->dev, 0x8112, 0x20);
726/* reg_w_val(gspca_dev->dev, 0x8102, 0x00); ?? */
727 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300728}
729
730static void sd_stop0(struct gspca_dev *gspca_dev)
731{
Jean-Francois Moined698dc62008-09-03 16:47:51 -0300732 struct sd *sd = (struct sd *) gspca_dev;
733
734 if (sd->chip_revision == Rev012A) {
735 reg_w_val(gspca_dev->dev, 0x8118, 0x29);
736 reg_w_val(gspca_dev->dev, 0x8114, 0x08);
737 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300738}
739
740/* this function is called at close time */
741static void sd_close(struct gspca_dev *gspca_dev)
742{
743 reg_w_val(gspca_dev->dev, 0x8114, 0);
744}
745
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -0300746static void do_autogain(struct gspca_dev *gspca_dev)
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300747{
748 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -0300749 int expotimes;
750 int pixelclk;
751 int gainG;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300752 __u8 R, Gr, Gb, B;
753 int y;
754 __u8 luma_mean = 110;
755 __u8 luma_delta = 20;
756 __u8 spring = 4;
Jean-Francois Moined698dc62008-09-03 16:47:51 -0300757 __u8 reg8339[2];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300758
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -0300759 if (sd->ag_cnt < 0)
760 return;
761 if (--sd->ag_cnt >= 0)
762 return;
763 sd->ag_cnt = AG_CNT_START;
764
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300765 switch (sd->chip_revision) {
766 case Rev072A:
Jean-Francois Moine739570b2008-07-14 09:38:29 -0300767 reg_r(gspca_dev, 0x8621, 1);
768 Gr = gspca_dev->usb_buf[0];
769 reg_r(gspca_dev, 0x8622, 1);
770 R = gspca_dev->usb_buf[0];
771 reg_r(gspca_dev, 0x8623, 1);
772 B = gspca_dev->usb_buf[0];
773 reg_r(gspca_dev, 0x8624, 1);
774 Gb = gspca_dev->usb_buf[0];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300775 y = (77 * R + 75 * (Gr + Gb) + 29 * B) >> 8;
776 /* u= (128*B-(43*(Gr+Gb+R))) >> 8; */
777 /* v= (128*R-(53*(Gr+Gb))-21*B) >> 8; */
778 /* PDEBUG(D_CONF,"reading Y %d U %d V %d ",y,u,v); */
779
780 if (y < luma_mean - luma_delta ||
781 y > luma_mean + luma_delta) {
782 expotimes = i2c_read(gspca_dev, 0x09, 0x10);
783 pixelclk = 0x0800;
784 expotimes = expotimes & 0x07ff;
785 /* PDEBUG(D_PACK,
786 "Exposition Times 0x%03X Clock 0x%04X ",
787 expotimes,pixelclk); */
788 gainG = i2c_read(gspca_dev, 0x35, 0x10);
789 /* PDEBUG(D_PACK,
790 "reading Gain register %d", gainG); */
791
792 expotimes += (luma_mean - y) >> spring;
793 gainG += (luma_mean - y) / 50;
794 /* PDEBUG(D_PACK,
795 "compute expotimes %d gain %d",
796 expotimes,gainG); */
797
798 if (gainG > 0x3f)
799 gainG = 0x3f;
800 else if (gainG < 4)
801 gainG = 3;
802 i2c_write(gspca_dev, gainG, 0x35);
803
804 if (expotimes >= 0x0256)
805 expotimes = 0x0256;
806 else if (expotimes < 4)
807 expotimes = 3;
808 i2c_write(gspca_dev, expotimes | pixelclk, 0x09);
809 }
810 break;
811 case Rev012A:
Jean-Francois Moined698dc62008-09-03 16:47:51 -0300812 reg_r(gspca_dev, 0x8330, 2);
813 if (gspca_dev->usb_buf[1] > 0x08) {
814 reg8339[0] = ++sd->expo12a;
815 reg8339[1] = 0;
816 reg_w_buf(gspca_dev, 0x8339, reg8339, 2);
817 } else if (gspca_dev->usb_buf[1] < 0x02) {
818 reg8339[0] = --sd->expo12a;
819 reg8339[1] = 0;
820 reg_w_buf(gspca_dev, 0x8339, reg8339, 2);
821 }
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300822 break;
823 }
824}
825
826static void sd_pkt_scan(struct gspca_dev *gspca_dev,
827 struct gspca_frame *frame, /* target */
828 __u8 *data, /* isoc packet */
829 int len) /* iso packet length */
830{
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300831 switch (data[0]) {
832 case 0: /* start of frame */
833 frame = gspca_frame_add(gspca_dev, LAST_PACKET, frame,
834 data, 0);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300835 data += SPCA561_OFFSET_DATA;
836 len -= SPCA561_OFFSET_DATA;
837 if (data[1] & 0x10) {
838 /* compressed bayer */
839 gspca_frame_add(gspca_dev, FIRST_PACKET,
840 frame, data, len);
841 } else {
Hans de Goede54ab92c2008-07-03 11:20:58 -0300842 /* raw bayer (with a header, which we skip) */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300843 data += 20;
844 len -= 20;
845 gspca_frame_add(gspca_dev, FIRST_PACKET,
846 frame, data, len);
847 }
848 return;
849 case 0xff: /* drop */
850/* gspca_dev->last_packet_type = DISCARD_PACKET; */
851 return;
852 }
853 data++;
854 len--;
855 gspca_frame_add(gspca_dev, INTER_PACKET, frame, data, len);
856}
857
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300858/* rev 72a only */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300859static void setbrightness(struct gspca_dev *gspca_dev)
860{
861 struct sd *sd = (struct sd *) gspca_dev;
862 __u8 value;
863
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300864 value = sd->brightness;
865 reg_w_val(gspca_dev->dev, 0x8611, value);
866 reg_w_val(gspca_dev->dev, 0x8612, value);
867 reg_w_val(gspca_dev->dev, 0x8613, value);
868 reg_w_val(gspca_dev->dev, 0x8614, value);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300869}
870
871static void getbrightness(struct gspca_dev *gspca_dev)
872{
873 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300874 __u16 tot;
875
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300876 tot = 0;
877 reg_r(gspca_dev, 0x8611, 1);
878 tot += gspca_dev->usb_buf[0];
879 reg_r(gspca_dev, 0x8612, 1);
880 tot += gspca_dev->usb_buf[0];
881 reg_r(gspca_dev, 0x8613, 1);
882 tot += gspca_dev->usb_buf[0];
883 reg_r(gspca_dev, 0x8614, 1);
884 tot += gspca_dev->usb_buf[0];
885 sd->brightness = tot >> 2;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300886}
887
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300888/* rev72a only */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300889static void getcontrast(struct gspca_dev *gspca_dev)
890{
891 struct sd *sd = (struct sd *) gspca_dev;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300892 __u16 tot;
893
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300894 tot = 0;
895 reg_r(gspca_dev, 0x8651, 1);
896 tot += gspca_dev->usb_buf[0];
897 reg_r(gspca_dev, 0x8652, 1);
898 tot += gspca_dev->usb_buf[0];
899 reg_r(gspca_dev, 0x8653, 1);
900 tot += gspca_dev->usb_buf[0];
901 reg_r(gspca_dev, 0x8654, 1);
902 tot += gspca_dev->usb_buf[0];
903 sd->contrast = tot << 6;
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300904 PDEBUG(D_CONF, "get contrast %d", sd->contrast);
905}
906
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300907/* rev 72a only */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300908static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val)
909{
910 struct sd *sd = (struct sd *) gspca_dev;
911
912 sd->brightness = val;
913 if (gspca_dev->streaming)
914 setbrightness(gspca_dev);
915 return 0;
916}
917
918static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val)
919{
920 struct sd *sd = (struct sd *) gspca_dev;
921
922 getbrightness(gspca_dev);
923 *val = sd->brightness;
924 return 0;
925}
926
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300927/* rev 72a only */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300928static int sd_setcontrast(struct gspca_dev *gspca_dev, __s32 val)
929{
930 struct sd *sd = (struct sd *) gspca_dev;
931
932 sd->contrast = val;
933 if (gspca_dev->streaming)
934 setcontrast(gspca_dev);
935 return 0;
936}
937
938static int sd_getcontrast(struct gspca_dev *gspca_dev, __s32 *val)
939{
940 struct sd *sd = (struct sd *) gspca_dev;
941
942 getcontrast(gspca_dev);
943 *val = sd->contrast;
944 return 0;
945}
946
947static int sd_setautogain(struct gspca_dev *gspca_dev, __s32 val)
948{
949 struct sd *sd = (struct sd *) gspca_dev;
950
951 sd->autogain = val;
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -0300952 if (gspca_dev->streaming)
953 setautogain(gspca_dev);
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300954 return 0;
955}
956
957static int sd_getautogain(struct gspca_dev *gspca_dev, __s32 *val)
958{
959 struct sd *sd = (struct sd *) gspca_dev;
960
961 *val = sd->autogain;
962 return 0;
963}
964
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300965/* rev12a only */
Jean-Francois Moine6c9d3c52008-09-03 16:47:30 -0300966static int sd_setwhite(struct gspca_dev *gspca_dev, __s32 val)
967{
968 struct sd *sd = (struct sd *) gspca_dev;
969
970 sd->white = val;
971 if (gspca_dev->streaming)
972 setwhite(gspca_dev);
973 return 0;
974}
975
976static int sd_getwhite(struct gspca_dev *gspca_dev, __s32 *val)
977{
978 struct sd *sd = (struct sd *) gspca_dev;
979
980 *val = sd->white;
981 return 0;
982}
983
Jean-Francois Moine7879d452008-09-03 16:47:32 -0300984/* rev12a only */
985static int sd_setexposure(struct gspca_dev *gspca_dev, __s32 val)
986{
987 struct sd *sd = (struct sd *) gspca_dev;
988
989 sd->exposure = val;
990 if (gspca_dev->streaming)
991 setexposure(gspca_dev);
992 return 0;
993}
994
995static int sd_getexposure(struct gspca_dev *gspca_dev, __s32 *val)
996{
997 struct sd *sd = (struct sd *) gspca_dev;
998
999 *val = sd->exposure;
1000 return 0;
1001}
1002
1003/* rev12a only */
1004static int sd_setgain(struct gspca_dev *gspca_dev, __s32 val)
1005{
1006 struct sd *sd = (struct sd *) gspca_dev;
1007
1008 sd->gain = val;
1009 if (gspca_dev->streaming)
1010 setgain(gspca_dev);
1011 return 0;
1012}
1013
1014static int sd_getgain(struct gspca_dev *gspca_dev, __s32 *val)
1015{
1016 struct sd *sd = (struct sd *) gspca_dev;
1017
1018 *val = sd->gain;
1019 return 0;
1020}
1021
1022/* control tables */
1023static struct ctrl sd_ctrls_12a[] = {
1024 {
1025 {
1026 .id = V4L2_CID_DO_WHITE_BALANCE,
1027 .type = V4L2_CTRL_TYPE_INTEGER,
1028 .name = "While Balance",
1029 .minimum = WHITE_MIN,
1030 .maximum = WHITE_MAX,
1031 .step = 1,
1032 .default_value = WHITE_DEF,
1033 },
1034 .set = sd_setwhite,
1035 .get = sd_getwhite,
1036 },
1037 {
1038 {
1039 .id = V4L2_CID_EXPOSURE,
1040 .type = V4L2_CTRL_TYPE_INTEGER,
1041 .name = "Exposure",
1042 .minimum = EXPOSURE_MIN,
1043 .maximum = EXPOSURE_MAX,
1044 .step = 1,
1045 .default_value = EXPOSURE_DEF,
1046 },
1047 .set = sd_setexposure,
1048 .get = sd_getexposure,
1049 },
1050 {
1051 {
1052 .id = V4L2_CID_AUTOGAIN,
1053 .type = V4L2_CTRL_TYPE_BOOLEAN,
1054 .name = "Auto Gain",
1055 .minimum = AUTOGAIN_MIN,
1056 .maximum = AUTOGAIN_MAX,
1057 .step = 1,
1058 .default_value = AUTOGAIN_DEF,
1059 },
1060 .set = sd_setautogain,
1061 .get = sd_getautogain,
1062 },
1063 {
1064 {
1065 .id = V4L2_CID_GAIN,
1066 .type = V4L2_CTRL_TYPE_INTEGER,
1067 .name = "Gain",
1068 .minimum = GAIN_MIN,
1069 .maximum = GAIN_MAX,
1070 .step = 1,
1071 .default_value = GAIN_DEF,
1072 },
1073 .set = sd_setgain,
1074 .get = sd_getgain,
1075 },
1076};
1077
1078static struct ctrl sd_ctrls_72a[] = {
1079 {
1080 {
1081 .id = V4L2_CID_BRIGHTNESS,
1082 .type = V4L2_CTRL_TYPE_INTEGER,
1083 .name = "Brightness",
1084 .minimum = BRIGHTNESS_MIN,
1085 .maximum = BRIGHTNESS_MAX,
1086 .step = 1,
1087 .default_value = BRIGHTNESS_DEF,
1088 },
1089 .set = sd_setbrightness,
1090 .get = sd_getbrightness,
1091 },
1092 {
1093 {
1094 .id = V4L2_CID_CONTRAST,
1095 .type = V4L2_CTRL_TYPE_INTEGER,
1096 .name = "Contrast",
1097 .minimum = CONTRAST_MIN,
1098 .maximum = CONTRAST_MAX,
1099 .step = 1,
1100 .default_value = CONTRAST_DEF,
1101 },
1102 .set = sd_setcontrast,
1103 .get = sd_getcontrast,
1104 },
1105 {
1106 {
1107 .id = V4L2_CID_AUTOGAIN,
1108 .type = V4L2_CTRL_TYPE_BOOLEAN,
1109 .name = "Auto Gain",
1110 .minimum = AUTOGAIN_MIN,
1111 .maximum = AUTOGAIN_MAX,
1112 .step = 1,
1113 .default_value = AUTOGAIN_DEF,
1114 },
1115 .set = sd_setautogain,
1116 .get = sd_getautogain,
1117 },
1118};
1119
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001120/* sub-driver description */
Jean-Francois Moine7879d452008-09-03 16:47:32 -03001121static const struct sd_desc sd_desc_12a = {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001122 .name = MODULE_NAME,
Jean-Francois Moine7879d452008-09-03 16:47:32 -03001123 .ctrls = sd_ctrls_12a,
1124 .nctrls = ARRAY_SIZE(sd_ctrls_12a),
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001125 .config = sd_config,
Jean-Francois Moine7879d452008-09-03 16:47:32 -03001126 .open = sd_open_12a,
1127 .start = sd_start_12a,
1128 .stopN = sd_stopN,
1129 .stop0 = sd_stop0,
1130 .close = sd_close,
1131 .pkt_scan = sd_pkt_scan,
1132/* .dq_callback = do_autogain, * fixme */
1133};
1134static const struct sd_desc sd_desc_72a = {
1135 .name = MODULE_NAME,
1136 .ctrls = sd_ctrls_72a,
1137 .nctrls = ARRAY_SIZE(sd_ctrls_72a),
1138 .config = sd_config,
1139 .open = sd_open_72a,
1140 .start = sd_start_72a,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001141 .stopN = sd_stopN,
1142 .stop0 = sd_stop0,
1143 .close = sd_close,
1144 .pkt_scan = sd_pkt_scan,
Jean-Francois Moinecebf3b62008-08-03 07:52:53 -03001145 .dq_callback = do_autogain,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001146};
Jean-Francois Moine7879d452008-09-03 16:47:32 -03001147static const struct sd_desc *sd_desc[2] = {
1148 &sd_desc_12a,
1149 &sd_desc_72a
1150};
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001151
1152/* -- module initialisation -- */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -03001153static const __devinitdata struct usb_device_id device_table[] = {
Jean-Francois Moine87581aa2008-07-26 14:30:01 -03001154 {USB_DEVICE(0x041e, 0x401a), .driver_info = Rev072A},
1155 {USB_DEVICE(0x041e, 0x403b), .driver_info = Rev012A},
1156 {USB_DEVICE(0x0458, 0x7004), .driver_info = Rev072A},
1157 {USB_DEVICE(0x046d, 0x0928), .driver_info = Rev012A},
1158 {USB_DEVICE(0x046d, 0x0929), .driver_info = Rev012A},
1159 {USB_DEVICE(0x046d, 0x092a), .driver_info = Rev012A},
1160 {USB_DEVICE(0x046d, 0x092b), .driver_info = Rev012A},
1161 {USB_DEVICE(0x046d, 0x092c), .driver_info = Rev012A},
1162 {USB_DEVICE(0x046d, 0x092d), .driver_info = Rev012A},
1163 {USB_DEVICE(0x046d, 0x092e), .driver_info = Rev012A},
1164 {USB_DEVICE(0x046d, 0x092f), .driver_info = Rev012A},
1165 {USB_DEVICE(0x04fc, 0x0561), .driver_info = Rev072A},
1166 {USB_DEVICE(0x060b, 0xa001), .driver_info = Rev072A},
1167 {USB_DEVICE(0x10fd, 0x7e50), .driver_info = Rev072A},
1168 {USB_DEVICE(0xabcd, 0xcdee), .driver_info = Rev072A},
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001169 {}
1170};
1171
1172MODULE_DEVICE_TABLE(usb, device_table);
1173
1174/* -- device connect -- */
1175static int sd_probe(struct usb_interface *intf,
1176 const struct usb_device_id *id)
1177{
Jean-Francois Moine7879d452008-09-03 16:47:32 -03001178 return gspca_dev_probe(intf, id,
1179 sd_desc[id->driver_info],
1180 sizeof(struct sd),
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001181 THIS_MODULE);
1182}
1183
1184static struct usb_driver sd_driver = {
1185 .name = MODULE_NAME,
1186 .id_table = device_table,
1187 .probe = sd_probe,
1188 .disconnect = gspca_disconnect,
1189};
1190
1191/* -- module insert / remove -- */
1192static int __init sd_mod_init(void)
1193{
1194 if (usb_register(&sd_driver) < 0)
1195 return -1;
Jean-Francois Moine10b0e962008-07-22 05:35:10 -03001196 PDEBUG(D_PROBE, "registered");
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -03001197 return 0;
1198}
1199static void __exit sd_mod_exit(void)
1200{
1201 usb_deregister(&sd_driver);
1202 PDEBUG(D_PROBE, "deregistered");
1203}
1204
1205module_init(sd_mod_init);
1206module_exit(sd_mod_exit);