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> |
| 9 | #include <ns16550.h> |
Jimmy Zhang | c5b34a2 | 2012-04-10 05:17:06 +0000 | [diff] [blame] | 10 | #include <linux/compiler.h> |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 11 | #include <asm/io.h> |
Simon Glass | b4ba2be | 2011-08-30 06:23:13 +0000 | [diff] [blame] | 12 | #include <asm/arch/clock.h> |
Tom Warren | 6d6c0ba | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 13 | #ifdef CONFIG_LCD |
Simon Glass | 1b24a50 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 14 | #include <asm/arch/display.h> |
Tom Warren | 6d6c0ba | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 15 | #endif |
Lucas Stach | c0720af | 2012-09-29 10:02:09 +0000 | [diff] [blame] | 16 | #include <asm/arch/funcmux.h> |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 17 | #include <asm/arch/pinmux.h> |
Simon Glass | 8723626 | 2012-04-02 13:18:54 +0000 | [diff] [blame] | 18 | #include <asm/arch/pmu.h> |
Tom Warren | 6d6c0ba | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 19 | #ifdef CONFIG_PWM_TEGRA |
Simon Glass | e1ae0d1 | 2012-10-17 13:24:49 +0000 | [diff] [blame] | 20 | #include <asm/arch/pwm.h> |
Tom Warren | 6d6c0ba | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 21 | #endif |
Tom Warren | 150c249 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 22 | #include <asm/arch/tegra.h> |
Tom Warren | 150c249 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 23 | #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 Warren | 6d6c0ba | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 29 | #ifdef CONFIG_TEGRA_CLOCK_SCALING |
| 30 | #include <asm/arch/emc.h> |
| 31 | #endif |
| 32 | #ifdef CONFIG_USB_EHCI_TEGRA |
Lucas Stach | 7ae18f3 | 2013-02-07 07:16:29 +0000 | [diff] [blame] | 33 | #include <asm/arch-tegra/usb.h> |
Jim Lin | 7e44d93 | 2013-06-21 19:05:47 +0800 | [diff] [blame] | 34 | #include <asm/arch/usb.h> |
Tom Warren | 6d6c0ba | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 35 | #endif |
Tom Warren | c9aa831 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 36 | #ifdef CONFIG_TEGRA_MMC |
Tom Warren | 190be1f | 2013-02-26 12:26:55 -0700 | [diff] [blame] | 37 | #include <asm/arch-tegra/tegra_mmc.h> |
Tom Warren | c9aa831 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 38 | #include <asm/arch-tegra/mmc.h> |
| 39 | #endif |
Simon Glass | cb445fb | 2012-02-03 15:13:57 +0000 | [diff] [blame] | 40 | #include <i2c.h> |
Tom Warren | 6d6c0ba | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 41 | #include <spi.h> |
Jimmy Zhang | c5b34a2 | 2012-04-10 05:17:06 +0000 | [diff] [blame] | 42 | #include "emc.h" |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 43 | |
| 44 | DECLARE_GLOBAL_DATA_PTR; |
| 45 | |
Tom Warren | 29f3e3f | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 46 | const struct tegra_sysinfo sysinfo = { |
| 47 | CONFIG_TEGRA_BOARD_STRING |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 48 | }; |
| 49 | |
Allen Martin | 45ec5b2 | 2012-08-31 08:30:08 +0000 | [diff] [blame] | 50 | #ifndef CONFIG_SPL_BUILD |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 51 | /* |
| 52 | * Routine: timer_init |
| 53 | * Description: init the timestamp and lastinc value |
| 54 | */ |
| 55 | int timer_init(void) |
| 56 | { |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 57 | return 0; |
| 58 | } |
Allen Martin | 45ec5b2 | 2012-08-31 08:30:08 +0000 | [diff] [blame] | 59 | #endif |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 60 | |
Simon Glass | f10393e | 2012-02-27 10:52:50 +0000 | [diff] [blame] | 61 | void __pin_mux_usb(void) |
| 62 | { |
| 63 | } |
| 64 | |
| 65 | void pin_mux_usb(void) __attribute__((weak, alias("__pin_mux_usb"))); |
| 66 | |
Stephen Warren | e028494 | 2012-06-12 08:33:40 +0000 | [diff] [blame] | 67 | void __pin_mux_spi(void) |
| 68 | { |
| 69 | } |
| 70 | |
| 71 | void pin_mux_spi(void) __attribute__((weak, alias("__pin_mux_spi"))); |
| 72 | |
Lucas Stach | 0cd10c7 | 2012-09-25 20:21:14 +0000 | [diff] [blame] | 73 | void __gpio_early_init_uart(void) |
| 74 | { |
| 75 | } |
| 76 | |
| 77 | void gpio_early_init_uart(void) |
| 78 | __attribute__((weak, alias("__gpio_early_init_uart"))); |
| 79 | |
Lucas Stach | c0720af | 2012-09-29 10:02:09 +0000 | [diff] [blame] | 80 | void __pin_mux_nand(void) |
| 81 | { |
| 82 | funcmux_select(PERIPH_ID_NDFLASH, FUNCMUX_DEFAULT); |
| 83 | } |
| 84 | |
| 85 | void pin_mux_nand(void) __attribute__((weak, alias("__pin_mux_nand"))); |
| 86 | |
Marc Dietrich | 716d943 | 2012-11-25 11:26:11 +0000 | [diff] [blame] | 87 | void __pin_mux_display(void) |
| 88 | { |
| 89 | } |
| 90 | |
| 91 | void pin_mux_display(void) __attribute__((weak, alias("__pin_mux_display"))); |
| 92 | |
Tom Warren | f4ef666 | 2011-04-14 12:09:41 +0000 | [diff] [blame] | 93 | /* |
Wei Ni | 5aff021 | 2012-04-02 13:18:58 +0000 | [diff] [blame] | 94 | * Routine: power_det_init |
| 95 | * Description: turn off power detects |
| 96 | */ |
| 97 | static void power_det_init(void) |
| 98 | { |
Allen Martin | 00a2749 | 2012-08-31 08:30:00 +0000 | [diff] [blame] | 99 | #if defined(CONFIG_TEGRA20) |
Tom Warren | 29f3e3f | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 100 | struct pmc_ctlr *const pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE; |
Wei Ni | 5aff021 | 2012-04-02 13:18:58 +0000 | [diff] [blame] | 101 | |
| 102 | /* turn off power detects */ |
| 103 | writel(0, &pmc->pmc_pwr_det_latch); |
| 104 | writel(0, &pmc->pmc_pwr_det); |
| 105 | #endif |
| 106 | } |
| 107 | |
| 108 | /* |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 109 | * Routine: board_init |
| 110 | * Description: Early hardware init. |
| 111 | */ |
| 112 | int board_init(void) |
| 113 | { |
Jimmy Zhang | c5b34a2 | 2012-04-10 05:17:06 +0000 | [diff] [blame] | 114 | __maybe_unused int err; |
| 115 | |
Simon Glass | a04eba9 | 2011-11-05 04:46:51 +0000 | [diff] [blame] | 116 | /* Do clocks and UART first so that printf() works */ |
Simon Glass | 4ed59e7 | 2011-09-21 12:40:04 +0000 | [diff] [blame] | 117 | clock_init(); |
| 118 | clock_verify(); |
| 119 | |
Allen Martin | 78f47b7 | 2013-03-16 18:58:07 +0000 | [diff] [blame] | 120 | #ifdef CONFIG_FDT_SPI |
Stephen Warren | e028494 | 2012-06-12 08:33:40 +0000 | [diff] [blame] | 121 | pin_mux_spi(); |
Tom Warren | 9112ef8 | 2011-11-05 09:48:11 +0000 | [diff] [blame] | 122 | spi_init(); |
| 123 | #endif |
Allen Martin | b19f574 | 2013-01-29 13:51:28 +0000 | [diff] [blame] | 124 | |
Simon Glass | e1ae0d1 | 2012-10-17 13:24:49 +0000 | [diff] [blame] | 125 | #ifdef CONFIG_PWM_TEGRA |
| 126 | if (pwm_init(gd->fdt_blob)) |
| 127 | debug("%s: Failed to init pwm\n", __func__); |
| 128 | #endif |
Simon Glass | 1b24a50 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 129 | #ifdef CONFIG_LCD |
Marc Dietrich | 716d943 | 2012-11-25 11:26:11 +0000 | [diff] [blame] | 130 | pin_mux_display(); |
Simon Glass | 1b24a50 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 131 | tegra_lcd_check_next_stage(gd->fdt_blob, 0); |
| 132 | #endif |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 133 | /* boot param addr */ |
| 134 | gd->bd->bi_boot_params = (NV_PA_SDRAM_BASE + 0x100); |
Wei Ni | 5aff021 | 2012-04-02 13:18:58 +0000 | [diff] [blame] | 135 | |
| 136 | power_det_init(); |
| 137 | |
Simon Glass | 1f2ba72 | 2012-10-30 07:28:53 +0000 | [diff] [blame] | 138 | #ifdef CONFIG_SYS_I2C_TEGRA |
Simon Glass | cb445fb | 2012-02-03 15:13:57 +0000 | [diff] [blame] | 139 | #ifndef CONFIG_SYS_I2C_INIT_BOARD |
| 140 | #error "You must define CONFIG_SYS_I2C_INIT_BOARD to use i2c on Nvidia boards" |
| 141 | #endif |
| 142 | i2c_init_board(); |
Simon Glass | 8723626 | 2012-04-02 13:18:54 +0000 | [diff] [blame] | 143 | # ifdef CONFIG_TEGRA_PMU |
| 144 | if (pmu_set_nominal()) |
| 145 | debug("Failed to select nominal voltages\n"); |
Jimmy Zhang | c5b34a2 | 2012-04-10 05:17:06 +0000 | [diff] [blame] | 146 | # ifdef CONFIG_TEGRA_CLOCK_SCALING |
| 147 | err = board_emc_init(); |
| 148 | if (err) |
| 149 | debug("Memory controller init failed: %d\n", err); |
| 150 | # endif |
| 151 | # endif /* CONFIG_TEGRA_PMU */ |
Simon Glass | 1f2ba72 | 2012-10-30 07:28:53 +0000 | [diff] [blame] | 152 | #endif /* CONFIG_SYS_I2C_TEGRA */ |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 153 | |
Simon Glass | f10393e | 2012-02-27 10:52:50 +0000 | [diff] [blame] | 154 | #ifdef CONFIG_USB_EHCI_TEGRA |
| 155 | pin_mux_usb(); |
| 156 | board_usb_init(gd->fdt_blob); |
| 157 | #endif |
Simon Glass | 1b24a50 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 158 | #ifdef CONFIG_LCD |
| 159 | tegra_lcd_check_next_stage(gd->fdt_blob, 0); |
| 160 | #endif |
Simon Glass | f10393e | 2012-02-27 10:52:50 +0000 | [diff] [blame] | 161 | |
Lucas Stach | c0720af | 2012-09-29 10:02:09 +0000 | [diff] [blame] | 162 | #ifdef CONFIG_TEGRA_NAND |
| 163 | pin_mux_nand(); |
| 164 | #endif |
| 165 | |
Tom Warren | 29f3e3f | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 166 | #ifdef CONFIG_TEGRA_LP0 |
Allen Martin | a49716a | 2012-08-31 08:30:11 +0000 | [diff] [blame] | 167 | /* save Sdram params to PMC 2, 4, and 24 for WB0 */ |
| 168 | warmboot_save_sdram_params(); |
| 169 | |
Simon Glass | 67ac579 | 2012-04-02 13:18:57 +0000 | [diff] [blame] | 170 | /* prepare the WB code to LP0 location */ |
| 171 | warmboot_prepare_code(TEGRA_LP0_ADDR, TEGRA_LP0_SIZE); |
| 172 | #endif |
| 173 | |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 174 | return 0; |
| 175 | } |
Tom Warren | 21ef6a1 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 176 | |
Simon Glass | 3e00dbd | 2011-09-21 12:40:03 +0000 | [diff] [blame] | 177 | #ifdef CONFIG_BOARD_EARLY_INIT_F |
Thierry Reding | cb7a1cf | 2012-06-04 20:02:27 +0000 | [diff] [blame] | 178 | static void __gpio_early_init(void) |
| 179 | { |
| 180 | } |
| 181 | |
| 182 | void gpio_early_init(void) __attribute__((weak, alias("__gpio_early_init"))); |
| 183 | |
Simon Glass | 3e00dbd | 2011-09-21 12:40:03 +0000 | [diff] [blame] | 184 | int board_early_init_f(void) |
| 185 | { |
Tom Warren | 9482919 | 2013-01-28 13:32:12 +0000 | [diff] [blame] | 186 | #if !defined(CONFIG_TEGRA20) |
Tom Warren | 6d6c0ba | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 187 | pinmux_init(); |
| 188 | #endif |
Simon Glass | f46a945 | 2011-11-28 15:04:40 +0000 | [diff] [blame] | 189 | board_init_uart_f(); |
Simon Glass | 3e00dbd | 2011-09-21 12:40:03 +0000 | [diff] [blame] | 190 | |
| 191 | /* Initialize periph GPIOs */ |
Thierry Reding | cb7a1cf | 2012-06-04 20:02:27 +0000 | [diff] [blame] | 192 | gpio_early_init(); |
Simon Glass | a04eba9 | 2011-11-05 04:46:51 +0000 | [diff] [blame] | 193 | gpio_early_init_uart(); |
Simon Glass | 1b24a50 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 194 | #ifdef CONFIG_LCD |
| 195 | tegra_lcd_early_init(gd->fdt_blob); |
| 196 | #endif |
Lucas Stach | 0cd10c7 | 2012-09-25 20:21:14 +0000 | [diff] [blame] | 197 | |
Simon Glass | 3e00dbd | 2011-09-21 12:40:03 +0000 | [diff] [blame] | 198 | return 0; |
| 199 | } |
| 200 | #endif /* EARLY_INIT */ |
Simon Glass | 1b24a50 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 201 | |
| 202 | int board_late_init(void) |
| 203 | { |
| 204 | #ifdef CONFIG_LCD |
| 205 | /* Make sure we finish initing the LCD */ |
| 206 | tegra_lcd_check_next_stage(gd->fdt_blob, 1); |
| 207 | #endif |
| 208 | return 0; |
| 209 | } |
Tom Warren | c9aa831 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 210 | |
| 211 | #if defined(CONFIG_TEGRA_MMC) |
| 212 | void __pin_mux_mmc(void) |
| 213 | { |
| 214 | } |
| 215 | |
| 216 | void pin_mux_mmc(void) __attribute__((weak, alias("__pin_mux_mmc"))); |
| 217 | |
| 218 | /* this is a weak define that we are overriding */ |
| 219 | int board_mmc_init(bd_t *bd) |
| 220 | { |
| 221 | debug("%s called\n", __func__); |
| 222 | |
| 223 | /* Enable muxes, etc. for SDMMC controllers */ |
| 224 | pin_mux_mmc(); |
| 225 | |
| 226 | debug("%s: init MMC\n", __func__); |
| 227 | tegra_mmc_init(); |
| 228 | |
| 229 | return 0; |
| 230 | } |
Tom Warren | 190be1f | 2013-02-26 12:26:55 -0700 | [diff] [blame] | 231 | |
| 232 | void pad_init_mmc(struct mmc_host *host) |
| 233 | { |
| 234 | #if defined(CONFIG_TEGRA30) |
| 235 | enum periph_id id = host->mmc_id; |
| 236 | u32 val; |
| 237 | |
| 238 | debug("%s: sdmmc address = %08x, id = %d\n", __func__, |
| 239 | (unsigned int)host->reg, id); |
| 240 | |
| 241 | /* Set the pad drive strength for SDMMC1 or 3 only */ |
| 242 | if (id != PERIPH_ID_SDMMC1 && id != PERIPH_ID_SDMMC3) { |
| 243 | debug("%s: settings are only valid for SDMMC1/SDMMC3!\n", |
| 244 | __func__); |
| 245 | return; |
| 246 | } |
| 247 | |
| 248 | val = readl(&host->reg->sdmemcmppadctl); |
| 249 | val &= 0xFFFFFFF0; |
| 250 | val |= MEMCOMP_PADCTRL_VREF; |
| 251 | writel(val, &host->reg->sdmemcmppadctl); |
| 252 | |
| 253 | val = readl(&host->reg->autocalcfg); |
| 254 | val &= 0xFFFF0000; |
| 255 | val |= AUTO_CAL_PU_OFFSET | AUTO_CAL_PD_OFFSET | AUTO_CAL_ENABLED; |
| 256 | writel(val, &host->reg->autocalcfg); |
| 257 | #endif /* T30 */ |
| 258 | } |
| 259 | #endif /* MMC */ |