]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/input/input-mt.c
Input: MT - Add flags to input_mt_init_slots()
[mirror_ubuntu-bionic-kernel.git] / drivers / input / input-mt.c
CommitLineData
47c78e89
HR
1/*
2 * Input Multitouch Library
3 *
4 * Copyright (c) 2008-2010 Henrik Rydberg
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
9 */
10
11#include <linux/input/mt.h>
15d0580f 12#include <linux/export.h>
47c78e89
HR
13#include <linux/slab.h>
14
c5f4dec1
HR
15#define TRKID_SGN ((TRKID_MAX + 1) >> 1)
16
47c78e89 17/**
8cde8100 18 * input_mt_init_slots() - initialize MT input slots
47c78e89
HR
19 * @dev: input device supporting MT events and finger tracking
20 * @num_slots: number of slots used by the device
21 *
8cde8100 22 * This function allocates all necessary memory for MT slot handling
c5f4dec1
HR
23 * in the input device, prepares the ABS_MT_SLOT and
24 * ABS_MT_TRACKING_ID events for use and sets up appropriate buffers.
25 * May be called repeatedly. Returns -EINVAL if attempting to
26 * reinitialize with a different number of slots.
47c78e89 27 */
b4adbbef
HR
28int input_mt_init_slots(struct input_dev *dev, unsigned int num_slots,
29 unsigned int flags)
47c78e89 30{
8d18fba2 31 struct input_mt *mt = dev->mt;
47c78e89
HR
32 int i;
33
34 if (!num_slots)
35 return 0;
8d18fba2
HR
36 if (mt)
37 return mt->num_slots != num_slots ? -EINVAL : 0;
47c78e89 38
8d18fba2
HR
39 mt = kzalloc(sizeof(*mt) + num_slots * sizeof(*mt->slots), GFP_KERNEL);
40 if (!mt)
47c78e89
HR
41 return -ENOMEM;
42
8d18fba2 43 mt->num_slots = num_slots;
b4adbbef 44 mt->flags = flags;
47c78e89 45 input_set_abs_params(dev, ABS_MT_SLOT, 0, num_slots - 1, 0, 0);
c5f4dec1 46 input_set_abs_params(dev, ABS_MT_TRACKING_ID, 0, TRKID_MAX, 0, 0);
47c78e89
HR
47
48 /* Mark slots as 'unused' */
49 for (i = 0; i < num_slots; i++)
8d18fba2 50 input_mt_set_value(&mt->slots[i], ABS_MT_TRACKING_ID, -1);
47c78e89 51
8d18fba2 52 dev->mt = mt;
47c78e89
HR
53 return 0;
54}
8cde8100 55EXPORT_SYMBOL(input_mt_init_slots);
47c78e89
HR
56
57/**
58 * input_mt_destroy_slots() - frees the MT slots of the input device
59 * @dev: input device with allocated MT slots
60 *
61 * This function is only needed in error path as the input core will
62 * automatically free the MT slots when the device is destroyed.
63 */
64void input_mt_destroy_slots(struct input_dev *dev)
65{
66 kfree(dev->mt);
67 dev->mt = NULL;
47c78e89
HR
68}
69EXPORT_SYMBOL(input_mt_destroy_slots);
c5f4dec1
HR
70
71/**
72 * input_mt_report_slot_state() - report contact state
73 * @dev: input device with allocated MT slots
74 * @tool_type: the tool type to use in this slot
75 * @active: true if contact is active, false otherwise
76 *
77 * Reports a contact via ABS_MT_TRACKING_ID, and optionally
78 * ABS_MT_TOOL_TYPE. If active is true and the slot is currently
79 * inactive, or if the tool type is changed, a new tracking id is
80 * assigned to the slot. The tool type is only reported if the
81 * corresponding absbit field is set.
82 */
83void input_mt_report_slot_state(struct input_dev *dev,
84 unsigned int tool_type, bool active)
85{
8d18fba2
HR
86 struct input_mt *mt = dev->mt;
87 struct input_mt_slot *slot;
c5f4dec1
HR
88 int id;
89
8d18fba2 90 if (!mt || !active) {
c5f4dec1
HR
91 input_event(dev, EV_ABS, ABS_MT_TRACKING_ID, -1);
92 return;
93 }
94
8d18fba2
HR
95 slot = &mt->slots[mt->slot];
96 id = input_mt_get_value(slot, ABS_MT_TRACKING_ID);
97 if (id < 0 || input_mt_get_value(slot, ABS_MT_TOOL_TYPE) != tool_type)
98 id = input_mt_new_trkid(mt);
c5f4dec1
HR
99
100 input_event(dev, EV_ABS, ABS_MT_TRACKING_ID, id);
101 input_event(dev, EV_ABS, ABS_MT_TOOL_TYPE, tool_type);
102}
103EXPORT_SYMBOL(input_mt_report_slot_state);
104
105/**
106 * input_mt_report_finger_count() - report contact count
107 * @dev: input device with allocated MT slots
108 * @count: the number of contacts
109 *
110 * Reports the contact count via BTN_TOOL_FINGER, BTN_TOOL_DOUBLETAP,
111 * BTN_TOOL_TRIPLETAP and BTN_TOOL_QUADTAP.
112 *
113 * The input core ensures only the KEY events already setup for
114 * this device will produce output.
115 */
116void input_mt_report_finger_count(struct input_dev *dev, int count)
117{
118 input_event(dev, EV_KEY, BTN_TOOL_FINGER, count == 1);
119 input_event(dev, EV_KEY, BTN_TOOL_DOUBLETAP, count == 2);
120 input_event(dev, EV_KEY, BTN_TOOL_TRIPLETAP, count == 3);
121 input_event(dev, EV_KEY, BTN_TOOL_QUADTAP, count == 4);
d5051272 122 input_event(dev, EV_KEY, BTN_TOOL_QUINTTAP, count == 5);
c5f4dec1
HR
123}
124EXPORT_SYMBOL(input_mt_report_finger_count);
125
126/**
127 * input_mt_report_pointer_emulation() - common pointer emulation
128 * @dev: input device with allocated MT slots
129 * @use_count: report number of active contacts as finger count
130 *
131 * Performs legacy pointer emulation via BTN_TOUCH, ABS_X, ABS_Y and
132 * ABS_PRESSURE. Touchpad finger count is emulated if use_count is true.
133 *
134 * The input core ensures only the KEY and ABS axes already setup for
135 * this device will produce output.
136 */
137void input_mt_report_pointer_emulation(struct input_dev *dev, bool use_count)
138{
8d18fba2
HR
139 struct input_mt *mt = dev->mt;
140 struct input_mt_slot *oldest;
141 int oldid, count, i;
142
143 if (!mt)
144 return;
145
146 oldest = 0;
147 oldid = mt->trkid;
148 count = 0;
c5f4dec1 149
8d18fba2
HR
150 for (i = 0; i < mt->num_slots; ++i) {
151 struct input_mt_slot *ps = &mt->slots[i];
c5f4dec1
HR
152 int id = input_mt_get_value(ps, ABS_MT_TRACKING_ID);
153
154 if (id < 0)
155 continue;
156 if ((id - oldid) & TRKID_SGN) {
157 oldest = ps;
158 oldid = id;
159 }
160 count++;
161 }
162
163 input_event(dev, EV_KEY, BTN_TOUCH, count > 0);
164 if (use_count)
165 input_mt_report_finger_count(dev, count);
166
167 if (oldest) {
168 int x = input_mt_get_value(oldest, ABS_MT_POSITION_X);
169 int y = input_mt_get_value(oldest, ABS_MT_POSITION_Y);
170 int p = input_mt_get_value(oldest, ABS_MT_PRESSURE);
171
172 input_event(dev, EV_ABS, ABS_X, x);
173 input_event(dev, EV_ABS, ABS_Y, y);
174 input_event(dev, EV_ABS, ABS_PRESSURE, p);
175 } else {
176 input_event(dev, EV_ABS, ABS_PRESSURE, 0);
177 }
178}
179EXPORT_SYMBOL(input_mt_report_pointer_emulation);