Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Tom Warren | 41b6838 | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 2 | /* |
Tom Warren | ab0cc6b | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 3 | * (C) Copyright 2010-2015 |
Tom Warren | 41b6838 | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 4 | * NVIDIA Corporation <www.nvidia.com> |
Tom Warren | 41b6838 | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Thomas Chou | e3b9026 | 2015-11-19 21:48:11 +0800 | [diff] [blame] | 8 | #include <dm.h> |
| 9 | #include <ns16550.h> |
Simon Glass | eec13c4 | 2015-05-13 07:02:29 -0600 | [diff] [blame] | 10 | #include <spl.h> |
Tom Warren | 41b6838 | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 11 | #include <asm/io.h> |
Thierry Reding | 45ad0b0 | 2019-04-15 11:32:18 +0200 | [diff] [blame] | 12 | #if IS_ENABLED(CONFIG_TEGRA_CLKRST) |
Simon Glass | 96b7c43 | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 13 | #include <asm/arch/clock.h> |
Thierry Reding | 45ad0b0 | 2019-04-15 11:32:18 +0200 | [diff] [blame] | 14 | #endif |
Thierry Reding | 7c0b150 | 2019-04-15 11:32:21 +0200 | [diff] [blame^] | 15 | #if IS_ENABLED(CONFIG_TEGRA_PINCTRL) |
Simon Glass | 96b7c43 | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 16 | #include <asm/arch/funcmux.h> |
Thierry Reding | 7c0b150 | 2019-04-15 11:32:21 +0200 | [diff] [blame^] | 17 | #endif |
Thierry Reding | 17987bb | 2019-04-15 11:32:20 +0200 | [diff] [blame] | 18 | #if IS_ENABLED(CONFIG_TEGRA_MC) |
Marcel Ziswiler | c5ecf27 | 2014-10-10 23:32:32 +0200 | [diff] [blame] | 19 | #include <asm/arch/mc.h> |
Thierry Reding | 17987bb | 2019-04-15 11:32:20 +0200 | [diff] [blame] | 20 | #endif |
Tom Warren | ab37196 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 21 | #include <asm/arch/tegra.h> |
Stephen Warren | 8d1fb31 | 2015-01-19 16:25:52 -0700 | [diff] [blame] | 22 | #include <asm/arch-tegra/ap.h> |
Lucas Stach | e80f7ca | 2012-09-29 10:02:08 +0000 | [diff] [blame] | 23 | #include <asm/arch-tegra/board.h> |
Tom Warren | ab37196 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 24 | #include <asm/arch-tegra/pmc.h> |
| 25 | #include <asm/arch-tegra/sys_proto.h> |
| 26 | #include <asm/arch-tegra/warmboot.h> |
Tom Warren | 41b6838 | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 27 | |
Tom Warren | 021a8bb | 2015-07-08 08:05:35 -0700 | [diff] [blame] | 28 | void save_boot_params_ret(void); |
| 29 | |
Tom Warren | 41b6838 | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 30 | DECLARE_GLOBAL_DATA_PTR; |
| 31 | |
Simon Glass | 96b7c43 | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 32 | enum { |
| 33 | /* UARTs which we can enable */ |
| 34 | UARTA = 1 << 0, |
| 35 | UARTB = 1 << 1, |
Tom Warren | e3d95bc | 2013-01-28 13:32:10 +0000 | [diff] [blame] | 36 | UARTC = 1 << 2, |
Simon Glass | 96b7c43 | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 37 | UARTD = 1 << 3, |
Tom Warren | e3d95bc | 2013-01-28 13:32:10 +0000 | [diff] [blame] | 38 | UARTE = 1 << 4, |
| 39 | UART_COUNT = 5, |
Simon Glass | 96b7c43 | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 40 | }; |
| 41 | |
Simon Glass | eec13c4 | 2015-05-13 07:02:29 -0600 | [diff] [blame] | 42 | static bool from_spl __attribute__ ((section(".data"))); |
| 43 | |
| 44 | #ifndef CONFIG_SPL_BUILD |
| 45 | void save_boot_params(u32 r0, u32 r1, u32 r2, u32 r3) |
| 46 | { |
| 47 | from_spl = r0 != UBOOT_NOT_LOADED_FROM_SPL; |
| 48 | save_boot_params_ret(); |
| 49 | } |
| 50 | #endif |
| 51 | |
| 52 | bool spl_was_boot_source(void) |
| 53 | { |
| 54 | return from_spl; |
| 55 | } |
| 56 | |
Stephen Warren | 8d1fb31 | 2015-01-19 16:25:52 -0700 | [diff] [blame] | 57 | #if defined(CONFIG_TEGRA_SUPPORT_NON_SECURE) |
| 58 | #if !defined(CONFIG_TEGRA124) |
| 59 | #error tegra_cpu_is_non_secure has only been validated on Tegra124 |
| 60 | #endif |
| 61 | bool tegra_cpu_is_non_secure(void) |
| 62 | { |
| 63 | /* |
| 64 | * This register reads 0xffffffff in non-secure mode. This register |
| 65 | * only implements bits 31:20, so the lower bits will always read 0 in |
| 66 | * secure mode. Thus, the lower bits are an indicator for secure vs. |
| 67 | * non-secure mode. |
| 68 | */ |
| 69 | struct mc_ctlr *mc = (struct mc_ctlr *)NV_PA_MC_BASE; |
| 70 | uint32_t mc_s_cfg0 = readl(&mc->mc_security_cfg0); |
| 71 | return (mc_s_cfg0 & 1) == 1; |
| 72 | } |
| 73 | #endif |
| 74 | |
Thierry Reding | 17987bb | 2019-04-15 11:32:20 +0200 | [diff] [blame] | 75 | #if IS_ENABLED(CONFIG_TEGRA_MC) |
Stephen Warren | 1b4af6b | 2014-07-02 14:12:30 -0600 | [diff] [blame] | 76 | /* Read the RAM size directly from the memory controller */ |
Stephen Warren | 6718af0 | 2015-08-07 16:12:44 -0600 | [diff] [blame] | 77 | static phys_size_t query_sdram_size(void) |
Stephen Warren | 1b4af6b | 2014-07-02 14:12:30 -0600 | [diff] [blame] | 78 | { |
| 79 | struct mc_ctlr *const mc = (struct mc_ctlr *)NV_PA_MC_BASE; |
Stephen Warren | 6718af0 | 2015-08-07 16:12:44 -0600 | [diff] [blame] | 80 | u32 emem_cfg; |
| 81 | phys_size_t size_bytes; |
Stephen Warren | 1b4af6b | 2014-07-02 14:12:30 -0600 | [diff] [blame] | 82 | |
Stephen Warren | 210bdb2 | 2014-12-23 10:34:50 -0700 | [diff] [blame] | 83 | emem_cfg = readl(&mc->mc_emem_cfg); |
Marcel Ziswiler | c5ecf27 | 2014-10-10 23:32:32 +0200 | [diff] [blame] | 84 | #if defined(CONFIG_TEGRA20) |
Stephen Warren | 210bdb2 | 2014-12-23 10:34:50 -0700 | [diff] [blame] | 85 | debug("mc->mc_emem_cfg (MEM_SIZE_KB) = 0x%08x\n", emem_cfg); |
| 86 | size_bytes = get_ram_size((void *)PHYS_SDRAM_1, emem_cfg * 1024); |
Marcel Ziswiler | c5ecf27 | 2014-10-10 23:32:32 +0200 | [diff] [blame] | 87 | #else |
Stephen Warren | 210bdb2 | 2014-12-23 10:34:50 -0700 | [diff] [blame] | 88 | debug("mc->mc_emem_cfg (MEM_SIZE_MB) = 0x%08x\n", emem_cfg); |
Stephen Warren | 6718af0 | 2015-08-07 16:12:44 -0600 | [diff] [blame] | 89 | #ifndef CONFIG_PHYS_64BIT |
Stephen Warren | c801805 | 2014-12-23 10:34:51 -0700 | [diff] [blame] | 90 | /* |
| 91 | * If >=4GB RAM is present, the byte RAM size won't fit into 32-bits |
| 92 | * and will wrap. Clip the reported size to the maximum that a 32-bit |
| 93 | * variable can represent (rounded to a page). |
| 94 | */ |
| 95 | if (emem_cfg >= 4096) { |
| 96 | size_bytes = U32_MAX & ~(0x1000 - 1); |
Stephen Warren | 6718af0 | 2015-08-07 16:12:44 -0600 | [diff] [blame] | 97 | } else |
| 98 | #endif |
| 99 | { |
Stephen Warren | c801805 | 2014-12-23 10:34:51 -0700 | [diff] [blame] | 100 | /* RAM size EMC is programmed to. */ |
Stephen Warren | 6718af0 | 2015-08-07 16:12:44 -0600 | [diff] [blame] | 101 | size_bytes = (phys_size_t)emem_cfg * 1024 * 1024; |
| 102 | #ifndef CONFIG_ARM64 |
Stephen Warren | c801805 | 2014-12-23 10:34:51 -0700 | [diff] [blame] | 103 | /* |
| 104 | * If all RAM fits within 32-bits, it can be accessed without |
| 105 | * LPAE, so go test the RAM size. Otherwise, we can't access |
| 106 | * all the RAM, and get_ram_size() would get confused, so |
| 107 | * avoid using it. There's no reason we should need this |
| 108 | * validation step anyway. |
| 109 | */ |
| 110 | if (emem_cfg <= (0 - PHYS_SDRAM_1) / (1024 * 1024)) |
| 111 | size_bytes = get_ram_size((void *)PHYS_SDRAM_1, |
| 112 | size_bytes); |
Stephen Warren | 6718af0 | 2015-08-07 16:12:44 -0600 | [diff] [blame] | 113 | #endif |
Stephen Warren | c801805 | 2014-12-23 10:34:51 -0700 | [diff] [blame] | 114 | } |
Marcel Ziswiler | c5ecf27 | 2014-10-10 23:32:32 +0200 | [diff] [blame] | 115 | #endif |
Stephen Warren | 1b4af6b | 2014-07-02 14:12:30 -0600 | [diff] [blame] | 116 | |
Marcel Ziswiler | c5ecf27 | 2014-10-10 23:32:32 +0200 | [diff] [blame] | 117 | #if defined(CONFIG_TEGRA30) || defined(CONFIG_TEGRA114) |
| 118 | /* External memory limited to 2047 MB due to IROM/HI-VEC */ |
Stephen Warren | 210bdb2 | 2014-12-23 10:34:50 -0700 | [diff] [blame] | 119 | if (size_bytes == SZ_2G) |
| 120 | size_bytes -= SZ_1M; |
Stephen Warren | 1b4af6b | 2014-07-02 14:12:30 -0600 | [diff] [blame] | 121 | #endif |
Tom Warren | 41b6838 | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 122 | |
Stephen Warren | 210bdb2 | 2014-12-23 10:34:50 -0700 | [diff] [blame] | 123 | return size_bytes; |
Marcel Ziswiler | c5ecf27 | 2014-10-10 23:32:32 +0200 | [diff] [blame] | 124 | } |
Thierry Reding | 17987bb | 2019-04-15 11:32:20 +0200 | [diff] [blame] | 125 | #endif |
Marcel Ziswiler | c5ecf27 | 2014-10-10 23:32:32 +0200 | [diff] [blame] | 126 | |
Tom Warren | 41b6838 | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 127 | int dram_init(void) |
| 128 | { |
Thierry Reding | 17987bb | 2019-04-15 11:32:20 +0200 | [diff] [blame] | 129 | #if IS_ENABLED(CONFIG_TEGRA_MC) |
Tom Warren | 41b6838 | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 130 | /* We do not initialise DRAM here. We just query the size */ |
Simon Glass | f6fcbbd | 2011-11-05 03:56:57 +0000 | [diff] [blame] | 131 | gd->ram_size = query_sdram_size(); |
Thierry Reding | 17987bb | 2019-04-15 11:32:20 +0200 | [diff] [blame] | 132 | #endif |
| 133 | |
Tom Warren | 41b6838 | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 134 | return 0; |
| 135 | } |
| 136 | |
Thierry Reding | 7c0b150 | 2019-04-15 11:32:21 +0200 | [diff] [blame^] | 137 | #if IS_ENABLED(CONFIG_TEGRA_PINCTRL) |
Stephen Warren | 59f9010 | 2012-05-14 13:13:45 +0000 | [diff] [blame] | 138 | static int uart_configs[] = { |
Tom Warren | 61c6d0e | 2012-12-11 13:34:15 +0000 | [diff] [blame] | 139 | #if defined(CONFIG_TEGRA20) |
| 140 | #if defined(CONFIG_TEGRA_UARTA_UAA_UAB) |
Stephen Warren | 59f9010 | 2012-05-14 13:13:45 +0000 | [diff] [blame] | 141 | FUNCMUX_UART1_UAA_UAB, |
Tom Warren | 61c6d0e | 2012-12-11 13:34:15 +0000 | [diff] [blame] | 142 | #elif defined(CONFIG_TEGRA_UARTA_GPU) |
Stephen Warren | e4c01a8 | 2012-05-16 05:59:59 +0000 | [diff] [blame] | 143 | FUNCMUX_UART1_GPU, |
Tom Warren | 61c6d0e | 2012-12-11 13:34:15 +0000 | [diff] [blame] | 144 | #elif defined(CONFIG_TEGRA_UARTA_SDIO1) |
Lucas Stach | 4de6eec | 2012-05-16 08:21:02 +0000 | [diff] [blame] | 145 | FUNCMUX_UART1_SDIO1, |
Tom Warren | 61c6d0e | 2012-12-11 13:34:15 +0000 | [diff] [blame] | 146 | #else |
Stephen Warren | 59f9010 | 2012-05-14 13:13:45 +0000 | [diff] [blame] | 147 | FUNCMUX_UART1_IRRX_IRTX, |
Stephen Warren | 811af73 | 2013-01-22 06:20:08 +0000 | [diff] [blame] | 148 | #endif |
| 149 | FUNCMUX_UART2_UAD, |
Stephen Warren | 59f9010 | 2012-05-14 13:13:45 +0000 | [diff] [blame] | 150 | -1, |
| 151 | FUNCMUX_UART4_GMC, |
| 152 | -1, |
Tom Warren | e3d95bc | 2013-01-28 13:32:10 +0000 | [diff] [blame] | 153 | #elif defined(CONFIG_TEGRA30) |
Tom Warren | 61c6d0e | 2012-12-11 13:34:15 +0000 | [diff] [blame] | 154 | FUNCMUX_UART1_ULPI, /* UARTA */ |
| 155 | -1, |
| 156 | -1, |
| 157 | -1, |
| 158 | -1, |
Tom Warren | e5ffffd | 2014-01-24 12:46:16 -0700 | [diff] [blame] | 159 | #elif defined(CONFIG_TEGRA114) |
Tom Warren | e3d95bc | 2013-01-28 13:32:10 +0000 | [diff] [blame] | 160 | -1, |
| 161 | -1, |
| 162 | -1, |
| 163 | FUNCMUX_UART4_GMI, /* UARTD */ |
| 164 | -1, |
Tom Warren | ab0cc6b | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 165 | #elif defined(CONFIG_TEGRA124) |
Tom Warren | e5ffffd | 2014-01-24 12:46:16 -0700 | [diff] [blame] | 166 | FUNCMUX_UART1_KBC, /* UARTA */ |
| 167 | -1, |
| 168 | -1, |
| 169 | FUNCMUX_UART4_GPIO, /* UARTD */ |
| 170 | -1, |
Tom Warren | ab0cc6b | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 171 | #else /* Tegra210 */ |
| 172 | FUNCMUX_UART1_UART1, /* UARTA */ |
| 173 | -1, |
| 174 | -1, |
| 175 | FUNCMUX_UART4_UART4, /* UARTD */ |
| 176 | -1, |
Tom Warren | 61c6d0e | 2012-12-11 13:34:15 +0000 | [diff] [blame] | 177 | #endif |
Stephen Warren | 59f9010 | 2012-05-14 13:13:45 +0000 | [diff] [blame] | 178 | }; |
| 179 | |
Simon Glass | 96b7c43 | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 180 | /** |
| 181 | * Set up the specified uarts |
| 182 | * |
| 183 | * @param uarts_ids Mask containing UARTs to init (UARTx) |
| 184 | */ |
| 185 | static void setup_uarts(int uart_ids) |
| 186 | { |
| 187 | static enum periph_id id_for_uart[] = { |
| 188 | PERIPH_ID_UART1, |
| 189 | PERIPH_ID_UART2, |
| 190 | PERIPH_ID_UART3, |
| 191 | PERIPH_ID_UART4, |
Tom Warren | e3d95bc | 2013-01-28 13:32:10 +0000 | [diff] [blame] | 192 | PERIPH_ID_UART5, |
Simon Glass | 96b7c43 | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 193 | }; |
| 194 | size_t i; |
| 195 | |
| 196 | for (i = 0; i < UART_COUNT; i++) { |
| 197 | if (uart_ids & (1 << i)) { |
| 198 | enum periph_id id = id_for_uart[i]; |
| 199 | |
Stephen Warren | 59f9010 | 2012-05-14 13:13:45 +0000 | [diff] [blame] | 200 | funcmux_select(id, uart_configs[i]); |
Simon Glass | 96b7c43 | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 201 | clock_ll_start_uart(id); |
| 202 | } |
| 203 | } |
| 204 | } |
Thierry Reding | 7c0b150 | 2019-04-15 11:32:21 +0200 | [diff] [blame^] | 205 | #endif |
Simon Glass | 96b7c43 | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 206 | |
| 207 | void board_init_uart_f(void) |
| 208 | { |
Thierry Reding | 7c0b150 | 2019-04-15 11:32:21 +0200 | [diff] [blame^] | 209 | #if IS_ENABLED(CONFIG_TEGRA_PINCTRL) |
Simon Glass | 96b7c43 | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 210 | int uart_ids = 0; /* bit mask of which UART ids to enable */ |
| 211 | |
Tom Warren | 22562a4 | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 212 | #ifdef CONFIG_TEGRA_ENABLE_UARTA |
Simon Glass | 96b7c43 | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 213 | uart_ids |= UARTA; |
| 214 | #endif |
Tom Warren | 22562a4 | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 215 | #ifdef CONFIG_TEGRA_ENABLE_UARTB |
Simon Glass | 96b7c43 | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 216 | uart_ids |= UARTB; |
| 217 | #endif |
Tom Warren | e3d95bc | 2013-01-28 13:32:10 +0000 | [diff] [blame] | 218 | #ifdef CONFIG_TEGRA_ENABLE_UARTC |
| 219 | uart_ids |= UARTC; |
| 220 | #endif |
Tom Warren | 22562a4 | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 221 | #ifdef CONFIG_TEGRA_ENABLE_UARTD |
Simon Glass | 96b7c43 | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 222 | uart_ids |= UARTD; |
| 223 | #endif |
Tom Warren | e3d95bc | 2013-01-28 13:32:10 +0000 | [diff] [blame] | 224 | #ifdef CONFIG_TEGRA_ENABLE_UARTE |
| 225 | uart_ids |= UARTE; |
| 226 | #endif |
Simon Glass | 96b7c43 | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 227 | setup_uarts(uart_ids); |
Thierry Reding | 7c0b150 | 2019-04-15 11:32:21 +0200 | [diff] [blame^] | 228 | #endif |
Simon Glass | 96b7c43 | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 229 | } |
Simon Glass | 410012f | 2012-01-09 13:22:15 +0000 | [diff] [blame] | 230 | |
Simon Glass | f4402d0 | 2015-12-04 08:58:39 -0700 | [diff] [blame] | 231 | #if !CONFIG_IS_ENABLED(OF_CONTROL) |
Thomas Chou | e3b9026 | 2015-11-19 21:48:11 +0800 | [diff] [blame] | 232 | static struct ns16550_platdata ns16550_com1_pdata = { |
| 233 | .base = CONFIG_SYS_NS16550_COM1, |
| 234 | .reg_shift = 2, |
| 235 | .clock = CONFIG_SYS_NS16550_CLK, |
Heiko Schocher | 06f108e | 2017-01-18 08:05:49 +0100 | [diff] [blame] | 236 | .fcr = UART_FCR_DEFVAL, |
Thomas Chou | e3b9026 | 2015-11-19 21:48:11 +0800 | [diff] [blame] | 237 | }; |
| 238 | |
| 239 | U_BOOT_DEVICE(ns16550_com1) = { |
| 240 | "ns16550_serial", &ns16550_com1_pdata |
| 241 | }; |
| 242 | #endif |
| 243 | |
Trevor Woerner | 43ec7e0 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 244 | #if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF) && !defined(CONFIG_ARM64) |
Simon Glass | 410012f | 2012-01-09 13:22:15 +0000 | [diff] [blame] | 245 | void enable_caches(void) |
| 246 | { |
| 247 | /* Enable D-cache. I-cache is already enabled in start.S */ |
| 248 | dcache_enable(); |
| 249 | } |
| 250 | #endif |