| 
									
										
										
										
											2010-11-27 09:16:48 +01:00
										 |  |  | #ifndef _INPUT_MT_H
 | 
					
						
							|  |  |  | #define _INPUT_MT_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Input Multitouch Library | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2010 Henrik Rydberg | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify it | 
					
						
							|  |  |  |  * under the terms of the GNU General Public License version 2 as published by | 
					
						
							|  |  |  |  * the Free Software Foundation. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/input.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-15 13:50:34 +01:00
										 |  |  | #define TRKID_MAX	0xffff
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-22 20:43:22 +02:00
										 |  |  | #define INPUT_MT_POINTER	0x0001	/* pointer device, e.g. trackpad */
 | 
					
						
							|  |  |  | #define INPUT_MT_DIRECT		0x0002	/* direct device, e.g. touchscreen */
 | 
					
						
							|  |  |  | #define INPUT_MT_DROP_UNUSED	0x0004	/* drop contacts not seen in frame */
 | 
					
						
							| 
									
										
										
										
											2012-08-12 20:47:05 +02:00
										 |  |  | #define INPUT_MT_TRACK		0x0008	/* use in-kernel tracking */
 | 
					
						
							| 
									
										
										
										
											2013-04-07 20:52:22 -07:00
										 |  |  | #define INPUT_MT_SEMI_MT	0x0010	/* semi-mt device, finger count handled manually */
 | 
					
						
							| 
									
										
										
										
											2012-08-12 20:47:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-27 09:16:48 +01:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * struct input_mt_slot - represents the state of an input MT slot | 
					
						
							|  |  |  |  * @abs: holds current values of ABS_MT axes for this slot | 
					
						
							| 
									
										
										
										
											2012-08-22 20:43:22 +02:00
										 |  |  |  * @frame: last frame at which input_mt_report_slot_state() was called | 
					
						
							| 
									
										
										
										
											2012-09-01 09:27:20 +02:00
										 |  |  |  * @key: optional driver designation of this slot | 
					
						
							| 
									
										
										
										
											2010-11-27 09:16:48 +01:00
										 |  |  |  */ | 
					
						
							|  |  |  | struct input_mt_slot { | 
					
						
							|  |  |  | 	int abs[ABS_MT_LAST - ABS_MT_FIRST + 1]; | 
					
						
							| 
									
										
										
										
											2012-08-22 20:43:22 +02:00
										 |  |  | 	unsigned int frame; | 
					
						
							| 
									
										
										
										
											2012-09-01 09:27:20 +02:00
										 |  |  | 	unsigned int key; | 
					
						
							| 
									
										
										
										
											2010-11-27 09:16:48 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-15 15:15:58 +02:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * struct input_mt - state of tracked contacts | 
					
						
							|  |  |  |  * @trkid: stores MT tracking ID for the next contact | 
					
						
							|  |  |  |  * @num_slots: number of MT slots the device uses | 
					
						
							|  |  |  |  * @slot: MT slot currently being transmitted | 
					
						
							| 
									
										
										
										
											2012-08-11 22:07:55 +02:00
										 |  |  |  * @flags: input_mt operation flags | 
					
						
							| 
									
										
										
										
											2012-08-22 20:43:22 +02:00
										 |  |  |  * @frame: increases every time input_mt_sync_frame() is called | 
					
						
							| 
									
										
										
										
											2012-08-12 20:47:05 +02:00
										 |  |  |  * @red: reduced cost matrix for in-kernel tracking | 
					
						
							| 
									
										
										
										
											2012-09-15 15:15:58 +02:00
										 |  |  |  * @slots: array of slots holding current values of tracked contacts | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | struct input_mt { | 
					
						
							|  |  |  | 	int trkid; | 
					
						
							|  |  |  | 	int num_slots; | 
					
						
							|  |  |  | 	int slot; | 
					
						
							| 
									
										
										
										
											2012-08-11 22:07:55 +02:00
										 |  |  | 	unsigned int flags; | 
					
						
							| 
									
										
										
										
											2012-08-22 20:43:22 +02:00
										 |  |  | 	unsigned int frame; | 
					
						
							| 
									
										
										
										
											2012-08-12 20:47:05 +02:00
										 |  |  | 	int *red; | 
					
						
							| 
									
										
										
										
											2012-09-15 15:15:58 +02:00
										 |  |  | 	struct input_mt_slot slots[]; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-27 09:16:48 +01:00
										 |  |  | static inline void input_mt_set_value(struct input_mt_slot *slot, | 
					
						
							|  |  |  | 				      unsigned code, int value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	slot->abs[code - ABS_MT_FIRST] = value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline int input_mt_get_value(const struct input_mt_slot *slot, | 
					
						
							|  |  |  | 				     unsigned code) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return slot->abs[code - ABS_MT_FIRST]; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-12 20:47:05 +02:00
										 |  |  | static inline bool input_mt_is_active(const struct input_mt_slot *slot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return input_mt_get_value(slot, ABS_MT_TRACKING_ID) >= 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-14 16:59:22 +01:00
										 |  |  | static inline bool input_mt_is_used(const struct input_mt *mt, | 
					
						
							|  |  |  | 				    const struct input_mt_slot *slot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return slot->frame == mt->frame; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-11 22:07:55 +02:00
										 |  |  | int input_mt_init_slots(struct input_dev *dev, unsigned int num_slots, | 
					
						
							|  |  |  | 			unsigned int flags); | 
					
						
							| 
									
										
										
										
											2010-11-27 09:16:48 +01:00
										 |  |  | void input_mt_destroy_slots(struct input_dev *dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-15 15:15:58 +02:00
										 |  |  | static inline int input_mt_new_trkid(struct input_mt *mt) | 
					
						
							| 
									
										
										
										
											2010-12-15 13:50:34 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-09-15 15:15:58 +02:00
										 |  |  | 	return mt->trkid++ & TRKID_MAX; | 
					
						
							| 
									
										
										
										
											2010-12-15 13:50:34 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-27 09:16:48 +01:00
										 |  |  | static inline void input_mt_slot(struct input_dev *dev, int slot) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	input_event(dev, EV_ABS, ABS_MT_SLOT, slot); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-12 19:40:34 +01:00
										 |  |  | static inline bool input_is_mt_value(int axis) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return axis >= ABS_MT_FIRST && axis <= ABS_MT_LAST; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-18 10:08:02 -07:00
										 |  |  | static inline bool input_is_mt_axis(int axis) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-01-12 19:40:34 +01:00
										 |  |  | 	return axis == ABS_MT_SLOT || input_is_mt_value(axis); | 
					
						
							| 
									
										
										
										
											2011-04-18 10:08:02 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-15 13:50:34 +01:00
										 |  |  | void input_mt_report_slot_state(struct input_dev *dev, | 
					
						
							|  |  |  | 				unsigned int tool_type, bool active); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void input_mt_report_finger_count(struct input_dev *dev, int count); | 
					
						
							|  |  |  | void input_mt_report_pointer_emulation(struct input_dev *dev, bool use_count); | 
					
						
							| 
									
										
										
										
											2014-07-25 17:16:42 -07:00
										 |  |  | void input_mt_drop_unused(struct input_dev *dev); | 
					
						
							| 
									
										
										
										
											2010-12-15 13:50:34 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-22 20:43:22 +02:00
										 |  |  | void input_mt_sync_frame(struct input_dev *dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-12 20:47:05 +02:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * struct input_mt_pos - contact position | 
					
						
							|  |  |  |  * @x: horizontal coordinate | 
					
						
							|  |  |  |  * @y: vertical coordinate | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | struct input_mt_pos { | 
					
						
							|  |  |  | 	s16 x, y; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int input_mt_assign_slots(struct input_dev *dev, int *slots, | 
					
						
							|  |  |  | 			  const struct input_mt_pos *pos, int num_pos); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-01 09:27:20 +02:00
										 |  |  | int input_mt_get_slot_by_key(struct input_dev *dev, int key); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-27 09:16:48 +01:00
										 |  |  | #endif
 |