summaryrefslogtreecommitdiff
path: root/src/mainboard/google/zoombini/variants/baseboard/include/baseboard/gpio.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/zoombini/variants/baseboard/include/baseboard/gpio.h')
-rw-r--r--src/mainboard/google/zoombini/variants/baseboard/include/baseboard/gpio.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/mainboard/google/zoombini/variants/baseboard/include/baseboard/gpio.h b/src/mainboard/google/zoombini/variants/baseboard/include/baseboard/gpio.h
new file mode 100644
index 0000000000..e8e993886b
--- /dev/null
+++ b/src/mainboard/google/zoombini/variants/baseboard/include/baseboard/gpio.h
@@ -0,0 +1,38 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2017 Google Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
+ * GNU General Public License for more details.
+ */
+
+#ifndef __MAINBOARD_GPIO_H__
+#define __MAINBOARD_GPIO_H__
+
+#include <soc/gpio.h>
+
+/* Memory configuration board straps */
+#define GPIO_MEM_CONFIG_0 GPP_D3
+#define GPIO_MEM_CONFIG_1 GPP_D21
+#define GPIO_MEM_CONFIG_2 GPP_D22
+#define GPIO_MEM_CONFIG_3 GPP_D0
+
+/* EC in RW */
+#define GPIO_EC_IN_RW GPP_A8
+
+/* BIOS Flash Write Protect */
+#define GPIO_PCH_WP GPP_A1
+
+/* EC wake is LAN_WAKE# which is a special DeepSX wake pin */
+#define GPE_EC_WAKE GPP_74
+
+/* eSPI virtual wire reporting */
+#define EC_SCI_GPI GPP_76
+#endif