2 * Copyright (c) 2006,2007 Daniel Mack, Tim Ruetz
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.
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.
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
19 #include <linux/init.h>
20 #include <linux/module.h>
21 #include <linux/moduleparam.h>
22 #include <linux/input.h>
23 #include <linux/usb.h>
24 #include <linux/spinlock.h>
25 #include <sound/driver.h>
26 #include <sound/core.h>
27 #include <sound/rawmidi.h>
28 #include <sound/pcm.h>
29 #include "caiaq-device.h"
30 #include "caiaq-input.h"
32 #ifdef CONFIG_SND_USB_CAIAQ_INPUT
34 static unsigned char keycode_ak1[] = { KEY_C, KEY_B, KEY_A };
35 static unsigned char keycode_rk2[] = { KEY_1, KEY_2, KEY_3, KEY_4,
36 KEY_5, KEY_6, KEY_7 };
37 static unsigned char keycode_rk3[] = { KEY_1, KEY_2, KEY_3, KEY_4,
38 KEY_5, KEY_6, KEY_7, KEY_5, KEY_6 };
40 #define DEG90 (range/2)
41 #define DEG180 (range)
42 #define DEG270 (DEG90 + DEG180)
43 #define DEG360 (DEG180 * 2)
44 #define HIGH_PEAK (268)
47 /* some of these devices have endless rotation potentiometers
48 * built in which use two tapers, 90 degrees phase shifted.
49 * this algorithm decodes them to one single value, ranging
51 static unsigned int decode_erp(unsigned char a, unsigned char b)
53 int weight_a, weight_b;
56 int range = HIGH_PEAK - LOW_PEAK;
57 int mid_value = (HIGH_PEAK + LOW_PEAK) / 2;
59 weight_b = abs(mid_value-a) - (range/2 - 100)/2;
67 weight_a = 100 - weight_b;
70 /* 0..90 and 270..360 degrees */
71 pos_b = b - LOW_PEAK + DEG270;
76 pos_b = HIGH_PEAK - b + DEG90;
83 /* 180..360 degrees */
84 pos_a = HIGH_PEAK - a + DEG180;
86 /* interpolate both slider values, depending on weight factors */
88 ret = pos_a * weight_a + pos_b * weight_b;
90 /* normalize to 0..999 */
111 static void snd_caiaq_input_read_analog(struct snd_usb_caiaqdev *dev,
112 const unsigned char *buf,
115 switch(dev->input_dev->id.product) {
116 case USB_PID_RIGKONTROL2:
117 input_report_abs(dev->input_dev, ABS_X, (buf[4] << 8) |buf[5]);
118 input_report_abs(dev->input_dev, ABS_Y, (buf[0] << 8) |buf[1]);
119 input_report_abs(dev->input_dev, ABS_Z, (buf[2] << 8) |buf[3]);
120 input_sync(dev->input_dev);
122 case USB_PID_RIGKONTROL3:
123 input_report_abs(dev->input_dev, ABS_X, (buf[0] << 8) |buf[1]);
124 input_report_abs(dev->input_dev, ABS_Y, (buf[2] << 8) |buf[3]);
125 input_report_abs(dev->input_dev, ABS_Z, (buf[4] << 8) |buf[5]);
126 input_sync(dev->input_dev);
131 static void snd_caiaq_input_read_erp(struct snd_usb_caiaqdev *dev,
132 const char *buf, unsigned int len)
136 switch(dev->input_dev->id.product) {
138 i = decode_erp(buf[0], buf[1]);
139 input_report_abs(dev->input_dev, ABS_X, i);
140 input_sync(dev->input_dev);
145 static void snd_caiaq_input_read_io(struct snd_usb_caiaqdev *dev,
146 char *buf, unsigned int len)
149 unsigned char *keycode = dev->input_dev->keycode;
154 if (dev->input_dev->id.product == USB_PID_RIGKONTROL2)
155 for (i=0; i<len; i++)
158 for (i=0; (i<dev->input_dev->keycodemax) && (i < len); i++)
159 input_report_key(dev->input_dev, keycode[i],
160 buf[i/8] & (1 << (i%8)));
162 input_sync(dev->input_dev);
165 void snd_usb_caiaq_input_dispatch(struct snd_usb_caiaqdev *dev,
169 if (!dev->input_dev || (len < 1))
173 case EP1_CMD_READ_ANALOG:
174 snd_caiaq_input_read_analog(dev, buf+1, len-1);
176 case EP1_CMD_READ_ERP:
177 snd_caiaq_input_read_erp(dev, buf+1, len-1);
179 case EP1_CMD_READ_IO:
180 snd_caiaq_input_read_io(dev, buf+1, len-1);
185 int snd_usb_caiaq_input_init(struct snd_usb_caiaqdev *dev)
187 struct usb_device *usb_dev = dev->chip.dev;
188 struct input_dev *input;
191 input = input_allocate_device();
195 input->name = dev->product_name;
196 input->id.bustype = BUS_USB;
197 input->id.vendor = usb_dev->descriptor.idVendor;
198 input->id.product = usb_dev->descriptor.idProduct;
199 input->id.version = usb_dev->descriptor.bcdDevice;
201 switch (dev->chip.usb_id) {
202 case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_RIGKONTROL2):
203 input->evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
204 input->absbit[0] = BIT(ABS_X) | BIT(ABS_Y) | BIT(ABS_Z);
205 input->keycode = keycode_rk2;
206 input->keycodesize = sizeof(char);
207 input->keycodemax = ARRAY_SIZE(keycode_rk2);
208 for (i=0; i<ARRAY_SIZE(keycode_rk2); i++)
209 set_bit(keycode_rk2[i], input->keybit);
211 input_set_abs_params(input, ABS_X, 0, 4096, 0, 10);
212 input_set_abs_params(input, ABS_Y, 0, 4096, 0, 10);
213 input_set_abs_params(input, ABS_Z, 0, 4096, 0, 10);
214 snd_usb_caiaq_set_auto_msg(dev, 1, 10, 0);
216 case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_RIGKONTROL3):
217 input->evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
218 input->absbit[0] = BIT(ABS_X) | BIT(ABS_Y) | BIT(ABS_Z);
219 input->keycode = keycode_rk3;
220 input->keycodesize = sizeof(char);
221 input->keycodemax = ARRAY_SIZE(keycode_rk3);
222 for (i=0; i<ARRAY_SIZE(keycode_rk3); i++)
223 set_bit(keycode_rk3[i], input->keybit);
225 input_set_abs_params(input, ABS_X, 0, 1024, 0, 10);
226 input_set_abs_params(input, ABS_Y, 0, 1024, 0, 10);
227 input_set_abs_params(input, ABS_Z, 0, 1024, 0, 10);
228 snd_usb_caiaq_set_auto_msg(dev, 1, 10, 0);
230 case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_AK1):
231 input->evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
232 input->absbit[0] = BIT(ABS_X);
233 input->keycode = keycode_ak1;
234 input->keycodesize = sizeof(char);
235 input->keycodemax = ARRAY_SIZE(keycode_ak1);
236 for (i=0; i<ARRAY_SIZE(keycode_ak1); i++)
237 set_bit(keycode_ak1[i], input->keybit);
239 input_set_abs_params(input, ABS_X, 0, 999, 0, 10);
240 snd_usb_caiaq_set_auto_msg(dev, 1, 0, 5);
243 /* no input methods supported on this device */
244 input_free_device(input);
248 ret = input_register_device(input);
250 input_free_device(input);
254 dev->input_dev = input;
258 void snd_usb_caiaq_input_free(struct snd_usb_caiaqdev *dev)
260 if (!dev || !dev->input_dev)
263 input_unregister_device(dev->input_dev);
264 dev->input_dev = NULL;
267 #endif /* CONFIG_SND_USB_CAIAQ_INPUT */