hid-sony.c 4.8 KB

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