aboutsummaryrefslogtreecommitdiffstats
path: root/src/linux
diff options
context:
space:
mode:
authorBIGTREETECH <38851044+bigtreetech@users.noreply.github.com>2022-12-12 09:07:58 +0800
committerGitHub <noreply@github.com>2022-12-11 20:07:58 -0500
commit516fdae2b740f659ef42d95815be60fcd2defaf0 (patch)
tree48368d64a119fd15f61f2fb57441344061255612 /src/linux
parent03006f5ca3bca13bbf4f4aa8720c99aee5d7906b (diff)
downloadkutter-516fdae2b740f659ef42d95815be60fcd2defaf0.tar.gz
kutter-516fdae2b740f659ef42d95815be60fcd2defaf0.tar.xz
kutter-516fdae2b740f659ef42d95815be60fcd2defaf0.zip
linux: add 'GPIOI' for linux process (#5926)
Signed-off-by: Alan.Ma from BigTreeTech tech@biqu3d.com
Diffstat (limited to 'src/linux')
-rw-r--r--src/linux/gpio.c5
-rw-r--r--src/linux/internal.h2
2 files changed, 4 insertions, 3 deletions
diff --git a/src/linux/gpio.c b/src/linux/gpio.c
index 19a3fac1..bb07f5a0 100644
--- a/src/linux/gpio.c
+++ b/src/linux/gpio.c
@@ -27,6 +27,7 @@ DECL_ENUMERATION_RANGE("pin", "gpiochip4/gpio0", GPIO(4, 0), MAX_GPIO_LINES);
DECL_ENUMERATION_RANGE("pin", "gpiochip5/gpio0", GPIO(5, 0), MAX_GPIO_LINES);
DECL_ENUMERATION_RANGE("pin", "gpiochip6/gpio0", GPIO(6, 0), MAX_GPIO_LINES);
DECL_ENUMERATION_RANGE("pin", "gpiochip7/gpio0", GPIO(7, 0), MAX_GPIO_LINES);
+DECL_ENUMERATION_RANGE("pin", "gpiochip8/gpio0", GPIO(8, 0), MAX_GPIO_LINES);
struct gpio_line {
int chipid;
@@ -34,8 +35,8 @@ struct gpio_line {
int fd;
int state;
};
-static struct gpio_line gpio_lines[8 * MAX_GPIO_LINES];
-static int gpio_chip_fd[8] = { -1, -1, -1, -1, -1, -1, -1, -1 };
+static struct gpio_line gpio_lines[9 * MAX_GPIO_LINES];
+static int gpio_chip_fd[9] = { -1, -1, -1, -1, -1, -1, -1, -1, -1 };
static int
get_chip_fd(uint8_t chipId)
diff --git a/src/linux/internal.h b/src/linux/internal.h
index 001a9072..db841ac9 100644
--- a/src/linux/internal.h
+++ b/src/linux/internal.h
@@ -6,7 +6,7 @@
#include <stdint.h> // uint32_t
#include "autoconf.h" // CONFIG_CLOCK_FREQ
-#define MAX_GPIO_LINES 256
+#define MAX_GPIO_LINES 288
#define GPIO(PORT, NUM) ((PORT) * MAX_GPIO_LINES + (NUM))
#define GPIO2PORT(PIN) ((PIN) / MAX_GPIO_LINES)
#define GPIO2PIN(PIN) ((PIN) % MAX_GPIO_LINES)