2 * Benq DC E300 subdriver
4 * Copyright (C) 2009 Jean-Francois 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
21 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
23 #define MODULE_NAME "benq"
27 MODULE_AUTHOR("Jean-Francois Moine <http://moinejf.free.fr>");
28 MODULE_DESCRIPTION("Benq DC E300 USB Camera Driver");
29 MODULE_LICENSE("GPL");
31 /* specific webcam descriptor */
33 struct gspca_dev gspca_dev
; /* !! must be the first item */
36 static const struct v4l2_pix_format vga_mode
[] = {
37 {320, 240, V4L2_PIX_FMT_JPEG
, V4L2_FIELD_NONE
,
39 .sizeimage
= 320 * 240 * 3 / 8 + 590,
40 .colorspace
= V4L2_COLORSPACE_JPEG
},
43 static void sd_isoc_irq(struct urb
*urb
);
45 /* -- write a register -- */
46 static void reg_w(struct gspca_dev
*gspca_dev
,
49 struct usb_device
*dev
= gspca_dev
->dev
;
52 if (gspca_dev
->usb_err
< 0)
54 ret
= usb_control_msg(dev
, usb_sndctrlpipe(dev
, 0),
56 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
63 pr_err("reg_w err %d\n", ret
);
64 gspca_dev
->usb_err
= ret
;
68 /* this function is called at probe time */
69 static int sd_config(struct gspca_dev
*gspca_dev
,
70 const struct usb_device_id
*id
)
72 gspca_dev
->cam
.cam_mode
= vga_mode
;
73 gspca_dev
->cam
.nmodes
= ARRAY_SIZE(vga_mode
);
74 gspca_dev
->cam
.no_urb_create
= 1;
78 /* this function is called at probe and resume time */
79 static int sd_init(struct gspca_dev
*gspca_dev
)
84 /* -- start the camera -- */
85 static int sd_start(struct gspca_dev
*gspca_dev
)
90 /* create 4 URBs - 2 on endpoint 0x83 and 2 on 0x082 */
92 #error "Not enough URBs in the gspca table"
96 for (n
= 0; n
< 4; n
++) {
97 urb
= usb_alloc_urb(SD_NPKT
, GFP_KERNEL
);
100 gspca_dev
->urb
[n
] = urb
;
101 urb
->transfer_buffer
= usb_alloc_coherent(gspca_dev
->dev
,
106 if (urb
->transfer_buffer
== NULL
) {
107 pr_err("usb_alloc_coherent failed\n");
110 urb
->dev
= gspca_dev
->dev
;
111 urb
->context
= gspca_dev
;
112 urb
->transfer_buffer_length
= SD_PKT_SZ
* SD_NPKT
;
113 urb
->pipe
= usb_rcvisocpipe(gspca_dev
->dev
,
114 n
& 1 ? 0x82 : 0x83);
115 urb
->transfer_flags
= URB_ISO_ASAP
116 | URB_NO_TRANSFER_DMA_MAP
;
118 urb
->complete
= sd_isoc_irq
;
119 urb
->number_of_packets
= SD_NPKT
;
120 for (i
= 0; i
< SD_NPKT
; i
++) {
121 urb
->iso_frame_desc
[i
].length
= SD_PKT_SZ
;
122 urb
->iso_frame_desc
[i
].offset
= SD_PKT_SZ
* i
;
126 return gspca_dev
->usb_err
;
129 static void sd_stopN(struct gspca_dev
*gspca_dev
)
131 struct usb_interface
*intf
;
133 reg_w(gspca_dev
, 0x003c, 0x0003);
134 reg_w(gspca_dev
, 0x003c, 0x0004);
135 reg_w(gspca_dev
, 0x003c, 0x0005);
136 reg_w(gspca_dev
, 0x003c, 0x0006);
137 reg_w(gspca_dev
, 0x003c, 0x0007);
139 intf
= usb_ifnum_to_if(gspca_dev
->dev
, gspca_dev
->iface
);
140 usb_set_interface(gspca_dev
->dev
, gspca_dev
->iface
,
141 intf
->num_altsetting
- 1);
144 static void sd_pkt_scan(struct gspca_dev
*gspca_dev
,
145 u8
*data
, /* isoc packet */
146 int len
) /* iso packet length */
151 /* reception of an URB */
152 static void sd_isoc_irq(struct urb
*urb
)
154 struct gspca_dev
*gspca_dev
= (struct gspca_dev
*) urb
->context
;
159 PDEBUG(D_PACK
, "sd isoc irq");
160 if (!gspca_dev
->streaming
)
162 if (urb
->status
!= 0) {
163 if (urb
->status
== -ESHUTDOWN
)
164 return; /* disconnection */
166 if (gspca_dev
->frozen
)
169 pr_err("urb status: %d\n", urb
->status
);
173 /* if this is a control URN (ep 0x83), wait */
174 if (urb
== gspca_dev
->urb
[0] || urb
== gspca_dev
->urb
[2])
177 /* scan both received URBs */
178 if (urb
== gspca_dev
->urb
[1])
179 urb0
= gspca_dev
->urb
[0];
181 urb0
= gspca_dev
->urb
[2];
182 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
184 /* check the packet status and length */
185 if (urb0
->iso_frame_desc
[i
].actual_length
!= SD_PKT_SZ
186 || urb
->iso_frame_desc
[i
].actual_length
!= SD_PKT_SZ
) {
187 PERR("ISOC bad lengths %d / %d",
188 urb0
->iso_frame_desc
[i
].actual_length
,
189 urb
->iso_frame_desc
[i
].actual_length
);
190 gspca_dev
->last_packet_type
= DISCARD_PACKET
;
193 st
= urb0
->iso_frame_desc
[i
].status
;
195 st
= urb
->iso_frame_desc
[i
].status
;
197 pr_err("ISOC data error: [%d] status=%d\n",
199 gspca_dev
->last_packet_type
= DISCARD_PACKET
;
204 * The images are received in URBs of different endpoints
206 * Image pieces in URBs of ep 0x83 are continuated in URBs of
207 * ep 0x82 of the same index.
208 * The packets in the URBs of endpoint 0x83 start with:
209 * - 80 ba/bb 00 00 = start of image followed by 'ff d8'
210 * - 04 ba/bb oo oo = image piece
211 * where 'oo oo' is the image offset
213 * - (other -> bad frame)
214 * The images are JPEG encoded with full header and
216 * The end of image ('ff d9') may occur in any URB.
219 data
= (u8
*) urb0
->transfer_buffer
220 + urb0
->iso_frame_desc
[i
].offset
;
221 if (data
[0] == 0x80 && (data
[1] & 0xfe) == 0xba) {
224 gspca_frame_add(gspca_dev
, LAST_PACKET
,
226 gspca_frame_add(gspca_dev
, FIRST_PACKET
,
227 data
+ 4, SD_PKT_SZ
- 4);
228 } else if (data
[0] == 0x04 && (data
[1] & 0xfe) == 0xba) {
229 gspca_frame_add(gspca_dev
, INTER_PACKET
,
230 data
+ 4, SD_PKT_SZ
- 4);
232 gspca_dev
->last_packet_type
= DISCARD_PACKET
;
235 data
= (u8
*) urb
->transfer_buffer
236 + urb
->iso_frame_desc
[i
].offset
;
237 gspca_frame_add(gspca_dev
, INTER_PACKET
,
241 /* resubmit the URBs */
242 st
= usb_submit_urb(urb0
, GFP_ATOMIC
);
244 pr_err("usb_submit_urb(0) ret %d\n", st
);
245 st
= usb_submit_urb(urb
, GFP_ATOMIC
);
247 pr_err("usb_submit_urb() ret %d\n", st
);
250 /* sub-driver description */
251 static const struct sd_desc sd_desc
= {
257 .pkt_scan
= sd_pkt_scan
,
260 /* -- module initialisation -- */
261 static const struct usb_device_id device_table
[] = {
262 {USB_DEVICE(0x04a5, 0x3035)},
265 MODULE_DEVICE_TABLE(usb
, device_table
);
267 /* -- device connect -- */
268 static int sd_probe(struct usb_interface
*intf
,
269 const struct usb_device_id
*id
)
271 return gspca_dev_probe(intf
, id
, &sd_desc
, sizeof(struct sd
),
275 static struct usb_driver sd_driver
= {
277 .id_table
= device_table
,
279 .disconnect
= gspca_disconnect
,
281 .suspend
= gspca_suspend
,
282 .resume
= gspca_resume
,
283 .reset_resume
= gspca_resume
,
287 module_usb_driver(sd_driver
);