4bdbf0194ab54f5df0921b3d70613a0fb634e39d
[platform/kernel/u-boot.git] / board / nvidia / common / board.c
1 /*
2  *  (C) Copyright 2010,2011
3  *  NVIDIA Corporation <www.nvidia.com>
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #include <common.h>
9 #include <dm.h>
10 #include <ns16550.h>
11 #include <linux/compiler.h>
12 #include <asm/io.h>
13 #include <asm/arch/clock.h>
14 #ifdef CONFIG_LCD
15 #include <asm/arch/display.h>
16 #endif
17 #include <asm/arch/funcmux.h>
18 #include <asm/arch/pinmux.h>
19 #include <asm/arch/pmu.h>
20 #ifdef CONFIG_PWM_TEGRA
21 #include <asm/arch/pwm.h>
22 #endif
23 #include <asm/arch/tegra.h>
24 #include <asm/arch-tegra/board.h>
25 #include <asm/arch-tegra/clk_rst.h>
26 #include <asm/arch-tegra/pmc.h>
27 #include <asm/arch-tegra/sys_proto.h>
28 #include <asm/arch-tegra/uart.h>
29 #include <asm/arch-tegra/warmboot.h>
30 #ifdef CONFIG_TEGRA_CLOCK_SCALING
31 #include <asm/arch/emc.h>
32 #endif
33 #ifdef CONFIG_USB_EHCI_TEGRA
34 #include <asm/arch-tegra/usb.h>
35 #include <usb.h>
36 #endif
37 #ifdef CONFIG_TEGRA_MMC
38 #include <asm/arch-tegra/tegra_mmc.h>
39 #include <asm/arch-tegra/mmc.h>
40 #endif
41 #include <i2c.h>
42 #include <spi.h>
43 #include "emc.h"
44
45 DECLARE_GLOBAL_DATA_PTR;
46
47 #ifdef CONFIG_SPL_BUILD
48 /* TODO(sjg@chromium.org): Remove once SPL supports device tree */
49 U_BOOT_DEVICE(tegra_gpios) = {
50         "gpio_tegra"
51 };
52 #endif
53
54 const struct tegra_sysinfo sysinfo = {
55         CONFIG_TEGRA_BOARD_STRING
56 };
57
58 __weak void pinmux_init(void) {}
59 __weak void pin_mux_usb(void) {}
60 __weak void pin_mux_spi(void) {}
61 __weak void gpio_early_init_uart(void) {}
62 __weak void pin_mux_display(void) {}
63
64 #if defined(CONFIG_TEGRA_NAND)
65 __weak void pin_mux_nand(void)
66 {
67         funcmux_select(PERIPH_ID_NDFLASH, FUNCMUX_DEFAULT);
68 }
69 #endif
70
71 /*
72  * Routine: power_det_init
73  * Description: turn off power detects
74  */
75 static void power_det_init(void)
76 {
77 #if defined(CONFIG_TEGRA20)
78         struct pmc_ctlr *const pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
79
80         /* turn off power detects */
81         writel(0, &pmc->pmc_pwr_det_latch);
82         writel(0, &pmc->pmc_pwr_det);
83 #endif
84 }
85
86 /*
87  * Routine: board_init
88  * Description: Early hardware init.
89  */
90 int board_init(void)
91 {
92         __maybe_unused int err;
93
94         /* Do clocks and UART first so that printf() works */
95         clock_init();
96         clock_verify();
97
98 #ifdef CONFIG_TEGRA_SPI
99         pin_mux_spi();
100 #endif
101
102 #ifdef CONFIG_PWM_TEGRA
103         if (pwm_init(gd->fdt_blob))
104                 debug("%s: Failed to init pwm\n", __func__);
105 #endif
106 #ifdef CONFIG_LCD
107         pin_mux_display();
108         tegra_lcd_check_next_stage(gd->fdt_blob, 0);
109 #endif
110         /* boot param addr */
111         gd->bd->bi_boot_params = (NV_PA_SDRAM_BASE + 0x100);
112
113         power_det_init();
114
115 #ifdef CONFIG_SYS_I2C_TEGRA
116 # ifdef CONFIG_TEGRA_PMU
117         if (pmu_set_nominal())
118                 debug("Failed to select nominal voltages\n");
119 #  ifdef CONFIG_TEGRA_CLOCK_SCALING
120         err = board_emc_init();
121         if (err)
122                 debug("Memory controller init failed: %d\n", err);
123 #  endif
124 # endif /* CONFIG_TEGRA_PMU */
125 #endif /* CONFIG_SYS_I2C_TEGRA */
126
127 #ifdef CONFIG_USB_EHCI_TEGRA
128         pin_mux_usb();
129         usb_process_devicetree(gd->fdt_blob);
130 #endif
131
132 #ifdef CONFIG_LCD
133         tegra_lcd_check_next_stage(gd->fdt_blob, 0);
134 #endif
135
136 #ifdef CONFIG_TEGRA_NAND
137         pin_mux_nand();
138 #endif
139
140 #ifdef CONFIG_TEGRA_LP0
141         /* save Sdram params to PMC 2, 4, and 24 for WB0 */
142         warmboot_save_sdram_params();
143
144         /* prepare the WB code to LP0 location */
145         warmboot_prepare_code(TEGRA_LP0_ADDR, TEGRA_LP0_SIZE);
146 #endif
147
148         return 0;
149 }
150
151 #ifdef CONFIG_BOARD_EARLY_INIT_F
152 static void __gpio_early_init(void)
153 {
154 }
155
156 void gpio_early_init(void) __attribute__((weak, alias("__gpio_early_init")));
157
158 int board_early_init_f(void)
159 {
160         pinmux_init();
161         board_init_uart_f();
162
163         /* Initialize periph GPIOs */
164         gpio_early_init();
165         gpio_early_init_uart();
166 #ifdef CONFIG_LCD
167         tegra_lcd_early_init(gd->fdt_blob);
168 #endif
169
170         return 0;
171 }
172 #endif  /* EARLY_INIT */
173
174 int board_late_init(void)
175 {
176 #ifdef CONFIG_LCD
177         /* Make sure we finish initing the LCD */
178         tegra_lcd_check_next_stage(gd->fdt_blob, 1);
179 #endif
180         return 0;
181 }
182
183 #if defined(CONFIG_TEGRA_MMC)
184 __weak void pin_mux_mmc(void)
185 {
186 }
187
188 /* this is a weak define that we are overriding */
189 int board_mmc_init(bd_t *bd)
190 {
191         debug("%s called\n", __func__);
192
193         /* Enable muxes, etc. for SDMMC controllers */
194         pin_mux_mmc();
195
196         debug("%s: init MMC\n", __func__);
197         tegra_mmc_init();
198
199         return 0;
200 }
201
202 void pad_init_mmc(struct mmc_host *host)
203 {
204 #if defined(CONFIG_TEGRA30)
205         enum periph_id id = host->mmc_id;
206         u32 val;
207
208         debug("%s: sdmmc address = %08x, id = %d\n", __func__,
209                 (unsigned int)host->reg, id);
210
211         /* Set the pad drive strength for SDMMC1 or 3 only */
212         if (id != PERIPH_ID_SDMMC1 && id != PERIPH_ID_SDMMC3) {
213                 debug("%s: settings are only valid for SDMMC1/SDMMC3!\n",
214                         __func__);
215                 return;
216         }
217
218         val = readl(&host->reg->sdmemcmppadctl);
219         val &= 0xFFFFFFF0;
220         val |= MEMCOMP_PADCTRL_VREF;
221         writel(val, &host->reg->sdmemcmppadctl);
222
223         val = readl(&host->reg->autocalcfg);
224         val &= 0xFFFF0000;
225         val |= AUTO_CAL_PU_OFFSET | AUTO_CAL_PD_OFFSET | AUTO_CAL_ENABLED;
226         writel(val, &host->reg->autocalcfg);
227 #endif  /* T30 */
228 }
229 #endif  /* MMC */