2021-06-16 16:47:59 +02:00
|
|
|
/*
|
|
|
|
* Pinephone keyboard userspace input device daemon.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2021 Ondřej Jirman <megi@xff.cz>
|
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// {{{ includes
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <poll.h>
|
|
|
|
|
|
|
|
#include <linux/i2c.h>
|
|
|
|
#include <linux/i2c-dev.h>
|
|
|
|
#include <linux/gpio.h>
|
|
|
|
#include <linux/input.h>
|
|
|
|
#include <linux/uinput.h>
|
|
|
|
|
|
|
|
#define DEBUG 0
|
2021-06-16 16:49:51 +02:00
|
|
|
#define MEGI_PROTO_BUG 0
|
2021-06-16 16:47:59 +02:00
|
|
|
|
|
|
|
#if DEBUG
|
|
|
|
#define debug(args...) printf(args)
|
|
|
|
#else
|
|
|
|
#define debug(args...)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// }}}
|
|
|
|
// {{{ utils
|
|
|
|
|
|
|
|
static void syscall_error(int is_err, const char* fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
if (!is_err)
|
|
|
|
return;
|
|
|
|
|
|
|
|
fprintf(stderr, "ERROR: ");
|
|
|
|
va_start(ap, fmt);
|
|
|
|
vfprintf(stderr, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
fprintf(stderr, ": %s\n", strerror(errno));
|
|
|
|
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void error(const char* fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
fprintf(stderr, "ERROR: ");
|
|
|
|
va_start(ap, fmt);
|
|
|
|
vfprintf(stderr, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool read_file(const char* path, char* buf, size_t size)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
ssize_t ret;
|
|
|
|
|
|
|
|
fd = open(path, O_RDONLY);
|
|
|
|
if (fd < 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
ret = read(fd, buf, size);
|
|
|
|
close(fd);
|
|
|
|
if (ret < 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (ret < size) {
|
|
|
|
buf[ret] = 0;
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
buf[size - 1] = 0;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define KB_ADDR 0x15
|
|
|
|
|
|
|
|
int read_kb(int fd, uint8_t data[16])
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct i2c_msg msgs[] = {
|
|
|
|
{ KB_ADDR, I2C_M_RD, 16, data },
|
|
|
|
};
|
|
|
|
|
|
|
|
struct i2c_rdwr_ioctl_data msg = {
|
|
|
|
.msgs = msgs,
|
|
|
|
.nmsgs = sizeof(msgs) / sizeof(msgs[0])
|
|
|
|
};
|
|
|
|
|
|
|
|
ret = ioctl(fd, I2C_RDWR, &msg);
|
|
|
|
//syscall_error(ret < 0, "I2C_RDWR failed");
|
|
|
|
|
|
|
|
return ret == 1 ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
int write_kb(int fd, uint8_t data[16])
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct i2c_msg msgs[] = {
|
|
|
|
{ KB_ADDR, 0, 16, data },
|
|
|
|
};
|
|
|
|
|
|
|
|
struct i2c_rdwr_ioctl_data msg = {
|
|
|
|
.msgs = msgs,
|
|
|
|
.nmsgs = sizeof(msgs) / sizeof(msgs[0])
|
|
|
|
};
|
|
|
|
|
|
|
|
ret = ioctl(fd, I2C_RDWR, &msg);
|
|
|
|
//syscall_error(ret < 0, "I2C_RDWR failed");
|
|
|
|
|
|
|
|
return ret == 1 ? 0 : -1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static int gpiochip_open(void)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
char path[256], buf[1024];
|
|
|
|
int fd = -1;
|
|
|
|
|
|
|
|
for (int i = 0; i < 8; i++) {
|
|
|
|
snprintf(path, sizeof path, "/sys/bus/gpio/devices/gpiochip%d/uevent", i);
|
|
|
|
if (!read_file(path, buf, sizeof buf))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!strstr(buf, "OF_FULLNAME=/soc/pinctrl@1f02c00"))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
snprintf(path, sizeof path, "/dev/gpiochip%d", i);
|
|
|
|
|
|
|
|
int fd = open(path, O_RDWR);
|
|
|
|
syscall_error(fd < 0, "open(%s) failed");
|
|
|
|
|
|
|
|
//ret = ioctl(fd, I2C_SLAVE, addr);
|
|
|
|
//syscall_error(ret < 0, "I2C_SLAVE failed");
|
|
|
|
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
error("Can't find POGO I2C adapter");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int setup_gpio(void)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct gpio_v2_line_request req = {
|
|
|
|
.num_lines = 1,
|
|
|
|
.offsets[0] = 12,
|
|
|
|
.config.flags = GPIO_V2_LINE_FLAG_INPUT | GPIO_V2_LINE_FLAG_BIAS_PULL_UP | /*GPIO_V2_LINE_FLAG_ACTIVE_HIGH |*/ GPIO_V2_LINE_FLAG_EDGE_FALLING,
|
|
|
|
.consumer = "ppkbd",
|
|
|
|
};
|
|
|
|
|
|
|
|
int fd = gpiochip_open();
|
|
|
|
|
|
|
|
ret = ioctl(fd, GPIO_V2_GET_LINE_IOCTL, &req);
|
|
|
|
syscall_error(ret < 0, "GPIO_V2_GET_LINE_IOCTL failed");
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
return req.fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int get_int_value(int lfd)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct gpio_v2_line_values vals = {
|
|
|
|
.mask = 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
ret = ioctl(lfd, GPIO_V2_LINE_GET_VALUES_IOCTL, &vals);
|
|
|
|
syscall_error(ret < 0, "GPIO_V2_GET_LINE_IOCTL failed");
|
|
|
|
|
|
|
|
return vals.bits & 0x1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pogo_i2c_open(void)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
char path[256], buf[1024];
|
|
|
|
int fd = -1;
|
|
|
|
|
|
|
|
for (int i = 0; i < 8; i++) {
|
|
|
|
snprintf(path, sizeof path, "/sys/class/i2c-adapter/i2c-%d/uevent", i);
|
|
|
|
if (!read_file(path, buf, sizeof buf))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!strstr(buf, "OF_FULLNAME=/soc/i2c@1c2b400"))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
snprintf(path, sizeof path, "/dev/i2c-%d", i);
|
|
|
|
|
|
|
|
int fd = open(path, O_RDWR);
|
|
|
|
syscall_error(fd < 0, "open(%s) failed");
|
|
|
|
|
|
|
|
//ret = ioctl(fd, I2C_SLAVE, addr);
|
|
|
|
//syscall_error(ret < 0, "I2C_SLAVE failed");
|
|
|
|
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
error("Can't find POGO I2C adapter");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "kmap.h"
|
|
|
|
|
|
|
|
int open_uinput_dev(void)
|
|
|
|
{
|
|
|
|
int fd, ret;
|
|
|
|
|
|
|
|
fd = open("/dev/uinput", O_WRONLY/* | O_NONBLOCK*/);
|
|
|
|
syscall_error(fd < 0, "open(/dev/uinput) failed");
|
|
|
|
|
|
|
|
struct uinput_setup setup = {
|
|
|
|
.name = "ppkbd",
|
|
|
|
.id = {
|
|
|
|
.bustype = BUS_USB,
|
|
|
|
.vendor = 0x1234,
|
|
|
|
.product = 0x5678,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
ret = ioctl(fd, UI_SET_EVBIT, EV_KEY);
|
|
|
|
syscall_error(ret < 0, "UI_SET_EVBIT failed");
|
|
|
|
|
|
|
|
for (int i = 0; i < sizeof(used_keys) / sizeof(used_keys[0]); i++) {
|
|
|
|
ret = ioctl(fd, UI_SET_KEYBIT, used_keys[i]);
|
|
|
|
syscall_error(ret < 0, "UI_SET_KEYBIT failed");
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = ioctl(fd, UI_DEV_SETUP, &setup);
|
|
|
|
syscall_error(ret < 0, "UI_DEV_SETUP failed");
|
|
|
|
|
|
|
|
ret = ioctl(fd, UI_DEV_CREATE);
|
|
|
|
syscall_error(ret < 0, "UI_DEV_CREATE failed");
|
|
|
|
|
|
|
|
//ioctl(fd, UI_DEV_DESTROY);
|
|
|
|
//close(fd);
|
|
|
|
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
void emit_ev(int fd, int type, int code, int val)
|
|
|
|
{
|
|
|
|
struct input_event ev = {
|
|
|
|
.type = type,
|
|
|
|
.code = code,
|
|
|
|
.value = val,
|
|
|
|
};
|
|
|
|
|
|
|
|
ssize_t ret = write(fd, &ev, sizeof ev);
|
|
|
|
syscall_error(ret < 0, "write event failed");
|
|
|
|
}
|
|
|
|
|
|
|
|
void print_bitmap(uint8_t* map)
|
|
|
|
{
|
|
|
|
printf("\033[H");
|
|
|
|
for (int r = 0; r < 6; r++) {
|
|
|
|
if (r == 0) {
|
|
|
|
printf(" C");
|
|
|
|
for (int c = 0; c < 12; c++)
|
|
|
|
printf("%-3d", c + 1);
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("R%d", r + 1);
|
|
|
|
for (int c = 0; c < 12; c++)
|
|
|
|
printf(" %s", map[c] & (1u << r) ? "X" : ".");
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int get_index(int* keys, int len, int key)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < len; i++) {
|
|
|
|
if (keys[i] == key)
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int compact(int* keys, int len)
|
|
|
|
{
|
|
|
|
int ckeys[len];
|
|
|
|
int ci = 0;
|
|
|
|
|
|
|
|
memset(ckeys, 0, len * sizeof(int));
|
|
|
|
|
|
|
|
for (int i = 0; i < len; i++)
|
|
|
|
if (keys[i])
|
|
|
|
ckeys[ci++] = keys[i];
|
|
|
|
|
|
|
|
memcpy(keys, ckeys, sizeof ckeys);
|
|
|
|
return ci;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int uinput_fd = -1;
|
|
|
|
static int pressed_keys[128]; // contains currently pressed phys_idxs in press order
|
|
|
|
static int pressed_count;
|
|
|
|
|
|
|
|
void on_press(uint8_t phys_idx)
|
|
|
|
{
|
|
|
|
int key = keymap_base[phys_idx][0];
|
|
|
|
// printf("press %02hhx %s\n", phys_idx, key ? key_names[key] : "");
|
|
|
|
|
|
|
|
if (key == KEY_FN || key == KEY_LEFTMETA) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//XXX: make sure fn/pine is the last presssed key prior to this one?
|
|
|
|
int fn_idx = get_index(pressed_keys, pressed_count, 0x52);
|
|
|
|
int pine_idx = get_index(pressed_keys, pressed_count, 0x31);
|
|
|
|
|
|
|
|
const int* keys = keymap_base[phys_idx];
|
|
|
|
if (fn_idx >= 0) {
|
|
|
|
keys = keymap_fn[phys_idx];
|
|
|
|
} else if (pine_idx >= 0) {
|
|
|
|
keys = keymap_pine[phys_idx];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (keys[0]) {
|
|
|
|
emit_ev(uinput_fd, EV_KEY, keys[0], 1);
|
|
|
|
emit_ev(uinput_fd, EV_SYN, SYN_REPORT, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (keys[1]) {
|
|
|
|
emit_ev(uinput_fd, EV_KEY, keys[1], 1);
|
|
|
|
emit_ev(uinput_fd, EV_SYN, SYN_REPORT, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void on_release(uint8_t phys_idx)
|
|
|
|
{
|
|
|
|
int key = keymap_base[phys_idx][0];
|
|
|
|
// printf("release %02hhx %s\n", phys_idx, key ? key_names[key] : "");
|
|
|
|
|
|
|
|
if (key == KEY_FN || key == KEY_LEFTMETA) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int fn_idx = get_index(pressed_keys, pressed_count, 0x52);
|
|
|
|
int pine_idx = get_index(pressed_keys, pressed_count, 0x31);
|
|
|
|
|
|
|
|
const int* keys = keymap_base[phys_idx];
|
|
|
|
if (fn_idx >= 0) {
|
|
|
|
keys = keymap_fn[phys_idx];
|
|
|
|
} else if (pine_idx >= 0) {
|
|
|
|
keys = keymap_pine[phys_idx];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (keys[0]) {
|
|
|
|
emit_ev(uinput_fd, EV_KEY, keys[0], 0);
|
|
|
|
emit_ev(uinput_fd, EV_SYN, SYN_REPORT, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (keys[1]) {
|
|
|
|
emit_ev(uinput_fd, EV_KEY, keys[1], 0);
|
|
|
|
emit_ev(uinput_fd, EV_SYN, SYN_REPORT, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void update_keys(uint8_t* map)
|
|
|
|
{
|
|
|
|
// physical indices of pressed keys reported over I2C
|
|
|
|
int keys[128];
|
|
|
|
int n_keys = 0;
|
|
|
|
|
|
|
|
for (int c = 0; c < 12; c++) {
|
|
|
|
for (int r = 0; r < 6; r++) {
|
|
|
|
if (map[c] != 0xff && map[c] & (1u << r)) {
|
|
|
|
uint8_t el_idx = (r << 4) | c;
|
|
|
|
uint8_t phys_idx = el_phys_map[el_idx];
|
|
|
|
if (phys_idx != 0xff && n_keys < 128) {
|
|
|
|
#if MEGI_PROTO_BUG
|
|
|
|
int key = keymap_base[phys_idx][0];
|
|
|
|
if (key == KEY_LEFTCTRL || key == KEY_Z) // ignore these keys on my keyboard
|
|
|
|
continue;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
keys[n_keys++] = phys_idx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// which pressed keys are no longer pressed?
|
|
|
|
for (int j = 0; j < pressed_count; j++) {
|
|
|
|
int key = pressed_keys[j];
|
|
|
|
|
|
|
|
int idx = get_index(keys, n_keys, key);
|
|
|
|
if (idx < 0) {
|
|
|
|
pressed_keys[j] = 0;
|
|
|
|
pressed_count = compact(pressed_keys, 128);
|
|
|
|
on_release(key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// which new keys are pressed?
|
|
|
|
for (int i = 0; i < n_keys; i++) {
|
|
|
|
int key = keys[i];
|
|
|
|
|
|
|
|
// if the key was not pressed, handle a new press event
|
|
|
|
int pressed_idx = get_index(pressed_keys, pressed_count, key);
|
|
|
|
if (pressed_idx < 0 && pressed_count < 128) {
|
|
|
|
pressed_keys[pressed_count++] = key;
|
|
|
|
on_press(key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t time_abs(void)
|
|
|
|
{
|
|
|
|
struct timespec tmp;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = clock_gettime(CLOCK_MONOTONIC, &tmp);
|
|
|
|
if (ret < 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return tmp.tv_sec * 1000000000ull + tmp.tv_nsec;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int ac, char* av[])
|
|
|
|
{
|
|
|
|
int fd, ret;
|
|
|
|
|
|
|
|
fd = pogo_i2c_open();
|
|
|
|
uinput_fd = open_uinput_dev();
|
|
|
|
|
|
|
|
int lfd = setup_gpio();
|
|
|
|
|
|
|
|
struct pollfd fds[2] = {
|
|
|
|
{ .fd = lfd, .events = POLLIN, },
|
|
|
|
};
|
|
|
|
|
|
|
|
debug("\033[2J");
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
ret = poll(fds, 1, 10000);
|
|
|
|
syscall_error(ret < 0, "poll failed");
|
|
|
|
|
|
|
|
if (fds[0].revents & POLLIN) {
|
|
|
|
struct gpio_v2_line_event ev;
|
|
|
|
ssize_t len = read(lfd, &ev, sizeof ev);
|
|
|
|
syscall_error(len != sizeof ev, "Invalid event size");
|
|
|
|
|
|
|
|
// read keyboard data
|
|
|
|
uint8_t buf[16];
|
|
|
|
ret = read_kb(fd, buf);
|
|
|
|
if (ret)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
#if DEBUG
|
|
|
|
print_bitmap(buf + 4);
|
|
|
|
#endif
|
|
|
|
update_keys(buf + 4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|