blob: caff298832a4abcabafc7fa786ebc7ad4de2b9c4 [file] [log] [blame]
Henrik Rydberg47c78e82010-11-27 09:16:48 +01001/*
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>
Paul Gortmaker15d05802011-10-25 14:51:47 -040012#include <linux/export.h>
Henrik Rydberg47c78e82010-11-27 09:16:48 +010013#include <linux/slab.h>
14
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010015#define TRKID_SGN ((TRKID_MAX + 1) >> 1)
16
Henrik Rydberg55e49082012-08-22 20:43:22 +020017static void copy_abs(struct input_dev *dev, unsigned int dst, unsigned int src)
18{
19 if (dev->absinfo && test_bit(src, dev->absbit)) {
20 dev->absinfo[dst] = dev->absinfo[src];
21 dev->absbit[BIT_WORD(dst)] |= BIT_MASK(dst);
22 }
23}
24
Henrik Rydberg47c78e82010-11-27 09:16:48 +010025/**
Henrik Rydberg8cde8102010-11-27 10:50:54 +010026 * input_mt_init_slots() - initialize MT input slots
Henrik Rydberg47c78e82010-11-27 09:16:48 +010027 * @dev: input device supporting MT events and finger tracking
28 * @num_slots: number of slots used by the device
29 *
Henrik Rydberg8cde8102010-11-27 10:50:54 +010030 * This function allocates all necessary memory for MT slot handling
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010031 * in the input device, prepares the ABS_MT_SLOT and
32 * ABS_MT_TRACKING_ID events for use and sets up appropriate buffers.
33 * May be called repeatedly. Returns -EINVAL if attempting to
34 * reinitialize with a different number of slots.
Henrik Rydberg47c78e82010-11-27 09:16:48 +010035 */
Henrik Rydbergb4adbbe2012-08-11 22:07:55 +020036int input_mt_init_slots(struct input_dev *dev, unsigned int num_slots,
37 unsigned int flags)
Henrik Rydberg47c78e82010-11-27 09:16:48 +010038{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020039 struct input_mt *mt = dev->mt;
Henrik Rydberg47c78e82010-11-27 09:16:48 +010040 int i;
41
42 if (!num_slots)
43 return 0;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020044 if (mt)
45 return mt->num_slots != num_slots ? -EINVAL : 0;
Henrik Rydberg47c78e82010-11-27 09:16:48 +010046
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020047 mt = kzalloc(sizeof(*mt) + num_slots * sizeof(*mt->slots), GFP_KERNEL);
48 if (!mt)
Henrik Rydberg7c1a8782012-08-12 20:47:05 +020049 goto err_mem;
Henrik Rydberg47c78e82010-11-27 09:16:48 +010050
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020051 mt->num_slots = num_slots;
Henrik Rydbergb4adbbe2012-08-11 22:07:55 +020052 mt->flags = flags;
Henrik Rydberg47c78e82010-11-27 09:16:48 +010053 input_set_abs_params(dev, ABS_MT_SLOT, 0, num_slots - 1, 0, 0);
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010054 input_set_abs_params(dev, ABS_MT_TRACKING_ID, 0, TRKID_MAX, 0, 0);
Henrik Rydberg47c78e82010-11-27 09:16:48 +010055
Henrik Rydberg55e49082012-08-22 20:43:22 +020056 if (flags & (INPUT_MT_POINTER | INPUT_MT_DIRECT)) {
57 __set_bit(EV_KEY, dev->evbit);
58 __set_bit(BTN_TOUCH, dev->keybit);
59
60 copy_abs(dev, ABS_X, ABS_MT_POSITION_X);
61 copy_abs(dev, ABS_Y, ABS_MT_POSITION_Y);
62 copy_abs(dev, ABS_PRESSURE, ABS_MT_PRESSURE);
63 }
64 if (flags & INPUT_MT_POINTER) {
65 __set_bit(BTN_TOOL_FINGER, dev->keybit);
66 __set_bit(BTN_TOOL_DOUBLETAP, dev->keybit);
67 if (num_slots >= 3)
68 __set_bit(BTN_TOOL_TRIPLETAP, dev->keybit);
69 if (num_slots >= 4)
70 __set_bit(BTN_TOOL_QUADTAP, dev->keybit);
71 if (num_slots >= 5)
72 __set_bit(BTN_TOOL_QUINTTAP, dev->keybit);
73 __set_bit(INPUT_PROP_POINTER, dev->propbit);
74 }
75 if (flags & INPUT_MT_DIRECT)
76 __set_bit(INPUT_PROP_DIRECT, dev->propbit);
Henrik Rydberg7c1a8782012-08-12 20:47:05 +020077 if (flags & INPUT_MT_TRACK) {
78 unsigned int n2 = num_slots * num_slots;
79 mt->red = kcalloc(n2, sizeof(*mt->red), GFP_KERNEL);
80 if (!mt->red)
81 goto err_mem;
82 }
Henrik Rydberg55e49082012-08-22 20:43:22 +020083
Henrik Rydberg47c78e82010-11-27 09:16:48 +010084 /* Mark slots as 'unused' */
85 for (i = 0; i < num_slots; i++)
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020086 input_mt_set_value(&mt->slots[i], ABS_MT_TRACKING_ID, -1);
Henrik Rydberg47c78e82010-11-27 09:16:48 +010087
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020088 dev->mt = mt;
Henrik Rydberg47c78e82010-11-27 09:16:48 +010089 return 0;
Henrik Rydberg7c1a8782012-08-12 20:47:05 +020090err_mem:
91 kfree(mt);
92 return -ENOMEM;
Henrik Rydberg47c78e82010-11-27 09:16:48 +010093}
Henrik Rydberg8cde8102010-11-27 10:50:54 +010094EXPORT_SYMBOL(input_mt_init_slots);
Henrik Rydberg47c78e82010-11-27 09:16:48 +010095
96/**
97 * input_mt_destroy_slots() - frees the MT slots of the input device
98 * @dev: input device with allocated MT slots
99 *
100 * This function is only needed in error path as the input core will
101 * automatically free the MT slots when the device is destroyed.
102 */
103void input_mt_destroy_slots(struct input_dev *dev)
104{
Henrik Rydberg7c1a8782012-08-12 20:47:05 +0200105 if (dev->mt) {
106 kfree(dev->mt->red);
107 kfree(dev->mt);
108 }
Henrik Rydberg47c78e82010-11-27 09:16:48 +0100109 dev->mt = NULL;
Henrik Rydberg47c78e82010-11-27 09:16:48 +0100110}
111EXPORT_SYMBOL(input_mt_destroy_slots);
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100112
113/**
114 * input_mt_report_slot_state() - report contact state
115 * @dev: input device with allocated MT slots
116 * @tool_type: the tool type to use in this slot
117 * @active: true if contact is active, false otherwise
118 *
119 * Reports a contact via ABS_MT_TRACKING_ID, and optionally
120 * ABS_MT_TOOL_TYPE. If active is true and the slot is currently
121 * inactive, or if the tool type is changed, a new tracking id is
122 * assigned to the slot. The tool type is only reported if the
123 * corresponding absbit field is set.
124 */
125void input_mt_report_slot_state(struct input_dev *dev,
126 unsigned int tool_type, bool active)
127{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200128 struct input_mt *mt = dev->mt;
129 struct input_mt_slot *slot;
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100130 int id;
131
Henrik Rydberg55e49082012-08-22 20:43:22 +0200132 if (!mt)
133 return;
134
135 slot = &mt->slots[mt->slot];
136 slot->frame = mt->frame;
137
138 if (!active) {
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100139 input_event(dev, EV_ABS, ABS_MT_TRACKING_ID, -1);
140 return;
141 }
142
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200143 id = input_mt_get_value(slot, ABS_MT_TRACKING_ID);
144 if (id < 0 || input_mt_get_value(slot, ABS_MT_TOOL_TYPE) != tool_type)
145 id = input_mt_new_trkid(mt);
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100146
147 input_event(dev, EV_ABS, ABS_MT_TRACKING_ID, id);
148 input_event(dev, EV_ABS, ABS_MT_TOOL_TYPE, tool_type);
149}
150EXPORT_SYMBOL(input_mt_report_slot_state);
151
152/**
153 * input_mt_report_finger_count() - report contact count
154 * @dev: input device with allocated MT slots
155 * @count: the number of contacts
156 *
157 * Reports the contact count via BTN_TOOL_FINGER, BTN_TOOL_DOUBLETAP,
158 * BTN_TOOL_TRIPLETAP and BTN_TOOL_QUADTAP.
159 *
160 * The input core ensures only the KEY events already setup for
161 * this device will produce output.
162 */
163void input_mt_report_finger_count(struct input_dev *dev, int count)
164{
165 input_event(dev, EV_KEY, BTN_TOOL_FINGER, count == 1);
166 input_event(dev, EV_KEY, BTN_TOOL_DOUBLETAP, count == 2);
167 input_event(dev, EV_KEY, BTN_TOOL_TRIPLETAP, count == 3);
168 input_event(dev, EV_KEY, BTN_TOOL_QUADTAP, count == 4);
Daniel Kurtzd5051272011-08-23 23:02:48 -0700169 input_event(dev, EV_KEY, BTN_TOOL_QUINTTAP, count == 5);
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100170}
171EXPORT_SYMBOL(input_mt_report_finger_count);
172
173/**
174 * input_mt_report_pointer_emulation() - common pointer emulation
175 * @dev: input device with allocated MT slots
176 * @use_count: report number of active contacts as finger count
177 *
178 * Performs legacy pointer emulation via BTN_TOUCH, ABS_X, ABS_Y and
179 * ABS_PRESSURE. Touchpad finger count is emulated if use_count is true.
180 *
181 * The input core ensures only the KEY and ABS axes already setup for
182 * this device will produce output.
183 */
184void input_mt_report_pointer_emulation(struct input_dev *dev, bool use_count)
185{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200186 struct input_mt *mt = dev->mt;
187 struct input_mt_slot *oldest;
188 int oldid, count, i;
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100189
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200190 if (!mt)
191 return;
192
193 oldest = 0;
194 oldid = mt->trkid;
195 count = 0;
196
197 for (i = 0; i < mt->num_slots; ++i) {
198 struct input_mt_slot *ps = &mt->slots[i];
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100199 int id = input_mt_get_value(ps, ABS_MT_TRACKING_ID);
200
201 if (id < 0)
202 continue;
203 if ((id - oldid) & TRKID_SGN) {
204 oldest = ps;
205 oldid = id;
206 }
207 count++;
208 }
209
210 input_event(dev, EV_KEY, BTN_TOUCH, count > 0);
211 if (use_count)
212 input_mt_report_finger_count(dev, count);
213
214 if (oldest) {
215 int x = input_mt_get_value(oldest, ABS_MT_POSITION_X);
216 int y = input_mt_get_value(oldest, ABS_MT_POSITION_Y);
217 int p = input_mt_get_value(oldest, ABS_MT_PRESSURE);
218
219 input_event(dev, EV_ABS, ABS_X, x);
220 input_event(dev, EV_ABS, ABS_Y, y);
221 input_event(dev, EV_ABS, ABS_PRESSURE, p);
222 } else {
223 input_event(dev, EV_ABS, ABS_PRESSURE, 0);
224 }
225}
226EXPORT_SYMBOL(input_mt_report_pointer_emulation);
Henrik Rydberg55e49082012-08-22 20:43:22 +0200227
228/**
229 * input_mt_sync_frame() - synchronize mt frame
230 * @dev: input device with allocated MT slots
231 *
232 * Close the frame and prepare the internal state for a new one.
233 * Depending on the flags, marks unused slots as inactive and performs
234 * pointer emulation.
235 */
236void input_mt_sync_frame(struct input_dev *dev)
237{
238 struct input_mt *mt = dev->mt;
239 struct input_mt_slot *s;
240
241 if (!mt)
242 return;
243
244 if (mt->flags & INPUT_MT_DROP_UNUSED) {
245 for (s = mt->slots; s != mt->slots + mt->num_slots; s++) {
246 if (s->frame == mt->frame)
247 continue;
248 input_mt_slot(dev, s - mt->slots);
249 input_event(dev, EV_ABS, ABS_MT_TRACKING_ID, -1);
250 }
251 }
252
253 input_mt_report_pointer_emulation(dev, (mt->flags & INPUT_MT_POINTER));
254
255 mt->frame++;
256}
257EXPORT_SYMBOL(input_mt_sync_frame);
Henrik Rydberg7c1a8782012-08-12 20:47:05 +0200258
259static int adjust_dual(int *begin, int step, int *end, int eq)
260{
261 int f, *p, s, c;
262
263 if (begin == end)
264 return 0;
265
266 f = *begin;
267 p = begin + step;
268 s = p == end ? f + 1 : *p;
269
270 for (; p != end; p += step)
271 if (*p < f)
272 s = f, f = *p;
273 else if (*p < s)
274 s = *p;
275
276 c = (f + s + 1) / 2;
277 if (c == 0 || (c > 0 && !eq))
278 return 0;
279 if (s < 0)
280 c *= 2;
281
282 for (p = begin; p != end; p += step)
283 *p -= c;
284
285 return (c < s && s <= 0) || (f >= 0 && f < c);
286}
287
288static void find_reduced_matrix(int *w, int nr, int nc, int nrc)
289{
290 int i, k, sum;
291
292 for (k = 0; k < nrc; k++) {
293 for (i = 0; i < nr; i++)
294 adjust_dual(w + i, nr, w + i + nrc, nr <= nc);
295 sum = 0;
296 for (i = 0; i < nrc; i += nr)
297 sum += adjust_dual(w + i, 1, w + i + nr, nc <= nr);
298 if (!sum)
299 break;
300 }
301}
302
303static int input_mt_set_matrix(struct input_mt *mt,
304 const struct input_mt_pos *pos, int num_pos)
305{
306 const struct input_mt_pos *p;
307 struct input_mt_slot *s;
308 int *w = mt->red;
309 int x, y;
310
311 for (s = mt->slots; s != mt->slots + mt->num_slots; s++) {
312 if (!input_mt_is_active(s))
313 continue;
314 x = input_mt_get_value(s, ABS_MT_POSITION_X);
315 y = input_mt_get_value(s, ABS_MT_POSITION_Y);
316 for (p = pos; p != pos + num_pos; p++) {
317 int dx = x - p->x, dy = y - p->y;
318 *w++ = dx * dx + dy * dy;
319 }
320 }
321
322 return w - mt->red;
323}
324
325static void input_mt_set_slots(struct input_mt *mt,
326 int *slots, int num_pos)
327{
328 struct input_mt_slot *s;
329 int *w = mt->red, *p;
330
331 for (p = slots; p != slots + num_pos; p++)
332 *p = -1;
333
334 for (s = mt->slots; s != mt->slots + mt->num_slots; s++) {
335 if (!input_mt_is_active(s))
336 continue;
337 for (p = slots; p != slots + num_pos; p++)
338 if (*w++ < 0)
339 *p = s - mt->slots;
340 }
341
342 for (s = mt->slots; s != mt->slots + mt->num_slots; s++) {
343 if (input_mt_is_active(s))
344 continue;
345 for (p = slots; p != slots + num_pos; p++)
346 if (*p < 0) {
347 *p = s - mt->slots;
348 break;
349 }
350 }
351}
352
353/**
354 * input_mt_assign_slots() - perform a best-match assignment
355 * @dev: input device with allocated MT slots
356 * @slots: the slot assignment to be filled
357 * @pos: the position array to match
358 * @num_pos: number of positions
359 *
360 * Performs a best match against the current contacts and returns
361 * the slot assignment list. New contacts are assigned to unused
362 * slots.
363 *
364 * Returns zero on success, or negative error in case of failure.
365 */
366int input_mt_assign_slots(struct input_dev *dev, int *slots,
367 const struct input_mt_pos *pos, int num_pos)
368{
369 struct input_mt *mt = dev->mt;
370 int nrc;
371
372 if (!mt || !mt->red)
373 return -ENXIO;
374 if (num_pos > mt->num_slots)
375 return -EINVAL;
376 if (num_pos < 1)
377 return 0;
378
379 nrc = input_mt_set_matrix(mt, pos, num_pos);
380 find_reduced_matrix(mt->red, num_pos, nrc / num_pos, nrc);
381 input_mt_set_slots(mt, slots, num_pos);
382
383 return 0;
384}
385EXPORT_SYMBOL(input_mt_assign_slots);