aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/zork/variants/woomax/gpio.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/zork/variants/woomax/gpio.c')
-rw-r--r--src/mainboard/google/zork/variants/woomax/gpio.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/mainboard/google/zork/variants/woomax/gpio.c b/src/mainboard/google/zork/variants/woomax/gpio.c
new file mode 100644
index 0000000000..9c779d734d
--- /dev/null
+++ b/src/mainboard/google/zork/variants/woomax/gpio.c
@@ -0,0 +1,31 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+#include <baseboard/variants.h>
+#include <soc/gpio.h>
+
+static const struct soc_amd_gpio woomax_gpio_set_stage_ram[] = {
+ /* GPIO_4 NC */
+ PAD_NC(GPIO_4),
+ /* GPIO_5 NC */
+ PAD_NC(GPIO_5),
+ /* GPIO_6 NC */
+ PAD_NC(GPIO_6),
+ /* GPIO_11 NC */
+ PAD_NC(GPIO_11),
+ /* GPIO_32 NC */
+ PAD_NC(GPIO_32),
+ /* GPIO_69 NC */
+ PAD_NC(GPIO_69),
+ /* RAM_ID_4 */
+ PAD_NC(GPIO_84),
+ /* GPIO_141 NC */
+ PAD_NC(GPIO_141),
+ /* GPIO_143 NC */
+ PAD_NC(GPIO_143),
+};
+
+const struct soc_amd_gpio *variant_override_gpio_table(size_t *size)
+{
+ *size = ARRAY_SIZE(woomax_gpio_set_stage_ram);
+ return woomax_gpio_set_stage_ram;
+}