aboutsummaryrefslogtreecommitdiff
path: root/util/inteltool/gpio_names/gpio_groups.h
diff options
context:
space:
mode:
authorJohanna Schander <coreboot@mimoja.de>2020-01-29 09:14:18 +0100
committerPatrick Georgi <pgeorgi@google.com>2020-03-16 15:19:42 +0000
commitdca20cd77f53d410fcc72cd1b6ec0939a4391f1d (patch)
tree6df79df6b60a2222143df3082da04cce86d549bd /util/inteltool/gpio_names/gpio_groups.h
parent23954256533dff885b0291c11b1c00b63617a98d (diff)
util/inteltool: Move Ice Lake definitions into their own header
So far all group and community definitions live in one big c file. This 2500 line file slowly grows to a size, where readability is lost. Also the definitions are not reusable in a potential libinteltool. This commit moves the Ice Lake definitions into its own header. Change-Id: I5735f12480091a9b6c5e5c103a1ca7b7b1f3f997 Signed-off-by: Johanna Schander <coreboot@mimoja.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/38625 Reviewed-by: Michael Niewöhner Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Christoph Pomaska <github@slrie.de> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
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