wacom.h 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * USB Wacom tablet support
  4. *
  5. * Copyright (c) 2000-2004 Vojtech Pavlik <[email protected]>
  6. * Copyright (c) 2000 Andreas Bach Aaen <[email protected]>
  7. * Copyright (c) 2000 Clifford Wolf <[email protected]>
  8. * Copyright (c) 2000 Sam Mosel <[email protected]>
  9. * Copyright (c) 2000 James E. Blair <[email protected]>
  10. * Copyright (c) 2000 Daniel Egger <[email protected]>
  11. * Copyright (c) 2001 Frederic Lepied <[email protected]>
  12. * Copyright (c) 2004 Panagiotis Issaris <[email protected]>
  13. * Copyright (c) 2002-2011 Ping Cheng <[email protected]>
  14. * Copyright (c) 2014 Benjamin Tissoires <[email protected]>
  15. *
  16. * ChangeLog:
  17. * v0.1 (vp) - Initial release
  18. * v0.2 (aba) - Support for all buttons / combinations
  19. * v0.3 (vp) - Support for Intuos added
  20. * v0.4 (sm) - Support for more Intuos models, menustrip
  21. * relative mode, proximity.
  22. * v0.5 (vp) - Big cleanup, nifty features removed,
  23. * they belong in userspace
  24. * v1.8 (vp) - Submit URB only when operating, moved to CVS,
  25. * use input_report_key instead of report_btn and
  26. * other cleanups
  27. * v1.11 (vp) - Add URB ->dev setting for new kernels
  28. * v1.11 (jb) - Add support for the 4D Mouse & Lens
  29. * v1.12 (de) - Add support for two more inking pen IDs
  30. * v1.14 (vp) - Use new USB device id probing scheme.
  31. * Fix Wacom Graphire mouse wheel
  32. * v1.18 (vp) - Fix mouse wheel direction
  33. * Make mouse relative
  34. * v1.20 (fl) - Report tool id for Intuos devices
  35. * - Multi tools support
  36. * - Corrected Intuos protocol decoding (airbrush, 4D mouse, lens cursor...)
  37. * - Add PL models support
  38. * - Fix Wacom Graphire mouse wheel again
  39. * v1.21 (vp) - Removed protocol descriptions
  40. * - Added MISC_SERIAL for tool serial numbers
  41. * (gb) - Identify version on module load.
  42. * v1.21.1 (fl) - added Graphire2 support
  43. * v1.21.2 (fl) - added Intuos2 support
  44. * - added all the PL ids
  45. * v1.21.3 (fl) - added another eraser id from Neil Okamoto
  46. * - added smooth filter for Graphire from Peri Hankey
  47. * - added PenPartner support from Olaf van Es
  48. * - new tool ids from Ole Martin Bjoerndalen
  49. * v1.29 (pc) - Add support for more tablets
  50. * - Fix pressure reporting
  51. * v1.30 (vp) - Merge 2.4 and 2.5 drivers
  52. * - Since 2.5 now has input_sync(), remove MSC_SERIAL abuse
  53. * - Cleanups here and there
  54. * v1.30.1 (pi) - Added Graphire3 support
  55. * v1.40 (pc) - Add support for several new devices, fix eraser reporting, ...
  56. * v1.43 (pc) - Added support for Cintiq 21UX
  57. * - Fixed a Graphire bug
  58. * - Merged wacom_intuos3_irq into wacom_intuos_irq
  59. * v1.44 (pc) - Added support for Graphire4, Cintiq 710, Intuos3 6x11, etc.
  60. * - Report Device IDs
  61. * v1.45 (pc) - Added support for DTF 521, Intuos3 12x12 and 12x19
  62. * - Minor data report fix
  63. * v1.46 (pc) - Split wacom.c into wacom_sys.c and wacom_wac.c,
  64. * - where wacom_sys.c deals with system specific code,
  65. * - and wacom_wac.c deals with Wacom specific code
  66. * - Support Intuos3 4x6
  67. * v1.47 (pc) - Added support for Bamboo
  68. * v1.48 (pc) - Added support for Bamboo1, BambooFun, and Cintiq 12WX
  69. * v1.49 (pc) - Added support for USB Tablet PC (0x90, 0x93, and 0x9A)
  70. * v1.50 (pc) - Fixed a TabletPC touch bug in 2.6.28
  71. * v1.51 (pc) - Added support for Intuos4
  72. * v1.52 (pc) - Query Wacom data upon system resume
  73. * - add defines for features->type
  74. * - add new devices (0x9F, 0xE2, and 0XE3)
  75. * v2.00 (bt) - conversion to a HID driver
  76. * - integration of the Bluetooth devices
  77. */
  78. #ifndef WACOM_H
  79. #define WACOM_H
  80. #include <linux/kernel.h>
  81. #include <linux/slab.h>
  82. #include <linux/module.h>
  83. #include <linux/mod_devicetable.h>
  84. #include <linux/hid.h>
  85. #include <linux/kfifo.h>
  86. #include <linux/leds.h>
  87. #include <linux/usb/input.h>
  88. #include <linux/power_supply.h>
  89. #include <linux/timer.h>
  90. #include <asm/unaligned.h>
  91. /*
  92. * Version Information
  93. */
  94. #define DRIVER_VERSION "v2.00"
  95. #define DRIVER_AUTHOR "Vojtech Pavlik <[email protected]>"
  96. #define DRIVER_DESC "USB Wacom tablet driver"
  97. #define USB_VENDOR_ID_WACOM 0x056a
  98. #define USB_VENDOR_ID_LENOVO 0x17ef
  99. enum wacom_worker {
  100. WACOM_WORKER_WIRELESS,
  101. WACOM_WORKER_BATTERY,
  102. WACOM_WORKER_REMOTE,
  103. WACOM_WORKER_MODE_CHANGE,
  104. };
  105. struct wacom;
  106. struct wacom_led {
  107. struct led_classdev cdev;
  108. struct led_trigger trigger;
  109. struct wacom *wacom;
  110. unsigned int group;
  111. unsigned int id;
  112. u8 llv;
  113. u8 hlv;
  114. bool held;
  115. };
  116. struct wacom_group_leds {
  117. u8 select; /* status led selector (0..3) */
  118. struct wacom_led *leds;
  119. unsigned int count;
  120. struct device *dev;
  121. };
  122. struct wacom_battery {
  123. struct wacom *wacom;
  124. struct power_supply_desc bat_desc;
  125. struct power_supply *battery;
  126. char bat_name[WACOM_NAME_MAX];
  127. int bat_status;
  128. int battery_capacity;
  129. int bat_charging;
  130. int bat_connected;
  131. int ps_connected;
  132. };
  133. struct wacom_remote {
  134. spinlock_t remote_lock;
  135. struct kfifo remote_fifo;
  136. struct kobject *remote_dir;
  137. struct {
  138. struct attribute_group group;
  139. u32 serial;
  140. struct input_dev *input;
  141. bool registered;
  142. struct wacom_battery battery;
  143. ktime_t active_time;
  144. } remotes[WACOM_MAX_REMOTES];
  145. };
  146. struct wacom {
  147. struct usb_device *usbdev;
  148. struct usb_interface *intf;
  149. struct wacom_wac wacom_wac;
  150. struct hid_device *hdev;
  151. struct mutex lock;
  152. struct work_struct wireless_work;
  153. struct work_struct battery_work;
  154. struct work_struct remote_work;
  155. struct delayed_work init_work;
  156. struct wacom_remote *remote;
  157. struct work_struct mode_change_work;
  158. struct timer_list idleprox_timer;
  159. bool generic_has_leds;
  160. struct wacom_leds {
  161. struct wacom_group_leds *groups;
  162. unsigned int count;
  163. u8 llv; /* status led brightness no button (1..127) */
  164. u8 hlv; /* status led brightness button pressed (1..127) */
  165. u8 img_lum; /* OLED matrix display brightness */
  166. u8 max_llv; /* maximum brightness of LED (llv) */
  167. u8 max_hlv; /* maximum brightness of LED (hlv) */
  168. } led;
  169. struct wacom_battery battery;
  170. bool resources;
  171. };
  172. static inline void wacom_schedule_work(struct wacom_wac *wacom_wac,
  173. enum wacom_worker which)
  174. {
  175. struct wacom *wacom = container_of(wacom_wac, struct wacom, wacom_wac);
  176. switch (which) {
  177. case WACOM_WORKER_WIRELESS:
  178. schedule_work(&wacom->wireless_work);
  179. break;
  180. case WACOM_WORKER_BATTERY:
  181. schedule_work(&wacom->battery_work);
  182. break;
  183. case WACOM_WORKER_REMOTE:
  184. schedule_work(&wacom->remote_work);
  185. break;
  186. case WACOM_WORKER_MODE_CHANGE:
  187. schedule_work(&wacom->mode_change_work);
  188. break;
  189. }
  190. }
  191. /*
  192. * Convert a signed 32-bit integer to an unsigned n-bit integer. Undoes
  193. * the normally-helpful work of 'hid_snto32' for fields that use signed
  194. * ranges for questionable reasons.
  195. */
  196. static inline __u32 wacom_s32tou(s32 value, __u8 n)
  197. {
  198. switch (n) {
  199. case 8: return ((__u8)value);
  200. case 16: return ((__u16)value);
  201. case 32: return ((__u32)value);
  202. }
  203. return value & (1 << (n - 1)) ? value & (~(~0U << n)) : value;
  204. }
  205. extern const struct hid_device_id wacom_ids[];
  206. void wacom_wac_irq(struct wacom_wac *wacom_wac, size_t len);
  207. void wacom_setup_device_quirks(struct wacom *wacom);
  208. int wacom_setup_pen_input_capabilities(struct input_dev *input_dev,
  209. struct wacom_wac *wacom_wac);
  210. int wacom_setup_touch_input_capabilities(struct input_dev *input_dev,
  211. struct wacom_wac *wacom_wac);
  212. int wacom_setup_pad_input_capabilities(struct input_dev *input_dev,
  213. struct wacom_wac *wacom_wac);
  214. void wacom_wac_usage_mapping(struct hid_device *hdev,
  215. struct hid_field *field, struct hid_usage *usage);
  216. void wacom_wac_event(struct hid_device *hdev, struct hid_field *field,
  217. struct hid_usage *usage, __s32 value);
  218. void wacom_wac_report(struct hid_device *hdev, struct hid_report *report);
  219. void wacom_battery_work(struct work_struct *work);
  220. enum led_brightness wacom_leds_brightness_get(struct wacom_led *led);
  221. struct wacom_led *wacom_led_find(struct wacom *wacom, unsigned int group,
  222. unsigned int id);
  223. struct wacom_led *wacom_led_next(struct wacom *wacom, struct wacom_led *cur);
  224. int wacom_equivalent_usage(int usage);
  225. int wacom_initialize_leds(struct wacom *wacom);
  226. void wacom_idleprox_timeout(struct timer_list *list);
  227. #endif