Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Torokhov | 05f091a | 2005-05-29 02:29:01 -0500 | [diff] [blame] | 13 | * for one full rotation. Testing with my High Speed Rotation Actuator (ok, it was |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/module.h> |
| 34 | #include <linux/init.h> |
| 35 | #include <linux/spinlock.h> |
David Brownell | ae0dadc | 2006-06-13 10:04:34 -0700 | [diff] [blame] | 36 | #include <linux/usb/input.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
| 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 |
| 62 | struct powermate_device { |
| 63 | signed char *data; |
| 64 | dma_addr_t data_dma; |
| 65 | struct urb *irq, *config; |
| 66 | struct usb_ctrlrequest *configcr; |
| 67 | dma_addr_t configcr_dma; |
| 68 | struct usb_device *udev; |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 69 | struct input_dev *input; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | 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 | |
| 80 | static char pm_name_powermate[] = "Griffin PowerMate"; |
| 81 | static char pm_name_soundknob[] = "Griffin SoundKnob"; |
| 82 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 83 | static void powermate_config_complete(struct urb *urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
| 85 | /* Callback for data arriving from the PowerMate over the USB interrupt pipe */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 86 | static void powermate_irq(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | { |
| 88 | struct powermate_device *pm = urb->context; |
| 89 | int retval; |
| 90 | |
| 91 | switch (urb->status) { |
| 92 | case 0: |
| 93 | /* success */ |
| 94 | break; |
| 95 | case -ECONNRESET: |
| 96 | case -ENOENT: |
| 97 | case -ESHUTDOWN: |
| 98 | /* this urb is terminated, clean up */ |
| 99 | dbg("%s - urb shutting down with status: %d", __FUNCTION__, urb->status); |
| 100 | return; |
| 101 | default: |
| 102 | dbg("%s - nonzero urb status received: %d", __FUNCTION__, urb->status); |
| 103 | goto exit; |
| 104 | } |
| 105 | |
| 106 | /* handle updates to device state */ |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 107 | input_report_key(pm->input, BTN_0, pm->data[0] & 0x01); |
| 108 | input_report_rel(pm->input, REL_DIAL, pm->data[1]); |
| 109 | input_sync(pm->input); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
| 111 | exit: |
| 112 | retval = usb_submit_urb (urb, GFP_ATOMIC); |
| 113 | if (retval) |
| 114 | err ("%s - usb_submit_urb failed with result %d", |
| 115 | __FUNCTION__, retval); |
| 116 | } |
| 117 | |
| 118 | /* Decide if we need to issue a control message and do so. Must be called with pm->lock taken */ |
| 119 | static void powermate_sync_state(struct powermate_device *pm) |
| 120 | { |
Dmitry Torokhov | 05f091a | 2005-05-29 02:29:01 -0500 | [diff] [blame] | 121 | if (pm->requires_update == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | return; /* no updates are required */ |
Dmitry Torokhov | 05f091a | 2005-05-29 02:29:01 -0500 | [diff] [blame] | 123 | if (pm->config->status == -EINPROGRESS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | return; /* an update is already in progress; it'll issue this update when it completes */ |
| 125 | |
| 126 | if (pm->requires_update & UPDATE_PULSE_ASLEEP){ |
| 127 | pm->configcr->wValue = cpu_to_le16( SET_PULSE_ASLEEP ); |
| 128 | pm->configcr->wIndex = cpu_to_le16( pm->pulse_asleep ? 1 : 0 ); |
| 129 | pm->requires_update &= ~UPDATE_PULSE_ASLEEP; |
| 130 | }else if (pm->requires_update & UPDATE_PULSE_AWAKE){ |
| 131 | pm->configcr->wValue = cpu_to_le16( SET_PULSE_AWAKE ); |
| 132 | pm->configcr->wIndex = cpu_to_le16( pm->pulse_awake ? 1 : 0 ); |
| 133 | pm->requires_update &= ~UPDATE_PULSE_AWAKE; |
| 134 | }else if (pm->requires_update & UPDATE_PULSE_MODE){ |
| 135 | int op, arg; |
| 136 | /* the powermate takes an operation and an argument for its pulse algorithm. |
| 137 | the operation can be: |
| 138 | 0: divide the speed |
| 139 | 1: pulse at normal speed |
| 140 | 2: multiply the speed |
| 141 | the argument only has an effect for operations 0 and 2, and ranges between |
| 142 | 1 (least effect) to 255 (maximum effect). |
Dmitry Torokhov | 05f091a | 2005-05-29 02:29:01 -0500 | [diff] [blame] | 143 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | thus, several states are equivalent and are coalesced into one state. |
| 145 | |
| 146 | we map this onto a range from 0 to 510, with: |
| 147 | 0 -- 254 -- use divide (0 = slowest) |
| 148 | 255 -- use normal speed |
| 149 | 256 -- 510 -- use multiple (510 = fastest). |
| 150 | |
| 151 | Only values of 'arg' quite close to 255 are particularly useful/spectacular. |
Dmitry Torokhov | 05f091a | 2005-05-29 02:29:01 -0500 | [diff] [blame] | 152 | */ |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 153 | if (pm->pulse_speed < 255) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | op = 0; // divide |
| 155 | arg = 255 - pm->pulse_speed; |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 156 | } else if (pm->pulse_speed > 255) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | op = 2; // multiply |
| 158 | arg = pm->pulse_speed - 255; |
| 159 | } else { |
| 160 | op = 1; // normal speed |
| 161 | arg = 0; // can be any value |
| 162 | } |
| 163 | pm->configcr->wValue = cpu_to_le16( (pm->pulse_table << 8) | SET_PULSE_MODE ); |
| 164 | pm->configcr->wIndex = cpu_to_le16( (arg << 8) | op ); |
| 165 | pm->requires_update &= ~UPDATE_PULSE_MODE; |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 166 | } else if (pm->requires_update & UPDATE_STATIC_BRIGHTNESS) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | pm->configcr->wValue = cpu_to_le16( SET_STATIC_BRIGHTNESS ); |
| 168 | pm->configcr->wIndex = cpu_to_le16( pm->static_brightness ); |
| 169 | pm->requires_update &= ~UPDATE_STATIC_BRIGHTNESS; |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 170 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | printk(KERN_ERR "powermate: unknown update required"); |
| 172 | pm->requires_update = 0; /* fudge the bug */ |
| 173 | return; |
| 174 | } |
| 175 | |
| 176 | /* printk("powermate: %04x %04x\n", pm->configcr->wValue, pm->configcr->wIndex); */ |
| 177 | |
| 178 | pm->configcr->bRequestType = 0x41; /* vendor request */ |
| 179 | pm->configcr->bRequest = 0x01; |
| 180 | pm->configcr->wLength = 0; |
| 181 | |
| 182 | usb_fill_control_urb(pm->config, pm->udev, usb_sndctrlpipe(pm->udev, 0), |
| 183 | (void *) pm->configcr, NULL, 0, |
| 184 | powermate_config_complete, pm); |
| 185 | pm->config->setup_dma = pm->configcr_dma; |
| 186 | pm->config->transfer_flags |= URB_NO_SETUP_DMA_MAP; |
| 187 | |
| 188 | if (usb_submit_urb(pm->config, GFP_ATOMIC)) |
| 189 | printk(KERN_ERR "powermate: usb_submit_urb(config) failed"); |
| 190 | } |
| 191 | |
| 192 | /* Called when our asynchronous control message completes. We may need to issue another immediately */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 193 | static void powermate_config_complete(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | { |
| 195 | struct powermate_device *pm = urb->context; |
| 196 | unsigned long flags; |
| 197 | |
| 198 | if (urb->status) |
| 199 | printk(KERN_ERR "powermate: config urb returned %d\n", urb->status); |
Dmitry Torokhov | 05f091a | 2005-05-29 02:29:01 -0500 | [diff] [blame] | 200 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | spin_lock_irqsave(&pm->lock, flags); |
| 202 | powermate_sync_state(pm); |
| 203 | spin_unlock_irqrestore(&pm->lock, flags); |
| 204 | } |
| 205 | |
| 206 | /* Set the LED up as described and begin the sync with the hardware if required */ |
Dmitry Torokhov | 05f091a | 2005-05-29 02:29:01 -0500 | [diff] [blame] | 207 | static void powermate_pulse_led(struct powermate_device *pm, int static_brightness, int pulse_speed, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | int pulse_table, int pulse_asleep, int pulse_awake) |
| 209 | { |
| 210 | unsigned long flags; |
| 211 | |
| 212 | if (pulse_speed < 0) |
| 213 | pulse_speed = 0; |
| 214 | if (pulse_table < 0) |
| 215 | pulse_table = 0; |
| 216 | if (pulse_speed > 510) |
| 217 | pulse_speed = 510; |
| 218 | if (pulse_table > 2) |
| 219 | pulse_table = 2; |
| 220 | |
| 221 | pulse_asleep = !!pulse_asleep; |
| 222 | pulse_awake = !!pulse_awake; |
| 223 | |
| 224 | |
| 225 | spin_lock_irqsave(&pm->lock, flags); |
| 226 | |
| 227 | /* mark state updates which are required */ |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 228 | if (static_brightness != pm->static_brightness) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | pm->static_brightness = static_brightness; |
Dmitry Torokhov | 05f091a | 2005-05-29 02:29:01 -0500 | [diff] [blame] | 230 | pm->requires_update |= UPDATE_STATIC_BRIGHTNESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | } |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 232 | if (pulse_asleep != pm->pulse_asleep) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | pm->pulse_asleep = pulse_asleep; |
| 234 | pm->requires_update |= (UPDATE_PULSE_ASLEEP | UPDATE_STATIC_BRIGHTNESS); |
| 235 | } |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 236 | if (pulse_awake != pm->pulse_awake) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | pm->pulse_awake = pulse_awake; |
| 238 | pm->requires_update |= (UPDATE_PULSE_AWAKE | UPDATE_STATIC_BRIGHTNESS); |
| 239 | } |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 240 | if (pulse_speed != pm->pulse_speed || pulse_table != pm->pulse_table) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | pm->pulse_speed = pulse_speed; |
| 242 | pm->pulse_table = pulse_table; |
| 243 | pm->requires_update |= UPDATE_PULSE_MODE; |
| 244 | } |
| 245 | |
| 246 | powermate_sync_state(pm); |
Dmitry Torokhov | 05f091a | 2005-05-29 02:29:01 -0500 | [diff] [blame] | 247 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | spin_unlock_irqrestore(&pm->lock, flags); |
| 249 | } |
| 250 | |
| 251 | /* Callback from the Input layer when an event arrives from userspace to configure the LED */ |
| 252 | static int powermate_input_event(struct input_dev *dev, unsigned int type, unsigned int code, int _value) |
| 253 | { |
| 254 | unsigned int command = (unsigned int)_value; |
Dmitry Torokhov | 7791bda | 2007-04-12 01:34:39 -0400 | [diff] [blame] | 255 | struct powermate_device *pm = input_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | |
| 257 | if (type == EV_MSC && code == MSC_PULSELED){ |
Dmitry Torokhov | 05f091a | 2005-05-29 02:29:01 -0500 | [diff] [blame] | 258 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | bits 0- 7: 8 bits: LED brightness |
| 260 | bits 8-16: 9 bits: pulsing speed modifier (0 ... 510); 0-254 = slower, 255 = standard, 256-510 = faster. |
| 261 | bits 17-18: 2 bits: pulse table (0, 1, 2 valid) |
| 262 | bit 19: 1 bit : pulse whilst asleep? |
| 263 | bit 20: 1 bit : pulse constantly? |
Dmitry Torokhov | 05f091a | 2005-05-29 02:29:01 -0500 | [diff] [blame] | 264 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | int static_brightness = command & 0xFF; // bits 0-7 |
| 266 | int pulse_speed = (command >> 8) & 0x1FF; // bits 8-16 |
| 267 | int pulse_table = (command >> 17) & 0x3; // bits 17-18 |
| 268 | int pulse_asleep = (command >> 19) & 0x1; // bit 19 |
| 269 | int pulse_awake = (command >> 20) & 0x1; // bit 20 |
Dmitry Torokhov | 05f091a | 2005-05-29 02:29:01 -0500 | [diff] [blame] | 270 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | powermate_pulse_led(pm, static_brightness, pulse_speed, pulse_table, pulse_asleep, pulse_awake); |
| 272 | } |
| 273 | |
| 274 | return 0; |
| 275 | } |
| 276 | |
| 277 | static int powermate_alloc_buffers(struct usb_device *udev, struct powermate_device *pm) |
| 278 | { |
| 279 | pm->data = usb_buffer_alloc(udev, POWERMATE_PAYLOAD_SIZE_MAX, |
Christoph Lameter | 54e6ecb | 2006-12-06 20:33:16 -0800 | [diff] [blame] | 280 | GFP_ATOMIC, &pm->data_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | if (!pm->data) |
| 282 | return -1; |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 283 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | pm->configcr = usb_buffer_alloc(udev, sizeof(*(pm->configcr)), |
Christoph Lameter | 54e6ecb | 2006-12-06 20:33:16 -0800 | [diff] [blame] | 285 | GFP_ATOMIC, &pm->configcr_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | if (!pm->configcr) |
| 287 | return -1; |
| 288 | |
| 289 | return 0; |
| 290 | } |
| 291 | |
| 292 | static void powermate_free_buffers(struct usb_device *udev, struct powermate_device *pm) |
| 293 | { |
Dmitry Torokhov | e37a97d | 2007-05-03 00:57:29 -0400 | [diff] [blame] | 294 | usb_buffer_free(udev, POWERMATE_PAYLOAD_SIZE_MAX, |
| 295 | pm->data, pm->data_dma); |
| 296 | usb_buffer_free(udev, sizeof(*(pm->configcr)), |
| 297 | pm->configcr, pm->configcr_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | } |
| 299 | |
| 300 | /* Called whenever a USB device matching one in our supported devices table is connected */ |
| 301 | static int powermate_probe(struct usb_interface *intf, const struct usb_device_id *id) |
| 302 | { |
| 303 | struct usb_device *udev = interface_to_usbdev (intf); |
| 304 | struct usb_host_interface *interface; |
| 305 | struct usb_endpoint_descriptor *endpoint; |
| 306 | struct powermate_device *pm; |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 307 | struct input_dev *input_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | int pipe, maxp; |
Dmitry Torokhov | 5014186 | 2007-04-12 01:33:39 -0400 | [diff] [blame] | 309 | int error = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | |
| 311 | interface = intf->cur_altsetting; |
| 312 | endpoint = &interface->endpoint[0].desc; |
Luiz Fernando N. Capitulino | 60ca126 | 2006-09-27 11:58:53 -0700 | [diff] [blame] | 313 | if (!usb_endpoint_is_int_in(endpoint)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | return -EIO; |
| 315 | |
| 316 | usb_control_msg(udev, usb_sndctrlpipe(udev, 0), |
| 317 | 0x0a, USB_TYPE_CLASS | USB_RECIP_INTERFACE, |
| 318 | 0, interface->desc.bInterfaceNumber, NULL, 0, |
| 319 | USB_CTRL_SET_TIMEOUT); |
| 320 | |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 321 | pm = kzalloc(sizeof(struct powermate_device), GFP_KERNEL); |
| 322 | input_dev = input_allocate_device(); |
| 323 | if (!pm || !input_dev) |
| 324 | goto fail1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 326 | if (powermate_alloc_buffers(udev, pm)) |
| 327 | goto fail2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | |
| 329 | pm->irq = usb_alloc_urb(0, GFP_KERNEL); |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 330 | if (!pm->irq) |
| 331 | goto fail2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | |
| 333 | pm->config = usb_alloc_urb(0, GFP_KERNEL); |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 334 | if (!pm->config) |
| 335 | goto fail3; |
| 336 | |
| 337 | pm->udev = udev; |
| 338 | pm->input = input_dev; |
| 339 | |
| 340 | usb_make_path(udev, pm->phys, sizeof(pm->phys)); |
| 341 | strlcpy(pm->phys, "/input0", sizeof(pm->phys)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | |
| 343 | spin_lock_init(&pm->lock); |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 344 | |
| 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 Torokhov | c0f82d5 | 2007-04-12 01:35:03 -0400 | [diff] [blame] | 360 | input_dev->dev.parent = &intf->dev; |
Dmitry Torokhov | 7791bda | 2007-04-12 01:34:39 -0400 | [diff] [blame] | 361 | |
| 362 | input_set_drvdata(input_dev, pm); |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 363 | |
| 364 | input_dev->event = powermate_input_event; |
| 365 | |
| 366 | input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REL) | BIT(EV_MSC); |
| 367 | input_dev->keybit[LONG(BTN_0)] = BIT(BTN_0); |
| 368 | input_dev->relbit[LONG(REL_DIAL)] = BIT(REL_DIAL); |
| 369 | input_dev->mscbit[LONG(MSC_PULSELED)] = BIT(MSC_PULSELED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | |
| 371 | /* get a handle to the interrupt data pipe */ |
| 372 | pipe = usb_rcvintpipe(udev, endpoint->bEndpointAddress); |
| 373 | maxp = usb_maxpacket(udev, pipe, usb_pipeout(pipe)); |
| 374 | |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 375 | if (maxp < POWERMATE_PAYLOAD_SIZE_MIN || maxp > POWERMATE_PAYLOAD_SIZE_MAX) { |
| 376 | printk(KERN_WARNING "powermate: Expected payload of %d--%d bytes, found %d bytes!\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | POWERMATE_PAYLOAD_SIZE_MIN, POWERMATE_PAYLOAD_SIZE_MAX, maxp); |
| 378 | maxp = POWERMATE_PAYLOAD_SIZE_MAX; |
| 379 | } |
| 380 | |
| 381 | usb_fill_int_urb(pm->irq, udev, pipe, pm->data, |
| 382 | maxp, powermate_irq, |
| 383 | pm, endpoint->bInterval); |
| 384 | pm->irq->transfer_dma = pm->data_dma; |
| 385 | pm->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; |
| 386 | |
| 387 | /* register our interrupt URB with the USB system */ |
| 388 | if (usb_submit_urb(pm->irq, GFP_KERNEL)) { |
Dmitry Torokhov | 5014186 | 2007-04-12 01:33:39 -0400 | [diff] [blame] | 389 | error = -EIO; |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 390 | goto fail4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | } |
| 392 | |
Dmitry Torokhov | 5014186 | 2007-04-12 01:33:39 -0400 | [diff] [blame] | 393 | error = input_register_device(pm->input); |
| 394 | if (error) |
| 395 | goto fail5; |
| 396 | |
Dmitry Torokhov | 05f091a | 2005-05-29 02:29:01 -0500 | [diff] [blame] | 397 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | /* force an update of everything */ |
| 399 | pm->requires_update = UPDATE_PULSE_ASLEEP | UPDATE_PULSE_AWAKE | UPDATE_PULSE_MODE | UPDATE_STATIC_BRIGHTNESS; |
| 400 | powermate_pulse_led(pm, 0x80, 255, 0, 1, 0); // set default pulse parameters |
Dmitry Torokhov | 05f091a | 2005-05-29 02:29:01 -0500 | [diff] [blame] | 401 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | usb_set_intfdata(intf, pm); |
| 403 | return 0; |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 404 | |
Dmitry Torokhov | 5014186 | 2007-04-12 01:33:39 -0400 | [diff] [blame] | 405 | fail5: usb_kill_urb(pm->irq); |
| 406 | fail4: usb_free_urb(pm->config); |
| 407 | fail3: usb_free_urb(pm->irq); |
| 408 | fail2: powermate_free_buffers(udev, pm); |
| 409 | fail1: input_free_device(input_dev); |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 410 | kfree(pm); |
Dmitry Torokhov | 5014186 | 2007-04-12 01:33:39 -0400 | [diff] [blame] | 411 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | } |
| 413 | |
| 414 | /* Called when a USB device we've accepted ownership of is removed */ |
| 415 | static void powermate_disconnect(struct usb_interface *intf) |
| 416 | { |
| 417 | struct powermate_device *pm = usb_get_intfdata (intf); |
| 418 | |
| 419 | usb_set_intfdata(intf, NULL); |
| 420 | if (pm) { |
| 421 | pm->requires_update = 0; |
| 422 | usb_kill_urb(pm->irq); |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 423 | input_unregister_device(pm->input); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | usb_free_urb(pm->irq); |
| 425 | usb_free_urb(pm->config); |
| 426 | powermate_free_buffers(interface_to_usbdev(intf), pm); |
| 427 | |
| 428 | kfree(pm); |
| 429 | } |
| 430 | } |
| 431 | |
| 432 | static struct usb_device_id powermate_devices [] = { |
| 433 | { USB_DEVICE(POWERMATE_VENDOR, POWERMATE_PRODUCT_NEW) }, |
| 434 | { USB_DEVICE(POWERMATE_VENDOR, POWERMATE_PRODUCT_OLD) }, |
| 435 | { USB_DEVICE(CONTOUR_VENDOR, CONTOUR_JOG) }, |
| 436 | { } /* Terminating entry */ |
| 437 | }; |
| 438 | |
| 439 | MODULE_DEVICE_TABLE (usb, powermate_devices); |
| 440 | |
| 441 | static struct usb_driver powermate_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | .name = "powermate", |
| 443 | .probe = powermate_probe, |
| 444 | .disconnect = powermate_disconnect, |
| 445 | .id_table = powermate_devices, |
| 446 | }; |
| 447 | |
| 448 | static int __init powermate_init(void) |
| 449 | { |
| 450 | return usb_register(&powermate_driver); |
| 451 | } |
| 452 | |
| 453 | static void __exit powermate_cleanup(void) |
| 454 | { |
| 455 | usb_deregister(&powermate_driver); |
| 456 | } |
| 457 | |
| 458 | module_init(powermate_init); |
| 459 | module_exit(powermate_cleanup); |
| 460 | |
| 461 | MODULE_AUTHOR( "William R Sowerbutts" ); |
| 462 | MODULE_DESCRIPTION( "Griffin Technology, Inc PowerMate driver" ); |
| 463 | MODULE_LICENSE("GPL"); |