blob: 49c0c3ebd32141442acbc58deb9ef0b7e8f1b402 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * A driver for the Griffin Technology, Inc. "PowerMate" USB controller dial.
3 *
4 * v1.1, (c)2002 William R Sowerbutts <will@sowerbutts.com>
5 *
6 * This device is a anodised aluminium knob which connects over USB. It can measure
7 * clockwise and anticlockwise rotation. The dial also acts as a pushbutton with
8 * a spring for automatic release. The base contains a pair of LEDs which illuminate
9 * the translucent base. It rotates without limit and reports its relative rotation
10 * back to the host when polled by the USB controller.
11 *
12 * Testing with the knob I have has shown that it measures approximately 94 "clicks"
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -050013 * for one full rotation. Testing with my High Speed Rotation Actuator (ok, it was
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * a variable speed cordless electric drill) has shown that the device can measure
15 * speeds of up to 7 clicks either clockwise or anticlockwise between pollings from
16 * the host. If it counts more than 7 clicks before it is polled, it will wrap back
17 * to zero and start counting again. This was at quite high speed, however, almost
18 * certainly faster than the human hand could turn it. Griffin say that it loses a
19 * pulse or two on a direction change; the granularity is so fine that I never
20 * noticed this in practice.
21 *
22 * The device's microcontroller can be programmed to set the LED to either a constant
23 * intensity, or to a rhythmic pulsing. Several patterns and speeds are available.
24 *
25 * Griffin were very happy to provide documentation and free hardware for development.
26 *
27 * Some userspace tools are available on the web: http://sowerbutts.com/powermate/
28 *
29 */
30
31#include <linux/kernel.h>
32#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/module.h>
34#include <linux/init.h>
35#include <linux/spinlock.h>
David Brownellae0dadc2006-06-13 10:04:34 -070036#include <linux/usb/input.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#define POWERMATE_VENDOR 0x077d /* Griffin Technology, Inc. */
39#define POWERMATE_PRODUCT_NEW 0x0410 /* Griffin PowerMate */
40#define POWERMATE_PRODUCT_OLD 0x04AA /* Griffin soundKnob */
41
42#define CONTOUR_VENDOR 0x05f3 /* Contour Design, Inc. */
43#define CONTOUR_JOG 0x0240 /* Jog and Shuttle */
44
45/* these are the command codes we send to the device */
46#define SET_STATIC_BRIGHTNESS 0x01
47#define SET_PULSE_ASLEEP 0x02
48#define SET_PULSE_AWAKE 0x03
49#define SET_PULSE_MODE 0x04
50
51/* these refer to bits in the powermate_device's requires_update field. */
52#define UPDATE_STATIC_BRIGHTNESS (1<<0)
53#define UPDATE_PULSE_ASLEEP (1<<1)
54#define UPDATE_PULSE_AWAKE (1<<2)
55#define UPDATE_PULSE_MODE (1<<3)
56
57/* at least two versions of the hardware exist, with differing payload
58 sizes. the first three bytes always contain the "interesting" data in
59 the relevant format. */
60#define POWERMATE_PAYLOAD_SIZE_MAX 6
61#define POWERMATE_PAYLOAD_SIZE_MIN 3
62struct powermate_device {
63 signed char *data;
64 dma_addr_t data_dma;
65 struct urb *irq, *config;
66 struct usb_ctrlrequest *configcr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 struct usb_device *udev;
Greg Kroah-Hartmanc25e6472012-05-04 15:33:00 -070068 struct usb_interface *intf;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -050069 struct input_dev *input;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 spinlock_t lock;
71 int static_brightness;
72 int pulse_speed;
73 int pulse_table;
74 int pulse_asleep;
75 int pulse_awake;
76 int requires_update; // physical settings which are out of sync
77 char phys[64];
78};
79
80static char pm_name_powermate[] = "Griffin PowerMate";
81static char pm_name_soundknob[] = "Griffin SoundKnob";
82
David Howells7d12e782006-10-05 14:55:46 +010083static void powermate_config_complete(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85/* Callback for data arriving from the PowerMate over the USB interrupt pipe */
David Howells7d12e782006-10-05 14:55:46 +010086static void powermate_irq(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
88 struct powermate_device *pm = urb->context;
Greg Kroah-Hartmanc25e6472012-05-04 15:33:00 -070089 struct device *dev = &pm->intf->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 int retval;
91
92 switch (urb->status) {
93 case 0:
94 /* success */
95 break;
96 case -ECONNRESET:
97 case -ENOENT:
98 case -ESHUTDOWN:
99 /* this urb is terminated, clean up */
Greg Kroah-Hartman8b0725c2012-05-01 21:33:03 -0700100 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
101 __func__, urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return;
103 default:
Greg Kroah-Hartman8b0725c2012-05-01 21:33:03 -0700104 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
105 __func__, urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 goto exit;
107 }
108
109 /* handle updates to device state */
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500110 input_report_key(pm->input, BTN_0, pm->data[0] & 0x01);
111 input_report_rel(pm->input, REL_DIAL, pm->data[1]);
112 input_sync(pm->input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114exit:
115 retval = usb_submit_urb (urb, GFP_ATOMIC);
116 if (retval)
Greg Kroah-Hartman8b0725c2012-05-01 21:33:03 -0700117 dev_err(dev, "%s - usb_submit_urb failed with result: %d\n",
Greg Kroah-Hartman2385f3c2012-04-25 14:48:30 -0700118 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
121/* Decide if we need to issue a control message and do so. Must be called with pm->lock taken */
122static void powermate_sync_state(struct powermate_device *pm)
123{
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500124 if (pm->requires_update == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 return; /* no updates are required */
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500126 if (pm->config->status == -EINPROGRESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 return; /* an update is already in progress; it'll issue this update when it completes */
128
129 if (pm->requires_update & UPDATE_PULSE_ASLEEP){
130 pm->configcr->wValue = cpu_to_le16( SET_PULSE_ASLEEP );
131 pm->configcr->wIndex = cpu_to_le16( pm->pulse_asleep ? 1 : 0 );
132 pm->requires_update &= ~UPDATE_PULSE_ASLEEP;
133 }else if (pm->requires_update & UPDATE_PULSE_AWAKE){
134 pm->configcr->wValue = cpu_to_le16( SET_PULSE_AWAKE );
135 pm->configcr->wIndex = cpu_to_le16( pm->pulse_awake ? 1 : 0 );
136 pm->requires_update &= ~UPDATE_PULSE_AWAKE;
137 }else if (pm->requires_update & UPDATE_PULSE_MODE){
138 int op, arg;
139 /* the powermate takes an operation and an argument for its pulse algorithm.
140 the operation can be:
141 0: divide the speed
142 1: pulse at normal speed
143 2: multiply the speed
144 the argument only has an effect for operations 0 and 2, and ranges between
145 1 (least effect) to 255 (maximum effect).
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 thus, several states are equivalent and are coalesced into one state.
148
149 we map this onto a range from 0 to 510, with:
150 0 -- 254 -- use divide (0 = slowest)
151 255 -- use normal speed
152 256 -- 510 -- use multiple (510 = fastest).
153
154 Only values of 'arg' quite close to 255 are particularly useful/spectacular.
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500155 */
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500156 if (pm->pulse_speed < 255) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 op = 0; // divide
158 arg = 255 - pm->pulse_speed;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500159 } else if (pm->pulse_speed > 255) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 op = 2; // multiply
161 arg = pm->pulse_speed - 255;
162 } else {
163 op = 1; // normal speed
164 arg = 0; // can be any value
165 }
166 pm->configcr->wValue = cpu_to_le16( (pm->pulse_table << 8) | SET_PULSE_MODE );
167 pm->configcr->wIndex = cpu_to_le16( (arg << 8) | op );
168 pm->requires_update &= ~UPDATE_PULSE_MODE;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500169 } else if (pm->requires_update & UPDATE_STATIC_BRIGHTNESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 pm->configcr->wValue = cpu_to_le16( SET_STATIC_BRIGHTNESS );
171 pm->configcr->wIndex = cpu_to_le16( pm->static_brightness );
172 pm->requires_update &= ~UPDATE_STATIC_BRIGHTNESS;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500173 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 printk(KERN_ERR "powermate: unknown update required");
175 pm->requires_update = 0; /* fudge the bug */
176 return;
177 }
178
179/* printk("powermate: %04x %04x\n", pm->configcr->wValue, pm->configcr->wIndex); */
180
181 pm->configcr->bRequestType = 0x41; /* vendor request */
182 pm->configcr->bRequest = 0x01;
183 pm->configcr->wLength = 0;
184
185 usb_fill_control_urb(pm->config, pm->udev, usb_sndctrlpipe(pm->udev, 0),
186 (void *) pm->configcr, NULL, 0,
187 powermate_config_complete, pm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 if (usb_submit_urb(pm->config, GFP_ATOMIC))
190 printk(KERN_ERR "powermate: usb_submit_urb(config) failed");
191}
192
193/* Called when our asynchronous control message completes. We may need to issue another immediately */
David Howells7d12e782006-10-05 14:55:46 +0100194static void powermate_config_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
196 struct powermate_device *pm = urb->context;
197 unsigned long flags;
198
199 if (urb->status)
200 printk(KERN_ERR "powermate: config urb returned %d\n", urb->status);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 spin_lock_irqsave(&pm->lock, flags);
203 powermate_sync_state(pm);
204 spin_unlock_irqrestore(&pm->lock, flags);
205}
206
207/* Set the LED up as described and begin the sync with the hardware if required */
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500208static void powermate_pulse_led(struct powermate_device *pm, int static_brightness, int pulse_speed,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 int pulse_table, int pulse_asleep, int pulse_awake)
210{
211 unsigned long flags;
212
213 if (pulse_speed < 0)
214 pulse_speed = 0;
215 if (pulse_table < 0)
216 pulse_table = 0;
217 if (pulse_speed > 510)
218 pulse_speed = 510;
219 if (pulse_table > 2)
220 pulse_table = 2;
221
222 pulse_asleep = !!pulse_asleep;
223 pulse_awake = !!pulse_awake;
224
225
226 spin_lock_irqsave(&pm->lock, flags);
227
228 /* mark state updates which are required */
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500229 if (static_brightness != pm->static_brightness) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 pm->static_brightness = static_brightness;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500231 pm->requires_update |= UPDATE_STATIC_BRIGHTNESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 }
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500233 if (pulse_asleep != pm->pulse_asleep) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 pm->pulse_asleep = pulse_asleep;
235 pm->requires_update |= (UPDATE_PULSE_ASLEEP | UPDATE_STATIC_BRIGHTNESS);
236 }
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500237 if (pulse_awake != pm->pulse_awake) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 pm->pulse_awake = pulse_awake;
239 pm->requires_update |= (UPDATE_PULSE_AWAKE | UPDATE_STATIC_BRIGHTNESS);
240 }
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500241 if (pulse_speed != pm->pulse_speed || pulse_table != pm->pulse_table) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 pm->pulse_speed = pulse_speed;
243 pm->pulse_table = pulse_table;
244 pm->requires_update |= UPDATE_PULSE_MODE;
245 }
246
247 powermate_sync_state(pm);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 spin_unlock_irqrestore(&pm->lock, flags);
250}
251
252/* Callback from the Input layer when an event arrives from userspace to configure the LED */
253static int powermate_input_event(struct input_dev *dev, unsigned int type, unsigned int code, int _value)
254{
255 unsigned int command = (unsigned int)_value;
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400256 struct powermate_device *pm = input_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 if (type == EV_MSC && code == MSC_PULSELED){
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500259 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 bits 0- 7: 8 bits: LED brightness
261 bits 8-16: 9 bits: pulsing speed modifier (0 ... 510); 0-254 = slower, 255 = standard, 256-510 = faster.
262 bits 17-18: 2 bits: pulse table (0, 1, 2 valid)
263 bit 19: 1 bit : pulse whilst asleep?
264 bit 20: 1 bit : pulse constantly?
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500265 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 int static_brightness = command & 0xFF; // bits 0-7
267 int pulse_speed = (command >> 8) & 0x1FF; // bits 8-16
268 int pulse_table = (command >> 17) & 0x3; // bits 17-18
269 int pulse_asleep = (command >> 19) & 0x1; // bit 19
270 int pulse_awake = (command >> 20) & 0x1; // bit 20
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 powermate_pulse_led(pm, static_brightness, pulse_speed, pulse_table, pulse_asleep, pulse_awake);
273 }
274
275 return 0;
276}
277
278static int powermate_alloc_buffers(struct usb_device *udev, struct powermate_device *pm)
279{
Daniel Mack997ea582010-04-12 13:17:25 +0200280 pm->data = usb_alloc_coherent(udev, POWERMATE_PAYLOAD_SIZE_MAX,
281 GFP_ATOMIC, &pm->data_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 if (!pm->data)
283 return -1;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500284
Alan Stern0ede76f2010-03-05 15:10:17 -0500285 pm->configcr = kmalloc(sizeof(*(pm->configcr)), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if (!pm->configcr)
Davidlohr Bueso6792cbb2010-09-29 18:53:35 -0700287 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 return 0;
290}
291
292static void powermate_free_buffers(struct usb_device *udev, struct powermate_device *pm)
293{
Daniel Mack997ea582010-04-12 13:17:25 +0200294 usb_free_coherent(udev, POWERMATE_PAYLOAD_SIZE_MAX,
295 pm->data, pm->data_dma);
Alan Stern0ede76f2010-03-05 15:10:17 -0500296 kfree(pm->configcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
299/* Called whenever a USB device matching one in our supported devices table is connected */
300static int powermate_probe(struct usb_interface *intf, const struct usb_device_id *id)
301{
302 struct usb_device *udev = interface_to_usbdev (intf);
303 struct usb_host_interface *interface;
304 struct usb_endpoint_descriptor *endpoint;
305 struct powermate_device *pm;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500306 struct input_dev *input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 int pipe, maxp;
Dmitry Torokhov50141862007-04-12 01:33:39 -0400308 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 interface = intf->cur_altsetting;
311 endpoint = &interface->endpoint[0].desc;
Luiz Fernando N. Capitulino60ca1262006-09-27 11:58:53 -0700312 if (!usb_endpoint_is_int_in(endpoint))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return -EIO;
314
315 usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
316 0x0a, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
317 0, interface->desc.bInterfaceNumber, NULL, 0,
318 USB_CTRL_SET_TIMEOUT);
319
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500320 pm = kzalloc(sizeof(struct powermate_device), GFP_KERNEL);
321 input_dev = input_allocate_device();
322 if (!pm || !input_dev)
323 goto fail1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500325 if (powermate_alloc_buffers(udev, pm))
326 goto fail2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 pm->irq = usb_alloc_urb(0, GFP_KERNEL);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500329 if (!pm->irq)
330 goto fail2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 pm->config = usb_alloc_urb(0, GFP_KERNEL);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500333 if (!pm->config)
334 goto fail3;
335
336 pm->udev = udev;
Greg Kroah-Hartmanc25e6472012-05-04 15:33:00 -0700337 pm->intf = intf;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500338 pm->input = input_dev;
339
340 usb_make_path(udev, pm->phys, sizeof(pm->phys));
Márton Németh6236dfa2009-11-23 08:26:38 -0800341 strlcat(pm->phys, "/input0", sizeof(pm->phys));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 spin_lock_init(&pm->lock);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500344
345 switch (le16_to_cpu(udev->descriptor.idProduct)) {
346 case POWERMATE_PRODUCT_NEW:
347 input_dev->name = pm_name_powermate;
348 break;
349 case POWERMATE_PRODUCT_OLD:
350 input_dev->name = pm_name_soundknob;
351 break;
352 default:
353 input_dev->name = pm_name_soundknob;
354 printk(KERN_WARNING "powermate: unknown product id %04x\n",
355 le16_to_cpu(udev->descriptor.idProduct));
356 }
357
358 input_dev->phys = pm->phys;
359 usb_to_input_id(udev, &input_dev->id);
Dmitry Torokhovc0f82d52007-04-12 01:35:03 -0400360 input_dev->dev.parent = &intf->dev;
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400361
362 input_set_drvdata(input_dev, pm);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500363
364 input_dev->event = powermate_input_event;
365
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700366 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REL) |
367 BIT_MASK(EV_MSC);
368 input_dev->keybit[BIT_WORD(BTN_0)] = BIT_MASK(BTN_0);
369 input_dev->relbit[BIT_WORD(REL_DIAL)] = BIT_MASK(REL_DIAL);
370 input_dev->mscbit[BIT_WORD(MSC_PULSELED)] = BIT_MASK(MSC_PULSELED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372 /* get a handle to the interrupt data pipe */
373 pipe = usb_rcvintpipe(udev, endpoint->bEndpointAddress);
374 maxp = usb_maxpacket(udev, pipe, usb_pipeout(pipe));
375
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500376 if (maxp < POWERMATE_PAYLOAD_SIZE_MIN || maxp > POWERMATE_PAYLOAD_SIZE_MAX) {
377 printk(KERN_WARNING "powermate: Expected payload of %d--%d bytes, found %d bytes!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 POWERMATE_PAYLOAD_SIZE_MIN, POWERMATE_PAYLOAD_SIZE_MAX, maxp);
379 maxp = POWERMATE_PAYLOAD_SIZE_MAX;
380 }
381
382 usb_fill_int_urb(pm->irq, udev, pipe, pm->data,
383 maxp, powermate_irq,
384 pm, endpoint->bInterval);
385 pm->irq->transfer_dma = pm->data_dma;
386 pm->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
387
388 /* register our interrupt URB with the USB system */
389 if (usb_submit_urb(pm->irq, GFP_KERNEL)) {
Dmitry Torokhov50141862007-04-12 01:33:39 -0400390 error = -EIO;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500391 goto fail4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
393
Dmitry Torokhov50141862007-04-12 01:33:39 -0400394 error = input_register_device(pm->input);
395 if (error)
396 goto fail5;
397
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 /* force an update of everything */
400 pm->requires_update = UPDATE_PULSE_ASLEEP | UPDATE_PULSE_AWAKE | UPDATE_PULSE_MODE | UPDATE_STATIC_BRIGHTNESS;
401 powermate_pulse_led(pm, 0x80, 255, 0, 1, 0); // set default pulse parameters
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 usb_set_intfdata(intf, pm);
404 return 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500405
Dmitry Torokhov50141862007-04-12 01:33:39 -0400406 fail5: usb_kill_urb(pm->irq);
407 fail4: usb_free_urb(pm->config);
408 fail3: usb_free_urb(pm->irq);
409 fail2: powermate_free_buffers(udev, pm);
410 fail1: input_free_device(input_dev);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500411 kfree(pm);
Dmitry Torokhov50141862007-04-12 01:33:39 -0400412 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
415/* Called when a USB device we've accepted ownership of is removed */
416static void powermate_disconnect(struct usb_interface *intf)
417{
418 struct powermate_device *pm = usb_get_intfdata (intf);
419
420 usb_set_intfdata(intf, NULL);
421 if (pm) {
422 pm->requires_update = 0;
423 usb_kill_urb(pm->irq);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500424 input_unregister_device(pm->input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 usb_free_urb(pm->irq);
426 usb_free_urb(pm->config);
427 powermate_free_buffers(interface_to_usbdev(intf), pm);
428
429 kfree(pm);
430 }
431}
432
433static struct usb_device_id powermate_devices [] = {
434 { USB_DEVICE(POWERMATE_VENDOR, POWERMATE_PRODUCT_NEW) },
435 { USB_DEVICE(POWERMATE_VENDOR, POWERMATE_PRODUCT_OLD) },
436 { USB_DEVICE(CONTOUR_VENDOR, CONTOUR_JOG) },
437 { } /* Terminating entry */
438};
439
440MODULE_DEVICE_TABLE (usb, powermate_devices);
441
442static struct usb_driver powermate_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 .name = "powermate",
444 .probe = powermate_probe,
445 .disconnect = powermate_disconnect,
446 .id_table = powermate_devices,
447};
448
Greg Kroah-Hartman08642e72011-11-18 09:48:31 -0800449module_usb_driver(powermate_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451MODULE_AUTHOR( "William R Sowerbutts" );
452MODULE_DESCRIPTION( "Griffin Technology, Inc PowerMate driver" );
453MODULE_LICENSE("GPL");