blob: 1c61830e96f956e6771a416dae0fb3b612317d64 [file] [log] [blame]
Matthew Garrett62d104d2008-05-20 20:06:28 +01001/*
2 * Driver for loading USB isight firmware
3 *
4 * Copyright (C) 2008 Matthew Garrett <mjg@redhat.com>
5 *
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.
9 *
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.
15 *
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/
18 *
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>
22 */
23
24#include <linux/usb.h>
25#include <linux/firmware.h>
26#include <linux/errno.h>
27#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Matthew Garrett62d104d2008-05-20 20:06:28 +010029
Németh Márton33b9e162010-01-10 15:34:45 +010030static const struct usb_device_id id_table[] = {
Matthew Garrett62d104d2008-05-20 20:06:28 +010031 {USB_DEVICE(0x05ac, 0x8300)},
32 {},
33};
34
35MODULE_DEVICE_TABLE(usb, id_table);
36
37static int isight_firmware_load(struct usb_interface *intf,
38 const struct usb_device_id *id)
39{
40 struct usb_device *dev = interface_to_usbdev(intf);
41 int llen, len, req, ret = 0;
42 const struct firmware *firmware;
Matthew Garrett62b58842008-06-06 12:35:15 -070043 unsigned char *buf = kmalloc(50, GFP_KERNEL);
Matthew Garrett62d104d2008-05-20 20:06:28 +010044 unsigned char data[4];
gregkh@suse.deed5a2822008-05-29 10:17:38 -070045 const u8 *ptr;
Matthew Garrett62b58842008-06-06 12:35:15 -070046
47 if (!buf)
48 return -ENOMEM;
Matthew Garrett62d104d2008-05-20 20:06:28 +010049
50 if (request_firmware(&firmware, "isight.fw", &dev->dev) != 0) {
51 printk(KERN_ERR "Unable to load isight firmware\n");
Parag Warudkarff1a4a72008-08-12 15:08:46 -070052 ret = -ENODEV;
53 goto out;
Matthew Garrett62d104d2008-05-20 20:06:28 +010054 }
55
56 ptr = firmware->data;
57
Greg Kroah-Hartman59bf5cf2011-12-05 14:02:59 -080058 buf[0] = 0x01;
Matthew Garrett62d104d2008-05-20 20:06:28 +010059 if (usb_control_msg
Greg Kroah-Hartman59bf5cf2011-12-05 14:02:59 -080060 (dev, usb_sndctrlpipe(dev, 0), 0xa0, 0x40, 0xe600, 0, buf, 1,
Matthew Garrett62d104d2008-05-20 20:06:28 +010061 300) != 1) {
62 printk(KERN_ERR
63 "Failed to initialise isight firmware loader\n");
64 ret = -ENODEV;
65 goto out;
66 }
67
Matthew Garrett62b58842008-06-06 12:35:15 -070068 while (ptr+4 <= firmware->data+firmware->size) {
Matthew Garrett62d104d2008-05-20 20:06:28 +010069 memcpy(data, ptr, 4);
70 len = (data[0] << 8 | data[1]);
71 req = (data[2] << 8 | data[3]);
72 ptr += 4;
73
74 if (len == 0x8001)
75 break; /* success */
76 else if (len == 0)
77 continue;
78
79 for (; len > 0; req += 50) {
Matthew Garrett62b58842008-06-06 12:35:15 -070080 llen = min(len, 50);
Matthew Garrett62d104d2008-05-20 20:06:28 +010081 len -= llen;
Matthew Garrett62b58842008-06-06 12:35:15 -070082 if (ptr+llen > firmware->data+firmware->size) {
83 printk(KERN_ERR
84 "Malformed isight firmware");
85 ret = -ENODEV;
86 goto out;
87 }
Matthew Garrett62d104d2008-05-20 20:06:28 +010088 memcpy(buf, ptr, llen);
89
90 ptr += llen;
91
92 if (usb_control_msg
93 (dev, usb_sndctrlpipe(dev, 0), 0xa0, 0x40, req, 0,
94 buf, llen, 300) != llen) {
95 printk(KERN_ERR
96 "Failed to load isight firmware\n");
Matthew Garrett62d104d2008-05-20 20:06:28 +010097 ret = -ENODEV;
98 goto out;
99 }
100
Matthew Garrett62d104d2008-05-20 20:06:28 +0100101 }
102 }
Matthew Garrett62b58842008-06-06 12:35:15 -0700103
Greg Kroah-Hartman59bf5cf2011-12-05 14:02:59 -0800104 buf[0] = 0x00;
Matthew Garrett62d104d2008-05-20 20:06:28 +0100105 if (usb_control_msg
Greg Kroah-Hartman59bf5cf2011-12-05 14:02:59 -0800106 (dev, usb_sndctrlpipe(dev, 0), 0xa0, 0x40, 0xe600, 0, buf, 1,
Matthew Garrett62d104d2008-05-20 20:06:28 +0100107 300) != 1) {
108 printk(KERN_ERR "isight firmware loading completion failed\n");
109 ret = -ENODEV;
110 }
Matthew Garrett62b58842008-06-06 12:35:15 -0700111
Matthew Garrett62d104d2008-05-20 20:06:28 +0100112out:
Matthew Garrett62b58842008-06-06 12:35:15 -0700113 kfree(buf);
Matthew Garrett62d104d2008-05-20 20:06:28 +0100114 release_firmware(firmware);
115 return ret;
116}
117
Ben Hutchings4e0961d2010-01-13 23:39:43 +0000118MODULE_FIRMWARE("isight.fw");
119
Matthew Garrett62d104d2008-05-20 20:06:28 +0100120static void isight_firmware_disconnect(struct usb_interface *intf)
121{
122}
123
124static 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,
129};
130
Greg Kroah-Hartman65db4302011-11-18 09:34:02 -0800131module_usb_driver(isight_firmware_driver);
Matthew Garrett62d104d2008-05-20 20:06:28 +0100132
133MODULE_LICENSE("GPL");
134MODULE_AUTHOR("Matthew Garrett <mjg@redhat.com>");