mb/google/nissa/var/rull: add ssd timing and modify ssd GPIO pins of rtd3
[coreboot2.git] / src / mainboard / google / nyan_blaze / early_configs.c
blob4d35cf6866357b2018adfd5f0454b17cc271f50a
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <gpio.h>
4 #include <soc/addressmap.h>
5 #include <soc/clock.h>
6 #include <soc/early_configs.h>
7 #include <soc/nvidia/tegra/i2c.h>
9 static struct clk_rst_ctlr *clk_rst = (void *)TEGRA_CLK_RST_BASE;
11 static void setup_pinmux(void)
13 /* Write protect. */
14 gpio_input_pullup(GPIO(R1));
15 /* Recovery mode. */
16 gpio_input_pullup(GPIO(Q7));
17 /* Lid switch. */
18 gpio_input_pullup(GPIO(R4));
19 /* Power switch. */
20 gpio_input_pullup(GPIO(Q0));
21 /* Developer mode. */
22 gpio_input_pullup(GPIO(Q6));
23 /* EC in RW. */
24 gpio_input_pullup(GPIO(U4));
26 /* route PU4/5 to GMI to remove conflict w/PWM1/2. */
27 pinmux_set_config(PINMUX_GPIO_PU4_INDEX,
28 PINMUX_GPIO_PU4_FUNC_NOR); /* s/b GMI */
29 pinmux_set_config(PINMUX_GPIO_PU5_INDEX,
30 PINMUX_GPIO_PU5_FUNC_NOR); /* s/b GMI */
32 /* SOC and TPM reset GPIO, active low. */
33 gpio_output(GPIO(I5), 1);
35 /* SPI1 MOSI */
36 pinmux_set_config(PINMUX_ULPI_CLK_INDEX, PINMUX_ULPI_CLK_FUNC_SPI1 |
37 PINMUX_PULL_NONE |
38 PINMUX_INPUT_ENABLE);
39 /* SPI1 MISO */
40 pinmux_set_config(PINMUX_ULPI_DIR_INDEX, PINMUX_ULPI_DIR_FUNC_SPI1 |
41 PINMUX_PULL_NONE |
42 PINMUX_INPUT_ENABLE);
43 /* SPI1 SCLK */
44 pinmux_set_config(PINMUX_ULPI_NXT_INDEX, PINMUX_ULPI_NXT_FUNC_SPI1 |
45 PINMUX_PULL_NONE |
46 PINMUX_INPUT_ENABLE);
47 /* SPI1 CS0 */
48 pinmux_set_config(PINMUX_ULPI_STP_INDEX, PINMUX_ULPI_STP_FUNC_SPI1 |
49 PINMUX_PULL_NONE |
50 PINMUX_INPUT_ENABLE);
52 /* I2C3 (cam) clock. */
53 pinmux_set_config(PINMUX_CAM_I2C_SCL_INDEX,
54 PINMUX_CAM_I2C_SCL_FUNC_I2C3 | PINMUX_INPUT_ENABLE);
55 /* I2C3 (cam) data. */
56 pinmux_set_config(PINMUX_CAM_I2C_SDA_INDEX,
57 PINMUX_CAM_I2C_SDA_FUNC_I2C3 | PINMUX_INPUT_ENABLE);
59 /* switch unused pin to GPIO */
60 gpio_set_mode(GPIO(X3), GPIO_MODE_GPIO);
61 gpio_set_mode(GPIO(X4), GPIO_MODE_GPIO);
62 gpio_set_mode(GPIO(X5), GPIO_MODE_GPIO);
63 gpio_set_mode(GPIO(X6), GPIO_MODE_GPIO);
64 gpio_set_mode(GPIO(X7), GPIO_MODE_GPIO);
65 gpio_set_mode(GPIO(W3), GPIO_MODE_GPIO);
68 static void configure_ec_spi_bus(void)
70 clock_configure_source(sbc1, CLK_M, 3000);
73 static void configure_tpm_i2c_bus(void)
75 clock_configure_i2c_scl_freq(i2c3, PLLP, 400);
77 i2c_init(2);
80 void early_mainboard_init(void)
82 clock_enable_clear_reset(0, CLK_H_SBC1, CLK_U_I2C3, 0, 0, 0);
83 setup_pinmux();
84 configure_ec_spi_bus();
85 configure_tpm_i2c_bus();