2 * Copyright © 2011, 2012 Intel Corporation
4 * Permission to use, copy, modify, distribute, and sell this software and
5 * its documentation for any purpose is hereby granted without fee, provided
6 * that the above copyright notice appear in all copies and that both that
7 * copyright notice and this permission notice appear in supporting
8 * documentation, and that the name of the copyright holders not be used in
9 * advertising or publicity pertaining to distribution of the software
10 * without specific, written prior permission. The copyright holders make
11 * no representations about the suitability of this software for any
12 * purpose. It is provided "as is" without express or implied warranty.
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
15 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
16 * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
17 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
18 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
19 * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
20 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
26 #include <linux/input.h>
27 #include <wayland-util.h>
31 struct weston_seat base;
32 struct wl_list devices_list;
33 struct udev_monitor *udev_monitor;
34 struct wl_event_source *udev_monitor_source;
40 enum evdev_event_type {
41 EVDEV_ABSOLUTE_MOTION = (1 << 0),
42 EVDEV_ABSOLUTE_MT_DOWN = (1 << 1),
43 EVDEV_ABSOLUTE_MT_MOTION = (1 << 2),
44 EVDEV_ABSOLUTE_MT_UP = (1 << 3),
45 EVDEV_RELATIVE_MOTION = (1 << 4),
48 enum evdev_device_capability {
49 EVDEV_KEYBOARD = (1 << 0),
50 EVDEV_BUTTON = (1 << 1),
51 EVDEV_MOTION_ABS = (1 << 2),
52 EVDEV_MOTION_REL = (1 << 3),
53 EVDEV_TOUCH = (1 << 4),
56 struct evdev_input_device {
57 struct evdev_seat *master;
59 struct wl_event_source *source;
60 struct weston_output *output;
61 struct evdev_dispatch *dispatch;
65 int min_x, max_x, min_y, max_y;
80 enum evdev_event_type pending_events;
81 enum evdev_device_capability caps;
86 /* copied from udev/extras/input_id/input_id.c */
87 /* we must use this kernel-compatible implementation */
88 #define BITS_PER_LONG (sizeof(unsigned long) * 8)
89 #define NBITS(x) ((((x)-1)/BITS_PER_LONG)+1)
90 #define OFF(x) ((x)%BITS_PER_LONG)
91 #define BIT(x) (1UL<<OFF(x))
92 #define LONG(x) ((x)/BITS_PER_LONG)
93 #define TEST_BIT(array, bit) ((array[LONG(bit)] >> OFF(bit)) & 1)
96 struct evdev_dispatch;
98 struct evdev_dispatch_interface {
99 /* Process an evdev input event. */
100 void (*process)(struct evdev_dispatch *dispatch,
101 struct evdev_input_device *device,
102 struct input_event *event,
105 /* Destroy an event dispatch handler and free all its resources. */
106 void (*destroy)(struct evdev_dispatch *dispatch);
109 struct evdev_dispatch {
110 struct evdev_dispatch_interface *interface;
113 struct evdev_dispatch *
114 evdev_touchpad_create(struct evdev_input_device *device);
117 evdev_add_devices(struct udev *udev, struct weston_seat *seat_base);
120 evdev_remove_devices(struct weston_seat *seat_base);
123 evdev_input_create(struct weston_compositor *c, struct udev *udev,
127 evdev_input_destroy(struct weston_seat *seat);
130 evdev_enable_udev_monitor(struct udev *udev, struct weston_seat *seat_base);
133 evdev_disable_udev_monitor(struct weston_seat *seat_base);