aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mainboard/google/zork/variants/shuboz/Makefile.inc1
-rw-r--r--src/mainboard/google/zork/variants/shuboz/gpio.c23
2 files changed, 24 insertions, 0 deletions
diff --git a/src/mainboard/google/zork/variants/shuboz/Makefile.inc b/src/mainboard/google/zork/variants/shuboz/Makefile.inc
index 295acd25c9..2a8f0f72ed 100644
--- a/src/mainboard/google/zork/variants/shuboz/Makefile.inc
+++ b/src/mainboard/google/zork/variants/shuboz/Makefile.inc
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: GPL-2.0-or-later
subdirs-y += ./spd
+ramstage-y += gpio.c
diff --git a/src/mainboard/google/zork/variants/shuboz/gpio.c b/src/mainboard/google/zork/variants/shuboz/gpio.c
new file mode 100644
index 0000000000..0fd867e8d4
--- /dev/null
+++ b/src/mainboard/google/zork/variants/shuboz/gpio.c
@@ -0,0 +1,23 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+#include <baseboard/gpio.h>
+#include <baseboard/variants.h>
+#include <boardid.h>
+#include <gpio.h>
+#include <soc/gpio.h>
+#include <ec/google/chromeec/ec.h>
+
+static const struct soc_amd_gpio bid_gpio_set_stage_ram[] = {
+ /* AGPIO_5 - NC */
+ PAD_NC(GPIO_5),
+ /* EGPIO141 - NC */
+ PAD_NC(GPIO_141),
+ /* EGPIO144 - NC (etk5515 not used) */
+ PAD_NC(GPIO_144),
+};
+
+const struct soc_amd_gpio *variant_override_gpio_table(size_t *size)
+{
+ *size = ARRAY_SIZE(bid_gpio_set_stage_ram);
+ return bid_gpio_set_stage_ram;
+}