mirror of
https://xff.cz/git/pinephone-keyboard/
synced 2024-11-09 14:05:43 +01:00
Add support for Pinephone Pro
This commit is contained in:
parent
af4009e3bf
commit
3ade80f425
2 changed files with 11 additions and 4 deletions
13
common.c
13
common.c
|
@ -224,7 +224,7 @@ static int pogo_i2c_open(void)
|
|||
if (!read_file(path, buf, sizeof buf))
|
||||
continue;
|
||||
|
||||
if (!strstr(buf, "OF_FULLNAME=/soc/i2c@1c2b400"))
|
||||
if (!strstr(buf, "OF_FULLNAME=/soc/i2c@1c2b400") && !strstr(buf, "OF_FULLNAME=/i2c@ff140000"))
|
||||
continue;
|
||||
|
||||
snprintf(path, sizeof path, "/dev/i2c-%d", i);
|
||||
|
@ -337,11 +337,10 @@ static int gpiochip_open(const char* match)
|
|||
return fd;
|
||||
}
|
||||
|
||||
error("Can't find %s gpiochip", match);
|
||||
return -1;
|
||||
}
|
||||
|
||||
static int gpio_setup_pl12(unsigned flags)
|
||||
static int gpio_setup_pogo_int(unsigned flags)
|
||||
{
|
||||
int ret;
|
||||
struct gpio_v2_line_request req = {
|
||||
|
@ -352,6 +351,14 @@ static int gpio_setup_pl12(unsigned flags)
|
|||
};
|
||||
|
||||
int fd = gpiochip_open("OF_FULLNAME=/soc/pinctrl@1f02c00");
|
||||
if (fd < 0) {
|
||||
fd = gpiochip_open("OF_FULLNAME=/pinctrl/gpio@ff788000");
|
||||
if (fd < 0)
|
||||
error("Can't find gpiochip for POGO interrupt pin");
|
||||
|
||||
// On Pinephone Pro, POGO-INT is GPIO3_A0
|
||||
req.offsets[0] = 0;
|
||||
}
|
||||
|
||||
ret = ioctl(fd, GPIO_V2_GET_LINE_IOCTL, &req);
|
||||
syscall_error(ret < 0, "GPIO_V2_GET_LINE_IOCTL failed");
|
||||
|
|
|
@ -302,7 +302,7 @@ int main(int ac, char* av[])
|
|||
fd = pogo_i2c_open();
|
||||
uinput_fd = open_uinput_dev();
|
||||
|
||||
int lfd = gpio_setup_pl12(GPIO_V2_LINE_FLAG_INPUT | GPIO_V2_LINE_FLAG_BIAS_PULL_UP | /*GPIO_V2_LINE_FLAG_ACTIVE_HIGH |*/ GPIO_V2_LINE_FLAG_EDGE_FALLING);
|
||||
int lfd = gpio_setup_pogo_int(GPIO_V2_LINE_FLAG_INPUT | GPIO_V2_LINE_FLAG_BIAS_PULL_UP | /*GPIO_V2_LINE_FLAG_ACTIVE_HIGH |*/ GPIO_V2_LINE_FLAG_EDGE_FALLING);
|
||||
|
||||
struct pollfd fds[2] = {
|
||||
{ .fd = lfd, .events = POLLIN, },
|
||||
|
|
Loading…
Reference in a new issue