wacom_wac.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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 32
  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. /* device IDs */
  22. #define STYLUS_DEVICE_ID 0x02
  23. #define TOUCH_DEVICE_ID 0x03
  24. #define CURSOR_DEVICE_ID 0x06
  25. #define ERASER_DEVICE_ID 0x0A
  26. #define PAD_DEVICE_ID 0x0F
  27. /* wacom data packet report IDs */
  28. #define WACOM_REPORT_PENABLED 2
  29. #define WACOM_REPORT_INTUOSREAD 5
  30. #define WACOM_REPORT_INTUOSWRITE 6
  31. #define WACOM_REPORT_INTUOSPAD 12
  32. #define WACOM_REPORT_TPC1FG 6
  33. #define WACOM_REPORT_TPC2FG 13
  34. enum {
  35. PENPARTNER = 0,
  36. GRAPHIRE,
  37. WACOM_G4,
  38. PTU,
  39. PL,
  40. INTUOS,
  41. INTUOS3S,
  42. INTUOS3,
  43. INTUOS3L,
  44. INTUOS4S,
  45. INTUOS4,
  46. INTUOS4L,
  47. WACOM_21UX2,
  48. CINTIQ,
  49. WACOM_BEE,
  50. WACOM_MO,
  51. TABLETPC,
  52. TABLETPC2FG,
  53. MAX_TYPE
  54. };
  55. struct wacom_features {
  56. const char *name;
  57. int pktlen;
  58. int x_max;
  59. int y_max;
  60. int pressure_max;
  61. int distance_max;
  62. int type;
  63. int device_type;
  64. int x_phy;
  65. int y_phy;
  66. unsigned char unit;
  67. unsigned char unitExpo;
  68. };
  69. struct wacom_shared {
  70. bool stylus_in_proximity;
  71. };
  72. struct wacom_wac {
  73. char name[64];
  74. unsigned char *data;
  75. int tool[3];
  76. int id[3];
  77. __u32 serial[2];
  78. int last_finger;
  79. struct wacom_features features;
  80. struct wacom_shared *shared;
  81. struct input_dev *input;
  82. };
  83. #endif