blob: 6020d06652a89f388224e14e853c0aa3f84f67a9 [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 Rydberg8cde8102010-11-27 10:50:54 +010028int input_mt_init_slots(struct input_dev *dev, unsigned int num_slots)
Henrik Rydberg47c78e82010-11-27 09:16:48 +010029{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020030 struct input_mt *mt = dev->mt;
Henrik Rydberg47c78e82010-11-27 09:16:48 +010031 int i;
32
33 if (!num_slots)
34 return 0;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020035 if (mt)
36 return mt->num_slots != num_slots ? -EINVAL : 0;
Henrik Rydberg47c78e82010-11-27 09:16:48 +010037
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020038 mt = kzalloc(sizeof(*mt) + num_slots * sizeof(*mt->slots), GFP_KERNEL);
39 if (!mt)
Henrik Rydberg47c78e82010-11-27 09:16:48 +010040 return -ENOMEM;
41
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020042 mt->num_slots = num_slots;
Henrik Rydberg47c78e82010-11-27 09:16:48 +010043 input_set_abs_params(dev, ABS_MT_SLOT, 0, num_slots - 1, 0, 0);
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010044 input_set_abs_params(dev, ABS_MT_TRACKING_ID, 0, TRKID_MAX, 0, 0);
Henrik Rydberg47c78e82010-11-27 09:16:48 +010045
46 /* Mark slots as 'unused' */
47 for (i = 0; i < num_slots; i++)
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020048 input_mt_set_value(&mt->slots[i], ABS_MT_TRACKING_ID, -1);
Henrik Rydberg47c78e82010-11-27 09:16:48 +010049
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020050 dev->mt = mt;
Henrik Rydberg47c78e82010-11-27 09:16:48 +010051 return 0;
52}
Henrik Rydberg8cde8102010-11-27 10:50:54 +010053EXPORT_SYMBOL(input_mt_init_slots);
Henrik Rydberg47c78e82010-11-27 09:16:48 +010054
55/**
56 * input_mt_destroy_slots() - frees the MT slots of the input device
57 * @dev: input device with allocated MT slots
58 *
59 * This function is only needed in error path as the input core will
60 * automatically free the MT slots when the device is destroyed.
61 */
62void input_mt_destroy_slots(struct input_dev *dev)
63{
64 kfree(dev->mt);
65 dev->mt = NULL;
Henrik Rydberg47c78e82010-11-27 09:16:48 +010066}
67EXPORT_SYMBOL(input_mt_destroy_slots);
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010068
69/**
70 * input_mt_report_slot_state() - report contact state
71 * @dev: input device with allocated MT slots
72 * @tool_type: the tool type to use in this slot
73 * @active: true if contact is active, false otherwise
74 *
75 * Reports a contact via ABS_MT_TRACKING_ID, and optionally
76 * ABS_MT_TOOL_TYPE. If active is true and the slot is currently
77 * inactive, or if the tool type is changed, a new tracking id is
78 * assigned to the slot. The tool type is only reported if the
79 * corresponding absbit field is set.
80 */
81void input_mt_report_slot_state(struct input_dev *dev,
82 unsigned int tool_type, bool active)
83{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020084 struct input_mt *mt = dev->mt;
85 struct input_mt_slot *slot;
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010086 int id;
87
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020088 if (!mt || !active) {
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010089 input_event(dev, EV_ABS, ABS_MT_TRACKING_ID, -1);
90 return;
91 }
92
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020093 slot = &mt->slots[mt->slot];
94 id = input_mt_get_value(slot, ABS_MT_TRACKING_ID);
95 if (id < 0 || input_mt_get_value(slot, ABS_MT_TOOL_TYPE) != tool_type)
96 id = input_mt_new_trkid(mt);
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010097
98 input_event(dev, EV_ABS, ABS_MT_TRACKING_ID, id);
99 input_event(dev, EV_ABS, ABS_MT_TOOL_TYPE, tool_type);
100}
101EXPORT_SYMBOL(input_mt_report_slot_state);
102
103/**
104 * input_mt_report_finger_count() - report contact count
105 * @dev: input device with allocated MT slots
106 * @count: the number of contacts
107 *
108 * Reports the contact count via BTN_TOOL_FINGER, BTN_TOOL_DOUBLETAP,
109 * BTN_TOOL_TRIPLETAP and BTN_TOOL_QUADTAP.
110 *
111 * The input core ensures only the KEY events already setup for
112 * this device will produce output.
113 */
114void input_mt_report_finger_count(struct input_dev *dev, int count)
115{
116 input_event(dev, EV_KEY, BTN_TOOL_FINGER, count == 1);
117 input_event(dev, EV_KEY, BTN_TOOL_DOUBLETAP, count == 2);
118 input_event(dev, EV_KEY, BTN_TOOL_TRIPLETAP, count == 3);
119 input_event(dev, EV_KEY, BTN_TOOL_QUADTAP, count == 4);
Daniel Kurtzd5051272011-08-23 23:02:48 -0700120 input_event(dev, EV_KEY, BTN_TOOL_QUINTTAP, count == 5);
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100121}
122EXPORT_SYMBOL(input_mt_report_finger_count);
123
124/**
125 * input_mt_report_pointer_emulation() - common pointer emulation
126 * @dev: input device with allocated MT slots
127 * @use_count: report number of active contacts as finger count
128 *
129 * Performs legacy pointer emulation via BTN_TOUCH, ABS_X, ABS_Y and
130 * ABS_PRESSURE. Touchpad finger count is emulated if use_count is true.
131 *
132 * The input core ensures only the KEY and ABS axes already setup for
133 * this device will produce output.
134 */
135void input_mt_report_pointer_emulation(struct input_dev *dev, bool use_count)
136{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200137 struct input_mt *mt = dev->mt;
138 struct input_mt_slot *oldest;
139 int oldid, count, i;
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100140
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200141 if (!mt)
142 return;
143
144 oldest = 0;
145 oldid = mt->trkid;
146 count = 0;
147
148 for (i = 0; i < mt->num_slots; ++i) {
149 struct input_mt_slot *ps = &mt->slots[i];
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100150 int id = input_mt_get_value(ps, ABS_MT_TRACKING_ID);
151
152 if (id < 0)
153 continue;
154 if ((id - oldid) & TRKID_SGN) {
155 oldest = ps;
156 oldid = id;
157 }
158 count++;
159 }
160
161 input_event(dev, EV_KEY, BTN_TOUCH, count > 0);
162 if (use_count)
163 input_mt_report_finger_count(dev, count);
164
165 if (oldest) {
166 int x = input_mt_get_value(oldest, ABS_MT_POSITION_X);
167 int y = input_mt_get_value(oldest, ABS_MT_POSITION_Y);
168 int p = input_mt_get_value(oldest, ABS_MT_PRESSURE);
169
170 input_event(dev, EV_ABS, ABS_X, x);
171 input_event(dev, EV_ABS, ABS_Y, y);
172 input_event(dev, EV_ABS, ABS_PRESSURE, p);
173 } else {
174 input_event(dev, EV_ABS, ABS_PRESSURE, 0);
175 }
176}
177EXPORT_SYMBOL(input_mt_report_pointer_emulation);