2 * SPCA505 chip based cameras initialization data
4 * V4L2 by Jean-Francis Moine <http://moinejf.free.fr>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #define MODULE_NAME "spca505"
26 #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 0)
27 static const char version[] = "2.1.0";
29 MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>");
30 MODULE_DESCRIPTION("GSPCA/SPCA505 USB Camera Driver");
31 MODULE_LICENSE("GPL");
33 /* specific webcam descriptor */
35 struct gspca_dev gspca_dev; /* !! must be the first item */
38 unsigned char tmpbuf[640 * 480 * 3 / 2]; /* YYUV per line */
39 unsigned char tmpbuf2[640 * 480 * 2]; /* YUYV */
41 unsigned char brightness;
44 #define IntelPCCameraPro 0
48 /* V4L2 controls supported by the driver */
49 static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val);
50 static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val);
52 static struct ctrl sd_ctrls[] = {
53 #define SD_BRIGHTNESS 0
56 .id = V4L2_CID_BRIGHTNESS,
57 .type = V4L2_CTRL_TYPE_INTEGER,
64 .set = sd_setbrightness,
65 .get = sd_getbrightness,
69 static struct cam_mode vga_mode[] = {
70 {V4L2_PIX_FMT_YUYV, 160, 120, 5},
71 {V4L2_PIX_FMT_YUYV, 176, 144, 4},
72 {V4L2_PIX_FMT_YUYV, 320, 240, 2},
73 {V4L2_PIX_FMT_YUYV, 352, 288, 1},
74 {V4L2_PIX_FMT_YUYV, 640, 480, 0},
77 #define SPCA50X_OFFSET_DATA 10
79 #define SPCA50X_REG_USB 0x02 /* spca505 501 */
81 #define SPCA50X_USB_CTRL 0x00 /* spca505 */
82 #define SPCA50X_CUSB_ENABLE 0x01 /* spca505 */
83 #define SPCA50X_REG_GLOBAL 0x03 /* spca505 */
84 #define SPCA50X_GMISC0_IDSEL 0x01 /* Global control device ID select spca505 */
85 #define SPCA50X_GLOBAL_MISC0 0x00 /* Global control miscellaneous 0 spca505 */
87 #define SPCA50X_GLOBAL_MISC1 0x01 /* 505 */
88 #define SPCA50X_GLOBAL_MISC3 0x03 /* 505 */
89 #define SPCA50X_GMISC3_SAA7113RST 0x20 /* Not sure about this one spca505 */
92 * Data to initialize a SPCA505. Common to the CCD and external modes
94 static __u16 spca505_init_data[][3] = {
95 /* line bmRequest,value,index */
97 {SPCA50X_REG_GLOBAL, SPCA50X_GMISC3_SAA7113RST, SPCA50X_GLOBAL_MISC3},
99 /* 1822 */ {SPCA50X_REG_GLOBAL, 0x00, SPCA50X_GLOBAL_MISC3},
100 /* 1825 */ {SPCA50X_REG_GLOBAL, 0x00, SPCA50X_GLOBAL_MISC1},
101 /* Block USB reset */
102 /* 1828 */ {SPCA50X_REG_GLOBAL, SPCA50X_GMISC0_IDSEL,
103 SPCA50X_GLOBAL_MISC0},
105 /* 1831 */ {0x5, 0x01, 0x10},
106 /* Maybe power down some stuff */
107 /* 1834 */ {0x5, 0x0f, 0x11},
109 /* Setup internal CCD ? */
110 /* 1837 */ {0x6, 0x10, 0x08},
111 /* 1840 */ {0x6, 0x00, 0x09},
112 /* 1843 */ {0x6, 0x00, 0x0a},
113 /* 1846 */ {0x6, 0x00, 0x0b},
114 /* 1849 */ {0x6, 0x10, 0x0c},
115 /* 1852 */ {0x6, 0x00, 0x0d},
116 /* 1855 */ {0x6, 0x00, 0x0e},
117 /* 1858 */ {0x6, 0x00, 0x0f},
118 /* 1861 */ {0x6, 0x10, 0x10},
119 /* 1864 */ {0x6, 0x02, 0x11},
120 /* 1867 */ {0x6, 0x00, 0x12},
121 /* 1870 */ {0x6, 0x04, 0x13},
122 /* 1873 */ {0x6, 0x02, 0x14},
123 /* 1876 */ {0x6, 0x8a, 0x51},
124 /* 1879 */ {0x6, 0x40, 0x52},
125 /* 1882 */ {0x6, 0xb6, 0x53},
126 /* 1885 */ {0x6, 0x3d, 0x54},
131 * Data to initialize the camera using the internal CCD
133 static __u16 spca505_open_data_ccd[][3] = {
134 /* line bmRequest,value,index */
135 /* Internal CCD data set */
136 /* 1891 */ {0x3, 0x04, 0x01},
137 /* This could be a reset */
138 /* 1894 */ {0x3, 0x00, 0x01},
140 /* Setup compression and image registers. 0x6 and 0x7 seem to be
141 related to H&V hold, and are resolution mode specific */
142 /* 1897 */ {0x4, 0x10, 0x01},
143 /* DIFF(0x50), was (0x10) */
144 /* 1900 */ {0x4, 0x00, 0x04},
145 /* 1903 */ {0x4, 0x00, 0x05},
146 /* 1906 */ {0x4, 0x20, 0x06},
147 /* 1909 */ {0x4, 0x20, 0x07},
149 /* 1912 */ {0x8, 0x0a, 0x00},
150 /* DIFF (0x4a), was (0xa) */
152 /* 1915 */ {0x5, 0x00, 0x10},
153 /* 1918 */ {0x5, 0x00, 0x11},
154 /* 1921 */ {0x5, 0x00, 0x00},
155 /* DIFF not written */
156 /* 1924 */ {0x5, 0x00, 0x01},
157 /* DIFF not written */
158 /* 1927 */ {0x5, 0x00, 0x02},
159 /* DIFF not written */
160 /* 1930 */ {0x5, 0x00, 0x03},
161 /* DIFF not written */
162 /* 1933 */ {0x5, 0x00, 0x04},
163 /* DIFF not written */
164 /* 1936 */ {0x5, 0x80, 0x05},
165 /* DIFF not written */
166 /* 1939 */ {0x5, 0xe0, 0x06},
167 /* DIFF not written */
168 /* 1942 */ {0x5, 0x20, 0x07},
169 /* DIFF not written */
170 /* 1945 */ {0x5, 0xa0, 0x08},
171 /* DIFF not written */
172 /* 1948 */ {0x5, 0x0, 0x12},
173 /* DIFF not written */
174 /* 1951 */ {0x5, 0x02, 0x0f},
175 /* DIFF not written */
176 /* 1954 */ {0x5, 0x10, 0x46},
177 /* DIFF not written */
178 /* 1957 */ {0x5, 0x8, 0x4a},
179 /* DIFF not written */
181 /* 1960 */ {0x3, 0x08, 0x03},
182 /* DIFF (0x3,0x28,0x3) */
183 /* 1963 */ {0x3, 0x08, 0x01},
184 /* 1966 */ {0x3, 0x0c, 0x03},
185 /* DIFF not written */
186 /* 1969 */ {0x3, 0x21, 0x00},
189 /* Extra block copied from init to hopefully ensure CCD is in a sane state */
190 /* 1837 */ {0x6, 0x10, 0x08},
191 /* 1840 */ {0x6, 0x00, 0x09},
192 /* 1843 */ {0x6, 0x00, 0x0a},
193 /* 1846 */ {0x6, 0x00, 0x0b},
194 /* 1849 */ {0x6, 0x10, 0x0c},
195 /* 1852 */ {0x6, 0x00, 0x0d},
196 /* 1855 */ {0x6, 0x00, 0x0e},
197 /* 1858 */ {0x6, 0x00, 0x0f},
198 /* 1861 */ {0x6, 0x10, 0x10},
199 /* 1864 */ {0x6, 0x02, 0x11},
200 /* 1867 */ {0x6, 0x00, 0x12},
201 /* 1870 */ {0x6, 0x04, 0x13},
202 /* 1873 */ {0x6, 0x02, 0x14},
203 /* 1876 */ {0x6, 0x8a, 0x51},
204 /* 1879 */ {0x6, 0x40, 0x52},
205 /* 1882 */ {0x6, 0xb6, 0x53},
206 /* 1885 */ {0x6, 0x3d, 0x54},
207 /* End of extra block */
209 /* 1972 */ {0x6, 0x3f, 0x1},
211 /* 1975 */ {0x6, 0x10, 0x02},
212 /* 1978 */ {0x6, 0x64, 0x07},
213 /* 1981 */ {0x6, 0x10, 0x08},
214 /* 1984 */ {0x6, 0x00, 0x09},
215 /* 1987 */ {0x6, 0x00, 0x0a},
216 /* 1990 */ {0x6, 0x00, 0x0b},
217 /* 1993 */ {0x6, 0x10, 0x0c},
218 /* 1996 */ {0x6, 0x00, 0x0d},
219 /* 1999 */ {0x6, 0x00, 0x0e},
220 /* 2002 */ {0x6, 0x00, 0x0f},
221 /* 2005 */ {0x6, 0x10, 0x10},
222 /* 2008 */ {0x6, 0x02, 0x11},
223 /* 2011 */ {0x6, 0x00, 0x12},
224 /* 2014 */ {0x6, 0x04, 0x13},
225 /* 2017 */ {0x6, 0x02, 0x14},
226 /* 2020 */ {0x6, 0x8a, 0x51},
227 /* 2023 */ {0x6, 0x40, 0x52},
228 /* 2026 */ {0x6, 0xb6, 0x53},
229 /* 2029 */ {0x6, 0x3d, 0x54},
230 /* 2032 */ {0x6, 0x60, 0x57},
231 /* 2035 */ {0x6, 0x20, 0x58},
232 /* 2038 */ {0x6, 0x15, 0x59},
233 /* 2041 */ {0x6, 0x05, 0x5a},
235 /* 2044 */ {0x5, 0x01, 0xc0},
236 /* 2047 */ {0x5, 0x10, 0xcb},
237 /* 2050 */ {0x5, 0x80, 0xc1},
239 /* 2053 */ {0x5, 0x0, 0xc2},
241 /* 2056 */ {0x5, 0x00, 0xca},
242 /* 2059 */ {0x5, 0x80, 0xc1},
244 /* 2062 */ {0x5, 0x04, 0xc2},
245 /* 2065 */ {0x5, 0x00, 0xca},
246 /* 2068 */ {0x5, 0x0, 0xc1},
248 /* 2071 */ {0x5, 0x00, 0xc2},
249 /* 2074 */ {0x5, 0x00, 0xca},
250 /* 2077 */ {0x5, 0x40, 0xc1},
252 /* 2080 */ {0x5, 0x17, 0xc2},
253 /* 2083 */ {0x5, 0x00, 0xca},
254 /* 2086 */ {0x5, 0x80, 0xc1},
256 /* 2089 */ {0x5, 0x06, 0xc2},
257 /* 2092 */ {0x5, 0x00, 0xca},
258 /* 2095 */ {0x5, 0x80, 0xc1},
260 /* 2098 */ {0x5, 0x04, 0xc2},
261 /* 2101 */ {0x5, 0x00, 0xca},
263 /* 2104 */ {0x3, 0x4c, 0x3},
264 /* 2107 */ {0x3, 0x18, 0x1},
266 /* 2110 */ {0x6, 0x70, 0x51},
267 /* 2113 */ {0x6, 0xbe, 0x53},
268 /* 2116 */ {0x6, 0x71, 0x57},
269 /* 2119 */ {0x6, 0x20, 0x58},
270 /* 2122 */ {0x6, 0x05, 0x59},
271 /* 2125 */ {0x6, 0x15, 0x5a},
273 /* 2128 */ {0x4, 0x00, 0x08},
274 /* Compress = OFF (0x1 to turn on) */
275 /* 2131 */ {0x4, 0x12, 0x09},
276 /* 2134 */ {0x4, 0x21, 0x0a},
277 /* 2137 */ {0x4, 0x10, 0x0b},
278 /* 2140 */ {0x4, 0x21, 0x0c},
279 /* 2143 */ {0x4, 0x05, 0x00},
280 /* was 5 (Image Type ? ) */
281 /* 2146 */ {0x4, 0x00, 0x01},
283 /* 2149 */ {0x6, 0x3f, 0x01},
285 /* 2152 */ {0x4, 0x00, 0x04},
286 /* 2155 */ {0x4, 0x00, 0x05},
287 /* 2158 */ {0x4, 0x40, 0x06},
288 /* 2161 */ {0x4, 0x40, 0x07},
290 /* 2164 */ {0x6, 0x1c, 0x17},
291 /* 2167 */ {0x6, 0xe2, 0x19},
292 /* 2170 */ {0x6, 0x1c, 0x1b},
293 /* 2173 */ {0x6, 0xe2, 0x1d},
294 /* 2176 */ {0x6, 0xaa, 0x1f},
295 /* 2179 */ {0x6, 0x70, 0x20},
297 /* 2182 */ {0x5, 0x01, 0x10},
298 /* 2185 */ {0x5, 0x00, 0x11},
299 /* 2188 */ {0x5, 0x01, 0x00},
300 /* 2191 */ {0x5, 0x05, 0x01},
301 /* 2194 */ {0x5, 0x00, 0xc1},
303 /* 2197 */ {0x5, 0x00, 0xc2},
304 /* 2200 */ {0x5, 0x00, 0xca},
306 /* 2203 */ {0x6, 0x70, 0x51},
307 /* 2206 */ {0x6, 0xbe, 0x53},
312 Made by Tomasz Zablocki (skalamandra@poczta.onet.pl)
313 * SPCA505b chip based cameras initialization data
317 #define initial_brightness 0x7f /* 0x0(white)-0xff(black) */
318 /* #define initial_brightness 0x0 //0x0(white)-0xff(black) */
320 * Data to initialize a SPCA505. Common to the CCD and external modes
322 static __u16 spca505b_init_data[][3] = {
324 {0x02, 0x00, 0x00}, /* init */
384 * Data to initialize the camera using the internal CCD
386 static __u16 spca505b_open_data_ccd[][3] = {
388 /* {0x02,0x00,0x00}, */
389 {0x03, 0x04, 0x01}, /* rst */
415 {0x05, initial_brightness >> 6, 0x00},
416 {0x05, initial_brightness << 2, 0x01},
426 {0x05, 128, 0x14}, /* max exposure off (0=on) */
445 {0x06, 0x11, 0x10}, /* contrast */
510 {0x06, 0x4d, 0x51}, /* maybe saturation (4d) */
511 {0x06, 0x84, 0x53}, /* making green (84) */
512 {0x06, 0x00, 0x57}, /* sharpness (1) */
517 {0x06, 0x18, 0x0c}, /* maybe hue (18) */
521 {0x06, 0x18, 0x10}, /* maybe contrast (18) */
525 {0x04, 0x00, 0x08}, /* compression */
530 {0x04, 0x1d, 0x00}, /* imagetype (1d) */
531 {0x04, 0x41, 0x01}, /* hardware snapcontrol */
549 {0x05, initial_brightness >> 6, 0x00},
550 {0x05, initial_brightness << 2, 0x01},
558 static int reg_write(struct usb_device *dev,
559 __u16 reg, __u16 index, __u16 value)
563 ret = usb_control_msg(dev,
564 usb_sndctrlpipe(dev, 0),
566 USB_TYPE_VENDOR | USB_RECIP_DEVICE,
567 value, index, NULL, 0, 500);
568 PDEBUG(D_PACK, "reg write: 0x%02x,0x%02x:0x%02x, 0x%x",
569 reg, index, value, ret);
571 PDEBUG(D_ERR, "reg write: error %d", ret);
575 /* returns: negative is error, pos or zero is data */
576 static int reg_read(struct usb_device *dev,
577 __u16 reg, /* bRequest */
578 __u16 index, /* wIndex */
579 __u16 length) /* wLength (1 or 2 only) */
582 unsigned char buf[4];
585 ret = usb_control_msg(dev,
586 usb_rcvctrlpipe(dev, 0),
588 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
589 (__u16) 0, /* value */
595 PDEBUG(D_ERR, "reg_read err %d", ret);
598 return (buf[1] << 8) + buf[0];
601 static int write_vector(struct gspca_dev *gspca_dev,
604 struct usb_device *dev = gspca_dev->dev;
607 while (data[i][0] != 0 || data[i][1] != 0 || data[i][2] != 0) {
608 ret = reg_write(dev, data[i][0], data[i][2], data[i][1]);
611 "Register write failed for 0x%x,0x%x,0x%x",
612 data[i][0], data[i][1], data[i][2]);
620 /* this function is called at probe time */
621 static int sd_config(struct gspca_dev *gspca_dev,
622 const struct usb_device_id *id)
624 struct sd *sd = (struct sd *) gspca_dev;
629 vendor = id->idVendor;
630 product = id->idProduct;
632 case 0x041e: /* Creative cameras */
633 /* switch (product) { */
634 /* case 0x401d: * here505b */
635 sd->subtype = Nxultra;
639 case 0x0733: /* Rebadged ViewQuest (Intel) and ViewQuest cameras */
640 /* switch (product) { */
642 /* fixme: may be UsbGrabberPV321 BRIDGE_SPCA506 SENSOR_SAA7113 */
643 sd->subtype = IntelPCCameraPro;
649 cam = &gspca_dev->cam;
650 cam->dev_name = (char *) id->driver_info;
652 cam->cam_mode = vga_mode;
653 if (sd->subtype != IntelPCCameraPro)
654 cam->nmodes = sizeof vga_mode / sizeof vga_mode[0];
655 else /* no 640x480 for IntelPCCameraPro */
656 cam->nmodes = sizeof vga_mode / sizeof vga_mode[0] - 1;
657 sd->brightness = sd_ctrls[SD_BRIGHTNESS].qctrl.default_value;
659 if (sd->subtype == Nxultra) {
660 if (write_vector(gspca_dev, spca505b_init_data))
663 if (write_vector(gspca_dev, spca505_init_data))
669 /* this function is called at open time */
670 static int sd_open(struct gspca_dev *gspca_dev)
672 struct sd *sd = (struct sd *) gspca_dev;
675 PDEBUG(D_STREAM, "Initializing SPCA505");
676 if (sd->subtype == Nxultra)
677 write_vector(gspca_dev, spca505b_open_data_ccd);
679 write_vector(gspca_dev, spca505_open_data_ccd);
680 ret = reg_read(gspca_dev->dev, 6, 0x16, 2);
683 PDEBUG(D_ERR|D_STREAM,
684 "register read failed for after vector read err = %d",
689 "After vector read returns : 0x%x should be 0x0101",
692 ret = reg_write(gspca_dev->dev, 6, 0x16, 0x0a);
694 PDEBUG(D_ERR, "register write failed for (6,0xa,0x16) err=%d",
698 reg_write(gspca_dev->dev, 5, 0xc2, 18);
702 static void sd_start(struct gspca_dev *gspca_dev)
704 struct usb_device *dev = gspca_dev->dev;
707 /* necessary because without it we can see stream
708 * only once after loading module */
709 /* stopping usb registers Tomasz change */
710 reg_write(dev, 0x02, 0x0, 0x0);
711 switch (gspca_dev->cam.cam_mode[(int) gspca_dev->curr_mode].mode) {
713 reg_write(dev, 0x04, 0x00, 0x00);
714 reg_write(dev, 0x04, 0x06, 0x10);
715 reg_write(dev, 0x04, 0x07, 0x10);
718 reg_write(dev, 0x04, 0x00, 0x01);
719 reg_write(dev, 0x04, 0x06, 0x1a);
720 reg_write(dev, 0x04, 0x07, 0x1a);
723 reg_write(dev, 0x04, 0x00, 0x02);
724 reg_write(dev, 0x04, 0x06, 0x1c);
725 reg_write(dev, 0x04, 0x07, 0x1d);
728 reg_write(dev, 0x04, 0x00, 0x04);
729 reg_write(dev, 0x04, 0x06, 0x34);
730 reg_write(dev, 0x04, 0x07, 0x34);
734 reg_write(dev, 0x04, 0x00, 0x05);
735 reg_write(dev, 0x04, 0x06, 0x40);
736 reg_write(dev, 0x04, 0x07, 0x40);
739 /* Enable ISO packet machine - should we do this here or in ISOC init ? */
740 ret = reg_write(dev, SPCA50X_REG_USB,
742 SPCA50X_CUSB_ENABLE);
744 /* reg_write(dev, 0x5, 0x0, 0x0); */
745 /* reg_write(dev, 0x5, 0x0, 0x1); */
746 /* reg_write(dev, 0x5, 0x11, 0x2); */
749 static void sd_stopN(struct gspca_dev *gspca_dev)
751 /* Disable ISO packet machine */
752 reg_write(gspca_dev->dev, 0x02, 0x00, 0x00);
755 static void sd_stop0(struct gspca_dev *gspca_dev)
759 /* this function is called at close time */
760 static void sd_close(struct gspca_dev *gspca_dev)
762 /* This maybe reset or power control */
763 reg_write(gspca_dev->dev, 0x03, 0x03, 0x20);
764 reg_write(gspca_dev->dev, 0x03, 0x01, 0x0);
765 reg_write(gspca_dev->dev, 0x03, 0x00, 0x1);
766 reg_write(gspca_dev->dev, 0x05, 0x10, 0x1);
767 reg_write(gspca_dev->dev, 0x05, 0x11, 0xf);
770 /* convert YYUV per line to YUYV (YUV 4:2:2) */
771 static void yyuv_decode(unsigned char *out,
776 unsigned char *Ui, *Vi, *yi, *yi1;
781 for (i = height / 2; --i >= 0; ) {
782 out1 = out + width * 2; /* next line */
786 for (j = width / 2; --j >= 0; ) {
787 *out++ = 128 + *yi++;
789 *out++ = 128 + *yi++;
792 *out1++ = 128 + *yi1++;
793 *out1++ = 128 + *Ui++;
794 *out1++ = 128 + *yi1++;
795 *out1++ = 128 + *Vi++;
802 static void sd_pkt_scan(struct gspca_dev *gspca_dev,
803 struct gspca_frame *frame, /* target */
804 unsigned char *data, /* isoc packet */
805 int len) /* iso packet length */
807 struct sd *sd = (struct sd *) gspca_dev;
810 case 0: /* start of frame */
811 if (gspca_dev->last_packet_type == FIRST_PACKET) {
812 yyuv_decode(sd->tmpbuf2, sd->tmpbuf,
815 frame = gspca_frame_add(gspca_dev,
823 gspca_frame_add(gspca_dev, FIRST_PACKET, frame,
825 data += SPCA50X_OFFSET_DATA;
826 len -= SPCA50X_OFFSET_DATA;
828 memcpy(sd->tmpbuf, data, len);
833 case 0xff: /* drop */
834 /* gspca_dev->last_packet_type = DISCARD_PACKET; */
839 memcpy(&sd->tmpbuf[sd->buflen], data, len);
843 static void setbrightness(struct gspca_dev *gspca_dev)
845 struct sd *sd = (struct sd *) gspca_dev;
847 __u8 brightness = sd->brightness;
848 reg_write(gspca_dev->dev, 5, 0x00, (255 - brightness) >> 6);
849 reg_write(gspca_dev->dev, 5, 0x01, (255 - brightness) << 2);
852 static void getbrightness(struct gspca_dev *gspca_dev)
854 struct sd *sd = (struct sd *) gspca_dev;
857 - ((reg_read(gspca_dev->dev, 5, 0x01, 1) >> 2)
858 + (reg_read(gspca_dev->dev, 5, 0x0, 1) << 6));
861 static int sd_setbrightness(struct gspca_dev *gspca_dev, __s32 val)
863 struct sd *sd = (struct sd *) gspca_dev;
865 sd->brightness = val;
866 if (gspca_dev->streaming)
867 setbrightness(gspca_dev);
871 static int sd_getbrightness(struct gspca_dev *gspca_dev, __s32 *val)
873 struct sd *sd = (struct sd *) gspca_dev;
875 getbrightness(gspca_dev);
876 *val = sd->brightness;
880 /* sub-driver description */
881 static struct sd_desc sd_desc = {
884 .nctrls = ARRAY_SIZE(sd_ctrls),
891 .pkt_scan = sd_pkt_scan,
894 /* -- module initialisation -- */
895 #define DVNM(name) .driver_info = (kernel_ulong_t) name
896 static __devinitdata struct usb_device_id device_table[] = {
897 {USB_DEVICE(0x041e, 0x401d), DVNM("Creative Webcam NX ULTRA")},
898 {USB_DEVICE(0x0733, 0x0430), DVNM("Intel PC Camera Pro")},
901 MODULE_DEVICE_TABLE(usb, device_table);
903 /* -- device connect -- */
904 static int sd_probe(struct usb_interface *intf,
905 const struct usb_device_id *id)
907 return gspca_dev_probe(intf, id, &sd_desc, sizeof(struct sd),
911 static struct usb_driver sd_driver = {
913 .id_table = device_table,
915 .disconnect = gspca_disconnect,
918 /* -- module insert / remove -- */
919 static int __init sd_mod_init(void)
921 if (usb_register(&sd_driver) < 0)
923 PDEBUG(D_PROBE, "v%s registered", version);
926 static void __exit sd_mod_exit(void)
928 usb_deregister(&sd_driver);
929 PDEBUG(D_PROBE, "deregistered");
932 module_init(sd_mod_init);
933 module_exit(sd_mod_exit);