blob: 37ee1f925d232a67d4a6053ea1025922c17ed14b [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 Rydberg8cde8102010-11-27 10:50:54 +010045 input_set_events_per_packet(dev, 6 * num_slots);
Henrik Rydberg47c78e82010-11-27 09:16:48 +010046
47 /* Mark slots as 'unused' */
48 for (i = 0; i < num_slots; i++)
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020049 input_mt_set_value(&mt->slots[i], ABS_MT_TRACKING_ID, -1);
Henrik Rydberg47c78e82010-11-27 09:16:48 +010050
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020051 dev->mt = mt;
Henrik Rydberg47c78e82010-11-27 09:16:48 +010052 return 0;
53}
Henrik Rydberg8cde8102010-11-27 10:50:54 +010054EXPORT_SYMBOL(input_mt_init_slots);
Henrik Rydberg47c78e82010-11-27 09:16:48 +010055
56/**
57 * input_mt_destroy_slots() - frees the MT slots of the input device
58 * @dev: input device with allocated MT slots
59 *
60 * This function is only needed in error path as the input core will
61 * automatically free the MT slots when the device is destroyed.
62 */
63void input_mt_destroy_slots(struct input_dev *dev)
64{
65 kfree(dev->mt);
66 dev->mt = NULL;
Henrik Rydberg47c78e82010-11-27 09:16:48 +010067}
68EXPORT_SYMBOL(input_mt_destroy_slots);
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010069
70/**
71 * input_mt_report_slot_state() - report contact state
72 * @dev: input device with allocated MT slots
73 * @tool_type: the tool type to use in this slot
74 * @active: true if contact is active, false otherwise
75 *
76 * Reports a contact via ABS_MT_TRACKING_ID, and optionally
77 * ABS_MT_TOOL_TYPE. If active is true and the slot is currently
78 * inactive, or if the tool type is changed, a new tracking id is
79 * assigned to the slot. The tool type is only reported if the
80 * corresponding absbit field is set.
81 */
82void input_mt_report_slot_state(struct input_dev *dev,
83 unsigned int tool_type, bool active)
84{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020085 struct input_mt *mt = dev->mt;
86 struct input_mt_slot *slot;
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010087 int id;
88
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020089 if (!mt || !active) {
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010090 input_event(dev, EV_ABS, ABS_MT_TRACKING_ID, -1);
91 return;
92 }
93
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020094 slot = &mt->slots[mt->slot];
95 id = input_mt_get_value(slot, ABS_MT_TRACKING_ID);
96 if (id < 0 || input_mt_get_value(slot, ABS_MT_TOOL_TYPE) != tool_type)
97 id = input_mt_new_trkid(mt);
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010098
99 input_event(dev, EV_ABS, ABS_MT_TRACKING_ID, id);
100 input_event(dev, EV_ABS, ABS_MT_TOOL_TYPE, tool_type);
101}
102EXPORT_SYMBOL(input_mt_report_slot_state);
103
104/**
105 * input_mt_report_finger_count() - report contact count
106 * @dev: input device with allocated MT slots
107 * @count: the number of contacts
108 *
109 * Reports the contact count via BTN_TOOL_FINGER, BTN_TOOL_DOUBLETAP,
110 * BTN_TOOL_TRIPLETAP and BTN_TOOL_QUADTAP.
111 *
112 * The input core ensures only the KEY events already setup for
113 * this device will produce output.
114 */
115void input_mt_report_finger_count(struct input_dev *dev, int count)
116{
117 input_event(dev, EV_KEY, BTN_TOOL_FINGER, count == 1);
118 input_event(dev, EV_KEY, BTN_TOOL_DOUBLETAP, count == 2);
119 input_event(dev, EV_KEY, BTN_TOOL_TRIPLETAP, count == 3);
120 input_event(dev, EV_KEY, BTN_TOOL_QUADTAP, count == 4);
Daniel Kurtzd5051272011-08-23 23:02:48 -0700121 input_event(dev, EV_KEY, BTN_TOOL_QUINTTAP, count == 5);
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100122}
123EXPORT_SYMBOL(input_mt_report_finger_count);
124
125/**
126 * input_mt_report_pointer_emulation() - common pointer emulation
127 * @dev: input device with allocated MT slots
128 * @use_count: report number of active contacts as finger count
129 *
130 * Performs legacy pointer emulation via BTN_TOUCH, ABS_X, ABS_Y and
131 * ABS_PRESSURE. Touchpad finger count is emulated if use_count is true.
132 *
133 * The input core ensures only the KEY and ABS axes already setup for
134 * this device will produce output.
135 */
136void input_mt_report_pointer_emulation(struct input_dev *dev, bool use_count)
137{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200138 struct input_mt *mt = dev->mt;
139 struct input_mt_slot *oldest;
140 int oldid, count, i;
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100141
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200142 if (!mt)
143 return;
144
145 oldest = 0;
146 oldid = mt->trkid;
147 count = 0;
148
149 for (i = 0; i < mt->num_slots; ++i) {
150 struct input_mt_slot *ps = &mt->slots[i];
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100151 int id = input_mt_get_value(ps, ABS_MT_TRACKING_ID);
152
153 if (id < 0)
154 continue;
155 if ((id - oldid) & TRKID_SGN) {
156 oldest = ps;
157 oldid = id;
158 }
159 count++;
160 }
161
162 input_event(dev, EV_KEY, BTN_TOUCH, count > 0);
163 if (use_count)
164 input_mt_report_finger_count(dev, count);
165
166 if (oldest) {
167 int x = input_mt_get_value(oldest, ABS_MT_POSITION_X);
168 int y = input_mt_get_value(oldest, ABS_MT_POSITION_Y);
169 int p = input_mt_get_value(oldest, ABS_MT_PRESSURE);
170
171 input_event(dev, EV_ABS, ABS_X, x);
172 input_event(dev, EV_ABS, ABS_Y, y);
173 input_event(dev, EV_ABS, ABS_PRESSURE, p);
174 } else {
175 input_event(dev, EV_ABS, ABS_PRESSURE, 0);
176 }
177}
178EXPORT_SYMBOL(input_mt_report_pointer_emulation);