blob: d7188de4db968c14c5db1a44fca6421aec22d041 [file] [log] [blame]
Henrik Rydberg47c78e82010-11-27 09:16:48 +01001#ifndef _INPUT_MT_H
2#define _INPUT_MT_H
3
4/*
5 * Input Multitouch Library
6 *
7 * Copyright (c) 2010 Henrik Rydberg
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License version 2 as published by
11 * the Free Software Foundation.
12 */
13
14#include <linux/input.h>
15
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010016#define TRKID_MAX 0xffff
17
Henrik Rydberg55e49082012-08-22 20:43:22 +020018#define INPUT_MT_POINTER 0x0001 /* pointer device, e.g. trackpad */
19#define INPUT_MT_DIRECT 0x0002 /* direct device, e.g. touchscreen */
20#define INPUT_MT_DROP_UNUSED 0x0004 /* drop contacts not seen in frame */
Henrik Rydberg7c1a8782012-08-12 20:47:05 +020021#define INPUT_MT_TRACK 0x0008 /* use in-kernel tracking */
Henrik Rydberga0ef6a32013-04-07 20:52:22 -070022#define INPUT_MT_SEMI_MT 0x0010 /* semi-mt device, finger count handled manually */
Henrik Rydberg7c1a8782012-08-12 20:47:05 +020023
Henrik Rydberg47c78e82010-11-27 09:16:48 +010024/**
25 * struct input_mt_slot - represents the state of an input MT slot
26 * @abs: holds current values of ABS_MT axes for this slot
Henrik Rydberg55e49082012-08-22 20:43:22 +020027 * @frame: last frame at which input_mt_report_slot_state() was called
Henrik Rydberg17a465a2012-09-01 09:27:20 +020028 * @key: optional driver designation of this slot
Henrik Rydberg47c78e82010-11-27 09:16:48 +010029 */
30struct input_mt_slot {
31 int abs[ABS_MT_LAST - ABS_MT_FIRST + 1];
Henrik Rydberg55e49082012-08-22 20:43:22 +020032 unsigned int frame;
Henrik Rydberg17a465a2012-09-01 09:27:20 +020033 unsigned int key;
Henrik Rydberg47c78e82010-11-27 09:16:48 +010034};
35
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020036/**
37 * struct input_mt - state of tracked contacts
38 * @trkid: stores MT tracking ID for the next contact
39 * @num_slots: number of MT slots the device uses
40 * @slot: MT slot currently being transmitted
Henrik Rydbergb4adbbe2012-08-11 22:07:55 +020041 * @flags: input_mt operation flags
Henrik Rydberg55e49082012-08-22 20:43:22 +020042 * @frame: increases every time input_mt_sync_frame() is called
Henrik Rydberg7c1a8782012-08-12 20:47:05 +020043 * @red: reduced cost matrix for in-kernel tracking
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020044 * @slots: array of slots holding current values of tracked contacts
45 */
46struct input_mt {
47 int trkid;
48 int num_slots;
49 int slot;
Henrik Rydbergb4adbbe2012-08-11 22:07:55 +020050 unsigned int flags;
Henrik Rydberg55e49082012-08-22 20:43:22 +020051 unsigned int frame;
Henrik Rydberg7c1a8782012-08-12 20:47:05 +020052 int *red;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020053 struct input_mt_slot slots[];
54};
55
Henrik Rydberg47c78e82010-11-27 09:16:48 +010056static inline void input_mt_set_value(struct input_mt_slot *slot,
57 unsigned code, int value)
58{
59 slot->abs[code - ABS_MT_FIRST] = value;
60}
61
62static inline int input_mt_get_value(const struct input_mt_slot *slot,
63 unsigned code)
64{
65 return slot->abs[code - ABS_MT_FIRST];
66}
67
Henrik Rydberg7c1a8782012-08-12 20:47:05 +020068static inline bool input_mt_is_active(const struct input_mt_slot *slot)
69{
70 return input_mt_get_value(slot, ABS_MT_TRACKING_ID) >= 0;
71}
72
Benjamin Tissoires29807d12012-11-14 16:59:22 +010073static inline bool input_mt_is_used(const struct input_mt *mt,
74 const struct input_mt_slot *slot)
75{
76 return slot->frame == mt->frame;
77}
78
Henrik Rydbergb4adbbe2012-08-11 22:07:55 +020079int input_mt_init_slots(struct input_dev *dev, unsigned int num_slots,
80 unsigned int flags);
Henrik Rydberg47c78e82010-11-27 09:16:48 +010081void input_mt_destroy_slots(struct input_dev *dev);
82
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020083static inline int input_mt_new_trkid(struct input_mt *mt)
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010084{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020085 return mt->trkid++ & TRKID_MAX;
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010086}
87
Henrik Rydberg47c78e82010-11-27 09:16:48 +010088static inline void input_mt_slot(struct input_dev *dev, int slot)
89{
90 input_event(dev, EV_ABS, ABS_MT_SLOT, slot);
91}
92
Henrik Rydbergb89529a2012-01-12 19:40:34 +010093static inline bool input_is_mt_value(int axis)
94{
95 return axis >= ABS_MT_FIRST && axis <= ABS_MT_LAST;
96}
97
Jeff Brown80b48952011-04-18 10:08:02 -070098static inline bool input_is_mt_axis(int axis)
99{
Henrik Rydbergb89529a2012-01-12 19:40:34 +0100100 return axis == ABS_MT_SLOT || input_is_mt_value(axis);
Jeff Brown80b48952011-04-18 10:08:02 -0700101}
102
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100103void input_mt_report_slot_state(struct input_dev *dev,
104 unsigned int tool_type, bool active);
105
106void input_mt_report_finger_count(struct input_dev *dev, int count);
107void input_mt_report_pointer_emulation(struct input_dev *dev, bool use_count);
Henrik Rydbergf8ec8942014-07-25 17:16:42 -0700108void input_mt_drop_unused(struct input_dev *dev);
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +0100109
Henrik Rydberg55e49082012-08-22 20:43:22 +0200110void input_mt_sync_frame(struct input_dev *dev);
111
Henrik Rydberg7c1a8782012-08-12 20:47:05 +0200112/**
113 * struct input_mt_pos - contact position
114 * @x: horizontal coordinate
115 * @y: vertical coordinate
116 */
117struct input_mt_pos {
118 s16 x, y;
119};
120
121int input_mt_assign_slots(struct input_dev *dev, int *slots,
Henrik Rydberg448c7f382015-02-01 11:25:14 -0800122 const struct input_mt_pos *pos, int num_pos,
123 int dmax);
Henrik Rydberg7c1a8782012-08-12 20:47:05 +0200124
Henrik Rydberg17a465a2012-09-01 09:27:20 +0200125int input_mt_get_slot_by_key(struct input_dev *dev, int key);
126
Henrik Rydberg47c78e82010-11-27 09:16:48 +0100127#endif