hid-sony.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. /*
  2. * HID driver for some sony "special" devices
  3. *
  4. * Copyright (c) 1999 Andreas Gal
  5. * Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz>
  6. * Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc
  7. * Copyright (c) 2007 Paul Walmsley
  8. * Copyright (c) 2008 Jiri Slaby
  9. * Copyright (c) 2006-2008 Jiri Kosina
  10. */
  11. /*
  12. * This program is free software; you can redistribute it and/or modify it
  13. * under the terms of the GNU General Public License as published by the Free
  14. * Software Foundation; either version 2 of the License, or (at your option)
  15. * any later version.
  16. */
  17. #include <linux/device.h>
  18. #include <linux/hid.h>
  19. #include <linux/module.h>
  20. #include <linux/slab.h>
  21. #include <linux/usb.h>
  22. #include "hid-ids.h"
  23. #define VAIO_RDESC_CONSTANT (1 << 0)
  24. #define SIXAXIS_CONTROLLER_USB (1 << 1)
  25. #define SIXAXIS_CONTROLLER_BT (1 << 2)
  26. struct sony_sc {
  27. unsigned long quirks;
  28. };
  29. /* Sony Vaio VGX has wrongly mouse pointer declared as constant */
  30. static void sony_report_fixup(struct hid_device *hdev, __u8 *rdesc,
  31. unsigned int rsize)
  32. {
  33. struct sony_sc *sc = hid_get_drvdata(hdev);
  34. if ((sc->quirks & VAIO_RDESC_CONSTANT) &&
  35. rsize >= 56 && rdesc[54] == 0x81 && rdesc[55] == 0x07) {
  36. dev_info(&hdev->dev, "Fixing up Sony Vaio VGX report "
  37. "descriptor\n");
  38. rdesc[55] = 0x06;
  39. }
  40. }
  41. /*
  42. * Sending HID_REQ_GET_REPORT changes the operation mode of the ps3 controller
  43. * to "operational". Without this, the ps3 controller will not report any
  44. * events.
  45. */
  46. static int sixaxis_set_operational_usb(struct hid_device *hdev)
  47. {
  48. struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
  49. struct usb_device *dev = interface_to_usbdev(intf);
  50. __u16 ifnum = intf->cur_altsetting->desc.bInterfaceNumber;
  51. int ret;
  52. char *buf = kmalloc(18, GFP_KERNEL);
  53. if (!buf)
  54. return -ENOMEM;
  55. ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
  56. HID_REQ_GET_REPORT,
  57. USB_DIR_IN | USB_TYPE_CLASS |
  58. USB_RECIP_INTERFACE,
  59. (3 << 8) | 0xf2, ifnum, buf, 17,
  60. USB_CTRL_GET_TIMEOUT);
  61. if (ret < 0)
  62. dev_err(&hdev->dev, "can't set operational mode\n");
  63. kfree(buf);
  64. return ret;
  65. }
  66. static int sixaxis_set_operational_bt(struct hid_device *hdev)
  67. {
  68. unsigned char buf[] = { 0xf4, 0x42, 0x03, 0x00, 0x00 };
  69. return hdev->hid_output_raw_report(hdev, buf, sizeof(buf), HID_FEATURE_REPORT);
  70. }
  71. static int sony_probe(struct hid_device *hdev, const struct hid_device_id *id)
  72. {
  73. int ret;
  74. unsigned long quirks = id->driver_data;
  75. struct sony_sc *sc;
  76. sc = kzalloc(sizeof(*sc), GFP_KERNEL);
  77. if (sc == NULL) {
  78. dev_err(&hdev->dev, "can't alloc sony descriptor\n");
  79. return -ENOMEM;
  80. }
  81. sc->quirks = quirks;
  82. hid_set_drvdata(hdev, sc);
  83. ret = hid_parse(hdev);
  84. if (ret) {
  85. dev_err(&hdev->dev, "parse failed\n");
  86. goto err_free;
  87. }
  88. ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT |
  89. HID_CONNECT_HIDDEV_FORCE);
  90. if (ret) {
  91. dev_err(&hdev->dev, "hw start failed\n");
  92. goto err_free;
  93. }
  94. if (sc->quirks & SIXAXIS_CONTROLLER_USB)
  95. ret = sixaxis_set_operational_usb(hdev);
  96. else if (sc->quirks & SIXAXIS_CONTROLLER_BT)
  97. ret = sixaxis_set_operational_bt(hdev);
  98. else
  99. ret = 0;
  100. if (ret < 0)
  101. goto err_stop;
  102. return 0;
  103. err_stop:
  104. hid_hw_stop(hdev);
  105. err_free:
  106. kfree(sc);
  107. return ret;
  108. }
  109. static void sony_remove(struct hid_device *hdev)
  110. {
  111. hid_hw_stop(hdev);
  112. kfree(hid_get_drvdata(hdev));
  113. }
  114. static const struct hid_device_id sony_devices[] = {
  115. { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS3_CONTROLLER),
  116. .driver_data = SIXAXIS_CONTROLLER_USB },
  117. { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS3_CONTROLLER),
  118. .driver_data = SIXAXIS_CONTROLLER_BT },
  119. { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_VAIO_VGX_MOUSE),
  120. .driver_data = VAIO_RDESC_CONSTANT },
  121. { }
  122. };
  123. MODULE_DEVICE_TABLE(hid, sony_devices);
  124. static struct hid_driver sony_driver = {
  125. .name = "sony",
  126. .id_table = sony_devices,
  127. .probe = sony_probe,
  128. .remove = sony_remove,
  129. .report_fixup = sony_report_fixup,
  130. };
  131. static int __init sony_init(void)
  132. {
  133. return hid_register_driver(&sony_driver);
  134. }
  135. static void __exit sony_exit(void)
  136. {
  137. hid_unregister_driver(&sony_driver);
  138. }
  139. module_init(sony_init);
  140. module_exit(sony_exit);
  141. MODULE_LICENSE("GPL");