blob: a65e3b24fb1838e43cffc24e2ecdc8a8f92eba12 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 1999-2002 Vojtech Pavlik
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License version 2 as published by
6 * the Free Software Foundation.
7 */
David Howells607ca462012-10-13 10:46:48 +01008#ifndef _INPUT_H
9#define _INPUT_H
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/time.h>
12#include <linux/list.h>
David Howells607ca462012-10-13 10:46:48 +010013#include <uapi/linux/input.h>
Henrik Rydberg40d007e2010-07-15 23:10:10 -070014/* Implementation details, userspace should not care about these */
15#define ABS_MT_FIRST ABS_MT_TOUCH_MAJOR
Henrik Rydbergcab7fac2012-06-27 09:53:47 +020016#define ABS_MT_LAST ABS_MT_TOOL_Y
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18/*
19 * In-kernel definitions.
20 */
21
Dmitry Torokhovddc5d342006-04-26 00:14:19 -040022#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/fs.h>
24#include <linux/timer.h>
Dmitry Torokhovddc5d342006-04-26 00:14:19 -040025#include <linux/mod_devicetable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Dmitry Torokhov80064792007-08-30 00:22:11 -040027/**
Henrik Rydberg4369c642012-09-15 15:23:35 +020028 * struct input_value - input value representation
29 * @type: type of value (EV_KEY, EV_ABS, etc)
30 * @code: the value code
31 * @value: the value
32 */
33struct input_value {
34 __u16 type;
35 __u16 code;
36 __s32 value;
37};
38
39/**
Dmitry Torokhov80064792007-08-30 00:22:11 -040040 * struct input_dev - represents an input device
41 * @name: name of the device
42 * @phys: physical path to the device in the system hierarchy
43 * @uniq: unique identification code for the device (if device has it)
44 * @id: id of the device (struct input_id)
Henrik Rydberg85b77202010-12-18 20:51:13 +010045 * @propbit: bitmap of device properties and quirks
Dmitry Torokhov80064792007-08-30 00:22:11 -040046 * @evbit: bitmap of types of events supported by the device (EV_KEY,
47 * EV_REL, etc.)
48 * @keybit: bitmap of keys/buttons this device has
49 * @relbit: bitmap of relative axes for the device
50 * @absbit: bitmap of absolute axes for the device
51 * @mscbit: bitmap of miscellaneous events supported by the device
52 * @ledbit: bitmap of leds present on the device
53 * @sndbit: bitmap of sound effects supported by the device
54 * @ffbit: bitmap of force feedback effects supported by the device
55 * @swbit: bitmap of switches present on the device
Henrik Rydberg63a64042010-06-10 12:05:24 -070056 * @hint_events_per_packet: average number of events generated by the
57 * device in a packet (between EV_SYN/SYN_REPORT events). Used by
58 * event handlers to estimate size of the buffer needed to hold
59 * events.
Dmitry Torokhov80064792007-08-30 00:22:11 -040060 * @keycodemax: size of keycode table
61 * @keycodesize: size of elements in keycode table
62 * @keycode: map of scancodes to keycodes for this device
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -070063 * @getkeycode: optional legacy method to retrieve current keymap.
Dmitry Torokhov80064792007-08-30 00:22:11 -040064 * @setkeycode: optional method to alter current keymap, used to implement
Dmitry Torokhov66d2a592009-12-01 21:54:35 -080065 * sparse keymaps. If not supplied default mechanism will be used.
66 * The method is being called while holding event_lock and thus must
67 * not sleep
Dmitry Torokhov80064792007-08-30 00:22:11 -040068 * @ff: force feedback structure associated with the device if device
69 * supports force feedback effects
70 * @repeat_key: stores key code of the last key pressed; used to implement
71 * software autorepeat
72 * @timer: timer for software autorepeat
Dmitry Torokhov80064792007-08-30 00:22:11 -040073 * @rep: current values for autorepeat parameters (delay, rate)
Henrik Rydberg8d18fba2012-09-15 15:15:58 +020074 * @mt: pointer to multitouch state
Dmitry Torokhov86b17f72010-11-29 23:33:04 -080075 * @absinfo: array of &struct input_absinfo elements holding information
Daniel Mackd31b2862010-08-02 20:18:21 -070076 * about absolute axes (current value, min, max, flat, fuzz,
77 * resolution)
Dmitry Torokhov80064792007-08-30 00:22:11 -040078 * @key: reflects current state of device's keys/buttons
79 * @led: reflects current state of device's LEDs
80 * @snd: reflects current state of sound effects
81 * @sw: reflects current state of device's switches
Dmitry Torokhov80064792007-08-30 00:22:11 -040082 * @open: this method is called when the very first user calls
83 * input_open_device(). The driver must prepare the device
84 * to start generating events (start polling thread,
85 * request an IRQ, submit URB, etc.)
86 * @close: this method is called when the very last user calls
87 * input_close_device().
88 * @flush: purges the device. Most commonly used to get rid of force
89 * feedback effects loaded into the device when disconnecting
90 * from it
91 * @event: event handler for events sent _to_ the device, like EV_LED
92 * or EV_SND. The device is expected to carry out the requested
93 * action (turn on a LED, play sound, etc.) The call is protected
94 * by @event_lock and must not sleep
95 * @grab: input handle that currently has the device grabbed (via
96 * EVIOCGRAB ioctl). When a handle grabs a device it becomes sole
97 * recipient for all input events coming from the device
Masanari Iida83510e52016-07-13 11:11:36 -070098 * @event_lock: this spinlock is taken when input core receives
Dmitry Torokhov80064792007-08-30 00:22:11 -040099 * and processes a new event for the device (in input_event()).
100 * Code that accesses and/or modifies parameters of a device
101 * (such as keymap or absmin, absmax, absfuzz, etc.) after device
102 * has been registered with input core must take this lock.
103 * @mutex: serializes calls to open(), close() and flush() methods
104 * @users: stores number of users (input handlers) that opened this
105 * device. It is used by input_open_device() and input_close_device()
106 * to make sure that dev->open() is only called when the first
107 * user opens device and dev->close() is called when the very
108 * last user closes the device
109 * @going_away: marks devices that are in a middle of unregistering and
110 * causes input_open_device*() fail with -ENODEV.
111 * @dev: driver model's view of this device
112 * @h_list: list of input handles associated with the device. When
113 * accessing the list dev->mutex must be held
114 * @node: used to place the device onto input_dev_list
Henrik Rydberg800963f2012-11-10 00:32:36 -0800115 * @num_vals: number of values queued in the current frame
116 * @max_vals: maximum number of values queued in a frame
117 * @vals: array of values queued in the current frame
Dmitry Torokhov2be975c2012-11-03 12:16:12 -0700118 * @devres_managed: indicates that devices is managed with devres framework
119 * and needs not be explicitly unregistered or freed.
Dmitry Torokhov80064792007-08-30 00:22:11 -0400120 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121struct input_dev {
Dmitry Torokhov5b6271b2005-06-30 00:50:38 -0500122 const char *name;
123 const char *phys;
124 const char *uniq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 struct input_id id;
126
Henrik Rydberg85b77202010-12-18 20:51:13 +0100127 unsigned long propbit[BITS_TO_LONGS(INPUT_PROP_CNT)];
128
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700129 unsigned long evbit[BITS_TO_LONGS(EV_CNT)];
130 unsigned long keybit[BITS_TO_LONGS(KEY_CNT)];
131 unsigned long relbit[BITS_TO_LONGS(REL_CNT)];
132 unsigned long absbit[BITS_TO_LONGS(ABS_CNT)];
133 unsigned long mscbit[BITS_TO_LONGS(MSC_CNT)];
134 unsigned long ledbit[BITS_TO_LONGS(LED_CNT)];
135 unsigned long sndbit[BITS_TO_LONGS(SND_CNT)];
136 unsigned long ffbit[BITS_TO_LONGS(FF_CNT)];
137 unsigned long swbit[BITS_TO_LONGS(SW_CNT)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Henrik Rydberg63a64042010-06-10 12:05:24 -0700139 unsigned int hint_events_per_packet;
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 unsigned int keycodemax;
142 unsigned int keycodesize;
143 void *keycode;
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700144
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800145 int (*setkeycode)(struct input_dev *dev,
Dmitry Torokhovaebd6362011-01-31 21:06:39 -0800146 const struct input_keymap_entry *ke,
147 unsigned int *old_keycode);
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800148 int (*getkeycode)(struct input_dev *dev,
Dmitry Torokhovaebd6362011-01-31 21:06:39 -0800149 struct input_keymap_entry *ke);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400151 struct ff_device *ff;
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 unsigned int repeat_key;
154 struct timer_list timer;
155
Daniel Mackd31b2862010-08-02 20:18:21 -0700156 int rep[REP_CNT];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Henrik Rydberg8d18fba2012-09-15 15:15:58 +0200158 struct input_mt *mt;
Henrik Rydberg40d007e2010-07-15 23:10:10 -0700159
Daniel Mackd31b2862010-08-02 20:18:21 -0700160 struct input_absinfo *absinfo;
161
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700162 unsigned long key[BITS_TO_LONGS(KEY_CNT)];
163 unsigned long led[BITS_TO_LONGS(LED_CNT)];
164 unsigned long snd[BITS_TO_LONGS(SND_CNT)];
165 unsigned long sw[BITS_TO_LONGS(SW_CNT)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 int (*open)(struct input_dev *dev);
168 void (*close)(struct input_dev *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 int (*flush)(struct input_dev *dev, struct file *file);
170 int (*event)(struct input_dev *dev, unsigned int type, unsigned int code, int value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Arnd Bergmann2be85272010-03-04 15:50:28 +0100172 struct input_handle __rcu *grab;
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500173
Dmitry Torokhov80064792007-08-30 00:22:11 -0400174 spinlock_t event_lock;
175 struct mutex mutex;
176
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500177 unsigned int users;
Dmitry Torokhovffd0db92009-09-16 01:06:43 -0700178 bool going_away;
Dmitry Torokhov0fbf87c2005-05-29 02:29:25 -0500179
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400180 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 struct list_head h_list;
183 struct list_head node;
Henrik Rydberg4369c642012-09-15 15:23:35 +0200184
185 unsigned int num_vals;
186 unsigned int max_vals;
187 struct input_value *vals;
Dmitry Torokhov2be975c2012-11-03 12:16:12 -0700188
189 bool devres_managed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190};
Dmitry Torokhov9657d752007-06-14 23:32:24 -0400191#define to_input_dev(d) container_of(d, struct input_dev, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400193/*
194 * Verify that we are in sync with input_device_id mod_devicetable.h #defines
195 */
196
197#if EV_MAX != INPUT_DEVICE_ID_EV_MAX
198#error "EV_MAX and INPUT_DEVICE_ID_EV_MAX do not match"
199#endif
200
Sam Ravnborgdc24f0e2007-03-09 19:59:06 +0100201#if KEY_MIN_INTERESTING != INPUT_DEVICE_ID_KEY_MIN_INTERESTING
202#error "KEY_MIN_INTERESTING and INPUT_DEVICE_ID_KEY_MIN_INTERESTING do not match"
203#endif
204
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400205#if KEY_MAX != INPUT_DEVICE_ID_KEY_MAX
206#error "KEY_MAX and INPUT_DEVICE_ID_KEY_MAX do not match"
207#endif
208
209#if REL_MAX != INPUT_DEVICE_ID_REL_MAX
210#error "REL_MAX and INPUT_DEVICE_ID_REL_MAX do not match"
211#endif
212
213#if ABS_MAX != INPUT_DEVICE_ID_ABS_MAX
214#error "ABS_MAX and INPUT_DEVICE_ID_ABS_MAX do not match"
215#endif
216
217#if MSC_MAX != INPUT_DEVICE_ID_MSC_MAX
218#error "MSC_MAX and INPUT_DEVICE_ID_MSC_MAX do not match"
219#endif
220
221#if LED_MAX != INPUT_DEVICE_ID_LED_MAX
222#error "LED_MAX and INPUT_DEVICE_ID_LED_MAX do not match"
223#endif
224
225#if SND_MAX != INPUT_DEVICE_ID_SND_MAX
226#error "SND_MAX and INPUT_DEVICE_ID_SND_MAX do not match"
227#endif
228
229#if FF_MAX != INPUT_DEVICE_ID_FF_MAX
230#error "FF_MAX and INPUT_DEVICE_ID_FF_MAX do not match"
231#endif
232
233#if SW_MAX != INPUT_DEVICE_ID_SW_MAX
234#error "SW_MAX and INPUT_DEVICE_ID_SW_MAX do not match"
235#endif
236
237#define INPUT_DEVICE_ID_MATCH_DEVICE \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 (INPUT_DEVICE_ID_MATCH_BUS | INPUT_DEVICE_ID_MATCH_VENDOR | INPUT_DEVICE_ID_MATCH_PRODUCT)
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400239#define INPUT_DEVICE_ID_MATCH_DEVICE_AND_VERSION \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 (INPUT_DEVICE_ID_MATCH_DEVICE | INPUT_DEVICE_ID_MATCH_VERSION)
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242struct input_handle;
243
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400244/**
245 * struct input_handler - implements one of interfaces for input devices
246 * @private: driver-specific data
Dmitry Torokhov80064792007-08-30 00:22:11 -0400247 * @event: event handler. This method is being called by input core with
248 * interrupts disabled and dev->event_lock spinlock held and so
249 * it may not sleep
Henrik Rydberg4369c642012-09-15 15:23:35 +0200250 * @events: event sequence handler. This method is being called by
251 * input core with interrupts disabled and dev->event_lock
252 * spinlock held and so it may not sleep
Dmitry Torokhovef7995f2010-01-29 23:59:12 -0800253 * @filter: similar to @event; separates normal event handlers from
254 * "filters".
Dmitry Torokhov0b7024ac2010-02-02 21:08:26 -0800255 * @match: called after comparing device's id with handler's id_table
256 * to perform fine-grained matching between device and handler
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400257 * @connect: called when attaching a handler to an input device
258 * @disconnect: disconnects a handler from input device
259 * @start: starts handler for given handle. This function is called by
260 * input core right after connect() method and also when a process
261 * that "grabbed" a device releases it
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700262 * @legacy_minors: set to %true by drivers using legacy minor ranges
263 * @minor: beginning of range of 32 legacy minors for devices this driver
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400264 * can provide
265 * @name: name of the handler, to be shown in /proc/bus/input/handlers
266 * @id_table: pointer to a table of input_device_ids this driver can
267 * handle
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400268 * @h_list: list of input handles associated with the handler
269 * @node: for placing the driver onto input_handler_list
Dmitry Torokhov80064792007-08-30 00:22:11 -0400270 *
271 * Input handlers attach to input devices and create input handles. There
272 * are likely several handlers attached to any given input device at the
273 * same time. All of them will get their copy of input event generated by
274 * the device.
275 *
Dmitry Torokhovef7995f2010-01-29 23:59:12 -0800276 * The very same structure is used to implement input filters. Input core
277 * allows filters to run first and will not pass event to regular handlers
278 * if any of the filters indicate that the event should be filtered (by
279 * returning %true from their filter() method).
280 *
Dmitry Torokhov80064792007-08-30 00:22:11 -0400281 * Note that input core serializes calls to connect() and disconnect()
282 * methods.
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400283 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284struct input_handler {
285
286 void *private;
287
288 void (*event)(struct input_handle *handle, unsigned int type, unsigned int code, int value);
Henrik Rydberg4369c642012-09-15 15:23:35 +0200289 void (*events)(struct input_handle *handle,
290 const struct input_value *vals, unsigned int count);
Dmitry Torokhovef7995f2010-01-29 23:59:12 -0800291 bool (*filter)(struct input_handle *handle, unsigned int type, unsigned int code, int value);
Dmitry Torokhov0b7024ac2010-02-02 21:08:26 -0800292 bool (*match)(struct input_handler *handler, struct input_dev *dev);
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400293 int (*connect)(struct input_handler *handler, struct input_dev *dev, const struct input_device_id *id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 void (*disconnect)(struct input_handle *handle);
Dmitry Torokhovc7e8dc62006-07-06 00:21:03 -0400295 void (*start)(struct input_handle *handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700297 bool legacy_minors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 int minor;
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400299 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400301 const struct input_device_id *id_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 struct list_head h_list;
304 struct list_head node;
305};
306
Dmitry Torokhov80064792007-08-30 00:22:11 -0400307/**
308 * struct input_handle - links input device with an input handler
309 * @private: handler-specific data
310 * @open: counter showing whether the handle is 'open', i.e. should deliver
311 * events from its device
312 * @name: name given to the handle by handler that created it
313 * @dev: input device the handle is attached to
314 * @handler: handler that works with the device through this handle
315 * @d_node: used to put the handle on device's list of attached handles
316 * @h_node: used to put the handle on handler's list of handles from which
317 * it gets events
318 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319struct input_handle {
320
321 void *private;
322
323 int open;
Dmitry Torokhov66e66112006-09-14 01:31:59 -0400324 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 struct input_dev *dev;
327 struct input_handler *handler;
328
329 struct list_head d_node;
330 struct list_head h_node;
331};
332
Dmitry Torokhov2be975c2012-11-03 12:16:12 -0700333struct input_dev __must_check *input_allocate_device(void);
334struct input_dev __must_check *devm_input_allocate_device(struct device *);
Dmitry Torokhovf60d2b12006-06-26 01:48:36 -0400335void input_free_device(struct input_dev *dev);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -0500336
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -0500337static inline struct input_dev *input_get_device(struct input_dev *dev)
338{
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400339 return dev ? to_input_dev(get_device(&dev->dev)) : NULL;
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -0500340}
341
342static inline void input_put_device(struct input_dev *dev)
343{
Dmitry Torokhova7097ff2008-04-01 00:22:53 -0400344 if (dev)
345 put_device(&dev->dev);
Dmitry Torokhovd19fbe82005-09-15 02:01:39 -0500346}
347
Dmitry Torokhov3abccf32007-04-12 01:33:51 -0400348static inline void *input_get_drvdata(struct input_dev *dev)
349{
Dmitry Torokhov3797fec2008-04-02 00:41:00 -0400350 return dev_get_drvdata(&dev->dev);
Dmitry Torokhov3abccf32007-04-12 01:33:51 -0400351}
352
353static inline void input_set_drvdata(struct input_dev *dev, void *data)
354{
Dmitry Torokhov3797fec2008-04-02 00:41:00 -0400355 dev_set_drvdata(&dev->dev, data);
Dmitry Torokhov3abccf32007-04-12 01:33:51 -0400356}
357
Dmitry Torokhov501cc542007-07-18 01:20:58 -0400358int __must_check input_register_device(struct input_dev *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359void input_unregister_device(struct input_dev *);
360
Dmitry Torokhovb50b5212010-11-03 11:02:31 -0700361void input_reset_device(struct input_dev *);
362
Dmitry Torokhov501cc542007-07-18 01:20:58 -0400363int __must_check input_register_handler(struct input_handler *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364void input_unregister_handler(struct input_handler *);
365
Dmitry Torokhov7f8d4ca2012-10-08 09:07:24 -0700366int __must_check input_get_new_minor(int legacy_base, unsigned int legacy_num,
367 bool allow_dynamic);
368void input_free_minor(unsigned int minor);
369
Dmitry Torokhov66d2a592009-12-01 21:54:35 -0800370int input_handler_for_each_handle(struct input_handler *, void *data,
371 int (*fn)(struct input_handle *, void *));
372
Dmitry Torokhov5b2a08262007-04-12 01:29:46 -0400373int input_register_handle(struct input_handle *);
374void input_unregister_handle(struct input_handle *);
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376int input_grab_device(struct input_handle *);
377void input_release_device(struct input_handle *);
378
379int input_open_device(struct input_handle *);
380void input_close_device(struct input_handle *);
381
Dmitry Torokhovb50b5212010-11-03 11:02:31 -0700382int input_flush_device(struct input_handle *handle, struct file *file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384void input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value);
Dmitry Torokhov0e739d22006-07-06 00:22:43 -0400385void input_inject_event(struct input_handle *handle, unsigned int type, unsigned int code, int value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387static inline void input_report_key(struct input_dev *dev, unsigned int code, int value)
388{
389 input_event(dev, EV_KEY, code, !!value);
390}
391
392static inline void input_report_rel(struct input_dev *dev, unsigned int code, int value)
393{
394 input_event(dev, EV_REL, code, value);
395}
396
397static inline void input_report_abs(struct input_dev *dev, unsigned int code, int value)
398{
399 input_event(dev, EV_ABS, code, value);
400}
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402static inline void input_report_ff_status(struct input_dev *dev, unsigned int code, int value)
403{
404 input_event(dev, EV_FF_STATUS, code, value);
405}
406
Richard Purdie31581062005-09-06 15:19:06 -0700407static inline void input_report_switch(struct input_dev *dev, unsigned int code, int value)
408{
409 input_event(dev, EV_SW, code, !!value);
410}
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412static inline void input_sync(struct input_dev *dev)
413{
414 input_event(dev, EV_SYN, SYN_REPORT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415}
416
Henrik Rydberg5e5ee682009-04-28 07:47:33 -0700417static inline void input_mt_sync(struct input_dev *dev)
418{
419 input_event(dev, EV_SYN, SYN_MT_REPORT, 0);
420}
421
Dmitry Torokhov534565f2007-04-25 00:53:18 -0400422void input_set_capability(struct input_dev *dev, unsigned int type, unsigned int code);
423
Henrik Rydberg63a64042010-06-10 12:05:24 -0700424/**
425 * input_set_events_per_packet - tell handlers about the driver event rate
426 * @dev: the input device used by the driver
427 * @n_events: the average number of events between calls to input_sync()
428 *
429 * If the event rate sent from a device is unusually large, use this
430 * function to set the expected event rate. This will allow handlers
431 * to set up an appropriate buffer size for the event stream, in order
432 * to minimize information loss.
433 */
434static inline void input_set_events_per_packet(struct input_dev *dev, int n_events)
435{
436 dev->hint_events_per_packet = n_events;
437}
438
Daniel Mackd31b2862010-08-02 20:18:21 -0700439void input_alloc_absinfo(struct input_dev *dev);
440void input_set_abs_params(struct input_dev *dev, unsigned int axis,
441 int min, int max, int fuzz, int flat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Daniel Mack7957e9c2010-08-02 19:33:51 -0700443#define INPUT_GENERATE_ABS_ACCESSORS(_suffix, _item) \
444static inline int input_abs_get_##_suffix(struct input_dev *dev, \
445 unsigned int axis) \
446{ \
Daniel Mackd31b2862010-08-02 20:18:21 -0700447 return dev->absinfo ? dev->absinfo[axis]._item : 0; \
Daniel Mack7957e9c2010-08-02 19:33:51 -0700448} \
449 \
450static inline void input_abs_set_##_suffix(struct input_dev *dev, \
451 unsigned int axis, int val) \
452{ \
Daniel Mackd31b2862010-08-02 20:18:21 -0700453 input_alloc_absinfo(dev); \
454 if (dev->absinfo) \
455 dev->absinfo[axis]._item = val; \
Daniel Mack7957e9c2010-08-02 19:33:51 -0700456}
457
Daniel Mackd31b2862010-08-02 20:18:21 -0700458INPUT_GENERATE_ABS_ACCESSORS(val, value)
459INPUT_GENERATE_ABS_ACCESSORS(min, minimum)
460INPUT_GENERATE_ABS_ACCESSORS(max, maximum)
Daniel Mack7957e9c2010-08-02 19:33:51 -0700461INPUT_GENERATE_ABS_ACCESSORS(fuzz, fuzz)
462INPUT_GENERATE_ABS_ACCESSORS(flat, flat)
Daniel Mackd31b2862010-08-02 20:18:21 -0700463INPUT_GENERATE_ABS_ACCESSORS(res, resolution)
Daniel Mack7957e9c2010-08-02 19:33:51 -0700464
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700465int input_scancode_to_scalar(const struct input_keymap_entry *ke,
466 unsigned int *scancode);
467
468int input_get_keycode(struct input_dev *dev, struct input_keymap_entry *ke);
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800469int input_set_keycode(struct input_dev *dev,
Mauro Carvalho Chehab8613e4c2010-09-09 21:54:22 -0700470 const struct input_keymap_entry *ke);
Dmitry Torokhovf4f37c82007-11-04 00:41:12 -0400471
Petri Gynther027c71b2015-10-13 23:13:55 -0700472void input_enable_softrepeat(struct input_dev *dev, int delay, int period);
473
Greg Kroah-Hartmanea9f2402005-10-27 22:25:43 -0700474extern struct class input_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400476/**
477 * struct ff_device - force-feedback part of an input device
478 * @upload: Called to upload an new effect into device
479 * @erase: Called to erase an effect from device
480 * @playback: Called to request device to start playing specified effect
481 * @set_gain: Called to set specified gain
482 * @set_autocenter: Called to auto-center device
483 * @destroy: called by input core when parent input device is being
484 * destroyed
485 * @private: driver-specific data, will be freed automatically
486 * @ffbit: bitmap of force feedback capabilities truly supported by
487 * device (not emulated like ones in input_dev->ffbit)
488 * @mutex: mutex for serializing access to the device
489 * @max_effects: maximum number of effects supported by device
490 * @effects: pointer to an array of effects currently loaded into device
491 * @effect_owners: array of effect owners; when file handle owning
Dmitry Torokhov80064792007-08-30 00:22:11 -0400492 * an effect gets closed the effect is automatically erased
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400493 *
494 * Every force-feedback device must implement upload() and playback()
495 * methods; erase() is optional. set_gain() and set_autocenter() need
496 * only be implemented if driver sets up FF_GAIN and FF_AUTOCENTER
497 * bits.
Dmitry Torokhovbf3204c2009-11-06 21:39:07 -0800498 *
499 * Note that playback(), set_gain() and set_autocenter() are called with
500 * dev->event_lock spinlock held and interrupts off and thus may not
501 * sleep.
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400502 */
503struct ff_device {
504 int (*upload)(struct input_dev *dev, struct ff_effect *effect,
505 struct ff_effect *old);
506 int (*erase)(struct input_dev *dev, int effect_id);
507
508 int (*playback)(struct input_dev *dev, int effect_id, int value);
509 void (*set_gain)(struct input_dev *dev, u16 gain);
510 void (*set_autocenter)(struct input_dev *dev, u16 magnitude);
511
512 void (*destroy)(struct ff_device *);
513
514 void *private;
515
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700516 unsigned long ffbit[BITS_TO_LONGS(FF_CNT)];
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400517
518 struct mutex mutex;
519
520 int max_effects;
521 struct ff_effect *effects;
522 struct file *effect_owners[];
523};
524
Dan Carpenter05be8b82011-10-12 21:05:53 -0700525int input_ff_create(struct input_dev *dev, unsigned int max_effects);
Anssi Hannula509ca1a2006-07-19 01:40:22 -0400526void input_ff_destroy(struct input_dev *dev);
527
528int input_ff_event(struct input_dev *dev, unsigned int type, unsigned int code, int value);
529
530int input_ff_upload(struct input_dev *dev, struct ff_effect *effect, struct file *file);
531int input_ff_erase(struct input_dev *dev, int effect_id, struct file *file);
532
Anssi Hannula7d928a22006-07-19 01:40:30 -0400533int input_ff_create_memless(struct input_dev *dev, void *data,
534 int (*play_effect)(struct input_dev *, void *, struct ff_effect *));
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536#endif