]> nv-tegra.nvidia Code Review - linux-3.10.git/blob - include/linux/input.h
EDP: add sysedp_reactive_capping
[linux-3.10.git] / include / linux / input.h
1 /*
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  */
8 #ifndef _INPUT_H
9 #define _INPUT_H
10
11 #include <linux/time.h>
12 #include <linux/list.h>
13 #include <uapi/linux/input.h>
14 /* Implementation details, userspace should not care about these */
15 #define ABS_MT_FIRST            ABS_MT_TOUCH_MAJOR
16 #define ABS_MT_LAST             ABS_MT_TOOL_Y
17
18 /*
19  * In-kernel definitions.
20  */
21
22 #include <linux/device.h>
23 #include <linux/fs.h>
24 #include <linux/timer.h>
25 #include <linux/mod_devicetable.h>
26
27 /**
28  * 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  */
33 struct input_value {
34         __u16 type;
35         __u16 code;
36         __s32 value;
37 };
38
39 /**
40  * 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)
45  * @propbit: bitmap of device properties and quirks
46  * @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
56  * @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.
60  * @keycodemax: size of keycode table
61  * @keycodesize: size of elements in keycode table
62  * @keycode: map of scancodes to keycodes for this device
63  * @getkeycode: optional legacy method to retrieve current keymap.
64  * @setkeycode: optional method to alter current keymap, used to implement
65  *      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
68  * @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
73  * @rep: current values for autorepeat parameters (delay, rate)
74  * @mt: pointer to multitouch state
75  * @absinfo: array of &struct input_absinfo elements holding information
76  *      about absolute axes (current value, min, max, flat, fuzz,
77  *      resolution)
78  * @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
82  * @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
98  * @event_lock: this spinlock is is taken when input core receives
99  *      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
115  * @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
118  * @devres_managed: indicates that devices is managed with devres framework
119  *      and needs not be explicitly unregistered or freed.
120  */
121 struct input_dev {
122         const char *name;
123         const char *phys;
124         const char *uniq;
125         bool enabled;
126         struct input_id id;
127
128         unsigned long propbit[BITS_TO_LONGS(INPUT_PROP_CNT)];
129
130         unsigned long evbit[BITS_TO_LONGS(EV_CNT)];
131         unsigned long keybit[BITS_TO_LONGS(KEY_CNT)];
132         unsigned long relbit[BITS_TO_LONGS(REL_CNT)];
133         unsigned long absbit[BITS_TO_LONGS(ABS_CNT)];
134         unsigned long mscbit[BITS_TO_LONGS(MSC_CNT)];
135         unsigned long ledbit[BITS_TO_LONGS(LED_CNT)];
136         unsigned long sndbit[BITS_TO_LONGS(SND_CNT)];
137         unsigned long ffbit[BITS_TO_LONGS(FF_CNT)];
138         unsigned long swbit[BITS_TO_LONGS(SW_CNT)];
139
140         unsigned int hint_events_per_packet;
141
142         unsigned int keycodemax;
143         unsigned int keycodesize;
144         void *keycode;
145
146         int (*setkeycode)(struct input_dev *dev,
147                           const struct input_keymap_entry *ke,
148                           unsigned int *old_keycode);
149         int (*getkeycode)(struct input_dev *dev,
150                           struct input_keymap_entry *ke);
151
152         struct ff_device *ff;
153
154         unsigned int repeat_key;
155         struct timer_list timer;
156
157         int rep[REP_CNT];
158
159         struct input_mt *mt;
160
161         struct input_absinfo *absinfo;
162
163         unsigned long key[BITS_TO_LONGS(KEY_CNT)];
164         unsigned long led[BITS_TO_LONGS(LED_CNT)];
165         unsigned long snd[BITS_TO_LONGS(SND_CNT)];
166         unsigned long sw[BITS_TO_LONGS(SW_CNT)];
167
168         int (*open)(struct input_dev *dev);
169         void (*close)(struct input_dev *dev);
170         int (*flush)(struct input_dev *dev, struct file *file);
171         int (*event)(struct input_dev *dev, unsigned int type, unsigned int code, int value);
172         int (*enable)(struct input_dev *dev);
173         int (*disable)(struct input_dev *dev);
174
175         struct input_handle __rcu *grab;
176
177         spinlock_t event_lock;
178         struct mutex mutex;
179
180         unsigned int users;
181         bool going_away;
182
183         struct device dev;
184
185         struct list_head        h_list;
186         struct list_head        node;
187
188         unsigned int num_vals;
189         unsigned int max_vals;
190         struct input_value *vals;
191
192         bool devres_managed;
193 };
194 #define to_input_dev(d) container_of(d, struct input_dev, dev)
195
196 /*
197  * Verify that we are in sync with input_device_id mod_devicetable.h #defines
198  */
199
200 #if EV_MAX != INPUT_DEVICE_ID_EV_MAX
201 #error "EV_MAX and INPUT_DEVICE_ID_EV_MAX do not match"
202 #endif
203
204 #if KEY_MIN_INTERESTING != INPUT_DEVICE_ID_KEY_MIN_INTERESTING
205 #error "KEY_MIN_INTERESTING and INPUT_DEVICE_ID_KEY_MIN_INTERESTING do not match"
206 #endif
207
208 #if KEY_MAX != INPUT_DEVICE_ID_KEY_MAX
209 #error "KEY_MAX and INPUT_DEVICE_ID_KEY_MAX do not match"
210 #endif
211
212 #if REL_MAX != INPUT_DEVICE_ID_REL_MAX
213 #error "REL_MAX and INPUT_DEVICE_ID_REL_MAX do not match"
214 #endif
215
216 #if ABS_MAX != INPUT_DEVICE_ID_ABS_MAX
217 #error "ABS_MAX and INPUT_DEVICE_ID_ABS_MAX do not match"
218 #endif
219
220 #if MSC_MAX != INPUT_DEVICE_ID_MSC_MAX
221 #error "MSC_MAX and INPUT_DEVICE_ID_MSC_MAX do not match"
222 #endif
223
224 #if LED_MAX != INPUT_DEVICE_ID_LED_MAX
225 #error "LED_MAX and INPUT_DEVICE_ID_LED_MAX do not match"
226 #endif
227
228 #if SND_MAX != INPUT_DEVICE_ID_SND_MAX
229 #error "SND_MAX and INPUT_DEVICE_ID_SND_MAX do not match"
230 #endif
231
232 #if FF_MAX != INPUT_DEVICE_ID_FF_MAX
233 #error "FF_MAX and INPUT_DEVICE_ID_FF_MAX do not match"
234 #endif
235
236 #if SW_MAX != INPUT_DEVICE_ID_SW_MAX
237 #error "SW_MAX and INPUT_DEVICE_ID_SW_MAX do not match"
238 #endif
239
240 #define INPUT_DEVICE_ID_MATCH_DEVICE \
241         (INPUT_DEVICE_ID_MATCH_BUS | INPUT_DEVICE_ID_MATCH_VENDOR | INPUT_DEVICE_ID_MATCH_PRODUCT)
242 #define INPUT_DEVICE_ID_MATCH_DEVICE_AND_VERSION \
243         (INPUT_DEVICE_ID_MATCH_DEVICE | INPUT_DEVICE_ID_MATCH_VERSION)
244
245 struct input_handle;
246
247 /**
248  * struct input_handler - implements one of interfaces for input devices
249  * @private: driver-specific data
250  * @event: event handler. This method is being called by input core with
251  *      interrupts disabled and dev->event_lock spinlock held and so
252  *      it may not sleep
253  * @events: event sequence handler. This method is being called by
254  *      input core with interrupts disabled and dev->event_lock
255  *      spinlock held and so it may not sleep
256  * @filter: similar to @event; separates normal event handlers from
257  *      "filters".
258  * @match: called after comparing device's id with handler's id_table
259  *      to perform fine-grained matching between device and handler
260  * @connect: called when attaching a handler to an input device
261  * @disconnect: disconnects a handler from input device
262  * @start: starts handler for given handle. This function is called by
263  *      input core right after connect() method and also when a process
264  *      that "grabbed" a device releases it
265  * @legacy_minors: set to %true by drivers using legacy minor ranges
266  * @minor: beginning of range of 32 legacy minors for devices this driver
267  *      can provide
268  * @name: name of the handler, to be shown in /proc/bus/input/handlers
269  * @id_table: pointer to a table of input_device_ids this driver can
270  *      handle
271  * @h_list: list of input handles associated with the handler
272  * @node: for placing the driver onto input_handler_list
273  *
274  * Input handlers attach to input devices and create input handles. There
275  * are likely several handlers attached to any given input device at the
276  * same time. All of them will get their copy of input event generated by
277  * the device.
278  *
279  * The very same structure is used to implement input filters. Input core
280  * allows filters to run first and will not pass event to regular handlers
281  * if any of the filters indicate that the event should be filtered (by
282  * returning %true from their filter() method).
283  *
284  * Note that input core serializes calls to connect() and disconnect()
285  * methods.
286  */
287 struct input_handler {
288
289         void *private;
290
291         void (*event)(struct input_handle *handle, unsigned int type, unsigned int code, int value);
292         void (*events)(struct input_handle *handle,
293                        const struct input_value *vals, unsigned int count);
294         bool (*filter)(struct input_handle *handle, unsigned int type, unsigned int code, int value);
295         bool (*match)(struct input_handler *handler, struct input_dev *dev);
296         int (*connect)(struct input_handler *handler, struct input_dev *dev, const struct input_device_id *id);
297         void (*disconnect)(struct input_handle *handle);
298         void (*start)(struct input_handle *handle);
299
300         bool legacy_minors;
301         int minor;
302         const char *name;
303
304         const struct input_device_id *id_table;
305
306         struct list_head        h_list;
307         struct list_head        node;
308 };
309
310 /**
311  * struct input_handle - links input device with an input handler
312  * @private: handler-specific data
313  * @open: counter showing whether the handle is 'open', i.e. should deliver
314  *      events from its device
315  * @name: name given to the handle by handler that created it
316  * @dev: input device the handle is attached to
317  * @handler: handler that works with the device through this handle
318  * @d_node: used to put the handle on device's list of attached handles
319  * @h_node: used to put the handle on handler's list of handles from which
320  *      it gets events
321  */
322 struct input_handle {
323
324         void *private;
325
326         int open;
327         const char *name;
328
329         struct input_dev *dev;
330         struct input_handler *handler;
331
332         struct list_head        d_node;
333         struct list_head        h_node;
334 };
335
336 struct input_dev __must_check *input_allocate_device(void);
337 struct input_dev __must_check *devm_input_allocate_device(struct device *);
338 void input_free_device(struct input_dev *dev);
339
340 static inline struct input_dev *input_get_device(struct input_dev *dev)
341 {
342         return dev ? to_input_dev(get_device(&dev->dev)) : NULL;
343 }
344
345 static inline void input_put_device(struct input_dev *dev)
346 {
347         if (dev)
348                 put_device(&dev->dev);
349 }
350
351 static inline void *input_get_drvdata(struct input_dev *dev)
352 {
353         return dev_get_drvdata(&dev->dev);
354 }
355
356 static inline void input_set_drvdata(struct input_dev *dev, void *data)
357 {
358         dev_set_drvdata(&dev->dev, data);
359 }
360
361 int __must_check input_register_device(struct input_dev *);
362 void input_unregister_device(struct input_dev *);
363
364 void input_reset_device(struct input_dev *);
365
366 int __must_check input_register_handler(struct input_handler *);
367 void input_unregister_handler(struct input_handler *);
368
369 int __must_check input_get_new_minor(int legacy_base, unsigned int legacy_num,
370                                      bool allow_dynamic);
371 void input_free_minor(unsigned int minor);
372
373 int input_handler_for_each_handle(struct input_handler *, void *data,
374                                   int (*fn)(struct input_handle *, void *));
375
376 int input_register_handle(struct input_handle *);
377 void input_unregister_handle(struct input_handle *);
378
379 int input_grab_device(struct input_handle *);
380 void input_release_device(struct input_handle *);
381
382 int input_open_device(struct input_handle *);
383 void input_close_device(struct input_handle *);
384
385 int input_flush_device(struct input_handle *handle, struct file *file);
386
387 void input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value);
388 void input_inject_event(struct input_handle *handle, unsigned int type, unsigned int code, int value);
389
390 static inline void input_report_key(struct input_dev *dev, unsigned int code, int value)
391 {
392         input_event(dev, EV_KEY, code, !!value);
393 }
394
395 static inline void input_report_rel(struct input_dev *dev, unsigned int code, int value)
396 {
397         input_event(dev, EV_REL, code, value);
398 }
399
400 static inline void input_report_abs(struct input_dev *dev, unsigned int code, int value)
401 {
402         input_event(dev, EV_ABS, code, value);
403 }
404
405 static inline void input_report_ff_status(struct input_dev *dev, unsigned int code, int value)
406 {
407         input_event(dev, EV_FF_STATUS, code, value);
408 }
409
410 static inline void input_report_switch(struct input_dev *dev, unsigned int code, int value)
411 {
412         input_event(dev, EV_SW, code, !!value);
413 }
414
415 static inline void input_sync(struct input_dev *dev)
416 {
417         input_event(dev, EV_SYN, SYN_REPORT, 0);
418 }
419
420 static inline void input_mt_sync(struct input_dev *dev)
421 {
422         input_event(dev, EV_SYN, SYN_MT_REPORT, 0);
423 }
424
425 void input_set_capability(struct input_dev *dev, unsigned int type, unsigned int code);
426
427 /**
428  * input_set_events_per_packet - tell handlers about the driver event rate
429  * @dev: the input device used by the driver
430  * @n_events: the average number of events between calls to input_sync()
431  *
432  * If the event rate sent from a device is unusually large, use this
433  * function to set the expected event rate. This will allow handlers
434  * to set up an appropriate buffer size for the event stream, in order
435  * to minimize information loss.
436  */
437 static inline void input_set_events_per_packet(struct input_dev *dev, int n_events)
438 {
439         dev->hint_events_per_packet = n_events;
440 }
441
442 void input_alloc_absinfo(struct input_dev *dev);
443 void input_set_abs_params(struct input_dev *dev, unsigned int axis,
444                           int min, int max, int fuzz, int flat);
445
446 #define INPUT_GENERATE_ABS_ACCESSORS(_suffix, _item)                    \
447 static inline int input_abs_get_##_suffix(struct input_dev *dev,        \
448                                           unsigned int axis)            \
449 {                                                                       \
450         return dev->absinfo ? dev->absinfo[axis]._item : 0;             \
451 }                                                                       \
452                                                                         \
453 static inline void input_abs_set_##_suffix(struct input_dev *dev,       \
454                                            unsigned int axis, int val)  \
455 {                                                                       \
456         input_alloc_absinfo(dev);                                       \
457         if (dev->absinfo)                                               \
458                 dev->absinfo[axis]._item = val;                         \
459 }
460
461 INPUT_GENERATE_ABS_ACCESSORS(val, value)
462 INPUT_GENERATE_ABS_ACCESSORS(min, minimum)
463 INPUT_GENERATE_ABS_ACCESSORS(max, maximum)
464 INPUT_GENERATE_ABS_ACCESSORS(fuzz, fuzz)
465 INPUT_GENERATE_ABS_ACCESSORS(flat, flat)
466 INPUT_GENERATE_ABS_ACCESSORS(res, resolution)
467
468 int input_scancode_to_scalar(const struct input_keymap_entry *ke,
469                              unsigned int *scancode);
470
471 int input_get_keycode(struct input_dev *dev, struct input_keymap_entry *ke);
472 int input_set_keycode(struct input_dev *dev,
473                       const struct input_keymap_entry *ke);
474
475 extern struct class input_class;
476
477 /**
478  * struct ff_device - force-feedback part of an input device
479  * @upload: Called to upload an new effect into device
480  * @erase: Called to erase an effect from device
481  * @playback: Called to request device to start playing specified effect
482  * @set_gain: Called to set specified gain
483  * @set_autocenter: Called to auto-center device
484  * @destroy: called by input core when parent input device is being
485  *      destroyed
486  * @private: driver-specific data, will be freed automatically
487  * @ffbit: bitmap of force feedback capabilities truly supported by
488  *      device (not emulated like ones in input_dev->ffbit)
489  * @mutex: mutex for serializing access to the device
490  * @max_effects: maximum number of effects supported by device
491  * @effects: pointer to an array of effects currently loaded into device
492  * @effect_owners: array of effect owners; when file handle owning
493  *      an effect gets closed the effect is automatically erased
494  *
495  * Every force-feedback device must implement upload() and playback()
496  * methods; erase() is optional. set_gain() and set_autocenter() need
497  * only be implemented if driver sets up FF_GAIN and FF_AUTOCENTER
498  * bits.
499  *
500  * Note that playback(), set_gain() and set_autocenter() are called with
501  * dev->event_lock spinlock held and interrupts off and thus may not
502  * sleep.
503  */
504 struct ff_device {
505         int (*upload)(struct input_dev *dev, struct ff_effect *effect,
506                       struct ff_effect *old);
507         int (*erase)(struct input_dev *dev, int effect_id);
508
509         int (*playback)(struct input_dev *dev, int effect_id, int value);
510         void (*set_gain)(struct input_dev *dev, u16 gain);
511         void (*set_autocenter)(struct input_dev *dev, u16 magnitude);
512
513         void (*destroy)(struct ff_device *);
514
515         void *private;
516
517         unsigned long ffbit[BITS_TO_LONGS(FF_CNT)];
518
519         struct mutex mutex;
520
521         int max_effects;
522         struct ff_effect *effects;
523         struct file *effect_owners[];
524 };
525
526 int input_ff_create(struct input_dev *dev, unsigned int max_effects);
527 void input_ff_destroy(struct input_dev *dev);
528
529 int input_ff_event(struct input_dev *dev, unsigned int type, unsigned int code, int value);
530
531 int input_ff_upload(struct input_dev *dev, struct ff_effect *effect, struct file *file);
532 int input_ff_erase(struct input_dev *dev, int effect_id, struct file *file);
533
534 int input_ff_create_memless(struct input_dev *dev, void *data,
535                 int (*play_effect)(struct input_dev *, void *, struct ff_effect *));
536
537 #endif