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
24#include "config.h"
25
26#include "litest.h"
27#include "litest-int.h"
28
29static struct input_event proximity_in[] = {
30	{ .type = EV_ABS, .code = ABS_X, .value = LITEST_AUTO_ASSIGN },
31	{ .type = EV_ABS, .code = ABS_Y, .value = LITEST_AUTO_ASSIGN },
32	{ .type = EV_ABS, .code = ABS_PRESSURE, .value = LITEST_AUTO_ASSIGN },
33	{ .type = EV_SYN, .code = SYN_REPORT, .value = 0 },
34	{ .type = -1, .code = -1 },
35};
36
37static struct input_event proximity_out[] = {
38	{ .type = -1, .code = -1 },
39};
40
41static struct input_event motion[] = {
42	{ .type = EV_ABS, .code = ABS_X, .value = LITEST_AUTO_ASSIGN },
43	{ .type = EV_ABS, .code = ABS_Y, .value = LITEST_AUTO_ASSIGN },
44	{ .type = EV_ABS, .code = ABS_PRESSURE, .value = LITEST_AUTO_ASSIGN },
45	{ .type = EV_SYN, .code = SYN_REPORT, .value = 0 },
46	{ .type = -1, .code = -1 },
47};
48
49static int
50get_axis_default(struct litest_device *d, unsigned int evcode, int32_t *value)
51{
52	switch (evcode) {
53	case ABS_PRESSURE:
54		*value = 100;
55		return 0;
56	}
57	return 1;
58}
59
60static struct litest_device_interface interface = {
61	.tablet_proximity_in_events = proximity_in,
62	.tablet_proximity_out_events = proximity_out,
63	.tablet_motion_events = motion,
64
65	.get_axis_default = get_axis_default,
66};
67
68static struct input_absinfo absinfo[] = {
69	{ ABS_X, 0, 32767, 0, 0, 235 },
70	{ ABS_Y, 0, 32767, 0, 0, 323 },
71	{ ABS_PRESSURE, 0, 1023, 0, 0, 0 },
72	{ .value = -1 },
73};
74
75static struct input_id input_id = {
76	.bustype = 0x3,
77	.vendor = 0x256c,
78	.product = 0x6e,
79};
80
81static int events[] = {
82	EV_KEY, BTN_TOUCH,
83	EV_KEY, BTN_STYLUS,
84	EV_KEY, BTN_STYLUS2,
85	EV_MSC, MSC_SCAN,
86	-1, -1,
87};
88
89TEST_DEVICE("uclogic-tablet",
90	.type = LITEST_UCLOGIC_TABLET,
91	.features = LITEST_TABLET | LITEST_HOVER | LITEST_FORCED_PROXOUT,
92	.interface = &interface,
93
94	.name = "uclogic PenTablet Pen",
95	.id = &input_id,
96	.events = events,
97	.absinfo = absinfo,
98)
99