2 * Mars-Semi MR97311A library
3 * Copyright (C) 2005 <bradlch@hotmail.com>
5 * V4L2 by Jean-Francois Moine <http://moinejf.free.fr>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #define MODULE_NAME "mars"
27 MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>");
28 MODULE_DESCRIPTION("GSPCA/Mars USB Camera Driver");
29 MODULE_LICENSE("GPL");
31 /* specific webcam descriptor */
33 struct gspca_dev gspca_dev; /* !! must be the first item */
40 #define QUALITY_MIN 40
41 #define QUALITY_MAX 70
42 #define QUALITY_DEF 50
47 /* V4L2 controls supported by the driver */
48 static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val);
49 static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val);
50 static int sd_setcolors(struct gspca_dev *gspca_dev, __s32 val);
51 static int sd_getcolors(struct gspca_dev *gspca_dev, __s32 *val);
52 static int sd_setgamma(struct gspca_dev *gspca_dev, __s32 val);
53 static int sd_getgamma(struct gspca_dev *gspca_dev, __s32 *val);
54 static int sd_setsharpness(struct gspca_dev *gspca_dev, __s32 val);
55 static int sd_getsharpness(struct gspca_dev *gspca_dev, __s32 *val);
57 static struct ctrl sd_ctrls[] = {
60 .id = V4L2_CID_BRIGHTNESS,
61 .type = V4L2_CTRL_TYPE_INTEGER,
66 #define BRIGHTNESS_DEF 15
67 .default_value = BRIGHTNESS_DEF,
69 .set = sd_setbrightness,
70 .get = sd_getbrightness,
74 .id = V4L2_CID_SATURATION,
75 .type = V4L2_CTRL_TYPE_INTEGER,
81 .default_value = COLOR_DEF,
89 .type = V4L2_CTRL_TYPE_INTEGER,
95 .default_value = GAMMA_DEF,
102 .id = V4L2_CID_SHARPNESS,
103 .type = V4L2_CTRL_TYPE_INTEGER,
108 #define SHARPNESS_DEF 1
109 .default_value = SHARPNESS_DEF,
111 .set = sd_setsharpness,
112 .get = sd_getsharpness,
116 static const struct v4l2_pix_format vga_mode[] = {
117 {320, 240, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
119 .sizeimage = 320 * 240 * 3 / 8 + 590,
120 .colorspace = V4L2_COLORSPACE_JPEG,
122 {640, 480, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
124 .sizeimage = 640 * 480 * 3 / 8 + 590,
125 .colorspace = V4L2_COLORSPACE_JPEG,
129 static const __u8 mi_data[0x20] = {
130 /* 01 02 03 04 05 06 07 08 */
131 0x48, 0x22, 0x01, 0x47, 0x10, 0x00, 0x00, 0x00,
132 /* 09 0a 0b 0c 0d 0e 0f 10 */
133 0x00, 0x01, 0x30, 0x01, 0x30, 0x01, 0x30, 0x01,
134 /* 11 12 13 14 15 16 17 18 */
135 0x30, 0x00, 0x04, 0x00, 0x06, 0x01, 0xe2, 0x02,
136 /* 19 1a 1b 1c 1d 1e 1f 20 */
137 0x82, 0x00, 0x20, 0x17, 0x80, 0x08, 0x0c, 0x00
140 /* write <len> bytes from gspca_dev->usb_buf */
141 static int reg_w(struct gspca_dev *gspca_dev,
146 ret = usb_bulk_msg(gspca_dev->dev,
147 usb_sndbulkpipe(gspca_dev->dev, 4),
151 500); /* timeout in milliseconds */
153 PDEBUG(D_ERR, "reg write [%02x] error %d",
154 gspca_dev->usb_buf[0], ret);
158 static void mi_w(struct gspca_dev *gspca_dev,
162 gspca_dev->usb_buf[0] = 0x1f;
163 gspca_dev->usb_buf[1] = 0; /* control byte */
164 gspca_dev->usb_buf[2] = addr;
165 gspca_dev->usb_buf[3] = value;
170 /* this function is called at probe time */
171 static int sd_config(struct gspca_dev *gspca_dev,
172 const struct usb_device_id *id)
174 struct sd *sd = (struct sd *) gspca_dev;
177 cam = &gspca_dev->cam;
178 cam->cam_mode = vga_mode;
179 cam->nmodes = ARRAY_SIZE(vga_mode);
180 sd->brightness = BRIGHTNESS_DEF;
181 sd->colors = COLOR_DEF;
182 sd->gamma = GAMMA_DEF;
183 sd->sharpness = SHARPNESS_DEF;
184 sd->quality = QUALITY_DEF;
185 gspca_dev->nbalt = 9; /* use the altsetting 08 */
189 /* this function is called at probe and resume time */
190 static int sd_init(struct gspca_dev *gspca_dev)
195 static int sd_start(struct gspca_dev *gspca_dev)
197 struct sd *sd = (struct sd *) gspca_dev;
202 /* create the JPEG header */
203 sd->jpeg_hdr = kmalloc(JPEG_HDR_SZ, GFP_KERNEL);
204 jpeg_define(sd->jpeg_hdr, gspca_dev->height, gspca_dev->width,
205 0x21); /* JPEG 422 */
206 jpeg_set_qual(sd->jpeg_hdr, sd->quality);
208 data = gspca_dev->usb_buf;
210 data[0] = 0x01; /* address */
212 err_code = reg_w(gspca_dev, 2);
217 Initialize the MR97113 chip register
219 data[0] = 0x00; /* address */
220 data[1] = 0x0c | 0x01; /* reg 0 */
221 data[2] = 0x01; /* reg 1 */
222 data[3] = gspca_dev->width / 8; /* h_size , reg 2 */
223 data[4] = gspca_dev->height / 8; /* v_size , reg 3 */
224 data[5] = 0x30; /* reg 4, MI, PAS5101 :
225 * 0x30 for 24mhz , 0x28 for 12mhz */
226 data[6] = 0x02; /* reg 5, H start - was 0x04 */
227 data[7] = sd->gamma * 0x40; /* reg 0x06: gamma */
228 data[8] = 0x01; /* reg 7, V start - was 0x03 */
229 /* if (h_size == 320 ) */
230 /* data[9]= 0x56; * reg 8, 24MHz, 2:1 scale down */
232 data[9] = 0x52; /* reg 8, 24MHz, no scale down */
233 /*jfm: from win trace*/
236 err_code = reg_w(gspca_dev, 11);
240 data[0] = 0x23; /* address */
241 data[1] = 0x09; /* reg 35, append frame header */
243 err_code = reg_w(gspca_dev, 2);
247 data[0] = 0x3c; /* address */
248 /* if (gspca_dev->width == 1280) */
249 /* data[1] = 200; * reg 60, pc-cam frame size
250 * (unit: 4KB) 800KB */
252 data[1] = 50; /* 50 reg 60, pc-cam frame size
253 * (unit: 4KB) 200KB */
254 err_code = reg_w(gspca_dev, 2);
259 data[0] = 0x5e; /* address */
260 data[1] = 0; /* reg 94, Y Gain (auto) */
261 /*jfm: from win trace*/
262 /* reg 0x5f/0x60 (LE) = saturation */
264 * l (5f): xxxx x000 */
265 data[2] = sd->colors << 3;
266 data[3] = ((sd->colors >> 2) & 0xf8) | 0x04;
267 data[4] = sd->brightness; /* reg 0x61 = brightness */
270 err_code = reg_w(gspca_dev, 6);
275 /*jfm: from win trace*/
276 data[1] = sd->sharpness * 4 + 3;
278 err_code = reg_w(gspca_dev, 3);
286 err_code = reg_w(gspca_dev, 4);
292 err_code = reg_w(gspca_dev, 2);
293 /*jfm: win trace - many writes here to reg 0x64*/
297 /* initialize the MI sensor */
298 for (i = 0; i < sizeof mi_data; i++)
299 mi_w(gspca_dev, i + 1, mi_data[i]);
302 data[1] = 0x4d; /* ISOC transfering enable... */
307 static void sd_stopN(struct gspca_dev *gspca_dev)
311 gspca_dev->usb_buf[0] = 1;
312 gspca_dev->usb_buf[1] = 0;
313 result = reg_w(gspca_dev, 2);
315 PDEBUG(D_ERR, "Camera Stop failed");
318 static void sd_stop0(struct gspca_dev *gspca_dev)
320 struct sd *sd = (struct sd *) gspca_dev;
325 static void sd_pkt_scan(struct gspca_dev *gspca_dev,
326 struct gspca_frame *frame, /* target */
327 __u8 *data, /* isoc packet */
328 int len) /* iso packet length */
330 struct sd *sd = (struct sd *) gspca_dev;
334 /* gspca_dev->last_packet_type = DISCARD_PACKET; */
337 for (p = 0; p < len - 6; p++) {
338 if (data[0 + p] == 0xff
339 && data[1 + p] == 0xff
340 && data[2 + p] == 0x00
341 && data[3 + p] == 0xff
342 && data[4 + p] == 0x96) {
343 if (data[5 + p] == 0x64
344 || data[5 + p] == 0x65
345 || data[5 + p] == 0x66
346 || data[5 + p] == 0x67) {
347 PDEBUG(D_PACK, "sof offset: %d len: %d",
349 frame = gspca_frame_add(gspca_dev, LAST_PACKET,
352 /* put the JPEG header */
353 gspca_frame_add(gspca_dev, FIRST_PACKET, frame,
354 sd->jpeg_hdr, JPEG_HDR_SZ);
361 gspca_frame_add(gspca_dev, INTER_PACKET, frame, data, len);
364 static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val)
366 struct sd *sd = (struct sd *) gspca_dev;
368 sd->brightness = val;
369 if (gspca_dev->streaming) {
370 gspca_dev->usb_buf[0] = 0x61;
371 gspca_dev->usb_buf[1] = val;
377 static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val)
379 struct sd *sd = (struct sd *) gspca_dev;
381 *val = sd->brightness;
385 static int sd_setcolors(struct gspca_dev *gspca_dev, __s32 val)
387 struct sd *sd = (struct sd *) gspca_dev;
390 if (gspca_dev->streaming) {
393 gspca_dev->usb_buf[0] = 0x5f;
394 gspca_dev->usb_buf[1] = sd->colors << 3;
395 gspca_dev->usb_buf[2] = ((sd->colors >> 2) & 0xf8) | 0x04;
401 static int sd_getcolors(struct gspca_dev *gspca_dev, __s32 *val)
403 struct sd *sd = (struct sd *) gspca_dev;
409 static int sd_setgamma(struct gspca_dev *gspca_dev, __s32 val)
411 struct sd *sd = (struct sd *) gspca_dev;
414 if (gspca_dev->streaming) {
415 gspca_dev->usb_buf[0] = 0x06;
416 gspca_dev->usb_buf[1] = val * 0x40;
422 static int sd_getgamma(struct gspca_dev *gspca_dev, __s32 *val)
424 struct sd *sd = (struct sd *) gspca_dev;
430 static int sd_setsharpness(struct gspca_dev *gspca_dev, __s32 val)
432 struct sd *sd = (struct sd *) gspca_dev;
435 if (gspca_dev->streaming) {
436 gspca_dev->usb_buf[0] = 0x67;
437 gspca_dev->usb_buf[1] = val * 4 + 3;
443 static int sd_getsharpness(struct gspca_dev *gspca_dev, __s32 *val)
445 struct sd *sd = (struct sd *) gspca_dev;
447 *val = sd->sharpness;
451 static int sd_set_jcomp(struct gspca_dev *gspca_dev,
452 struct v4l2_jpegcompression *jcomp)
454 struct sd *sd = (struct sd *) gspca_dev;
456 if (jcomp->quality < QUALITY_MIN)
457 sd->quality = QUALITY_MIN;
458 else if (jcomp->quality > QUALITY_MAX)
459 sd->quality = QUALITY_MAX;
461 sd->quality = jcomp->quality;
462 if (gspca_dev->streaming)
463 jpeg_set_qual(sd->jpeg_hdr, sd->quality);
467 static int sd_get_jcomp(struct gspca_dev *gspca_dev,
468 struct v4l2_jpegcompression *jcomp)
470 struct sd *sd = (struct sd *) gspca_dev;
472 memset(jcomp, 0, sizeof *jcomp);
473 jcomp->quality = sd->quality;
474 jcomp->jpeg_markers = V4L2_JPEG_MARKER_DHT
475 | V4L2_JPEG_MARKER_DQT;
479 /* sub-driver description */
480 static const struct sd_desc sd_desc = {
483 .nctrls = ARRAY_SIZE(sd_ctrls),
489 .pkt_scan = sd_pkt_scan,
490 .get_jcomp = sd_get_jcomp,
491 .set_jcomp = sd_set_jcomp,
494 /* -- module initialisation -- */
495 static const __devinitdata struct usb_device_id device_table[] = {
496 {USB_DEVICE(0x093a, 0x050f)},
499 MODULE_DEVICE_TABLE(usb, device_table);
501 /* -- device connect -- */
502 static int sd_probe(struct usb_interface *intf,
503 const struct usb_device_id *id)
505 return gspca_dev_probe(intf, id, &sd_desc, sizeof(struct sd),
509 static struct usb_driver sd_driver = {
511 .id_table = device_table,
513 .disconnect = gspca_disconnect,
515 .suspend = gspca_suspend,
516 .resume = gspca_resume,
520 /* -- module insert / remove -- */
521 static int __init sd_mod_init(void)
525 ret = usb_register(&sd_driver);
528 PDEBUG(D_PROBE, "registered");
531 static void __exit sd_mod_exit(void)
533 usb_deregister(&sd_driver);
534 PDEBUG(D_PROBE, "deregistered");
537 module_init(sd_mod_init);
538 module_exit(sd_mod_exit);