blob: 0994c0d01a09295eefc672f6d31a0f34d69bc9ad [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * User level driver support for input subsystem
3 *
4 * Heavily based on evdev.c by Vojtech Pavlik
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 * Author: Aristeu Sergio Rozanski Filho <aris@cathedrallabs.org>
Dmitry Torokhov221979a2006-02-19 00:22:36 -050021 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * Changes/Revisions:
Benjamin Tissoirese3480a62014-01-30 17:20:24 -080023 * 0.4 01/09/2014 (Benjamin Tissoires <benjamin.tissoires@redhat.com>)
24 * - add UI_GET_SYSNAME ioctl
Anssi Hannulaff462552006-07-19 01:41:09 -040025 * 0.3 24/05/2006 (Anssi Hannula <anssi.hannulagmail.com>)
26 * - update ff support for the changes in kernel interface
27 * - add UINPUT_VERSION
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * 0.2 16/10/2004 (Micah Dowty <micah@navi.cx>)
29 * - added force feedback support
30 * - added UI_SET_PHYS
31 * 0.1 20/06/2002
32 * - first public version
33 */
David Howells607ca462012-10-13 10:46:48 +010034#ifndef __UINPUT_H_
35#define __UINPUT_H_
Anssi Hannulaff462552006-07-19 01:41:09 -040036
David Howells607ca462012-10-13 10:46:48 +010037#include <uapi/linux/uinput.h>
Mike Frysingera830df32007-05-03 00:55:34 -040038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define UINPUT_NAME "uinput"
40#define UINPUT_BUFFER_SIZE 16
41#define UINPUT_NUM_REQUESTS 16
42
Dmitry Torokhov29506412005-11-20 00:51:22 -050043enum uinput_state { UIST_NEW_DEVICE, UIST_SETUP_COMPLETE, UIST_CREATED };
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45struct uinput_request {
Dmitry Torokhovc5b35332012-07-29 22:48:32 -070046 unsigned int id;
47 unsigned int code; /* UI_FF_UPLOAD, UI_FF_ERASE */
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49 int retval;
Dmitry Torokhov0048e602005-06-30 00:48:14 -050050 struct completion done;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52 union {
Dmitry Torokhovc5b35332012-07-29 22:48:32 -070053 unsigned int effect_id;
Anssi Hannulaff462552006-07-19 01:41:09 -040054 struct {
55 struct ff_effect *effect;
56 struct ff_effect *old;
57 } upload;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 } u;
59};
60
61struct uinput_device {
62 struct input_dev *dev;
Dmitry Torokhov221979a2006-02-19 00:22:36 -050063 struct mutex mutex;
Dmitry Torokhov29506412005-11-20 00:51:22 -050064 enum uinput_state state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 wait_queue_head_t waitq;
Dmitry Torokhov29506412005-11-20 00:51:22 -050066 unsigned char ready;
67 unsigned char head;
68 unsigned char tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 struct input_event buff[UINPUT_BUFFER_SIZE];
Dan Carpenter05be8b82011-10-12 21:05:53 -070070 unsigned int ff_effects_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72 struct uinput_request *requests[UINPUT_NUM_REQUESTS];
73 wait_queue_head_t requests_waitq;
Dmitry Torokhov0048e602005-06-30 00:48:14 -050074 spinlock_t requests_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075};
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#endif /* __UINPUT_H_ */