uinput.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  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>
  21. *
  22. * Changes/Revisions:
  23. * 0.4 01/09/2014 (Benjamin Tissoires <benjamin.tissoires@redhat.com>)
  24. * - add UI_GET_SYSNAME ioctl
  25. * 0.3 24/05/2006 (Anssi Hannula <anssi.hannulagmail.com>)
  26. * - update ff support for the changes in kernel interface
  27. * - add UINPUT_VERSION
  28. * 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. */
  34. #ifndef __UINPUT_H_
  35. #define __UINPUT_H_
  36. #include <uapi/linux/uinput.h>
  37. #define UINPUT_NAME "uinput"
  38. #define UINPUT_BUFFER_SIZE 16
  39. #define UINPUT_NUM_REQUESTS 16
  40. enum uinput_state { UIST_NEW_DEVICE, UIST_SETUP_COMPLETE, UIST_CREATED };
  41. struct uinput_request {
  42. unsigned int id;
  43. unsigned int code; /* UI_FF_UPLOAD, UI_FF_ERASE */
  44. int retval;
  45. struct completion done;
  46. union {
  47. unsigned int effect_id;
  48. struct {
  49. struct ff_effect *effect;
  50. struct ff_effect *old;
  51. } upload;
  52. } u;
  53. };
  54. struct uinput_device {
  55. struct input_dev *dev;
  56. struct mutex mutex;
  57. enum uinput_state state;
  58. wait_queue_head_t waitq;
  59. unsigned char ready;
  60. unsigned char head;
  61. unsigned char tail;
  62. struct input_event buff[UINPUT_BUFFER_SIZE];
  63. unsigned int ff_effects_max;
  64. struct uinput_request *requests[UINPUT_NUM_REQUESTS];
  65. wait_queue_head_t requests_waitq;
  66. spinlock_t requests_lock;
  67. };
  68. #endif /* __UINPUT_H_ */