2 * Driver for loading USB isight firmware
4 * Copyright (C) 2008 Matthew Garrett <mjg@redhat.com>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation, version 2.
10 * The USB isight cameras in recent Apples are roughly compatible with the USB
11 * video class specification, and can be driven by uvcvideo. However, they
12 * need firmware to be loaded beforehand. After firmware loading, the device
13 * detaches from the USB bus and reattaches with a new device ID. It can then
14 * be claimed by the uvc driver.
16 * The firmware is non-free and must be extracted by the user. Tools to do this
17 * are available at http://bersace03.free.fr/ift/
19 * The isight firmware loading was reverse engineered by Johannes Berg
20 * <johannes@sipsolutions.de>, and this driver is based on code by Ronald
21 * Bultje <rbultje@ronald.bitfreak.net>
24 #include <linux/usb.h>
25 #include <linux/firmware.h>
26 #include <linux/errno.h>
27 #include <linux/module.h>
28 #include <linux/slab.h>
30 static const struct usb_device_id id_table
[] = {
31 {USB_DEVICE(0x05ac, 0x8300)},
35 MODULE_DEVICE_TABLE(usb
, id_table
);
37 static int isight_firmware_load(struct usb_interface
*intf
,
38 const struct usb_device_id
*id
)
40 struct usb_device
*dev
= interface_to_usbdev(intf
);
41 int llen
, len
, req
, ret
= 0;
42 const struct firmware
*firmware
;
43 unsigned char *buf
= kmalloc(50, GFP_KERNEL
);
44 unsigned char data
[4];
50 if (request_firmware(&firmware
, "isight.fw", &dev
->dev
) != 0) {
51 printk(KERN_ERR
"Unable to load isight firmware\n");
60 (dev
, usb_sndctrlpipe(dev
, 0), 0xa0, 0x40, 0xe600, 0, buf
, 1,
63 "Failed to initialise isight firmware loader\n");
68 while (ptr
+4 <= firmware
->data
+firmware
->size
) {
70 len
= (data
[0] << 8 | data
[1]);
71 req
= (data
[2] << 8 | data
[3]);
79 for (; len
> 0; req
+= 50) {
82 if (ptr
+llen
> firmware
->data
+firmware
->size
) {
84 "Malformed isight firmware");
88 memcpy(buf
, ptr
, llen
);
93 (dev
, usb_sndctrlpipe(dev
, 0), 0xa0, 0x40, req
, 0,
94 buf
, llen
, 300) != llen
) {
96 "Failed to load isight firmware\n");
106 (dev
, usb_sndctrlpipe(dev
, 0), 0xa0, 0x40, 0xe600, 0, buf
, 1,
108 printk(KERN_ERR
"isight firmware loading completion failed\n");
114 release_firmware(firmware
);
118 MODULE_FIRMWARE("isight.fw");
120 static void isight_firmware_disconnect(struct usb_interface
*intf
)
124 static struct usb_driver isight_firmware_driver
= {
125 .name
= "isight_firmware",
126 .probe
= isight_firmware_load
,
127 .disconnect
= isight_firmware_disconnect
,
128 .id_table
= id_table
,
131 module_usb_driver(isight_firmware_driver
);
133 MODULE_LICENSE("GPL");
134 MODULE_AUTHOR("Matthew Garrett <mjg@redhat.com>");