litest-device-wacom-bamboo-2fg-pen.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*
  2. * Copyright © 2017 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_DISTANCE, .value = LITEST_AUTO_ASSIGN },
  30. { .type = EV_ABS, .code = ABS_PRESSURE, .value = LITEST_AUTO_ASSIGN },
  31. { .type = EV_KEY, .code = LITEST_BTN_TOOL_AUTO, .value = 1 },
  32. { .type = EV_SYN, .code = SYN_REPORT, .value = 0 },
  33. { .type = -1, .code = -1 },
  34. };
  35. static struct input_event proximity_out[] = {
  36. { .type = EV_ABS, .code = ABS_X, .value = 0 },
  37. { .type = EV_ABS, .code = ABS_Y, .value = 0 },
  38. { .type = EV_ABS, .code = ABS_DISTANCE, .value = 0 },
  39. { .type = EV_ABS, .code = ABS_PRESSURE, .value = 0 },
  40. { .type = EV_KEY, .code = LITEST_BTN_TOOL_AUTO, .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_DISTANCE, .value = LITEST_AUTO_ASSIGN },
  48. { .type = EV_ABS, .code = ABS_PRESSURE, .value = LITEST_AUTO_ASSIGN },
  49. { .type = EV_SYN, .code = SYN_REPORT, .value = 0 },
  50. { .type = -1, .code = -1 },
  51. };
  52. static int
  53. get_axis_default(struct litest_device *d, unsigned int evcode, int32_t *value)
  54. {
  55. switch (evcode) {
  56. case ABS_DISTANCE:
  57. *value = 0;
  58. return 0;
  59. case ABS_PRESSURE:
  60. *value = 100;
  61. return 0;
  62. }
  63. return 1;
  64. }
  65. static struct litest_device_interface interface = {
  66. .tablet_proximity_in_events = proximity_in,
  67. .tablet_proximity_out_events = proximity_out,
  68. .tablet_motion_events = motion,
  69. .get_axis_default = get_axis_default,
  70. };
  71. /* clang-format off */
  72. static struct input_absinfo absinfo[] = {
  73. { ABS_X, 0, 14720, 4, 0, 100 },
  74. { ABS_Y, 0, 9200, 4, 0, 100 },
  75. { ABS_PRESSURE, 0, 1023, 0, 0, 0 },
  76. { ABS_DISTANCE, 0, 31, 0, 0, 0 },
  77. { .value = -1 },
  78. };
  79. /* clang-format on */
  80. static struct input_id input_id = {
  81. .bustype = 0x3,
  82. .vendor = 0x56a,
  83. .product = 0xd1,
  84. .version = 0x100,
  85. };
  86. /* clang-format off */
  87. static int events[] = {
  88. EV_KEY, BTN_TOOL_PEN,
  89. EV_KEY, BTN_TOOL_RUBBER,
  90. EV_KEY, BTN_TOUCH,
  91. EV_KEY, BTN_STYLUS,
  92. EV_KEY, BTN_STYLUS2,
  93. INPUT_PROP_MAX, INPUT_PROP_POINTER,
  94. -1, -1,
  95. };
  96. /* clang-format on */
  97. TEST_DEVICE(LITEST_WACOM_BAMBOO_2FG_PEN,
  98. .features = LITEST_TABLET | LITEST_DISTANCE | LITEST_HOVER,
  99. .interface = &interface,
  100. .name = "Wacom Bamboo 2FG 4x5 Pen",
  101. .id = &input_id,
  102. .events = events,
  103. .absinfo = absinfo,
  104. .udev_properties = {
  105. { "LIBINPUT_DEVICE_GROUP", "wacom-bamboo-2fg-group" },
  106. { "ID_INTEGRATION", "external" },
  107. { NULL },
  108. }, )