Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 2 | /* |
Tom Warren | 7aaa5a6 | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 3 | * (C) Copyright 2010-2015 |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 4 | * NVIDIA Corporation <www.nvidia.com> |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | 9edefc2 | 2019-11-14 12:57:37 -0700 | [diff] [blame] | 8 | #include <cpu_func.h> |
Thomas Chou | 1874626 | 2015-11-19 21:48:11 +0800 | [diff] [blame] | 9 | #include <dm.h> |
Simon Glass | 9b4a205 | 2019-12-28 10:45:05 -0700 | [diff] [blame] | 10 | #include <init.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 11 | #include <log.h> |
Thomas Chou | 1874626 | 2015-11-19 21:48:11 +0800 | [diff] [blame] | 12 | #include <ns16550.h> |
Simon Glass | 537e967 | 2015-05-13 07:02:29 -0600 | [diff] [blame] | 13 | #include <spl.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 14 | #include <asm/cache.h> |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 15 | #include <asm/io.h> |
Thierry Reding | b64e0b9 | 2019-04-15 11:32:18 +0200 | [diff] [blame] | 16 | #if IS_ENABLED(CONFIG_TEGRA_CLKRST) |
Simon Glass | bb6997f | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 17 | #include <asm/arch/clock.h> |
Thierry Reding | b64e0b9 | 2019-04-15 11:32:18 +0200 | [diff] [blame] | 18 | #endif |
Thierry Reding | 07ea02b | 2019-04-15 11:32:21 +0200 | [diff] [blame] | 19 | #if IS_ENABLED(CONFIG_TEGRA_PINCTRL) |
Simon Glass | bb6997f | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 20 | #include <asm/arch/funcmux.h> |
Thierry Reding | 07ea02b | 2019-04-15 11:32:21 +0200 | [diff] [blame] | 21 | #endif |
Thierry Reding | 1a869c7 | 2019-04-15 11:32:20 +0200 | [diff] [blame] | 22 | #if IS_ENABLED(CONFIG_TEGRA_MC) |
Marcel Ziswiler | 8c33ba7 | 2014-10-10 23:32:32 +0200 | [diff] [blame] | 23 | #include <asm/arch/mc.h> |
Thierry Reding | 1a869c7 | 2019-04-15 11:32:20 +0200 | [diff] [blame] | 24 | #endif |
Tom Warren | 150c249 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 25 | #include <asm/arch/tegra.h> |
Stephen Warren | 73c3893 | 2015-01-19 16:25:52 -0700 | [diff] [blame] | 26 | #include <asm/arch-tegra/ap.h> |
Lucas Stach | 516f00b | 2012-09-29 10:02:08 +0000 | [diff] [blame] | 27 | #include <asm/arch-tegra/board.h> |
Thierry Reding | a0dbc13 | 2019-04-15 11:32:28 +0200 | [diff] [blame] | 28 | #include <asm/arch-tegra/cboot.h> |
Tom Warren | 150c249 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 29 | #include <asm/arch-tegra/pmc.h> |
| 30 | #include <asm/arch-tegra/sys_proto.h> |
| 31 | #include <asm/arch-tegra/warmboot.h> |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 32 | |
Tom Warren | 659a075 | 2015-07-08 08:05:35 -0700 | [diff] [blame] | 33 | void save_boot_params_ret(void); |
| 34 | |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 35 | DECLARE_GLOBAL_DATA_PTR; |
| 36 | |
Simon Glass | bb6997f | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 37 | enum { |
| 38 | /* UARTs which we can enable */ |
| 39 | UARTA = 1 << 0, |
| 40 | UARTB = 1 << 1, |
Tom Warren | e23bb6a | 2013-01-28 13:32:10 +0000 | [diff] [blame] | 41 | UARTC = 1 << 2, |
Simon Glass | bb6997f | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 42 | UARTD = 1 << 3, |
Tom Warren | e23bb6a | 2013-01-28 13:32:10 +0000 | [diff] [blame] | 43 | UARTE = 1 << 4, |
| 44 | UART_COUNT = 5, |
Simon Glass | bb6997f | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 45 | }; |
| 46 | |
Simon Glass | 537e967 | 2015-05-13 07:02:29 -0600 | [diff] [blame] | 47 | static bool from_spl __attribute__ ((section(".data"))); |
| 48 | |
| 49 | #ifndef CONFIG_SPL_BUILD |
Thierry Reding | 8f60d18 | 2019-04-15 11:32:23 +0200 | [diff] [blame] | 50 | void save_boot_params(unsigned long r0, unsigned long r1, unsigned long r2, |
| 51 | unsigned long r3) |
Simon Glass | 537e967 | 2015-05-13 07:02:29 -0600 | [diff] [blame] | 52 | { |
| 53 | from_spl = r0 != UBOOT_NOT_LOADED_FROM_SPL; |
Thierry Reding | a0dbc13 | 2019-04-15 11:32:28 +0200 | [diff] [blame] | 54 | |
| 55 | /* |
| 56 | * The logic for this is somewhat indirect. The purpose of the marker |
| 57 | * (UBOOT_NOT_LOADED_FROM_SPL) is in fact used to determine if U-Boot |
| 58 | * was loaded from a read-only instance of itself, which is something |
| 59 | * that can happen in secure boot setups. So basically the presence |
| 60 | * of the marker is an indication that U-Boot was loaded by one such |
| 61 | * special variant of U-Boot. Conversely, the absence of the marker |
| 62 | * indicates that this instance of U-Boot was loaded by something |
| 63 | * other than a special U-Boot. This could be SPL, but it could just |
| 64 | * as well be one of any number of other first stage bootloaders. |
| 65 | */ |
| 66 | if (from_spl) |
| 67 | cboot_save_boot_params(r0, r1, r2, r3); |
| 68 | |
Simon Glass | 537e967 | 2015-05-13 07:02:29 -0600 | [diff] [blame] | 69 | save_boot_params_ret(); |
| 70 | } |
| 71 | #endif |
| 72 | |
| 73 | bool spl_was_boot_source(void) |
| 74 | { |
| 75 | return from_spl; |
| 76 | } |
| 77 | |
Stephen Warren | 73c3893 | 2015-01-19 16:25:52 -0700 | [diff] [blame] | 78 | #if defined(CONFIG_TEGRA_SUPPORT_NON_SECURE) |
| 79 | #if !defined(CONFIG_TEGRA124) |
| 80 | #error tegra_cpu_is_non_secure has only been validated on Tegra124 |
| 81 | #endif |
| 82 | bool tegra_cpu_is_non_secure(void) |
| 83 | { |
| 84 | /* |
| 85 | * This register reads 0xffffffff in non-secure mode. This register |
| 86 | * only implements bits 31:20, so the lower bits will always read 0 in |
| 87 | * secure mode. Thus, the lower bits are an indicator for secure vs. |
| 88 | * non-secure mode. |
| 89 | */ |
| 90 | struct mc_ctlr *mc = (struct mc_ctlr *)NV_PA_MC_BASE; |
| 91 | uint32_t mc_s_cfg0 = readl(&mc->mc_security_cfg0); |
| 92 | return (mc_s_cfg0 & 1) == 1; |
| 93 | } |
| 94 | #endif |
| 95 | |
Thierry Reding | 1a869c7 | 2019-04-15 11:32:20 +0200 | [diff] [blame] | 96 | #if IS_ENABLED(CONFIG_TEGRA_MC) |
Stephen Warren | aeb3fcb | 2014-07-02 14:12:30 -0600 | [diff] [blame] | 97 | /* Read the RAM size directly from the memory controller */ |
Stephen Warren | a5fc3d0 | 2015-08-07 16:12:44 -0600 | [diff] [blame] | 98 | static phys_size_t query_sdram_size(void) |
Stephen Warren | aeb3fcb | 2014-07-02 14:12:30 -0600 | [diff] [blame] | 99 | { |
| 100 | struct mc_ctlr *const mc = (struct mc_ctlr *)NV_PA_MC_BASE; |
Stephen Warren | a5fc3d0 | 2015-08-07 16:12:44 -0600 | [diff] [blame] | 101 | u32 emem_cfg; |
| 102 | phys_size_t size_bytes; |
Stephen Warren | aeb3fcb | 2014-07-02 14:12:30 -0600 | [diff] [blame] | 103 | |
Stephen Warren | 3a2cab5 | 2014-12-23 10:34:50 -0700 | [diff] [blame] | 104 | emem_cfg = readl(&mc->mc_emem_cfg); |
Marcel Ziswiler | 8c33ba7 | 2014-10-10 23:32:32 +0200 | [diff] [blame] | 105 | #if defined(CONFIG_TEGRA20) |
Stephen Warren | 3a2cab5 | 2014-12-23 10:34:50 -0700 | [diff] [blame] | 106 | debug("mc->mc_emem_cfg (MEM_SIZE_KB) = 0x%08x\n", emem_cfg); |
| 107 | size_bytes = get_ram_size((void *)PHYS_SDRAM_1, emem_cfg * 1024); |
Marcel Ziswiler | 8c33ba7 | 2014-10-10 23:32:32 +0200 | [diff] [blame] | 108 | #else |
Stephen Warren | 3a2cab5 | 2014-12-23 10:34:50 -0700 | [diff] [blame] | 109 | debug("mc->mc_emem_cfg (MEM_SIZE_MB) = 0x%08x\n", emem_cfg); |
Stephen Warren | a5fc3d0 | 2015-08-07 16:12:44 -0600 | [diff] [blame] | 110 | #ifndef CONFIG_PHYS_64BIT |
Stephen Warren | 56519c4 | 2014-12-23 10:34:51 -0700 | [diff] [blame] | 111 | /* |
| 112 | * If >=4GB RAM is present, the byte RAM size won't fit into 32-bits |
| 113 | * and will wrap. Clip the reported size to the maximum that a 32-bit |
| 114 | * variable can represent (rounded to a page). |
| 115 | */ |
| 116 | if (emem_cfg >= 4096) { |
| 117 | size_bytes = U32_MAX & ~(0x1000 - 1); |
Stephen Warren | a5fc3d0 | 2015-08-07 16:12:44 -0600 | [diff] [blame] | 118 | } else |
| 119 | #endif |
| 120 | { |
Stephen Warren | 56519c4 | 2014-12-23 10:34:51 -0700 | [diff] [blame] | 121 | /* RAM size EMC is programmed to. */ |
Stephen Warren | a5fc3d0 | 2015-08-07 16:12:44 -0600 | [diff] [blame] | 122 | size_bytes = (phys_size_t)emem_cfg * 1024 * 1024; |
| 123 | #ifndef CONFIG_ARM64 |
Stephen Warren | 56519c4 | 2014-12-23 10:34:51 -0700 | [diff] [blame] | 124 | /* |
| 125 | * If all RAM fits within 32-bits, it can be accessed without |
| 126 | * LPAE, so go test the RAM size. Otherwise, we can't access |
| 127 | * all the RAM, and get_ram_size() would get confused, so |
| 128 | * avoid using it. There's no reason we should need this |
| 129 | * validation step anyway. |
| 130 | */ |
| 131 | if (emem_cfg <= (0 - PHYS_SDRAM_1) / (1024 * 1024)) |
| 132 | size_bytes = get_ram_size((void *)PHYS_SDRAM_1, |
| 133 | size_bytes); |
Stephen Warren | a5fc3d0 | 2015-08-07 16:12:44 -0600 | [diff] [blame] | 134 | #endif |
Stephen Warren | 56519c4 | 2014-12-23 10:34:51 -0700 | [diff] [blame] | 135 | } |
Stephen Warren | aeb3fcb | 2014-07-02 14:12:30 -0600 | [diff] [blame] | 136 | #endif |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 137 | |
Marcel Ziswiler | 8c33ba7 | 2014-10-10 23:32:32 +0200 | [diff] [blame] | 138 | #if defined(CONFIG_TEGRA30) || defined(CONFIG_TEGRA114) |
| 139 | /* External memory limited to 2047 MB due to IROM/HI-VEC */ |
Stephen Warren | 3a2cab5 | 2014-12-23 10:34:50 -0700 | [diff] [blame] | 140 | if (size_bytes == SZ_2G) |
| 141 | size_bytes -= SZ_1M; |
Marcel Ziswiler | 8c33ba7 | 2014-10-10 23:32:32 +0200 | [diff] [blame] | 142 | #endif |
| 143 | |
Stephen Warren | 3a2cab5 | 2014-12-23 10:34:50 -0700 | [diff] [blame] | 144 | return size_bytes; |
Marcel Ziswiler | 8c33ba7 | 2014-10-10 23:32:32 +0200 | [diff] [blame] | 145 | } |
Thierry Reding | 1a869c7 | 2019-04-15 11:32:20 +0200 | [diff] [blame] | 146 | #endif |
Marcel Ziswiler | 8c33ba7 | 2014-10-10 23:32:32 +0200 | [diff] [blame] | 147 | |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 148 | int dram_init(void) |
| 149 | { |
Thierry Reding | a0dbc13 | 2019-04-15 11:32:28 +0200 | [diff] [blame] | 150 | int err; |
| 151 | |
| 152 | /* try to initialize DRAM from cboot DTB first */ |
| 153 | err = cboot_dram_init(); |
| 154 | if (err == 0) |
| 155 | return 0; |
| 156 | |
Thierry Reding | 1a869c7 | 2019-04-15 11:32:20 +0200 | [diff] [blame] | 157 | #if IS_ENABLED(CONFIG_TEGRA_MC) |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 158 | /* We do not initialise DRAM here. We just query the size */ |
Simon Glass | 7f8c070 | 2011-11-05 03:56:57 +0000 | [diff] [blame] | 159 | gd->ram_size = query_sdram_size(); |
Thierry Reding | 1a869c7 | 2019-04-15 11:32:20 +0200 | [diff] [blame] | 160 | #endif |
| 161 | |
Tom Warren | 3f82b1d | 2011-01-27 10:58:05 +0000 | [diff] [blame] | 162 | return 0; |
| 163 | } |
| 164 | |
Thierry Reding | 07ea02b | 2019-04-15 11:32:21 +0200 | [diff] [blame] | 165 | #if IS_ENABLED(CONFIG_TEGRA_PINCTRL) |
Stephen Warren | b9607e7 | 2012-05-14 13:13:45 +0000 | [diff] [blame] | 166 | static int uart_configs[] = { |
Tom Warren | b287103 | 2012-12-11 13:34:15 +0000 | [diff] [blame] | 167 | #if defined(CONFIG_TEGRA20) |
| 168 | #if defined(CONFIG_TEGRA_UARTA_UAA_UAB) |
Stephen Warren | b9607e7 | 2012-05-14 13:13:45 +0000 | [diff] [blame] | 169 | FUNCMUX_UART1_UAA_UAB, |
Tom Warren | b287103 | 2012-12-11 13:34:15 +0000 | [diff] [blame] | 170 | #elif defined(CONFIG_TEGRA_UARTA_GPU) |
Stephen Warren | e21649b | 2012-05-16 05:59:59 +0000 | [diff] [blame] | 171 | FUNCMUX_UART1_GPU, |
Tom Warren | b287103 | 2012-12-11 13:34:15 +0000 | [diff] [blame] | 172 | #elif defined(CONFIG_TEGRA_UARTA_SDIO1) |
Lucas Stach | a2cfe63 | 2012-05-16 08:21:02 +0000 | [diff] [blame] | 173 | FUNCMUX_UART1_SDIO1, |
Tom Warren | b287103 | 2012-12-11 13:34:15 +0000 | [diff] [blame] | 174 | #else |
Stephen Warren | b9607e7 | 2012-05-14 13:13:45 +0000 | [diff] [blame] | 175 | FUNCMUX_UART1_IRRX_IRTX, |
Stephen Warren | 4727a13 | 2013-01-22 06:20:08 +0000 | [diff] [blame] | 176 | #endif |
| 177 | FUNCMUX_UART2_UAD, |
Stephen Warren | b9607e7 | 2012-05-14 13:13:45 +0000 | [diff] [blame] | 178 | -1, |
| 179 | FUNCMUX_UART4_GMC, |
| 180 | -1, |
Tom Warren | e23bb6a | 2013-01-28 13:32:10 +0000 | [diff] [blame] | 181 | #elif defined(CONFIG_TEGRA30) |
Tom Warren | b287103 | 2012-12-11 13:34:15 +0000 | [diff] [blame] | 182 | FUNCMUX_UART1_ULPI, /* UARTA */ |
| 183 | -1, |
| 184 | -1, |
| 185 | -1, |
| 186 | -1, |
Tom Warren | 2f5dac9 | 2014-01-24 12:46:16 -0700 | [diff] [blame] | 187 | #elif defined(CONFIG_TEGRA114) |
Tom Warren | e23bb6a | 2013-01-28 13:32:10 +0000 | [diff] [blame] | 188 | -1, |
| 189 | -1, |
| 190 | -1, |
| 191 | FUNCMUX_UART4_GMI, /* UARTD */ |
| 192 | -1, |
Tom Warren | 7aaa5a6 | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 193 | #elif defined(CONFIG_TEGRA124) |
Tom Warren | 2f5dac9 | 2014-01-24 12:46:16 -0700 | [diff] [blame] | 194 | FUNCMUX_UART1_KBC, /* UARTA */ |
| 195 | -1, |
| 196 | -1, |
| 197 | FUNCMUX_UART4_GPIO, /* UARTD */ |
| 198 | -1, |
Tom Warren | 7aaa5a6 | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 199 | #else /* Tegra210 */ |
| 200 | FUNCMUX_UART1_UART1, /* UARTA */ |
| 201 | -1, |
| 202 | -1, |
| 203 | FUNCMUX_UART4_UART4, /* UARTD */ |
| 204 | -1, |
Tom Warren | b287103 | 2012-12-11 13:34:15 +0000 | [diff] [blame] | 205 | #endif |
Stephen Warren | b9607e7 | 2012-05-14 13:13:45 +0000 | [diff] [blame] | 206 | }; |
| 207 | |
Simon Glass | bb6997f | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 208 | /** |
| 209 | * Set up the specified uarts |
| 210 | * |
| 211 | * @param uarts_ids Mask containing UARTs to init (UARTx) |
| 212 | */ |
| 213 | static void setup_uarts(int uart_ids) |
| 214 | { |
| 215 | static enum periph_id id_for_uart[] = { |
| 216 | PERIPH_ID_UART1, |
| 217 | PERIPH_ID_UART2, |
| 218 | PERIPH_ID_UART3, |
| 219 | PERIPH_ID_UART4, |
Tom Warren | e23bb6a | 2013-01-28 13:32:10 +0000 | [diff] [blame] | 220 | PERIPH_ID_UART5, |
Simon Glass | bb6997f | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 221 | }; |
| 222 | size_t i; |
| 223 | |
| 224 | for (i = 0; i < UART_COUNT; i++) { |
| 225 | if (uart_ids & (1 << i)) { |
| 226 | enum periph_id id = id_for_uart[i]; |
| 227 | |
Stephen Warren | b9607e7 | 2012-05-14 13:13:45 +0000 | [diff] [blame] | 228 | funcmux_select(id, uart_configs[i]); |
Simon Glass | bb6997f | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 229 | clock_ll_start_uart(id); |
| 230 | } |
| 231 | } |
| 232 | } |
Thierry Reding | 07ea02b | 2019-04-15 11:32:21 +0200 | [diff] [blame] | 233 | #endif |
Simon Glass | bb6997f | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 234 | |
| 235 | void board_init_uart_f(void) |
| 236 | { |
Thierry Reding | 07ea02b | 2019-04-15 11:32:21 +0200 | [diff] [blame] | 237 | #if IS_ENABLED(CONFIG_TEGRA_PINCTRL) |
Simon Glass | bb6997f | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 238 | int uart_ids = 0; /* bit mask of which UART ids to enable */ |
| 239 | |
Tom Warren | 29f3e3f | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 240 | #ifdef CONFIG_TEGRA_ENABLE_UARTA |
Simon Glass | bb6997f | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 241 | uart_ids |= UARTA; |
| 242 | #endif |
Tom Warren | 29f3e3f | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 243 | #ifdef CONFIG_TEGRA_ENABLE_UARTB |
Simon Glass | bb6997f | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 244 | uart_ids |= UARTB; |
| 245 | #endif |
Tom Warren | e23bb6a | 2013-01-28 13:32:10 +0000 | [diff] [blame] | 246 | #ifdef CONFIG_TEGRA_ENABLE_UARTC |
| 247 | uart_ids |= UARTC; |
| 248 | #endif |
Tom Warren | 29f3e3f | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 249 | #ifdef CONFIG_TEGRA_ENABLE_UARTD |
Simon Glass | bb6997f | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 250 | uart_ids |= UARTD; |
| 251 | #endif |
Tom Warren | e23bb6a | 2013-01-28 13:32:10 +0000 | [diff] [blame] | 252 | #ifdef CONFIG_TEGRA_ENABLE_UARTE |
| 253 | uart_ids |= UARTE; |
| 254 | #endif |
Simon Glass | bb6997f | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 255 | setup_uarts(uart_ids); |
Thierry Reding | 07ea02b | 2019-04-15 11:32:21 +0200 | [diff] [blame] | 256 | #endif |
Simon Glass | bb6997f | 2011-11-28 15:04:39 +0000 | [diff] [blame] | 257 | } |
Simon Glass | bd29cb0 | 2012-01-09 13:22:15 +0000 | [diff] [blame] | 258 | |
Simon Glass | 878a3ed | 2015-12-04 08:58:39 -0700 | [diff] [blame] | 259 | #if !CONFIG_IS_ENABLED(OF_CONTROL) |
Thomas Chou | 1874626 | 2015-11-19 21:48:11 +0800 | [diff] [blame] | 260 | static struct ns16550_platdata ns16550_com1_pdata = { |
| 261 | .base = CONFIG_SYS_NS16550_COM1, |
| 262 | .reg_shift = 2, |
| 263 | .clock = CONFIG_SYS_NS16550_CLK, |
Heiko Schocher | 17fa032 | 2017-01-18 08:05:49 +0100 | [diff] [blame] | 264 | .fcr = UART_FCR_DEFVAL, |
Thomas Chou | 1874626 | 2015-11-19 21:48:11 +0800 | [diff] [blame] | 265 | }; |
| 266 | |
| 267 | U_BOOT_DEVICE(ns16550_com1) = { |
| 268 | "ns16550_serial", &ns16550_com1_pdata |
| 269 | }; |
| 270 | #endif |
| 271 | |
Trevor Woerner | 1001502 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 272 | #if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF) && !defined(CONFIG_ARM64) |
Simon Glass | bd29cb0 | 2012-01-09 13:22:15 +0000 | [diff] [blame] | 273 | void enable_caches(void) |
| 274 | { |
| 275 | /* Enable D-cache. I-cache is already enabled in start.S */ |
| 276 | dcache_enable(); |
| 277 | } |
| 278 | #endif |