Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2010,2011 |
| 3 | * NVIDIA Corporation <www.nvidia.com> |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
Simon Glass | 0521f98 | 2014-11-10 17:16:51 -0700 | [diff] [blame] | 9 | #include <dm.h> |
Simon Glass | 346451b | 2015-04-14 21:03:28 -0600 | [diff] [blame] | 10 | #include <errno.h> |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 11 | #include <ns16550.h> |
Jimmy Zhang | c5b34a2 | 2012-04-10 05:17:06 +0000 | [diff] [blame] | 12 | #include <linux/compiler.h> |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 13 | #include <asm/io.h> |
Simon Glass | b4ba2be | 2011-08-30 06:23:13 +0000 | [diff] [blame] | 14 | #include <asm/arch/clock.h> |
Tom Warren | 6d6c0ba | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 15 | #ifdef CONFIG_LCD |
Simon Glass | 1b24a50 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 16 | #include <asm/arch/display.h> |
Tom Warren | 6d6c0ba | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 17 | #endif |
Lucas Stach | c0720af | 2012-09-29 10:02:09 +0000 | [diff] [blame] | 18 | #include <asm/arch/funcmux.h> |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 19 | #include <asm/arch/pinmux.h> |
Simon Glass | 8723626 | 2012-04-02 13:18:54 +0000 | [diff] [blame] | 20 | #include <asm/arch/pmu.h> |
Tom Warren | 6d6c0ba | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 21 | #ifdef CONFIG_PWM_TEGRA |
Simon Glass | e1ae0d1 | 2012-10-17 13:24:49 +0000 | [diff] [blame] | 22 | #include <asm/arch/pwm.h> |
Tom Warren | 6d6c0ba | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 23 | #endif |
Tom Warren | 150c249 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 24 | #include <asm/arch/tegra.h> |
Stephen Warren | 73c3893 | 2015-01-19 16:25:52 -0700 | [diff] [blame] | 25 | #include <asm/arch-tegra/ap.h> |
Tom Warren | 150c249 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 26 | #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 Warren | 6d6c0ba | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 32 | #ifdef CONFIG_TEGRA_CLOCK_SCALING |
| 33 | #include <asm/arch/emc.h> |
| 34 | #endif |
| 35 | #ifdef CONFIG_USB_EHCI_TEGRA |
Lucas Stach | 7ae18f3 | 2013-02-07 07:16:29 +0000 | [diff] [blame] | 36 | #include <asm/arch-tegra/usb.h> |
Mateusz Zalega | 16297cf | 2013-10-04 19:22:26 +0200 | [diff] [blame] | 37 | #include <usb.h> |
Tom Warren | 6d6c0ba | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 38 | #endif |
Tom Warren | c9aa831 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 39 | #ifdef CONFIG_TEGRA_MMC |
Tom Warren | 190be1f | 2013-02-26 12:26:55 -0700 | [diff] [blame] | 40 | #include <asm/arch-tegra/tegra_mmc.h> |
Tom Warren | c9aa831 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 41 | #include <asm/arch-tegra/mmc.h> |
| 42 | #endif |
Thierry Reding | 79c7a90 | 2014-12-09 22:25:09 -0700 | [diff] [blame] | 43 | #include <asm/arch-tegra/xusb-padctl.h> |
Simon Glass | 346451b | 2015-04-14 21:03:28 -0600 | [diff] [blame] | 44 | #include <power/as3722.h> |
Simon Glass | cb445fb | 2012-02-03 15:13:57 +0000 | [diff] [blame] | 45 | #include <i2c.h> |
Tom Warren | 6d6c0ba | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 46 | #include <spi.h> |
Jimmy Zhang | c5b34a2 | 2012-04-10 05:17:06 +0000 | [diff] [blame] | 47 | #include "emc.h" |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 48 | |
| 49 | DECLARE_GLOBAL_DATA_PTR; |
| 50 | |
Simon Glass | 0521f98 | 2014-11-10 17:16:51 -0700 | [diff] [blame] | 51 | #ifdef CONFIG_SPL_BUILD |
| 52 | /* TODO(sjg@chromium.org): Remove once SPL supports device tree */ |
| 53 | U_BOOT_DEVICE(tegra_gpios) = { |
| 54 | "gpio_tegra" |
| 55 | }; |
| 56 | #endif |
| 57 | |
Jeroen Hofstee | 19d7bf3 | 2014-10-08 22:57:46 +0200 | [diff] [blame] | 58 | __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 Stach | 0cd10c7 | 2012-09-25 20:21:14 +0000 | [diff] [blame] | 63 | |
Tom Warren | dcd1251 | 2014-01-24 12:46:11 -0700 | [diff] [blame] | 64 | #if defined(CONFIG_TEGRA_NAND) |
Jeroen Hofstee | 19d7bf3 | 2014-10-08 22:57:46 +0200 | [diff] [blame] | 65 | __weak void pin_mux_nand(void) |
Lucas Stach | c0720af | 2012-09-29 10:02:09 +0000 | [diff] [blame] | 66 | { |
| 67 | funcmux_select(PERIPH_ID_NDFLASH, FUNCMUX_DEFAULT); |
| 68 | } |
Tom Warren | dcd1251 | 2014-01-24 12:46:11 -0700 | [diff] [blame] | 69 | #endif |
Lucas Stach | c0720af | 2012-09-29 10:02:09 +0000 | [diff] [blame] | 70 | |
Tom Warren | f4ef666 | 2011-04-14 12:09:41 +0000 | [diff] [blame] | 71 | /* |
Wei Ni | 5aff021 | 2012-04-02 13:18:58 +0000 | [diff] [blame] | 72 | * Routine: power_det_init |
| 73 | * Description: turn off power detects |
| 74 | */ |
| 75 | static void power_det_init(void) |
| 76 | { |
Allen Martin | 00a2749 | 2012-08-31 08:30:00 +0000 | [diff] [blame] | 77 | #if defined(CONFIG_TEGRA20) |
Tom Warren | 29f3e3f | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 78 | struct pmc_ctlr *const pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE; |
Wei Ni | 5aff021 | 2012-04-02 13:18:58 +0000 | [diff] [blame] | 79 | |
| 80 | /* turn off power detects */ |
| 81 | writel(0, &pmc->pmc_pwr_det_latch); |
| 82 | writel(0, &pmc->pmc_pwr_det); |
| 83 | #endif |
| 84 | } |
| 85 | |
Simon Glass | ec74664 | 2015-04-14 21:03:25 -0600 | [diff] [blame] | 86 | __weak int tegra_board_id(void) |
| 87 | { |
| 88 | return -1; |
| 89 | } |
| 90 | |
Simon Glass | 7d87413 | 2015-04-14 21:03:24 -0600 | [diff] [blame] | 91 | #ifdef CONFIG_DISPLAY_BOARDINFO |
| 92 | int checkboard(void) |
| 93 | { |
Simon Glass | ec74664 | 2015-04-14 21:03:25 -0600 | [diff] [blame] | 94 | 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 Glass | 7d87413 | 2015-04-14 21:03:24 -0600 | [diff] [blame] | 100 | |
| 101 | return 0; |
| 102 | } |
| 103 | #endif /* CONFIG_DISPLAY_BOARDINFO */ |
| 104 | |
Simon Glass | 8277636 | 2015-04-14 21:03:27 -0600 | [diff] [blame] | 105 | __weak int tegra_lcd_pmic_init(int board_it) |
| 106 | { |
| 107 | return 0; |
| 108 | } |
| 109 | |
Simon Glass | c96d709 | 2015-06-05 14:39:42 -0600 | [diff] [blame] | 110 | __weak int nvidia_board_init(void) |
| 111 | { |
| 112 | return 0; |
| 113 | } |
| 114 | |
Wei Ni | 5aff021 | 2012-04-02 13:18:58 +0000 | [diff] [blame] | 115 | /* |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 116 | * Routine: board_init |
| 117 | * Description: Early hardware init. |
| 118 | */ |
| 119 | int board_init(void) |
| 120 | { |
Jimmy Zhang | c5b34a2 | 2012-04-10 05:17:06 +0000 | [diff] [blame] | 121 | __maybe_unused int err; |
Simon Glass | 8277636 | 2015-04-14 21:03:27 -0600 | [diff] [blame] | 122 | __maybe_unused int board_id; |
Jimmy Zhang | c5b34a2 | 2012-04-10 05:17:06 +0000 | [diff] [blame] | 123 | |
Simon Glass | a04eba9 | 2011-11-05 04:46:51 +0000 | [diff] [blame] | 124 | /* Do clocks and UART first so that printf() works */ |
Simon Glass | 4ed59e7 | 2011-09-21 12:40:04 +0000 | [diff] [blame] | 125 | clock_init(); |
| 126 | clock_verify(); |
| 127 | |
Simon Glass | fda6fac | 2014-10-13 23:42:13 -0600 | [diff] [blame] | 128 | #ifdef CONFIG_TEGRA_SPI |
Stephen Warren | e028494 | 2012-06-12 08:33:40 +0000 | [diff] [blame] | 129 | pin_mux_spi(); |
Tom Warren | 9112ef8 | 2011-11-05 09:48:11 +0000 | [diff] [blame] | 130 | #endif |
Allen Martin | b19f574 | 2013-01-29 13:51:28 +0000 | [diff] [blame] | 131 | |
Simon Glass | e1ae0d1 | 2012-10-17 13:24:49 +0000 | [diff] [blame] | 132 | #ifdef CONFIG_PWM_TEGRA |
| 133 | if (pwm_init(gd->fdt_blob)) |
| 134 | debug("%s: Failed to init pwm\n", __func__); |
| 135 | #endif |
Simon Glass | 1b24a50 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 136 | #ifdef CONFIG_LCD |
Marc Dietrich | 716d943 | 2012-11-25 11:26:11 +0000 | [diff] [blame] | 137 | pin_mux_display(); |
Simon Glass | 1b24a50 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 138 | tegra_lcd_check_next_stage(gd->fdt_blob, 0); |
| 139 | #endif |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 140 | /* boot param addr */ |
| 141 | gd->bd->bi_boot_params = (NV_PA_SDRAM_BASE + 0x100); |
Wei Ni | 5aff021 | 2012-04-02 13:18:58 +0000 | [diff] [blame] | 142 | |
| 143 | power_det_init(); |
| 144 | |
Simon Glass | 1f2ba72 | 2012-10-30 07:28:53 +0000 | [diff] [blame] | 145 | #ifdef CONFIG_SYS_I2C_TEGRA |
Simon Glass | 8723626 | 2012-04-02 13:18:54 +0000 | [diff] [blame] | 146 | # ifdef CONFIG_TEGRA_PMU |
| 147 | if (pmu_set_nominal()) |
| 148 | debug("Failed to select nominal voltages\n"); |
Jimmy Zhang | c5b34a2 | 2012-04-10 05:17:06 +0000 | [diff] [blame] | 149 | # 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 Glass | 346451b | 2015-04-14 21:03:28 -0600 | [diff] [blame] | 155 | #ifdef CONFIG_AS3722_POWER |
| 156 | err = as3722_init(NULL); |
| 157 | if (err && err != -ENODEV) |
| 158 | return err; |
| 159 | #endif |
Simon Glass | 1f2ba72 | 2012-10-30 07:28:53 +0000 | [diff] [blame] | 160 | #endif /* CONFIG_SYS_I2C_TEGRA */ |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 161 | |
Simon Glass | f10393e | 2012-02-27 10:52:50 +0000 | [diff] [blame] | 162 | #ifdef CONFIG_USB_EHCI_TEGRA |
| 163 | pin_mux_usb(); |
Simon Glass | f10393e | 2012-02-27 10:52:50 +0000 | [diff] [blame] | 164 | #endif |
Mateusz Zalega | 16297cf | 2013-10-04 19:22:26 +0200 | [diff] [blame] | 165 | |
Simon Glass | 1b24a50 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 166 | #ifdef CONFIG_LCD |
Simon Glass | 8277636 | 2015-04-14 21:03:27 -0600 | [diff] [blame] | 167 | board_id = tegra_board_id(); |
| 168 | err = tegra_lcd_pmic_init(board_id); |
| 169 | if (err) |
| 170 | return err; |
Simon Glass | 1b24a50 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 171 | tegra_lcd_check_next_stage(gd->fdt_blob, 0); |
| 172 | #endif |
Simon Glass | f10393e | 2012-02-27 10:52:50 +0000 | [diff] [blame] | 173 | |
Lucas Stach | c0720af | 2012-09-29 10:02:09 +0000 | [diff] [blame] | 174 | #ifdef CONFIG_TEGRA_NAND |
| 175 | pin_mux_nand(); |
| 176 | #endif |
| 177 | |
Thierry Reding | 79c7a90 | 2014-12-09 22:25:09 -0700 | [diff] [blame] | 178 | tegra_xusb_padctl_init(gd->fdt_blob); |
| 179 | |
Tom Warren | 29f3e3f | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 180 | #ifdef CONFIG_TEGRA_LP0 |
Allen Martin | a49716a | 2012-08-31 08:30:11 +0000 | [diff] [blame] | 181 | /* save Sdram params to PMC 2, 4, and 24 for WB0 */ |
| 182 | warmboot_save_sdram_params(); |
| 183 | |
Simon Glass | 67ac579 | 2012-04-02 13:18:57 +0000 | [diff] [blame] | 184 | /* prepare the WB code to LP0 location */ |
| 185 | warmboot_prepare_code(TEGRA_LP0_ADDR, TEGRA_LP0_SIZE); |
| 186 | #endif |
Simon Glass | c96d709 | 2015-06-05 14:39:42 -0600 | [diff] [blame] | 187 | return nvidia_board_init(); |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 188 | } |
Tom Warren | 21ef6a1 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 189 | |
Simon Glass | 3e00dbd | 2011-09-21 12:40:03 +0000 | [diff] [blame] | 190 | #ifdef CONFIG_BOARD_EARLY_INIT_F |
Thierry Reding | cb7a1cf | 2012-06-04 20:02:27 +0000 | [diff] [blame] | 191 | static void __gpio_early_init(void) |
| 192 | { |
| 193 | } |
| 194 | |
| 195 | void gpio_early_init(void) __attribute__((weak, alias("__gpio_early_init"))); |
| 196 | |
Simon Glass | 3e00dbd | 2011-09-21 12:40:03 +0000 | [diff] [blame] | 197 | int board_early_init_f(void) |
| 198 | { |
Thierry Reding | aa44187 | 2015-07-28 11:35:53 +0200 | [diff] [blame^] | 199 | /* Do any special system timer/TSC setup */ |
| 200 | #if defined(CONFIG_TEGRA_SUPPORT_NON_SECURE) |
| 201 | if (!tegra_cpu_is_non_secure()) |
| 202 | #endif |
| 203 | arch_timer_init(); |
| 204 | |
Tom Warren | 6d6c0ba | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 205 | pinmux_init(); |
Simon Glass | f46a945 | 2011-11-28 15:04:40 +0000 | [diff] [blame] | 206 | board_init_uart_f(); |
Simon Glass | 3e00dbd | 2011-09-21 12:40:03 +0000 | [diff] [blame] | 207 | |
| 208 | /* Initialize periph GPIOs */ |
Thierry Reding | cb7a1cf | 2012-06-04 20:02:27 +0000 | [diff] [blame] | 209 | gpio_early_init(); |
Simon Glass | a04eba9 | 2011-11-05 04:46:51 +0000 | [diff] [blame] | 210 | gpio_early_init_uart(); |
Simon Glass | 1b24a50 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 211 | #ifdef CONFIG_LCD |
| 212 | tegra_lcd_early_init(gd->fdt_blob); |
| 213 | #endif |
Lucas Stach | 0cd10c7 | 2012-09-25 20:21:14 +0000 | [diff] [blame] | 214 | |
Simon Glass | 3e00dbd | 2011-09-21 12:40:03 +0000 | [diff] [blame] | 215 | return 0; |
| 216 | } |
| 217 | #endif /* EARLY_INIT */ |
Simon Glass | 1b24a50 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 218 | |
| 219 | int board_late_init(void) |
| 220 | { |
| 221 | #ifdef CONFIG_LCD |
| 222 | /* Make sure we finish initing the LCD */ |
| 223 | tegra_lcd_check_next_stage(gd->fdt_blob, 1); |
| 224 | #endif |
Stephen Warren | 73c3893 | 2015-01-19 16:25:52 -0700 | [diff] [blame] | 225 | #if defined(CONFIG_TEGRA_SUPPORT_NON_SECURE) |
| 226 | if (tegra_cpu_is_non_secure()) { |
| 227 | printf("CPU is in NS mode\n"); |
| 228 | setenv("cpu_ns_mode", "1"); |
| 229 | } else { |
| 230 | setenv("cpu_ns_mode", ""); |
| 231 | } |
| 232 | #endif |
Simon Glass | 1b24a50 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 233 | return 0; |
| 234 | } |
Tom Warren | c9aa831 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 235 | |
| 236 | #if defined(CONFIG_TEGRA_MMC) |
Jeroen Hofstee | 19d7bf3 | 2014-10-08 22:57:46 +0200 | [diff] [blame] | 237 | __weak void pin_mux_mmc(void) |
Tom Warren | c9aa831 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 238 | { |
| 239 | } |
| 240 | |
Tom Warren | c9aa831 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 241 | /* this is a weak define that we are overriding */ |
| 242 | int board_mmc_init(bd_t *bd) |
| 243 | { |
| 244 | debug("%s called\n", __func__); |
| 245 | |
| 246 | /* Enable muxes, etc. for SDMMC controllers */ |
| 247 | pin_mux_mmc(); |
| 248 | |
| 249 | debug("%s: init MMC\n", __func__); |
| 250 | tegra_mmc_init(); |
| 251 | |
| 252 | return 0; |
| 253 | } |
Tom Warren | 190be1f | 2013-02-26 12:26:55 -0700 | [diff] [blame] | 254 | |
| 255 | void pad_init_mmc(struct mmc_host *host) |
| 256 | { |
| 257 | #if defined(CONFIG_TEGRA30) |
| 258 | enum periph_id id = host->mmc_id; |
| 259 | u32 val; |
| 260 | |
| 261 | debug("%s: sdmmc address = %08x, id = %d\n", __func__, |
| 262 | (unsigned int)host->reg, id); |
| 263 | |
| 264 | /* Set the pad drive strength for SDMMC1 or 3 only */ |
| 265 | if (id != PERIPH_ID_SDMMC1 && id != PERIPH_ID_SDMMC3) { |
| 266 | debug("%s: settings are only valid for SDMMC1/SDMMC3!\n", |
| 267 | __func__); |
| 268 | return; |
| 269 | } |
| 270 | |
| 271 | val = readl(&host->reg->sdmemcmppadctl); |
| 272 | val &= 0xFFFFFFF0; |
| 273 | val |= MEMCOMP_PADCTRL_VREF; |
| 274 | writel(val, &host->reg->sdmemcmppadctl); |
| 275 | |
| 276 | val = readl(&host->reg->autocalcfg); |
| 277 | val &= 0xFFFF0000; |
| 278 | val |= AUTO_CAL_PU_OFFSET | AUTO_CAL_PD_OFFSET | AUTO_CAL_ENABLED; |
| 279 | writel(val, &host->reg->autocalcfg); |
| 280 | #endif /* T30 */ |
| 281 | } |
| 282 | #endif /* MMC */ |
Thierry Reding | 00f782a | 2015-07-27 11:45:24 -0600 | [diff] [blame] | 283 | |
| 284 | #ifdef CONFIG_ARM64 |
| 285 | /* |
| 286 | * Most hardware on 64-bit Tegra is still restricted to DMA to the lower |
| 287 | * 32-bits of the physical address space. Cap the maximum usable RAM area |
| 288 | * at 4 GiB to avoid DMA buffers from being allocated beyond the 32-bit |
| 289 | * boundary that most devices can address. |
| 290 | */ |
| 291 | ulong board_get_usable_ram_top(ulong total_size) |
| 292 | { |
| 293 | if (gd->ram_top > 0x100000000) |
| 294 | return 0x100000000; |
| 295 | |
| 296 | return gd->ram_top; |
| 297 | } |
| 298 | #endif |