summaryrefslogtreecommitdiffstats
path: root/firmware/target/hosted/button-devinput.c
blob: b1b4dfca5dd0a5f0fe0120ed9a064df3e704f91d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/***************************************************************************
 *             __________               __   ___
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 *
 * Copyright (C) 2017 Marcin Bukat
 * Copyright (C) 2020 Solomon Peachy

 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/
#include <poll.h>
#include <errno.h>
#include <unistd.h>
#include <sys/types.h>
#include <linux/input.h>
#include <fcntl.h>
#include <string.h>
#include <stdlib.h>

#include "kernel.h"
#include "sysfs.h"
#include "button.h"
#include "panic.h"

#define NR_POLL_DESC    4

static int num_devices = 0;
static struct pollfd poll_fds[NR_POLL_DESC];

void button_init_device(void)
{
    const char * const input_devs[NR_POLL_DESC] = {
        "/dev/input/event0",
        "/dev/input/event1",
        "/dev/input/event2",
        "/dev/input/event3",
    };

    for(int i = 0; i < NR_POLL_DESC; i++)
    {
        int fd = open(input_devs[i], O_RDONLY | O_CLOEXEC);

        if(fd >= 0)
        {
            poll_fds[num_devices].fd = fd;
            poll_fds[num_devices].events = POLLIN;
            poll_fds[num_devices].revents = 0;
            num_devices++;
        }
    }
}

void button_close_device(void)
{
    /* close descriptors */
    for(int i = 0; i < num_devices; i++)
    {
        close(poll_fds[i].fd);
    }
    num_devices = 0;
}

#ifdef BUTTON_DELAY_RELEASE
static int button_delay_release = 0;
static int delay_tick = 0;
#endif

int button_read_device(void)
{
    static int button_bitmap = 0;
    struct input_event event;

#ifdef HAVE_SCROLLWHEEL
    int wheel_ticks = 0;
#endif

#ifdef BUTTON_DELAY_RELEASE
    /* First de-assert delayed-release buttons */
    if (button_delay_release && current_tick >= delay_tick)
    {
        button_bitmap &= ~button_delay_release;
        button_delay_release = 0;
    }
#endif

    /* check if there are any events pending and process them */
    while(poll(poll_fds, num_devices, 0))
    {
        for(int i = 0; i < num_devices; i++)
        {
            /* read only if non-blocking */
            if(poll_fds[i].revents & POLLIN)
            {
                int size = read(poll_fds[i].fd, &event, sizeof(event));
                if(size == (int)sizeof(event))
                {
                    /* map linux event code to rockbox button bitmap */
                    int bmap = button_map(event.code);

                    /* event.value == 0x10000 means press
                     * event.value == 0 means release
                     */
                    if(event.value)
                    {
#ifdef HAVE_SCROLLWHEEL
			/* Filter out wheel ticks */
                        if (bmap & BUTTON_SCROLL_BACK)
                            wheel_ticks--;
                        else if (bmap & BUTTON_SCROLL_FWD)
                            wheel_ticks++;
                        bmap &= ~(BUTTON_SCROLL_BACK|BUTTON_SCROLL_FWD);
#endif
#ifdef BUTTON_DELAY_RELEASE
                        bmap &= ~BUTTON_DELAY_RELEASE;
#endif
                        button_bitmap |= bmap;
                    }
                    else
                    {
#ifdef BUTTON_DELAY_RELEASE
                        /* Delay the release of any requested buttons */
                        if (bmap & BUTTON_DELAY_RELEASE)
                        {
                            button_delay_release |= bmap & ~BUTTON_DELAY_RELEASE;
                            delay_tick = current_tick + HZ/20;
                            bmap = 0;
                        }
#endif

#ifdef HAVE_SCROLLWHEEL
                        /* Wheel gives us press+release back to back; ignore the release */
                        bmap &= ~(BUTTON_SCROLL_BACK|BUTTON_SCROLL_FWD);
#endif
                        button_bitmap &= ~bmap;
                    }
                }
            }
        }
    }

#ifdef HAVE_SCROLLWHEEL
    // TODO: Is there a better way to handle this?
    // TODO: enable BUTTON_REPEAT if the events happen quickly enough
    if (wheel_ticks > 0)
    {
        while (wheel_ticks-- > 0)
        {
            queue_post(&button_queue, BUTTON_SCROLL_FWD, 0);
        }
    }
    else
    {
        while (wheel_ticks++ < 0)
        {
            queue_post(&button_queue, BUTTON_SCROLL_BACK, 0);
        }
    }
#endif

    return button_bitmap;
}