diff options
| -rw-r--r-- | drivers/hid/Kconfig | 1 | ||||
| -rw-r--r-- | drivers/hid/hid-apple.c | 6 | ||||
| -rw-r--r-- | drivers/hid/hid-core.c | 3 | ||||
| -rw-r--r-- | drivers/hid/hid-ids.h | 6 | ||||
| -rw-r--r-- | drivers/hid/hid-wiimote.c | 277 | ||||
| -rw-r--r-- | drivers/hid/usbhid/hid-quirks.c | 1 |
6 files changed, 200 insertions, 94 deletions
diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig index 306b15f39c9c..1130a8987125 100644 --- a/drivers/hid/Kconfig +++ b/drivers/hid/Kconfig | |||
| @@ -589,6 +589,7 @@ config HID_WACOM_POWER_SUPPLY | |||
| 589 | config HID_WIIMOTE | 589 | config HID_WIIMOTE |
| 590 | tristate "Nintendo Wii Remote support" | 590 | tristate "Nintendo Wii Remote support" |
| 591 | depends on BT_HIDP | 591 | depends on BT_HIDP |
| 592 | depends on LEDS_CLASS | ||
| 592 | ---help--- | 593 | ---help--- |
| 593 | Support for the Nintendo Wii Remote bluetooth device. | 594 | Support for the Nintendo Wii Remote bluetooth device. |
| 594 | 595 | ||
diff --git a/drivers/hid/hid-apple.c b/drivers/hid/hid-apple.c index b85744fe8464..18b3bc646bf3 100644 --- a/drivers/hid/hid-apple.c +++ b/drivers/hid/hid-apple.c | |||
| @@ -444,6 +444,12 @@ static const struct hid_device_id apple_devices[] = { | |||
| 444 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_JIS), | 444 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_JIS), |
| 445 | .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN | | 445 | .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN | |
| 446 | APPLE_RDESC_JIS }, | 446 | APPLE_RDESC_JIS }, |
| 447 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_REVB_ANSI), | ||
| 448 | .driver_data = APPLE_HAS_FN }, | ||
| 449 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_REVB_ISO), | ||
| 450 | .driver_data = APPLE_HAS_FN | APPLE_ISO_KEYBOARD }, | ||
| 451 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_REVB_JIS), | ||
| 452 | .driver_data = APPLE_HAS_FN }, | ||
| 447 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_ANSI), | 453 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_ANSI), |
| 448 | .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN }, | 454 | .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN }, |
| 449 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_ISO), | 455 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_ISO), |
diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c index 1a5cf0c9cfca..242353df3dc4 100644 --- a/drivers/hid/hid-core.c +++ b/drivers/hid/hid-core.c | |||
| @@ -1340,6 +1340,9 @@ static const struct hid_device_id hid_have_special_driver[] = { | |||
| 1340 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_ANSI) }, | 1340 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_ANSI) }, |
| 1341 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_ISO) }, | 1341 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_ISO) }, |
| 1342 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_JIS) }, | 1342 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_JIS) }, |
| 1343 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_REVB_ANSI) }, | ||
| 1344 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_REVB_ISO) }, | ||
| 1345 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_REVB_JIS) }, | ||
| 1343 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_ANSI) }, | 1346 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_ANSI) }, |
| 1344 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_ISO) }, | 1347 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_ISO) }, |
| 1345 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_JIS) }, | 1348 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_JIS) }, |
diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h index db63ccf21cc8..7d27d2b0445a 100644 --- a/drivers/hid/hid-ids.h +++ b/drivers/hid/hid-ids.h | |||
| @@ -109,6 +109,9 @@ | |||
| 109 | #define USB_DEVICE_ID_APPLE_WELLSPRING5_ANSI 0x0245 | 109 | #define USB_DEVICE_ID_APPLE_WELLSPRING5_ANSI 0x0245 |
| 110 | #define USB_DEVICE_ID_APPLE_WELLSPRING5_ISO 0x0246 | 110 | #define USB_DEVICE_ID_APPLE_WELLSPRING5_ISO 0x0246 |
| 111 | #define USB_DEVICE_ID_APPLE_WELLSPRING5_JIS 0x0247 | 111 | #define USB_DEVICE_ID_APPLE_WELLSPRING5_JIS 0x0247 |
| 112 | #define USB_DEVICE_ID_APPLE_ALU_REVB_ANSI 0x024f | ||
| 113 | #define USB_DEVICE_ID_APPLE_ALU_REVB_ISO 0x0250 | ||
| 114 | #define USB_DEVICE_ID_APPLE_ALU_REVB_JIS 0x0251 | ||
| 112 | #define USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_ANSI 0x0239 | 115 | #define USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_ANSI 0x0239 |
| 113 | #define USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_ISO 0x023a | 116 | #define USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_ISO 0x023a |
| 114 | #define USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_JIS 0x023b | 117 | #define USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_JIS 0x023b |
| @@ -576,6 +579,9 @@ | |||
| 576 | #define USB_DEVICE_ID_SAMSUNG_IR_REMOTE 0x0001 | 579 | #define USB_DEVICE_ID_SAMSUNG_IR_REMOTE 0x0001 |
| 577 | #define USB_DEVICE_ID_SAMSUNG_WIRELESS_KBD_MOUSE 0x0600 | 580 | #define USB_DEVICE_ID_SAMSUNG_WIRELESS_KBD_MOUSE 0x0600 |
| 578 | 581 | ||
| 582 | #define USB_VENDOR_ID_SIGMA_MICRO 0x1c4f | ||
| 583 | #define USB_DEVICE_ID_SIGMA_MICRO_KEYBOARD 0x0002 | ||
| 584 | |||
| 579 | #define USB_VENDOR_ID_SKYCABLE 0x1223 | 585 | #define USB_VENDOR_ID_SKYCABLE 0x1223 |
| 580 | #define USB_DEVICE_ID_SKYCABLE_WIRELESS_PRESENTER 0x3F07 | 586 | #define USB_DEVICE_ID_SKYCABLE_WIRELESS_PRESENTER 0x3F07 |
| 581 | 587 | ||
diff --git a/drivers/hid/hid-wiimote.c b/drivers/hid/hid-wiimote.c index a594383ce03d..85a02e5f9fe8 100644 --- a/drivers/hid/hid-wiimote.c +++ b/drivers/hid/hid-wiimote.c | |||
| @@ -10,10 +10,10 @@ | |||
| 10 | * any later version. | 10 | * any later version. |
| 11 | */ | 11 | */ |
| 12 | 12 | ||
| 13 | #include <linux/atomic.h> | ||
| 14 | #include <linux/device.h> | 13 | #include <linux/device.h> |
| 15 | #include <linux/hid.h> | 14 | #include <linux/hid.h> |
| 16 | #include <linux/input.h> | 15 | #include <linux/input.h> |
| 16 | #include <linux/leds.h> | ||
| 17 | #include <linux/module.h> | 17 | #include <linux/module.h> |
| 18 | #include <linux/spinlock.h> | 18 | #include <linux/spinlock.h> |
| 19 | #include "hid-ids.h" | 19 | #include "hid-ids.h" |
| @@ -33,9 +33,9 @@ struct wiimote_state { | |||
| 33 | }; | 33 | }; |
| 34 | 34 | ||
| 35 | struct wiimote_data { | 35 | struct wiimote_data { |
| 36 | atomic_t ready; | ||
| 37 | struct hid_device *hdev; | 36 | struct hid_device *hdev; |
| 38 | struct input_dev *input; | 37 | struct input_dev *input; |
| 38 | struct led_classdev *leds[4]; | ||
| 39 | 39 | ||
| 40 | spinlock_t qlock; | 40 | spinlock_t qlock; |
| 41 | __u8 head; | 41 | __u8 head; |
| @@ -53,8 +53,15 @@ struct wiimote_data { | |||
| 53 | #define WIIPROTO_FLAGS_LEDS (WIIPROTO_FLAG_LED1 | WIIPROTO_FLAG_LED2 | \ | 53 | #define WIIPROTO_FLAGS_LEDS (WIIPROTO_FLAG_LED1 | WIIPROTO_FLAG_LED2 | \ |
| 54 | WIIPROTO_FLAG_LED3 | WIIPROTO_FLAG_LED4) | 54 | WIIPROTO_FLAG_LED3 | WIIPROTO_FLAG_LED4) |
| 55 | 55 | ||
| 56 | /* return flag for led \num */ | ||
| 57 | #define WIIPROTO_FLAG_LED(num) (WIIPROTO_FLAG_LED1 << (num - 1)) | ||
| 58 | |||
| 56 | enum wiiproto_reqs { | 59 | enum wiiproto_reqs { |
| 60 | WIIPROTO_REQ_NULL = 0x0, | ||
| 57 | WIIPROTO_REQ_LED = 0x11, | 61 | WIIPROTO_REQ_LED = 0x11, |
| 62 | WIIPROTO_REQ_DRM = 0x12, | ||
| 63 | WIIPROTO_REQ_STATUS = 0x20, | ||
| 64 | WIIPROTO_REQ_RETURN = 0x22, | ||
| 58 | WIIPROTO_REQ_DRM_K = 0x30, | 65 | WIIPROTO_REQ_DRM_K = 0x30, |
| 59 | }; | 66 | }; |
| 60 | 67 | ||
| @@ -87,9 +94,6 @@ static __u16 wiiproto_keymap[] = { | |||
| 87 | BTN_MODE, /* WIIPROTO_KEY_HOME */ | 94 | BTN_MODE, /* WIIPROTO_KEY_HOME */ |
| 88 | }; | 95 | }; |
| 89 | 96 | ||
| 90 | #define dev_to_wii(pdev) hid_get_drvdata(container_of(pdev, struct hid_device, \ | ||
| 91 | dev)) | ||
| 92 | |||
| 93 | static ssize_t wiimote_hid_send(struct hid_device *hdev, __u8 *buffer, | 97 | static ssize_t wiimote_hid_send(struct hid_device *hdev, __u8 *buffer, |
| 94 | size_t count) | 98 | size_t count) |
| 95 | { | 99 | { |
| @@ -192,66 +196,96 @@ static void wiiproto_req_leds(struct wiimote_data *wdata, int leds) | |||
| 192 | wiimote_queue(wdata, cmd, sizeof(cmd)); | 196 | wiimote_queue(wdata, cmd, sizeof(cmd)); |
| 193 | } | 197 | } |
| 194 | 198 | ||
| 195 | #define wiifs_led_show_set(num) \ | 199 | /* |
| 196 | static ssize_t wiifs_led_show_##num(struct device *dev, \ | 200 | * Check what peripherals of the wiimote are currently |
| 197 | struct device_attribute *attr, char *buf) \ | 201 | * active and select a proper DRM that supports all of |
| 198 | { \ | 202 | * the requested data inputs. |
| 199 | struct wiimote_data *wdata = dev_to_wii(dev); \ | 203 | */ |
| 200 | unsigned long flags; \ | 204 | static __u8 select_drm(struct wiimote_data *wdata) |
| 201 | int state; \ | 205 | { |
| 202 | \ | 206 | return WIIPROTO_REQ_DRM_K; |
| 203 | if (!atomic_read(&wdata->ready)) \ | 207 | } |
| 204 | return -EBUSY; \ | 208 | |
| 205 | \ | 209 | static void wiiproto_req_drm(struct wiimote_data *wdata, __u8 drm) |
| 206 | spin_lock_irqsave(&wdata->state.lock, flags); \ | 210 | { |
| 207 | state = !!(wdata->state.flags & WIIPROTO_FLAG_LED##num); \ | 211 | __u8 cmd[3]; |
| 208 | spin_unlock_irqrestore(&wdata->state.lock, flags); \ | 212 | |
| 209 | \ | 213 | if (drm == WIIPROTO_REQ_NULL) |
| 210 | return sprintf(buf, "%d\n", state); \ | 214 | drm = select_drm(wdata); |
| 211 | } \ | 215 | |
| 212 | static ssize_t wiifs_led_set_##num(struct device *dev, \ | 216 | cmd[0] = WIIPROTO_REQ_DRM; |
| 213 | struct device_attribute *attr, const char *buf, size_t count) \ | 217 | cmd[1] = 0; |
| 214 | { \ | 218 | cmd[2] = drm; |
| 215 | struct wiimote_data *wdata = dev_to_wii(dev); \ | 219 | |
| 216 | int tmp = simple_strtoul(buf, NULL, 10); \ | 220 | wiimote_queue(wdata, cmd, sizeof(cmd)); |
| 217 | unsigned long flags; \ | 221 | } |
| 218 | __u8 state; \ | 222 | |
| 219 | \ | 223 | static enum led_brightness wiimote_leds_get(struct led_classdev *led_dev) |
| 220 | if (!atomic_read(&wdata->ready)) \ | 224 | { |
| 221 | return -EBUSY; \ | 225 | struct wiimote_data *wdata; |
| 222 | \ | 226 | struct device *dev = led_dev->dev->parent; |
| 223 | spin_lock_irqsave(&wdata->state.lock, flags); \ | 227 | int i; |
| 224 | \ | 228 | unsigned long flags; |
| 225 | state = wdata->state.flags; \ | 229 | bool value = false; |
| 226 | \ | 230 | |
| 227 | if (tmp) \ | 231 | wdata = hid_get_drvdata(container_of(dev, struct hid_device, dev)); |
| 228 | wiiproto_req_leds(wdata, state | WIIPROTO_FLAG_LED##num);\ | 232 | |
| 229 | else \ | 233 | for (i = 0; i < 4; ++i) { |
| 230 | wiiproto_req_leds(wdata, state & ~WIIPROTO_FLAG_LED##num);\ | 234 | if (wdata->leds[i] == led_dev) { |
| 231 | \ | 235 | spin_lock_irqsave(&wdata->state.lock, flags); |
| 232 | spin_unlock_irqrestore(&wdata->state.lock, flags); \ | 236 | value = wdata->state.flags & WIIPROTO_FLAG_LED(i + 1); |
| 233 | \ | 237 | spin_unlock_irqrestore(&wdata->state.lock, flags); |
| 234 | return count; \ | 238 | break; |
| 235 | } \ | 239 | } |
| 236 | static DEVICE_ATTR(led##num, S_IRUGO | S_IWUSR, wiifs_led_show_##num, \ | 240 | } |
| 237 | wiifs_led_set_##num) | 241 | |
| 238 | 242 | return value ? LED_FULL : LED_OFF; | |
| 239 | wiifs_led_show_set(1); | 243 | } |
| 240 | wiifs_led_show_set(2); | 244 | |
| 241 | wiifs_led_show_set(3); | 245 | static void wiimote_leds_set(struct led_classdev *led_dev, |
| 242 | wiifs_led_show_set(4); | 246 | enum led_brightness value) |
| 247 | { | ||
| 248 | struct wiimote_data *wdata; | ||
| 249 | struct device *dev = led_dev->dev->parent; | ||
| 250 | int i; | ||
| 251 | unsigned long flags; | ||
| 252 | __u8 state, flag; | ||
| 253 | |||
| 254 | wdata = hid_get_drvdata(container_of(dev, struct hid_device, dev)); | ||
| 255 | |||
| 256 | for (i = 0; i < 4; ++i) { | ||
| 257 | if (wdata->leds[i] == led_dev) { | ||
| 258 | flag = WIIPROTO_FLAG_LED(i + 1); | ||
| 259 | spin_lock_irqsave(&wdata->state.lock, flags); | ||
| 260 | state = wdata->state.flags; | ||
| 261 | if (value == LED_OFF) | ||
| 262 | wiiproto_req_leds(wdata, state & ~flag); | ||
| 263 | else | ||
| 264 | wiiproto_req_leds(wdata, state | flag); | ||
| 265 | spin_unlock_irqrestore(&wdata->state.lock, flags); | ||
| 266 | break; | ||
| 267 | } | ||
| 268 | } | ||
| 269 | } | ||
| 243 | 270 | ||
| 244 | static int wiimote_input_event(struct input_dev *dev, unsigned int type, | 271 | static int wiimote_input_event(struct input_dev *dev, unsigned int type, |
| 245 | unsigned int code, int value) | 272 | unsigned int code, int value) |
| 246 | { | 273 | { |
| 274 | return 0; | ||
| 275 | } | ||
| 276 | |||
| 277 | static int wiimote_input_open(struct input_dev *dev) | ||
| 278 | { | ||
| 247 | struct wiimote_data *wdata = input_get_drvdata(dev); | 279 | struct wiimote_data *wdata = input_get_drvdata(dev); |
| 248 | 280 | ||
| 249 | if (!atomic_read(&wdata->ready)) | 281 | return hid_hw_open(wdata->hdev); |
| 250 | return -EBUSY; | 282 | } |
| 251 | /* smp_rmb: Make sure wdata->xy is available when wdata->ready is 1 */ | ||
| 252 | smp_rmb(); | ||
| 253 | 283 | ||
| 254 | return 0; | 284 | static void wiimote_input_close(struct input_dev *dev) |
| 285 | { | ||
| 286 | struct wiimote_data *wdata = input_get_drvdata(dev); | ||
| 287 | |||
| 288 | hid_hw_close(wdata->hdev); | ||
| 255 | } | 289 | } |
| 256 | 290 | ||
| 257 | static void handler_keys(struct wiimote_data *wdata, const __u8 *payload) | 291 | static void handler_keys(struct wiimote_data *wdata, const __u8 *payload) |
| @@ -281,6 +315,26 @@ static void handler_keys(struct wiimote_data *wdata, const __u8 *payload) | |||
| 281 | input_sync(wdata->input); | 315 | input_sync(wdata->input); |
| 282 | } | 316 | } |
| 283 | 317 | ||
| 318 | static void handler_status(struct wiimote_data *wdata, const __u8 *payload) | ||
| 319 | { | ||
| 320 | handler_keys(wdata, payload); | ||
| 321 | |||
| 322 | /* on status reports the drm is reset so we need to resend the drm */ | ||
| 323 | wiiproto_req_drm(wdata, WIIPROTO_REQ_NULL); | ||
| 324 | } | ||
| 325 | |||
| 326 | static void handler_return(struct wiimote_data *wdata, const __u8 *payload) | ||
| 327 | { | ||
| 328 | __u8 err = payload[3]; | ||
| 329 | __u8 cmd = payload[2]; | ||
| 330 | |||
| 331 | handler_keys(wdata, payload); | ||
| 332 | |||
| 333 | if (err) | ||
| 334 | hid_warn(wdata->hdev, "Remote error %hhu on req %hhu\n", err, | ||
| 335 | cmd); | ||
| 336 | } | ||
| 337 | |||
| 284 | struct wiiproto_handler { | 338 | struct wiiproto_handler { |
| 285 | __u8 id; | 339 | __u8 id; |
| 286 | size_t size; | 340 | size_t size; |
| @@ -288,6 +342,8 @@ struct wiiproto_handler { | |||
| 288 | }; | 342 | }; |
| 289 | 343 | ||
| 290 | static struct wiiproto_handler handlers[] = { | 344 | static struct wiiproto_handler handlers[] = { |
| 345 | { .id = WIIPROTO_REQ_STATUS, .size = 6, .func = handler_status }, | ||
| 346 | { .id = WIIPROTO_REQ_RETURN, .size = 4, .func = handler_return }, | ||
| 291 | { .id = WIIPROTO_REQ_DRM_K, .size = 2, .func = handler_keys }, | 347 | { .id = WIIPROTO_REQ_DRM_K, .size = 2, .func = handler_keys }, |
| 292 | { .id = 0 } | 348 | { .id = 0 } |
| 293 | }; | 349 | }; |
| @@ -300,11 +356,6 @@ static int wiimote_hid_event(struct hid_device *hdev, struct hid_report *report, | |||
| 300 | int i; | 356 | int i; |
| 301 | unsigned long flags; | 357 | unsigned long flags; |
| 302 | 358 | ||
| 303 | if (!atomic_read(&wdata->ready)) | ||
| 304 | return -EBUSY; | ||
| 305 | /* smp_rmb: Make sure wdata->xy is available when wdata->ready is 1 */ | ||
| 306 | smp_rmb(); | ||
| 307 | |||
| 308 | if (size < 1) | 359 | if (size < 1) |
| 309 | return -EINVAL; | 360 | return -EINVAL; |
| 310 | 361 | ||
| @@ -321,6 +372,58 @@ static int wiimote_hid_event(struct hid_device *hdev, struct hid_report *report, | |||
| 321 | return 0; | 372 | return 0; |
| 322 | } | 373 | } |
| 323 | 374 | ||
| 375 | static void wiimote_leds_destroy(struct wiimote_data *wdata) | ||
| 376 | { | ||
| 377 | int i; | ||
| 378 | struct led_classdev *led; | ||
| 379 | |||
| 380 | for (i = 0; i < 4; ++i) { | ||
| 381 | if (wdata->leds[i]) { | ||
| 382 | led = wdata->leds[i]; | ||
| 383 | wdata->leds[i] = NULL; | ||
| 384 | led_classdev_unregister(led); | ||
| 385 | kfree(led); | ||
| 386 | } | ||
| 387 | } | ||
| 388 | } | ||
| 389 | |||
| 390 | static int wiimote_leds_create(struct wiimote_data *wdata) | ||
| 391 | { | ||
| 392 | int i, ret; | ||
| 393 | struct device *dev = &wdata->hdev->dev; | ||
| 394 | size_t namesz = strlen(dev_name(dev)) + 9; | ||
| 395 | struct led_classdev *led; | ||
| 396 | char *name; | ||
| 397 | |||
| 398 | for (i = 0; i < 4; ++i) { | ||
| 399 | led = kzalloc(sizeof(struct led_classdev) + namesz, GFP_KERNEL); | ||
| 400 | if (!led) { | ||
| 401 | ret = -ENOMEM; | ||
| 402 | goto err; | ||
| 403 | } | ||
| 404 | name = (void*)&led[1]; | ||
| 405 | snprintf(name, namesz, "%s:blue:p%d", dev_name(dev), i); | ||
| 406 | led->name = name; | ||
| 407 | led->brightness = 0; | ||
| 408 | led->max_brightness = 1; | ||
| 409 | led->brightness_get = wiimote_leds_get; | ||
| 410 | led->brightness_set = wiimote_leds_set; | ||
| 411 | |||
| 412 | ret = led_classdev_register(dev, led); | ||
| 413 | if (ret) { | ||
| 414 | kfree(led); | ||
| 415 | goto err; | ||
| 416 | } | ||
| 417 | wdata->leds[i] = led; | ||
| 418 | } | ||
| 419 | |||
| 420 | return 0; | ||
| 421 | |||
| 422 | err: | ||
| 423 | wiimote_leds_destroy(wdata); | ||
| 424 | return ret; | ||
| 425 | } | ||
| 426 | |||
| 324 | static struct wiimote_data *wiimote_create(struct hid_device *hdev) | 427 | static struct wiimote_data *wiimote_create(struct hid_device *hdev) |
| 325 | { | 428 | { |
| 326 | struct wiimote_data *wdata; | 429 | struct wiimote_data *wdata; |
| @@ -341,6 +444,8 @@ static struct wiimote_data *wiimote_create(struct hid_device *hdev) | |||
| 341 | 444 | ||
| 342 | input_set_drvdata(wdata->input, wdata); | 445 | input_set_drvdata(wdata->input, wdata); |
| 343 | wdata->input->event = wiimote_input_event; | 446 | wdata->input->event = wiimote_input_event; |
| 447 | wdata->input->open = wiimote_input_open; | ||
| 448 | wdata->input->close = wiimote_input_close; | ||
| 344 | wdata->input->dev.parent = &wdata->hdev->dev; | 449 | wdata->input->dev.parent = &wdata->hdev->dev; |
| 345 | wdata->input->id.bustype = wdata->hdev->bus; | 450 | wdata->input->id.bustype = wdata->hdev->bus; |
| 346 | wdata->input->id.vendor = wdata->hdev->vendor; | 451 | wdata->input->id.vendor = wdata->hdev->vendor; |
| @@ -362,6 +467,12 @@ static struct wiimote_data *wiimote_create(struct hid_device *hdev) | |||
| 362 | 467 | ||
| 363 | static void wiimote_destroy(struct wiimote_data *wdata) | 468 | static void wiimote_destroy(struct wiimote_data *wdata) |
| 364 | { | 469 | { |
| 470 | wiimote_leds_destroy(wdata); | ||
| 471 | |||
| 472 | input_unregister_device(wdata->input); | ||
| 473 | cancel_work_sync(&wdata->worker); | ||
| 474 | hid_hw_stop(wdata->hdev); | ||
| 475 | |||
| 365 | kfree(wdata); | 476 | kfree(wdata); |
| 366 | } | 477 | } |
| 367 | 478 | ||
| @@ -377,19 +488,6 @@ static int wiimote_hid_probe(struct hid_device *hdev, | |||
| 377 | return -ENOMEM; | 488 | return -ENOMEM; |
| 378 | } | 489 | } |
| 379 | 490 | ||
| 380 | ret = device_create_file(&hdev->dev, &dev_attr_led1); | ||
| 381 | if (ret) | ||
| 382 | goto err; | ||
| 383 | ret = device_create_file(&hdev->dev, &dev_attr_led2); | ||
| 384 | if (ret) | ||
| 385 | goto err; | ||
| 386 | ret = device_create_file(&hdev->dev, &dev_attr_led3); | ||
| 387 | if (ret) | ||
| 388 | goto err; | ||
| 389 | ret = device_create_file(&hdev->dev, &dev_attr_led4); | ||
| 390 | if (ret) | ||
| 391 | goto err; | ||
| 392 | |||
| 393 | ret = hid_parse(hdev); | 491 | ret = hid_parse(hdev); |
| 394 | if (ret) { | 492 | if (ret) { |
| 395 | hid_err(hdev, "HID parse failed\n"); | 493 | hid_err(hdev, "HID parse failed\n"); |
| @@ -408,9 +506,10 @@ static int wiimote_hid_probe(struct hid_device *hdev, | |||
| 408 | goto err_stop; | 506 | goto err_stop; |
| 409 | } | 507 | } |
| 410 | 508 | ||
| 411 | /* smp_wmb: Write wdata->xy first before wdata->ready is set to 1 */ | 509 | ret = wiimote_leds_create(wdata); |
| 412 | smp_wmb(); | 510 | if (ret) |
| 413 | atomic_set(&wdata->ready, 1); | 511 | goto err_free; |
| 512 | |||
| 414 | hid_info(hdev, "New device registered\n"); | 513 | hid_info(hdev, "New device registered\n"); |
| 415 | 514 | ||
| 416 | /* by default set led1 after device initialization */ | 515 | /* by default set led1 after device initialization */ |
| @@ -420,15 +519,15 @@ static int wiimote_hid_probe(struct hid_device *hdev, | |||
| 420 | 519 | ||
| 421 | return 0; | 520 | return 0; |
| 422 | 521 | ||
| 522 | err_free: | ||
| 523 | wiimote_destroy(wdata); | ||
| 524 | return ret; | ||
| 525 | |||
| 423 | err_stop: | 526 | err_stop: |
| 424 | hid_hw_stop(hdev); | 527 | hid_hw_stop(hdev); |
| 425 | err: | 528 | err: |
| 426 | input_free_device(wdata->input); | 529 | input_free_device(wdata->input); |
| 427 | device_remove_file(&hdev->dev, &dev_attr_led1); | 530 | kfree(wdata); |
| 428 | device_remove_file(&hdev->dev, &dev_attr_led2); | ||
| 429 | device_remove_file(&hdev->dev, &dev_attr_led3); | ||
| 430 | device_remove_file(&hdev->dev, &dev_attr_led4); | ||
| 431 | wiimote_destroy(wdata); | ||
| 432 | return ret; | 531 | return ret; |
| 433 | } | 532 | } |
| 434 | 533 | ||
| @@ -437,16 +536,6 @@ static void wiimote_hid_remove(struct hid_device *hdev) | |||
| 437 | struct wiimote_data *wdata = hid_get_drvdata(hdev); | 536 | struct wiimote_data *wdata = hid_get_drvdata(hdev); |
| 438 | 537 | ||
| 439 | hid_info(hdev, "Device removed\n"); | 538 | hid_info(hdev, "Device removed\n"); |
| 440 | |||
| 441 | device_remove_file(&hdev->dev, &dev_attr_led1); | ||
| 442 | device_remove_file(&hdev->dev, &dev_attr_led2); | ||
| 443 | device_remove_file(&hdev->dev, &dev_attr_led3); | ||
| 444 | device_remove_file(&hdev->dev, &dev_attr_led4); | ||
| 445 | |||
| 446 | hid_hw_stop(hdev); | ||
| 447 | input_unregister_device(wdata->input); | ||
| 448 | |||
| 449 | cancel_work_sync(&wdata->worker); | ||
| 450 | wiimote_destroy(wdata); | 539 | wiimote_destroy(wdata); |
| 451 | } | 540 | } |
| 452 | 541 | ||
diff --git a/drivers/hid/usbhid/hid-quirks.c b/drivers/hid/usbhid/hid-quirks.c index 621959d5cc42..4bdb5d46c52c 100644 --- a/drivers/hid/usbhid/hid-quirks.c +++ b/drivers/hid/usbhid/hid-quirks.c | |||
| @@ -89,6 +89,7 @@ static const struct hid_blacklist { | |||
| 89 | 89 | ||
| 90 | { USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_MULTI_TOUCH, HID_QUIRK_MULTI_INPUT }, | 90 | { USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_MULTI_TOUCH, HID_QUIRK_MULTI_INPUT }, |
| 91 | { USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_WIRELESS, HID_QUIRK_MULTI_INPUT }, | 91 | { USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_WIRELESS, HID_QUIRK_MULTI_INPUT }, |
| 92 | { USB_VENDOR_ID_SIGMA_MICRO, USB_DEVICE_ID_SIGMA_MICRO_KEYBOARD, HID_QUIRK_NO_INIT_REPORTS }, | ||
| 92 | { 0, 0 } | 93 | { 0, 0 } |
| 93 | }; | 94 | }; |
| 94 | 95 | ||
