2 * Copyright © 2010 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.
25 #include <linux/input.h>
30 #include "compositor.h"
33 #define DEFAULT_AXIS_STEP_DISTANCE wl_fixed_from_int(10)
36 evdev_led_update(struct evdev_device *device, enum weston_led leds)
39 enum weston_led weston;
42 { LED_NUM_LOCK, LED_NUML },
43 { LED_CAPS_LOCK, LED_CAPSL },
44 { LED_SCROLL_LOCK, LED_SCROLLL },
46 struct input_event ev[ARRAY_LENGTH(map)];
49 if (!device->caps & EVDEV_KEYBOARD)
52 memset(ev, 0, sizeof(ev));
53 for (i = 0; i < ARRAY_LENGTH(map); i++) {
55 ev[i].code = map[i].evdev;
56 ev[i].value = !!(leds & map[i].weston);
59 i = write(device->fd, ev, sizeof ev);
60 (void)i; /* no, we really don't care about the return value */
64 evdev_process_key(struct evdev_device *device, struct input_event *e, int time)
78 notify_button(device->seat,
80 e->value ? WL_POINTER_BUTTON_STATE_PRESSED :
81 WL_POINTER_BUTTON_STATE_RELEASED);
85 notify_key(device->seat,
87 e->value ? WL_KEYBOARD_KEY_STATE_PRESSED :
88 WL_KEYBOARD_KEY_STATE_RELEASED,
89 STATE_UPDATE_AUTOMATIC);
95 evdev_process_touch(struct evdev_device *device, struct input_event *e)
97 const int screen_width = device->output->current->width;
98 const int screen_height = device->output->current->height;
102 device->mt.slot = e->value;
104 case ABS_MT_TRACKING_ID:
106 device->pending_events |= EVDEV_ABSOLUTE_MT_DOWN;
108 device->pending_events |= EVDEV_ABSOLUTE_MT_UP;
110 case ABS_MT_POSITION_X:
111 device->mt.x[device->mt.slot] =
112 (e->value - device->abs.min_x) * screen_width /
113 (device->abs.max_x - device->abs.min_x) +
115 device->pending_events |= EVDEV_ABSOLUTE_MT_MOTION;
117 case ABS_MT_POSITION_Y:
118 device->mt.y[device->mt.slot] =
119 (e->value - device->abs.min_y) * screen_height /
120 (device->abs.max_y - device->abs.min_y) +
122 device->pending_events |= EVDEV_ABSOLUTE_MT_MOTION;
128 evdev_process_absolute_motion(struct evdev_device *device,
129 struct input_event *e)
131 const int screen_width = device->output->current->width;
132 const int screen_height = device->output->current->height;
137 (e->value - device->abs.min_x) * screen_width /
138 (device->abs.max_x - device->abs.min_x) +
140 device->pending_events |= EVDEV_ABSOLUTE_MOTION;
144 (e->value - device->abs.min_y) * screen_height /
145 (device->abs.max_y - device->abs.min_y) +
147 device->pending_events |= EVDEV_ABSOLUTE_MOTION;
153 evdev_process_relative(struct evdev_device *device,
154 struct input_event *e, uint32_t time)
158 device->rel.dx += wl_fixed_from_int(e->value);
159 device->pending_events |= EVDEV_RELATIVE_MOTION;
162 device->rel.dy += wl_fixed_from_int(e->value);
163 device->pending_events |= EVDEV_RELATIVE_MOTION;
171 notify_axis(device->seat,
173 WL_POINTER_AXIS_VERTICAL_SCROLL,
174 -1 * e->value * DEFAULT_AXIS_STEP_DISTANCE);
186 notify_axis(device->seat,
188 WL_POINTER_AXIS_HORIZONTAL_SCROLL,
189 e->value * DEFAULT_AXIS_STEP_DISTANCE);
199 evdev_process_absolute(struct evdev_device *device, struct input_event *e)
202 evdev_process_touch(device, e);
204 evdev_process_absolute_motion(device, e);
209 is_motion_event(struct input_event *e)
223 case ABS_MT_POSITION_X:
224 case ABS_MT_POSITION_Y:
233 transform_absolute(struct evdev_device *device)
235 if (!device->abs.apply_calibration)
238 device->abs.x = device->abs.x * device->abs.calibration[0] +
239 device->abs.y * device->abs.calibration[1] +
240 device->abs.calibration[2];
242 device->abs.y = device->abs.x * device->abs.calibration[3] +
243 device->abs.y * device->abs.calibration[4] +
244 device->abs.calibration[5];
248 evdev_flush_motion(struct evdev_device *device, uint32_t time)
250 struct weston_seat *master = device->seat;
252 if (!(device->pending_events & EVDEV_SYN))
255 device->pending_events &= ~EVDEV_SYN;
256 if (device->pending_events & EVDEV_RELATIVE_MOTION) {
257 notify_motion(master, time, device->rel.dx, device->rel.dy);
258 device->pending_events &= ~EVDEV_RELATIVE_MOTION;
262 if (device->pending_events & EVDEV_ABSOLUTE_MT_DOWN) {
263 notify_touch(master, time,
265 wl_fixed_from_int(device->mt.x[device->mt.slot]),
266 wl_fixed_from_int(device->mt.y[device->mt.slot]),
268 device->pending_events &= ~EVDEV_ABSOLUTE_MT_DOWN;
269 device->pending_events &= ~EVDEV_ABSOLUTE_MT_MOTION;
271 if (device->pending_events & EVDEV_ABSOLUTE_MT_MOTION) {
272 notify_touch(master, time,
274 wl_fixed_from_int(device->mt.x[device->mt.slot]),
275 wl_fixed_from_int(device->mt.y[device->mt.slot]),
277 device->pending_events &= ~EVDEV_ABSOLUTE_MT_DOWN;
278 device->pending_events &= ~EVDEV_ABSOLUTE_MT_MOTION;
280 if (device->pending_events & EVDEV_ABSOLUTE_MT_UP) {
281 notify_touch(master, time, device->mt.slot, 0, 0,
283 device->pending_events &= ~EVDEV_ABSOLUTE_MT_UP;
285 if (device->pending_events & EVDEV_ABSOLUTE_MOTION) {
286 transform_absolute(device);
287 notify_motion_absolute(master, time,
288 wl_fixed_from_int(device->abs.x),
289 wl_fixed_from_int(device->abs.y));
290 device->pending_events &= ~EVDEV_ABSOLUTE_MOTION;
295 fallback_process(struct evdev_dispatch *dispatch,
296 struct evdev_device *device,
297 struct input_event *event,
300 switch (event->type) {
302 evdev_process_relative(device, event, time);
305 evdev_process_absolute(device, event);
308 evdev_process_key(device, event, time);
311 device->pending_events |= EVDEV_SYN;
317 fallback_destroy(struct evdev_dispatch *dispatch)
322 struct evdev_dispatch_interface fallback_interface = {
327 static struct evdev_dispatch *
328 fallback_dispatch_create(void)
330 struct evdev_dispatch *dispatch = malloc(sizeof *dispatch);
331 if (dispatch == NULL)
334 dispatch->interface = &fallback_interface;
340 evdev_process_events(struct evdev_device *device,
341 struct input_event *ev, int count)
343 struct evdev_dispatch *dispatch = device->dispatch;
344 struct input_event *e, *end;
347 device->pending_events = 0;
351 for (e = ev; e < end; e++) {
352 time = e->time.tv_sec * 1000 + e->time.tv_usec / 1000;
354 /* we try to minimize the amount of notifications to be
355 * forwarded to the compositor, so we accumulate motion
356 * events and send as a bunch */
357 if (!is_motion_event(e))
358 evdev_flush_motion(device, time);
360 dispatch->interface->process(dispatch, device, e, time);
363 evdev_flush_motion(device, time);
367 evdev_device_data(int fd, uint32_t mask, void *data)
369 struct weston_compositor *ec;
370 struct evdev_device *device = data;
371 struct input_event ev[32];
374 ec = device->seat->compositor;
378 /* If the compositor is repainting, this function is called only once
379 * per frame and we have to process all the events available on the
380 * fd, otherwise there will be input lag. */
383 len = mtdev_get(device->mtdev, fd, ev,
385 sizeof (struct input_event);
387 len = read(fd, &ev, sizeof ev);
389 if (len < 0 || len % sizeof ev[0] != 0) {
390 /* FIXME: call evdev_device_destroy when errno is ENODEV. */
394 evdev_process_events(device, ev, len / sizeof ev[0]);
402 evdev_handle_device(struct evdev_device *device)
404 struct input_absinfo absinfo;
405 unsigned long ev_bits[NBITS(EV_MAX)];
406 unsigned long abs_bits[NBITS(ABS_MAX)];
407 unsigned long rel_bits[NBITS(REL_MAX)];
408 unsigned long key_bits[NBITS(KEY_MAX)];
409 int has_key, has_abs;
416 ioctl(device->fd, EVIOCGBIT(0, sizeof(ev_bits)), ev_bits);
417 if (TEST_BIT(ev_bits, EV_ABS)) {
420 ioctl(device->fd, EVIOCGBIT(EV_ABS, sizeof(abs_bits)),
422 if (TEST_BIT(abs_bits, ABS_X)) {
423 ioctl(device->fd, EVIOCGABS(ABS_X), &absinfo);
424 device->abs.min_x = absinfo.minimum;
425 device->abs.max_x = absinfo.maximum;
426 device->caps |= EVDEV_MOTION_ABS;
428 if (TEST_BIT(abs_bits, ABS_Y)) {
429 ioctl(device->fd, EVIOCGABS(ABS_Y), &absinfo);
430 device->abs.min_y = absinfo.minimum;
431 device->abs.max_y = absinfo.maximum;
432 device->caps |= EVDEV_MOTION_ABS;
434 if (TEST_BIT(abs_bits, ABS_MT_SLOT)) {
435 ioctl(device->fd, EVIOCGABS(ABS_MT_POSITION_X),
437 device->abs.min_x = absinfo.minimum;
438 device->abs.max_x = absinfo.maximum;
439 ioctl(device->fd, EVIOCGABS(ABS_MT_POSITION_Y),
441 device->abs.min_y = absinfo.minimum;
442 device->abs.max_y = absinfo.maximum;
445 device->caps |= EVDEV_TOUCH;
448 if (TEST_BIT(ev_bits, EV_REL)) {
449 ioctl(device->fd, EVIOCGBIT(EV_REL, sizeof(rel_bits)),
451 if (TEST_BIT(rel_bits, REL_X) || TEST_BIT(rel_bits, REL_Y))
452 device->caps |= EVDEV_MOTION_REL;
454 if (TEST_BIT(ev_bits, EV_KEY)) {
456 ioctl(device->fd, EVIOCGBIT(EV_KEY, sizeof(key_bits)),
458 if (TEST_BIT(key_bits, BTN_TOOL_FINGER) &&
459 !TEST_BIT(key_bits, BTN_TOOL_PEN) &&
461 device->dispatch = evdev_touchpad_create(device);
462 for (i = KEY_ESC; i < KEY_MAX; i++) {
463 if (i >= BTN_MISC && i < KEY_OK)
465 if (TEST_BIT(key_bits, i)) {
466 device->caps |= EVDEV_KEYBOARD;
470 for (i = BTN_MISC; i < KEY_OK; i++) {
471 if (TEST_BIT(key_bits, i)) {
472 device->caps |= EVDEV_BUTTON;
477 if (TEST_BIT(ev_bits, EV_LED)) {
478 device->caps |= EVDEV_KEYBOARD;
481 /* This rule tries to catch accelerometer devices and opt out. We may
482 * want to adjust the protocol later adding a proper event for dealing
483 * with accelerometers and implement here accordingly */
484 if (has_abs && !has_key && !device->is_mt) {
485 weston_log("input device %s, %s "
486 "ignored: unsupported device type\n",
487 device->devname, device->devnode);
495 evdev_configure_device(struct evdev_device *device)
498 (EVDEV_MOTION_ABS | EVDEV_MOTION_REL | EVDEV_BUTTON))) {
499 weston_seat_init_pointer(device->seat);
500 weston_log("input device %s, %s is a pointer caps =%s%s%s\n",
501 device->devname, device->devnode,
502 device->caps & EVDEV_MOTION_ABS ? " absolute-motion" : "",
503 device->caps & EVDEV_MOTION_REL ? " relative-motion": "",
504 device->caps & EVDEV_BUTTON ? " button" : "");
506 if ((device->caps & EVDEV_KEYBOARD)) {
507 if (weston_seat_init_keyboard(device->seat, NULL) < 0)
509 weston_log("input device %s, %s is a keyboard\n",
510 device->devname, device->devnode);
512 if ((device->caps & EVDEV_TOUCH)) {
513 weston_seat_init_touch(device->seat);
514 weston_log("input device %s, %s is a touch device\n",
515 device->devname, device->devnode);
521 struct evdev_device *
522 evdev_device_create(struct weston_seat *seat, const char *path, int device_fd)
524 struct evdev_device *device;
525 struct weston_compositor *ec;
526 char devname[256] = "unknown";
528 device = malloc(sizeof *device);
531 memset(device, 0, sizeof *device);
533 ec = seat->compositor;
535 container_of(ec->output_list.next, struct weston_output, link);
539 device->mtdev = NULL;
540 device->devnode = strdup(path);
541 device->mt.slot = -1;
544 device->dispatch = NULL;
545 device->fd = device_fd;
547 ioctl(device->fd, EVIOCGNAME(sizeof(devname)), devname);
548 device->devname = strdup(devname);
550 if (!evdev_handle_device(device)) {
551 free(device->devnode);
552 free(device->devname);
554 return EVDEV_UNHANDLED_DEVICE;
557 if (evdev_configure_device(device) == -1)
560 /* If the dispatch was not set up use the fallback. */
561 if (device->dispatch == NULL)
562 device->dispatch = fallback_dispatch_create();
563 if (device->dispatch == NULL)
568 device->mtdev = mtdev_new_open(device->fd);
570 weston_log("mtdev failed to open for %s\n", path);
573 device->source = wl_event_loop_add_fd(ec->input_loop, device->fd,
575 evdev_device_data, device);
576 if (device->source == NULL)
582 device->dispatch->interface->destroy(device->dispatch);
584 free(device->devname);
585 free(device->devnode);
591 evdev_device_destroy(struct evdev_device *device)
593 struct evdev_dispatch *dispatch;
595 dispatch = device->dispatch;
597 dispatch->interface->destroy(dispatch);
599 wl_event_source_remove(device->source);
600 wl_list_remove(&device->link);
602 mtdev_close_delete(device->mtdev);
604 free(device->devname);
605 free(device->devnode);
610 evdev_notify_keyboard_focus(struct weston_seat *seat,
611 struct wl_list *evdev_devices)
613 struct evdev_device *device;
614 struct wl_array keys;
616 char evdev_keys[(KEY_CNT + 7) / 8];
617 char all_keys[(KEY_CNT + 7) / 8];
621 if (!seat->seat.keyboard)
624 memset(all_keys, 0, sizeof all_keys);
625 wl_list_for_each(device, evdev_devices, link) {
626 memset(evdev_keys, 0, sizeof evdev_keys);
627 ret = ioctl(device->fd,
628 EVIOCGKEY(sizeof evdev_keys), evdev_keys);
630 weston_log("failed to get keys for device %s\n",
634 for (i = 0; i < ARRAY_LENGTH(evdev_keys); i++)
635 all_keys[i] |= evdev_keys[i];
638 wl_array_init(&keys);
639 for (i = 0; i < KEY_CNT; i++) {
640 set = all_keys[i >> 3] & (1 << (i & 7));
642 k = wl_array_add(&keys, sizeof *k);
647 notify_keyboard_focus_in(seat, &keys, STATE_UPDATE_AUTOMATIC);
649 wl_array_release(&keys);