aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/deltaur/variants/baseboard/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/deltaur/variants/baseboard/include')
-rw-r--r--src/mainboard/google/deltaur/variants/baseboard/include/baseboard/gpio.h29
1 files changed, 26 insertions, 3 deletions
diff --git a/src/mainboard/google/deltaur/variants/baseboard/include/baseboard/gpio.h b/src/mainboard/google/deltaur/variants/baseboard/include/baseboard/gpio.h
index 8411900243..e6092b6123 100644
--- a/src/mainboard/google/deltaur/variants/baseboard/include/baseboard/gpio.h
+++ b/src/mainboard/google/deltaur/variants/baseboard/include/baseboard/gpio.h
@@ -4,10 +4,33 @@
* SPDX-License-Identifier: GPL-2.0-or-later
*/
-#ifndef __BASEBOARD_GPIO_H__
-#define __BASEBOARD_GPIO_H__
+#ifndef VARIANT_GPIO_H
+#define VARIANT_GPIO_H
+#include <soc/gpe.h>
#include <soc/gpio.h>
+/* Flash Write Protect */
+#define GPIO_PCH_WP GPP_C22
-#endif /* BASEBOARD_GPIO_H */
+/* Recovery mode */
+#define GPIO_REC_MODE GPP_A23
+
+/* DDR channel enable pin */
+#define DDR_CHA_EN GPP_H4
+#define DDR_CHB_EN GPP_H5
+
+/* Memory configuration board straps */
+#define GPIO_MEM_CONFIG_0 GPP_F11
+#define GPIO_MEM_CONFIG_1 GPP_F12
+#define GPIO_MEM_CONFIG_2 GPP_F13
+#define GPIO_MEM_CONFIG_3 GPP_F14
+#define GPIO_MEM_CONFIG_4 GPP_F15
+
+
+const struct pad_config *override_gpio_table(size_t *num);
+const struct pad_config *override_early_gpio_table(size_t *num);
+struct cros_gpio;
+const struct cros_gpio *override_cros_gpios(size_t *num);
+
+#endif