Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.11-rc4 975 lines 31 kB view raw
1/* 2 * HID driver for Logitech Unifying receivers 3 * 4 * Copyright (c) 2011 Logitech 5 */ 6 7/* 8 * This program is free software; you can redistribute it and/or modify 9 * it under the terms of the GNU General Public License version 2 as 10 * published by the Free Software Foundation. 11 12 * 13 * This program is distributed in the hope that it will be useful, 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 * GNU General Public License for more details. 17 * 18 * You should have received a copy of the GNU General Public License 19 * along with this program; if not, write to the Free Software 20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 21 * 22 */ 23 24 25#include <linux/device.h> 26#include <linux/hid.h> 27#include <linux/module.h> 28#include <linux/usb.h> 29#include <asm/unaligned.h> 30#include "hid-ids.h" 31#include "hid-logitech-dj.h" 32 33/* Keyboard descriptor (1) */ 34static const char kbd_descriptor[] = { 35 0x05, 0x01, /* USAGE_PAGE (generic Desktop) */ 36 0x09, 0x06, /* USAGE (Keyboard) */ 37 0xA1, 0x01, /* COLLECTION (Application) */ 38 0x85, 0x01, /* REPORT_ID (1) */ 39 0x95, 0x08, /* REPORT_COUNT (8) */ 40 0x75, 0x01, /* REPORT_SIZE (1) */ 41 0x15, 0x00, /* LOGICAL_MINIMUM (0) */ 42 0x25, 0x01, /* LOGICAL_MAXIMUM (1) */ 43 0x05, 0x07, /* USAGE_PAGE (Keyboard) */ 44 0x19, 0xE0, /* USAGE_MINIMUM (Left Control) */ 45 0x29, 0xE7, /* USAGE_MAXIMUM (Right GUI) */ 46 0x81, 0x02, /* INPUT (Data,Var,Abs) */ 47 0x95, 0x05, /* REPORT COUNT (5) */ 48 0x05, 0x08, /* USAGE PAGE (LED page) */ 49 0x19, 0x01, /* USAGE MINIMUM (1) */ 50 0x29, 0x05, /* USAGE MAXIMUM (5) */ 51 0x91, 0x02, /* OUTPUT (Data, Variable, Absolute) */ 52 0x95, 0x01, /* REPORT COUNT (1) */ 53 0x75, 0x03, /* REPORT SIZE (3) */ 54 0x91, 0x01, /* OUTPUT (Constant) */ 55 0x95, 0x06, /* REPORT_COUNT (6) */ 56 0x75, 0x08, /* REPORT_SIZE (8) */ 57 0x15, 0x00, /* LOGICAL_MINIMUM (0) */ 58 0x26, 0xFF, 0x00, /* LOGICAL_MAXIMUM (255) */ 59 0x05, 0x07, /* USAGE_PAGE (Keyboard) */ 60 0x19, 0x00, /* USAGE_MINIMUM (no event) */ 61 0x2A, 0xFF, 0x00, /* USAGE_MAXIMUM (reserved) */ 62 0x81, 0x00, /* INPUT (Data,Ary,Abs) */ 63 0xC0 64}; 65 66/* Mouse descriptor (2) */ 67static const char mse_descriptor[] = { 68 0x05, 0x01, /* USAGE_PAGE (Generic Desktop) */ 69 0x09, 0x02, /* USAGE (Mouse) */ 70 0xA1, 0x01, /* COLLECTION (Application) */ 71 0x85, 0x02, /* REPORT_ID = 2 */ 72 0x09, 0x01, /* USAGE (pointer) */ 73 0xA1, 0x00, /* COLLECTION (physical) */ 74 0x05, 0x09, /* USAGE_PAGE (buttons) */ 75 0x19, 0x01, /* USAGE_MIN (1) */ 76 0x29, 0x10, /* USAGE_MAX (16) */ 77 0x15, 0x00, /* LOGICAL_MIN (0) */ 78 0x25, 0x01, /* LOGICAL_MAX (1) */ 79 0x95, 0x10, /* REPORT_COUNT (16) */ 80 0x75, 0x01, /* REPORT_SIZE (1) */ 81 0x81, 0x02, /* INPUT (data var abs) */ 82 0x05, 0x01, /* USAGE_PAGE (generic desktop) */ 83 0x16, 0x01, 0xF8, /* LOGICAL_MIN (-2047) */ 84 0x26, 0xFF, 0x07, /* LOGICAL_MAX (2047) */ 85 0x75, 0x0C, /* REPORT_SIZE (12) */ 86 0x95, 0x02, /* REPORT_COUNT (2) */ 87 0x09, 0x30, /* USAGE (X) */ 88 0x09, 0x31, /* USAGE (Y) */ 89 0x81, 0x06, /* INPUT */ 90 0x15, 0x81, /* LOGICAL_MIN (-127) */ 91 0x25, 0x7F, /* LOGICAL_MAX (127) */ 92 0x75, 0x08, /* REPORT_SIZE (8) */ 93 0x95, 0x01, /* REPORT_COUNT (1) */ 94 0x09, 0x38, /* USAGE (wheel) */ 95 0x81, 0x06, /* INPUT */ 96 0x05, 0x0C, /* USAGE_PAGE(consumer) */ 97 0x0A, 0x38, 0x02, /* USAGE(AC Pan) */ 98 0x95, 0x01, /* REPORT_COUNT (1) */ 99 0x81, 0x06, /* INPUT */ 100 0xC0, /* END_COLLECTION */ 101 0xC0, /* END_COLLECTION */ 102}; 103 104/* Consumer Control descriptor (3) */ 105static const char consumer_descriptor[] = { 106 0x05, 0x0C, /* USAGE_PAGE (Consumer Devices) */ 107 0x09, 0x01, /* USAGE (Consumer Control) */ 108 0xA1, 0x01, /* COLLECTION (Application) */ 109 0x85, 0x03, /* REPORT_ID = 3 */ 110 0x75, 0x10, /* REPORT_SIZE (16) */ 111 0x95, 0x02, /* REPORT_COUNT (2) */ 112 0x15, 0x01, /* LOGICAL_MIN (1) */ 113 0x26, 0x8C, 0x02, /* LOGICAL_MAX (652) */ 114 0x19, 0x01, /* USAGE_MIN (1) */ 115 0x2A, 0x8C, 0x02, /* USAGE_MAX (652) */ 116 0x81, 0x00, /* INPUT (Data Ary Abs) */ 117 0xC0, /* END_COLLECTION */ 118}; /* */ 119 120/* System control descriptor (4) */ 121static const char syscontrol_descriptor[] = { 122 0x05, 0x01, /* USAGE_PAGE (Generic Desktop) */ 123 0x09, 0x80, /* USAGE (System Control) */ 124 0xA1, 0x01, /* COLLECTION (Application) */ 125 0x85, 0x04, /* REPORT_ID = 4 */ 126 0x75, 0x02, /* REPORT_SIZE (2) */ 127 0x95, 0x01, /* REPORT_COUNT (1) */ 128 0x15, 0x01, /* LOGICAL_MIN (1) */ 129 0x25, 0x03, /* LOGICAL_MAX (3) */ 130 0x09, 0x82, /* USAGE (System Sleep) */ 131 0x09, 0x81, /* USAGE (System Power Down) */ 132 0x09, 0x83, /* USAGE (System Wake Up) */ 133 0x81, 0x60, /* INPUT (Data Ary Abs NPrf Null) */ 134 0x75, 0x06, /* REPORT_SIZE (6) */ 135 0x81, 0x03, /* INPUT (Cnst Var Abs) */ 136 0xC0, /* END_COLLECTION */ 137}; 138 139/* Media descriptor (8) */ 140static const char media_descriptor[] = { 141 0x06, 0xbc, 0xff, /* Usage Page 0xffbc */ 142 0x09, 0x88, /* Usage 0x0088 */ 143 0xa1, 0x01, /* BeginCollection */ 144 0x85, 0x08, /* Report ID 8 */ 145 0x19, 0x01, /* Usage Min 0x0001 */ 146 0x29, 0xff, /* Usage Max 0x00ff */ 147 0x15, 0x01, /* Logical Min 1 */ 148 0x26, 0xff, 0x00, /* Logical Max 255 */ 149 0x75, 0x08, /* Report Size 8 */ 150 0x95, 0x01, /* Report Count 1 */ 151 0x81, 0x00, /* Input */ 152 0xc0, /* EndCollection */ 153}; /* */ 154 155/* Maximum size of all defined hid reports in bytes (including report id) */ 156#define MAX_REPORT_SIZE 8 157 158/* Make sure all descriptors are present here */ 159#define MAX_RDESC_SIZE \ 160 (sizeof(kbd_descriptor) + \ 161 sizeof(mse_descriptor) + \ 162 sizeof(consumer_descriptor) + \ 163 sizeof(syscontrol_descriptor) + \ 164 sizeof(media_descriptor)) 165 166/* Number of possible hid report types that can be created by this driver. 167 * 168 * Right now, RF report types have the same report types (or report id's) 169 * than the hid report created from those RF reports. In the future 170 * this doesnt have to be true. 171 * 172 * For instance, RF report type 0x01 which has a size of 8 bytes, corresponds 173 * to hid report id 0x01, this is standard keyboard. Same thing applies to mice 174 * reports and consumer control, etc. If a new RF report is created, it doesn't 175 * has to have the same report id as its corresponding hid report, so an 176 * translation may have to take place for future report types. 177 */ 178#define NUMBER_OF_HID_REPORTS 32 179static const u8 hid_reportid_size_map[NUMBER_OF_HID_REPORTS] = { 180 [1] = 8, /* Standard keyboard */ 181 [2] = 8, /* Standard mouse */ 182 [3] = 5, /* Consumer control */ 183 [4] = 2, /* System control */ 184 [8] = 2, /* Media Center */ 185}; 186 187 188#define LOGITECH_DJ_INTERFACE_NUMBER 0x02 189 190static struct hid_ll_driver logi_dj_ll_driver; 191 192static int logi_dj_output_hidraw_report(struct hid_device *hid, u8 * buf, 193 size_t count, 194 unsigned char report_type); 195static int logi_dj_recv_query_paired_devices(struct dj_receiver_dev *djrcv_dev); 196 197static void logi_dj_recv_destroy_djhid_device(struct dj_receiver_dev *djrcv_dev, 198 struct dj_report *dj_report) 199{ 200 /* Called in delayed work context */ 201 struct dj_device *dj_dev; 202 unsigned long flags; 203 204 spin_lock_irqsave(&djrcv_dev->lock, flags); 205 dj_dev = djrcv_dev->paired_dj_devices[dj_report->device_index]; 206 djrcv_dev->paired_dj_devices[dj_report->device_index] = NULL; 207 spin_unlock_irqrestore(&djrcv_dev->lock, flags); 208 209 if (dj_dev != NULL) { 210 hid_destroy_device(dj_dev->hdev); 211 kfree(dj_dev); 212 } else { 213 dev_err(&djrcv_dev->hdev->dev, "%s: can't destroy a NULL device\n", 214 __func__); 215 } 216} 217 218static void logi_dj_recv_add_djhid_device(struct dj_receiver_dev *djrcv_dev, 219 struct dj_report *dj_report) 220{ 221 /* Called in delayed work context */ 222 struct hid_device *djrcv_hdev = djrcv_dev->hdev; 223 struct usb_interface *intf = to_usb_interface(djrcv_hdev->dev.parent); 224 struct usb_device *usbdev = interface_to_usbdev(intf); 225 struct hid_device *dj_hiddev; 226 struct dj_device *dj_dev; 227 228 /* Device index goes from 1 to 6, we need 3 bytes to store the 229 * semicolon, the index, and a null terminator 230 */ 231 unsigned char tmpstr[3]; 232 233 if (dj_report->report_params[DEVICE_PAIRED_PARAM_SPFUNCTION] & 234 SPFUNCTION_DEVICE_LIST_EMPTY) { 235 dbg_hid("%s: device list is empty\n", __func__); 236 djrcv_dev->querying_devices = false; 237 return; 238 } 239 240 if ((dj_report->device_index < DJ_DEVICE_INDEX_MIN) || 241 (dj_report->device_index > DJ_DEVICE_INDEX_MAX)) { 242 dev_err(&djrcv_hdev->dev, "%s: invalid device index:%d\n", 243 __func__, dj_report->device_index); 244 return; 245 } 246 247 if (djrcv_dev->paired_dj_devices[dj_report->device_index]) { 248 /* The device is already known. No need to reallocate it. */ 249 dbg_hid("%s: device is already known\n", __func__); 250 return; 251 } 252 253 dj_hiddev = hid_allocate_device(); 254 if (IS_ERR(dj_hiddev)) { 255 dev_err(&djrcv_hdev->dev, "%s: hid_allocate_device failed\n", 256 __func__); 257 return; 258 } 259 260 dj_hiddev->ll_driver = &logi_dj_ll_driver; 261 dj_hiddev->hid_output_raw_report = logi_dj_output_hidraw_report; 262 263 dj_hiddev->dev.parent = &djrcv_hdev->dev; 264 dj_hiddev->bus = BUS_USB; 265 dj_hiddev->vendor = le16_to_cpu(usbdev->descriptor.idVendor); 266 dj_hiddev->product = le16_to_cpu(usbdev->descriptor.idProduct); 267 snprintf(dj_hiddev->name, sizeof(dj_hiddev->name), 268 "Logitech Unifying Device. Wireless PID:%02x%02x", 269 dj_report->report_params[DEVICE_PAIRED_PARAM_EQUAD_ID_MSB], 270 dj_report->report_params[DEVICE_PAIRED_PARAM_EQUAD_ID_LSB]); 271 272 usb_make_path(usbdev, dj_hiddev->phys, sizeof(dj_hiddev->phys)); 273 snprintf(tmpstr, sizeof(tmpstr), ":%d", dj_report->device_index); 274 strlcat(dj_hiddev->phys, tmpstr, sizeof(dj_hiddev->phys)); 275 276 dj_dev = kzalloc(sizeof(struct dj_device), GFP_KERNEL); 277 278 if (!dj_dev) { 279 dev_err(&djrcv_hdev->dev, "%s: failed allocating dj_device\n", 280 __func__); 281 goto dj_device_allocate_fail; 282 } 283 284 dj_dev->reports_supported = get_unaligned_le32( 285 dj_report->report_params + DEVICE_PAIRED_RF_REPORT_TYPE); 286 dj_dev->hdev = dj_hiddev; 287 dj_dev->dj_receiver_dev = djrcv_dev; 288 dj_dev->device_index = dj_report->device_index; 289 dj_hiddev->driver_data = dj_dev; 290 291 djrcv_dev->paired_dj_devices[dj_report->device_index] = dj_dev; 292 293 if (hid_add_device(dj_hiddev)) { 294 dev_err(&djrcv_hdev->dev, "%s: failed adding dj_device\n", 295 __func__); 296 goto hid_add_device_fail; 297 } 298 299 return; 300 301hid_add_device_fail: 302 djrcv_dev->paired_dj_devices[dj_report->device_index] = NULL; 303 kfree(dj_dev); 304dj_device_allocate_fail: 305 hid_destroy_device(dj_hiddev); 306} 307 308static void delayedwork_callback(struct work_struct *work) 309{ 310 struct dj_receiver_dev *djrcv_dev = 311 container_of(work, struct dj_receiver_dev, work); 312 313 struct dj_report dj_report; 314 unsigned long flags; 315 int count; 316 int retval; 317 318 dbg_hid("%s\n", __func__); 319 320 spin_lock_irqsave(&djrcv_dev->lock, flags); 321 322 count = kfifo_out(&djrcv_dev->notif_fifo, &dj_report, 323 sizeof(struct dj_report)); 324 325 if (count != sizeof(struct dj_report)) { 326 dev_err(&djrcv_dev->hdev->dev, "%s: workitem triggered without " 327 "notifications available\n", __func__); 328 spin_unlock_irqrestore(&djrcv_dev->lock, flags); 329 return; 330 } 331 332 if (!kfifo_is_empty(&djrcv_dev->notif_fifo)) { 333 if (schedule_work(&djrcv_dev->work) == 0) { 334 dbg_hid("%s: did not schedule the work item, was " 335 "already queued\n", __func__); 336 } 337 } 338 339 spin_unlock_irqrestore(&djrcv_dev->lock, flags); 340 341 switch (dj_report.report_type) { 342 case REPORT_TYPE_NOTIF_DEVICE_PAIRED: 343 logi_dj_recv_add_djhid_device(djrcv_dev, &dj_report); 344 break; 345 case REPORT_TYPE_NOTIF_DEVICE_UNPAIRED: 346 logi_dj_recv_destroy_djhid_device(djrcv_dev, &dj_report); 347 break; 348 default: 349 /* A normal report (i. e. not belonging to a pair/unpair notification) 350 * arriving here, means that the report arrived but we did not have a 351 * paired dj_device associated to the report's device_index, this 352 * means that the original "device paired" notification corresponding 353 * to this dj_device never arrived to this driver. The reason is that 354 * hid-core discards all packets coming from a device while probe() is 355 * executing. */ 356 if (!djrcv_dev->paired_dj_devices[dj_report.device_index]) { 357 /* ok, we don't know the device, just re-ask the 358 * receiver for the list of connected devices. */ 359 retval = logi_dj_recv_query_paired_devices(djrcv_dev); 360 if (!retval) { 361 /* everything went fine, so just leave */ 362 break; 363 } 364 dev_err(&djrcv_dev->hdev->dev, 365 "%s:logi_dj_recv_query_paired_devices " 366 "error:%d\n", __func__, retval); 367 } 368 dbg_hid("%s: unexpected report type\n", __func__); 369 } 370} 371 372static void logi_dj_recv_queue_notification(struct dj_receiver_dev *djrcv_dev, 373 struct dj_report *dj_report) 374{ 375 /* We are called from atomic context (tasklet && djrcv->lock held) */ 376 377 kfifo_in(&djrcv_dev->notif_fifo, dj_report, sizeof(struct dj_report)); 378 379 if (schedule_work(&djrcv_dev->work) == 0) { 380 dbg_hid("%s: did not schedule the work item, was already " 381 "queued\n", __func__); 382 } 383} 384 385static void logi_dj_recv_forward_null_report(struct dj_receiver_dev *djrcv_dev, 386 struct dj_report *dj_report) 387{ 388 /* We are called from atomic context (tasklet && djrcv->lock held) */ 389 unsigned int i; 390 u8 reportbuffer[MAX_REPORT_SIZE]; 391 struct dj_device *djdev; 392 393 djdev = djrcv_dev->paired_dj_devices[dj_report->device_index]; 394 395 if (!djdev) { 396 dbg_hid("djrcv_dev->paired_dj_devices[dj_report->device_index]" 397 " is NULL, index %d\n", dj_report->device_index); 398 kfifo_in(&djrcv_dev->notif_fifo, dj_report, sizeof(struct dj_report)); 399 400 if (schedule_work(&djrcv_dev->work) == 0) { 401 dbg_hid("%s: did not schedule the work item, was already " 402 "queued\n", __func__); 403 } 404 return; 405 } 406 407 memset(reportbuffer, 0, sizeof(reportbuffer)); 408 409 for (i = 0; i < NUMBER_OF_HID_REPORTS; i++) { 410 if (djdev->reports_supported & (1 << i)) { 411 reportbuffer[0] = i; 412 if (hid_input_report(djdev->hdev, 413 HID_INPUT_REPORT, 414 reportbuffer, 415 hid_reportid_size_map[i], 1)) { 416 dbg_hid("hid_input_report error sending null " 417 "report\n"); 418 } 419 } 420 } 421} 422 423static void logi_dj_recv_forward_report(struct dj_receiver_dev *djrcv_dev, 424 struct dj_report *dj_report) 425{ 426 /* We are called from atomic context (tasklet && djrcv->lock held) */ 427 struct dj_device *dj_device; 428 429 dj_device = djrcv_dev->paired_dj_devices[dj_report->device_index]; 430 431 if (dj_device == NULL) { 432 dbg_hid("djrcv_dev->paired_dj_devices[dj_report->device_index]" 433 " is NULL, index %d\n", dj_report->device_index); 434 kfifo_in(&djrcv_dev->notif_fifo, dj_report, sizeof(struct dj_report)); 435 436 if (schedule_work(&djrcv_dev->work) == 0) { 437 dbg_hid("%s: did not schedule the work item, was already " 438 "queued\n", __func__); 439 } 440 return; 441 } 442 443 if ((dj_report->report_type > ARRAY_SIZE(hid_reportid_size_map) - 1) || 444 (hid_reportid_size_map[dj_report->report_type] == 0)) { 445 dbg_hid("invalid report type:%x\n", dj_report->report_type); 446 return; 447 } 448 449 if (hid_input_report(dj_device->hdev, 450 HID_INPUT_REPORT, &dj_report->report_type, 451 hid_reportid_size_map[dj_report->report_type], 1)) { 452 dbg_hid("hid_input_report error\n"); 453 } 454} 455 456 457static int logi_dj_recv_send_report(struct dj_receiver_dev *djrcv_dev, 458 struct dj_report *dj_report) 459{ 460 struct hid_device *hdev = djrcv_dev->hdev; 461 struct hid_report *report; 462 struct hid_report_enum *output_report_enum; 463 u8 *data = (u8 *)(&dj_report->device_index); 464 int i; 465 466 output_report_enum = &hdev->report_enum[HID_OUTPUT_REPORT]; 467 report = output_report_enum->report_id_hash[REPORT_ID_DJ_SHORT]; 468 469 if (!report) { 470 dev_err(&hdev->dev, "%s: unable to find dj report\n", __func__); 471 return -ENODEV; 472 } 473 474 for (i = 0; i < report->field[0]->report_count; i++) 475 report->field[0]->value[i] = data[i]; 476 477 hid_hw_request(hdev, report, HID_REQ_SET_REPORT); 478 479 return 0; 480} 481 482static int logi_dj_recv_query_paired_devices(struct dj_receiver_dev *djrcv_dev) 483{ 484 struct dj_report *dj_report; 485 int retval; 486 487 /* no need to protect djrcv_dev->querying_devices */ 488 if (djrcv_dev->querying_devices) 489 return 0; 490 491 djrcv_dev->querying_devices = true; 492 493 dj_report = kzalloc(sizeof(struct dj_report), GFP_KERNEL); 494 if (!dj_report) 495 return -ENOMEM; 496 dj_report->report_id = REPORT_ID_DJ_SHORT; 497 dj_report->device_index = 0xFF; 498 dj_report->report_type = REPORT_TYPE_CMD_GET_PAIRED_DEVICES; 499 retval = logi_dj_recv_send_report(djrcv_dev, dj_report); 500 kfree(dj_report); 501 return retval; 502} 503 504 505static int logi_dj_recv_switch_to_dj_mode(struct dj_receiver_dev *djrcv_dev, 506 unsigned timeout) 507{ 508 struct dj_report *dj_report; 509 int retval; 510 511 dj_report = kzalloc(sizeof(struct dj_report), GFP_KERNEL); 512 if (!dj_report) 513 return -ENOMEM; 514 dj_report->report_id = REPORT_ID_DJ_SHORT; 515 dj_report->device_index = 0xFF; 516 dj_report->report_type = REPORT_TYPE_CMD_SWITCH; 517 dj_report->report_params[CMD_SWITCH_PARAM_DEVBITFIELD] = 0x3F; 518 dj_report->report_params[CMD_SWITCH_PARAM_TIMEOUT_SECONDS] = (u8)timeout; 519 retval = logi_dj_recv_send_report(djrcv_dev, dj_report); 520 kfree(dj_report); 521 return retval; 522} 523 524 525static int logi_dj_ll_open(struct hid_device *hid) 526{ 527 dbg_hid("%s:%s\n", __func__, hid->phys); 528 return 0; 529 530} 531 532static void logi_dj_ll_close(struct hid_device *hid) 533{ 534 dbg_hid("%s:%s\n", __func__, hid->phys); 535} 536 537static int logi_dj_output_hidraw_report(struct hid_device *hid, u8 * buf, 538 size_t count, 539 unsigned char report_type) 540{ 541 /* Called by hid raw to send data */ 542 dbg_hid("%s\n", __func__); 543 544 return 0; 545} 546 547static void rdcat(char **rdesc, unsigned int *rsize, const char *data, unsigned int size) 548{ 549 memcpy(*rdesc + *rsize, data, size); 550 *rsize += size; 551} 552 553static int logi_dj_ll_parse(struct hid_device *hid) 554{ 555 struct dj_device *djdev = hid->driver_data; 556 unsigned int rsize = 0; 557 char *rdesc; 558 int retval; 559 560 dbg_hid("%s\n", __func__); 561 562 djdev->hdev->version = 0x0111; 563 djdev->hdev->country = 0x00; 564 565 rdesc = kmalloc(MAX_RDESC_SIZE, GFP_KERNEL); 566 if (!rdesc) 567 return -ENOMEM; 568 569 if (djdev->reports_supported & STD_KEYBOARD) { 570 dbg_hid("%s: sending a kbd descriptor, reports_supported: %x\n", 571 __func__, djdev->reports_supported); 572 rdcat(&rdesc, &rsize, kbd_descriptor, sizeof(kbd_descriptor)); 573 } 574 575 if (djdev->reports_supported & STD_MOUSE) { 576 dbg_hid("%s: sending a mouse descriptor, reports_supported: " 577 "%x\n", __func__, djdev->reports_supported); 578 rdcat(&rdesc, &rsize, mse_descriptor, sizeof(mse_descriptor)); 579 } 580 581 if (djdev->reports_supported & MULTIMEDIA) { 582 dbg_hid("%s: sending a multimedia report descriptor: %x\n", 583 __func__, djdev->reports_supported); 584 rdcat(&rdesc, &rsize, consumer_descriptor, sizeof(consumer_descriptor)); 585 } 586 587 if (djdev->reports_supported & POWER_KEYS) { 588 dbg_hid("%s: sending a power keys report descriptor: %x\n", 589 __func__, djdev->reports_supported); 590 rdcat(&rdesc, &rsize, syscontrol_descriptor, sizeof(syscontrol_descriptor)); 591 } 592 593 if (djdev->reports_supported & MEDIA_CENTER) { 594 dbg_hid("%s: sending a media center report descriptor: %x\n", 595 __func__, djdev->reports_supported); 596 rdcat(&rdesc, &rsize, media_descriptor, sizeof(media_descriptor)); 597 } 598 599 if (djdev->reports_supported & KBD_LEDS) { 600 dbg_hid("%s: need to send kbd leds report descriptor: %x\n", 601 __func__, djdev->reports_supported); 602 } 603 604 retval = hid_parse_report(hid, rdesc, rsize); 605 kfree(rdesc); 606 607 return retval; 608} 609 610static int logi_dj_ll_input_event(struct input_dev *dev, unsigned int type, 611 unsigned int code, int value) 612{ 613 /* Sent by the input layer to handle leds and Force Feedback */ 614 struct hid_device *dj_hiddev = input_get_drvdata(dev); 615 struct dj_device *dj_dev = dj_hiddev->driver_data; 616 617 struct dj_receiver_dev *djrcv_dev = 618 dev_get_drvdata(dj_hiddev->dev.parent); 619 struct hid_device *dj_rcv_hiddev = djrcv_dev->hdev; 620 struct hid_report_enum *output_report_enum; 621 622 struct hid_field *field; 623 struct hid_report *report; 624 unsigned char data[8]; 625 int offset; 626 627 dbg_hid("%s: %s, type:%d | code:%d | value:%d\n", 628 __func__, dev->phys, type, code, value); 629 630 if (type != EV_LED) 631 return -1; 632 633 offset = hidinput_find_field(dj_hiddev, type, code, &field); 634 635 if (offset == -1) { 636 dev_warn(&dev->dev, "event field not found\n"); 637 return -1; 638 } 639 hid_set_field(field, offset, value); 640 hid_output_report(field->report, &data[0]); 641 642 output_report_enum = &dj_rcv_hiddev->report_enum[HID_OUTPUT_REPORT]; 643 report = output_report_enum->report_id_hash[REPORT_ID_DJ_SHORT]; 644 hid_set_field(report->field[0], 0, dj_dev->device_index); 645 hid_set_field(report->field[0], 1, REPORT_TYPE_LEDS); 646 hid_set_field(report->field[0], 2, data[1]); 647 648 hid_hw_request(dj_rcv_hiddev, report, HID_REQ_SET_REPORT); 649 650 return 0; 651 652} 653 654static int logi_dj_ll_start(struct hid_device *hid) 655{ 656 dbg_hid("%s\n", __func__); 657 return 0; 658} 659 660static void logi_dj_ll_stop(struct hid_device *hid) 661{ 662 dbg_hid("%s\n", __func__); 663} 664 665 666static struct hid_ll_driver logi_dj_ll_driver = { 667 .parse = logi_dj_ll_parse, 668 .start = logi_dj_ll_start, 669 .stop = logi_dj_ll_stop, 670 .open = logi_dj_ll_open, 671 .close = logi_dj_ll_close, 672 .hidinput_input_event = logi_dj_ll_input_event, 673}; 674 675 676static int logi_dj_raw_event(struct hid_device *hdev, 677 struct hid_report *report, u8 *data, 678 int size) 679{ 680 struct dj_receiver_dev *djrcv_dev = hid_get_drvdata(hdev); 681 struct dj_report *dj_report = (struct dj_report *) data; 682 unsigned long flags; 683 bool report_processed = false; 684 685 dbg_hid("%s, size:%d\n", __func__, size); 686 687 /* Here we receive all data coming from iface 2, there are 4 cases: 688 * 689 * 1) Data should continue its normal processing i.e. data does not 690 * come from the DJ collection, in which case we do nothing and 691 * return 0, so hid-core can continue normal processing (will forward 692 * to associated hidraw device) 693 * 694 * 2) Data is from DJ collection, and is intended for this driver i. e. 695 * data contains arrival, departure, etc notifications, in which case 696 * we queue them for delayed processing by the work queue. We return 1 697 * to hid-core as no further processing is required from it. 698 * 699 * 3) Data is from DJ collection, and informs a connection change, 700 * if the change means rf link loss, then we must send a null report 701 * to the upper layer to discard potentially pressed keys that may be 702 * repeated forever by the input layer. Return 1 to hid-core as no 703 * further processing is required. 704 * 705 * 4) Data is from DJ collection and is an actual input event from 706 * a paired DJ device in which case we forward it to the correct hid 707 * device (via hid_input_report() ) and return 1 so hid-core does not do 708 * anything else with it. 709 */ 710 711 spin_lock_irqsave(&djrcv_dev->lock, flags); 712 if (dj_report->report_id == REPORT_ID_DJ_SHORT) { 713 switch (dj_report->report_type) { 714 case REPORT_TYPE_NOTIF_DEVICE_PAIRED: 715 case REPORT_TYPE_NOTIF_DEVICE_UNPAIRED: 716 logi_dj_recv_queue_notification(djrcv_dev, dj_report); 717 break; 718 case REPORT_TYPE_NOTIF_CONNECTION_STATUS: 719 if (dj_report->report_params[CONNECTION_STATUS_PARAM_STATUS] == 720 STATUS_LINKLOSS) { 721 logi_dj_recv_forward_null_report(djrcv_dev, dj_report); 722 } 723 break; 724 default: 725 logi_dj_recv_forward_report(djrcv_dev, dj_report); 726 } 727 report_processed = true; 728 } 729 spin_unlock_irqrestore(&djrcv_dev->lock, flags); 730 731 return report_processed; 732} 733 734static int logi_dj_probe(struct hid_device *hdev, 735 const struct hid_device_id *id) 736{ 737 struct usb_interface *intf = to_usb_interface(hdev->dev.parent); 738 struct dj_receiver_dev *djrcv_dev; 739 int retval; 740 741 if (is_dj_device((struct dj_device *)hdev->driver_data)) 742 return -ENODEV; 743 744 dbg_hid("%s called for ifnum %d\n", __func__, 745 intf->cur_altsetting->desc.bInterfaceNumber); 746 747 /* Ignore interfaces 0 and 1, they will not carry any data, dont create 748 * any hid_device for them */ 749 if (intf->cur_altsetting->desc.bInterfaceNumber != 750 LOGITECH_DJ_INTERFACE_NUMBER) { 751 dbg_hid("%s: ignoring ifnum %d\n", __func__, 752 intf->cur_altsetting->desc.bInterfaceNumber); 753 return -ENODEV; 754 } 755 756 /* Treat interface 2 */ 757 758 djrcv_dev = kzalloc(sizeof(struct dj_receiver_dev), GFP_KERNEL); 759 if (!djrcv_dev) { 760 dev_err(&hdev->dev, 761 "%s:failed allocating dj_receiver_dev\n", __func__); 762 return -ENOMEM; 763 } 764 djrcv_dev->hdev = hdev; 765 INIT_WORK(&djrcv_dev->work, delayedwork_callback); 766 spin_lock_init(&djrcv_dev->lock); 767 if (kfifo_alloc(&djrcv_dev->notif_fifo, 768 DJ_MAX_NUMBER_NOTIFICATIONS * sizeof(struct dj_report), 769 GFP_KERNEL)) { 770 dev_err(&hdev->dev, 771 "%s:failed allocating notif_fifo\n", __func__); 772 kfree(djrcv_dev); 773 return -ENOMEM; 774 } 775 hid_set_drvdata(hdev, djrcv_dev); 776 777 /* Call to usbhid to fetch the HID descriptors of interface 2 and 778 * subsequently call to the hid/hid-core to parse the fetched 779 * descriptors, this will in turn create the hidraw and hiddev nodes 780 * for interface 2 of the receiver */ 781 retval = hid_parse(hdev); 782 if (retval) { 783 dev_err(&hdev->dev, 784 "%s:parse of interface 2 failed\n", __func__); 785 goto hid_parse_fail; 786 } 787 788 /* Starts the usb device and connects to upper interfaces hiddev and 789 * hidraw */ 790 retval = hid_hw_start(hdev, HID_CONNECT_DEFAULT); 791 if (retval) { 792 dev_err(&hdev->dev, 793 "%s:hid_hw_start returned error\n", __func__); 794 goto hid_hw_start_fail; 795 } 796 797 retval = logi_dj_recv_switch_to_dj_mode(djrcv_dev, 0); 798 if (retval < 0) { 799 dev_err(&hdev->dev, 800 "%s:logi_dj_recv_switch_to_dj_mode returned error:%d\n", 801 __func__, retval); 802 goto switch_to_dj_mode_fail; 803 } 804 805 /* This is enabling the polling urb on the IN endpoint */ 806 retval = hdev->ll_driver->open(hdev); 807 if (retval < 0) { 808 dev_err(&hdev->dev, "%s:hdev->ll_driver->open returned " 809 "error:%d\n", __func__, retval); 810 goto llopen_failed; 811 } 812 813 /* Allow incoming packets to arrive: */ 814 hid_device_io_start(hdev); 815 816 retval = logi_dj_recv_query_paired_devices(djrcv_dev); 817 if (retval < 0) { 818 dev_err(&hdev->dev, "%s:logi_dj_recv_query_paired_devices " 819 "error:%d\n", __func__, retval); 820 goto logi_dj_recv_query_paired_devices_failed; 821 } 822 823 return retval; 824 825logi_dj_recv_query_paired_devices_failed: 826 hdev->ll_driver->close(hdev); 827 828llopen_failed: 829switch_to_dj_mode_fail: 830 hid_hw_stop(hdev); 831 832hid_hw_start_fail: 833hid_parse_fail: 834 kfifo_free(&djrcv_dev->notif_fifo); 835 kfree(djrcv_dev); 836 hid_set_drvdata(hdev, NULL); 837 return retval; 838 839} 840 841#ifdef CONFIG_PM 842static int logi_dj_reset_resume(struct hid_device *hdev) 843{ 844 int retval; 845 struct dj_receiver_dev *djrcv_dev = hid_get_drvdata(hdev); 846 847 retval = logi_dj_recv_switch_to_dj_mode(djrcv_dev, 0); 848 if (retval < 0) { 849 dev_err(&hdev->dev, 850 "%s:logi_dj_recv_switch_to_dj_mode returned error:%d\n", 851 __func__, retval); 852 } 853 854 return 0; 855} 856#endif 857 858static void logi_dj_remove(struct hid_device *hdev) 859{ 860 struct dj_receiver_dev *djrcv_dev = hid_get_drvdata(hdev); 861 struct dj_device *dj_dev; 862 int i; 863 864 dbg_hid("%s\n", __func__); 865 866 cancel_work_sync(&djrcv_dev->work); 867 868 hdev->ll_driver->close(hdev); 869 hid_hw_stop(hdev); 870 871 /* I suppose that at this point the only context that can access 872 * the djrecv_data is this thread as the work item is guaranteed to 873 * have finished and no more raw_event callbacks should arrive after 874 * the remove callback was triggered so no locks are put around the 875 * code below */ 876 for (i = 0; i < (DJ_MAX_PAIRED_DEVICES + DJ_DEVICE_INDEX_MIN); i++) { 877 dj_dev = djrcv_dev->paired_dj_devices[i]; 878 if (dj_dev != NULL) { 879 hid_destroy_device(dj_dev->hdev); 880 kfree(dj_dev); 881 djrcv_dev->paired_dj_devices[i] = NULL; 882 } 883 } 884 885 kfifo_free(&djrcv_dev->notif_fifo); 886 kfree(djrcv_dev); 887 hid_set_drvdata(hdev, NULL); 888} 889 890static int logi_djdevice_probe(struct hid_device *hdev, 891 const struct hid_device_id *id) 892{ 893 int ret; 894 struct dj_device *dj_dev = hdev->driver_data; 895 896 if (!is_dj_device(dj_dev)) 897 return -ENODEV; 898 899 ret = hid_parse(hdev); 900 if (!ret) 901 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT); 902 903 return ret; 904} 905 906static const struct hid_device_id logi_dj_receivers[] = { 907 {HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, 908 USB_DEVICE_ID_LOGITECH_UNIFYING_RECEIVER)}, 909 {HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, 910 USB_DEVICE_ID_LOGITECH_UNIFYING_RECEIVER_2)}, 911 {} 912}; 913 914MODULE_DEVICE_TABLE(hid, logi_dj_receivers); 915 916static struct hid_driver logi_djreceiver_driver = { 917 .name = "logitech-djreceiver", 918 .id_table = logi_dj_receivers, 919 .probe = logi_dj_probe, 920 .remove = logi_dj_remove, 921 .raw_event = logi_dj_raw_event, 922#ifdef CONFIG_PM 923 .reset_resume = logi_dj_reset_resume, 924#endif 925}; 926 927 928static const struct hid_device_id logi_dj_devices[] = { 929 {HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, 930 USB_DEVICE_ID_LOGITECH_UNIFYING_RECEIVER)}, 931 {HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, 932 USB_DEVICE_ID_LOGITECH_UNIFYING_RECEIVER_2)}, 933 {} 934}; 935 936static struct hid_driver logi_djdevice_driver = { 937 .name = "logitech-djdevice", 938 .id_table = logi_dj_devices, 939 .probe = logi_djdevice_probe, 940}; 941 942 943static int __init logi_dj_init(void) 944{ 945 int retval; 946 947 dbg_hid("Logitech-DJ:%s\n", __func__); 948 949 retval = hid_register_driver(&logi_djreceiver_driver); 950 if (retval) 951 return retval; 952 953 retval = hid_register_driver(&logi_djdevice_driver); 954 if (retval) 955 hid_unregister_driver(&logi_djreceiver_driver); 956 957 return retval; 958 959} 960 961static void __exit logi_dj_exit(void) 962{ 963 dbg_hid("Logitech-DJ:%s\n", __func__); 964 965 hid_unregister_driver(&logi_djdevice_driver); 966 hid_unregister_driver(&logi_djreceiver_driver); 967 968} 969 970module_init(logi_dj_init); 971module_exit(logi_dj_exit); 972MODULE_LICENSE("GPL"); 973MODULE_AUTHOR("Logitech"); 974MODULE_AUTHOR("Nestor Lopez Casado"); 975MODULE_AUTHOR("nlopezcasad@logitech.com");