-
Notifications
You must be signed in to change notification settings - Fork 24
/
fbink_input_scan.h
191 lines (173 loc) · 6.83 KB
/
fbink_input_scan.h
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/*
FBInk: FrameBuffer eInker, a library to print text & images to an eInk Linux framebuffer
Copyright (C) 2024 NiLuJe <[email protected]>
SPDX-License-Identifier: GPL-3.0-or-later
----
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 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef __FBINK_INPUT_SCAN_H
#define __FBINK_INPUT_SCAN_H
// Mainly to make IDEs happy
#include "fbink.h"
#include "fbink_internal.h"
#include <dirent.h>
#include <fcntl.h>
#include <limits.h>
#include <linux/input.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#ifdef FBINK_WITH_INPUT
# ifdef __GLIBC__
// versionsort sorts the device names in proper numerical order
// (e.g. so that event10 is listed after event9, not event1),
// but is only available in glibc.
// NOTE: The signature of versionsort changed to match POSIX.1-2008 in glibc 2.10 (c.f., scandir(3))...
# if ((__GLIBC__ > 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 10)))
static int (*sort_fn)(const struct dirent**, const struct dirent**) = versionsort;
# else
static int (*sort_fn)(const void*, const void*) = versionsort;
# endif
# else
// Fall back to basic alphabetical sorting for other libc implementations.
static int (*sort_fn)(const struct dirent**, const struct dirent**) = alphasort;
# endif
# define DEV_INPUT_EVENT "/dev/input"
# define EVENT_DEV_NAME "event"
static int
is_event_device(const struct dirent* dir)
{
return strncmp(EVENT_DEV_NAME, dir->d_name, 5) == 0;
}
// This needs to be kernel-compatible
# define BITS_PER_LONG (sizeof(unsigned long) * 8)
# define NBITS(x) ((((x) - 1) / BITS_PER_LONG) + 1)
# define OFF(x) ((x) % BITS_PER_LONG)
# define BIT(x) (1UL << OFF(x))
# define LONG(x) ((x) / BITS_PER_LONG)
# define test_bit(bit, array) ((array[LONG(bit)] >> OFF(bit)) & 1)
static bool test_pointers(FBInkInputDevice* restrict dev,
const unsigned long* restrict bitmask_ev,
const unsigned long* restrict bitmask_abs,
const unsigned long* restrict bitmask_key,
const unsigned long* restrict bitmask_rel,
const unsigned long* restrict bitmask_props);
static bool test_key(FBInkInputDevice* restrict dev,
const unsigned long* restrict bitmask_ev,
const unsigned long* restrict bitmask_key);
static void test_platform_keys(FBInkInputDevice* restrict dev, const unsigned long* restrict bitmask_key);
static int check_device_cap(FBInkInputDevice* restrict dev);
static void check_device(FBInkInputDevice* restrict dev,
INPUT_DEVICE_TYPE_T match_types,
INPUT_DEVICE_TYPE_T exclude_types,
INPUT_DEVICE_TYPE_T settings);
static __attribute__((cold)) const char* input_type_to_string(INPUT_DEVICE_TYPE_E type);
static __attribute__((cold)) void concat_type_recap(INPUT_DEVICE_TYPE_T type, char* string, size_t dsize);
// Old kernels need a hand...
# ifndef EVIOCGPROP
# define EVIOCGPROP(len) _IOC(_IOC_READ, 'E', 0x09, len)
# endif
# ifndef INPUT_PROP_DIRECT
# define INPUT_PROP_DIRECT 0x01
# endif
# ifndef INPUT_PROP_POINTING_STICK
# define INPUT_PROP_POINTING_STICK 0x05
# endif
# ifndef INPUT_PROP_ACCELEROMETER
# define INPUT_PROP_ACCELEROMETER 0x06
# endif
# ifndef INPUT_PROP_MAX
# define INPUT_PROP_MAX 0x1f
# endif
# ifndef ABS_MT_SLOT
# define ABS_MT_SLOT 0x2f
# endif
# ifndef ABS_MT_POSITION_X
# define ABS_MT_POSITION_X 0x35
# endif
# ifndef ABS_MT_POSITION_Y
# define ABS_MT_POSITION_Y 0x36
# endif
# ifndef BTN_TRIGGER_HAPPY
# define BTN_TRIGGER_HAPPY 0x2c0
# endif
# ifndef BTN_DPAD_UP
# define BTN_DPAD_UP 0x220
# endif
// Each of our target platforms tend to settle on some specific,
// sometimes barely related, keycodes for common functions...
# if defined(FBINK_FOR_KOBO)
# define PLATFORM_KEY_POWER KEY_POWER
# define PLATFORM_KEY_SLEEP KEY_H // PowerCover
# define PLATFORM_KEY_WAKEUP KEY_F1 // Also PowerCover, depending on the device...
# define PLATFORM_KEY_PGPREV KEY_F23
# define PLATFORM_KEY_PGPREV_ALT 0
# define PLATFORM_KEY_PGNEXT KEY_F24
# define PLATFORM_KEY_PGNEXT_ALT 0
# define PLATFORM_KEY_HOME KEY_HOME
# define PLATFORM_KEY_FRONTLIGHT KEY_KATAKANA
# define PLATFORM_KEY_MENU 0
# define PLATFORM_KEY_DPAD 0
# define PLATFORM_ROTATION_EV_TYPE EV_MSC
# define PLATFORM_ROTATION_EV_CODE MSC_RAW
// For reference, custom NTX input-event-codes we might care about:
// Pen stuff
/*
# define ABS_AZIMUTH 0x1d
# define ABS_TIP_MAX 0x29
# define ABS_TIP_MIN 0x2a
# define ABS_TIP_HIST_MIN 0x2b
# define ABS_TIP_HIST_MAX 0x2c
*/
// ROTATION_EVENT values
/*
# define MSC_RAW_GSENSOR_PORTRAIT_DOWN 0x17
# define MSC_RAW_GSENSOR_PORTRAIT_UP 0x18
# define MSC_RAW_GSENSOR_LANDSCAPE_RIGHT 0x19
# define MSC_RAW_GSENSOR_LANDSCAPE_LEFT 0x1a
# define MSC_RAW_GSENSOR_BACK 0x1b
# define MSC_RAW_GSENSOR_FRONT 0x1c
*/
# elif defined(FBINK_FOR_KINDLE)
# define PLATFORM_KEY_POWER KEY_POWER // Generally handled by powerd
# define PLATFORM_KEY_SLEEP 0 // :?
# define PLATFORM_KEY_WAKEUP 0 // :?
# define PLATFORM_KEY_PGPREV KEY_PAGEUP
# define PLATFORM_KEY_PGPREV_ALT KEY_F23
# define PLATFORM_KEY_PGNEXT KEY_PAGEDOWN
# define PLATFORM_KEY_PGNEXT_ALT KEY_YEN
# define PLATFORM_KEY_HOME KEY_HOME
# define PLATFORM_KEY_FRONTLIGHT 0
# define PLATFORM_KEY_MENU KEY_MENU
# define PLATFORM_KEY_DPAD KEY_LEFT // Because FW 2.x uses KEY_HANGEUL for Up for some reason...
# define PLATFORM_ROTATION_EV_TYPE EV_ABS
# define PLATFORM_ROTATION_EV_CODE ABS_PRESSURE // Yeah, don't ask me...
# else
# define PLATFORM_KEY_POWER KEY_POWER
# define PLATFORM_KEY_SLEEP KEY_SLEEP
# define PLATFORM_KEY_WAKEUP KEY_WAKEUP
# define PLATFORM_KEY_PGPREV KEY_BACK
# define PLATFORM_KEY_PGPREV_ALT KEY_PAGEUP
# define PLATFORM_KEY_PGNEXT KEY_FORWARD
# define PLATFORM_KEY_PGNEXT_ALT KEY_PAGEDOWN
# define PLATFORM_KEY_HOME KEY_HOMEPAGE
# define PLATFORM_KEY_FRONTLIGHT KEY_BRIGHTNESS_CYCLE
# define PLATFORM_KEY_MENU KEY_MENU
# define PLATFORM_KEY_DPAD 0
# define PLATFORM_ROTATION_EV_TYPE 0
# define PLATFORM_ROTATION_EV_CODE 0
# endif
#endif // FBINK_WITH_INPUT
#endif