2 * Syntek STK1135 subdriver
4 * Copyright (c) 2013 Ondrej Zary
6 * Based on Syntekdriver (stk11xx) by Nicolas VIVIEN:
7 * http://syntekdriver.sourceforge.net
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
26 #define MODULE_NAME "stk1135"
31 MODULE_AUTHOR("Ondrej Zary");
32 MODULE_DESCRIPTION("Syntek STK1135 USB Camera Driver");
33 MODULE_LICENSE("GPL");
36 /* specific webcam descriptor */
38 struct gspca_dev gspca_dev
; /* !! must be the first item */
46 struct v4l2_ctrl
*hflip
;
47 struct v4l2_ctrl
*vflip
;
50 static const struct v4l2_pix_format stk1135_modes
[] = {
51 /* default mode (this driver supports variable resolution) */
52 {640, 480, V4L2_PIX_FMT_SBGGR8
, V4L2_FIELD_NONE
,
54 .sizeimage
= 640 * 480,
55 .colorspace
= V4L2_COLORSPACE_SRGB
},
58 /* -- read a register -- */
59 static u8
reg_r(struct gspca_dev
*gspca_dev
, u16 index
)
61 struct usb_device
*dev
= gspca_dev
->dev
;
64 if (gspca_dev
->usb_err
< 0)
66 ret
= usb_control_msg(dev
, usb_rcvctrlpipe(dev
, 0),
68 USB_DIR_IN
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
71 gspca_dev
->usb_buf
, 1,
74 PDEBUG(D_USBI
, "reg_r 0x%x=0x%02x", index
, gspca_dev
->usb_buf
[0]);
76 pr_err("reg_r 0x%x err %d\n", index
, ret
);
77 gspca_dev
->usb_err
= ret
;
81 return gspca_dev
->usb_buf
[0];
84 /* -- write a register -- */
85 static void reg_w(struct gspca_dev
*gspca_dev
, u16 index
, u8 val
)
88 struct usb_device
*dev
= gspca_dev
->dev
;
90 if (gspca_dev
->usb_err
< 0)
92 ret
= usb_control_msg(dev
, usb_sndctrlpipe(dev
, 0),
94 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
100 PDEBUG(D_USBO
, "reg_w 0x%x:=0x%02x", index
, val
);
102 pr_err("reg_w 0x%x err %d\n", index
, ret
);
103 gspca_dev
->usb_err
= ret
;
107 static void reg_w_mask(struct gspca_dev
*gspca_dev
, u16 index
, u8 val
, u8 mask
)
109 val
= (reg_r(gspca_dev
, index
) & ~mask
) | (val
& mask
);
110 reg_w(gspca_dev
, index
, val
);
113 /* this function is called at probe time */
114 static int sd_config(struct gspca_dev
*gspca_dev
,
115 const struct usb_device_id
*id
)
117 gspca_dev
->cam
.cam_mode
= stk1135_modes
;
118 gspca_dev
->cam
.nmodes
= ARRAY_SIZE(stk1135_modes
);
122 static int stk1135_serial_wait_ready(struct gspca_dev
*gspca_dev
)
128 val
= reg_r(gspca_dev
, STK1135_REG_SICTL
+ 1);
129 if (i
++ > 500) { /* maximum retry count */
130 pr_err("serial bus timeout: status=0x%02x\n", val
);
133 /* repeat if BUSY or WRITE/READ not finished */
134 } while ((val
& 0x10) || !(val
& 0x05));
139 static u8
sensor_read_8(struct gspca_dev
*gspca_dev
, u8 addr
)
141 reg_w(gspca_dev
, STK1135_REG_SBUSR
, addr
);
143 reg_w(gspca_dev
, STK1135_REG_SICTL
, 0x20);
144 /* wait until finished */
145 if (stk1135_serial_wait_ready(gspca_dev
)) {
146 pr_err("Sensor read failed\n");
150 return reg_r(gspca_dev
, STK1135_REG_SBUSR
+ 1);
153 static u16
sensor_read_16(struct gspca_dev
*gspca_dev
, u8 addr
)
155 return (sensor_read_8(gspca_dev
, addr
) << 8) |
156 sensor_read_8(gspca_dev
, 0xf1);
159 static void sensor_write_8(struct gspca_dev
*gspca_dev
, u8 addr
, u8 data
)
161 /* load address and data registers */
162 reg_w(gspca_dev
, STK1135_REG_SBUSW
, addr
);
163 reg_w(gspca_dev
, STK1135_REG_SBUSW
+ 1, data
);
165 reg_w(gspca_dev
, STK1135_REG_SICTL
, 0x01);
166 /* wait until finished */
167 if (stk1135_serial_wait_ready(gspca_dev
)) {
168 pr_err("Sensor write failed\n");
173 static void sensor_write_16(struct gspca_dev
*gspca_dev
, u8 addr
, u16 data
)
175 sensor_write_8(gspca_dev
, addr
, data
>> 8);
176 sensor_write_8(gspca_dev
, 0xf1, data
& 0xff);
179 static void sensor_set_page(struct gspca_dev
*gspca_dev
, u8 page
)
181 struct sd
*sd
= (struct sd
*) gspca_dev
;
183 if (page
!= sd
->sensor_page
) {
184 sensor_write_16(gspca_dev
, 0xf0, page
);
185 sd
->sensor_page
= page
;
189 static u16
sensor_read(struct gspca_dev
*gspca_dev
, u16 reg
)
191 sensor_set_page(gspca_dev
, reg
>> 8);
192 return sensor_read_16(gspca_dev
, reg
& 0xff);
195 static void sensor_write(struct gspca_dev
*gspca_dev
, u16 reg
, u16 val
)
197 sensor_set_page(gspca_dev
, reg
>> 8);
198 sensor_write_16(gspca_dev
, reg
& 0xff, val
);
201 static void sensor_write_mask(struct gspca_dev
*gspca_dev
,
202 u16 reg
, u16 val
, u16 mask
)
204 val
= (sensor_read(gspca_dev
, reg
) & ~mask
) | (val
& mask
);
205 sensor_write(gspca_dev
, reg
, val
);
213 /* configure MT9M112 sensor */
214 static void stk1135_configure_mt9m112(struct gspca_dev
*gspca_dev
)
216 static const struct sensor_val cfg
[] = {
217 /* restart&reset, chip enable, reserved */
218 { 0x00d, 0x000b }, { 0x00d, 0x0008 }, { 0x035, 0x0022 },
219 /* mode ctl: AWB on, AE both, clip aper corr, defect corr, AE */
222 { 0x2dd, 0x18e0 }, /* B-R thresholds, */
225 { 0x21f, 0x0180 }, /* Cb and Cr limits */
226 { 0x220, 0xc814 }, { 0x221, 0x8080 }, /* lum limits, RGB gain */
227 { 0x222, 0xa078 }, { 0x223, 0xa078 }, /* R, B limit */
228 { 0x224, 0x5f20 }, { 0x228, 0xea02 }, /* mtx adj lim, adv ctl */
229 { 0x229, 0x867a }, /* wide gates */
231 /* Color correction */
232 /* imager gains base, delta, delta signs */
233 { 0x25e, 0x594c }, { 0x25f, 0x4d51 }, { 0x260, 0x0002 },
234 /* AWB adv ctl 2, gain offs */
235 { 0x2ef, 0x0008 }, { 0x2f2, 0x0000 },
236 /* base matrix signs, scale K1-5, K6-9 */
237 { 0x202, 0x00ee }, { 0x203, 0x3923 }, { 0x204, 0x0724 },
238 /* base matrix coef */
239 { 0x209, 0x00cd }, { 0x20a, 0x0093 }, { 0x20b, 0x0004 },/*K1-3*/
240 { 0x20c, 0x005c }, { 0x20d, 0x00d9 }, { 0x20e, 0x0053 },/*K4-6*/
241 { 0x20f, 0x0008 }, { 0x210, 0x0091 }, { 0x211, 0x00cf },/*K7-9*/
242 { 0x215, 0x0000 }, /* delta mtx signs */
243 /* delta matrix coef */
244 { 0x216, 0x0000 }, { 0x217, 0x0000 }, { 0x218, 0x0000 },/*D1-3*/
245 { 0x219, 0x0000 }, { 0x21a, 0x0000 }, { 0x21b, 0x0000 },/*D4-6*/
246 { 0x21c, 0x0000 }, { 0x21d, 0x0000 }, { 0x21e, 0x0000 },/*D7-9*/
247 /* enable & disable manual WB to apply color corr. settings */
248 { 0x106, 0xf00e }, { 0x106, 0x700e },
250 /* Lens shading correction */
251 { 0x180, 0x0007 }, /* control */
252 /* vertical knee 0, 2+1, 4+3 */
253 { 0x181, 0xde13 }, { 0x182, 0xebe2 }, { 0x183, 0x00f6 }, /* R */
254 { 0x184, 0xe114 }, { 0x185, 0xeadd }, { 0x186, 0xfdf6 }, /* G */
255 { 0x187, 0xe511 }, { 0x188, 0xede6 }, { 0x189, 0xfbf7 }, /* B */
256 /* horizontal knee 0, 2+1, 4+3, 5 */
257 { 0x18a, 0xd613 }, { 0x18b, 0xedec }, /* R .. */
258 { 0x18c, 0xf9f2 }, { 0x18d, 0x0000 }, /* .. R */
259 { 0x18e, 0xd815 }, { 0x18f, 0xe9ea }, /* G .. */
260 { 0x190, 0xf9f1 }, { 0x191, 0x0002 }, /* .. G */
261 { 0x192, 0xde10 }, { 0x193, 0xefef }, /* B .. */
262 { 0x194, 0xfbf4 }, { 0x195, 0x0002 }, /* .. B */
263 /* vertical knee 6+5, 8+7 */
264 { 0x1b6, 0x0e06 }, { 0x1b7, 0x2713 }, /* R */
265 { 0x1b8, 0x1106 }, { 0x1b9, 0x2713 }, /* G */
266 { 0x1ba, 0x0c03 }, { 0x1bb, 0x2a0f }, /* B */
267 /* horizontal knee 7+6, 9+8, 10 */
268 { 0x1bc, 0x1208 }, { 0x1bd, 0x1a16 }, { 0x1be, 0x0022 }, /* R */
269 { 0x1bf, 0x150a }, { 0x1c0, 0x1c1a }, { 0x1c1, 0x002d }, /* G */
270 { 0x1c2, 0x1109 }, { 0x1c3, 0x1414 }, { 0x1c4, 0x002a }, /* B */
271 { 0x106, 0x740e }, /* enable lens shading correction */
273 /* Gamma correction - context A */
274 { 0x153, 0x0b03 }, { 0x154, 0x4722 }, { 0x155, 0xac82 },
275 { 0x156, 0xdac7 }, { 0x157, 0xf5e9 }, { 0x158, 0xff00 },
276 /* Gamma correction - context B */
277 { 0x1dc, 0x0b03 }, { 0x1dd, 0x4722 }, { 0x1de, 0xac82 },
278 { 0x1df, 0xdac7 }, { 0x1e0, 0xf5e9 }, { 0x1e1, 0xff00 },
280 /* output format: RGB, invert output pixclock, output bayer */
281 { 0x13a, 0x4300 }, { 0x19b, 0x4300 }, /* for context A, B */
282 { 0x108, 0x0180 }, /* format control - enable bayer row flip */
284 { 0x22f, 0xd100 }, { 0x29c, 0xd100 }, /* AE A, B */
286 /* default prg conf, prg ctl - by 0x2d2, prg advance - PA1 */
287 { 0x2d2, 0x0000 }, { 0x2cc, 0x0004 }, { 0x2cb, 0x0001 },
289 { 0x22e, 0x0c3c }, { 0x267, 0x1010 }, /* AE tgt ctl, gain lim */
292 { 0x065, 0xa000 }, /* clk ctl - enable PLL (clear bit 14) */
293 { 0x066, 0x2003 }, { 0x067, 0x0501 }, /* PLL M=128, N=3, P=1 */
294 { 0x065, 0x2000 }, /* disable PLL bypass (clear bit 15) */
296 { 0x005, 0x01b8 }, { 0x007, 0x00d8 }, /* horiz blanking B, A */
298 /* AE line size, shutter delay limit */
299 { 0x239, 0x06c0 }, { 0x23b, 0x040e }, /* for context A */
300 { 0x23a, 0x06c0 }, { 0x23c, 0x0564 }, /* for context B */
301 /* shutter width basis 60Hz, 50Hz */
302 { 0x257, 0x0208 }, { 0x258, 0x0271 }, /* for context A */
303 { 0x259, 0x0209 }, { 0x25a, 0x0271 }, /* for context B */
305 { 0x25c, 0x120d }, { 0x25d, 0x1712 }, /* flicker 60Hz, 50Hz */
306 { 0x264, 0x5e1c }, /* reserved */
307 /* flicker, AE gain limits, gain zone limits */
308 { 0x25b, 0x0003 }, { 0x236, 0x7810 }, { 0x237, 0x8304 },
310 { 0x008, 0x0021 }, /* vert blanking A */
315 for (i
= 0; i
< ARRAY_SIZE(cfg
); i
++)
316 sensor_write(gspca_dev
, cfg
[i
].reg
, cfg
[i
].val
);
318 /* set output size */
319 width
= gspca_dev
->pixfmt
.width
;
320 height
= gspca_dev
->pixfmt
.height
;
321 if (width
<= 640 && height
<= 512) { /* context A (half readout speed)*/
322 sensor_write(gspca_dev
, 0x1a7, width
);
323 sensor_write(gspca_dev
, 0x1aa, height
);
324 /* set read mode context A */
325 sensor_write(gspca_dev
, 0x0c8, 0x0000);
326 /* set resize, read mode, vblank, hblank context A */
327 sensor_write(gspca_dev
, 0x2c8, 0x0000);
328 } else { /* context B (full readout speed) */
329 sensor_write(gspca_dev
, 0x1a1, width
);
330 sensor_write(gspca_dev
, 0x1a4, height
);
331 /* set read mode context B */
332 sensor_write(gspca_dev
, 0x0c8, 0x0008);
333 /* set resize, read mode, vblank, hblank context B */
334 sensor_write(gspca_dev
, 0x2c8, 0x040b);
338 static void stk1135_configure_clock(struct gspca_dev
*gspca_dev
)
340 /* configure SCLKOUT */
341 reg_w(gspca_dev
, STK1135_REG_TMGEN
, 0x12);
342 /* set 1 clock per pixel */
343 /* and positive edge clocked pulse high when pixel counter = 0 */
344 reg_w(gspca_dev
, STK1135_REG_TCP1
+ 0, 0x41);
345 reg_w(gspca_dev
, STK1135_REG_TCP1
+ 1, 0x00);
346 reg_w(gspca_dev
, STK1135_REG_TCP1
+ 2, 0x00);
347 reg_w(gspca_dev
, STK1135_REG_TCP1
+ 3, 0x00);
349 /* enable CLKOUT for sensor */
350 reg_w(gspca_dev
, STK1135_REG_SENSO
+ 0, 0x10);
351 /* disable STOP clock */
352 reg_w(gspca_dev
, STK1135_REG_SENSO
+ 1, 0x00);
353 /* set lower 8 bits of PLL feedback divider */
354 reg_w(gspca_dev
, STK1135_REG_SENSO
+ 3, 0x07);
355 /* set other PLL parameters */
356 reg_w(gspca_dev
, STK1135_REG_PLLFD
, 0x06);
357 /* enable timing generator */
358 reg_w(gspca_dev
, STK1135_REG_TMGEN
, 0x80);
360 reg_w(gspca_dev
, STK1135_REG_SENSO
+ 2, 0x04);
362 /* set serial interface clock divider (30MHz/0x1f*16+2) = 60240 kHz) */
363 reg_w(gspca_dev
, STK1135_REG_SICTL
+ 2, 0x1f);
365 /* wait a while for sensor to catch up */
369 static void stk1135_camera_disable(struct gspca_dev
*gspca_dev
)
371 /* set capture end Y position to 0 */
372 reg_w(gspca_dev
, STK1135_REG_CIEPO
+ 2, 0x00);
373 reg_w(gspca_dev
, STK1135_REG_CIEPO
+ 3, 0x00);
374 /* disable capture */
375 reg_w_mask(gspca_dev
, STK1135_REG_SCTRL
, 0x00, 0x80);
377 /* enable sensor standby and diasble chip enable */
378 sensor_write_mask(gspca_dev
, 0x00d, 0x0004, 0x000c);
381 reg_w_mask(gspca_dev
, STK1135_REG_SENSO
+ 2, 0x00, 0x01);
382 /* disable timing generator */
383 reg_w(gspca_dev
, STK1135_REG_TMGEN
, 0x00);
384 /* enable STOP clock */
385 reg_w(gspca_dev
, STK1135_REG_SENSO
+ 1, 0x20);
386 /* disable CLKOUT for sensor */
387 reg_w(gspca_dev
, STK1135_REG_SENSO
, 0x00);
389 /* disable sensor (GPIO5) and enable GPIO0,3,6 (?) - sensor standby? */
390 reg_w(gspca_dev
, STK1135_REG_GCTRL
, 0x49);
393 /* this function is called at probe and resume time */
394 static int sd_init(struct gspca_dev
*gspca_dev
)
398 struct sd
*sd
= (struct sd
*) gspca_dev
;
400 /* set GPIO3,4,5,6 direction to output */
401 reg_w(gspca_dev
, STK1135_REG_GCTRL
+ 2, 0x78);
402 /* enable sensor (GPIO5) */
403 reg_w(gspca_dev
, STK1135_REG_GCTRL
, (1 << 5));
404 /* disable ROM interface */
405 reg_w(gspca_dev
, STK1135_REG_GCTRL
+ 3, 0x80);
406 /* enable interrupts from GPIO8 (flip sensor) and GPIO9 (???) */
407 reg_w(gspca_dev
, STK1135_REG_ICTRL
+ 1, 0x00);
408 reg_w(gspca_dev
, STK1135_REG_ICTRL
+ 3, 0x03);
409 /* enable remote wakeup from GPIO9 (???) */
410 reg_w(gspca_dev
, STK1135_REG_RMCTL
+ 1, 0x00);
411 reg_w(gspca_dev
, STK1135_REG_RMCTL
+ 3, 0x02);
413 /* reset serial interface */
414 reg_w(gspca_dev
, STK1135_REG_SICTL
, 0x80);
415 reg_w(gspca_dev
, STK1135_REG_SICTL
, 0x00);
416 /* set sensor address */
417 reg_w(gspca_dev
, STK1135_REG_SICTL
+ 3, 0xba);
418 /* disable alt 2-wire serial interface */
419 reg_w(gspca_dev
, STK1135_REG_ASIC
+ 3, 0x00);
421 stk1135_configure_clock(gspca_dev
);
424 sd
->sensor_page
= 0xff;
425 sensor_id
= sensor_read(gspca_dev
, 0x000);
429 sensor_name
= "MT9M112";
432 sensor_name
= "unknown";
434 pr_info("Detected sensor type %s (0x%x)\n", sensor_name
, sensor_id
);
436 stk1135_camera_disable(gspca_dev
);
438 return gspca_dev
->usb_err
;
441 /* -- start the camera -- */
442 static int sd_start(struct gspca_dev
*gspca_dev
)
444 struct sd
*sd
= (struct sd
*) gspca_dev
;
447 /* enable sensor (GPIO5) */
448 reg_w(gspca_dev
, STK1135_REG_GCTRL
, (1 << 5));
450 stk1135_configure_clock(gspca_dev
);
452 /* set capture start position X = 0, Y = 0 */
453 reg_w(gspca_dev
, STK1135_REG_CISPO
+ 0, 0x00);
454 reg_w(gspca_dev
, STK1135_REG_CISPO
+ 1, 0x00);
455 reg_w(gspca_dev
, STK1135_REG_CISPO
+ 2, 0x00);
456 reg_w(gspca_dev
, STK1135_REG_CISPO
+ 3, 0x00);
458 /* set capture end position */
459 width
= gspca_dev
->pixfmt
.width
;
460 height
= gspca_dev
->pixfmt
.height
;
461 reg_w(gspca_dev
, STK1135_REG_CIEPO
+ 0, width
& 0xff);
462 reg_w(gspca_dev
, STK1135_REG_CIEPO
+ 1, width
>> 8);
463 reg_w(gspca_dev
, STK1135_REG_CIEPO
+ 2, height
& 0xff);
464 reg_w(gspca_dev
, STK1135_REG_CIEPO
+ 3, height
>> 8);
467 reg_w(gspca_dev
, STK1135_REG_SCTRL
, 0x20);
469 stk1135_configure_mt9m112(gspca_dev
);
472 reg_w_mask(gspca_dev
, STK1135_REG_SCTRL
, 0x80, 0x80);
474 if (gspca_dev
->usb_err
>= 0)
475 PDEBUG(D_STREAM
, "camera started alt: 0x%02x",
480 return gspca_dev
->usb_err
;
483 static void sd_stopN(struct gspca_dev
*gspca_dev
)
485 struct usb_device
*dev
= gspca_dev
->dev
;
487 usb_set_interface(dev
, gspca_dev
->iface
, 0);
489 stk1135_camera_disable(gspca_dev
);
491 PDEBUG(D_STREAM
, "camera stopped");
494 static void sd_pkt_scan(struct gspca_dev
*gspca_dev
,
495 u8
*data
, /* isoc packet */
496 int len
) /* iso packet length */
498 struct sd
*sd
= (struct sd
*) gspca_dev
;
499 int skip
= sizeof(struct stk1135_pkt_header
);
501 enum gspca_packet_type pkt_type
= INTER_PACKET
;
502 struct stk1135_pkt_header
*hdr
= (void *)data
;
506 PDEBUG(D_PACK
, "received short packet (less than 4 bytes)");
510 /* GPIO 8 is flip sensor (1 = normal position, 0 = flipped to back) */
511 flip
= !(le16_to_cpu(hdr
->gpio
) & (1 << 8));
512 /* it's a switch, needs software debounce */
513 if (sd
->flip_status
!= flip
)
516 sd
->flip_debounce
= 0;
518 /* check sequence number (not present in new frame packets) */
519 if (!(hdr
->flags
& STK1135_HDR_FRAME_START
)) {
520 seq
= hdr
->seq
& STK1135_HDR_SEQ_MASK
;
521 if (seq
!= sd
->pkt_seq
) {
522 PDEBUG(D_PACK
, "received out-of-sequence packet");
523 /* resync sequence and discard packet */
525 gspca_dev
->last_packet_type
= DISCARD_PACKET
;
530 if (sd
->pkt_seq
> STK1135_HDR_SEQ_MASK
)
533 if (len
== sizeof(struct stk1135_pkt_header
))
536 if (hdr
->flags
& STK1135_HDR_FRAME_START
) { /* new frame */
537 skip
= 8; /* the header is longer */
538 gspca_frame_add(gspca_dev
, LAST_PACKET
, data
, 0);
539 pkt_type
= FIRST_PACKET
;
541 gspca_frame_add(gspca_dev
, pkt_type
, data
+ skip
, len
- skip
);
544 static void sethflip(struct gspca_dev
*gspca_dev
, s32 val
)
546 struct sd
*sd
= (struct sd
*) gspca_dev
;
550 sensor_write_mask(gspca_dev
, 0x020, val
? 0x0002 : 0x0000 , 0x0002);
553 static void setvflip(struct gspca_dev
*gspca_dev
, s32 val
)
555 struct sd
*sd
= (struct sd
*) gspca_dev
;
559 sensor_write_mask(gspca_dev
, 0x020, val
? 0x0001 : 0x0000 , 0x0001);
562 static void stk1135_dq_callback(struct gspca_dev
*gspca_dev
)
564 struct sd
*sd
= (struct sd
*) gspca_dev
;
566 if (sd
->flip_debounce
> 100) {
567 sd
->flip_status
= !sd
->flip_status
;
568 sethflip(gspca_dev
, v4l2_ctrl_g_ctrl(sd
->hflip
));
569 setvflip(gspca_dev
, v4l2_ctrl_g_ctrl(sd
->vflip
));
573 static int sd_s_ctrl(struct v4l2_ctrl
*ctrl
)
575 struct gspca_dev
*gspca_dev
=
576 container_of(ctrl
->handler
, struct gspca_dev
, ctrl_handler
);
578 gspca_dev
->usb_err
= 0;
580 if (!gspca_dev
->streaming
)
585 sethflip(gspca_dev
, ctrl
->val
);
588 setvflip(gspca_dev
, ctrl
->val
);
592 return gspca_dev
->usb_err
;
595 static const struct v4l2_ctrl_ops sd_ctrl_ops
= {
599 static int sd_init_controls(struct gspca_dev
*gspca_dev
)
601 struct sd
*sd
= (struct sd
*) gspca_dev
;
602 struct v4l2_ctrl_handler
*hdl
= &gspca_dev
->ctrl_handler
;
604 gspca_dev
->vdev
.ctrl_handler
= hdl
;
605 v4l2_ctrl_handler_init(hdl
, 2);
606 sd
->hflip
= v4l2_ctrl_new_std(hdl
, &sd_ctrl_ops
,
607 V4L2_CID_HFLIP
, 0, 1, 1, 0);
608 sd
->vflip
= v4l2_ctrl_new_std(hdl
, &sd_ctrl_ops
,
609 V4L2_CID_VFLIP
, 0, 1, 1, 0);
612 pr_err("Could not initialize controls\n");
618 static void stk1135_try_fmt(struct gspca_dev
*gspca_dev
, struct v4l2_format
*fmt
)
620 fmt
->fmt
.pix
.width
= clamp(fmt
->fmt
.pix
.width
, 32U, 1280U);
621 fmt
->fmt
.pix
.height
= clamp(fmt
->fmt
.pix
.height
, 32U, 1024U);
622 /* round up to even numbers */
623 fmt
->fmt
.pix
.width
+= (fmt
->fmt
.pix
.width
& 1);
624 fmt
->fmt
.pix
.height
+= (fmt
->fmt
.pix
.height
& 1);
626 fmt
->fmt
.pix
.bytesperline
= fmt
->fmt
.pix
.width
;
627 fmt
->fmt
.pix
.sizeimage
= fmt
->fmt
.pix
.width
* fmt
->fmt
.pix
.height
;
630 static int stk1135_enum_framesizes(struct gspca_dev
*gspca_dev
,
631 struct v4l2_frmsizeenum
*fsize
)
633 if (fsize
->index
!= 0 || fsize
->pixel_format
!= V4L2_PIX_FMT_SBGGR8
)
636 fsize
->type
= V4L2_FRMSIZE_TYPE_STEPWISE
;
637 fsize
->stepwise
.min_width
= 32;
638 fsize
->stepwise
.min_height
= 32;
639 fsize
->stepwise
.max_width
= 1280;
640 fsize
->stepwise
.max_height
= 1024;
641 fsize
->stepwise
.step_width
= 2;
642 fsize
->stepwise
.step_height
= 2;
647 /* sub-driver description */
648 static const struct sd_desc sd_desc
= {
652 .init_controls
= sd_init_controls
,
655 .pkt_scan
= sd_pkt_scan
,
656 .dq_callback
= stk1135_dq_callback
,
657 .try_fmt
= stk1135_try_fmt
,
658 .enum_framesizes
= stk1135_enum_framesizes
,
661 /* -- module initialisation -- */
662 static const struct usb_device_id device_table
[] = {
663 {USB_DEVICE(0x174f, 0x6a31)}, /* ASUS laptop, MT9M112 sensor */
666 MODULE_DEVICE_TABLE(usb
, device_table
);
668 /* -- device connect -- */
669 static int sd_probe(struct usb_interface
*intf
,
670 const struct usb_device_id
*id
)
672 return gspca_dev_probe(intf
, id
, &sd_desc
, sizeof(struct sd
),
676 static struct usb_driver sd_driver
= {
678 .id_table
= device_table
,
680 .disconnect
= gspca_disconnect
,
682 .suspend
= gspca_suspend
,
683 .resume
= gspca_resume
,
684 .reset_resume
= gspca_resume
,
688 module_usb_driver(sd_driver
);