hid-sony.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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. static int sixaxis_usb_output_raw_report(struct hid_device *hid, __u8 *buf,
  42. size_t count, unsigned char report_type)
  43. {
  44. struct usb_interface *intf = to_usb_interface(hid->dev.parent);
  45. struct usb_device *dev = interface_to_usbdev(intf);
  46. struct usb_host_interface *interface = intf->cur_altsetting;
  47. int report_id = buf[0];
  48. int ret;
  49. ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
  50. HID_REQ_SET_REPORT,
  51. USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
  52. ((report_type + 1) << 8) | report_id,
  53. interface->desc.bInterfaceNumber, buf, count,
  54. USB_CTRL_SET_TIMEOUT);
  55. return ret;
  56. }
  57. /*
  58. * Sending HID_REQ_GET_REPORT changes the operation mode of the ps3 controller
  59. * to "operational". Without this, the ps3 controller will not report any
  60. * events.
  61. */
  62. static int sixaxis_set_operational_usb(struct hid_device *hdev)
  63. {
  64. struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
  65. struct usb_device *dev = interface_to_usbdev(intf);
  66. __u16 ifnum = intf->cur_altsetting->desc.bInterfaceNumber;
  67. int ret;
  68. char *buf = kmalloc(18, GFP_KERNEL);
  69. if (!buf)
  70. return -ENOMEM;
  71. ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
  72. HID_REQ_GET_REPORT,
  73. USB_DIR_IN | USB_TYPE_CLASS |
  74. USB_RECIP_INTERFACE,
  75. (3 << 8) | 0xf2, ifnum, buf, 17,
  76. USB_CTRL_GET_TIMEOUT);
  77. if (ret < 0)
  78. hid_err(hdev, "can't set operational mode\n");
  79. kfree(buf);
  80. return ret;
  81. }
  82. static int sixaxis_set_operational_bt(struct hid_device *hdev)
  83. {
  84. unsigned char buf[] = { 0xf4, 0x42, 0x03, 0x00, 0x00 };
  85. return hdev->hid_output_raw_report(hdev, buf, sizeof(buf), HID_FEATURE_REPORT);
  86. }
  87. static int sony_probe(struct hid_device *hdev, const struct hid_device_id *id)
  88. {
  89. int ret;
  90. unsigned long quirks = id->driver_data;
  91. struct sony_sc *sc;
  92. sc = kzalloc(sizeof(*sc), GFP_KERNEL);
  93. if (sc == NULL) {
  94. hid_err(hdev, "can't alloc sony descriptor\n");
  95. return -ENOMEM;
  96. }
  97. sc->quirks = quirks;
  98. hid_set_drvdata(hdev, sc);
  99. ret = hid_parse(hdev);
  100. if (ret) {
  101. hid_err(hdev, "parse failed\n");
  102. goto err_free;
  103. }
  104. ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT |
  105. HID_CONNECT_HIDDEV_FORCE);
  106. if (ret) {
  107. hid_err(hdev, "hw start failed\n");
  108. goto err_free;
  109. }
  110. if (sc->quirks & SIXAXIS_CONTROLLER_USB) {
  111. hdev->hid_output_raw_report = sixaxis_usb_output_raw_report;
  112. ret = sixaxis_set_operational_usb(hdev);
  113. }
  114. else if (sc->quirks & SIXAXIS_CONTROLLER_BT)
  115. ret = sixaxis_set_operational_bt(hdev);
  116. else
  117. ret = 0;
  118. if (ret < 0)
  119. goto err_stop;
  120. return 0;
  121. err_stop:
  122. hid_hw_stop(hdev);
  123. err_free:
  124. kfree(sc);
  125. return ret;
  126. }
  127. static void sony_remove(struct hid_device *hdev)
  128. {
  129. hid_hw_stop(hdev);
  130. kfree(hid_get_drvdata(hdev));
  131. }
  132. static const struct hid_device_id sony_devices[] = {
  133. { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS3_CONTROLLER),
  134. .driver_data = SIXAXIS_CONTROLLER_USB },
  135. { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS3_CONTROLLER),
  136. .driver_data = SIXAXIS_CONTROLLER_BT },
  137. { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_VAIO_VGX_MOUSE),
  138. .driver_data = VAIO_RDESC_CONSTANT },
  139. { }
  140. };
  141. MODULE_DEVICE_TABLE(hid, sony_devices);
  142. static struct hid_driver sony_driver = {
  143. .name = "sony",
  144. .id_table = sony_devices,
  145. .probe = sony_probe,
  146. .remove = sony_remove,
  147. .report_fixup = sony_report_fixup,
  148. };
  149. static int __init sony_init(void)
  150. {
  151. return hid_register_driver(&sony_driver);
  152. }
  153. static void __exit sony_exit(void)
  154. {
  155. hid_unregister_driver(&sony_driver);
  156. }
  157. module_init(sony_init);
  158. module_exit(sony_exit);
  159. MODULE_LICENSE("GPL");