Tom Warren | 41b6838 | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2010,2011 |
| 3 | * NVIDIA Corporation <www.nvidia.com> |
| 4 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Tom Warren | 41b6838 | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
Simon Glass | 74472ac | 2014-11-10 17:16:51 -0700 | [diff] [blame] | 9 | #include <dm.h> |
Simon Glass | 0655c91 | 2015-04-14 21:03:28 -0600 | [diff] [blame] | 10 | #include <errno.h> |
Tom Warren | 41b6838 | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 11 | #include <ns16550.h> |
Jimmy Zhang | a308d46 | 2012-04-10 05:17:06 +0000 | [diff] [blame] | 12 | #include <linux/compiler.h> |
Tom Warren | 41b6838 | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 13 | #include <asm/io.h> |
Simon Glass | 16134fd | 2011-08-30 06:23:13 +0000 | [diff] [blame] | 14 | #include <asm/arch/clock.h> |
Tom Warren | d32b2a4 | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 15 | #ifdef CONFIG_LCD |
Simon Glass | 4f476f3 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 16 | #include <asm/arch/display.h> |
Tom Warren | d32b2a4 | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 17 | #endif |
Lucas Stach | 0458584 | 2012-09-29 10:02:09 +0000 | [diff] [blame] | 18 | #include <asm/arch/funcmux.h> |
Tom Warren | 41b6838 | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 19 | #include <asm/arch/pinmux.h> |
Simon Glass | e772be8 | 2012-04-02 13:18:54 +0000 | [diff] [blame] | 20 | #include <asm/arch/pmu.h> |
Tom Warren | d32b2a4 | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 21 | #ifdef CONFIG_PWM_TEGRA |
Simon Glass | 1564f34 | 2012-10-17 13:24:49 +0000 | [diff] [blame] | 22 | #include <asm/arch/pwm.h> |
Tom Warren | d32b2a4 | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 23 | #endif |
Tom Warren | ab37196 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 24 | #include <asm/arch/tegra.h> |
Stephen Warren | 8d1fb31 | 2015-01-19 16:25:52 -0700 | [diff] [blame] | 25 | #include <asm/arch-tegra/ap.h> |
Tom Warren | ab37196 | 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> |
Alexandre Courbot | 7f936d4 | 2015-07-09 16:33:00 +0900 | [diff] [blame] | 32 | #include <asm/arch-tegra/gpu.h> |
Tom Warren | d32b2a4 | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 33 | #ifdef CONFIG_TEGRA_CLOCK_SCALING |
| 34 | #include <asm/arch/emc.h> |
| 35 | #endif |
| 36 | #ifdef CONFIG_USB_EHCI_TEGRA |
Lucas Stach | 26c3216 | 2013-02-07 07:16:29 +0000 | [diff] [blame] | 37 | #include <asm/arch-tegra/usb.h> |
Mateusz Zalega | d862f89 | 2013-10-04 19:22:26 +0200 | [diff] [blame] | 38 | #include <usb.h> |
Tom Warren | d32b2a4 | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 39 | #endif |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 40 | #ifdef CONFIG_TEGRA_MMC |
Tom Warren | f5d874d | 2013-02-26 12:26:55 -0700 | [diff] [blame] | 41 | #include <asm/arch-tegra/tegra_mmc.h> |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 42 | #include <asm/arch-tegra/mmc.h> |
| 43 | #endif |
Thierry Reding | f202e02 | 2014-12-09 22:25:09 -0700 | [diff] [blame] | 44 | #include <asm/arch-tegra/xusb-padctl.h> |
Simon Glass | 0655c91 | 2015-04-14 21:03:28 -0600 | [diff] [blame] | 45 | #include <power/as3722.h> |
Simon Glass | 87cc3d1 | 2012-02-03 15:13:57 +0000 | [diff] [blame] | 46 | #include <i2c.h> |
Tom Warren | d32b2a4 | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 47 | #include <spi.h> |
Jimmy Zhang | a308d46 | 2012-04-10 05:17:06 +0000 | [diff] [blame] | 48 | #include "emc.h" |
Tom Warren | 41b6838 | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 49 | |
| 50 | DECLARE_GLOBAL_DATA_PTR; |
| 51 | |
Simon Glass | 74472ac | 2014-11-10 17:16:51 -0700 | [diff] [blame] | 52 | #ifdef CONFIG_SPL_BUILD |
| 53 | /* TODO(sjg@chromium.org): Remove once SPL supports device tree */ |
| 54 | U_BOOT_DEVICE(tegra_gpios) = { |
| 55 | "gpio_tegra" |
| 56 | }; |
| 57 | #endif |
| 58 | |
Jeroen Hofstee | 93dfae7 | 2014-10-08 22:57:46 +0200 | [diff] [blame] | 59 | __weak void pinmux_init(void) {} |
| 60 | __weak void pin_mux_usb(void) {} |
| 61 | __weak void pin_mux_spi(void) {} |
| 62 | __weak void gpio_early_init_uart(void) {} |
| 63 | __weak void pin_mux_display(void) {} |
Tom Warren | f3035ca | 2015-02-20 12:22:22 -0700 | [diff] [blame] | 64 | __weak void start_cpu_fan(void) {} |
Lucas Stach | 18561f7 | 2012-09-25 20:21:14 +0000 | [diff] [blame] | 65 | |
Tom Warren | 6b33c83 | 2014-01-24 12:46:11 -0700 | [diff] [blame] | 66 | #if defined(CONFIG_TEGRA_NAND) |
Jeroen Hofstee | 93dfae7 | 2014-10-08 22:57:46 +0200 | [diff] [blame] | 67 | __weak void pin_mux_nand(void) |
Lucas Stach | 0458584 | 2012-09-29 10:02:09 +0000 | [diff] [blame] | 68 | { |
| 69 | funcmux_select(PERIPH_ID_NDFLASH, FUNCMUX_DEFAULT); |
| 70 | } |
Tom Warren | 6b33c83 | 2014-01-24 12:46:11 -0700 | [diff] [blame] | 71 | #endif |
Lucas Stach | 0458584 | 2012-09-29 10:02:09 +0000 | [diff] [blame] | 72 | |
Tom Warren | 41b6838 | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 73 | /* |
Wei Ni | 39d45ed | 2012-04-02 13:18:58 +0000 | [diff] [blame] | 74 | * Routine: power_det_init |
| 75 | * Description: turn off power detects |
| 76 | */ |
| 77 | static void power_det_init(void) |
| 78 | { |
Allen Martin | 55d98a1 | 2012-08-31 08:30:00 +0000 | [diff] [blame] | 79 | #if defined(CONFIG_TEGRA20) |
Tom Warren | 22562a4 | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 80 | struct pmc_ctlr *const pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE; |
Wei Ni | 39d45ed | 2012-04-02 13:18:58 +0000 | [diff] [blame] | 81 | |
| 82 | /* turn off power detects */ |
| 83 | writel(0, &pmc->pmc_pwr_det_latch); |
| 84 | writel(0, &pmc->pmc_pwr_det); |
| 85 | #endif |
| 86 | } |
Simon Glass | 675804d | 2015-04-14 21:03:24 -0600 | [diff] [blame] | 87 | |
Simon Glass | 69c93c7 | 2015-04-14 21:03:25 -0600 | [diff] [blame] | 88 | __weak int tegra_board_id(void) |
| 89 | { |
| 90 | return -1; |
| 91 | } |
| 92 | |
Simon Glass | 675804d | 2015-04-14 21:03:24 -0600 | [diff] [blame] | 93 | #ifdef CONFIG_DISPLAY_BOARDINFO |
| 94 | int checkboard(void) |
| 95 | { |
Simon Glass | 69c93c7 | 2015-04-14 21:03:25 -0600 | [diff] [blame] | 96 | int board_id = tegra_board_id(); |
| 97 | |
| 98 | printf("Board: %s", CONFIG_TEGRA_BOARD_STRING); |
| 99 | if (board_id != -1) |
| 100 | printf(", ID: %d\n", board_id); |
| 101 | printf("\n"); |
Simon Glass | 675804d | 2015-04-14 21:03:24 -0600 | [diff] [blame] | 102 | |
| 103 | return 0; |
| 104 | } |
| 105 | #endif /* CONFIG_DISPLAY_BOARDINFO */ |
Wei Ni | 39d45ed | 2012-04-02 13:18:58 +0000 | [diff] [blame] | 106 | |
Simon Glass | 0cf62dd | 2015-04-14 21:03:27 -0600 | [diff] [blame] | 107 | __weak int tegra_lcd_pmic_init(int board_it) |
| 108 | { |
| 109 | return 0; |
| 110 | } |
| 111 | |
Simon Glass | 44a6808 | 2015-06-05 14:39:42 -0600 | [diff] [blame] | 112 | __weak int nvidia_board_init(void) |
| 113 | { |
| 114 | return 0; |
| 115 | } |
| 116 | |
Wei Ni | 39d45ed | 2012-04-02 13:18:58 +0000 | [diff] [blame] | 117 | /* |
Tom Warren | 41b6838 | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 118 | * Routine: board_init |
| 119 | * Description: Early hardware init. |
| 120 | */ |
| 121 | int board_init(void) |
| 122 | { |
Jimmy Zhang | a308d46 | 2012-04-10 05:17:06 +0000 | [diff] [blame] | 123 | __maybe_unused int err; |
Simon Glass | 0cf62dd | 2015-04-14 21:03:27 -0600 | [diff] [blame] | 124 | __maybe_unused int board_id; |
Jimmy Zhang | a308d46 | 2012-04-10 05:17:06 +0000 | [diff] [blame] | 125 | |
Simon Glass | 704e60d | 2011-11-05 04:46:51 +0000 | [diff] [blame] | 126 | /* Do clocks and UART first so that printf() works */ |
Simon Glass | c2ea5e4 | 2011-09-21 12:40:04 +0000 | [diff] [blame] | 127 | clock_init(); |
| 128 | clock_verify(); |
| 129 | |
Alexandre Courbot | 7f936d4 | 2015-07-09 16:33:00 +0900 | [diff] [blame] | 130 | config_gpu(); |
| 131 | |
Simon Glass | 1121b1b | 2014-10-13 23:42:13 -0600 | [diff] [blame] | 132 | #ifdef CONFIG_TEGRA_SPI |
Stephen Warren | d2f67fe | 2012-06-12 08:33:40 +0000 | [diff] [blame] | 133 | pin_mux_spi(); |
Tom Warren | ee554f8 | 2011-11-05 09:48:11 +0000 | [diff] [blame] | 134 | #endif |
Allen Martin | ba4fb9b | 2013-01-29 13:51:28 +0000 | [diff] [blame] | 135 | |
Simon Glass | 1564f34 | 2012-10-17 13:24:49 +0000 | [diff] [blame] | 136 | #ifdef CONFIG_PWM_TEGRA |
| 137 | if (pwm_init(gd->fdt_blob)) |
| 138 | debug("%s: Failed to init pwm\n", __func__); |
| 139 | #endif |
Simon Glass | 4f476f3 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 140 | #ifdef CONFIG_LCD |
Marc Dietrich | 9bbe64b | 2012-11-25 11:26:11 +0000 | [diff] [blame] | 141 | pin_mux_display(); |
Simon Glass | 4f476f3 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 142 | tegra_lcd_check_next_stage(gd->fdt_blob, 0); |
| 143 | #endif |
Tom Warren | 41b6838 | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 144 | /* boot param addr */ |
| 145 | gd->bd->bi_boot_params = (NV_PA_SDRAM_BASE + 0x100); |
Wei Ni | 39d45ed | 2012-04-02 13:18:58 +0000 | [diff] [blame] | 146 | |
| 147 | power_det_init(); |
| 148 | |
Simon Glass | 026fefb | 2012-10-30 07:28:53 +0000 | [diff] [blame] | 149 | #ifdef CONFIG_SYS_I2C_TEGRA |
Simon Glass | e772be8 | 2012-04-02 13:18:54 +0000 | [diff] [blame] | 150 | # ifdef CONFIG_TEGRA_PMU |
| 151 | if (pmu_set_nominal()) |
| 152 | debug("Failed to select nominal voltages\n"); |
Jimmy Zhang | a308d46 | 2012-04-10 05:17:06 +0000 | [diff] [blame] | 153 | # ifdef CONFIG_TEGRA_CLOCK_SCALING |
| 154 | err = board_emc_init(); |
| 155 | if (err) |
| 156 | debug("Memory controller init failed: %d\n", err); |
| 157 | # endif |
| 158 | # endif /* CONFIG_TEGRA_PMU */ |
Simon Glass | 0655c91 | 2015-04-14 21:03:28 -0600 | [diff] [blame] | 159 | #ifdef CONFIG_AS3722_POWER |
| 160 | err = as3722_init(NULL); |
| 161 | if (err && err != -ENODEV) |
| 162 | return err; |
| 163 | #endif |
Simon Glass | 026fefb | 2012-10-30 07:28:53 +0000 | [diff] [blame] | 164 | #endif /* CONFIG_SYS_I2C_TEGRA */ |
Tom Warren | 41b6838 | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 165 | |
Simon Glass | 5d73a8d | 2012-02-27 10:52:50 +0000 | [diff] [blame] | 166 | #ifdef CONFIG_USB_EHCI_TEGRA |
| 167 | pin_mux_usb(); |
Simon Glass | 5d73a8d | 2012-02-27 10:52:50 +0000 | [diff] [blame] | 168 | #endif |
Mateusz Zalega | d862f89 | 2013-10-04 19:22:26 +0200 | [diff] [blame] | 169 | |
Simon Glass | 4f476f3 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 170 | #ifdef CONFIG_LCD |
Simon Glass | 0cf62dd | 2015-04-14 21:03:27 -0600 | [diff] [blame] | 171 | board_id = tegra_board_id(); |
| 172 | err = tegra_lcd_pmic_init(board_id); |
| 173 | if (err) |
| 174 | return err; |
Simon Glass | 4f476f3 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 175 | tegra_lcd_check_next_stage(gd->fdt_blob, 0); |
| 176 | #endif |
Simon Glass | 5d73a8d | 2012-02-27 10:52:50 +0000 | [diff] [blame] | 177 | |
Lucas Stach | 0458584 | 2012-09-29 10:02:09 +0000 | [diff] [blame] | 178 | #ifdef CONFIG_TEGRA_NAND |
| 179 | pin_mux_nand(); |
| 180 | #endif |
| 181 | |
Thierry Reding | f202e02 | 2014-12-09 22:25:09 -0700 | [diff] [blame] | 182 | tegra_xusb_padctl_init(gd->fdt_blob); |
| 183 | |
Tom Warren | 22562a4 | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 184 | #ifdef CONFIG_TEGRA_LP0 |
Allen Martin | 0ca1a45 | 2012-08-31 08:30:11 +0000 | [diff] [blame] | 185 | /* save Sdram params to PMC 2, 4, and 24 for WB0 */ |
| 186 | warmboot_save_sdram_params(); |
| 187 | |
Simon Glass | 8cc8f61 | 2012-04-02 13:18:57 +0000 | [diff] [blame] | 188 | /* prepare the WB code to LP0 location */ |
| 189 | warmboot_prepare_code(TEGRA_LP0_ADDR, TEGRA_LP0_SIZE); |
| 190 | #endif |
Simon Glass | 44a6808 | 2015-06-05 14:39:42 -0600 | [diff] [blame] | 191 | return nvidia_board_init(); |
Tom Warren | 41b6838 | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 192 | } |
Simon Glass | dfcee79 | 2011-09-21 12:40:03 +0000 | [diff] [blame] | 193 | |
| 194 | #ifdef CONFIG_BOARD_EARLY_INIT_F |
Thierry Reding | 2fa4db0 | 2012-06-04 20:02:27 +0000 | [diff] [blame] | 195 | static void __gpio_early_init(void) |
| 196 | { |
| 197 | } |
| 198 | |
| 199 | void gpio_early_init(void) __attribute__((weak, alias("__gpio_early_init"))); |
| 200 | |
Simon Glass | dfcee79 | 2011-09-21 12:40:03 +0000 | [diff] [blame] | 201 | int board_early_init_f(void) |
| 202 | { |
Thierry Reding | ff81d75 | 2015-07-28 11:35:53 +0200 | [diff] [blame] | 203 | /* Do any special system timer/TSC setup */ |
| 204 | #if defined(CONFIG_TEGRA_SUPPORT_NON_SECURE) |
| 205 | if (!tegra_cpu_is_non_secure()) |
| 206 | #endif |
| 207 | arch_timer_init(); |
| 208 | |
Tom Warren | d32b2a4 | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 209 | pinmux_init(); |
Simon Glass | a8ccc8b | 2011-11-28 15:04:40 +0000 | [diff] [blame] | 210 | board_init_uart_f(); |
Simon Glass | dfcee79 | 2011-09-21 12:40:03 +0000 | [diff] [blame] | 211 | |
| 212 | /* Initialize periph GPIOs */ |
Thierry Reding | 2fa4db0 | 2012-06-04 20:02:27 +0000 | [diff] [blame] | 213 | gpio_early_init(); |
Simon Glass | 704e60d | 2011-11-05 04:46:51 +0000 | [diff] [blame] | 214 | gpio_early_init_uart(); |
Simon Glass | 4f476f3 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 215 | #ifdef CONFIG_LCD |
| 216 | tegra_lcd_early_init(gd->fdt_blob); |
| 217 | #endif |
Lucas Stach | 18561f7 | 2012-09-25 20:21:14 +0000 | [diff] [blame] | 218 | |
Simon Glass | dfcee79 | 2011-09-21 12:40:03 +0000 | [diff] [blame] | 219 | return 0; |
| 220 | } |
| 221 | #endif /* EARLY_INIT */ |
Simon Glass | 4f476f3 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 222 | |
| 223 | int board_late_init(void) |
| 224 | { |
| 225 | #ifdef CONFIG_LCD |
| 226 | /* Make sure we finish initing the LCD */ |
| 227 | tegra_lcd_check_next_stage(gd->fdt_blob, 1); |
| 228 | #endif |
Stephen Warren | 8d1fb31 | 2015-01-19 16:25:52 -0700 | [diff] [blame] | 229 | #if defined(CONFIG_TEGRA_SUPPORT_NON_SECURE) |
| 230 | if (tegra_cpu_is_non_secure()) { |
| 231 | printf("CPU is in NS mode\n"); |
| 232 | setenv("cpu_ns_mode", "1"); |
| 233 | } else { |
| 234 | setenv("cpu_ns_mode", ""); |
| 235 | } |
| 236 | #endif |
Tom Warren | f3035ca | 2015-02-20 12:22:22 -0700 | [diff] [blame] | 237 | start_cpu_fan(); |
| 238 | |
Simon Glass | 4f476f3 | 2012-10-17 13:24:52 +0000 | [diff] [blame] | 239 | return 0; |
| 240 | } |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 241 | |
| 242 | #if defined(CONFIG_TEGRA_MMC) |
Jeroen Hofstee | 93dfae7 | 2014-10-08 22:57:46 +0200 | [diff] [blame] | 243 | __weak void pin_mux_mmc(void) |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 244 | { |
| 245 | } |
| 246 | |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 247 | /* this is a weak define that we are overriding */ |
| 248 | int board_mmc_init(bd_t *bd) |
| 249 | { |
| 250 | debug("%s called\n", __func__); |
| 251 | |
| 252 | /* Enable muxes, etc. for SDMMC controllers */ |
| 253 | pin_mux_mmc(); |
| 254 | |
| 255 | debug("%s: init MMC\n", __func__); |
| 256 | tegra_mmc_init(); |
| 257 | |
| 258 | return 0; |
| 259 | } |
Tom Warren | f5d874d | 2013-02-26 12:26:55 -0700 | [diff] [blame] | 260 | |
| 261 | void pad_init_mmc(struct mmc_host *host) |
| 262 | { |
| 263 | #if defined(CONFIG_TEGRA30) |
| 264 | enum periph_id id = host->mmc_id; |
| 265 | u32 val; |
| 266 | |
| 267 | debug("%s: sdmmc address = %08x, id = %d\n", __func__, |
| 268 | (unsigned int)host->reg, id); |
| 269 | |
| 270 | /* Set the pad drive strength for SDMMC1 or 3 only */ |
| 271 | if (id != PERIPH_ID_SDMMC1 && id != PERIPH_ID_SDMMC3) { |
| 272 | debug("%s: settings are only valid for SDMMC1/SDMMC3!\n", |
| 273 | __func__); |
| 274 | return; |
| 275 | } |
| 276 | |
| 277 | val = readl(&host->reg->sdmemcmppadctl); |
| 278 | val &= 0xFFFFFFF0; |
| 279 | val |= MEMCOMP_PADCTRL_VREF; |
| 280 | writel(val, &host->reg->sdmemcmppadctl); |
| 281 | |
| 282 | val = readl(&host->reg->autocalcfg); |
| 283 | val &= 0xFFFF0000; |
| 284 | val |= AUTO_CAL_PU_OFFSET | AUTO_CAL_PD_OFFSET | AUTO_CAL_ENABLED; |
| 285 | writel(val, &host->reg->autocalcfg); |
| 286 | #endif /* T30 */ |
| 287 | } |
| 288 | #endif /* MMC */ |
Thierry Reding | 6d835fa | 2015-07-27 11:45:24 -0600 | [diff] [blame] | 289 | |
| 290 | #ifdef CONFIG_ARM64 |
| 291 | /* |
| 292 | * Most hardware on 64-bit Tegra is still restricted to DMA to the lower |
| 293 | * 32-bits of the physical address space. Cap the maximum usable RAM area |
| 294 | * at 4 GiB to avoid DMA buffers from being allocated beyond the 32-bit |
| 295 | * boundary that most devices can address. |
Stephen Warren | 30d1966 | 2015-07-29 13:47:58 -0600 | [diff] [blame] | 296 | * |
| 297 | * Additionally, ARM64 devices typically run a secure monitor in EL3 and |
| 298 | * U-Boot in EL2, and set up some secure RAM carve-outs to contain the EL3 |
| 299 | * code and data. These carve-outs are located at the top of 32-bit address |
| 300 | * space. Restrict U-Boot's RAM usage to well below the location of those |
| 301 | * carve-outs. Ideally, we would the secure monitor would inform U-Boot of |
| 302 | * exactly which RAM it could use at run-time. However, I'm not sure how to |
| 303 | * do that at present (and even if such a mechanism does exist, it would |
| 304 | * likely not be generic across all forms of secure monitor). |
Thierry Reding | 6d835fa | 2015-07-27 11:45:24 -0600 | [diff] [blame] | 305 | */ |
| 306 | ulong board_get_usable_ram_top(ulong total_size) |
| 307 | { |
Stephen Warren | 30d1966 | 2015-07-29 13:47:58 -0600 | [diff] [blame] | 308 | if (gd->ram_top > 0xe0000000) |
| 309 | return 0xe0000000; |
Thierry Reding | 6d835fa | 2015-07-27 11:45:24 -0600 | [diff] [blame] | 310 | |
| 311 | return gd->ram_top; |
| 312 | } |
| 313 | #endif |