blob: 8512afa7925660aa53799f10ea28f4bd5049c730 [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>
Simon Glass0655c912015-04-14 21:03:28 -060010#include <errno.h>
Tom Warren41b68382011-01-27 10:58:05 +000011#include <ns16550.h>
Jimmy Zhanga308d462012-04-10 05:17:06 +000012#include <linux/compiler.h>
Tom Warren41b68382011-01-27 10:58:05 +000013#include <asm/io.h>
Simon Glass16134fd2011-08-30 06:23:13 +000014#include <asm/arch/clock.h>
Tom Warrend32b2a42012-12-11 13:34:17 +000015#ifdef CONFIG_LCD
Simon Glass4f476f32012-10-17 13:24:52 +000016#include <asm/arch/display.h>
Tom Warrend32b2a42012-12-11 13:34:17 +000017#endif
Lucas Stach04585842012-09-29 10:02:09 +000018#include <asm/arch/funcmux.h>
Tom Warren41b68382011-01-27 10:58:05 +000019#include <asm/arch/pinmux.h>
Simon Glasse772be82012-04-02 13:18:54 +000020#include <asm/arch/pmu.h>
Tom Warrend32b2a42012-12-11 13:34:17 +000021#ifdef CONFIG_PWM_TEGRA
Simon Glass1564f342012-10-17 13:24:49 +000022#include <asm/arch/pwm.h>
Tom Warrend32b2a42012-12-11 13:34:17 +000023#endif
Tom Warrenab371962012-09-19 15:50:56 -070024#include <asm/arch/tegra.h>
Stephen Warren8d1fb312015-01-19 16:25:52 -070025#include <asm/arch-tegra/ap.h>
Tom Warrenab371962012-09-19 15:50:56 -070026#include <asm/arch-tegra/board.h>
27#include <asm/arch-tegra/clk_rst.h>
28#include <asm/arch-tegra/pmc.h>
29#include <asm/arch-tegra/sys_proto.h>
30#include <asm/arch-tegra/uart.h>
31#include <asm/arch-tegra/warmboot.h>
Tom Warrend32b2a42012-12-11 13:34:17 +000032#ifdef CONFIG_TEGRA_CLOCK_SCALING
33#include <asm/arch/emc.h>
34#endif
35#ifdef CONFIG_USB_EHCI_TEGRA
Lucas Stach26c32162013-02-07 07:16:29 +000036#include <asm/arch-tegra/usb.h>
Mateusz Zalegad862f892013-10-04 19:22:26 +020037#include <usb.h>
Tom Warrend32b2a42012-12-11 13:34:17 +000038#endif
Tom Warren9745cf82013-02-21 12:31:30 +000039#ifdef CONFIG_TEGRA_MMC
Tom Warrenf5d874d2013-02-26 12:26:55 -070040#include <asm/arch-tegra/tegra_mmc.h>
Tom Warren9745cf82013-02-21 12:31:30 +000041#include <asm/arch-tegra/mmc.h>
42#endif
Thierry Redingf202e022014-12-09 22:25:09 -070043#include <asm/arch-tegra/xusb-padctl.h>
Simon Glass0655c912015-04-14 21:03:28 -060044#include <power/as3722.h>
Simon Glass87cc3d12012-02-03 15:13:57 +000045#include <i2c.h>
Tom Warrend32b2a42012-12-11 13:34:17 +000046#include <spi.h>
Jimmy Zhanga308d462012-04-10 05:17:06 +000047#include "emc.h"
Tom Warren41b68382011-01-27 10:58:05 +000048
49DECLARE_GLOBAL_DATA_PTR;
50
Simon Glass74472ac2014-11-10 17:16:51 -070051#ifdef CONFIG_SPL_BUILD
52/* TODO(sjg@chromium.org): Remove once SPL supports device tree */
53U_BOOT_DEVICE(tegra_gpios) = {
54 "gpio_tegra"
55};
56#endif
57
Jeroen Hofstee93dfae72014-10-08 22:57:46 +020058__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) {}
Lucas Stach18561f72012-09-25 20:21:14 +000063
Tom Warren6b33c832014-01-24 12:46:11 -070064#if defined(CONFIG_TEGRA_NAND)
Jeroen Hofstee93dfae72014-10-08 22:57:46 +020065__weak void pin_mux_nand(void)
Lucas Stach04585842012-09-29 10:02:09 +000066{
67 funcmux_select(PERIPH_ID_NDFLASH, FUNCMUX_DEFAULT);
68}
Tom Warren6b33c832014-01-24 12:46:11 -070069#endif
Lucas Stach04585842012-09-29 10:02:09 +000070
Tom Warren41b68382011-01-27 10:58:05 +000071/*
Wei Ni39d45ed2012-04-02 13:18:58 +000072 * Routine: power_det_init
73 * Description: turn off power detects
74 */
75static void power_det_init(void)
76{
Allen Martin55d98a12012-08-31 08:30:00 +000077#if defined(CONFIG_TEGRA20)
Tom Warren22562a42012-09-04 17:00:24 -070078 struct pmc_ctlr *const pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
Wei Ni39d45ed2012-04-02 13:18:58 +000079
80 /* turn off power detects */
81 writel(0, &pmc->pmc_pwr_det_latch);
82 writel(0, &pmc->pmc_pwr_det);
83#endif
84}
Simon Glass675804d2015-04-14 21:03:24 -060085
Simon Glass69c93c72015-04-14 21:03:25 -060086__weak int tegra_board_id(void)
87{
88 return -1;
89}
90
Simon Glass675804d2015-04-14 21:03:24 -060091#ifdef CONFIG_DISPLAY_BOARDINFO
92int checkboard(void)
93{
Simon Glass69c93c72015-04-14 21:03:25 -060094 int board_id = tegra_board_id();
95
96 printf("Board: %s", CONFIG_TEGRA_BOARD_STRING);
97 if (board_id != -1)
98 printf(", ID: %d\n", board_id);
99 printf("\n");
Simon Glass675804d2015-04-14 21:03:24 -0600100
101 return 0;
102}
103#endif /* CONFIG_DISPLAY_BOARDINFO */
Wei Ni39d45ed2012-04-02 13:18:58 +0000104
Simon Glass0cf62dd2015-04-14 21:03:27 -0600105__weak int tegra_lcd_pmic_init(int board_it)
106{
107 return 0;
108}
109
Simon Glass44a68082015-06-05 14:39:42 -0600110__weak int nvidia_board_init(void)
111{
112 return 0;
113}
114
Wei Ni39d45ed2012-04-02 13:18:58 +0000115/*
Tom Warren41b68382011-01-27 10:58:05 +0000116 * Routine: board_init
117 * Description: Early hardware init.
118 */
119int board_init(void)
120{
Jimmy Zhanga308d462012-04-10 05:17:06 +0000121 __maybe_unused int err;
Simon Glass0cf62dd2015-04-14 21:03:27 -0600122 __maybe_unused int board_id;
Jimmy Zhanga308d462012-04-10 05:17:06 +0000123
Simon Glass704e60d2011-11-05 04:46:51 +0000124 /* Do clocks and UART first so that printf() works */
Simon Glassc2ea5e42011-09-21 12:40:04 +0000125 clock_init();
126 clock_verify();
127
Simon Glass1121b1b2014-10-13 23:42:13 -0600128#ifdef CONFIG_TEGRA_SPI
Stephen Warrend2f67fe2012-06-12 08:33:40 +0000129 pin_mux_spi();
Tom Warrenee554f82011-11-05 09:48:11 +0000130#endif
Allen Martinba4fb9b2013-01-29 13:51:28 +0000131
Simon Glass1564f342012-10-17 13:24:49 +0000132#ifdef CONFIG_PWM_TEGRA
133 if (pwm_init(gd->fdt_blob))
134 debug("%s: Failed to init pwm\n", __func__);
135#endif
Simon Glass4f476f32012-10-17 13:24:52 +0000136#ifdef CONFIG_LCD
Marc Dietrich9bbe64b2012-11-25 11:26:11 +0000137 pin_mux_display();
Simon Glass4f476f32012-10-17 13:24:52 +0000138 tegra_lcd_check_next_stage(gd->fdt_blob, 0);
139#endif
Tom Warren41b68382011-01-27 10:58:05 +0000140 /* boot param addr */
141 gd->bd->bi_boot_params = (NV_PA_SDRAM_BASE + 0x100);
Wei Ni39d45ed2012-04-02 13:18:58 +0000142
143 power_det_init();
144
Simon Glass026fefb2012-10-30 07:28:53 +0000145#ifdef CONFIG_SYS_I2C_TEGRA
Simon Glasse772be82012-04-02 13:18:54 +0000146# ifdef CONFIG_TEGRA_PMU
147 if (pmu_set_nominal())
148 debug("Failed to select nominal voltages\n");
Jimmy Zhanga308d462012-04-10 05:17:06 +0000149# ifdef CONFIG_TEGRA_CLOCK_SCALING
150 err = board_emc_init();
151 if (err)
152 debug("Memory controller init failed: %d\n", err);
153# endif
154# endif /* CONFIG_TEGRA_PMU */
Simon Glass0655c912015-04-14 21:03:28 -0600155#ifdef CONFIG_AS3722_POWER
156 err = as3722_init(NULL);
157 if (err && err != -ENODEV)
158 return err;
159#endif
Simon Glass026fefb2012-10-30 07:28:53 +0000160#endif /* CONFIG_SYS_I2C_TEGRA */
Tom Warren41b68382011-01-27 10:58:05 +0000161
Simon Glass5d73a8d2012-02-27 10:52:50 +0000162#ifdef CONFIG_USB_EHCI_TEGRA
163 pin_mux_usb();
Simon Glasseab35fe2015-05-06 14:00:16 -0600164# ifndef CONFIG_DM_USB
Mateusz Zalegad862f892013-10-04 19:22:26 +0200165 usb_process_devicetree(gd->fdt_blob);
Simon Glasseab35fe2015-05-06 14:00:16 -0600166# endif
Simon Glass5d73a8d2012-02-27 10:52:50 +0000167#endif
Mateusz Zalegad862f892013-10-04 19:22:26 +0200168
Simon Glass4f476f32012-10-17 13:24:52 +0000169#ifdef CONFIG_LCD
Simon Glass0cf62dd2015-04-14 21:03:27 -0600170 board_id = tegra_board_id();
171 err = tegra_lcd_pmic_init(board_id);
172 if (err)
173 return err;
Simon Glass4f476f32012-10-17 13:24:52 +0000174 tegra_lcd_check_next_stage(gd->fdt_blob, 0);
175#endif
Simon Glass5d73a8d2012-02-27 10:52:50 +0000176
Lucas Stach04585842012-09-29 10:02:09 +0000177#ifdef CONFIG_TEGRA_NAND
178 pin_mux_nand();
179#endif
180
Thierry Redingf202e022014-12-09 22:25:09 -0700181 tegra_xusb_padctl_init(gd->fdt_blob);
182
Tom Warren22562a42012-09-04 17:00:24 -0700183#ifdef CONFIG_TEGRA_LP0
Allen Martin0ca1a452012-08-31 08:30:11 +0000184 /* save Sdram params to PMC 2, 4, and 24 for WB0 */
185 warmboot_save_sdram_params();
186
Simon Glass8cc8f612012-04-02 13:18:57 +0000187 /* prepare the WB code to LP0 location */
188 warmboot_prepare_code(TEGRA_LP0_ADDR, TEGRA_LP0_SIZE);
189#endif
Simon Glass44a68082015-06-05 14:39:42 -0600190 return nvidia_board_init();
Tom Warren41b68382011-01-27 10:58:05 +0000191}
Simon Glassdfcee792011-09-21 12:40:03 +0000192
193#ifdef CONFIG_BOARD_EARLY_INIT_F
Thierry Reding2fa4db02012-06-04 20:02:27 +0000194static void __gpio_early_init(void)
195{
196}
197
198void gpio_early_init(void) __attribute__((weak, alias("__gpio_early_init")));
199
Simon Glassdfcee792011-09-21 12:40:03 +0000200int board_early_init_f(void)
201{
Tom Warrend32b2a42012-12-11 13:34:17 +0000202 pinmux_init();
Simon Glassa8ccc8b2011-11-28 15:04:40 +0000203 board_init_uart_f();
Simon Glassdfcee792011-09-21 12:40:03 +0000204
205 /* Initialize periph GPIOs */
Thierry Reding2fa4db02012-06-04 20:02:27 +0000206 gpio_early_init();
Simon Glass704e60d2011-11-05 04:46:51 +0000207 gpio_early_init_uart();
Simon Glass4f476f32012-10-17 13:24:52 +0000208#ifdef CONFIG_LCD
209 tegra_lcd_early_init(gd->fdt_blob);
210#endif
Lucas Stach18561f72012-09-25 20:21:14 +0000211
Simon Glassdfcee792011-09-21 12:40:03 +0000212 return 0;
213}
214#endif /* EARLY_INIT */
Simon Glass4f476f32012-10-17 13:24:52 +0000215
216int board_late_init(void)
217{
218#ifdef CONFIG_LCD
219 /* Make sure we finish initing the LCD */
220 tegra_lcd_check_next_stage(gd->fdt_blob, 1);
221#endif
Stephen Warren8d1fb312015-01-19 16:25:52 -0700222#if defined(CONFIG_TEGRA_SUPPORT_NON_SECURE)
223 if (tegra_cpu_is_non_secure()) {
224 printf("CPU is in NS mode\n");
225 setenv("cpu_ns_mode", "1");
226 } else {
227 setenv("cpu_ns_mode", "");
228 }
229#endif
Simon Glass4f476f32012-10-17 13:24:52 +0000230 return 0;
231}
Tom Warren9745cf82013-02-21 12:31:30 +0000232
233#if defined(CONFIG_TEGRA_MMC)
Jeroen Hofstee93dfae72014-10-08 22:57:46 +0200234__weak void pin_mux_mmc(void)
Tom Warren9745cf82013-02-21 12:31:30 +0000235{
236}
237
Tom Warren9745cf82013-02-21 12:31:30 +0000238/* this is a weak define that we are overriding */
239int board_mmc_init(bd_t *bd)
240{
241 debug("%s called\n", __func__);
242
243 /* Enable muxes, etc. for SDMMC controllers */
244 pin_mux_mmc();
245
246 debug("%s: init MMC\n", __func__);
247 tegra_mmc_init();
248
249 return 0;
250}
Tom Warrenf5d874d2013-02-26 12:26:55 -0700251
252void pad_init_mmc(struct mmc_host *host)
253{
254#if defined(CONFIG_TEGRA30)
255 enum periph_id id = host->mmc_id;
256 u32 val;
257
258 debug("%s: sdmmc address = %08x, id = %d\n", __func__,
259 (unsigned int)host->reg, id);
260
261 /* Set the pad drive strength for SDMMC1 or 3 only */
262 if (id != PERIPH_ID_SDMMC1 && id != PERIPH_ID_SDMMC3) {
263 debug("%s: settings are only valid for SDMMC1/SDMMC3!\n",
264 __func__);
265 return;
266 }
267
268 val = readl(&host->reg->sdmemcmppadctl);
269 val &= 0xFFFFFFF0;
270 val |= MEMCOMP_PADCTRL_VREF;
271 writel(val, &host->reg->sdmemcmppadctl);
272
273 val = readl(&host->reg->autocalcfg);
274 val &= 0xFFFF0000;
275 val |= AUTO_CAL_PU_OFFSET | AUTO_CAL_PD_OFFSET | AUTO_CAL_ENABLED;
276 writel(val, &host->reg->autocalcfg);
277#endif /* T30 */
278}
279#endif /* MMC */