mb/google/nissa/var/gothrax: Add probe and GPIO config for HDMI and
[coreboot2.git] / src / soc / samsung / exynos5420 / pinmux.c
blobb24c1247e56395ed154b56e8621f579848aa827d
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <soc/gpio.h>
4 #include <soc/pinmux.h>
6 static void exynos_pinmux_uart(int start, int count)
8 int i;
10 for (i = start; i < start + count; i++) {
11 gpio_set_pull(i, GPIO_PULL_NONE);
12 gpio_cfg_pin(i, GPIO_FUNC(0x2));
16 void exynos_pinmux_uart0(void)
18 exynos_pinmux_uart(GPIO_A00, 4);
21 void exynos_pinmux_uart1(void)
23 exynos_pinmux_uart(GPIO_A04, 4);
26 void exynos_pinmux_uart2(void)
28 exynos_pinmux_uart(GPIO_A10, 4);
31 void exynos_pinmux_uart3(void)
33 exynos_pinmux_uart(GPIO_A14, 2);
36 struct gpio {
37 enum exynos5_gpio_pin pin;
38 unsigned int func;
39 unsigned int pull;
40 unsigned int drv;
43 static void exynos_pinmux_sdmmc(struct gpio *gpios, int num_gpios)
45 int i;
47 for (i = 0; i < num_gpios; i++) {
48 gpio_set_drv(gpios[i].pin, gpios[i].drv);
49 gpio_set_pull(gpios[i].pin, gpios[i].pull);
50 gpio_cfg_pin(gpios[i].pin, GPIO_FUNC(gpios[i].func));
54 void exynos_pinmux_sdmmc0(void)
56 struct gpio gpios[] = {
57 { GPIO_C00, 0x2, GPIO_PULL_NONE, GPIO_DRV_4X }, /* CLK */
58 { GPIO_C01, 0x2, GPIO_PULL_NONE, GPIO_DRV_4X }, /* CMD */
60 * MMC0 is intended to be used for eMMC. The card detect
61 * pin is used as a VDDEN signal to power on the eMMC. The
62 * 5420 iROM makes this same assumption.
64 { GPIO_C02, GPIO_OUTPUT, GPIO_PULL_NONE, GPIO_DRV_4X },
65 { GPIO_C03, 0x2, GPIO_PULL_UP, GPIO_DRV_4X }, /* DATA[0] */
66 { GPIO_C04, 0x2, GPIO_PULL_UP, GPIO_DRV_4X }, /* DATA[1] */
67 { GPIO_C05, 0x2, GPIO_PULL_UP, GPIO_DRV_4X }, /* DATA[2] */
68 { GPIO_C06, 0x2, GPIO_PULL_UP, GPIO_DRV_4X }, /* DATA[3] */
70 { GPIO_C30, 0x2, GPIO_PULL_UP, GPIO_DRV_4X }, /* DATA[4] */
71 { GPIO_C31, 0x2, GPIO_PULL_UP, GPIO_DRV_4X }, /* DATA[5] */
72 { GPIO_C32, 0x2, GPIO_PULL_UP, GPIO_DRV_4X }, /* DATA[6] */
73 { GPIO_C33, 0x2, GPIO_PULL_UP, GPIO_DRV_4X }, /* DATA[7] */
76 exynos_pinmux_sdmmc(&gpios[0], ARRAY_SIZE(gpios));
78 /* set VDDEN */
79 gpio_set_value(GPIO_C02, 1);
82 void exynos_pinmux_sdmmc1(void)
84 struct gpio gpios[] = {
85 { GPIO_C10, 0x2, GPIO_PULL_NONE, GPIO_DRV_4X }, /* CLK */
86 { GPIO_C11, 0x2, GPIO_PULL_NONE, GPIO_DRV_4X }, /* CMD */
87 { GPIO_C12, 0x2, GPIO_PULL_NONE, GPIO_DRV_4X }, /* CDn */
88 { GPIO_C13, 0x2, GPIO_PULL_NONE, GPIO_DRV_4X }, /* DATA[0] */
89 { GPIO_C14, 0x2, GPIO_PULL_NONE, GPIO_DRV_4X }, /* DATA[1] */
90 { GPIO_C15, 0x2, GPIO_PULL_NONE, GPIO_DRV_4X }, /* DATA[2] */
91 { GPIO_C16, 0x2, GPIO_PULL_NONE, GPIO_DRV_4X }, /* DATA[3] */
93 { GPIO_D14, 0x2, GPIO_PULL_UP, GPIO_DRV_4X }, /* DATA[4] */
94 { GPIO_D15, 0x2, GPIO_PULL_UP, GPIO_DRV_4X }, /* DATA[5] */
95 { GPIO_D16, 0x2, GPIO_PULL_UP, GPIO_DRV_4X }, /* DATA[6] */
96 { GPIO_D17, 0x2, GPIO_PULL_UP, GPIO_DRV_4X }, /* DATA[7] */
99 exynos_pinmux_sdmmc(&gpios[0], ARRAY_SIZE(gpios));
102 void exynos_pinmux_sdmmc2(void)
104 struct gpio gpios[] = {
105 { GPIO_C20, 0x2, GPIO_PULL_NONE, GPIO_DRV_4X }, /* CLK */
106 { GPIO_C21, 0x2, GPIO_PULL_NONE, GPIO_DRV_4X }, /* CMD */
107 { GPIO_C22, 0x2, GPIO_PULL_NONE, GPIO_DRV_4X }, /* CDn */
108 { GPIO_C23, 0x2, GPIO_PULL_NONE, GPIO_DRV_4X }, /* DATA[0] */
109 { GPIO_C24, 0x2, GPIO_PULL_NONE, GPIO_DRV_4X }, /* DATA[1] */
110 { GPIO_C25, 0x2, GPIO_PULL_NONE, GPIO_DRV_4X }, /* DATA[2] */
111 { GPIO_C26, 0x2, GPIO_PULL_NONE, GPIO_DRV_4X }, /* DATA[3] */
114 exynos_pinmux_sdmmc(&gpios[0], ARRAY_SIZE(gpios));
117 static void exynos_pinmux_spi(int start, int cfg)
119 int i;
121 for (i = start; i < start + 4; i++) {
122 gpio_cfg_pin(i, cfg);
123 gpio_set_pull(i, GPIO_PULL_NONE);
124 gpio_set_drv(i, GPIO_DRV_3X);
128 void exynos_pinmux_spi0(void)
130 exynos_pinmux_spi(GPIO_A20, 0x2);
133 void exynos_pinmux_spi1(void)
135 exynos_pinmux_spi(GPIO_A24, 0x2);
138 void exynos_pinmux_spi2(void)
140 exynos_pinmux_spi(GPIO_B11, 0x5);
143 void exynos_pinmux_spi3(void)
145 exynos_pinmux_spi(GPIO_F10, 0x2);
148 void exynos_pinmux_spi4(void)
150 int i;
152 for (i = 0; i < 2; i++) {
153 gpio_cfg_pin(GPIO_F02 + i, GPIO_FUNC(0x4));
154 gpio_cfg_pin(GPIO_E04 + i, GPIO_FUNC(0x4));
158 static void exynos_pinmux_i2c(int start, int func)
160 gpio_cfg_pin(start, GPIO_FUNC(func));
161 gpio_cfg_pin(start + 1, GPIO_FUNC(func));
162 gpio_set_pull(start, GPIO_PULL_NONE);
163 gpio_set_pull(start + 1, GPIO_PULL_NONE);
166 void exynos_pinmux_i2c0(void)
168 exynos_pinmux_i2c(GPIO_B30, 0x2);
171 void exynos_pinmux_i2c1(void)
173 exynos_pinmux_i2c(GPIO_B32, 0x2);
176 void exynos_pinmux_i2c2(void)
178 exynos_pinmux_i2c(GPIO_A06, 0x3);
181 void exynos_pinmux_i2c3(void)
183 exynos_pinmux_i2c(GPIO_A12, 0x3);
186 void exynos_pinmux_i2c4(void)
188 exynos_pinmux_i2c(GPIO_A20, 0x3);
191 void exynos_pinmux_i2c5(void)
193 exynos_pinmux_i2c(GPIO_A22, 0x3);
196 void exynos_pinmux_i2c6(void)
198 exynos_pinmux_i2c(GPIO_B13, 0x4);
201 void exynos_pinmux_i2c7(void)
203 exynos_pinmux_i2c(GPIO_B22, 0x3);
206 void exynos_pinmux_i2c8(void)
208 exynos_pinmux_i2c(GPIO_B34, 0x2);
211 void exynos_pinmux_i2c9(void)
213 exynos_pinmux_i2c(GPIO_B36, 0x2);
216 void exynos_pinmux_i2c10(void)
218 exynos_pinmux_i2c(GPIO_B40, 0x2);
221 void exynos_pinmux_dphpd(void)
223 gpio_cfg_pin(GPIO_X07, GPIO_FUNC(0x3));
224 gpio_set_pull(GPIO_X07, GPIO_PULL_NONE);