blob: 018dddba15584f082758f5567b90b7421d09c025 [file] [log] [blame]
Tom Warren41b68382011-01-27 10:58:05 +00001/*
2 * (C) Copyright 2010,2011
3 * NVIDIA Corporation <www.nvidia.com>
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Tom Warren41b68382011-01-27 10:58:05 +00006 */
7
8#include <common.h>
Simon Glass74472ac2014-11-10 17:16:51 -07009#include <dm.h>
Tom Warren41b68382011-01-27 10:58:05 +000010#include <ns16550.h>
Jimmy Zhanga308d462012-04-10 05:17:06 +000011#include <linux/compiler.h>
Tom Warren41b68382011-01-27 10:58:05 +000012#include <asm/io.h>
Simon Glass16134fd2011-08-30 06:23:13 +000013#include <asm/arch/clock.h>
Tom Warrend32b2a42012-12-11 13:34:17 +000014#ifdef CONFIG_LCD
Simon Glass4f476f32012-10-17 13:24:52 +000015#include <asm/arch/display.h>
Tom Warrend32b2a42012-12-11 13:34:17 +000016#endif
Lucas Stach04585842012-09-29 10:02:09 +000017#include <asm/arch/funcmux.h>
Tom Warren41b68382011-01-27 10:58:05 +000018#include <asm/arch/pinmux.h>
Simon Glasse772be82012-04-02 13:18:54 +000019#include <asm/arch/pmu.h>
Tom Warrend32b2a42012-12-11 13:34:17 +000020#ifdef CONFIG_PWM_TEGRA
Simon Glass1564f342012-10-17 13:24:49 +000021#include <asm/arch/pwm.h>
Tom Warrend32b2a42012-12-11 13:34:17 +000022#endif
Tom Warrenab371962012-09-19 15:50:56 -070023#include <asm/arch/tegra.h>
Stephen Warren8d1fb312015-01-19 16:25:52 -070024#include <asm/arch-tegra/ap.h>
Tom Warrenab371962012-09-19 15:50:56 -070025#include <asm/arch-tegra/board.h>
26#include <asm/arch-tegra/clk_rst.h>
27#include <asm/arch-tegra/pmc.h>
28#include <asm/arch-tegra/sys_proto.h>
29#include <asm/arch-tegra/uart.h>
30#include <asm/arch-tegra/warmboot.h>
Tom Warrend32b2a42012-12-11 13:34:17 +000031#ifdef CONFIG_TEGRA_CLOCK_SCALING
32#include <asm/arch/emc.h>
33#endif
34#ifdef CONFIG_USB_EHCI_TEGRA
Lucas Stach26c32162013-02-07 07:16:29 +000035#include <asm/arch-tegra/usb.h>
Mateusz Zalegad862f892013-10-04 19:22:26 +020036#include <usb.h>
Tom Warrend32b2a42012-12-11 13:34:17 +000037#endif
Tom Warren9745cf82013-02-21 12:31:30 +000038#ifdef CONFIG_TEGRA_MMC
Tom Warrenf5d874d2013-02-26 12:26:55 -070039#include <asm/arch-tegra/tegra_mmc.h>
Tom Warren9745cf82013-02-21 12:31:30 +000040#include <asm/arch-tegra/mmc.h>
41#endif
Thierry Redingf202e022014-12-09 22:25:09 -070042#include <asm/arch-tegra/xusb-padctl.h>
Simon Glass87cc3d12012-02-03 15:13:57 +000043#include <i2c.h>
Tom Warrend32b2a42012-12-11 13:34:17 +000044#include <spi.h>
Jimmy Zhanga308d462012-04-10 05:17:06 +000045#include "emc.h"
Tom Warren41b68382011-01-27 10:58:05 +000046
47DECLARE_GLOBAL_DATA_PTR;
48
Simon Glass74472ac2014-11-10 17:16:51 -070049#ifdef CONFIG_SPL_BUILD
50/* TODO(sjg@chromium.org): Remove once SPL supports device tree */
51U_BOOT_DEVICE(tegra_gpios) = {
52 "gpio_tegra"
53};
54#endif
55
Tom Warren22562a42012-09-04 17:00:24 -070056const struct tegra_sysinfo sysinfo = {
57 CONFIG_TEGRA_BOARD_STRING
Tom Warren41b68382011-01-27 10:58:05 +000058};
59
Jeroen Hofstee93dfae72014-10-08 22:57:46 +020060__weak void pinmux_init(void) {}
61__weak void pin_mux_usb(void) {}
62__weak void pin_mux_spi(void) {}
63__weak void gpio_early_init_uart(void) {}
64__weak void pin_mux_display(void) {}
Lucas Stach18561f72012-09-25 20:21:14 +000065
Tom Warren6b33c832014-01-24 12:46:11 -070066#if defined(CONFIG_TEGRA_NAND)
Jeroen Hofstee93dfae72014-10-08 22:57:46 +020067__weak void pin_mux_nand(void)
Lucas Stach04585842012-09-29 10:02:09 +000068{
69 funcmux_select(PERIPH_ID_NDFLASH, FUNCMUX_DEFAULT);
70}
Tom Warren6b33c832014-01-24 12:46:11 -070071#endif
Lucas Stach04585842012-09-29 10:02:09 +000072
Tom Warren41b68382011-01-27 10:58:05 +000073/*
Wei Ni39d45ed2012-04-02 13:18:58 +000074 * Routine: power_det_init
75 * Description: turn off power detects
76 */
77static void power_det_init(void)
78{
Allen Martin55d98a12012-08-31 08:30:00 +000079#if defined(CONFIG_TEGRA20)
Tom Warren22562a42012-09-04 17:00:24 -070080 struct pmc_ctlr *const pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
Wei Ni39d45ed2012-04-02 13:18:58 +000081
82 /* turn off power detects */
83 writel(0, &pmc->pmc_pwr_det_latch);
84 writel(0, &pmc->pmc_pwr_det);
85#endif
86}
87
88/*
Tom Warren41b68382011-01-27 10:58:05 +000089 * Routine: board_init
90 * Description: Early hardware init.
91 */
92int board_init(void)
93{
Jimmy Zhanga308d462012-04-10 05:17:06 +000094 __maybe_unused int err;
95
Simon Glass704e60d2011-11-05 04:46:51 +000096 /* Do clocks and UART first so that printf() works */
Simon Glassc2ea5e42011-09-21 12:40:04 +000097 clock_init();
98 clock_verify();
99
Simon Glass1121b1b2014-10-13 23:42:13 -0600100#ifdef CONFIG_TEGRA_SPI
Stephen Warrend2f67fe2012-06-12 08:33:40 +0000101 pin_mux_spi();
Tom Warrenee554f82011-11-05 09:48:11 +0000102#endif
Allen Martinba4fb9b2013-01-29 13:51:28 +0000103
Simon Glass1564f342012-10-17 13:24:49 +0000104#ifdef CONFIG_PWM_TEGRA
105 if (pwm_init(gd->fdt_blob))
106 debug("%s: Failed to init pwm\n", __func__);
107#endif
Simon Glass4f476f32012-10-17 13:24:52 +0000108#ifdef CONFIG_LCD
Marc Dietrich9bbe64b2012-11-25 11:26:11 +0000109 pin_mux_display();
Simon Glass4f476f32012-10-17 13:24:52 +0000110 tegra_lcd_check_next_stage(gd->fdt_blob, 0);
111#endif
Tom Warren41b68382011-01-27 10:58:05 +0000112 /* boot param addr */
113 gd->bd->bi_boot_params = (NV_PA_SDRAM_BASE + 0x100);
Wei Ni39d45ed2012-04-02 13:18:58 +0000114
115 power_det_init();
116
Simon Glass026fefb2012-10-30 07:28:53 +0000117#ifdef CONFIG_SYS_I2C_TEGRA
Simon Glasse772be82012-04-02 13:18:54 +0000118# ifdef CONFIG_TEGRA_PMU
119 if (pmu_set_nominal())
120 debug("Failed to select nominal voltages\n");
Jimmy Zhanga308d462012-04-10 05:17:06 +0000121# ifdef CONFIG_TEGRA_CLOCK_SCALING
122 err = board_emc_init();
123 if (err)
124 debug("Memory controller init failed: %d\n", err);
125# endif
126# endif /* CONFIG_TEGRA_PMU */
Simon Glass026fefb2012-10-30 07:28:53 +0000127#endif /* CONFIG_SYS_I2C_TEGRA */
Tom Warren41b68382011-01-27 10:58:05 +0000128
Simon Glass5d73a8d2012-02-27 10:52:50 +0000129#ifdef CONFIG_USB_EHCI_TEGRA
130 pin_mux_usb();
Mateusz Zalegad862f892013-10-04 19:22:26 +0200131 usb_process_devicetree(gd->fdt_blob);
Simon Glass5d73a8d2012-02-27 10:52:50 +0000132#endif
Mateusz Zalegad862f892013-10-04 19:22:26 +0200133
Simon Glass4f476f32012-10-17 13:24:52 +0000134#ifdef CONFIG_LCD
135 tegra_lcd_check_next_stage(gd->fdt_blob, 0);
136#endif
Simon Glass5d73a8d2012-02-27 10:52:50 +0000137
Lucas Stach04585842012-09-29 10:02:09 +0000138#ifdef CONFIG_TEGRA_NAND
139 pin_mux_nand();
140#endif
141
Thierry Redingf202e022014-12-09 22:25:09 -0700142 tegra_xusb_padctl_init(gd->fdt_blob);
143
Tom Warren22562a42012-09-04 17:00:24 -0700144#ifdef CONFIG_TEGRA_LP0
Allen Martin0ca1a452012-08-31 08:30:11 +0000145 /* save Sdram params to PMC 2, 4, and 24 for WB0 */
146 warmboot_save_sdram_params();
147
Simon Glass8cc8f612012-04-02 13:18:57 +0000148 /* prepare the WB code to LP0 location */
149 warmboot_prepare_code(TEGRA_LP0_ADDR, TEGRA_LP0_SIZE);
150#endif
151
Tom Warren41b68382011-01-27 10:58:05 +0000152 return 0;
153}
Simon Glassdfcee792011-09-21 12:40:03 +0000154
155#ifdef CONFIG_BOARD_EARLY_INIT_F
Thierry Reding2fa4db02012-06-04 20:02:27 +0000156static void __gpio_early_init(void)
157{
158}
159
160void gpio_early_init(void) __attribute__((weak, alias("__gpio_early_init")));
161
Simon Glassdfcee792011-09-21 12:40:03 +0000162int board_early_init_f(void)
163{
Tom Warrend32b2a42012-12-11 13:34:17 +0000164 pinmux_init();
Simon Glassa8ccc8b2011-11-28 15:04:40 +0000165 board_init_uart_f();
Simon Glassdfcee792011-09-21 12:40:03 +0000166
167 /* Initialize periph GPIOs */
Thierry Reding2fa4db02012-06-04 20:02:27 +0000168 gpio_early_init();
Simon Glass704e60d2011-11-05 04:46:51 +0000169 gpio_early_init_uart();
Simon Glass4f476f32012-10-17 13:24:52 +0000170#ifdef CONFIG_LCD
171 tegra_lcd_early_init(gd->fdt_blob);
172#endif
Lucas Stach18561f72012-09-25 20:21:14 +0000173
Simon Glassdfcee792011-09-21 12:40:03 +0000174 return 0;
175}
176#endif /* EARLY_INIT */
Simon Glass4f476f32012-10-17 13:24:52 +0000177
178int board_late_init(void)
179{
180#ifdef CONFIG_LCD
181 /* Make sure we finish initing the LCD */
182 tegra_lcd_check_next_stage(gd->fdt_blob, 1);
183#endif
Stephen Warren8d1fb312015-01-19 16:25:52 -0700184#if defined(CONFIG_TEGRA_SUPPORT_NON_SECURE)
185 if (tegra_cpu_is_non_secure()) {
186 printf("CPU is in NS mode\n");
187 setenv("cpu_ns_mode", "1");
188 } else {
189 setenv("cpu_ns_mode", "");
190 }
191#endif
Simon Glass4f476f32012-10-17 13:24:52 +0000192 return 0;
193}
Tom Warren9745cf82013-02-21 12:31:30 +0000194
195#if defined(CONFIG_TEGRA_MMC)
Jeroen Hofstee93dfae72014-10-08 22:57:46 +0200196__weak void pin_mux_mmc(void)
Tom Warren9745cf82013-02-21 12:31:30 +0000197{
198}
199
Tom Warren9745cf82013-02-21 12:31:30 +0000200/* this is a weak define that we are overriding */
201int board_mmc_init(bd_t *bd)
202{
203 debug("%s called\n", __func__);
204
205 /* Enable muxes, etc. for SDMMC controllers */
206 pin_mux_mmc();
207
208 debug("%s: init MMC\n", __func__);
209 tegra_mmc_init();
210
211 return 0;
212}
Tom Warrenf5d874d2013-02-26 12:26:55 -0700213
214void pad_init_mmc(struct mmc_host *host)
215{
216#if defined(CONFIG_TEGRA30)
217 enum periph_id id = host->mmc_id;
218 u32 val;
219
220 debug("%s: sdmmc address = %08x, id = %d\n", __func__,
221 (unsigned int)host->reg, id);
222
223 /* Set the pad drive strength for SDMMC1 or 3 only */
224 if (id != PERIPH_ID_SDMMC1 && id != PERIPH_ID_SDMMC3) {
225 debug("%s: settings are only valid for SDMMC1/SDMMC3!\n",
226 __func__);
227 return;
228 }
229
230 val = readl(&host->reg->sdmemcmppadctl);
231 val &= 0xFFFFFFF0;
232 val |= MEMCOMP_PADCTRL_VREF;
233 writel(val, &host->reg->sdmemcmppadctl);
234
235 val = readl(&host->reg->autocalcfg);
236 val &= 0xFFFF0000;
237 val |= AUTO_CAL_PU_OFFSET | AUTO_CAL_PD_OFFSET | AUTO_CAL_ENABLED;
238 writel(val, &host->reg->autocalcfg);
239#endif /* T30 */
240}
241#endif /* MMC */