blob: 1985f27f427a583aaec4caf7fb29bdee2b9196aa [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 Rydberg47c78e82010-11-27 09:16:48 +010017/**
Henrik Rydberg8cde8102010-11-27 10:50:54 +010018 * input_mt_init_slots() - initialize MT input slots
Henrik Rydberg47c78e82010-11-27 09:16:48 +010019 * @dev: input device supporting MT events and finger tracking
20 * @num_slots: number of slots used by the device
21 *
Henrik Rydberg8cde8102010-11-27 10:50:54 +010022 * This function allocates all necessary memory for MT slot handling
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010023 * 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.
Henrik Rydberg47c78e82010-11-27 09:16:48 +010027 */
Henrik Rydbergb4adbbe2012-08-11 22:07:55 +020028int input_mt_init_slots(struct input_dev *dev, unsigned int num_slots,
29 unsigned int flags)
Henrik Rydberg47c78e82010-11-27 09:16:48 +010030{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020031 struct input_mt *mt = dev->mt;
Henrik Rydberg47c78e82010-11-27 09:16:48 +010032 int i;
33
34 if (!num_slots)
35 return 0;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020036 if (mt)
37 return mt->num_slots != num_slots ? -EINVAL : 0;
Henrik Rydberg47c78e82010-11-27 09:16:48 +010038
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020039 mt = kzalloc(sizeof(*mt) + num_slots * sizeof(*mt->slots), GFP_KERNEL);
40 if (!mt)
Henrik Rydberg47c78e82010-11-27 09:16:48 +010041 return -ENOMEM;
42
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020043 mt->num_slots = num_slots;
Henrik Rydbergb4adbbe2012-08-11 22:07:55 +020044 mt->flags = flags;
Henrik Rydberg47c78e82010-11-27 09:16:48 +010045 input_set_abs_params(dev, ABS_MT_SLOT, 0, num_slots - 1, 0, 0);
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010046 input_set_abs_params(dev, ABS_MT_TRACKING_ID, 0, TRKID_MAX, 0, 0);
Henrik Rydberg47c78e82010-11-27 09:16:48 +010047
48 /* Mark slots as 'unused' */
49 for (i = 0; i < num_slots; i++)
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020050 input_mt_set_value(&mt->slots[i], ABS_MT_TRACKING_ID, -1);
Henrik Rydberg47c78e82010-11-27 09:16:48 +010051
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020052 dev->mt = mt;
Henrik Rydberg47c78e82010-11-27 09:16:48 +010053 return 0;
54}
Henrik Rydberg8cde8102010-11-27 10:50:54 +010055EXPORT_SYMBOL(input_mt_init_slots);
Henrik Rydberg47c78e82010-11-27 09:16:48 +010056
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;
Henrik Rydberg47c78e82010-11-27 09:16:48 +010068}
69EXPORT_SYMBOL(input_mt_destroy_slots);
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010070
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{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020086 struct input_mt *mt = dev->mt;
87 struct input_mt_slot *slot;
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010088 int id;
89
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020090 if (!mt || !active) {
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010091 input_event(dev, EV_ABS, ABS_MT_TRACKING_ID, -1);
92 return;
93 }
94
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020095 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);
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010099
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);
Daniel Kurtzd5051272011-08-23 23:02:48 -0700122 input_event(dev, EV_KEY, BTN_TOOL_QUINTTAP, count == 5);
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100123}
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{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200139 struct input_mt *mt = dev->mt;
140 struct input_mt_slot *oldest;
141 int oldid, count, i;
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100142
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200143 if (!mt)
144 return;
145
146 oldest = 0;
147 oldid = mt->trkid;
148 count = 0;
149
150 for (i = 0; i < mt->num_slots; ++i) {
151 struct input_mt_slot *ps = &mt->slots[i];
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100152 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);