From 1bba42a5c660a1c5efd69e588916c1a64069fcf3 Mon Sep 17 00:00:00 2001 From: notaz Date: Mon, 21 Mar 2011 02:49:58 +0200 Subject: [PATCH] frontend: input: add hack to allow abs-only devices this is for pandora nubs mainly. --- frontend/linux/in_evdev.c | 48 ++++++++++++++++++++++----------------- frontend/linux/in_evdev.h | 2 ++ 2 files changed, 29 insertions(+), 21 deletions(-) diff --git a/frontend/linux/in_evdev.c b/frontend/linux/in_evdev.c index f11f3a41..d33dbc50 100644 --- a/frontend/linux/in_evdev.c +++ b/frontend/linux/in_evdev.c @@ -49,6 +49,8 @@ typedef struct { #define KEYBITS_BIT_CLEAR(x) (keybits[(x)/sizeof(keybits[0])/8] &= \ ~(1 << ((x) & (sizeof(keybits[0])*8-1)))) +int in_evdev_allow_abs_only; + static const char * const in_evdev_prefix = "evdev:"; static const char * const in_evdev_keys[KEY_CNT] = { [0 ... KEY_MAX] = NULL, @@ -151,7 +153,7 @@ static void in_evdev_probe(void) for (i = 0;; i++) { int support = 0, count = 0; - int u, ret, fd, kc_first, kc_last; + int u, ret, fd, kc_first = KEY_MAX, kc_last = 0; in_evdev_t *dev; char name[64]; @@ -170,30 +172,29 @@ static void in_evdev_probe(void) goto skip; } - if (!(support & (1 << EV_KEY))) - goto skip; - - ret = ioctl(fd, EVIOCGBIT(EV_KEY, sizeof(keybits)), keybits); - if (ret == -1) { - printf("in_evdev: ioctl failed on %s\n", name); - goto skip; - } + if (support & (1 << EV_KEY)) { + ret = ioctl(fd, EVIOCGBIT(EV_KEY, sizeof(keybits)), keybits); + if (ret == -1) { + printf("in_evdev: ioctl failed on %s\n", name); + goto skip; + } - /* check for interesting keys */ - kc_first = KEY_MAX; - kc_last = 0; - for (u = 0; u < KEY_CNT; u++) { - if (KEYBITS_BIT(u)) { - if (u < kc_first) - kc_first = u; - if (u > kc_last) - kc_last = u; - if (u != KEY_POWER && u != KEY_SLEEP && u != BTN_TOUCH) - count++; + /* check for interesting keys */ + for (u = 0; u < KEY_CNT; u++) { + if (KEYBITS_BIT(u)) { + if (u < kc_first) + kc_first = u; + if (u > kc_last) + kc_last = u; + if (u != KEY_POWER && u != KEY_SLEEP && u != BTN_TOUCH) + count++; + if (u == BTN_TOUCH) /* we can't deal with ts currently */ + goto skip; + } } } - if (count == 0) + if (count == 0 && !in_evdev_allow_abs_only) goto skip; dev = calloc(1, sizeof(*dev)); @@ -237,6 +238,11 @@ static void in_evdev_probe(void) } no_abs: + if (count == 0 && dev->abs_lzone == 0) { + free(dev); + goto skip; + } + dev->fd = fd; dev->kc_first = kc_first; dev->kc_last = kc_last; diff --git a/frontend/linux/in_evdev.h b/frontend/linux/in_evdev.h index 49682c35..8e48e2c6 100644 --- a/frontend/linux/in_evdev.h +++ b/frontend/linux/in_evdev.h @@ -1,4 +1,6 @@ +extern int in_evdev_allow_abs_only; + void in_evdev_init(void *vdrv); int in_evdev_update(void *drv_data, const int *binds, int *result); -- 2.39.2