litest-device-huion-pentablet.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /*
  2. * Copyright © 2015 Red Hat, Inc.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  21. * DEALINGS IN THE SOFTWARE.
  22. */
  23. #include "config.h"
  24. #include "litest-int.h"
  25. #include "litest.h"
  26. static struct input_event proximity_in[] = {
  27. { .type = EV_ABS, .code = ABS_X, .value = LITEST_AUTO_ASSIGN },
  28. { .type = EV_ABS, .code = ABS_Y, .value = LITEST_AUTO_ASSIGN },
  29. { .type = EV_ABS, .code = ABS_PRESSURE, .value = LITEST_AUTO_ASSIGN },
  30. { .type = EV_KEY, .code = LITEST_BTN_TOOL_AUTO, .value = 1 },
  31. { .type = EV_SYN, .code = SYN_REPORT, .value = 0 },
  32. { .type = -1, .code = -1 },
  33. };
  34. static struct input_event proximity_out[] = {
  35. /* This tablet doesn't report BTN_TOOL_PEN 0 on proximity out but I *think*
  36. * it still reports pressure values of zero? Who knows, we'd have to
  37. * get our hands on the tablet again. Meanwhile, let's force the
  38. * pressure to zero at least so other tests don't have to guess.
  39. */
  40. { .type = EV_ABS, .code = ABS_PRESSURE, .value = 0 },
  41. { .type = EV_SYN, .code = SYN_REPORT, .value = 0 },
  42. { .type = -1, .code = -1 },
  43. };
  44. static struct input_event motion[] = {
  45. { .type = EV_ABS, .code = ABS_X, .value = LITEST_AUTO_ASSIGN },
  46. { .type = EV_ABS, .code = ABS_Y, .value = LITEST_AUTO_ASSIGN },
  47. { .type = EV_ABS, .code = ABS_PRESSURE, .value = LITEST_AUTO_ASSIGN },
  48. { .type = EV_SYN, .code = SYN_REPORT, .value = 0 },
  49. { .type = -1, .code = -1 },
  50. };
  51. static int
  52. get_axis_default(struct litest_device *d, unsigned int evcode, int32_t *value)
  53. {
  54. switch (evcode) {
  55. case ABS_PRESSURE:
  56. *value = 100;
  57. return 0;
  58. }
  59. return 1;
  60. }
  61. static struct litest_device_interface interface = {
  62. .tablet_proximity_in_events = proximity_in,
  63. .tablet_proximity_out_events = proximity_out,
  64. .tablet_motion_events = motion,
  65. .get_axis_default = get_axis_default,
  66. };
  67. /* clang-format off */
  68. static struct input_absinfo absinfo[] = {
  69. { ABS_X, 0, 40000, 0, 0, 157 },
  70. { ABS_Y, 0, 25000, 0, 0, 157 },
  71. { ABS_PRESSURE, 0, 2047, 0, 0, 0 },
  72. { .value = -1 },
  73. };
  74. /* clang-format on */
  75. static struct input_id input_id = {
  76. .bustype = 0x3,
  77. /* Note: this VID/PID is shared with multiple devices, see the libwacom database
  78. for a list */
  79. .vendor = 0x256c,
  80. .product = 0x6e,
  81. };
  82. /* clang-format off */
  83. static int events[] = {
  84. EV_KEY, BTN_TOOL_PEN,
  85. EV_KEY, BTN_TOUCH,
  86. EV_KEY, BTN_STYLUS,
  87. EV_KEY, BTN_STYLUS2,
  88. EV_MSC, MSC_SCAN,
  89. -1, -1,
  90. };
  91. /* clang-format on */
  92. TEST_DEVICE(LITEST_HUION_TABLET,
  93. .features = LITEST_TABLET | LITEST_HOVER | LITEST_FORCED_PROXOUT,
  94. .interface = &interface,
  95. .name = "HUION PenTablet Pen",
  96. .id = &input_id,
  97. .events = events,
  98. .absinfo = absinfo,
  99. .udev_properties = {
  100. { "ID_INTEGRATION", "external" },
  101. { NULL },
  102. }, )