blob: d3d7bbd1959884bbb031a4b2304bcadbdedb102f [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>
9#include <ns16550.h>
Jimmy Zhanga308d462012-04-10 05:17:06 +000010#include <linux/compiler.h>
Tom Warren41b68382011-01-27 10:58:05 +000011#include <asm/io.h>
Simon Glass16134fd2011-08-30 06:23:13 +000012#include <asm/arch/clock.h>
Tom Warrend32b2a42012-12-11 13:34:17 +000013#ifdef CONFIG_LCD
Simon Glass4f476f32012-10-17 13:24:52 +000014#include <asm/arch/display.h>
Tom Warrend32b2a42012-12-11 13:34:17 +000015#endif
Lucas Stach04585842012-09-29 10:02:09 +000016#include <asm/arch/funcmux.h>
Tom Warren41b68382011-01-27 10:58:05 +000017#include <asm/arch/pinmux.h>
Simon Glasse772be82012-04-02 13:18:54 +000018#include <asm/arch/pmu.h>
Tom Warrend32b2a42012-12-11 13:34:17 +000019#ifdef CONFIG_PWM_TEGRA
Simon Glass1564f342012-10-17 13:24:49 +000020#include <asm/arch/pwm.h>
Tom Warrend32b2a42012-12-11 13:34:17 +000021#endif
Tom Warrenab371962012-09-19 15:50:56 -070022#include <asm/arch/tegra.h>
Tom Warrenab371962012-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 Warrend32b2a42012-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 Stach26c32162013-02-07 07:16:29 +000033#include <asm/arch-tegra/usb.h>
Jim Lin2fefb8b2013-06-21 19:05:47 +080034#include <asm/arch/usb.h>
Mateusz Zalegad862f892013-10-04 19:22:26 +020035#include <usb.h>
Tom Warrend32b2a42012-12-11 13:34:17 +000036#endif
Tom Warren9745cf82013-02-21 12:31:30 +000037#ifdef CONFIG_TEGRA_MMC
Tom Warrenf5d874d2013-02-26 12:26:55 -070038#include <asm/arch-tegra/tegra_mmc.h>
Tom Warren9745cf82013-02-21 12:31:30 +000039#include <asm/arch-tegra/mmc.h>
40#endif
Simon Glass87cc3d12012-02-03 15:13:57 +000041#include <i2c.h>
Tom Warrend32b2a42012-12-11 13:34:17 +000042#include <spi.h>
Jimmy Zhanga308d462012-04-10 05:17:06 +000043#include "emc.h"
Tom Warren41b68382011-01-27 10:58:05 +000044
45DECLARE_GLOBAL_DATA_PTR;
46
Tom Warren22562a42012-09-04 17:00:24 -070047const struct tegra_sysinfo sysinfo = {
48 CONFIG_TEGRA_BOARD_STRING
Tom Warren41b68382011-01-27 10:58:05 +000049};
50
Stephen Warrenf70dbc32014-03-21 12:28:52 -060051void __pinmux_init(void)
52{
53}
54
55void pinmux_init(void) __attribute__((weak, alias("__pinmux_init")));
56
Simon Glass5d73a8d2012-02-27 10:52:50 +000057void __pin_mux_usb(void)
58{
59}
60
61void pin_mux_usb(void) __attribute__((weak, alias("__pin_mux_usb")));
62
Stephen Warrend2f67fe2012-06-12 08:33:40 +000063void __pin_mux_spi(void)
64{
65}
66
67void pin_mux_spi(void) __attribute__((weak, alias("__pin_mux_spi")));
68
Lucas Stach18561f72012-09-25 20:21:14 +000069void __gpio_early_init_uart(void)
70{
71}
72
73void gpio_early_init_uart(void)
74__attribute__((weak, alias("__gpio_early_init_uart")));
75
Tom Warren6b33c832014-01-24 12:46:11 -070076#if defined(CONFIG_TEGRA_NAND)
Lucas Stach04585842012-09-29 10:02:09 +000077void __pin_mux_nand(void)
78{
79 funcmux_select(PERIPH_ID_NDFLASH, FUNCMUX_DEFAULT);
80}
81
82void pin_mux_nand(void) __attribute__((weak, alias("__pin_mux_nand")));
Tom Warren6b33c832014-01-24 12:46:11 -070083#endif
Lucas Stach04585842012-09-29 10:02:09 +000084
Marc Dietrich9bbe64b2012-11-25 11:26:11 +000085void __pin_mux_display(void)
86{
87}
88
89void pin_mux_display(void) __attribute__((weak, alias("__pin_mux_display")));
90
Tom Warren41b68382011-01-27 10:58:05 +000091/*
Wei Ni39d45ed2012-04-02 13:18:58 +000092 * Routine: power_det_init
93 * Description: turn off power detects
94 */
95static void power_det_init(void)
96{
Allen Martin55d98a12012-08-31 08:30:00 +000097#if defined(CONFIG_TEGRA20)
Tom Warren22562a42012-09-04 17:00:24 -070098 struct pmc_ctlr *const pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
Wei Ni39d45ed2012-04-02 13:18:58 +000099
100 /* turn off power detects */
101 writel(0, &pmc->pmc_pwr_det_latch);
102 writel(0, &pmc->pmc_pwr_det);
103#endif
104}
105
106/*
Tom Warren41b68382011-01-27 10:58:05 +0000107 * Routine: board_init
108 * Description: Early hardware init.
109 */
110int board_init(void)
111{
Jimmy Zhanga308d462012-04-10 05:17:06 +0000112 __maybe_unused int err;
113
Simon Glass704e60d2011-11-05 04:46:51 +0000114 /* Do clocks and UART first so that printf() works */
Simon Glassc2ea5e42011-09-21 12:40:04 +0000115 clock_init();
116 clock_verify();
117
Allen Martinb98691c2013-03-16 18:58:07 +0000118#ifdef CONFIG_FDT_SPI
Stephen Warrend2f67fe2012-06-12 08:33:40 +0000119 pin_mux_spi();
Tom Warrenee554f82011-11-05 09:48:11 +0000120 spi_init();
121#endif
Allen Martinba4fb9b2013-01-29 13:51:28 +0000122
Simon Glass1564f342012-10-17 13:24:49 +0000123#ifdef CONFIG_PWM_TEGRA
124 if (pwm_init(gd->fdt_blob))
125 debug("%s: Failed to init pwm\n", __func__);
126#endif
Simon Glass4f476f32012-10-17 13:24:52 +0000127#ifdef CONFIG_LCD
Marc Dietrich9bbe64b2012-11-25 11:26:11 +0000128 pin_mux_display();
Simon Glass4f476f32012-10-17 13:24:52 +0000129 tegra_lcd_check_next_stage(gd->fdt_blob, 0);
130#endif
Tom Warren41b68382011-01-27 10:58:05 +0000131 /* boot param addr */
132 gd->bd->bi_boot_params = (NV_PA_SDRAM_BASE + 0x100);
Wei Ni39d45ed2012-04-02 13:18:58 +0000133
134 power_det_init();
135
Simon Glass026fefb2012-10-30 07:28:53 +0000136#ifdef CONFIG_SYS_I2C_TEGRA
Simon Glass87cc3d12012-02-03 15:13:57 +0000137#ifndef CONFIG_SYS_I2C_INIT_BOARD
138#error "You must define CONFIG_SYS_I2C_INIT_BOARD to use i2c on Nvidia boards"
139#endif
140 i2c_init_board();
Simon Glasse772be82012-04-02 13:18:54 +0000141# ifdef CONFIG_TEGRA_PMU
142 if (pmu_set_nominal())
143 debug("Failed to select nominal voltages\n");
Jimmy Zhanga308d462012-04-10 05:17:06 +0000144# ifdef CONFIG_TEGRA_CLOCK_SCALING
145 err = board_emc_init();
146 if (err)
147 debug("Memory controller init failed: %d\n", err);
148# endif
149# endif /* CONFIG_TEGRA_PMU */
Simon Glass026fefb2012-10-30 07:28:53 +0000150#endif /* CONFIG_SYS_I2C_TEGRA */
Tom Warren41b68382011-01-27 10:58:05 +0000151
Simon Glass5d73a8d2012-02-27 10:52:50 +0000152#ifdef CONFIG_USB_EHCI_TEGRA
153 pin_mux_usb();
Mateusz Zalegad862f892013-10-04 19:22:26 +0200154 usb_process_devicetree(gd->fdt_blob);
Simon Glass5d73a8d2012-02-27 10:52:50 +0000155#endif
Mateusz Zalegad862f892013-10-04 19:22:26 +0200156
Simon Glass4f476f32012-10-17 13:24:52 +0000157#ifdef CONFIG_LCD
158 tegra_lcd_check_next_stage(gd->fdt_blob, 0);
159#endif
Simon Glass5d73a8d2012-02-27 10:52:50 +0000160
Lucas Stach04585842012-09-29 10:02:09 +0000161#ifdef CONFIG_TEGRA_NAND
162 pin_mux_nand();
163#endif
164
Tom Warren22562a42012-09-04 17:00:24 -0700165#ifdef CONFIG_TEGRA_LP0
Allen Martin0ca1a452012-08-31 08:30:11 +0000166 /* save Sdram params to PMC 2, 4, and 24 for WB0 */
167 warmboot_save_sdram_params();
168
Simon Glass8cc8f612012-04-02 13:18:57 +0000169 /* prepare the WB code to LP0 location */
170 warmboot_prepare_code(TEGRA_LP0_ADDR, TEGRA_LP0_SIZE);
171#endif
172
Tom Warren41b68382011-01-27 10:58:05 +0000173 return 0;
174}
Simon Glassdfcee792011-09-21 12:40:03 +0000175
176#ifdef CONFIG_BOARD_EARLY_INIT_F
Thierry Reding2fa4db02012-06-04 20:02:27 +0000177static void __gpio_early_init(void)
178{
179}
180
181void gpio_early_init(void) __attribute__((weak, alias("__gpio_early_init")));
182
Simon Glassdfcee792011-09-21 12:40:03 +0000183int board_early_init_f(void)
184{
Tom Warrend32b2a42012-12-11 13:34:17 +0000185 pinmux_init();
Simon Glassa8ccc8b2011-11-28 15:04:40 +0000186 board_init_uart_f();
Simon Glassdfcee792011-09-21 12:40:03 +0000187
188 /* Initialize periph GPIOs */
Thierry Reding2fa4db02012-06-04 20:02:27 +0000189 gpio_early_init();
Simon Glass704e60d2011-11-05 04:46:51 +0000190 gpio_early_init_uart();
Simon Glass4f476f32012-10-17 13:24:52 +0000191#ifdef CONFIG_LCD
192 tegra_lcd_early_init(gd->fdt_blob);
193#endif
Lucas Stach18561f72012-09-25 20:21:14 +0000194
Simon Glassdfcee792011-09-21 12:40:03 +0000195 return 0;
196}
197#endif /* EARLY_INIT */
Simon Glass4f476f32012-10-17 13:24:52 +0000198
199int board_late_init(void)
200{
201#ifdef CONFIG_LCD
202 /* Make sure we finish initing the LCD */
203 tegra_lcd_check_next_stage(gd->fdt_blob, 1);
204#endif
205 return 0;
206}
Tom Warren9745cf82013-02-21 12:31:30 +0000207
208#if defined(CONFIG_TEGRA_MMC)
209void __pin_mux_mmc(void)
210{
211}
212
213void pin_mux_mmc(void) __attribute__((weak, alias("__pin_mux_mmc")));
214
215/* this is a weak define that we are overriding */
216int board_mmc_init(bd_t *bd)
217{
218 debug("%s called\n", __func__);
219
220 /* Enable muxes, etc. for SDMMC controllers */
221 pin_mux_mmc();
222
223 debug("%s: init MMC\n", __func__);
224 tegra_mmc_init();
225
226 return 0;
227}
Tom Warrenf5d874d2013-02-26 12:26:55 -0700228
229void pad_init_mmc(struct mmc_host *host)
230{
231#if defined(CONFIG_TEGRA30)
232 enum periph_id id = host->mmc_id;
233 u32 val;
234
235 debug("%s: sdmmc address = %08x, id = %d\n", __func__,
236 (unsigned int)host->reg, id);
237
238 /* Set the pad drive strength for SDMMC1 or 3 only */
239 if (id != PERIPH_ID_SDMMC1 && id != PERIPH_ID_SDMMC3) {
240 debug("%s: settings are only valid for SDMMC1/SDMMC3!\n",
241 __func__);
242 return;
243 }
244
245 val = readl(&host->reg->sdmemcmppadctl);
246 val &= 0xFFFFFFF0;
247 val |= MEMCOMP_PADCTRL_VREF;
248 writel(val, &host->reg->sdmemcmppadctl);
249
250 val = readl(&host->reg->autocalcfg);
251 val &= 0xFFFF0000;
252 val |= AUTO_CAL_PU_OFFSET | AUTO_CAL_PD_OFFSET | AUTO_CAL_ENABLED;
253 writel(val, &host->reg->autocalcfg);
254#endif /* T30 */
255}
256#endif /* MMC */