Merge branch 'v6v7' into devel
[linux/fpc-iii.git] / drivers / media / video / gspca / ov534.c
blob04da228027360331195ebb9f38c8d77e74fc9ef5
1 /*
2 * ov534-ov772x gspca driver
4 * Copyright (C) 2008 Antonio Ospite <ospite@studenti.unina.it>
5 * Copyright (C) 2008 Jim Paris <jim@jtan.com>
6 * Copyright (C) 2009 Jean-Francois Moine http://moinejf.free.fr
8 * Based on a prototype written by Mark Ferrell <majortrips@gmail.com>
9 * USB protocol reverse engineered by Jim Paris <jim@jtan.com>
10 * https://jim.sh/svn/jim/devl/playstation/ps3/eye/test/
12 * PS3 Eye camera enhanced by Richard Kaswy http://kaswy.free.fr
13 * PS3 Eye camera - brightness, contrast, awb, agc, aec controls
14 * added by Max Thrun <bear24rw@gmail.com>
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * any later version.
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 #define MODULE_NAME "ov534"
33 #include "gspca.h"
35 #define OV534_REG_ADDRESS 0xf1 /* sensor address */
36 #define OV534_REG_SUBADDR 0xf2
37 #define OV534_REG_WRITE 0xf3
38 #define OV534_REG_READ 0xf4
39 #define OV534_REG_OPERATION 0xf5
40 #define OV534_REG_STATUS 0xf6
42 #define OV534_OP_WRITE_3 0x37
43 #define OV534_OP_WRITE_2 0x33
44 #define OV534_OP_READ_2 0xf9
46 #define CTRL_TIMEOUT 500
48 MODULE_AUTHOR("Antonio Ospite <ospite@studenti.unina.it>");
49 MODULE_DESCRIPTION("GSPCA/OV534 USB Camera Driver");
50 MODULE_LICENSE("GPL");
52 /* specific webcam descriptor */
53 struct sd {
54 struct gspca_dev gspca_dev; /* !! must be the first item */
55 __u32 last_pts;
56 u16 last_fid;
57 u8 frame_rate;
59 u8 brightness;
60 u8 contrast;
61 u8 gain;
62 u8 exposure;
63 u8 agc;
64 u8 awb;
65 u8 aec;
66 s8 sharpness;
67 u8 hflip;
68 u8 vflip;
69 u8 freqfltr;
72 /* V4L2 controls supported by the driver */
73 static int sd_setgain(struct gspca_dev *gspca_dev, __s32 val);
74 static int sd_getgain(struct gspca_dev *gspca_dev, __s32 *val);
75 static int sd_setexposure(struct gspca_dev *gspca_dev, __s32 val);
76 static int sd_getexposure(struct gspca_dev *gspca_dev, __s32 *val);
77 static int sd_setagc(struct gspca_dev *gspca_dev, __s32 val);
78 static int sd_getagc(struct gspca_dev *gspca_dev, __s32 *val);
79 static int sd_setsharpness(struct gspca_dev *gspca_dev, __s32 val);
80 static int sd_getsharpness(struct gspca_dev *gspca_dev, __s32 *val);
81 static int sd_sethflip(struct gspca_dev *gspca_dev, __s32 val);
82 static int sd_gethflip(struct gspca_dev *gspca_dev, __s32 *val);
83 static int sd_setvflip(struct gspca_dev *gspca_dev, __s32 val);
84 static int sd_getvflip(struct gspca_dev *gspca_dev, __s32 *val);
85 static int sd_setawb(struct gspca_dev *gspca_dev, __s32 val);
86 static int sd_getawb(struct gspca_dev *gspca_dev, __s32 *val);
87 static int sd_setaec(struct gspca_dev *gspca_dev, __s32 val);
88 static int sd_getaec(struct gspca_dev *gspca_dev, __s32 *val);
89 static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val);
90 static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val);
91 static int sd_setcontrast(struct gspca_dev *gspca_dev, __s32 val);
92 static int sd_getcontrast(struct gspca_dev *gspca_dev, __s32 *val);
93 static int sd_setfreqfltr(struct gspca_dev *gspca_dev, __s32 val);
94 static int sd_getfreqfltr(struct gspca_dev *gspca_dev, __s32 *val);
95 static int sd_querymenu(struct gspca_dev *gspca_dev,
96 struct v4l2_querymenu *menu);
98 static const struct ctrl sd_ctrls[] = {
99 { /* 0 */
101 .id = V4L2_CID_BRIGHTNESS,
102 .type = V4L2_CTRL_TYPE_INTEGER,
103 .name = "Brightness",
104 .minimum = 0,
105 .maximum = 255,
106 .step = 1,
107 #define BRIGHTNESS_DEF 0
108 .default_value = BRIGHTNESS_DEF,
110 .set = sd_setbrightness,
111 .get = sd_getbrightness,
113 { /* 1 */
115 .id = V4L2_CID_CONTRAST,
116 .type = V4L2_CTRL_TYPE_INTEGER,
117 .name = "Contrast",
118 .minimum = 0,
119 .maximum = 255,
120 .step = 1,
121 #define CONTRAST_DEF 32
122 .default_value = CONTRAST_DEF,
124 .set = sd_setcontrast,
125 .get = sd_getcontrast,
127 { /* 2 */
129 .id = V4L2_CID_GAIN,
130 .type = V4L2_CTRL_TYPE_INTEGER,
131 .name = "Main Gain",
132 .minimum = 0,
133 .maximum = 63,
134 .step = 1,
135 #define GAIN_DEF 20
136 .default_value = GAIN_DEF,
138 .set = sd_setgain,
139 .get = sd_getgain,
141 { /* 3 */
143 .id = V4L2_CID_EXPOSURE,
144 .type = V4L2_CTRL_TYPE_INTEGER,
145 .name = "Exposure",
146 .minimum = 0,
147 .maximum = 255,
148 .step = 1,
149 #define EXPO_DEF 120
150 .default_value = EXPO_DEF,
152 .set = sd_setexposure,
153 .get = sd_getexposure,
155 { /* 4 */
157 .id = V4L2_CID_AUTOGAIN,
158 .type = V4L2_CTRL_TYPE_BOOLEAN,
159 .name = "Auto Gain",
160 .minimum = 0,
161 .maximum = 1,
162 .step = 1,
163 #define AGC_DEF 1
164 .default_value = AGC_DEF,
166 .set = sd_setagc,
167 .get = sd_getagc,
169 #define AWB_IDX 5
170 { /* 5 */
172 .id = V4L2_CID_AUTO_WHITE_BALANCE,
173 .type = V4L2_CTRL_TYPE_BOOLEAN,
174 .name = "Auto White Balance",
175 .minimum = 0,
176 .maximum = 1,
177 .step = 1,
178 #define AWB_DEF 1
179 .default_value = AWB_DEF,
181 .set = sd_setawb,
182 .get = sd_getawb,
184 { /* 6 */
186 .id = V4L2_CID_EXPOSURE_AUTO,
187 .type = V4L2_CTRL_TYPE_BOOLEAN,
188 .name = "Auto Exposure",
189 .minimum = 0,
190 .maximum = 1,
191 .step = 1,
192 #define AEC_DEF 1
193 .default_value = AEC_DEF,
195 .set = sd_setaec,
196 .get = sd_getaec,
198 { /* 7 */
200 .id = V4L2_CID_SHARPNESS,
201 .type = V4L2_CTRL_TYPE_INTEGER,
202 .name = "Sharpness",
203 .minimum = 0,
204 .maximum = 63,
205 .step = 1,
206 #define SHARPNESS_DEF 0
207 .default_value = SHARPNESS_DEF,
209 .set = sd_setsharpness,
210 .get = sd_getsharpness,
212 { /* 8 */
214 .id = V4L2_CID_HFLIP,
215 .type = V4L2_CTRL_TYPE_BOOLEAN,
216 .name = "HFlip",
217 .minimum = 0,
218 .maximum = 1,
219 .step = 1,
220 #define HFLIP_DEF 0
221 .default_value = HFLIP_DEF,
223 .set = sd_sethflip,
224 .get = sd_gethflip,
226 { /* 9 */
228 .id = V4L2_CID_VFLIP,
229 .type = V4L2_CTRL_TYPE_BOOLEAN,
230 .name = "VFlip",
231 .minimum = 0,
232 .maximum = 1,
233 .step = 1,
234 #define VFLIP_DEF 0
235 .default_value = VFLIP_DEF,
237 .set = sd_setvflip,
238 .get = sd_getvflip,
240 { /* 10 */
242 .id = V4L2_CID_POWER_LINE_FREQUENCY,
243 .type = V4L2_CTRL_TYPE_MENU,
244 .name = "Light Frequency Filter",
245 .minimum = 0,
246 .maximum = 1,
247 .step = 1,
248 #define FREQFLTR_DEF 0
249 .default_value = FREQFLTR_DEF,
251 .set = sd_setfreqfltr,
252 .get = sd_getfreqfltr,
256 static const struct v4l2_pix_format ov772x_mode[] = {
257 {320, 240, V4L2_PIX_FMT_YUYV, V4L2_FIELD_NONE,
258 .bytesperline = 320 * 2,
259 .sizeimage = 320 * 240 * 2,
260 .colorspace = V4L2_COLORSPACE_SRGB,
261 .priv = 1},
262 {640, 480, V4L2_PIX_FMT_YUYV, V4L2_FIELD_NONE,
263 .bytesperline = 640 * 2,
264 .sizeimage = 640 * 480 * 2,
265 .colorspace = V4L2_COLORSPACE_SRGB,
266 .priv = 0},
269 static const u8 qvga_rates[] = {125, 100, 75, 60, 50, 40, 30};
270 static const u8 vga_rates[] = {60, 50, 40, 30, 15};
272 static const struct framerates ov772x_framerates[] = {
273 { /* 320x240 */
274 .rates = qvga_rates,
275 .nrates = ARRAY_SIZE(qvga_rates),
277 { /* 640x480 */
278 .rates = vga_rates,
279 .nrates = ARRAY_SIZE(vga_rates),
283 static const u8 bridge_init[][2] = {
284 { 0xc2, 0x0c },
285 { 0x88, 0xf8 },
286 { 0xc3, 0x69 },
287 { 0x89, 0xff },
288 { 0x76, 0x03 },
289 { 0x92, 0x01 },
290 { 0x93, 0x18 },
291 { 0x94, 0x10 },
292 { 0x95, 0x10 },
293 { 0xe2, 0x00 },
294 { 0xe7, 0x3e },
296 { 0x96, 0x00 },
298 { 0x97, 0x20 },
299 { 0x97, 0x20 },
300 { 0x97, 0x20 },
301 { 0x97, 0x0a },
302 { 0x97, 0x3f },
303 { 0x97, 0x4a },
304 { 0x97, 0x20 },
305 { 0x97, 0x15 },
306 { 0x97, 0x0b },
308 { 0x8e, 0x40 },
309 { 0x1f, 0x81 },
310 { 0x34, 0x05 },
311 { 0xe3, 0x04 },
312 { 0x88, 0x00 },
313 { 0x89, 0x00 },
314 { 0x76, 0x00 },
315 { 0xe7, 0x2e },
316 { 0x31, 0xf9 },
317 { 0x25, 0x42 },
318 { 0x21, 0xf0 },
320 { 0x1c, 0x00 },
321 { 0x1d, 0x40 },
322 { 0x1d, 0x02 }, /* payload size 0x0200 * 4 = 2048 bytes */
323 { 0x1d, 0x00 }, /* payload size */
325 { 0x1d, 0x02 }, /* frame size 0x025800 * 4 = 614400 */
326 { 0x1d, 0x58 }, /* frame size */
327 { 0x1d, 0x00 }, /* frame size */
329 { 0x1c, 0x0a },
330 { 0x1d, 0x08 }, /* turn on UVC header */
331 { 0x1d, 0x0e }, /* .. */
333 { 0x8d, 0x1c },
334 { 0x8e, 0x80 },
335 { 0xe5, 0x04 },
337 { 0xc0, 0x50 },
338 { 0xc1, 0x3c },
339 { 0xc2, 0x0c },
341 static const u8 sensor_init[][2] = {
342 { 0x12, 0x80 },
343 { 0x11, 0x01 },
344 /*fixme: better have a delay?*/
345 { 0x11, 0x01 },
346 { 0x11, 0x01 },
347 { 0x11, 0x01 },
348 { 0x11, 0x01 },
349 { 0x11, 0x01 },
350 { 0x11, 0x01 },
351 { 0x11, 0x01 },
352 { 0x11, 0x01 },
353 { 0x11, 0x01 },
354 { 0x11, 0x01 },
356 { 0x3d, 0x03 },
357 { 0x17, 0x26 },
358 { 0x18, 0xa0 },
359 { 0x19, 0x07 },
360 { 0x1a, 0xf0 },
361 { 0x32, 0x00 },
362 { 0x29, 0xa0 },
363 { 0x2c, 0xf0 },
364 { 0x65, 0x20 },
365 { 0x11, 0x01 },
366 { 0x42, 0x7f },
367 { 0x63, 0xaa }, /* AWB - was e0 */
368 { 0x64, 0xff },
369 { 0x66, 0x00 },
370 { 0x13, 0xf0 }, /* com8 */
371 { 0x0d, 0x41 },
372 { 0x0f, 0xc5 },
373 { 0x14, 0x11 },
375 { 0x22, 0x7f },
376 { 0x23, 0x03 },
377 { 0x24, 0x40 },
378 { 0x25, 0x30 },
379 { 0x26, 0xa1 },
380 { 0x2a, 0x00 },
381 { 0x2b, 0x00 },
382 { 0x6b, 0xaa },
383 { 0x13, 0xff }, /* AWB */
385 { 0x90, 0x05 },
386 { 0x91, 0x01 },
387 { 0x92, 0x03 },
388 { 0x93, 0x00 },
389 { 0x94, 0x60 },
390 { 0x95, 0x3c },
391 { 0x96, 0x24 },
392 { 0x97, 0x1e },
393 { 0x98, 0x62 },
394 { 0x99, 0x80 },
395 { 0x9a, 0x1e },
396 { 0x9b, 0x08 },
397 { 0x9c, 0x20 },
398 { 0x9e, 0x81 },
400 { 0xa6, 0x04 },
401 { 0x7e, 0x0c },
402 { 0x7f, 0x16 },
403 { 0x80, 0x2a },
404 { 0x81, 0x4e },
405 { 0x82, 0x61 },
406 { 0x83, 0x6f },
407 { 0x84, 0x7b },
408 { 0x85, 0x86 },
409 { 0x86, 0x8e },
410 { 0x87, 0x97 },
411 { 0x88, 0xa4 },
412 { 0x89, 0xaf },
413 { 0x8a, 0xc5 },
414 { 0x8b, 0xd7 },
415 { 0x8c, 0xe8 },
416 { 0x8d, 0x20 },
418 { 0x0c, 0x90 },
420 { 0x2b, 0x00 },
421 { 0x22, 0x7f },
422 { 0x23, 0x03 },
423 { 0x11, 0x01 },
424 { 0x0c, 0xd0 },
425 { 0x64, 0xff },
426 { 0x0d, 0x41 },
428 { 0x14, 0x41 },
429 { 0x0e, 0xcd },
430 { 0xac, 0xbf },
431 { 0x8e, 0x00 }, /* De-noise threshold */
432 { 0x0c, 0xd0 }
434 static const u8 bridge_start_vga[][2] = {
435 {0x1c, 0x00},
436 {0x1d, 0x40},
437 {0x1d, 0x02},
438 {0x1d, 0x00},
439 {0x1d, 0x02},
440 {0x1d, 0x58},
441 {0x1d, 0x00},
442 {0xc0, 0x50},
443 {0xc1, 0x3c},
445 static const u8 sensor_start_vga[][2] = {
446 {0x12, 0x00},
447 {0x17, 0x26},
448 {0x18, 0xa0},
449 {0x19, 0x07},
450 {0x1a, 0xf0},
451 {0x29, 0xa0},
452 {0x2c, 0xf0},
453 {0x65, 0x20},
455 static const u8 bridge_start_qvga[][2] = {
456 {0x1c, 0x00},
457 {0x1d, 0x40},
458 {0x1d, 0x02},
459 {0x1d, 0x00},
460 {0x1d, 0x01},
461 {0x1d, 0x4b},
462 {0x1d, 0x00},
463 {0xc0, 0x28},
464 {0xc1, 0x1e},
466 static const u8 sensor_start_qvga[][2] = {
467 {0x12, 0x40},
468 {0x17, 0x3f},
469 {0x18, 0x50},
470 {0x19, 0x03},
471 {0x1a, 0x78},
472 {0x29, 0x50},
473 {0x2c, 0x78},
474 {0x65, 0x2f},
477 static void ov534_reg_write(struct gspca_dev *gspca_dev, u16 reg, u8 val)
479 struct usb_device *udev = gspca_dev->dev;
480 int ret;
482 if (gspca_dev->usb_err < 0)
483 return;
485 PDEBUG(D_USBO, "SET 01 0000 %04x %02x", reg, val);
486 gspca_dev->usb_buf[0] = val;
487 ret = usb_control_msg(udev,
488 usb_sndctrlpipe(udev, 0),
489 0x01,
490 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
491 0x00, reg, gspca_dev->usb_buf, 1, CTRL_TIMEOUT);
492 if (ret < 0) {
493 err("write failed %d", ret);
494 gspca_dev->usb_err = ret;
498 static u8 ov534_reg_read(struct gspca_dev *gspca_dev, u16 reg)
500 struct usb_device *udev = gspca_dev->dev;
501 int ret;
503 if (gspca_dev->usb_err < 0)
504 return 0;
505 ret = usb_control_msg(udev,
506 usb_rcvctrlpipe(udev, 0),
507 0x01,
508 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
509 0x00, reg, gspca_dev->usb_buf, 1, CTRL_TIMEOUT);
510 PDEBUG(D_USBI, "GET 01 0000 %04x %02x", reg, gspca_dev->usb_buf[0]);
511 if (ret < 0) {
512 err("read failed %d", ret);
513 gspca_dev->usb_err = ret;
515 return gspca_dev->usb_buf[0];
518 /* Two bits control LED: 0x21 bit 7 and 0x23 bit 7.
519 * (direction and output)? */
520 static void ov534_set_led(struct gspca_dev *gspca_dev, int status)
522 u8 data;
524 PDEBUG(D_CONF, "led status: %d", status);
526 data = ov534_reg_read(gspca_dev, 0x21);
527 data |= 0x80;
528 ov534_reg_write(gspca_dev, 0x21, data);
530 data = ov534_reg_read(gspca_dev, 0x23);
531 if (status)
532 data |= 0x80;
533 else
534 data &= ~0x80;
536 ov534_reg_write(gspca_dev, 0x23, data);
538 if (!status) {
539 data = ov534_reg_read(gspca_dev, 0x21);
540 data &= ~0x80;
541 ov534_reg_write(gspca_dev, 0x21, data);
545 static int sccb_check_status(struct gspca_dev *gspca_dev)
547 u8 data;
548 int i;
550 for (i = 0; i < 5; i++) {
551 data = ov534_reg_read(gspca_dev, OV534_REG_STATUS);
553 switch (data) {
554 case 0x00:
555 return 1;
556 case 0x04:
557 return 0;
558 case 0x03:
559 break;
560 default:
561 PDEBUG(D_ERR, "sccb status 0x%02x, attempt %d/5",
562 data, i + 1);
565 return 0;
568 static void sccb_reg_write(struct gspca_dev *gspca_dev, u8 reg, u8 val)
570 PDEBUG(D_USBO, "sccb write: %02x %02x", reg, val);
571 ov534_reg_write(gspca_dev, OV534_REG_SUBADDR, reg);
572 ov534_reg_write(gspca_dev, OV534_REG_WRITE, val);
573 ov534_reg_write(gspca_dev, OV534_REG_OPERATION, OV534_OP_WRITE_3);
575 if (!sccb_check_status(gspca_dev)) {
576 err("sccb_reg_write failed");
577 gspca_dev->usb_err = -EIO;
581 static u8 sccb_reg_read(struct gspca_dev *gspca_dev, u16 reg)
583 ov534_reg_write(gspca_dev, OV534_REG_SUBADDR, reg);
584 ov534_reg_write(gspca_dev, OV534_REG_OPERATION, OV534_OP_WRITE_2);
585 if (!sccb_check_status(gspca_dev))
586 err("sccb_reg_read failed 1");
588 ov534_reg_write(gspca_dev, OV534_REG_OPERATION, OV534_OP_READ_2);
589 if (!sccb_check_status(gspca_dev))
590 err("sccb_reg_read failed 2");
592 return ov534_reg_read(gspca_dev, OV534_REG_READ);
595 /* output a bridge sequence (reg - val) */
596 static void reg_w_array(struct gspca_dev *gspca_dev,
597 const u8 (*data)[2], int len)
599 while (--len >= 0) {
600 ov534_reg_write(gspca_dev, (*data)[0], (*data)[1]);
601 data++;
605 /* output a sensor sequence (reg - val) */
606 static void sccb_w_array(struct gspca_dev *gspca_dev,
607 const u8 (*data)[2], int len)
609 while (--len >= 0) {
610 if ((*data)[0] != 0xff) {
611 sccb_reg_write(gspca_dev, (*data)[0], (*data)[1]);
612 } else {
613 sccb_reg_read(gspca_dev, (*data)[1]);
614 sccb_reg_write(gspca_dev, 0xff, 0x00);
616 data++;
620 /* ov772x specific controls */
621 static void set_frame_rate(struct gspca_dev *gspca_dev)
623 struct sd *sd = (struct sd *) gspca_dev;
624 int i;
625 struct rate_s {
626 u8 fps;
627 u8 r11;
628 u8 r0d;
629 u8 re5;
631 const struct rate_s *r;
632 static const struct rate_s rate_0[] = { /* 640x480 */
633 {60, 0x01, 0xc1, 0x04},
634 {50, 0x01, 0x41, 0x02},
635 {40, 0x02, 0xc1, 0x04},
636 {30, 0x04, 0x81, 0x02},
637 {15, 0x03, 0x41, 0x04},
639 static const struct rate_s rate_1[] = { /* 320x240 */
640 {125, 0x02, 0x81, 0x02},
641 {100, 0x02, 0xc1, 0x04},
642 {75, 0x03, 0xc1, 0x04},
643 {60, 0x04, 0xc1, 0x04},
644 {50, 0x02, 0x41, 0x04},
645 {40, 0x03, 0x41, 0x04},
646 {30, 0x04, 0x41, 0x04},
649 if (gspca_dev->cam.cam_mode[gspca_dev->curr_mode].priv == 0) {
650 r = rate_0;
651 i = ARRAY_SIZE(rate_0);
652 } else {
653 r = rate_1;
654 i = ARRAY_SIZE(rate_1);
656 while (--i > 0) {
657 if (sd->frame_rate >= r->fps)
658 break;
659 r++;
662 sccb_reg_write(gspca_dev, 0x11, r->r11);
663 sccb_reg_write(gspca_dev, 0x0d, r->r0d);
664 ov534_reg_write(gspca_dev, 0xe5, r->re5);
666 PDEBUG(D_PROBE, "frame_rate: %d", r->fps);
669 static void setbrightness(struct gspca_dev *gspca_dev)
671 struct sd *sd = (struct sd *) gspca_dev;
673 sccb_reg_write(gspca_dev, 0x9b, sd->brightness);
676 static void setcontrast(struct gspca_dev *gspca_dev)
678 struct sd *sd = (struct sd *) gspca_dev;
680 sccb_reg_write(gspca_dev, 0x9c, sd->contrast);
683 static void setgain(struct gspca_dev *gspca_dev)
685 struct sd *sd = (struct sd *) gspca_dev;
686 u8 val;
688 if (sd->agc)
689 return;
691 val = sd->gain;
692 switch (val & 0x30) {
693 case 0x00:
694 val &= 0x0f;
695 break;
696 case 0x10:
697 val &= 0x0f;
698 val |= 0x30;
699 break;
700 case 0x20:
701 val &= 0x0f;
702 val |= 0x70;
703 break;
704 default:
705 /* case 0x30: */
706 val &= 0x0f;
707 val |= 0xf0;
708 break;
710 sccb_reg_write(gspca_dev, 0x00, val);
713 static void setexposure(struct gspca_dev *gspca_dev)
715 struct sd *sd = (struct sd *) gspca_dev;
716 u8 val;
718 if (sd->aec)
719 return;
721 /* 'val' is one byte and represents half of the exposure value we are
722 * going to set into registers, a two bytes value:
724 * MSB: ((u16) val << 1) >> 8 == val >> 7
725 * LSB: ((u16) val << 1) & 0xff == val << 1
727 val = sd->exposure;
728 sccb_reg_write(gspca_dev, 0x08, val >> 7);
729 sccb_reg_write(gspca_dev, 0x10, val << 1);
732 static void setagc(struct gspca_dev *gspca_dev)
734 struct sd *sd = (struct sd *) gspca_dev;
736 if (sd->agc) {
737 sccb_reg_write(gspca_dev, 0x13,
738 sccb_reg_read(gspca_dev, 0x13) | 0x04);
739 sccb_reg_write(gspca_dev, 0x64,
740 sccb_reg_read(gspca_dev, 0x64) | 0x03);
741 } else {
742 sccb_reg_write(gspca_dev, 0x13,
743 sccb_reg_read(gspca_dev, 0x13) & ~0x04);
744 sccb_reg_write(gspca_dev, 0x64,
745 sccb_reg_read(gspca_dev, 0x64) & ~0x03);
747 setgain(gspca_dev);
751 static void setawb(struct gspca_dev *gspca_dev)
753 struct sd *sd = (struct sd *) gspca_dev;
755 if (sd->awb) {
756 sccb_reg_write(gspca_dev, 0x13,
757 sccb_reg_read(gspca_dev, 0x13) | 0x02);
758 sccb_reg_write(gspca_dev, 0x63,
759 sccb_reg_read(gspca_dev, 0x63) | 0xc0);
760 } else {
761 sccb_reg_write(gspca_dev, 0x13,
762 sccb_reg_read(gspca_dev, 0x13) & ~0x02);
763 sccb_reg_write(gspca_dev, 0x63,
764 sccb_reg_read(gspca_dev, 0x63) & ~0xc0);
768 static void setaec(struct gspca_dev *gspca_dev)
770 struct sd *sd = (struct sd *) gspca_dev;
772 if (sd->aec)
773 sccb_reg_write(gspca_dev, 0x13,
774 sccb_reg_read(gspca_dev, 0x13) | 0x01);
775 else {
776 sccb_reg_write(gspca_dev, 0x13,
777 sccb_reg_read(gspca_dev, 0x13) & ~0x01);
778 setexposure(gspca_dev);
782 static void setsharpness(struct gspca_dev *gspca_dev)
784 struct sd *sd = (struct sd *) gspca_dev;
785 u8 val;
787 val = sd->sharpness;
788 sccb_reg_write(gspca_dev, 0x91, val); /* Auto de-noise threshold */
789 sccb_reg_write(gspca_dev, 0x8e, val); /* De-noise threshold */
792 static void sethflip(struct gspca_dev *gspca_dev)
794 struct sd *sd = (struct sd *) gspca_dev;
796 if (sd->hflip == 0)
797 sccb_reg_write(gspca_dev, 0x0c,
798 sccb_reg_read(gspca_dev, 0x0c) | 0x40);
799 else
800 sccb_reg_write(gspca_dev, 0x0c,
801 sccb_reg_read(gspca_dev, 0x0c) & ~0x40);
804 static void setvflip(struct gspca_dev *gspca_dev)
806 struct sd *sd = (struct sd *) gspca_dev;
808 if (sd->vflip == 0)
809 sccb_reg_write(gspca_dev, 0x0c,
810 sccb_reg_read(gspca_dev, 0x0c) | 0x80);
811 else
812 sccb_reg_write(gspca_dev, 0x0c,
813 sccb_reg_read(gspca_dev, 0x0c) & ~0x80);
816 static void setfreqfltr(struct gspca_dev *gspca_dev)
818 struct sd *sd = (struct sd *) gspca_dev;
820 if (sd->freqfltr == 0)
821 sccb_reg_write(gspca_dev, 0x2b, 0x00);
822 else
823 sccb_reg_write(gspca_dev, 0x2b, 0x9e);
827 /* this function is called at probe time */
828 static int sd_config(struct gspca_dev *gspca_dev,
829 const struct usb_device_id *id)
831 struct sd *sd = (struct sd *) gspca_dev;
832 struct cam *cam;
834 cam = &gspca_dev->cam;
836 cam->cam_mode = ov772x_mode;
837 cam->nmodes = ARRAY_SIZE(ov772x_mode);
838 cam->mode_framerates = ov772x_framerates;
840 cam->bulk = 1;
841 cam->bulk_size = 16384;
842 cam->bulk_nurbs = 2;
844 sd->frame_rate = 30;
846 sd->brightness = BRIGHTNESS_DEF;
847 sd->contrast = CONTRAST_DEF;
848 sd->gain = GAIN_DEF;
849 sd->exposure = EXPO_DEF;
850 #if AGC_DEF != 0
851 sd->agc = AGC_DEF;
852 #else
853 gspca_dev->ctrl_inac |= (1 << AWB_IDX);
854 #endif
855 sd->awb = AWB_DEF;
856 sd->aec = AEC_DEF;
857 sd->sharpness = SHARPNESS_DEF;
858 sd->hflip = HFLIP_DEF;
859 sd->vflip = VFLIP_DEF;
860 sd->freqfltr = FREQFLTR_DEF;
862 return 0;
865 /* this function is called at probe and resume time */
866 static int sd_init(struct gspca_dev *gspca_dev)
868 u16 sensor_id;
870 /* reset bridge */
871 ov534_reg_write(gspca_dev, 0xe7, 0x3a);
872 ov534_reg_write(gspca_dev, 0xe0, 0x08);
873 msleep(100);
875 /* initialize the sensor address */
876 ov534_reg_write(gspca_dev, OV534_REG_ADDRESS, 0x42);
878 /* reset sensor */
879 sccb_reg_write(gspca_dev, 0x12, 0x80);
880 msleep(10);
882 /* probe the sensor */
883 sccb_reg_read(gspca_dev, 0x0a);
884 sensor_id = sccb_reg_read(gspca_dev, 0x0a) << 8;
885 sccb_reg_read(gspca_dev, 0x0b);
886 sensor_id |= sccb_reg_read(gspca_dev, 0x0b);
887 PDEBUG(D_PROBE, "Sensor ID: %04x", sensor_id);
889 /* initialize */
890 reg_w_array(gspca_dev, bridge_init,
891 ARRAY_SIZE(bridge_init));
892 ov534_set_led(gspca_dev, 1);
893 sccb_w_array(gspca_dev, sensor_init,
894 ARRAY_SIZE(sensor_init));
895 ov534_reg_write(gspca_dev, 0xe0, 0x09);
896 ov534_set_led(gspca_dev, 0);
897 set_frame_rate(gspca_dev);
899 return gspca_dev->usb_err;
902 static int sd_start(struct gspca_dev *gspca_dev)
904 int mode;
906 mode = gspca_dev->cam.cam_mode[gspca_dev->curr_mode].priv;
907 if (mode != 0) { /* 320x240 */
908 reg_w_array(gspca_dev, bridge_start_qvga,
909 ARRAY_SIZE(bridge_start_qvga));
910 sccb_w_array(gspca_dev, sensor_start_qvga,
911 ARRAY_SIZE(sensor_start_qvga));
912 } else { /* 640x480 */
913 reg_w_array(gspca_dev, bridge_start_vga,
914 ARRAY_SIZE(bridge_start_vga));
915 sccb_w_array(gspca_dev, sensor_start_vga,
916 ARRAY_SIZE(sensor_start_vga));
918 set_frame_rate(gspca_dev);
920 setagc(gspca_dev);
921 setawb(gspca_dev);
922 setaec(gspca_dev);
923 setgain(gspca_dev);
924 setexposure(gspca_dev);
925 setbrightness(gspca_dev);
926 setcontrast(gspca_dev);
927 setsharpness(gspca_dev);
928 setvflip(gspca_dev);
929 sethflip(gspca_dev);
930 setfreqfltr(gspca_dev);
932 ov534_set_led(gspca_dev, 1);
933 ov534_reg_write(gspca_dev, 0xe0, 0x00);
934 return gspca_dev->usb_err;
937 static void sd_stopN(struct gspca_dev *gspca_dev)
939 ov534_reg_write(gspca_dev, 0xe0, 0x09);
940 ov534_set_led(gspca_dev, 0);
943 /* Values for bmHeaderInfo (Video and Still Image Payload Headers, 2.4.3.3) */
944 #define UVC_STREAM_EOH (1 << 7)
945 #define UVC_STREAM_ERR (1 << 6)
946 #define UVC_STREAM_STI (1 << 5)
947 #define UVC_STREAM_RES (1 << 4)
948 #define UVC_STREAM_SCR (1 << 3)
949 #define UVC_STREAM_PTS (1 << 2)
950 #define UVC_STREAM_EOF (1 << 1)
951 #define UVC_STREAM_FID (1 << 0)
953 static void sd_pkt_scan(struct gspca_dev *gspca_dev,
954 u8 *data, int len)
956 struct sd *sd = (struct sd *) gspca_dev;
957 __u32 this_pts;
958 u16 this_fid;
959 int remaining_len = len;
961 do {
962 len = min(remaining_len, 2048);
964 /* Payloads are prefixed with a UVC-style header. We
965 consider a frame to start when the FID toggles, or the PTS
966 changes. A frame ends when EOF is set, and we've received
967 the correct number of bytes. */
969 /* Verify UVC header. Header length is always 12 */
970 if (data[0] != 12 || len < 12) {
971 PDEBUG(D_PACK, "bad header");
972 goto discard;
975 /* Check errors */
976 if (data[1] & UVC_STREAM_ERR) {
977 PDEBUG(D_PACK, "payload error");
978 goto discard;
981 /* Extract PTS and FID */
982 if (!(data[1] & UVC_STREAM_PTS)) {
983 PDEBUG(D_PACK, "PTS not present");
984 goto discard;
986 this_pts = (data[5] << 24) | (data[4] << 16)
987 | (data[3] << 8) | data[2];
988 this_fid = (data[1] & UVC_STREAM_FID) ? 1 : 0;
990 /* If PTS or FID has changed, start a new frame. */
991 if (this_pts != sd->last_pts || this_fid != sd->last_fid) {
992 if (gspca_dev->last_packet_type == INTER_PACKET)
993 gspca_frame_add(gspca_dev, LAST_PACKET,
994 NULL, 0);
995 sd->last_pts = this_pts;
996 sd->last_fid = this_fid;
997 gspca_frame_add(gspca_dev, FIRST_PACKET,
998 data + 12, len - 12);
999 /* If this packet is marked as EOF, end the frame */
1000 } else if (data[1] & UVC_STREAM_EOF) {
1001 sd->last_pts = 0;
1002 if (gspca_dev->image_len + len - 12 !=
1003 gspca_dev->width * gspca_dev->height * 2) {
1004 PDEBUG(D_PACK, "wrong sized frame");
1005 goto discard;
1007 gspca_frame_add(gspca_dev, LAST_PACKET,
1008 data + 12, len - 12);
1009 } else {
1011 /* Add the data from this payload */
1012 gspca_frame_add(gspca_dev, INTER_PACKET,
1013 data + 12, len - 12);
1016 /* Done this payload */
1017 goto scan_next;
1019 discard:
1020 /* Discard data until a new frame starts. */
1021 gspca_dev->last_packet_type = DISCARD_PACKET;
1023 scan_next:
1024 remaining_len -= len;
1025 data += len;
1026 } while (remaining_len > 0);
1029 /* controls */
1030 static int sd_setgain(struct gspca_dev *gspca_dev, __s32 val)
1032 struct sd *sd = (struct sd *) gspca_dev;
1034 sd->gain = val;
1035 if (gspca_dev->streaming)
1036 setgain(gspca_dev);
1037 return 0;
1040 static int sd_getgain(struct gspca_dev *gspca_dev, __s32 *val)
1042 struct sd *sd = (struct sd *) gspca_dev;
1044 *val = sd->gain;
1045 return 0;
1048 static int sd_setexposure(struct gspca_dev *gspca_dev, __s32 val)
1050 struct sd *sd = (struct sd *) gspca_dev;
1052 sd->exposure = val;
1053 if (gspca_dev->streaming)
1054 setexposure(gspca_dev);
1055 return 0;
1058 static int sd_getexposure(struct gspca_dev *gspca_dev, __s32 *val)
1060 struct sd *sd = (struct sd *) gspca_dev;
1062 *val = sd->exposure;
1063 return 0;
1066 static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val)
1068 struct sd *sd = (struct sd *) gspca_dev;
1070 sd->brightness = val;
1071 if (gspca_dev->streaming)
1072 setbrightness(gspca_dev);
1073 return 0;
1076 static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val)
1078 struct sd *sd = (struct sd *) gspca_dev;
1080 *val = sd->brightness;
1081 return 0;
1084 static int sd_setcontrast(struct gspca_dev *gspca_dev, __s32 val)
1086 struct sd *sd = (struct sd *) gspca_dev;
1088 sd->contrast = val;
1089 if (gspca_dev->streaming)
1090 setcontrast(gspca_dev);
1091 return 0;
1094 static int sd_getcontrast(struct gspca_dev *gspca_dev, __s32 *val)
1096 struct sd *sd = (struct sd *) gspca_dev;
1098 *val = sd->contrast;
1099 return 0;
1102 static int sd_setagc(struct gspca_dev *gspca_dev, __s32 val)
1104 struct sd *sd = (struct sd *) gspca_dev;
1106 sd->agc = val;
1108 if (gspca_dev->streaming) {
1110 /* the auto white balance control works only
1111 * when auto gain is set */
1112 if (val)
1113 gspca_dev->ctrl_inac &= ~(1 << AWB_IDX);
1114 else
1115 gspca_dev->ctrl_inac |= (1 << AWB_IDX);
1116 setagc(gspca_dev);
1118 return 0;
1121 static int sd_getagc(struct gspca_dev *gspca_dev, __s32 *val)
1123 struct sd *sd = (struct sd *) gspca_dev;
1125 *val = sd->agc;
1126 return 0;
1129 static int sd_setawb(struct gspca_dev *gspca_dev, __s32 val)
1131 struct sd *sd = (struct sd *) gspca_dev;
1133 sd->awb = val;
1134 if (gspca_dev->streaming)
1135 setawb(gspca_dev);
1136 return 0;
1139 static int sd_getawb(struct gspca_dev *gspca_dev, __s32 *val)
1141 struct sd *sd = (struct sd *) gspca_dev;
1143 *val = sd->awb;
1144 return 0;
1147 static int sd_setaec(struct gspca_dev *gspca_dev, __s32 val)
1149 struct sd *sd = (struct sd *) gspca_dev;
1151 sd->aec = val;
1152 if (gspca_dev->streaming)
1153 setaec(gspca_dev);
1154 return 0;
1157 static int sd_getaec(struct gspca_dev *gspca_dev, __s32 *val)
1159 struct sd *sd = (struct sd *) gspca_dev;
1161 *val = sd->aec;
1162 return 0;
1165 static int sd_setsharpness(struct gspca_dev *gspca_dev, __s32 val)
1167 struct sd *sd = (struct sd *) gspca_dev;
1169 sd->sharpness = val;
1170 if (gspca_dev->streaming)
1171 setsharpness(gspca_dev);
1172 return 0;
1175 static int sd_getsharpness(struct gspca_dev *gspca_dev, __s32 *val)
1177 struct sd *sd = (struct sd *) gspca_dev;
1179 *val = sd->sharpness;
1180 return 0;
1183 static int sd_sethflip(struct gspca_dev *gspca_dev, __s32 val)
1185 struct sd *sd = (struct sd *) gspca_dev;
1187 sd->hflip = val;
1188 if (gspca_dev->streaming)
1189 sethflip(gspca_dev);
1190 return 0;
1193 static int sd_gethflip(struct gspca_dev *gspca_dev, __s32 *val)
1195 struct sd *sd = (struct sd *) gspca_dev;
1197 *val = sd->hflip;
1198 return 0;
1201 static int sd_setvflip(struct gspca_dev *gspca_dev, __s32 val)
1203 struct sd *sd = (struct sd *) gspca_dev;
1205 sd->vflip = val;
1206 if (gspca_dev->streaming)
1207 setvflip(gspca_dev);
1208 return 0;
1211 static int sd_getvflip(struct gspca_dev *gspca_dev, __s32 *val)
1213 struct sd *sd = (struct sd *) gspca_dev;
1215 *val = sd->vflip;
1216 return 0;
1219 static int sd_setfreqfltr(struct gspca_dev *gspca_dev, __s32 val)
1221 struct sd *sd = (struct sd *) gspca_dev;
1223 sd->freqfltr = val;
1224 if (gspca_dev->streaming)
1225 setfreqfltr(gspca_dev);
1226 return 0;
1229 static int sd_getfreqfltr(struct gspca_dev *gspca_dev, __s32 *val)
1231 struct sd *sd = (struct sd *) gspca_dev;
1233 *val = sd->freqfltr;
1234 return 0;
1237 static int sd_querymenu(struct gspca_dev *gspca_dev,
1238 struct v4l2_querymenu *menu)
1240 switch (menu->id) {
1241 case V4L2_CID_POWER_LINE_FREQUENCY:
1242 switch (menu->index) {
1243 case 0: /* V4L2_CID_POWER_LINE_FREQUENCY_DISABLED */
1244 strcpy((char *) menu->name, "Disabled");
1245 return 0;
1246 case 1: /* V4L2_CID_POWER_LINE_FREQUENCY_50HZ */
1247 strcpy((char *) menu->name, "50 Hz");
1248 return 0;
1250 break;
1253 return -EINVAL;
1256 /* get stream parameters (framerate) */
1257 static void sd_get_streamparm(struct gspca_dev *gspca_dev,
1258 struct v4l2_streamparm *parm)
1260 struct v4l2_captureparm *cp = &parm->parm.capture;
1261 struct v4l2_fract *tpf = &cp->timeperframe;
1262 struct sd *sd = (struct sd *) gspca_dev;
1264 cp->capability |= V4L2_CAP_TIMEPERFRAME;
1265 tpf->numerator = 1;
1266 tpf->denominator = sd->frame_rate;
1269 /* set stream parameters (framerate) */
1270 static void sd_set_streamparm(struct gspca_dev *gspca_dev,
1271 struct v4l2_streamparm *parm)
1273 struct v4l2_captureparm *cp = &parm->parm.capture;
1274 struct v4l2_fract *tpf = &cp->timeperframe;
1275 struct sd *sd = (struct sd *) gspca_dev;
1277 /* Set requested framerate */
1278 sd->frame_rate = tpf->denominator / tpf->numerator;
1279 if (gspca_dev->streaming)
1280 set_frame_rate(gspca_dev);
1282 /* Return the actual framerate */
1283 tpf->numerator = 1;
1284 tpf->denominator = sd->frame_rate;
1287 /* sub-driver description */
1288 static const struct sd_desc sd_desc = {
1289 .name = MODULE_NAME,
1290 .ctrls = sd_ctrls,
1291 .nctrls = ARRAY_SIZE(sd_ctrls),
1292 .config = sd_config,
1293 .init = sd_init,
1294 .start = sd_start,
1295 .stopN = sd_stopN,
1296 .pkt_scan = sd_pkt_scan,
1297 .querymenu = sd_querymenu,
1298 .get_streamparm = sd_get_streamparm,
1299 .set_streamparm = sd_set_streamparm,
1302 /* -- module initialisation -- */
1303 static const struct usb_device_id device_table[] = {
1304 {USB_DEVICE(0x1415, 0x2000)},
1308 MODULE_DEVICE_TABLE(usb, device_table);
1310 /* -- device connect -- */
1311 static int sd_probe(struct usb_interface *intf, const struct usb_device_id *id)
1313 return gspca_dev_probe(intf, id, &sd_desc, sizeof(struct sd),
1314 THIS_MODULE);
1317 static struct usb_driver sd_driver = {
1318 .name = MODULE_NAME,
1319 .id_table = device_table,
1320 .probe = sd_probe,
1321 .disconnect = gspca_disconnect,
1322 #ifdef CONFIG_PM
1323 .suspend = gspca_suspend,
1324 .resume = gspca_resume,
1325 #endif
1328 /* -- module insert / remove -- */
1329 static int __init sd_mod_init(void)
1331 return usb_register(&sd_driver);
1334 static void __exit sd_mod_exit(void)
1336 usb_deregister(&sd_driver);
1339 module_init(sd_mod_init);
1340 module_exit(sd_mod_exit);