blob: 6b6f7c8e95bfaf5d8dc3e82f9dced72717ce1a63 [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 */
22
Henrik Rydberg47c78e82010-11-27 09:16:48 +010023/**
24 * struct input_mt_slot - represents the state of an input MT slot
25 * @abs: holds current values of ABS_MT axes for this slot
Henrik Rydberg55e49082012-08-22 20:43:22 +020026 * @frame: last frame at which input_mt_report_slot_state() was called
Henrik Rydberg47c78e82010-11-27 09:16:48 +010027 */
28struct input_mt_slot {
29 int abs[ABS_MT_LAST - ABS_MT_FIRST + 1];
Henrik Rydberg55e49082012-08-22 20:43:22 +020030 unsigned int frame;
Henrik Rydberg47c78e82010-11-27 09:16:48 +010031};
32
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020033/**
34 * struct input_mt - state of tracked contacts
35 * @trkid: stores MT tracking ID for the next contact
36 * @num_slots: number of MT slots the device uses
37 * @slot: MT slot currently being transmitted
Henrik Rydbergb4adbbe2012-08-11 22:07:55 +020038 * @flags: input_mt operation flags
Henrik Rydberg55e49082012-08-22 20:43:22 +020039 * @frame: increases every time input_mt_sync_frame() is called
Henrik Rydberg7c1a8782012-08-12 20:47:05 +020040 * @red: reduced cost matrix for in-kernel tracking
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020041 * @slots: array of slots holding current values of tracked contacts
42 */
43struct input_mt {
44 int trkid;
45 int num_slots;
46 int slot;
Henrik Rydbergb4adbbe2012-08-11 22:07:55 +020047 unsigned int flags;
Henrik Rydberg55e49082012-08-22 20:43:22 +020048 unsigned int frame;
Henrik Rydberg7c1a8782012-08-12 20:47:05 +020049 int *red;
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020050 struct input_mt_slot slots[];
51};
52
Henrik Rydberg47c78e82010-11-27 09:16:48 +010053static inline void input_mt_set_value(struct input_mt_slot *slot,
54 unsigned code, int value)
55{
56 slot->abs[code - ABS_MT_FIRST] = value;
57}
58
59static inline int input_mt_get_value(const struct input_mt_slot *slot,
60 unsigned code)
61{
62 return slot->abs[code - ABS_MT_FIRST];
63}
64
Henrik Rydberg7c1a8782012-08-12 20:47:05 +020065static inline bool input_mt_is_active(const struct input_mt_slot *slot)
66{
67 return input_mt_get_value(slot, ABS_MT_TRACKING_ID) >= 0;
68}
69
Henrik Rydbergb4adbbe2012-08-11 22:07:55 +020070int input_mt_init_slots(struct input_dev *dev, unsigned int num_slots,
71 unsigned int flags);
Henrik Rydberg47c78e82010-11-27 09:16:48 +010072void input_mt_destroy_slots(struct input_dev *dev);
73
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020074static inline int input_mt_new_trkid(struct input_mt *mt)
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010075{
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020076 return mt->trkid++ & TRKID_MAX;
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010077}
78
Henrik Rydberg47c78e82010-11-27 09:16:48 +010079static inline void input_mt_slot(struct input_dev *dev, int slot)
80{
81 input_event(dev, EV_ABS, ABS_MT_SLOT, slot);
82}
83
Henrik Rydbergb89529a2012-01-12 19:40:34 +010084static inline bool input_is_mt_value(int axis)
85{
86 return axis >= ABS_MT_FIRST && axis <= ABS_MT_LAST;
87}
88
Jeff Brown80b48952011-04-18 10:08:02 -070089static inline bool input_is_mt_axis(int axis)
90{
Henrik Rydbergb89529a2012-01-12 19:40:34 +010091 return axis == ABS_MT_SLOT || input_is_mt_value(axis);
Jeff Brown80b48952011-04-18 10:08:02 -070092}
93
Henrik Rydbergc5f4dec2010-12-15 13:50:34 +010094void input_mt_report_slot_state(struct input_dev *dev,
95 unsigned int tool_type, bool active);
96
97void input_mt_report_finger_count(struct input_dev *dev, int count);
98void input_mt_report_pointer_emulation(struct input_dev *dev, bool use_count);
99
Henrik Rydberg55e49082012-08-22 20:43:22 +0200100void input_mt_sync_frame(struct input_dev *dev);
101
Henrik Rydberg7c1a8782012-08-12 20:47:05 +0200102/**
103 * struct input_mt_pos - contact position
104 * @x: horizontal coordinate
105 * @y: vertical coordinate
106 */
107struct input_mt_pos {
108 s16 x, y;
109};
110
111int input_mt_assign_slots(struct input_dev *dev, int *slots,
112 const struct input_mt_pos *pos, int num_pos);
113
Henrik Rydberg47c78e82010-11-27 09:16:48 +0100114#endif