Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Roccat Arvo driver for Linux |
| 3 | * |
| 4 | * Copyright (c) 2011 Stefan Achatz <erazor_de@users.sourceforge.net> |
| 5 | */ |
| 6 | |
| 7 | /* |
| 8 | * This program is free software; you can redistribute it and/or modify it |
| 9 | * under the terms of the GNU General Public License as published by the Free |
| 10 | * Software Foundation; either version 2 of the License, or (at your option) |
| 11 | * any later version. |
| 12 | */ |
| 13 | |
| 14 | /* |
| 15 | * Roccat Arvo is a gamer keyboard with 5 macro keys that can be configured in |
| 16 | * 5 profiles. |
| 17 | */ |
| 18 | |
| 19 | #include <linux/device.h> |
| 20 | #include <linux/input.h> |
| 21 | #include <linux/hid.h> |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 22 | #include <linux/module.h> |
| 23 | #include <linux/slab.h> |
Stefan Achatz | 5dc0c98 | 2011-02-03 16:14:43 +0100 | [diff] [blame] | 24 | #include <linux/hid-roccat.h> |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 25 | #include "hid-ids.h" |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 26 | #include "hid-roccat-common.h" |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 27 | #include "hid-roccat-arvo.h" |
| 28 | |
| 29 | static struct class *arvo_class; |
| 30 | |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 31 | static ssize_t arvo_sysfs_show_mode_key(struct device *dev, |
| 32 | struct device_attribute *attr, char *buf) |
| 33 | { |
| 34 | struct arvo_device *arvo = |
| 35 | hid_get_drvdata(dev_get_drvdata(dev->parent->parent)); |
| 36 | struct usb_device *usb_dev = |
| 37 | interface_to_usbdev(to_usb_interface(dev->parent->parent)); |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 38 | struct arvo_mode_key temp_buf; |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 39 | int retval; |
| 40 | |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 41 | mutex_lock(&arvo->arvo_lock); |
Stefan Achatz | 1edd5b4 | 2011-06-01 15:54:17 +0200 | [diff] [blame] | 42 | retval = roccat_common_receive(usb_dev, ARVO_COMMAND_MODE_KEY, |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 43 | &temp_buf, sizeof(struct arvo_mode_key)); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 44 | mutex_unlock(&arvo->arvo_lock); |
| 45 | if (retval) |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 46 | return retval; |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 47 | |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 48 | return snprintf(buf, PAGE_SIZE, "%d\n", temp_buf.state); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | static ssize_t arvo_sysfs_set_mode_key(struct device *dev, |
| 52 | struct device_attribute *attr, char const *buf, size_t size) |
| 53 | { |
| 54 | struct arvo_device *arvo = |
| 55 | hid_get_drvdata(dev_get_drvdata(dev->parent->parent)); |
| 56 | struct usb_device *usb_dev = |
| 57 | interface_to_usbdev(to_usb_interface(dev->parent->parent)); |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 58 | struct arvo_mode_key temp_buf; |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 59 | unsigned long state; |
| 60 | int retval; |
| 61 | |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 62 | retval = strict_strtoul(buf, 10, &state); |
| 63 | if (retval) |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 64 | return retval; |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 65 | |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 66 | temp_buf.command = ARVO_COMMAND_MODE_KEY; |
| 67 | temp_buf.state = state; |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 68 | |
| 69 | mutex_lock(&arvo->arvo_lock); |
Stefan Achatz | 1edd5b4 | 2011-06-01 15:54:17 +0200 | [diff] [blame] | 70 | retval = roccat_common_send(usb_dev, ARVO_COMMAND_MODE_KEY, |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 71 | &temp_buf, sizeof(struct arvo_mode_key)); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 72 | mutex_unlock(&arvo->arvo_lock); |
| 73 | if (retval) |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 74 | return retval; |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 75 | |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 76 | return size; |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | static ssize_t arvo_sysfs_show_key_mask(struct device *dev, |
| 80 | struct device_attribute *attr, char *buf) |
| 81 | { |
| 82 | struct arvo_device *arvo = |
| 83 | hid_get_drvdata(dev_get_drvdata(dev->parent->parent)); |
| 84 | struct usb_device *usb_dev = |
| 85 | interface_to_usbdev(to_usb_interface(dev->parent->parent)); |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 86 | struct arvo_key_mask temp_buf; |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 87 | int retval; |
| 88 | |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 89 | mutex_lock(&arvo->arvo_lock); |
Stefan Achatz | 1edd5b4 | 2011-06-01 15:54:17 +0200 | [diff] [blame] | 90 | retval = roccat_common_receive(usb_dev, ARVO_COMMAND_KEY_MASK, |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 91 | &temp_buf, sizeof(struct arvo_key_mask)); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 92 | mutex_unlock(&arvo->arvo_lock); |
| 93 | if (retval) |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 94 | return retval; |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 95 | |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 96 | return snprintf(buf, PAGE_SIZE, "%d\n", temp_buf.key_mask); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | static ssize_t arvo_sysfs_set_key_mask(struct device *dev, |
| 100 | struct device_attribute *attr, char const *buf, size_t size) |
| 101 | { |
| 102 | struct arvo_device *arvo = |
| 103 | hid_get_drvdata(dev_get_drvdata(dev->parent->parent)); |
| 104 | struct usb_device *usb_dev = |
| 105 | interface_to_usbdev(to_usb_interface(dev->parent->parent)); |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 106 | struct arvo_key_mask temp_buf; |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 107 | unsigned long key_mask; |
| 108 | int retval; |
| 109 | |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 110 | retval = strict_strtoul(buf, 10, &key_mask); |
| 111 | if (retval) |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 112 | return retval; |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 113 | |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 114 | temp_buf.command = ARVO_COMMAND_KEY_MASK; |
| 115 | temp_buf.key_mask = key_mask; |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 116 | |
| 117 | mutex_lock(&arvo->arvo_lock); |
Stefan Achatz | 1edd5b4 | 2011-06-01 15:54:17 +0200 | [diff] [blame] | 118 | retval = roccat_common_send(usb_dev, ARVO_COMMAND_KEY_MASK, |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 119 | &temp_buf, sizeof(struct arvo_key_mask)); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 120 | mutex_unlock(&arvo->arvo_lock); |
| 121 | if (retval) |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 122 | return retval; |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 123 | |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 124 | return size; |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | /* retval is 1-5 on success, < 0 on error */ |
| 128 | static int arvo_get_actual_profile(struct usb_device *usb_dev) |
| 129 | { |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 130 | struct arvo_actual_profile temp_buf; |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 131 | int retval; |
| 132 | |
Stefan Achatz | 1edd5b4 | 2011-06-01 15:54:17 +0200 | [diff] [blame] | 133 | retval = roccat_common_receive(usb_dev, ARVO_COMMAND_ACTUAL_PROFILE, |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 134 | &temp_buf, sizeof(struct arvo_actual_profile)); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 135 | |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 136 | if (retval) |
| 137 | return retval; |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 138 | |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 139 | return temp_buf.actual_profile; |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | static ssize_t arvo_sysfs_show_actual_profile(struct device *dev, |
| 143 | struct device_attribute *attr, char *buf) |
| 144 | { |
| 145 | struct arvo_device *arvo = |
| 146 | hid_get_drvdata(dev_get_drvdata(dev->parent->parent)); |
| 147 | |
| 148 | return snprintf(buf, PAGE_SIZE, "%d\n", arvo->actual_profile); |
| 149 | } |
| 150 | |
| 151 | static ssize_t arvo_sysfs_set_actual_profile(struct device *dev, |
| 152 | struct device_attribute *attr, char const *buf, size_t size) |
| 153 | { |
| 154 | struct arvo_device *arvo = |
| 155 | hid_get_drvdata(dev_get_drvdata(dev->parent->parent)); |
| 156 | struct usb_device *usb_dev = |
| 157 | interface_to_usbdev(to_usb_interface(dev->parent->parent)); |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 158 | struct arvo_actual_profile temp_buf; |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 159 | unsigned long profile; |
| 160 | int retval; |
| 161 | |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 162 | retval = strict_strtoul(buf, 10, &profile); |
| 163 | if (retval) |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 164 | return retval; |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 165 | |
Stefan Achatz | 901e64d | 2011-06-12 10:02:44 +0200 | [diff] [blame] | 166 | if (profile < 1 || profile > 5) |
| 167 | return -EINVAL; |
| 168 | |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 169 | temp_buf.command = ARVO_COMMAND_ACTUAL_PROFILE; |
| 170 | temp_buf.actual_profile = profile; |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 171 | |
| 172 | mutex_lock(&arvo->arvo_lock); |
Stefan Achatz | 1edd5b4 | 2011-06-01 15:54:17 +0200 | [diff] [blame] | 173 | retval = roccat_common_send(usb_dev, ARVO_COMMAND_ACTUAL_PROFILE, |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 174 | &temp_buf, sizeof(struct arvo_actual_profile)); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 175 | if (!retval) { |
| 176 | arvo->actual_profile = profile; |
| 177 | retval = size; |
| 178 | } |
| 179 | mutex_unlock(&arvo->arvo_lock); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 180 | return retval; |
| 181 | } |
| 182 | |
| 183 | static ssize_t arvo_sysfs_write(struct file *fp, |
| 184 | struct kobject *kobj, void const *buf, |
| 185 | loff_t off, size_t count, size_t real_size, uint command) |
| 186 | { |
| 187 | struct device *dev = |
| 188 | container_of(kobj, struct device, kobj)->parent->parent; |
| 189 | struct arvo_device *arvo = hid_get_drvdata(dev_get_drvdata(dev)); |
| 190 | struct usb_device *usb_dev = interface_to_usbdev(to_usb_interface(dev)); |
| 191 | int retval; |
| 192 | |
| 193 | if (off != 0 || count != real_size) |
| 194 | return -EINVAL; |
| 195 | |
| 196 | mutex_lock(&arvo->arvo_lock); |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 197 | retval = roccat_common_send(usb_dev, command, buf, real_size); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 198 | mutex_unlock(&arvo->arvo_lock); |
| 199 | |
| 200 | return (retval ? retval : real_size); |
| 201 | } |
| 202 | |
| 203 | static ssize_t arvo_sysfs_read(struct file *fp, |
| 204 | struct kobject *kobj, void *buf, loff_t off, |
| 205 | size_t count, size_t real_size, uint command) |
| 206 | { |
| 207 | struct device *dev = |
| 208 | container_of(kobj, struct device, kobj)->parent->parent; |
| 209 | struct arvo_device *arvo = hid_get_drvdata(dev_get_drvdata(dev)); |
| 210 | struct usb_device *usb_dev = interface_to_usbdev(to_usb_interface(dev)); |
| 211 | int retval; |
| 212 | |
| 213 | if (off >= real_size) |
| 214 | return 0; |
| 215 | |
| 216 | if (off != 0 || count != real_size) |
| 217 | return -EINVAL; |
| 218 | |
| 219 | mutex_lock(&arvo->arvo_lock); |
Stefan Achatz | 5772f63 | 2011-01-30 13:38:23 +0100 | [diff] [blame] | 220 | retval = roccat_common_receive(usb_dev, command, buf, real_size); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 221 | mutex_unlock(&arvo->arvo_lock); |
| 222 | |
| 223 | return (retval ? retval : real_size); |
| 224 | } |
| 225 | |
| 226 | static ssize_t arvo_sysfs_write_button(struct file *fp, |
| 227 | struct kobject *kobj, struct bin_attribute *attr, char *buf, |
| 228 | loff_t off, size_t count) |
| 229 | { |
| 230 | return arvo_sysfs_write(fp, kobj, buf, off, count, |
Stefan Achatz | 1edd5b4 | 2011-06-01 15:54:17 +0200 | [diff] [blame] | 231 | sizeof(struct arvo_button), ARVO_COMMAND_BUTTON); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | static ssize_t arvo_sysfs_read_info(struct file *fp, |
| 235 | struct kobject *kobj, struct bin_attribute *attr, char *buf, |
| 236 | loff_t off, size_t count) |
| 237 | { |
| 238 | return arvo_sysfs_read(fp, kobj, buf, off, count, |
Stefan Achatz | 1edd5b4 | 2011-06-01 15:54:17 +0200 | [diff] [blame] | 239 | sizeof(struct arvo_info), ARVO_COMMAND_INFO); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 240 | } |
| 241 | |
| 242 | |
| 243 | static struct device_attribute arvo_attributes[] = { |
| 244 | __ATTR(mode_key, 0660, |
| 245 | arvo_sysfs_show_mode_key, arvo_sysfs_set_mode_key), |
| 246 | __ATTR(key_mask, 0660, |
| 247 | arvo_sysfs_show_key_mask, arvo_sysfs_set_key_mask), |
| 248 | __ATTR(actual_profile, 0660, |
| 249 | arvo_sysfs_show_actual_profile, |
| 250 | arvo_sysfs_set_actual_profile), |
| 251 | __ATTR_NULL |
| 252 | }; |
| 253 | |
| 254 | static struct bin_attribute arvo_bin_attributes[] = { |
| 255 | { |
| 256 | .attr = { .name = "button", .mode = 0220 }, |
| 257 | .size = sizeof(struct arvo_button), |
| 258 | .write = arvo_sysfs_write_button |
| 259 | }, |
| 260 | { |
| 261 | .attr = { .name = "info", .mode = 0440 }, |
| 262 | .size = sizeof(struct arvo_info), |
| 263 | .read = arvo_sysfs_read_info |
| 264 | }, |
| 265 | __ATTR_NULL |
| 266 | }; |
| 267 | |
| 268 | static int arvo_init_arvo_device_struct(struct usb_device *usb_dev, |
| 269 | struct arvo_device *arvo) |
| 270 | { |
| 271 | int retval; |
| 272 | |
| 273 | mutex_init(&arvo->arvo_lock); |
| 274 | |
| 275 | retval = arvo_get_actual_profile(usb_dev); |
| 276 | if (retval < 0) |
| 277 | return retval; |
| 278 | arvo->actual_profile = retval; |
| 279 | |
| 280 | return 0; |
| 281 | } |
| 282 | |
| 283 | static int arvo_init_specials(struct hid_device *hdev) |
| 284 | { |
| 285 | struct usb_interface *intf = to_usb_interface(hdev->dev.parent); |
| 286 | struct usb_device *usb_dev = interface_to_usbdev(intf); |
| 287 | struct arvo_device *arvo; |
| 288 | int retval; |
| 289 | |
| 290 | if (intf->cur_altsetting->desc.bInterfaceProtocol |
| 291 | == USB_INTERFACE_PROTOCOL_KEYBOARD) { |
| 292 | hid_set_drvdata(hdev, NULL); |
| 293 | return 0; |
| 294 | } |
| 295 | |
| 296 | arvo = kzalloc(sizeof(*arvo), GFP_KERNEL); |
| 297 | if (!arvo) { |
Stefan Achatz | a28764e | 2011-01-30 13:38:21 +0100 | [diff] [blame] | 298 | hid_err(hdev, "can't alloc device descriptor\n"); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 299 | return -ENOMEM; |
| 300 | } |
| 301 | hid_set_drvdata(hdev, arvo); |
| 302 | |
| 303 | retval = arvo_init_arvo_device_struct(usb_dev, arvo); |
| 304 | if (retval) { |
Stefan Achatz | a28764e | 2011-01-30 13:38:21 +0100 | [diff] [blame] | 305 | hid_err(hdev, "couldn't init struct arvo_device\n"); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 306 | goto exit_free; |
| 307 | } |
| 308 | |
Stefan Achatz | 8211e46 | 2011-01-30 13:38:25 +0100 | [diff] [blame] | 309 | retval = roccat_connect(arvo_class, hdev, |
| 310 | sizeof(struct arvo_roccat_report)); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 311 | if (retval < 0) { |
Stefan Achatz | a28764e | 2011-01-30 13:38:21 +0100 | [diff] [blame] | 312 | hid_err(hdev, "couldn't init char dev\n"); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 313 | } else { |
| 314 | arvo->chrdev_minor = retval; |
| 315 | arvo->roccat_claimed = 1; |
| 316 | } |
| 317 | |
| 318 | return 0; |
| 319 | exit_free: |
| 320 | kfree(arvo); |
| 321 | return retval; |
| 322 | } |
| 323 | |
| 324 | static void arvo_remove_specials(struct hid_device *hdev) |
| 325 | { |
| 326 | struct usb_interface *intf = to_usb_interface(hdev->dev.parent); |
| 327 | struct arvo_device *arvo; |
| 328 | |
| 329 | if (intf->cur_altsetting->desc.bInterfaceProtocol |
| 330 | == USB_INTERFACE_PROTOCOL_KEYBOARD) |
| 331 | return; |
| 332 | |
| 333 | arvo = hid_get_drvdata(hdev); |
| 334 | if (arvo->roccat_claimed) |
| 335 | roccat_disconnect(arvo->chrdev_minor); |
| 336 | kfree(arvo); |
| 337 | } |
| 338 | |
| 339 | static int arvo_probe(struct hid_device *hdev, |
| 340 | const struct hid_device_id *id) |
| 341 | { |
| 342 | int retval; |
| 343 | |
| 344 | retval = hid_parse(hdev); |
| 345 | if (retval) { |
Stefan Achatz | a28764e | 2011-01-30 13:38:21 +0100 | [diff] [blame] | 346 | hid_err(hdev, "parse failed\n"); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 347 | goto exit; |
| 348 | } |
| 349 | |
| 350 | retval = hid_hw_start(hdev, HID_CONNECT_DEFAULT); |
| 351 | if (retval) { |
Stefan Achatz | a28764e | 2011-01-30 13:38:21 +0100 | [diff] [blame] | 352 | hid_err(hdev, "hw start failed\n"); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 353 | goto exit; |
| 354 | } |
| 355 | |
| 356 | retval = arvo_init_specials(hdev); |
| 357 | if (retval) { |
Stefan Achatz | a28764e | 2011-01-30 13:38:21 +0100 | [diff] [blame] | 358 | hid_err(hdev, "couldn't install keyboard\n"); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 359 | goto exit_stop; |
| 360 | } |
| 361 | |
| 362 | return 0; |
| 363 | |
| 364 | exit_stop: |
| 365 | hid_hw_stop(hdev); |
| 366 | exit: |
| 367 | return retval; |
| 368 | } |
| 369 | |
| 370 | static void arvo_remove(struct hid_device *hdev) |
| 371 | { |
| 372 | arvo_remove_specials(hdev); |
| 373 | hid_hw_stop(hdev); |
| 374 | } |
| 375 | |
| 376 | static void arvo_report_to_chrdev(struct arvo_device const *arvo, |
| 377 | u8 const *data) |
| 378 | { |
| 379 | struct arvo_special_report const *special_report; |
| 380 | struct arvo_roccat_report roccat_report; |
| 381 | |
| 382 | special_report = (struct arvo_special_report const *)data; |
| 383 | |
| 384 | roccat_report.profile = arvo->actual_profile; |
| 385 | roccat_report.button = special_report->event & |
| 386 | ARVO_SPECIAL_REPORT_EVENT_MASK_BUTTON; |
| 387 | if ((special_report->event & ARVO_SPECIAL_REPORT_EVENT_MASK_ACTION) == |
| 388 | ARVO_SPECIAL_REPORT_EVENT_ACTION_PRESS) |
| 389 | roccat_report.action = ARVO_ROCCAT_REPORT_ACTION_PRESS; |
| 390 | else |
| 391 | roccat_report.action = ARVO_ROCCAT_REPORT_ACTION_RELEASE; |
| 392 | |
Stefan Achatz | 8211e46 | 2011-01-30 13:38:25 +0100 | [diff] [blame] | 393 | roccat_report_event(arvo->chrdev_minor, |
| 394 | (uint8_t const *)&roccat_report); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 395 | } |
| 396 | |
| 397 | static int arvo_raw_event(struct hid_device *hdev, |
| 398 | struct hid_report *report, u8 *data, int size) |
| 399 | { |
| 400 | struct arvo_device *arvo = hid_get_drvdata(hdev); |
| 401 | |
| 402 | if (size != 3) |
| 403 | return 0; |
| 404 | |
Stefan Achatz | 901e64d | 2011-06-12 10:02:44 +0200 | [diff] [blame] | 405 | if (arvo && arvo->roccat_claimed) |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 406 | arvo_report_to_chrdev(arvo, data); |
| 407 | |
| 408 | return 0; |
| 409 | } |
| 410 | |
| 411 | static const struct hid_device_id arvo_devices[] = { |
| 412 | { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_ARVO) }, |
| 413 | { } |
| 414 | }; |
| 415 | |
| 416 | MODULE_DEVICE_TABLE(hid, arvo_devices); |
| 417 | |
| 418 | static struct hid_driver arvo_driver = { |
| 419 | .name = "arvo", |
| 420 | .id_table = arvo_devices, |
| 421 | .probe = arvo_probe, |
| 422 | .remove = arvo_remove, |
| 423 | .raw_event = arvo_raw_event |
| 424 | }; |
| 425 | |
| 426 | static int __init arvo_init(void) |
| 427 | { |
| 428 | int retval; |
| 429 | |
| 430 | arvo_class = class_create(THIS_MODULE, "arvo"); |
| 431 | if (IS_ERR(arvo_class)) |
| 432 | return PTR_ERR(arvo_class); |
| 433 | arvo_class->dev_attrs = arvo_attributes; |
| 434 | arvo_class->dev_bin_attrs = arvo_bin_attributes; |
| 435 | |
| 436 | retval = hid_register_driver(&arvo_driver); |
| 437 | if (retval) |
| 438 | class_destroy(arvo_class); |
| 439 | return retval; |
| 440 | } |
| 441 | |
| 442 | static void __exit arvo_exit(void) |
| 443 | { |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 444 | hid_unregister_driver(&arvo_driver); |
Stefan Achatz | 74b643d | 2011-01-30 13:38:27 +0100 | [diff] [blame] | 445 | class_destroy(arvo_class); |
Stefan Achatz | e68cc603 | 2011-01-06 09:00:34 +0100 | [diff] [blame] | 446 | } |
| 447 | |
| 448 | module_init(arvo_init); |
| 449 | module_exit(arvo_exit); |
| 450 | |
| 451 | MODULE_AUTHOR("Stefan Achatz"); |
| 452 | MODULE_DESCRIPTION("USB Roccat Arvo driver"); |
| 453 | MODULE_LICENSE("GPL v2"); |