blob: 51125df34f018b79a511b44dc49e73a817944a43 [file] [log] [blame]
Tom Warren3f82b1d2011-01-27 10:58:05 +00001/*
2 * (C) Copyright 2010,2011
3 * NVIDIA Corporation <www.nvidia.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Tom Warren3f82b1d2011-01-27 10:58:05 +00006 */
7
8#include <common.h>
9#include <ns16550.h>
Jimmy Zhangc5b34a22012-04-10 05:17:06 +000010#include <linux/compiler.h>
Tom Warren3f82b1d2011-01-27 10:58:05 +000011#include <asm/io.h>
Simon Glassb4ba2be2011-08-30 06:23:13 +000012#include <asm/arch/clock.h>
Tom Warren6d6c0ba2012-12-11 13:34:17 +000013#ifdef CONFIG_LCD
Simon Glass1b24a502012-10-17 13:24:52 +000014#include <asm/arch/display.h>
Tom Warren6d6c0ba2012-12-11 13:34:17 +000015#endif
Lucas Stachc0720af2012-09-29 10:02:09 +000016#include <asm/arch/funcmux.h>
Tom Warren3f82b1d2011-01-27 10:58:05 +000017#include <asm/arch/pinmux.h>
Simon Glass87236262012-04-02 13:18:54 +000018#include <asm/arch/pmu.h>
Tom Warren6d6c0ba2012-12-11 13:34:17 +000019#ifdef CONFIG_PWM_TEGRA
Simon Glasse1ae0d12012-10-17 13:24:49 +000020#include <asm/arch/pwm.h>
Tom Warren6d6c0ba2012-12-11 13:34:17 +000021#endif
Tom Warren150c2492012-09-19 15:50:56 -070022#include <asm/arch/tegra.h>
Tom Warren150c2492012-09-19 15:50:56 -070023#include <asm/arch-tegra/board.h>
24#include <asm/arch-tegra/clk_rst.h>
25#include <asm/arch-tegra/pmc.h>
26#include <asm/arch-tegra/sys_proto.h>
27#include <asm/arch-tegra/uart.h>
28#include <asm/arch-tegra/warmboot.h>
Tom Warren6d6c0ba2012-12-11 13:34:17 +000029#ifdef CONFIG_TEGRA_CLOCK_SCALING
30#include <asm/arch/emc.h>
31#endif
32#ifdef CONFIG_USB_EHCI_TEGRA
Lucas Stach7ae18f32013-02-07 07:16:29 +000033#include <asm/arch-tegra/usb.h>
Mateusz Zalega16297cf2013-10-04 19:22:26 +020034#include <usb.h>
Tom Warren6d6c0ba2012-12-11 13:34:17 +000035#endif
Tom Warrenc9aa8312013-02-21 12:31:30 +000036#ifdef CONFIG_TEGRA_MMC
Tom Warren190be1f2013-02-26 12:26:55 -070037#include <asm/arch-tegra/tegra_mmc.h>
Tom Warrenc9aa8312013-02-21 12:31:30 +000038#include <asm/arch-tegra/mmc.h>
39#endif
Simon Glasscb445fb2012-02-03 15:13:57 +000040#include <i2c.h>
Tom Warren6d6c0ba2012-12-11 13:34:17 +000041#include <spi.h>
Jimmy Zhangc5b34a22012-04-10 05:17:06 +000042#include "emc.h"
Tom Warren3f82b1d2011-01-27 10:58:05 +000043
44DECLARE_GLOBAL_DATA_PTR;
45
Tom Warren29f3e3f2012-09-04 17:00:24 -070046const struct tegra_sysinfo sysinfo = {
47 CONFIG_TEGRA_BOARD_STRING
Tom Warren3f82b1d2011-01-27 10:58:05 +000048};
49
Jeroen Hofstee19d7bf32014-10-08 22:57:46 +020050__weak void pinmux_init(void) {}
51__weak void pin_mux_usb(void) {}
52__weak void pin_mux_spi(void) {}
53__weak void gpio_early_init_uart(void) {}
54__weak void pin_mux_display(void) {}
Lucas Stach0cd10c72012-09-25 20:21:14 +000055
Tom Warrendcd12512014-01-24 12:46:11 -070056#if defined(CONFIG_TEGRA_NAND)
Jeroen Hofstee19d7bf32014-10-08 22:57:46 +020057__weak void pin_mux_nand(void)
Lucas Stachc0720af2012-09-29 10:02:09 +000058{
59 funcmux_select(PERIPH_ID_NDFLASH, FUNCMUX_DEFAULT);
60}
Tom Warrendcd12512014-01-24 12:46:11 -070061#endif
Lucas Stachc0720af2012-09-29 10:02:09 +000062
Tom Warrenf4ef6662011-04-14 12:09:41 +000063/*
Wei Ni5aff0212012-04-02 13:18:58 +000064 * Routine: power_det_init
65 * Description: turn off power detects
66 */
67static void power_det_init(void)
68{
Allen Martin00a27492012-08-31 08:30:00 +000069#if defined(CONFIG_TEGRA20)
Tom Warren29f3e3f2012-09-04 17:00:24 -070070 struct pmc_ctlr *const pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
Wei Ni5aff0212012-04-02 13:18:58 +000071
72 /* turn off power detects */
73 writel(0, &pmc->pmc_pwr_det_latch);
74 writel(0, &pmc->pmc_pwr_det);
75#endif
76}
77
78/*
Tom Warren3f82b1d2011-01-27 10:58:05 +000079 * Routine: board_init
80 * Description: Early hardware init.
81 */
82int board_init(void)
83{
Jimmy Zhangc5b34a22012-04-10 05:17:06 +000084 __maybe_unused int err;
85
Simon Glassa04eba92011-11-05 04:46:51 +000086 /* Do clocks and UART first so that printf() works */
Simon Glass4ed59e72011-09-21 12:40:04 +000087 clock_init();
88 clock_verify();
89
Simon Glassfda6fac2014-10-13 23:42:13 -060090#ifdef CONFIG_TEGRA_SPI
Stephen Warrene0284942012-06-12 08:33:40 +000091 pin_mux_spi();
Tom Warren9112ef82011-11-05 09:48:11 +000092#endif
Allen Martinb19f5742013-01-29 13:51:28 +000093
Simon Glasse1ae0d12012-10-17 13:24:49 +000094#ifdef CONFIG_PWM_TEGRA
95 if (pwm_init(gd->fdt_blob))
96 debug("%s: Failed to init pwm\n", __func__);
97#endif
Simon Glass1b24a502012-10-17 13:24:52 +000098#ifdef CONFIG_LCD
Marc Dietrich716d9432012-11-25 11:26:11 +000099 pin_mux_display();
Simon Glass1b24a502012-10-17 13:24:52 +0000100 tegra_lcd_check_next_stage(gd->fdt_blob, 0);
101#endif
Tom Warren3f82b1d2011-01-27 10:58:05 +0000102 /* boot param addr */
103 gd->bd->bi_boot_params = (NV_PA_SDRAM_BASE + 0x100);
Wei Ni5aff0212012-04-02 13:18:58 +0000104
105 power_det_init();
106
Simon Glass1f2ba722012-10-30 07:28:53 +0000107#ifdef CONFIG_SYS_I2C_TEGRA
Simon Glasscb445fb2012-02-03 15:13:57 +0000108#ifndef CONFIG_SYS_I2C_INIT_BOARD
109#error "You must define CONFIG_SYS_I2C_INIT_BOARD to use i2c on Nvidia boards"
110#endif
111 i2c_init_board();
Simon Glass87236262012-04-02 13:18:54 +0000112# ifdef CONFIG_TEGRA_PMU
113 if (pmu_set_nominal())
114 debug("Failed to select nominal voltages\n");
Jimmy Zhangc5b34a22012-04-10 05:17:06 +0000115# ifdef CONFIG_TEGRA_CLOCK_SCALING
116 err = board_emc_init();
117 if (err)
118 debug("Memory controller init failed: %d\n", err);
119# endif
120# endif /* CONFIG_TEGRA_PMU */
Simon Glass1f2ba722012-10-30 07:28:53 +0000121#endif /* CONFIG_SYS_I2C_TEGRA */
Tom Warren3f82b1d2011-01-27 10:58:05 +0000122
Simon Glassf10393e2012-02-27 10:52:50 +0000123#ifdef CONFIG_USB_EHCI_TEGRA
124 pin_mux_usb();
Mateusz Zalega16297cf2013-10-04 19:22:26 +0200125 usb_process_devicetree(gd->fdt_blob);
Simon Glassf10393e2012-02-27 10:52:50 +0000126#endif
Mateusz Zalega16297cf2013-10-04 19:22:26 +0200127
Simon Glass1b24a502012-10-17 13:24:52 +0000128#ifdef CONFIG_LCD
129 tegra_lcd_check_next_stage(gd->fdt_blob, 0);
130#endif
Simon Glassf10393e2012-02-27 10:52:50 +0000131
Lucas Stachc0720af2012-09-29 10:02:09 +0000132#ifdef CONFIG_TEGRA_NAND
133 pin_mux_nand();
134#endif
135
Tom Warren29f3e3f2012-09-04 17:00:24 -0700136#ifdef CONFIG_TEGRA_LP0
Allen Martina49716a2012-08-31 08:30:11 +0000137 /* save Sdram params to PMC 2, 4, and 24 for WB0 */
138 warmboot_save_sdram_params();
139
Simon Glass67ac5792012-04-02 13:18:57 +0000140 /* prepare the WB code to LP0 location */
141 warmboot_prepare_code(TEGRA_LP0_ADDR, TEGRA_LP0_SIZE);
142#endif
143
Tom Warren3f82b1d2011-01-27 10:58:05 +0000144 return 0;
145}
Tom Warren21ef6a12011-05-31 10:30:37 +0000146
Simon Glass3e00dbd2011-09-21 12:40:03 +0000147#ifdef CONFIG_BOARD_EARLY_INIT_F
Thierry Redingcb7a1cf2012-06-04 20:02:27 +0000148static void __gpio_early_init(void)
149{
150}
151
152void gpio_early_init(void) __attribute__((weak, alias("__gpio_early_init")));
153
Simon Glass3e00dbd2011-09-21 12:40:03 +0000154int board_early_init_f(void)
155{
Tom Warren6d6c0ba2012-12-11 13:34:17 +0000156 pinmux_init();
Simon Glassf46a9452011-11-28 15:04:40 +0000157 board_init_uart_f();
Simon Glass3e00dbd2011-09-21 12:40:03 +0000158
159 /* Initialize periph GPIOs */
Thierry Redingcb7a1cf2012-06-04 20:02:27 +0000160 gpio_early_init();
Simon Glassa04eba92011-11-05 04:46:51 +0000161 gpio_early_init_uart();
Simon Glass1b24a502012-10-17 13:24:52 +0000162#ifdef CONFIG_LCD
163 tegra_lcd_early_init(gd->fdt_blob);
164#endif
Lucas Stach0cd10c72012-09-25 20:21:14 +0000165
Simon Glass3e00dbd2011-09-21 12:40:03 +0000166 return 0;
167}
168#endif /* EARLY_INIT */
Simon Glass1b24a502012-10-17 13:24:52 +0000169
170int board_late_init(void)
171{
172#ifdef CONFIG_LCD
173 /* Make sure we finish initing the LCD */
174 tegra_lcd_check_next_stage(gd->fdt_blob, 1);
175#endif
176 return 0;
177}
Tom Warrenc9aa8312013-02-21 12:31:30 +0000178
179#if defined(CONFIG_TEGRA_MMC)
Jeroen Hofstee19d7bf32014-10-08 22:57:46 +0200180__weak void pin_mux_mmc(void)
Tom Warrenc9aa8312013-02-21 12:31:30 +0000181{
182}
183
Tom Warrenc9aa8312013-02-21 12:31:30 +0000184/* this is a weak define that we are overriding */
185int board_mmc_init(bd_t *bd)
186{
187 debug("%s called\n", __func__);
188
189 /* Enable muxes, etc. for SDMMC controllers */
190 pin_mux_mmc();
191
192 debug("%s: init MMC\n", __func__);
193 tegra_mmc_init();
194
195 return 0;
196}
Tom Warren190be1f2013-02-26 12:26:55 -0700197
198void pad_init_mmc(struct mmc_host *host)
199{
200#if defined(CONFIG_TEGRA30)
201 enum periph_id id = host->mmc_id;
202 u32 val;
203
204 debug("%s: sdmmc address = %08x, id = %d\n", __func__,
205 (unsigned int)host->reg, id);
206
207 /* Set the pad drive strength for SDMMC1 or 3 only */
208 if (id != PERIPH_ID_SDMMC1 && id != PERIPH_ID_SDMMC3) {
209 debug("%s: settings are only valid for SDMMC1/SDMMC3!\n",
210 __func__);
211 return;
212 }
213
214 val = readl(&host->reg->sdmemcmppadctl);
215 val &= 0xFFFFFFF0;
216 val |= MEMCOMP_PADCTRL_VREF;
217 writel(val, &host->reg->sdmemcmppadctl);
218
219 val = readl(&host->reg->autocalcfg);
220 val &= 0xFFFF0000;
221 val |= AUTO_CAL_PU_OFFSET | AUTO_CAL_PD_OFFSET | AUTO_CAL_ENABLED;
222 writel(val, &host->reg->autocalcfg);
223#endif /* T30 */
224}
225#endif /* MMC */