blob: 1972527e7d11958239d6e36f55b9a25c301ea4cc [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>
Jim Lin7e44d932013-06-21 19:05:47 +080034#include <asm/arch/usb.h>
Mateusz Zalega16297cf2013-10-04 19:22:26 +020035#include <usb.h>
Tom Warren6d6c0ba2012-12-11 13:34:17 +000036#endif
Tom Warrenc9aa8312013-02-21 12:31:30 +000037#ifdef CONFIG_TEGRA_MMC
Tom Warren190be1f2013-02-26 12:26:55 -070038#include <asm/arch-tegra/tegra_mmc.h>
Tom Warrenc9aa8312013-02-21 12:31:30 +000039#include <asm/arch-tegra/mmc.h>
40#endif
Simon Glasscb445fb2012-02-03 15:13:57 +000041#include <i2c.h>
Tom Warren6d6c0ba2012-12-11 13:34:17 +000042#include <spi.h>
Jimmy Zhangc5b34a22012-04-10 05:17:06 +000043#include "emc.h"
Tom Warren3f82b1d2011-01-27 10:58:05 +000044
45DECLARE_GLOBAL_DATA_PTR;
46
Tom Warren29f3e3f2012-09-04 17:00:24 -070047const struct tegra_sysinfo sysinfo = {
48 CONFIG_TEGRA_BOARD_STRING
Tom Warren3f82b1d2011-01-27 10:58:05 +000049};
50
Allen Martin45ec5b22012-08-31 08:30:08 +000051#ifndef CONFIG_SPL_BUILD
Tom Warren3f82b1d2011-01-27 10:58:05 +000052/*
53 * Routine: timer_init
54 * Description: init the timestamp and lastinc value
55 */
56int timer_init(void)
57{
Tom Warren3f82b1d2011-01-27 10:58:05 +000058 return 0;
59}
Allen Martin45ec5b22012-08-31 08:30:08 +000060#endif
Tom Warren3f82b1d2011-01-27 10:58:05 +000061
Simon Glassf10393e2012-02-27 10:52:50 +000062void __pin_mux_usb(void)
63{
64}
65
66void pin_mux_usb(void) __attribute__((weak, alias("__pin_mux_usb")));
67
Stephen Warrene0284942012-06-12 08:33:40 +000068void __pin_mux_spi(void)
69{
70}
71
72void pin_mux_spi(void) __attribute__((weak, alias("__pin_mux_spi")));
73
Lucas Stach0cd10c72012-09-25 20:21:14 +000074void __gpio_early_init_uart(void)
75{
76}
77
78void gpio_early_init_uart(void)
79__attribute__((weak, alias("__gpio_early_init_uart")));
80
Lucas Stachc0720af2012-09-29 10:02:09 +000081void __pin_mux_nand(void)
82{
83 funcmux_select(PERIPH_ID_NDFLASH, FUNCMUX_DEFAULT);
84}
85
86void pin_mux_nand(void) __attribute__((weak, alias("__pin_mux_nand")));
87
Marc Dietrich716d9432012-11-25 11:26:11 +000088void __pin_mux_display(void)
89{
90}
91
92void pin_mux_display(void) __attribute__((weak, alias("__pin_mux_display")));
93
Tom Warrenf4ef6662011-04-14 12:09:41 +000094/*
Wei Ni5aff0212012-04-02 13:18:58 +000095 * Routine: power_det_init
96 * Description: turn off power detects
97 */
98static void power_det_init(void)
99{
Allen Martin00a27492012-08-31 08:30:00 +0000100#if defined(CONFIG_TEGRA20)
Tom Warren29f3e3f2012-09-04 17:00:24 -0700101 struct pmc_ctlr *const pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
Wei Ni5aff0212012-04-02 13:18:58 +0000102
103 /* turn off power detects */
104 writel(0, &pmc->pmc_pwr_det_latch);
105 writel(0, &pmc->pmc_pwr_det);
106#endif
107}
108
109/*
Tom Warren3f82b1d2011-01-27 10:58:05 +0000110 * Routine: board_init
111 * Description: Early hardware init.
112 */
113int board_init(void)
114{
Jimmy Zhangc5b34a22012-04-10 05:17:06 +0000115 __maybe_unused int err;
116
Simon Glassa04eba92011-11-05 04:46:51 +0000117 /* Do clocks and UART first so that printf() works */
Simon Glass4ed59e72011-09-21 12:40:04 +0000118 clock_init();
119 clock_verify();
120
Allen Martin78f47b72013-03-16 18:58:07 +0000121#ifdef CONFIG_FDT_SPI
Stephen Warrene0284942012-06-12 08:33:40 +0000122 pin_mux_spi();
Tom Warren9112ef82011-11-05 09:48:11 +0000123 spi_init();
124#endif
Allen Martinb19f5742013-01-29 13:51:28 +0000125
Simon Glasse1ae0d12012-10-17 13:24:49 +0000126#ifdef CONFIG_PWM_TEGRA
127 if (pwm_init(gd->fdt_blob))
128 debug("%s: Failed to init pwm\n", __func__);
129#endif
Simon Glass1b24a502012-10-17 13:24:52 +0000130#ifdef CONFIG_LCD
Marc Dietrich716d9432012-11-25 11:26:11 +0000131 pin_mux_display();
Simon Glass1b24a502012-10-17 13:24:52 +0000132 tegra_lcd_check_next_stage(gd->fdt_blob, 0);
133#endif
Tom Warren3f82b1d2011-01-27 10:58:05 +0000134 /* boot param addr */
135 gd->bd->bi_boot_params = (NV_PA_SDRAM_BASE + 0x100);
Wei Ni5aff0212012-04-02 13:18:58 +0000136
137 power_det_init();
138
Simon Glass1f2ba722012-10-30 07:28:53 +0000139#ifdef CONFIG_SYS_I2C_TEGRA
Simon Glasscb445fb2012-02-03 15:13:57 +0000140#ifndef CONFIG_SYS_I2C_INIT_BOARD
141#error "You must define CONFIG_SYS_I2C_INIT_BOARD to use i2c on Nvidia boards"
142#endif
143 i2c_init_board();
Simon Glass87236262012-04-02 13:18:54 +0000144# ifdef CONFIG_TEGRA_PMU
145 if (pmu_set_nominal())
146 debug("Failed to select nominal voltages\n");
Jimmy Zhangc5b34a22012-04-10 05:17:06 +0000147# ifdef CONFIG_TEGRA_CLOCK_SCALING
148 err = board_emc_init();
149 if (err)
150 debug("Memory controller init failed: %d\n", err);
151# endif
152# endif /* CONFIG_TEGRA_PMU */
Simon Glass1f2ba722012-10-30 07:28:53 +0000153#endif /* CONFIG_SYS_I2C_TEGRA */
Tom Warren3f82b1d2011-01-27 10:58:05 +0000154
Simon Glassf10393e2012-02-27 10:52:50 +0000155#ifdef CONFIG_USB_EHCI_TEGRA
156 pin_mux_usb();
Mateusz Zalega16297cf2013-10-04 19:22:26 +0200157 usb_process_devicetree(gd->fdt_blob);
Simon Glassf10393e2012-02-27 10:52:50 +0000158#endif
Mateusz Zalega16297cf2013-10-04 19:22:26 +0200159
Simon Glass1b24a502012-10-17 13:24:52 +0000160#ifdef CONFIG_LCD
161 tegra_lcd_check_next_stage(gd->fdt_blob, 0);
162#endif
Simon Glassf10393e2012-02-27 10:52:50 +0000163
Lucas Stachc0720af2012-09-29 10:02:09 +0000164#ifdef CONFIG_TEGRA_NAND
165 pin_mux_nand();
166#endif
167
Tom Warren29f3e3f2012-09-04 17:00:24 -0700168#ifdef CONFIG_TEGRA_LP0
Allen Martina49716a2012-08-31 08:30:11 +0000169 /* save Sdram params to PMC 2, 4, and 24 for WB0 */
170 warmboot_save_sdram_params();
171
Simon Glass67ac5792012-04-02 13:18:57 +0000172 /* prepare the WB code to LP0 location */
173 warmboot_prepare_code(TEGRA_LP0_ADDR, TEGRA_LP0_SIZE);
174#endif
175
Tom Warren3f82b1d2011-01-27 10:58:05 +0000176 return 0;
177}
Tom Warren21ef6a12011-05-31 10:30:37 +0000178
Simon Glass3e00dbd2011-09-21 12:40:03 +0000179#ifdef CONFIG_BOARD_EARLY_INIT_F
Thierry Redingcb7a1cf2012-06-04 20:02:27 +0000180static void __gpio_early_init(void)
181{
182}
183
184void gpio_early_init(void) __attribute__((weak, alias("__gpio_early_init")));
185
Simon Glass3e00dbd2011-09-21 12:40:03 +0000186int board_early_init_f(void)
187{
Tom Warren94829192013-01-28 13:32:12 +0000188#if !defined(CONFIG_TEGRA20)
Tom Warren6d6c0ba2012-12-11 13:34:17 +0000189 pinmux_init();
190#endif
Simon Glassf46a9452011-11-28 15:04:40 +0000191 board_init_uart_f();
Simon Glass3e00dbd2011-09-21 12:40:03 +0000192
193 /* Initialize periph GPIOs */
Thierry Redingcb7a1cf2012-06-04 20:02:27 +0000194 gpio_early_init();
Simon Glassa04eba92011-11-05 04:46:51 +0000195 gpio_early_init_uart();
Simon Glass1b24a502012-10-17 13:24:52 +0000196#ifdef CONFIG_LCD
197 tegra_lcd_early_init(gd->fdt_blob);
198#endif
Lucas Stach0cd10c72012-09-25 20:21:14 +0000199
Simon Glass3e00dbd2011-09-21 12:40:03 +0000200 return 0;
201}
202#endif /* EARLY_INIT */
Simon Glass1b24a502012-10-17 13:24:52 +0000203
204int board_late_init(void)
205{
206#ifdef CONFIG_LCD
207 /* Make sure we finish initing the LCD */
208 tegra_lcd_check_next_stage(gd->fdt_blob, 1);
209#endif
210 return 0;
211}
Tom Warrenc9aa8312013-02-21 12:31:30 +0000212
213#if defined(CONFIG_TEGRA_MMC)
214void __pin_mux_mmc(void)
215{
216}
217
218void pin_mux_mmc(void) __attribute__((weak, alias("__pin_mux_mmc")));
219
220/* this is a weak define that we are overriding */
221int board_mmc_init(bd_t *bd)
222{
223 debug("%s called\n", __func__);
224
225 /* Enable muxes, etc. for SDMMC controllers */
226 pin_mux_mmc();
227
228 debug("%s: init MMC\n", __func__);
229 tegra_mmc_init();
230
231 return 0;
232}
Tom Warren190be1f2013-02-26 12:26:55 -0700233
234void pad_init_mmc(struct mmc_host *host)
235{
236#if defined(CONFIG_TEGRA30)
237 enum periph_id id = host->mmc_id;
238 u32 val;
239
240 debug("%s: sdmmc address = %08x, id = %d\n", __func__,
241 (unsigned int)host->reg, id);
242
243 /* Set the pad drive strength for SDMMC1 or 3 only */
244 if (id != PERIPH_ID_SDMMC1 && id != PERIPH_ID_SDMMC3) {
245 debug("%s: settings are only valid for SDMMC1/SDMMC3!\n",
246 __func__);
247 return;
248 }
249
250 val = readl(&host->reg->sdmemcmppadctl);
251 val &= 0xFFFFFFF0;
252 val |= MEMCOMP_PADCTRL_VREF;
253 writel(val, &host->reg->sdmemcmppadctl);
254
255 val = readl(&host->reg->autocalcfg);
256 val &= 0xFFFF0000;
257 val |= AUTO_CAL_PU_OFFSET | AUTO_CAL_PD_OFFSET | AUTO_CAL_ENABLED;
258 writel(val, &host->reg->autocalcfg);
259#endif /* T30 */
260}
261#endif /* MMC */