hid-sony.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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 __u8 *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. hid_info(hdev, "Fixing up Sony Vaio VGX report descriptor\n");
  37. rdesc[55] = 0x06;
  38. }
  39. return rdesc;
  40. }
  41. /*
  42. * The Sony Sixaxis does not handle HID Output Reports on the Interrupt EP
  43. * like it should according to usbhid/hid-core.c::usbhid_output_raw_report()
  44. * so we need to override that forcing HID Output Reports on the Control EP.
  45. *
  46. * There is also another issue about HID Output Reports via USB, the Sixaxis
  47. * does not want the report_id as part of the data packet, so we have to
  48. * discard buf[0] when sending the actual control message, even for numbered
  49. * reports, humpf!
  50. */
  51. static int sixaxis_usb_output_raw_report(struct hid_device *hid, __u8 *buf,
  52. size_t count, unsigned char report_type)
  53. {
  54. struct usb_interface *intf = to_usb_interface(hid->dev.parent);
  55. struct usb_device *dev = interface_to_usbdev(intf);
  56. struct usb_host_interface *interface = intf->cur_altsetting;
  57. int report_id = buf[0];
  58. int ret;
  59. if (report_type == HID_OUTPUT_REPORT) {
  60. /* Don't send the Report ID */
  61. buf++;
  62. count--;
  63. }
  64. ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
  65. HID_REQ_SET_REPORT,
  66. USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
  67. ((report_type + 1) << 8) | report_id,
  68. interface->desc.bInterfaceNumber, buf, count,
  69. USB_CTRL_SET_TIMEOUT);
  70. /* Count also the Report ID, in case of an Output report. */
  71. if (ret > 0 && report_type == HID_OUTPUT_REPORT)
  72. ret++;
  73. return ret;
  74. }
  75. /*
  76. * Sending HID_REQ_GET_REPORT changes the operation mode of the ps3 controller
  77. * to "operational". Without this, the ps3 controller will not report any
  78. * events.
  79. */
  80. static int sixaxis_set_operational_usb(struct hid_device *hdev)
  81. {
  82. struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
  83. struct usb_device *dev = interface_to_usbdev(intf);
  84. __u16 ifnum = intf->cur_altsetting->desc.bInterfaceNumber;
  85. int ret;
  86. char *buf = kmalloc(18, GFP_KERNEL);
  87. if (!buf)
  88. return -ENOMEM;
  89. ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
  90. HID_REQ_GET_REPORT,
  91. USB_DIR_IN | USB_TYPE_CLASS |
  92. USB_RECIP_INTERFACE,
  93. (3 << 8) | 0xf2, ifnum, buf, 17,
  94. USB_CTRL_GET_TIMEOUT);
  95. if (ret < 0)
  96. hid_err(hdev, "can't set operational mode\n");
  97. kfree(buf);
  98. return ret;
  99. }
  100. static int sixaxis_set_operational_bt(struct hid_device *hdev)
  101. {
  102. unsigned char buf[] = { 0xf4, 0x42, 0x03, 0x00, 0x00 };
  103. return hdev->hid_output_raw_report(hdev, buf, sizeof(buf), HID_FEATURE_REPORT);
  104. }
  105. static int sony_probe(struct hid_device *hdev, const struct hid_device_id *id)
  106. {
  107. int ret;
  108. unsigned long quirks = id->driver_data;
  109. struct sony_sc *sc;
  110. sc = kzalloc(sizeof(*sc), GFP_KERNEL);
  111. if (sc == NULL) {
  112. hid_err(hdev, "can't alloc sony descriptor\n");
  113. return -ENOMEM;
  114. }
  115. sc->quirks = quirks;
  116. hid_set_drvdata(hdev, sc);
  117. ret = hid_parse(hdev);
  118. if (ret) {
  119. hid_err(hdev, "parse failed\n");
  120. goto err_free;
  121. }
  122. ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT |
  123. HID_CONNECT_HIDDEV_FORCE);
  124. if (ret) {
  125. hid_err(hdev, "hw start failed\n");
  126. goto err_free;
  127. }
  128. if (sc->quirks & SIXAXIS_CONTROLLER_USB) {
  129. hdev->hid_output_raw_report = sixaxis_usb_output_raw_report;
  130. ret = sixaxis_set_operational_usb(hdev);
  131. }
  132. else if (sc->quirks & SIXAXIS_CONTROLLER_BT)
  133. ret = sixaxis_set_operational_bt(hdev);
  134. else
  135. ret = 0;
  136. if (ret < 0)
  137. goto err_stop;
  138. return 0;
  139. err_stop:
  140. hid_hw_stop(hdev);
  141. err_free:
  142. kfree(sc);
  143. return ret;
  144. }
  145. static void sony_remove(struct hid_device *hdev)
  146. {
  147. hid_hw_stop(hdev);
  148. kfree(hid_get_drvdata(hdev));
  149. }
  150. static const struct hid_device_id sony_devices[] = {
  151. { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS3_CONTROLLER),
  152. .driver_data = SIXAXIS_CONTROLLER_USB },
  153. { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_NAVIGATION_CONTROLLER),
  154. .driver_data = SIXAXIS_CONTROLLER_USB },
  155. { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS3_CONTROLLER),
  156. .driver_data = SIXAXIS_CONTROLLER_BT },
  157. { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_VAIO_VGX_MOUSE),
  158. .driver_data = VAIO_RDESC_CONSTANT },
  159. { }
  160. };
  161. MODULE_DEVICE_TABLE(hid, sony_devices);
  162. static struct hid_driver sony_driver = {
  163. .name = "sony",
  164. .id_table = sony_devices,
  165. .probe = sony_probe,
  166. .remove = sony_remove,
  167. .report_fixup = sony_report_fixup,
  168. };
  169. static int __init sony_init(void)
  170. {
  171. return hid_register_driver(&sony_driver);
  172. }
  173. static void __exit sony_exit(void)
  174. {
  175. hid_unregister_driver(&sony_driver);
  176. }
  177. module_init(sony_init);
  178. module_exit(sony_exit);
  179. MODULE_LICENSE("GPL");