aboutsummaryrefslogtreecommitdiff
path: root/src/soc/nvidia/tegra210/include/soc/padconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/nvidia/tegra210/include/soc/padconfig.h')
-rw-r--r--src/soc/nvidia/tegra210/include/soc/padconfig.h94
1 files changed, 94 insertions, 0 deletions
diff --git a/src/soc/nvidia/tegra210/include/soc/padconfig.h b/src/soc/nvidia/tegra210/include/soc/padconfig.h
new file mode 100644
index 0000000000..01cd72a4a9
--- /dev/null
+++ b/src/soc/nvidia/tegra210/include/soc/padconfig.h
@@ -0,0 +1,94 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright 2014 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc.
+ */
+
+#ifndef __SOC_NVIDIA_TEGRA210_PAD_CFG_H
+#define __SOC_NVIDIA_TEGRA210_PAD_CFG_H
+
+#include <stdint.h>
+#include <soc/pinmux.h>
+
+struct pad_config {
+ uint16_t pinmux_flags; /* PU/PU, OD, INPUT, SFIO, etc */
+ uint8_t gpio_index; /* bank, port, index */
+ uint16_t pinmux_index:9;
+ uint16_t unused:1;
+ uint16_t sfio:1;
+ uint16_t gpio_out0:1;
+ uint16_t gpio_out1:1;
+ uint16_t pad_has_gpio:1;
+ uint16_t por_pullup:1;
+};
+
+#define PAD_CFG_GPIO_INPUT(ball_, pinmux_flgs_) \
+ { \
+ .pinmux_flags = pinmux_flgs_ | PINMUX_INPUT_ENABLE, \
+ .gpio_index = PAD_TO_GPIO_##ball_, \
+ .pinmux_index = PINMUX_##ball_##_INDEX, \
+ .sfio = 0, \
+ .pad_has_gpio = PAD_HAS_GPIO_##ball_, \
+ }
+
+#define PAD_CFG_GPIO_OUT0(ball_, pinmux_flgs_) \
+ { \
+ .pinmux_flags = pinmux_flgs_, \
+ .gpio_index = PAD_TO_GPIO_##ball_, \
+ .pinmux_index = PINMUX_##ball_##_INDEX, \
+ .sfio = 0, \
+ .gpio_out0 = 1, \
+ .pad_has_gpio = PAD_HAS_GPIO_##ball_, \
+ }
+
+#define PAD_CFG_GPIO_OUT1(ball_, pinmux_flgs_) \
+ { \
+ .pinmux_flags = pinmux_flgs_, \
+ .gpio_index = PAD_TO_GPIO_##ball_, \
+ .pinmux_index = PINMUX_##ball_##_INDEX, \
+ .sfio = 0, \
+ .gpio_out1 = 1, \
+ .pad_has_gpio = PAD_HAS_GPIO_##ball_, \
+ }
+
+#define PAD_CFG_SFIO(ball_, pinmux_flgs_, sfio_) \
+ { \
+ .pinmux_flags = pinmux_flgs_ | \
+ PINMUX_##ball_##_FUNC_##sfio_, \
+ .gpio_index = PAD_TO_GPIO_##ball_, \
+ .pinmux_index = PINMUX_##ball_##_INDEX, \
+ .sfio = 1, \
+ .pad_has_gpio = PAD_HAS_GPIO_##ball_, \
+ }
+
+#define PAD_CFG_UNUSED(ball_) \
+ { \
+ .gpio_index = PAD_TO_GPIO_##ball_, \
+ .pinmux_index = PINMUX_##ball_##_INDEX, \
+ .unused = 1, \
+ .pad_has_gpio = PAD_HAS_GPIO_##ball_, \
+ }
+/*
+ * Configure the pads associated with entry according to the configuration.
+ */
+void soc_configure_pads(const struct pad_config * const entries, size_t num);
+/* I2C6 requires special init as its pad lives int the SOR/DPAUX block */
+void soc_configure_i2c6pad(void);
+void soc_configure_host1x(void);
+/* APE (Audio Processing Engine) requires special init */
+void soc_configure_ape(void);
+
+#endif /* __SOC_NVIDIA_TEGRA210_PAD_CFG_H */