wacom_wac.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /*
  2. * drivers/input/tablet/wacom_wac.h
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. */
  9. #ifndef WACOM_WAC_H
  10. #define WACOM_WAC_H
  11. #include <linux/types.h>
  12. /* maximum packet length for USB devices */
  13. #define WACOM_PKGLEN_MAX 64
  14. /* packet length for individual models */
  15. #define WACOM_PKGLEN_PENPRTN 7
  16. #define WACOM_PKGLEN_GRAPHIRE 8
  17. #define WACOM_PKGLEN_BBFUN 9
  18. #define WACOM_PKGLEN_INTUOS 10
  19. #define WACOM_PKGLEN_TPC1FG 5
  20. #define WACOM_PKGLEN_TPC2FG 14
  21. #define WACOM_PKGLEN_BBTOUCH 20
  22. #define WACOM_PKGLEN_BBTOUCH3 64
  23. #define WACOM_PKGLEN_BBPEN 10
  24. /* device IDs */
  25. #define STYLUS_DEVICE_ID 0x02
  26. #define TOUCH_DEVICE_ID 0x03
  27. #define CURSOR_DEVICE_ID 0x06
  28. #define ERASER_DEVICE_ID 0x0A
  29. #define PAD_DEVICE_ID 0x0F
  30. /* wacom data packet report IDs */
  31. #define WACOM_REPORT_PENABLED 2
  32. #define WACOM_REPORT_INTUOSREAD 5
  33. #define WACOM_REPORT_INTUOSWRITE 6
  34. #define WACOM_REPORT_INTUOSPAD 12
  35. #define WACOM_REPORT_TPC1FG 6
  36. #define WACOM_REPORT_TPC2FG 13
  37. /* device quirks */
  38. #define WACOM_QUIRK_MULTI_INPUT 0x0001
  39. #define WACOM_QUIRK_BBTOUCH_LOWRES 0x0002
  40. enum {
  41. PENPARTNER = 0,
  42. GRAPHIRE,
  43. WACOM_G4,
  44. PTU,
  45. PL,
  46. DTU,
  47. BAMBOO_PT,
  48. INTUOS,
  49. INTUOS3S,
  50. INTUOS3,
  51. INTUOS3L,
  52. INTUOS4S,
  53. INTUOS4,
  54. INTUOS4L,
  55. WACOM_24HD,
  56. WACOM_21UX2,
  57. CINTIQ,
  58. WACOM_BEE,
  59. WACOM_MO,
  60. TABLETPC,
  61. TABLETPC2FG,
  62. MAX_TYPE
  63. };
  64. struct wacom_features {
  65. const char *name;
  66. int pktlen;
  67. int x_max;
  68. int y_max;
  69. int pressure_max;
  70. int distance_max;
  71. int type;
  72. int x_resolution;
  73. int y_resolution;
  74. int device_type;
  75. int x_phy;
  76. int y_phy;
  77. unsigned char unit;
  78. unsigned char unitExpo;
  79. int x_fuzz;
  80. int y_fuzz;
  81. int pressure_fuzz;
  82. int distance_fuzz;
  83. unsigned quirks;
  84. };
  85. struct wacom_shared {
  86. bool stylus_in_proximity;
  87. bool touch_down;
  88. };
  89. struct wacom_wac {
  90. char name[64];
  91. unsigned char *data;
  92. int tool[2];
  93. int id[2];
  94. __u32 serial[2];
  95. struct wacom_features features;
  96. struct wacom_shared *shared;
  97. struct input_dev *input;
  98. };
  99. #endif