2 * Pixart PAC7302 driver
4 * Copyright (C) 2008-2012 Jean-Francois Moine <http://moinejf.free.fr>
5 * Copyright (C) 2005 Thomas Kaiser thomas@kaiser-linux.li
7 * Separated from Pixart PAC7311 library by Márton Németh
8 * Camera button input handling by Márton Németh <nm127@freemail.hu>
9 * Copyright (C) 2009-2010 Márton Németh <nm127@freemail.hu>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 * Some documentation about various registers as determined by trial and error.
32 * 0x01 Red balance control
33 * 0x02 Green balance control
34 * 0x03 Blue balance control
35 * The Windows driver uses a quadratic approach to map
36 * the settable values (0-200) on register values:
37 * min=0x20, default=0x40, max=0x80
38 * 0x0f-0x20 Color and saturation control
39 * 0xa2-0xab Brightness, contrast and gamma control
40 * 0xb6 Sharpness control (bits 0-4)
45 * 0x78 Global control, bit 6 controls the LED (inverted)
46 * 0x80 Compression balance, 2 interesting settings:
48 * 0x50 Values >= this switch the camera to a lower compression,
49 * using the same table for both luminance and chrominance.
50 * This gives a sharper picture. Only usable when running
51 * at < 15 fps! Note currently the driver does not use this
52 * as the quality gain is small and the generated JPG-s are
53 * only understood by v4l-utils >= 0.8.9
58 * 0x02 Clock divider 3-63, fps = 90 / val. Must be a multiple of 3 on
59 * the 7302, so one of 3, 6, 9, ..., except when between 6 and 12?
60 * 0x03 Variable framerate ctrl reg2==3: 0 -> ~30 fps, 255 -> ~22fps
61 * 0x04 Another var framerate ctrl reg2==3, reg3==0: 0 -> ~30 fps,
62 * 63 -> ~27 fps, the 2 msb's must always be 1 !!
63 * 0x05 Another var framerate ctrl reg2==3, reg3==0, reg4==0xc0:
64 * 1 -> ~30 fps, 2 -> ~20 fps
65 * 0x0e Exposure bits 0-7, 0-448, 0 = use full frame time
66 * 0x0f Exposure bit 8, 0-448, 448 = no exposure at all
68 * 0x12 Another gain 0-31, unlike 0x10 this one seems to start with an
69 * amplification value of 1 rather then 0 at its lowest setting
70 * 0x21 Bitfield: 0-1 unused, 2-3 vflip/hflip, 4-5 unknown, 6-7 unused
71 * 0x80 Another framerate control, best left at 1, moving it from 1 to
72 * 2 causes the framerate to become 3/4th of what it was, and
73 * also seems to cause pixel averaging, resulting in an effective
74 * resolution of 320x240 and thus a much blockier image
76 * The registers are accessed in the following functions:
78 * Page | Register | Function
79 * -----+------------+---------------------------------------------------
80 * 0 | 0x01 | setredbalance()
81 * 0 | 0x03 | setbluebalance()
82 * 0 | 0x0f..0x20 | setcolors()
83 * 0 | 0xa2..0xab | setbrightcont()
84 * 0 | 0xb6 | setsharpness()
85 * 0 | 0xc6 | setwhitebalance()
86 * 0 | 0xdc | setbrightcont(), setcolors()
87 * 3 | 0x02 | setexposure()
88 * 3 | 0x10, 0x12 | setgain()
89 * 3 | 0x11 | setcolors(), setgain(), setexposure(), sethvflip()
90 * 3 | 0x21 | sethvflip()
93 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
95 #include <linux/input.h>
97 /* Include pac common sof detection functions */
98 #include "pac_common.h"
100 #define PAC7302_RGB_BALANCE_MIN 0
101 #define PAC7302_RGB_BALANCE_MAX 200
102 #define PAC7302_RGB_BALANCE_DEFAULT 100
103 #define PAC7302_GAIN_DEFAULT 15
104 #define PAC7302_GAIN_KNEE 42
105 #define PAC7302_EXPOSURE_DEFAULT 66 /* 33 ms / 30 fps */
106 #define PAC7302_EXPOSURE_KNEE 133 /* 66 ms / 15 fps */
108 MODULE_AUTHOR("Jean-Francois Moine <http://moinejf.free.fr>, Thomas Kaiser thomas@kaiser-linux.li");
109 MODULE_DESCRIPTION("Pixart PAC7302");
110 MODULE_LICENSE("GPL");
113 struct gspca_dev gspca_dev
; /* !! must be the first item */
115 struct { /* brightness / contrast cluster */
116 struct v4l2_ctrl
*brightness
;
117 struct v4l2_ctrl
*contrast
;
119 struct v4l2_ctrl
*saturation
;
120 struct v4l2_ctrl
*white_balance
;
121 struct v4l2_ctrl
*red_balance
;
122 struct v4l2_ctrl
*blue_balance
;
123 struct { /* flip cluster */
124 struct v4l2_ctrl
*hflip
;
125 struct v4l2_ctrl
*vflip
;
127 struct v4l2_ctrl
*sharpness
;
129 #define FL_HFLIP 0x01 /* mirrored by default */
130 #define FL_VFLIP 0x02 /* vertical flipped by default */
133 s8 autogain_ignore_frames
;
138 static const struct v4l2_pix_format vga_mode
[] = {
139 {640, 480, V4L2_PIX_FMT_PJPG
, V4L2_FIELD_NONE
,
141 .sizeimage
= 640 * 480 * 3 / 8 + 590,
142 .colorspace
= V4L2_COLORSPACE_JPEG
,
146 #define LOAD_PAGE3 255
147 #define END_OF_SEQUENCE 0
149 static const u8 init_7302
[] = {
151 0xff, 0x01, /* page 1 */
152 0x78, 0x00, /* deactivate */
154 0x78, 0x40, /* led off */
156 static const u8 start_7302
[] = {
157 /* index, len, [value]* */
158 0xff, 1, 0x00, /* page 0 */
159 0x00, 12, 0x01, 0x40, 0x40, 0x40, 0x01, 0xe0, 0x02, 0x80,
160 0x00, 0x00, 0x00, 0x00,
161 0x0d, 24, 0x03, 0x01, 0x00, 0xb5, 0x07, 0xcb, 0x00, 0x00,
162 0x07, 0xc8, 0x00, 0xea, 0x07, 0xcf, 0x07, 0xf7,
163 0x07, 0x7e, 0x01, 0x0b, 0x00, 0x00, 0x00, 0x11,
167 0x3a, 3, 0x14, 0xff, 0x5a,
168 0x43, 11, 0x00, 0x0a, 0x18, 0x11, 0x01, 0x2c, 0x88, 0x11,
171 0x62, 4, 0x10, 0x1e, 0x1e, 0x18,
173 0x6e, 3, 0x08, 0x06, 0x00,
174 0x72, 3, 0x00, 0xff, 0x00,
175 0x7d, 23, 0x01, 0x01, 0x58, 0x46, 0x50, 0x3c, 0x50, 0x3c,
176 0x54, 0x46, 0x54, 0x56, 0x52, 0x50, 0x52, 0x50,
177 0x56, 0x64, 0xa4, 0x00, 0xda, 0x00, 0x00,
178 0xa2, 10, 0x22, 0x2c, 0x3c, 0x54, 0x69, 0x7c, 0x9c, 0xb9,
183 0xc4, 4, 0xae, 0x01, 0x04, 0x01,
185 0xd1, 11, 0x01, 0x30, 0x49, 0x5e, 0x6f, 0x7f, 0x8e, 0xa9,
188 0xff, 1, 0x01, /* page 1 */
189 0x12, 3, 0x02, 0x00, 0x01,
191 0x76, 5, 0x01, 0x20, 0x40, 0x00, 0xf2,
193 0x7f, 10, 0x4b, 0x0f, 0x01, 0x2c, 0x02, 0x58, 0x03, 0x20,
195 0x96, 5, 0x01, 0x10, 0x04, 0x01, 0x04,
196 0xc8, 14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00,
197 0x07, 0x00, 0x01, 0x07, 0x04, 0x01,
200 0xde, 7, 0x00, 0x01, 0x04, 0x04, 0x00, 0x00, 0x00,
201 0xe6, 4, 0x00, 0x00, 0x00, 0x01,
203 0xff, 1, 0x02, /* page 2 */
205 0xff, 1, 0x03, /* page 3 */
206 0, LOAD_PAGE3
, /* load the page 3 */
208 0xff, 1, 0x02, /* page 2 */
210 0x22, 4, 0x1f, 0xa4, 0xf0, 0x96,
212 0x2a, 5, 0xc8, 0x00, 0x18, 0x12, 0x22,
213 0x64, 8, 0x00, 0x00, 0xf0, 0x01, 0x14, 0x44, 0x44, 0x44,
215 0xff, 1, 0x01, /* page 1 */
217 0, END_OF_SEQUENCE
/* end of sequence */
221 /* page 3 - the value SKIP says skip the index - see reg_w_page() */
222 static const u8 page3_7302
[] = {
223 0x90, 0x40, 0x03, 0x00, 0xc0, 0x01, 0x14, 0x16,
224 0x14, 0x12, 0x00, 0x00, 0x00, 0x02, 0x33, 0x00,
225 0x0f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
226 0x00, 0x00, 0x00, 0x47, 0x01, 0xb3, 0x01, 0x00,
227 0x00, 0x08, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x21,
228 0x00, 0x00, 0x00, 0x54, 0xf4, 0x02, 0x52, 0x54,
229 0xa4, 0xb8, 0xe0, 0x2a, 0xf6, 0x00, 0x00, 0x00,
230 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
231 0x00, 0xfc, 0x00, 0xf2, 0x1f, 0x04, 0x00, 0x00,
232 SKIP
, 0x00, 0x00, 0xc0, 0xc0, 0x10, 0x00, 0x00,
233 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
234 0x00, 0x40, 0xff, 0x03, 0x19, 0x00, 0x00, 0x00,
235 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
236 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0xc8, 0xc8,
237 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50,
238 0x08, 0x10, 0x24, 0x40, 0x00, 0x00, 0x00, 0x00,
239 0x01, 0x00, 0x02, 0x47, 0x00, 0x00, 0x00, 0x00,
240 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
241 0x00, 0x02, 0xfa, 0x00, 0x64, 0x5a, 0x28, 0x00,
245 static void reg_w_buf(struct gspca_dev
*gspca_dev
,
247 const u8
*buffer
, int len
)
251 if (gspca_dev
->usb_err
< 0)
253 memcpy(gspca_dev
->usb_buf
, buffer
, len
);
254 ret
= usb_control_msg(gspca_dev
->dev
,
255 usb_sndctrlpipe(gspca_dev
->dev
, 0),
257 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
259 index
, gspca_dev
->usb_buf
, len
,
262 pr_err("reg_w_buf failed i: %02x error %d\n",
264 gspca_dev
->usb_err
= ret
;
269 static void reg_w(struct gspca_dev
*gspca_dev
,
275 if (gspca_dev
->usb_err
< 0)
277 gspca_dev
->usb_buf
[0] = value
;
278 ret
= usb_control_msg(gspca_dev
->dev
,
279 usb_sndctrlpipe(gspca_dev
->dev
, 0),
281 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
282 0, index
, gspca_dev
->usb_buf
, 1,
285 pr_err("reg_w() failed i: %02x v: %02x error %d\n",
287 gspca_dev
->usb_err
= ret
;
291 static void reg_w_seq(struct gspca_dev
*gspca_dev
,
292 const u8
*seq
, int len
)
295 reg_w(gspca_dev
, seq
[0], seq
[1]);
300 /* load the beginning of a page */
301 static void reg_w_page(struct gspca_dev
*gspca_dev
,
302 const u8
*page
, int len
)
307 if (gspca_dev
->usb_err
< 0)
309 for (index
= 0; index
< len
; index
++) {
310 if (page
[index
] == SKIP
) /* skip this index */
312 gspca_dev
->usb_buf
[0] = page
[index
];
313 ret
= usb_control_msg(gspca_dev
->dev
,
314 usb_sndctrlpipe(gspca_dev
->dev
, 0),
316 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
317 0, index
, gspca_dev
->usb_buf
, 1,
320 pr_err("reg_w_page() failed i: %02x v: %02x error %d\n",
321 index
, page
[index
], ret
);
322 gspca_dev
->usb_err
= ret
;
328 /* output a variable sequence */
329 static void reg_w_var(struct gspca_dev
*gspca_dev
,
331 const u8
*page3
, unsigned int page3_len
)
339 case END_OF_SEQUENCE
:
342 reg_w_page(gspca_dev
, page3
, page3_len
);
345 if (len
> USB_BUF_SZ
) {
346 PERR("Incorrect variable sequence");
356 reg_w_buf(gspca_dev
, index
, seq
, 8);
366 /* this function is called at probe time for pac7302 */
367 static int sd_config(struct gspca_dev
*gspca_dev
,
368 const struct usb_device_id
*id
)
370 struct sd
*sd
= (struct sd
*) gspca_dev
;
373 cam
= &gspca_dev
->cam
;
375 cam
->cam_mode
= vga_mode
; /* only 640x480 */
376 cam
->nmodes
= ARRAY_SIZE(vga_mode
);
378 sd
->flags
= id
->driver_info
;
382 static void setbrightcont(struct gspca_dev
*gspca_dev
)
384 struct sd
*sd
= (struct sd
*) gspca_dev
;
386 static const u8 max
[10] =
387 {0x29, 0x33, 0x42, 0x5a, 0x6e, 0x80, 0x9f, 0xbb,
389 static const u8 delta
[10] =
390 {0x35, 0x33, 0x33, 0x2f, 0x2a, 0x25, 0x1e, 0x17,
393 reg_w(gspca_dev
, 0xff, 0x00); /* page 0 */
394 for (i
= 0; i
< 10; i
++) {
396 v
+= (sd
->brightness
->val
- (s32
)sd
->brightness
->maximum
)
397 * 150 / (s32
)sd
->brightness
->maximum
; /* 200 ? */
398 v
-= delta
[i
] * sd
->contrast
->val
/ (s32
)sd
->contrast
->maximum
;
403 reg_w(gspca_dev
, 0xa2 + i
, v
);
405 reg_w(gspca_dev
, 0xdc, 0x01);
408 static void setcolors(struct gspca_dev
*gspca_dev
)
410 struct sd
*sd
= (struct sd
*) gspca_dev
;
412 static const int a
[9] =
413 {217, -212, 0, -101, 170, -67, -38, -315, 355};
414 static const int b
[9] =
415 {19, 106, 0, 19, 106, 1, 19, 106, 1};
417 reg_w(gspca_dev
, 0xff, 0x03); /* page 3 */
418 reg_w(gspca_dev
, 0x11, 0x01);
419 reg_w(gspca_dev
, 0xff, 0x00); /* page 0 */
420 for (i
= 0; i
< 9; i
++) {
421 v
= a
[i
] * sd
->saturation
->val
/ (s32
)sd
->saturation
->maximum
;
423 reg_w(gspca_dev
, 0x0f + 2 * i
, (v
>> 8) & 0x07);
424 reg_w(gspca_dev
, 0x0f + 2 * i
+ 1, v
);
426 reg_w(gspca_dev
, 0xdc, 0x01);
429 static void setwhitebalance(struct gspca_dev
*gspca_dev
)
431 struct sd
*sd
= (struct sd
*) gspca_dev
;
433 reg_w(gspca_dev
, 0xff, 0x00); /* page 0 */
434 reg_w(gspca_dev
, 0xc6, sd
->white_balance
->val
);
436 reg_w(gspca_dev
, 0xdc, 0x01);
439 static u8
rgbbalance_ctrl_to_reg_value(s32 rgb_ctrl_val
)
441 const unsigned int k
= 1000; /* precision factor */
444 /* Normed value [0...k] */
445 norm
= k
* (rgb_ctrl_val
- PAC7302_RGB_BALANCE_MIN
)
446 / (PAC7302_RGB_BALANCE_MAX
- PAC7302_RGB_BALANCE_MIN
);
447 /* Qudratic apporach improves control at small (register) values: */
448 return 64 * norm
* norm
/ (k
*k
) + 32 * norm
/ k
+ 32;
449 /* Y = 64*X*X + 32*X + 32
450 * => register values 0x20-0x80; Windows driver uses these limits */
452 /* NOTE: for full value range (0x00-0xff) use
454 * => 254 * norm * norm / (k*k) + 1 * norm / k */
457 static void setredbalance(struct gspca_dev
*gspca_dev
)
459 struct sd
*sd
= (struct sd
*) gspca_dev
;
461 reg_w(gspca_dev
, 0xff, 0x00); /* page 0 */
462 reg_w(gspca_dev
, 0x01,
463 rgbbalance_ctrl_to_reg_value(sd
->red_balance
->val
));
465 reg_w(gspca_dev
, 0xdc, 0x01);
468 static void setbluebalance(struct gspca_dev
*gspca_dev
)
470 struct sd
*sd
= (struct sd
*) gspca_dev
;
472 reg_w(gspca_dev
, 0xff, 0x00); /* page 0 */
473 reg_w(gspca_dev
, 0x03,
474 rgbbalance_ctrl_to_reg_value(sd
->blue_balance
->val
));
476 reg_w(gspca_dev
, 0xdc, 0x01);
479 static void setgain(struct gspca_dev
*gspca_dev
)
483 if (gspca_dev
->gain
->val
< 32) {
484 reg10
= gspca_dev
->gain
->val
;
488 reg12
= gspca_dev
->gain
->val
- 31;
491 reg_w(gspca_dev
, 0xff, 0x03); /* page 3 */
492 reg_w(gspca_dev
, 0x10, reg10
);
493 reg_w(gspca_dev
, 0x12, reg12
);
495 /* load registers to sensor (Bit 0, auto clear) */
496 reg_w(gspca_dev
, 0x11, 0x01);
499 static void setexposure(struct gspca_dev
*gspca_dev
)
505 * Register 2 of frame 3 contains the clock divider configuring the
506 * no fps according to the formula: 90 / reg. sd->exposure is the
507 * desired exposure time in 0.5 ms.
509 clockdiv
= (90 * gspca_dev
->exposure
->val
+ 1999) / 2000;
512 * Note clockdiv = 3 also works, but when running at 30 fps, depending
513 * on the scene being recorded, the camera switches to another
514 * quantization table for certain JPEG blocks, and we don't know how
515 * to decompress these blocks. So we cap the framerate at 15 fps.
519 else if (clockdiv
> 63)
523 * Register 2 MUST be a multiple of 3, except when between 6 and 12?
524 * Always round up, otherwise we cannot get the desired frametime
525 * using the partial frame time exposure control.
527 if (clockdiv
< 6 || clockdiv
> 12)
528 clockdiv
= ((clockdiv
+ 2) / 3) * 3;
531 * frame exposure time in ms = 1000 * clockdiv / 90 ->
532 * exposure = (sd->exposure / 2) * 448 / (1000 * clockdiv / 90)
534 exposure
= (gspca_dev
->exposure
->val
* 45 * 448) / (1000 * clockdiv
);
535 /* 0 = use full frametime, 448 = no exposure, reverse it */
536 exposure
= 448 - exposure
;
538 reg_w(gspca_dev
, 0xff, 0x03); /* page 3 */
539 reg_w(gspca_dev
, 0x02, clockdiv
);
540 reg_w(gspca_dev
, 0x0e, exposure
& 0xff);
541 reg_w(gspca_dev
, 0x0f, exposure
>> 8);
543 /* load registers to sensor (Bit 0, auto clear) */
544 reg_w(gspca_dev
, 0x11, 0x01);
547 static void sethvflip(struct gspca_dev
*gspca_dev
)
549 struct sd
*sd
= (struct sd
*) gspca_dev
;
550 u8 data
, hflip
, vflip
;
552 hflip
= sd
->hflip
->val
;
553 if (sd
->flags
& FL_HFLIP
)
555 vflip
= sd
->vflip
->val
;
556 if (sd
->flags
& FL_VFLIP
)
559 reg_w(gspca_dev
, 0xff, 0x03); /* page 3 */
560 data
= (hflip
? 0x08 : 0x00) | (vflip
? 0x04 : 0x00);
561 reg_w(gspca_dev
, 0x21, data
);
563 /* load registers to sensor (Bit 0, auto clear) */
564 reg_w(gspca_dev
, 0x11, 0x01);
567 static void setsharpness(struct gspca_dev
*gspca_dev
)
569 struct sd
*sd
= (struct sd
*) gspca_dev
;
571 reg_w(gspca_dev
, 0xff, 0x00); /* page 0 */
572 reg_w(gspca_dev
, 0xb6, sd
->sharpness
->val
);
574 reg_w(gspca_dev
, 0xdc, 0x01);
577 /* this function is called at probe and resume time for pac7302 */
578 static int sd_init(struct gspca_dev
*gspca_dev
)
580 reg_w_seq(gspca_dev
, init_7302
, sizeof(init_7302
)/2);
581 return gspca_dev
->usb_err
;
584 static int sd_s_ctrl(struct v4l2_ctrl
*ctrl
)
586 struct gspca_dev
*gspca_dev
=
587 container_of(ctrl
->handler
, struct gspca_dev
, ctrl_handler
);
588 struct sd
*sd
= (struct sd
*)gspca_dev
;
590 gspca_dev
->usb_err
= 0;
592 if (ctrl
->id
== V4L2_CID_AUTOGAIN
&& ctrl
->is_new
&& ctrl
->val
) {
593 /* when switching to autogain set defaults to make sure
594 we are on a valid point of the autogain gain /
595 exposure knee graph, and give this change time to
596 take effect before doing autogain. */
597 gspca_dev
->exposure
->val
= PAC7302_EXPOSURE_DEFAULT
;
598 gspca_dev
->gain
->val
= PAC7302_GAIN_DEFAULT
;
599 sd
->autogain_ignore_frames
= PAC_AUTOGAIN_IGNORE_FRAMES
;
602 if (!gspca_dev
->streaming
)
606 case V4L2_CID_BRIGHTNESS
:
607 setbrightcont(gspca_dev
);
609 case V4L2_CID_SATURATION
:
610 setcolors(gspca_dev
);
612 case V4L2_CID_WHITE_BALANCE_TEMPERATURE
:
613 setwhitebalance(gspca_dev
);
615 case V4L2_CID_RED_BALANCE
:
616 setredbalance(gspca_dev
);
618 case V4L2_CID_BLUE_BALANCE
:
619 setbluebalance(gspca_dev
);
621 case V4L2_CID_AUTOGAIN
:
622 if (gspca_dev
->exposure
->is_new
|| (ctrl
->is_new
&& ctrl
->val
))
623 setexposure(gspca_dev
);
624 if (gspca_dev
->gain
->is_new
|| (ctrl
->is_new
&& ctrl
->val
))
628 sethvflip(gspca_dev
);
630 case V4L2_CID_SHARPNESS
:
631 setsharpness(gspca_dev
);
636 return gspca_dev
->usb_err
;
639 static const struct v4l2_ctrl_ops sd_ctrl_ops
= {
643 /* this function is called at probe time */
644 static int sd_init_controls(struct gspca_dev
*gspca_dev
)
646 struct sd
*sd
= (struct sd
*) gspca_dev
;
647 struct v4l2_ctrl_handler
*hdl
= &gspca_dev
->ctrl_handler
;
649 gspca_dev
->vdev
.ctrl_handler
= hdl
;
650 v4l2_ctrl_handler_init(hdl
, 12);
652 sd
->brightness
= v4l2_ctrl_new_std(hdl
, &sd_ctrl_ops
,
653 V4L2_CID_BRIGHTNESS
, 0, 32, 1, 16);
654 sd
->contrast
= v4l2_ctrl_new_std(hdl
, &sd_ctrl_ops
,
655 V4L2_CID_CONTRAST
, 0, 255, 1, 127);
657 sd
->saturation
= v4l2_ctrl_new_std(hdl
, &sd_ctrl_ops
,
658 V4L2_CID_SATURATION
, 0, 255, 1, 127);
659 sd
->white_balance
= v4l2_ctrl_new_std(hdl
, &sd_ctrl_ops
,
660 V4L2_CID_WHITE_BALANCE_TEMPERATURE
,
662 sd
->red_balance
= v4l2_ctrl_new_std(hdl
, &sd_ctrl_ops
,
663 V4L2_CID_RED_BALANCE
,
664 PAC7302_RGB_BALANCE_MIN
,
665 PAC7302_RGB_BALANCE_MAX
,
666 1, PAC7302_RGB_BALANCE_DEFAULT
);
667 sd
->blue_balance
= v4l2_ctrl_new_std(hdl
, &sd_ctrl_ops
,
668 V4L2_CID_BLUE_BALANCE
,
669 PAC7302_RGB_BALANCE_MIN
,
670 PAC7302_RGB_BALANCE_MAX
,
671 1, PAC7302_RGB_BALANCE_DEFAULT
);
673 gspca_dev
->autogain
= v4l2_ctrl_new_std(hdl
, &sd_ctrl_ops
,
674 V4L2_CID_AUTOGAIN
, 0, 1, 1, 1);
675 gspca_dev
->exposure
= v4l2_ctrl_new_std(hdl
, &sd_ctrl_ops
,
676 V4L2_CID_EXPOSURE
, 0, 1023, 1,
677 PAC7302_EXPOSURE_DEFAULT
);
678 gspca_dev
->gain
= v4l2_ctrl_new_std(hdl
, &sd_ctrl_ops
,
679 V4L2_CID_GAIN
, 0, 62, 1,
680 PAC7302_GAIN_DEFAULT
);
682 sd
->hflip
= v4l2_ctrl_new_std(hdl
, &sd_ctrl_ops
,
683 V4L2_CID_HFLIP
, 0, 1, 1, 0);
684 sd
->vflip
= v4l2_ctrl_new_std(hdl
, &sd_ctrl_ops
,
685 V4L2_CID_VFLIP
, 0, 1, 1, 0);
687 sd
->sharpness
= v4l2_ctrl_new_std(hdl
, &sd_ctrl_ops
,
688 V4L2_CID_SHARPNESS
, 0, 15, 1, 8);
691 pr_err("Could not initialize controls\n");
695 v4l2_ctrl_cluster(2, &sd
->brightness
);
696 v4l2_ctrl_auto_cluster(3, &gspca_dev
->autogain
, 0, false);
697 v4l2_ctrl_cluster(2, &sd
->hflip
);
701 /* -- start the camera -- */
702 static int sd_start(struct gspca_dev
*gspca_dev
)
704 struct sd
*sd
= (struct sd
*) gspca_dev
;
706 reg_w_var(gspca_dev
, start_7302
,
707 page3_7302
, sizeof(page3_7302
));
710 sd
->autogain_ignore_frames
= 0;
711 atomic_set(&sd
->avg_lum
, 270 + sd
->brightness
->val
);
714 reg_w(gspca_dev
, 0xff, 0x01);
715 reg_w(gspca_dev
, 0x78, 0x01);
717 return gspca_dev
->usb_err
;
720 static void sd_stopN(struct gspca_dev
*gspca_dev
)
724 reg_w(gspca_dev
, 0xff, 0x01);
725 reg_w(gspca_dev
, 0x78, 0x00);
728 /* called on streamoff with alt 0 and on disconnect for pac7302 */
729 static void sd_stop0(struct gspca_dev
*gspca_dev
)
731 if (!gspca_dev
->present
)
733 reg_w(gspca_dev
, 0xff, 0x01);
734 reg_w(gspca_dev
, 0x78, 0x40);
737 static void do_autogain(struct gspca_dev
*gspca_dev
)
739 struct sd
*sd
= (struct sd
*) gspca_dev
;
740 int avg_lum
= atomic_read(&sd
->avg_lum
);
742 const int deadzone
= 30;
744 if (sd
->autogain_ignore_frames
< 0)
747 if (sd
->autogain_ignore_frames
> 0) {
748 sd
->autogain_ignore_frames
--;
750 desired_lum
= 270 + sd
->brightness
->val
;
752 if (gspca_expo_autogain(gspca_dev
, avg_lum
, desired_lum
,
753 deadzone
, PAC7302_GAIN_KNEE
,
754 PAC7302_EXPOSURE_KNEE
))
755 sd
->autogain_ignore_frames
=
756 PAC_AUTOGAIN_IGNORE_FRAMES
;
761 static const u8 jpeg_header
[] = {
762 0xff, 0xd8, /* SOI: Start of Image */
764 0xff, 0xc0, /* SOF0: Start of Frame (Baseline DCT) */
765 0x00, 0x11, /* length = 17 bytes (including this length field) */
766 0x08, /* Precision: 8 */
767 0x02, 0x80, /* height = 640 (image rotated) */
768 0x01, 0xe0, /* width = 480 */
769 0x03, /* Number of image components: 3 */
770 0x01, 0x21, 0x00, /* ID=1, Subsampling 1x1, Quantization table: 0 */
771 0x02, 0x11, 0x01, /* ID=2, Subsampling 2x1, Quantization table: 1 */
772 0x03, 0x11, 0x01, /* ID=3, Subsampling 2x1, Quantization table: 1 */
774 0xff, 0xda, /* SOS: Start Of Scan */
775 0x00, 0x0c, /* length = 12 bytes (including this length field) */
776 0x03, /* number of components: 3 */
777 0x01, 0x00, /* selector 1, table 0x00 */
778 0x02, 0x11, /* selector 2, table 0x11 */
779 0x03, 0x11, /* selector 3, table 0x11 */
780 0x00, 0x3f, /* Spectral selection: 0 .. 63 */
781 0x00 /* Successive approximation: 0 */
784 /* this function is run at interrupt level */
785 static void sd_pkt_scan(struct gspca_dev
*gspca_dev
,
786 u8
*data
, /* isoc packet */
787 int len
) /* iso packet length */
789 struct sd
*sd
= (struct sd
*) gspca_dev
;
793 sof
= pac_find_sof(gspca_dev
, &sd
->sof_read
, data
, len
);
795 int n
, lum_offset
, footer_length
;
798 * 6 bytes after the FF D9 EOF marker a number of lumination
799 * bytes are send corresponding to different parts of the
800 * image, the 14th and 15th byte after the EOF seem to
801 * correspond to the center of the image.
803 lum_offset
= 61 + sizeof pac_sof_marker
;
806 /* Finish decoding current frame */
807 n
= (sof
- data
) - (footer_length
+ sizeof pac_sof_marker
);
809 gspca_dev
->image_len
+= n
;
812 gspca_frame_add(gspca_dev
, INTER_PACKET
, data
, n
);
815 image
= gspca_dev
->image
;
817 && image
[gspca_dev
->image_len
- 2] == 0xff
818 && image
[gspca_dev
->image_len
- 1] == 0xd9)
819 gspca_frame_add(gspca_dev
, LAST_PACKET
, NULL
, 0);
825 /* Get average lumination */
826 if (gspca_dev
->last_packet_type
== LAST_PACKET
&&
828 atomic_set(&sd
->avg_lum
, data
[-lum_offset
] +
829 data
[-lum_offset
+ 1]);
831 /* Start the new frame with the jpeg header */
832 /* The PAC7302 has the image rotated 90 degrees */
833 gspca_frame_add(gspca_dev
, FIRST_PACKET
,
834 jpeg_header
, sizeof jpeg_header
);
836 gspca_frame_add(gspca_dev
, INTER_PACKET
, data
, len
);
839 #ifdef CONFIG_VIDEO_ADV_DEBUG
840 static int sd_dbg_s_register(struct gspca_dev
*gspca_dev
,
841 const struct v4l2_dbg_register
*reg
)
847 * reg->reg: bit0..15: reserved for register index (wIndex is 16bit
848 * long on the USB bus)
850 if (reg
->match
.addr
== 0 &&
851 (reg
->reg
< 0x000000ff) &&
852 (reg
->val
<= 0x000000ff)
854 /* Currently writing to page 0 is only supported. */
855 /* reg_w() only supports 8bit index */
860 * Note that there shall be no access to other page
861 * by any other function between the page switch and
862 * the actual register write.
864 reg_w(gspca_dev
, 0xff, 0x00); /* page 0 */
865 reg_w(gspca_dev
, index
, value
);
867 reg_w(gspca_dev
, 0xdc, 0x01);
869 return gspca_dev
->usb_err
;
873 #if IS_ENABLED(CONFIG_INPUT)
874 static int sd_int_pkt_scan(struct gspca_dev
*gspca_dev
,
875 u8
*data
, /* interrupt packet data */
876 int len
) /* interrupt packet length */
884 if ((data0
== 0x00 && data1
== 0x11) ||
885 (data0
== 0x22 && data1
== 0x33) ||
886 (data0
== 0x44 && data1
== 0x55) ||
887 (data0
== 0x66 && data1
== 0x77) ||
888 (data0
== 0x88 && data1
== 0x99) ||
889 (data0
== 0xaa && data1
== 0xbb) ||
890 (data0
== 0xcc && data1
== 0xdd) ||
891 (data0
== 0xee && data1
== 0xff)) {
892 input_report_key(gspca_dev
->input_dev
, KEY_CAMERA
, 1);
893 input_sync(gspca_dev
->input_dev
);
894 input_report_key(gspca_dev
->input_dev
, KEY_CAMERA
, 0);
895 input_sync(gspca_dev
->input_dev
);
904 /* sub-driver description for pac7302 */
905 static const struct sd_desc sd_desc
= {
906 .name
= KBUILD_MODNAME
,
909 .init_controls
= sd_init_controls
,
913 .pkt_scan
= sd_pkt_scan
,
914 .dq_callback
= do_autogain
,
915 #ifdef CONFIG_VIDEO_ADV_DEBUG
916 .set_register
= sd_dbg_s_register
,
918 #if IS_ENABLED(CONFIG_INPUT)
919 .int_pkt_scan
= sd_int_pkt_scan
,
923 /* -- module initialisation -- */
924 static const struct usb_device_id device_table
[] = {
925 {USB_DEVICE(0x06f8, 0x3009)},
926 {USB_DEVICE(0x06f8, 0x301b)},
927 {USB_DEVICE(0x093a, 0x2620)},
928 {USB_DEVICE(0x093a, 0x2621)},
929 {USB_DEVICE(0x093a, 0x2622), .driver_info
= FL_VFLIP
},
930 {USB_DEVICE(0x093a, 0x2623), .driver_info
= FL_VFLIP
},
931 {USB_DEVICE(0x093a, 0x2624), .driver_info
= FL_VFLIP
},
932 {USB_DEVICE(0x093a, 0x2625)},
933 {USB_DEVICE(0x093a, 0x2626)},
934 {USB_DEVICE(0x093a, 0x2627), .driver_info
= FL_VFLIP
},
935 {USB_DEVICE(0x093a, 0x2628)},
936 {USB_DEVICE(0x093a, 0x2629), .driver_info
= FL_VFLIP
},
937 {USB_DEVICE(0x093a, 0x262a)},
938 {USB_DEVICE(0x093a, 0x262c)},
939 {USB_DEVICE(0x145f, 0x013c)},
940 {USB_DEVICE(0x1ae7, 0x2001)}, /* SpeedLink Snappy Mic SL-6825-SBK */
943 MODULE_DEVICE_TABLE(usb
, device_table
);
945 /* -- device connect -- */
946 static int sd_probe(struct usb_interface
*intf
,
947 const struct usb_device_id
*id
)
949 return gspca_dev_probe(intf
, id
, &sd_desc
, sizeof(struct sd
),
953 static struct usb_driver sd_driver
= {
954 .name
= KBUILD_MODNAME
,
955 .id_table
= device_table
,
957 .disconnect
= gspca_disconnect
,
959 .suspend
= gspca_suspend
,
960 .resume
= gspca_resume
,
961 .reset_resume
= gspca_resume
,
965 module_usb_driver(sd_driver
);