summaryrefslogtreecommitdiff
path: root/util/inteltool/gpio_names/gpio_groups.h
diff options
context:
space:
mode:
Diffstat (limited to 'util/inteltool/gpio_names/gpio_groups.h')
-rw-r--r--util/inteltool/gpio_names/gpio_groups.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/util/inteltool/gpio_names/gpio_groups.h b/util/inteltool/gpio_names/gpio_groups.h
new file mode 100644
index 0000000000..711b298bd3
--- /dev/null
+++ b/util/inteltool/gpio_names/gpio_groups.h
@@ -0,0 +1,18 @@
+#ifndef GPIO_NAMES_GPIO_GROUPS_H
+#define GPIO_NAMES_GPIO_GROUPS_H
+
+struct gpio_group {
+ const char *display;
+ size_t pad_count;
+ size_t func_count;
+ const char *const *pad_names; /* indexed by 'pad * func_count + func' */
+};
+
+struct gpio_community {
+ const char *name;
+ uint8_t pcr_port_id;
+ size_t group_count;
+ const struct gpio_group *const *groups;
+};
+
+#endif