diff options
Diffstat (limited to 'sound/usb/caiaq/input.c')
-rw-r--r-- | sound/usb/caiaq/input.c | 163 |
1 files changed, 150 insertions, 13 deletions
diff --git a/sound/usb/caiaq/input.c b/sound/usb/caiaq/input.c index a48d309bd94c..8bbfbfd4c658 100644 --- a/sound/usb/caiaq/input.c +++ b/sound/usb/caiaq/input.c | |||
@@ -16,9 +16,11 @@ | |||
16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
17 | */ | 17 | */ |
18 | 18 | ||
19 | #include <linux/gfp.h> | ||
19 | #include <linux/init.h> | 20 | #include <linux/init.h> |
20 | #include <linux/usb.h> | 21 | #include <linux/usb.h> |
21 | #include <linux/usb/input.h> | 22 | #include <linux/usb/input.h> |
23 | #include <sound/core.h> | ||
22 | #include <sound/pcm.h> | 24 | #include <sound/pcm.h> |
23 | 25 | ||
24 | #include "device.h" | 26 | #include "device.h" |
@@ -65,6 +67,8 @@ static unsigned short keycode_kore[] = { | |||
65 | KEY_BRL_DOT5 | 67 | KEY_BRL_DOT5 |
66 | }; | 68 | }; |
67 | 69 | ||
70 | #define KONTROLX1_INPUTS 40 | ||
71 | |||
68 | #define DEG90 (range / 2) | 72 | #define DEG90 (range / 2) |
69 | #define DEG180 (range) | 73 | #define DEG180 (range) |
70 | #define DEG270 (DEG90 + DEG180) | 74 | #define DEG270 (DEG90 + DEG180) |
@@ -162,6 +166,17 @@ static void snd_caiaq_input_read_analog(struct snd_usb_caiaqdev *dev, | |||
162 | input_report_abs(input_dev, ABS_Z, (buf[4] << 8) | buf[5]); | 166 | input_report_abs(input_dev, ABS_Z, (buf[4] << 8) | buf[5]); |
163 | input_sync(input_dev); | 167 | input_sync(input_dev); |
164 | break; | 168 | break; |
169 | case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_TRAKTORKONTROLX1): | ||
170 | input_report_abs(input_dev, ABS_HAT0X, (buf[8] << 8) | buf[9]); | ||
171 | input_report_abs(input_dev, ABS_HAT0Y, (buf[4] << 8) | buf[5]); | ||
172 | input_report_abs(input_dev, ABS_HAT1X, (buf[12] << 8) | buf[13]); | ||
173 | input_report_abs(input_dev, ABS_HAT1Y, (buf[2] << 8) | buf[3]); | ||
174 | input_report_abs(input_dev, ABS_HAT2X, (buf[15] << 8) | buf[15]); | ||
175 | input_report_abs(input_dev, ABS_HAT2Y, (buf[0] << 8) | buf[1]); | ||
176 | input_report_abs(input_dev, ABS_HAT3X, (buf[10] << 8) | buf[11]); | ||
177 | input_report_abs(input_dev, ABS_HAT3Y, (buf[6] << 8) | buf[7]); | ||
178 | input_sync(input_dev); | ||
179 | break; | ||
165 | } | 180 | } |
166 | } | 181 | } |
167 | 182 | ||
@@ -201,7 +216,7 @@ static void snd_caiaq_input_read_erp(struct snd_usb_caiaqdev *dev, | |||
201 | } | 216 | } |
202 | 217 | ||
203 | static void snd_caiaq_input_read_io(struct snd_usb_caiaqdev *dev, | 218 | static void snd_caiaq_input_read_io(struct snd_usb_caiaqdev *dev, |
204 | char *buf, unsigned int len) | 219 | unsigned char *buf, unsigned int len) |
205 | { | 220 | { |
206 | struct input_dev *input_dev = dev->input_dev; | 221 | struct input_dev *input_dev = dev->input_dev; |
207 | unsigned short *keycode = input_dev->keycode; | 222 | unsigned short *keycode = input_dev->keycode; |
@@ -218,15 +233,84 @@ static void snd_caiaq_input_read_io(struct snd_usb_caiaqdev *dev, | |||
218 | input_report_key(input_dev, keycode[i], | 233 | input_report_key(input_dev, keycode[i], |
219 | buf[i / 8] & (1 << (i % 8))); | 234 | buf[i / 8] & (1 << (i % 8))); |
220 | 235 | ||
221 | if (dev->chip.usb_id == | 236 | switch (dev->chip.usb_id) { |
222 | USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_KORECONTROLLER) || | 237 | case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_KORECONTROLLER): |
223 | dev->chip.usb_id == | 238 | case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_KORECONTROLLER2): |
224 | USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_KORECONTROLLER2)) | ||
225 | input_report_abs(dev->input_dev, ABS_MISC, 255 - buf[4]); | 239 | input_report_abs(dev->input_dev, ABS_MISC, 255 - buf[4]); |
240 | break; | ||
241 | case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_TRAKTORKONTROLX1): | ||
242 | /* rotary encoders */ | ||
243 | input_report_abs(dev->input_dev, ABS_X, buf[5] & 0xf); | ||
244 | input_report_abs(dev->input_dev, ABS_Y, buf[5] >> 4); | ||
245 | input_report_abs(dev->input_dev, ABS_Z, buf[6] & 0xf); | ||
246 | input_report_abs(dev->input_dev, ABS_MISC, buf[6] >> 4); | ||
247 | break; | ||
248 | } | ||
226 | 249 | ||
227 | input_sync(input_dev); | 250 | input_sync(input_dev); |
228 | } | 251 | } |
229 | 252 | ||
253 | static void snd_usb_caiaq_ep4_reply_dispatch(struct urb *urb) | ||
254 | { | ||
255 | struct snd_usb_caiaqdev *dev = urb->context; | ||
256 | unsigned char *buf = urb->transfer_buffer; | ||
257 | int ret; | ||
258 | |||
259 | if (urb->status || !dev || urb != dev->ep4_in_urb) | ||
260 | return; | ||
261 | |||
262 | if (urb->actual_length < 24) | ||
263 | goto requeue; | ||
264 | |||
265 | switch (dev->chip.usb_id) { | ||
266 | case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_TRAKTORKONTROLX1): | ||
267 | if (buf[0] & 0x3) | ||
268 | snd_caiaq_input_read_io(dev, buf + 1, 7); | ||
269 | |||
270 | if (buf[0] & 0x4) | ||
271 | snd_caiaq_input_read_analog(dev, buf + 8, 16); | ||
272 | |||
273 | break; | ||
274 | } | ||
275 | |||
276 | requeue: | ||
277 | dev->ep4_in_urb->actual_length = 0; | ||
278 | ret = usb_submit_urb(dev->ep4_in_urb, GFP_ATOMIC); | ||
279 | if (ret < 0) | ||
280 | log("unable to submit urb. OOM!?\n"); | ||
281 | } | ||
282 | |||
283 | static int snd_usb_caiaq_input_open(struct input_dev *idev) | ||
284 | { | ||
285 | struct snd_usb_caiaqdev *dev = input_get_drvdata(idev); | ||
286 | |||
287 | if (!dev) | ||
288 | return -EINVAL; | ||
289 | |||
290 | switch (dev->chip.usb_id) { | ||
291 | case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_TRAKTORKONTROLX1): | ||
292 | if (usb_submit_urb(dev->ep4_in_urb, GFP_KERNEL) != 0) | ||
293 | return -EIO; | ||
294 | break; | ||
295 | } | ||
296 | |||
297 | return 0; | ||
298 | } | ||
299 | |||
300 | static void snd_usb_caiaq_input_close(struct input_dev *idev) | ||
301 | { | ||
302 | struct snd_usb_caiaqdev *dev = input_get_drvdata(idev); | ||
303 | |||
304 | if (!dev) | ||
305 | return; | ||
306 | |||
307 | switch (dev->chip.usb_id) { | ||
308 | case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_TRAKTORKONTROLX1): | ||
309 | usb_kill_urb(dev->ep4_in_urb); | ||
310 | break; | ||
311 | } | ||
312 | } | ||
313 | |||
230 | void snd_usb_caiaq_input_dispatch(struct snd_usb_caiaqdev *dev, | 314 | void snd_usb_caiaq_input_dispatch(struct snd_usb_caiaqdev *dev, |
231 | char *buf, | 315 | char *buf, |
232 | unsigned int len) | 316 | unsigned int len) |
@@ -251,7 +335,7 @@ int snd_usb_caiaq_input_init(struct snd_usb_caiaqdev *dev) | |||
251 | { | 335 | { |
252 | struct usb_device *usb_dev = dev->chip.dev; | 336 | struct usb_device *usb_dev = dev->chip.dev; |
253 | struct input_dev *input; | 337 | struct input_dev *input; |
254 | int i, ret; | 338 | int i, ret = 0; |
255 | 339 | ||
256 | input = input_allocate_device(); | 340 | input = input_allocate_device(); |
257 | if (!input) | 341 | if (!input) |
@@ -265,7 +349,9 @@ int snd_usb_caiaq_input_init(struct snd_usb_caiaqdev *dev) | |||
265 | usb_to_input_id(usb_dev, &input->id); | 349 | usb_to_input_id(usb_dev, &input->id); |
266 | input->dev.parent = &usb_dev->dev; | 350 | input->dev.parent = &usb_dev->dev; |
267 | 351 | ||
268 | switch (dev->chip.usb_id) { | 352 | input_set_drvdata(input, dev); |
353 | |||
354 | switch (dev->chip.usb_id) { | ||
269 | case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_RIGKONTROL2): | 355 | case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_RIGKONTROL2): |
270 | input->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS); | 356 | input->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS); |
271 | input->absbit[0] = BIT_MASK(ABS_X) | BIT_MASK(ABS_Y) | | 357 | input->absbit[0] = BIT_MASK(ABS_X) | BIT_MASK(ABS_Y) | |
@@ -326,25 +412,72 @@ int snd_usb_caiaq_input_init(struct snd_usb_caiaqdev *dev) | |||
326 | input_set_abs_params(input, ABS_MISC, 0, 255, 0, 1); | 412 | input_set_abs_params(input, ABS_MISC, 0, 255, 0, 1); |
327 | snd_usb_caiaq_set_auto_msg(dev, 1, 10, 5); | 413 | snd_usb_caiaq_set_auto_msg(dev, 1, 10, 5); |
328 | break; | 414 | break; |
415 | case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_TRAKTORKONTROLX1): | ||
416 | input->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS); | ||
417 | input->absbit[0] = BIT_MASK(ABS_HAT0X) | BIT_MASK(ABS_HAT0Y) | | ||
418 | BIT_MASK(ABS_HAT1X) | BIT_MASK(ABS_HAT1Y) | | ||
419 | BIT_MASK(ABS_HAT2X) | BIT_MASK(ABS_HAT2Y) | | ||
420 | BIT_MASK(ABS_HAT3X) | BIT_MASK(ABS_HAT3Y) | | ||
421 | BIT_MASK(ABS_X) | BIT_MASK(ABS_Y) | | ||
422 | BIT_MASK(ABS_Z); | ||
423 | input->absbit[BIT_WORD(ABS_MISC)] |= BIT_MASK(ABS_MISC); | ||
424 | BUILD_BUG_ON(sizeof(dev->keycode) < KONTROLX1_INPUTS); | ||
425 | for (i = 0; i < KONTROLX1_INPUTS; i++) | ||
426 | dev->keycode[i] = BTN_MISC + i; | ||
427 | input->keycodemax = KONTROLX1_INPUTS; | ||
428 | |||
429 | /* analog potentiometers */ | ||
430 | input_set_abs_params(input, ABS_HAT0X, 0, 4096, 0, 10); | ||
431 | input_set_abs_params(input, ABS_HAT0Y, 0, 4096, 0, 10); | ||
432 | input_set_abs_params(input, ABS_HAT1X, 0, 4096, 0, 10); | ||
433 | input_set_abs_params(input, ABS_HAT1Y, 0, 4096, 0, 10); | ||
434 | input_set_abs_params(input, ABS_HAT2X, 0, 4096, 0, 10); | ||
435 | input_set_abs_params(input, ABS_HAT2Y, 0, 4096, 0, 10); | ||
436 | input_set_abs_params(input, ABS_HAT3X, 0, 4096, 0, 10); | ||
437 | input_set_abs_params(input, ABS_HAT3Y, 0, 4096, 0, 10); | ||
438 | |||
439 | /* rotary encoders */ | ||
440 | input_set_abs_params(input, ABS_X, 0, 0xf, 0, 1); | ||
441 | input_set_abs_params(input, ABS_Y, 0, 0xf, 0, 1); | ||
442 | input_set_abs_params(input, ABS_Z, 0, 0xf, 0, 1); | ||
443 | input_set_abs_params(input, ABS_MISC, 0, 0xf, 0, 1); | ||
444 | |||
445 | dev->ep4_in_urb = usb_alloc_urb(0, GFP_KERNEL); | ||
446 | if (!dev->ep4_in_urb) { | ||
447 | ret = -ENOMEM; | ||
448 | goto exit_free_idev; | ||
449 | } | ||
450 | |||
451 | usb_fill_bulk_urb(dev->ep4_in_urb, usb_dev, | ||
452 | usb_rcvbulkpipe(usb_dev, 0x4), | ||
453 | dev->ep4_in_buf, EP4_BUFSIZE, | ||
454 | snd_usb_caiaq_ep4_reply_dispatch, dev); | ||
455 | |||
456 | snd_usb_caiaq_set_auto_msg(dev, 1, 10, 5); | ||
457 | |||
458 | break; | ||
329 | default: | 459 | default: |
330 | /* no input methods supported on this device */ | 460 | /* no input methods supported on this device */ |
331 | input_free_device(input); | 461 | goto exit_free_idev; |
332 | return 0; | ||
333 | } | 462 | } |
334 | 463 | ||
464 | input->open = snd_usb_caiaq_input_open; | ||
465 | input->close = snd_usb_caiaq_input_close; | ||
335 | input->keycode = dev->keycode; | 466 | input->keycode = dev->keycode; |
336 | input->keycodesize = sizeof(unsigned short); | 467 | input->keycodesize = sizeof(unsigned short); |
337 | for (i = 0; i < input->keycodemax; i++) | 468 | for (i = 0; i < input->keycodemax; i++) |
338 | __set_bit(dev->keycode[i], input->keybit); | 469 | __set_bit(dev->keycode[i], input->keybit); |
339 | 470 | ||
340 | ret = input_register_device(input); | 471 | ret = input_register_device(input); |
341 | if (ret < 0) { | 472 | if (ret < 0) |
342 | input_free_device(input); | 473 | goto exit_free_idev; |
343 | return ret; | ||
344 | } | ||
345 | 474 | ||
346 | dev->input_dev = input; | 475 | dev->input_dev = input; |
347 | return 0; | 476 | return 0; |
477 | |||
478 | exit_free_idev: | ||
479 | input_free_device(input); | ||
480 | return ret; | ||
348 | } | 481 | } |
349 | 482 | ||
350 | void snd_usb_caiaq_input_free(struct snd_usb_caiaqdev *dev) | 483 | void snd_usb_caiaq_input_free(struct snd_usb_caiaqdev *dev) |
@@ -352,6 +485,10 @@ void snd_usb_caiaq_input_free(struct snd_usb_caiaqdev *dev) | |||
352 | if (!dev || !dev->input_dev) | 485 | if (!dev || !dev->input_dev) |
353 | return; | 486 | return; |
354 | 487 | ||
488 | usb_kill_urb(dev->ep4_in_urb); | ||
489 | usb_free_urb(dev->ep4_in_urb); | ||
490 | dev->ep4_in_urb = NULL; | ||
491 | |||
355 | input_unregister_device(dev->input_dev); | 492 | input_unregister_device(dev->input_dev); |
356 | dev->input_dev = NULL; | 493 | dev->input_dev = NULL; |
357 | } | 494 | } |