caiaq-input.c 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. /*
  2. * Copyright (c) 2006,2007 Daniel Mack, Tim Ruetz
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. */
  18. #include <linux/init.h>
  19. #include <linux/module.h>
  20. #include <linux/moduleparam.h>
  21. #include <linux/input.h>
  22. #include <linux/usb.h>
  23. #include <linux/spinlock.h>
  24. #include <sound/driver.h>
  25. #include <sound/core.h>
  26. #include <sound/rawmidi.h>
  27. #include <sound/pcm.h>
  28. #include "caiaq-device.h"
  29. #include "caiaq-input.h"
  30. #ifdef CONFIG_SND_USB_CAIAQ_INPUT
  31. static unsigned char keycode_ak1[] = { KEY_C, KEY_B, KEY_A };
  32. static unsigned char keycode_rk2[] = { KEY_1, KEY_2, KEY_3, KEY_4,
  33. KEY_5, KEY_6, KEY_7 };
  34. #define DEG90 (range/2)
  35. #define DEG180 (range)
  36. #define DEG270 (DEG90 + DEG180)
  37. #define DEG360 (DEG180 * 2)
  38. #define HIGH_PEAK (268)
  39. #define LOW_PEAK (-7)
  40. /* some of these devices have endless rotation potentiometers
  41. * built in which use two tapers, 90 degrees phase shifted.
  42. * this algorithm decodes them to one single value, ranging
  43. * from 0 to 999 */
  44. static unsigned int decode_erp(unsigned char a, unsigned char b)
  45. {
  46. int weight_a, weight_b;
  47. int pos_a, pos_b;
  48. int ret;
  49. int range = HIGH_PEAK - LOW_PEAK;
  50. int mid_value = (HIGH_PEAK + LOW_PEAK) / 2;
  51. weight_b = abs(mid_value-a) - (range/2 - 100)/2;
  52. if (weight_b < 0)
  53. weight_b = 0;
  54. if (weight_b > 100)
  55. weight_b = 100;
  56. weight_a = 100 - weight_b;
  57. if (a < mid_value) {
  58. /* 0..90 and 270..360 degrees */
  59. pos_b = b - LOW_PEAK + DEG270;
  60. if (pos_b >= DEG360)
  61. pos_b -= DEG360;
  62. } else
  63. /* 90..270 degrees */
  64. pos_b = HIGH_PEAK - b + DEG90;
  65. if (b > mid_value)
  66. /* 0..180 degrees */
  67. pos_a = a - LOW_PEAK;
  68. else
  69. /* 180..360 degrees */
  70. pos_a = HIGH_PEAK - a + DEG180;
  71. /* interpolate both slider values, depending on weight factors */
  72. /* 0..99 x DEG360 */
  73. ret = pos_a * weight_a + pos_b * weight_b;
  74. /* normalize to 0..999 */
  75. ret *= 10;
  76. ret /= DEG360;
  77. if (ret < 0)
  78. ret += 1000;
  79. if (ret >= 1000)
  80. ret -= 1000;
  81. return ret;
  82. }
  83. #undef DEG90
  84. #undef DEG180
  85. #undef DEG270
  86. #undef DEG360
  87. #undef HIGH_PEAK
  88. #undef LOW_PEAK
  89. static void snd_caiaq_input_read_analog(struct snd_usb_caiaqdev *dev,
  90. const char *buf, unsigned int len)
  91. {
  92. switch(dev->input_dev->id.product) {
  93. case USB_PID_RIGKONTROL2:
  94. input_report_abs(dev->input_dev, ABS_X, (buf[4] << 8) |buf[5]);
  95. input_report_abs(dev->input_dev, ABS_Y, (buf[0] << 8) |buf[1]);
  96. input_report_abs(dev->input_dev, ABS_Z, (buf[2] << 8) |buf[3]);
  97. input_sync(dev->input_dev);
  98. break;
  99. }
  100. }
  101. static void snd_caiaq_input_read_erp(struct snd_usb_caiaqdev *dev,
  102. const char *buf, unsigned int len)
  103. {
  104. int i;
  105. switch(dev->input_dev->id.product) {
  106. case USB_PID_AK1:
  107. i = decode_erp(buf[0], buf[1]);
  108. input_report_abs(dev->input_dev, ABS_X, i);
  109. input_sync(dev->input_dev);
  110. break;
  111. }
  112. }
  113. static void snd_caiaq_input_read_io(struct snd_usb_caiaqdev *dev,
  114. char *buf, unsigned int len)
  115. {
  116. int i;
  117. unsigned char *keycode = dev->input_dev->keycode;
  118. if (!keycode)
  119. return;
  120. if (dev->input_dev->id.product == USB_PID_RIGKONTROL2)
  121. for (i=0; i<len; i++)
  122. buf[i] = ~buf[i];
  123. for (i=0; (i<dev->input_dev->keycodemax) && (i < len); i++)
  124. input_report_key(dev->input_dev, keycode[i],
  125. buf[i/8] & (1 << (i%8)));
  126. input_sync(dev->input_dev);
  127. }
  128. void snd_usb_caiaq_input_dispatch(struct snd_usb_caiaqdev *dev,
  129. char *buf,
  130. unsigned int len)
  131. {
  132. if (!dev->input_dev || (len < 1))
  133. return;
  134. switch (buf[0]) {
  135. case EP1_CMD_READ_ANALOG:
  136. snd_caiaq_input_read_analog(dev, buf+1, len-1);
  137. break;
  138. case EP1_CMD_READ_ERP:
  139. snd_caiaq_input_read_erp(dev, buf+1, len-1);
  140. break;
  141. case EP1_CMD_READ_IO:
  142. snd_caiaq_input_read_io(dev, buf+1, len-1);
  143. break;
  144. }
  145. }
  146. int snd_usb_caiaq_input_init(struct snd_usb_caiaqdev *dev)
  147. {
  148. struct usb_device *usb_dev = dev->chip.dev;
  149. struct input_dev *input;
  150. int i, ret;
  151. input = input_allocate_device();
  152. if (!input)
  153. return -ENOMEM;
  154. input->name = dev->product_name;
  155. input->id.bustype = BUS_USB;
  156. input->id.vendor = usb_dev->descriptor.idVendor;
  157. input->id.product = usb_dev->descriptor.idProduct;
  158. input->id.version = usb_dev->descriptor.bcdDevice;
  159. switch (dev->chip.usb_id) {
  160. case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_RIGKONTROL2):
  161. input->evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
  162. input->absbit[0] = BIT(ABS_X) | BIT(ABS_Y) | BIT(ABS_Z);
  163. input->keycode = keycode_rk2;
  164. input->keycodesize = sizeof(char);
  165. input->keycodemax = ARRAY_SIZE(keycode_rk2);
  166. for (i=0; i<ARRAY_SIZE(keycode_rk2); i++)
  167. set_bit(keycode_rk2[i], input->keybit);
  168. input_set_abs_params(input, ABS_X, 0, 4096, 0, 10);
  169. input_set_abs_params(input, ABS_Y, 0, 4096, 0, 10);
  170. input_set_abs_params(input, ABS_Z, 0, 4096, 0, 10);
  171. snd_usb_caiaq_set_auto_msg(dev, 1, 10, 0);
  172. break;
  173. case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_AK1):
  174. input->evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
  175. input->absbit[0] = BIT(ABS_X);
  176. input->keycode = keycode_ak1;
  177. input->keycodesize = sizeof(char);
  178. input->keycodemax = ARRAY_SIZE(keycode_ak1);
  179. for (i=0; i<ARRAY_SIZE(keycode_ak1); i++)
  180. set_bit(keycode_ak1[i], input->keybit);
  181. input_set_abs_params(input, ABS_X, 0, 999, 0, 10);
  182. snd_usb_caiaq_set_auto_msg(dev, 1, 0, 5);
  183. break;
  184. default:
  185. /* no input methods supported on this device */
  186. input_free_device(input);
  187. return 0;
  188. }
  189. ret = input_register_device(input);
  190. if (ret < 0) {
  191. input_free_device(input);
  192. return ret;
  193. }
  194. dev->input_dev = input;
  195. return 0;
  196. }
  197. void snd_usb_caiaq_input_free(struct snd_usb_caiaqdev *dev)
  198. {
  199. if (!dev || !dev->input_dev)
  200. return;
  201. input_unregister_device(dev->input_dev);
  202. input_free_device(dev->input_dev);
  203. dev->input_dev = NULL;
  204. }
  205. #endif /* CONFIG_SND_USB_CAIAQ_INPUT */