blob: 557ab84e4b9af2706aadfb474d8051c0298a7d05 [file] [log] [blame]
Dees_Troy51a0e822012-09-05 15:24:24 -04001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <stdio.h>
18#include <stdlib.h>
19#include <fcntl.h>
20#include <dirent.h>
21#include <sys/poll.h>
22#include <limits.h>
23
24#include <linux/input.h>
25
26#include "../common.h"
27
28#include "minui.h"
29
30//#define _EVENT_LOGGING
31
32#define MAX_DEVICES 16
33
34#define VIBRATOR_TIMEOUT_FILE "/sys/class/timed_output/vibrator/enable"
35#define VIBRATOR_TIME_MS 50
36
Dees_Troyf7596752012-09-28 13:21:36 -040037#ifndef SYN_REPORT
Dees_Troy51a0e822012-09-05 15:24:24 -040038#define SYN_REPORT 0x00
Dees_Troyf7596752012-09-28 13:21:36 -040039#endif
40#ifndef SYN_CONFIG
Dees_Troy51a0e822012-09-05 15:24:24 -040041#define SYN_CONFIG 0x01
Dees_Troyf7596752012-09-28 13:21:36 -040042#endif
43#ifndef SYN_MT_REPORT
Dees_Troy51a0e822012-09-05 15:24:24 -040044#define SYN_MT_REPORT 0x02
Dees_Troyf7596752012-09-28 13:21:36 -040045#endif
Dees_Troy51a0e822012-09-05 15:24:24 -040046
47#define ABS_MT_POSITION 0x2a /* Group a set of X and Y */
48#define ABS_MT_AMPLITUDE 0x2b /* Group a set of Z and W */
49#define ABS_MT_SLOT 0x2f
50#define ABS_MT_TOUCH_MAJOR 0x30
51#define ABS_MT_TOUCH_MINOR 0x31
52#define ABS_MT_WIDTH_MAJOR 0x32
53#define ABS_MT_WIDTH_MINOR 0x33
54#define ABS_MT_ORIENTATION 0x34
55#define ABS_MT_POSITION_X 0x35
56#define ABS_MT_POSITION_Y 0x36
57#define ABS_MT_TOOL_TYPE 0x37
58#define ABS_MT_BLOB_ID 0x38
59#define ABS_MT_TRACKING_ID 0x39
60#define ABS_MT_PRESSURE 0x3a
61#define ABS_MT_DISTANCE 0x3b
62
63enum {
64 DOWN_NOT,
65 DOWN_SENT,
66 DOWN_RELEASED,
67};
68
69struct virtualkey {
70 int scancode;
71 int centerx, centery;
72 int width, height;
73};
74
75struct position {
76 int x, y;
77 int synced;
78 struct input_absinfo xi, yi;
79};
80
81struct ev {
82 struct pollfd *fd;
83
84 struct virtualkey *vks;
85 int vk_count;
86
87 char deviceName[64];
88
89 int ignored;
90
91 struct position p, mt_p;
92 int down;
93};
94
95static struct pollfd ev_fds[MAX_DEVICES];
96static struct ev evs[MAX_DEVICES];
97static unsigned ev_count = 0;
98
99static inline int ABS(int x) {
100 return x<0?-x:x;
101}
102
103int vibrate(int timeout_ms)
104{
105 char str[20];
106 int fd;
107 int ret;
108
109 fd = open(VIBRATOR_TIMEOUT_FILE, O_WRONLY);
110 if (fd < 0)
111 return -1;
112
113 ret = snprintf(str, sizeof(str), "%d", timeout_ms);
114 ret = write(fd, str, ret);
115 close(fd);
116
117 if (ret < 0)
118 return -1;
119
120 return 0;
121}
122
123/* Returns empty tokens */
124static char *vk_strtok_r(char *str, const char *delim, char **save_str)
125{
126 if(!str)
127 {
128 if(!*save_str)
129 return NULL;
130
131 str = (*save_str) + 1;
132 }
133 *save_str = strpbrk(str, delim);
134
135 if (*save_str)
136 **save_str = '\0';
137
138 return str;
139}
140
141static int vk_init(struct ev *e)
142{
143 char vk_path[PATH_MAX] = "/sys/board_properties/virtualkeys.";
144 char vks[2048], *ts = NULL;
145 ssize_t len;
146 int vk_fd;
147 int i;
148
149 e->vk_count = 0;
150
151 len = strlen(vk_path);
152 len = ioctl(e->fd->fd, EVIOCGNAME(sizeof(e->deviceName)), e->deviceName);
153 if (len <= 0)
154 {
155 LOGE("Unable to query event object.\n");
156 return -1;
157 }
158#ifdef _EVENT_LOGGING
159 LOGI("Event object: %s\n", e->deviceName);
160#endif
161
162 // Blacklist these "input" devices
163 if (strcmp(e->deviceName, "bma250") == 0)
164 {
165 e->ignored = 1;
166 }
167
168 strcat(vk_path, e->deviceName);
169
170 // Some devices split the keys from the touchscreen
171 e->vk_count = 0;
172 vk_fd = open(vk_path, O_RDONLY);
173 if (vk_fd >= 0)
174 {
175 len = read(vk_fd, vks, sizeof(vks)-1);
176 close(vk_fd);
177 if (len <= 0)
178 return -1;
179
180 vks[len] = '\0';
181
182 /* Parse a line like:
183 keytype:keycode:centerx:centery:width:height:keytype2:keycode2:centerx2:...
184 */
185 for (ts = vks, e->vk_count = 1; *ts; ++ts) {
186 if (*ts == ':')
187 ++e->vk_count;
188 }
189
190 if (e->vk_count % 6) {
191 LOGW("minui: %s is %d %% 6\n", vk_path, e->vk_count % 6);
192 }
193 e->vk_count /= 6;
194 if (e->vk_count <= 0)
195 return -1;
196
197 e->down = DOWN_NOT;
198 }
199
200 ioctl(e->fd->fd, EVIOCGABS(ABS_X), &e->p.xi);
201 ioctl(e->fd->fd, EVIOCGABS(ABS_Y), &e->p.yi);
202 e->p.synced = 0;
203#ifdef _EVENT_LOGGING
204 LOGI("EV: ST minX: %d maxX: %d minY: %d maxY: %d\n", e->p.xi.minimum, e->p.xi.maximum, e->p.yi.minimum, e->p.yi.maximum);
205#endif
206
207 ioctl(e->fd->fd, EVIOCGABS(ABS_MT_POSITION_X), &e->mt_p.xi);
208 ioctl(e->fd->fd, EVIOCGABS(ABS_MT_POSITION_Y), &e->mt_p.yi);
209 e->mt_p.synced = 0;
210#ifdef _EVENT_LOGGING
211 LOGI("EV: MT minX: %d maxX: %d minY: %d maxY: %d\n", e->mt_p.xi.minimum, e->mt_p.xi.maximum, e->mt_p.yi.minimum, e->mt_p.yi.maximum);
212#endif
213
214 e->vks = malloc(sizeof(*e->vks) * e->vk_count);
215
216 for (i = 0; i < e->vk_count; ++i) {
217 char *token[6];
218 int j;
219
220 for (j = 0; j < 6; ++j) {
221 token[j] = vk_strtok_r((i||j)?NULL:vks, ":", &ts);
222 }
223
224 if (strcmp(token[0], "0x01") != 0) {
225 /* Java does string compare, so we do too. */
226 LOGW("minui: %s: ignoring unknown virtual key type %s\n", vk_path, token[0]);
227 continue;
228 }
229
230 e->vks[i].scancode = strtol(token[1], NULL, 0);
231 e->vks[i].centerx = strtol(token[2], NULL, 0);
232 e->vks[i].centery = strtol(token[3], NULL, 0);
233 e->vks[i].width = strtol(token[4], NULL, 0);
234 e->vks[i].height = strtol(token[5], NULL, 0);
235 }
236
237 return 0;
238}
239
240int ev_init(void)
241{
242 DIR *dir;
243 struct dirent *de;
244 int fd;
245
246 dir = opendir("/dev/input");
247 if(dir != 0) {
248 while((de = readdir(dir))) {
249// fprintf(stderr,"/dev/input/%s\n", de->d_name);
250 if(strncmp(de->d_name,"event",5)) continue;
251 fd = openat(dirfd(dir), de->d_name, O_RDONLY);
252 if(fd < 0) continue;
253
254 ev_fds[ev_count].fd = fd;
255 ev_fds[ev_count].events = POLLIN;
256 evs[ev_count].fd = &ev_fds[ev_count];
257
258 /* Load virtualkeys if there are any */
259 vk_init(&evs[ev_count]);
260
261 ev_count++;
262 if(ev_count == MAX_DEVICES) break;
263 }
264 }
265
266 return 0;
267}
268
269void ev_exit(void)
270{
271 while (ev_count-- > 0) {
272 if (evs[ev_count].vk_count) {
273 free(evs[ev_count].vks);
274 evs[ev_count].vk_count = 0;
275 }
276 close(ev_fds[ev_count].fd);
277 }
278}
279
280static int vk_inside_display(__s32 value, struct input_absinfo *info, int screen_size)
281{
282 int screen_pos;
283
284 if (info->minimum == info->maximum)
285 return 0;
286
287 screen_pos = (value - info->minimum) * (screen_size - 1) / (info->maximum - info->minimum);
288 return (screen_pos >= 0 && screen_pos < screen_size);
289}
290
291static int vk_tp_to_screen(struct position *p, int *x, int *y)
292{
293 if (p->xi.minimum == p->xi.maximum || p->yi.minimum == p->yi.maximum)
294 {
295 // In this case, we assume the screen dimensions are the same.
296 *x = p->x;
297 *y = p->y;
298 return 0;
299 }
300
301#ifdef _EVENT_LOGGING
302 LOGI("EV: p->x=%d x-range=%d,%d fb-width=%d\n", p->x, p->xi.minimum, p->xi.maximum, gr_fb_width());
303#endif
304
305#ifndef RECOVERY_TOUCHSCREEN_SWAP_XY
306 int fb_width = gr_fb_width();
307 int fb_height = gr_fb_height();
308#else
309 // We need to swap the scaling sizes, too
310 int fb_width = gr_fb_height();
311 int fb_height = gr_fb_width();
312#endif
313
314 *x = (p->x - p->xi.minimum) * (fb_width - 1) / (p->xi.maximum - p->xi.minimum);
315 *y = (p->y - p->yi.minimum) * (fb_height - 1) / (p->yi.maximum - p->yi.minimum);
316
317 if (*x >= 0 && *x < fb_width &&
318 *y >= 0 && *y < fb_height)
319 {
320 return 0;
321 }
322
323 return 1;
324}
325
326/* Translate a virtual key in to a real key event, if needed */
327/* Returns non-zero when the event should be consumed */
328static int vk_modify(struct ev *e, struct input_event *ev)
329{
330 static int downX = -1, downY = -1;
331 static int discard = 0;
332 static int lastWasSynReport = 0;
333 static int touchReleaseOnNextSynReport = 0;
334 int i;
335 int x, y;
336
337 // This is used to ditch useless event handlers, like an accelerometer
338 if (e->ignored) return 1;
339
340 if (ev->type == EV_REL && ev->code == REL_Z)
341 {
342 // This appears to be an accelerometer or another strange input device. It's not the touchscreen.
343#ifdef _EVENT_LOGGING
344 LOGI("EV: Device disabled due to non-touchscreen messages.\n");
345#endif
346 e->ignored = 1;
347 return 1;
348 }
349
350#ifdef _EVENT_LOGGING
351 LOGI("EV: %s => type: %x code: %x value: %d\n", e->deviceName, ev->type, ev->code, ev->value);
352#endif
353
354 // Handle keyboard events, value of 1 indicates key down, 0 indicates key up
355 if (ev->type == EV_KEY) {
356 return 0;
357 }
358
359 if (ev->type == EV_ABS) {
360 switch (ev->code) {
361
362 case ABS_X: //00
363 e->p.synced |= 0x01;
364 e->p.x = ev->value;
365#ifdef _EVENT_LOGGING
366 LOGI("EV: %s => EV_ABS ABS_X %d\n", e->deviceName, ev->value);
367#endif
368 break;
369
370 case ABS_Y: //01
371 e->p.synced |= 0x02;
372 e->p.y = ev->value;
373#ifdef _EVENT_LOGGING
374 LOGI("EV: %s => EV_ABS ABS_Y %d\n", e->deviceName, ev->value);
375#endif
376 break;
377
378 case ABS_MT_POSITION: //2a
379 e->mt_p.synced = 0x03;
380 if (ev->value == (1 << 31))
381 {
382 e->mt_p.x = 0;
383 e->mt_p.y = 0;
384 lastWasSynReport = 1;
385 }
386 else
387 {
388 lastWasSynReport = 0;
389 e->mt_p.x = (ev->value & 0x7FFF0000) >> 16;
390 e->mt_p.y = (ev->value & 0xFFFF);
391 }
392 break;
393
394 case ABS_MT_TOUCH_MAJOR: //30
395 if (ev->value == 0)
396 {
397 // We're in a touch release, although some devices will still send positions as well
398 e->mt_p.x = 0;
399 e->mt_p.y = 0;
400 touchReleaseOnNextSynReport = 1;
401 }
402#ifdef _EVENT_LOGGING
403 LOGI("EV: %s => EV_ABS ABS_MT_TOUCH_MAJOR %d\n", e->deviceName, ev->value);
404#endif
405 break;
406
407 case ABS_MT_PRESSURE: //3a
408 if (ev->value == 0)
409 {
410 // We're in a touch release, although some devices will still send positions as well
411 e->mt_p.x = 0;
412 e->mt_p.y = 0;
413 touchReleaseOnNextSynReport = 1;
414 }
415#ifdef _EVENT_LOGGING
416 LOGI("EV: %s => EV_ABS ABS_MT_PRESSURE %d\n", e->deviceName, ev->value);
417#endif
418 break;
419
420 case ABS_MT_POSITION_X: //35
421 e->mt_p.synced |= 0x01;
422 e->mt_p.x = ev->value;
423#ifdef _EVENT_LOGGING
424 LOGI("EV: %s => EV_ABS ABS_MT_POSITION_X %d\n", e->deviceName, ev->value);
425#endif
426 break;
427
428 case ABS_MT_POSITION_Y: //36
429 e->mt_p.synced |= 0x02;
430 e->mt_p.y = ev->value;
431#ifdef _EVENT_LOGGING
432 LOGI("EV: %s => EV_ABS ABS_MT_POSITION_Y %d\n", e->deviceName, ev->value);
433#endif
434 break;
435
436#ifdef _EVENT_LOGGING
437 // All of these items are strictly for logging purposes only. Return 1 because they don't need to be handled.
438 case ABS_MT_TOUCH_MINOR: //31
439 LOGI("EV: %s => EV_ABS ABS_MT_TOUCH_MINOR %d\n", e->deviceName, ev->value);
440 return 1;
441 break;
442
443 case ABS_MT_WIDTH_MAJOR: //32
444 LOGI("EV: %s => EV_ABS ABS_MT_WIDTH_MAJOR %d\n", e->deviceName, ev->value);
445 return 1;
446 break;
447
448 case ABS_MT_WIDTH_MINOR: //33
449 LOGI("EV: %s => EV_ABS ABS_MT_WIDTH_MINOR %d\n", e->deviceName, ev->value);
450 return 1;
451 break;
452
453 case ABS_MT_ORIENTATION: //34
454 LOGI("EV: %s => EV_ABS ABS_MT_ORIENTATION %d\n", e->deviceName, ev->value);
455 return 1;
456 break;
457
458 case ABS_MT_TOOL_TYPE: //37
459 LOGI("EV: %s => EV_ABS ABS_MT_TOOL_TYPE %d\n", e->deviceName, ev->value);
460 return 1;
461 break;
462
463 case ABS_MT_BLOB_ID: //38
464 LOGI("EV: %s => EV_ABS ABS_MT_BLOB_ID %d\n", e->deviceName, ev->value);
465 return 1;
466 break;
467
468 case ABS_MT_TRACKING_ID: //39
469 LOGI("EV: %s => EV_ABS ABS_MT_TRACKING_ID %d\n", e->deviceName, ev->value);
470 return 1;
471 break;
472
473 case ABS_MT_DISTANCE: //3b
474 LOGI("EV: %s => EV_ABS ABS_MT_DISTANCE %d\n", e->deviceName, ev->value);
475 return 1;
476 break;
477#endif
478
479 default:
480 // This is an unhandled message, just skip it
481 return 1;
482 }
483
484 if (ev->code != ABS_MT_POSITION)
485 {
486 lastWasSynReport = 0;
487 return 1;
488 }
489 }
490
491 // Check if we should ignore the message
492 if (ev->code != ABS_MT_POSITION && (ev->type != EV_SYN || (ev->code != SYN_REPORT && ev->code != SYN_MT_REPORT)))
493 {
494 lastWasSynReport = 0;
495 return 0;
496 }
497
498#ifdef _EVENT_LOGGING
499 if (ev->type == EV_SYN && ev->code == SYN_REPORT) LOGI("EV: %s => EV_SYN SYN_REPORT\n", e->deviceName);
500 if (ev->type == EV_SYN && ev->code == SYN_MT_REPORT) LOGI("EV: %s => EV_SYN SYN_MT_REPORT\n", e->deviceName);
501#endif
502
503 // Discard the MT versions
504 if (ev->code == SYN_MT_REPORT) return 0;
505
506 if (lastWasSynReport == 1 || touchReleaseOnNextSynReport == 1)
507 {
508 // Reset the value
509 touchReleaseOnNextSynReport = 0;
510
511 // We are a finger-up state
512 if (!discard)
513 {
514 // Report the key up
515 ev->type = EV_ABS;
516 ev->code = 0;
517 ev->value = (downX << 16) | downY;
518 }
519 downX = -1;
520 downY = -1;
521 if (discard)
522 {
523 discard = 0;
524 return 1;
525 }
526 return 0;
527 }
528 lastWasSynReport = 1;
529
530 // Retrieve where the x,y position is
531 if (e->p.synced & 0x03)
532 {
533 vk_tp_to_screen(&e->p, &x, &y);
534 }
535 else if (e->mt_p.synced & 0x03)
536 {
537 vk_tp_to_screen(&e->mt_p, &x, &y);
538 }
539 else
540 {
541 // We don't have useful information to convey
542 return 1;
543 }
544
545#ifdef RECOVERY_TOUCHSCREEN_SWAP_XY
546 x ^= y;
547 y ^= x;
548 x ^= y;
549#endif
550#ifdef RECOVERY_TOUCHSCREEN_FLIP_X
551 x = gr_fb_width() - x;
552#endif
553#ifdef RECOVERY_TOUCHSCREEN_FLIP_Y
554 y = gr_fb_height() - y;
555#endif
556
557#ifdef _EVENT_LOGGING
558 LOGI("EV: x: %d y: %d\n", x, y);
559#endif
560
561 // Clear the current sync states
562 e->p.synced = e->mt_p.synced = 0;
563
564 // If we have nothing useful to report, skip it
565 if (x == -1 || y == -1) return 1;
566
567 // On first touch, see if we're at a virtual key
568 if (downX == -1)
569 {
570 // Attempt mapping to virtual key
571 for (i = 0; i < e->vk_count; ++i)
572 {
573 int xd = ABS(e->vks[i].centerx - x);
574 int yd = ABS(e->vks[i].centery - y);
575
576 if (xd < e->vks[i].width/2 && yd < e->vks[i].height/2)
577 {
578 ev->type = EV_KEY;
579 ev->code = e->vks[i].scancode;
580 ev->value = 1;
581
582 vibrate(VIBRATOR_TIME_MS);
583
584 // Mark that all further movement until lift is discard,
585 // and make sure we don't come back into this area
586 discard = 1;
587 downX = 0;
588 return 0;
589 }
590 }
591 }
592
593 // If we were originally a button press, discard this event
594 if (discard)
595 {
596 return 1;
597 }
598
599 // Record where we started the touch for deciding if this is a key or a scroll
600 downX = x;
601 downY = y;
602
603 ev->type = EV_ABS;
604 ev->code = 1;
605 ev->value = (x << 16) | y;
606 return 0;
607}
608
609int ev_get(struct input_event *ev, unsigned dont_wait)
610{
611 int r;
612 unsigned n;
613
614 do {
615 r = poll(ev_fds, ev_count, dont_wait ? 0 : -1);
616
617 if(r > 0) {
618 for(n = 0; n < ev_count; n++) {
619 if(ev_fds[n].revents & POLLIN) {
620 r = read(ev_fds[n].fd, ev, sizeof(*ev));
621 if(r == sizeof(*ev)) {
622 if (!vk_modify(&evs[n], ev))
623 return 0;
624 }
625 }
626 }
627 }
628 } while(dont_wait == 0);
629
630 return -1;
631}
632
633int ev_wait(int timeout)
634{
635 return -1;
636}
637
638void ev_dispatch(void)
639{
640 return;
641}
642
643int ev_get_input(int fd, short revents, struct input_event *ev)
644{
645 return -1;
646}