blob: 31c49a7c84981928b30fdd5c3e0450c61d128ef1 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Tom Warren41b68382011-01-27 10:58:05 +00002/*
Tom Warrenab0cc6b2015-03-04 16:36:00 -07003 * (C) Copyright 2010-2015
Tom Warren41b68382011-01-27 10:58:05 +00004 * NVIDIA Corporation <www.nvidia.com>
Tom Warren41b68382011-01-27 10:58:05 +00005 */
6
7#include <common.h>
Simon Glass1d91ba72019-11-14 12:57:37 -07008#include <cpu_func.h>
Thomas Choue3b90262015-11-19 21:48:11 +08009#include <dm.h>
Simon Glass8e16b1e2019-12-28 10:45:05 -070010#include <init.h>
Thomas Choue3b90262015-11-19 21:48:11 +080011#include <ns16550.h>
Simon Glasseec13c42015-05-13 07:02:29 -060012#include <spl.h>
Tom Warren41b68382011-01-27 10:58:05 +000013#include <asm/io.h>
Thierry Reding45ad0b02019-04-15 11:32:18 +020014#if IS_ENABLED(CONFIG_TEGRA_CLKRST)
Simon Glass96b7c432011-11-28 15:04:39 +000015#include <asm/arch/clock.h>
Thierry Reding45ad0b02019-04-15 11:32:18 +020016#endif
Thierry Reding7c0b1502019-04-15 11:32:21 +020017#if IS_ENABLED(CONFIG_TEGRA_PINCTRL)
Simon Glass96b7c432011-11-28 15:04:39 +000018#include <asm/arch/funcmux.h>
Thierry Reding7c0b1502019-04-15 11:32:21 +020019#endif
Thierry Reding17987bb2019-04-15 11:32:20 +020020#if IS_ENABLED(CONFIG_TEGRA_MC)
Marcel Ziswilerc5ecf272014-10-10 23:32:32 +020021#include <asm/arch/mc.h>
Thierry Reding17987bb2019-04-15 11:32:20 +020022#endif
Tom Warrenab371962012-09-19 15:50:56 -070023#include <asm/arch/tegra.h>
Stephen Warren8d1fb312015-01-19 16:25:52 -070024#include <asm/arch-tegra/ap.h>
Lucas Stache80f7ca2012-09-29 10:02:08 +000025#include <asm/arch-tegra/board.h>
Thierry Reding7cef2b22019-04-15 11:32:28 +020026#include <asm/arch-tegra/cboot.h>
Tom Warrenab371962012-09-19 15:50:56 -070027#include <asm/arch-tegra/pmc.h>
28#include <asm/arch-tegra/sys_proto.h>
29#include <asm/arch-tegra/warmboot.h>
Tom Warren41b68382011-01-27 10:58:05 +000030
Tom Warren021a8bb2015-07-08 08:05:35 -070031void save_boot_params_ret(void);
32
Tom Warren41b68382011-01-27 10:58:05 +000033DECLARE_GLOBAL_DATA_PTR;
34
Simon Glass96b7c432011-11-28 15:04:39 +000035enum {
36 /* UARTs which we can enable */
37 UARTA = 1 << 0,
38 UARTB = 1 << 1,
Tom Warrene3d95bc2013-01-28 13:32:10 +000039 UARTC = 1 << 2,
Simon Glass96b7c432011-11-28 15:04:39 +000040 UARTD = 1 << 3,
Tom Warrene3d95bc2013-01-28 13:32:10 +000041 UARTE = 1 << 4,
42 UART_COUNT = 5,
Simon Glass96b7c432011-11-28 15:04:39 +000043};
44
Simon Glasseec13c42015-05-13 07:02:29 -060045static bool from_spl __attribute__ ((section(".data")));
46
47#ifndef CONFIG_SPL_BUILD
Thierry Redingf6270a62019-04-15 11:32:23 +020048void save_boot_params(unsigned long r0, unsigned long r1, unsigned long r2,
49 unsigned long r3)
Simon Glasseec13c42015-05-13 07:02:29 -060050{
51 from_spl = r0 != UBOOT_NOT_LOADED_FROM_SPL;
Thierry Reding7cef2b22019-04-15 11:32:28 +020052
53 /*
54 * The logic for this is somewhat indirect. The purpose of the marker
55 * (UBOOT_NOT_LOADED_FROM_SPL) is in fact used to determine if U-Boot
56 * was loaded from a read-only instance of itself, which is something
57 * that can happen in secure boot setups. So basically the presence
58 * of the marker is an indication that U-Boot was loaded by one such
59 * special variant of U-Boot. Conversely, the absence of the marker
60 * indicates that this instance of U-Boot was loaded by something
61 * other than a special U-Boot. This could be SPL, but it could just
62 * as well be one of any number of other first stage bootloaders.
63 */
64 if (from_spl)
65 cboot_save_boot_params(r0, r1, r2, r3);
66
Simon Glasseec13c42015-05-13 07:02:29 -060067 save_boot_params_ret();
68}
69#endif
70
71bool spl_was_boot_source(void)
72{
73 return from_spl;
74}
75
Stephen Warren8d1fb312015-01-19 16:25:52 -070076#if defined(CONFIG_TEGRA_SUPPORT_NON_SECURE)
77#if !defined(CONFIG_TEGRA124)
78#error tegra_cpu_is_non_secure has only been validated on Tegra124
79#endif
80bool tegra_cpu_is_non_secure(void)
81{
82 /*
83 * This register reads 0xffffffff in non-secure mode. This register
84 * only implements bits 31:20, so the lower bits will always read 0 in
85 * secure mode. Thus, the lower bits are an indicator for secure vs.
86 * non-secure mode.
87 */
88 struct mc_ctlr *mc = (struct mc_ctlr *)NV_PA_MC_BASE;
89 uint32_t mc_s_cfg0 = readl(&mc->mc_security_cfg0);
90 return (mc_s_cfg0 & 1) == 1;
91}
92#endif
93
Thierry Reding17987bb2019-04-15 11:32:20 +020094#if IS_ENABLED(CONFIG_TEGRA_MC)
Stephen Warren1b4af6b2014-07-02 14:12:30 -060095/* Read the RAM size directly from the memory controller */
Stephen Warren6718af02015-08-07 16:12:44 -060096static phys_size_t query_sdram_size(void)
Stephen Warren1b4af6b2014-07-02 14:12:30 -060097{
98 struct mc_ctlr *const mc = (struct mc_ctlr *)NV_PA_MC_BASE;
Stephen Warren6718af02015-08-07 16:12:44 -060099 u32 emem_cfg;
100 phys_size_t size_bytes;
Stephen Warren1b4af6b2014-07-02 14:12:30 -0600101
Stephen Warren210bdb22014-12-23 10:34:50 -0700102 emem_cfg = readl(&mc->mc_emem_cfg);
Marcel Ziswilerc5ecf272014-10-10 23:32:32 +0200103#if defined(CONFIG_TEGRA20)
Stephen Warren210bdb22014-12-23 10:34:50 -0700104 debug("mc->mc_emem_cfg (MEM_SIZE_KB) = 0x%08x\n", emem_cfg);
105 size_bytes = get_ram_size((void *)PHYS_SDRAM_1, emem_cfg * 1024);
Marcel Ziswilerc5ecf272014-10-10 23:32:32 +0200106#else
Stephen Warren210bdb22014-12-23 10:34:50 -0700107 debug("mc->mc_emem_cfg (MEM_SIZE_MB) = 0x%08x\n", emem_cfg);
Stephen Warren6718af02015-08-07 16:12:44 -0600108#ifndef CONFIG_PHYS_64BIT
Stephen Warrenc8018052014-12-23 10:34:51 -0700109 /*
110 * If >=4GB RAM is present, the byte RAM size won't fit into 32-bits
111 * and will wrap. Clip the reported size to the maximum that a 32-bit
112 * variable can represent (rounded to a page).
113 */
114 if (emem_cfg >= 4096) {
115 size_bytes = U32_MAX & ~(0x1000 - 1);
Stephen Warren6718af02015-08-07 16:12:44 -0600116 } else
117#endif
118 {
Stephen Warrenc8018052014-12-23 10:34:51 -0700119 /* RAM size EMC is programmed to. */
Stephen Warren6718af02015-08-07 16:12:44 -0600120 size_bytes = (phys_size_t)emem_cfg * 1024 * 1024;
121#ifndef CONFIG_ARM64
Stephen Warrenc8018052014-12-23 10:34:51 -0700122 /*
123 * If all RAM fits within 32-bits, it can be accessed without
124 * LPAE, so go test the RAM size. Otherwise, we can't access
125 * all the RAM, and get_ram_size() would get confused, so
126 * avoid using it. There's no reason we should need this
127 * validation step anyway.
128 */
129 if (emem_cfg <= (0 - PHYS_SDRAM_1) / (1024 * 1024))
130 size_bytes = get_ram_size((void *)PHYS_SDRAM_1,
131 size_bytes);
Stephen Warren6718af02015-08-07 16:12:44 -0600132#endif
Stephen Warrenc8018052014-12-23 10:34:51 -0700133 }
Marcel Ziswilerc5ecf272014-10-10 23:32:32 +0200134#endif
Stephen Warren1b4af6b2014-07-02 14:12:30 -0600135
Marcel Ziswilerc5ecf272014-10-10 23:32:32 +0200136#if defined(CONFIG_TEGRA30) || defined(CONFIG_TEGRA114)
137 /* External memory limited to 2047 MB due to IROM/HI-VEC */
Stephen Warren210bdb22014-12-23 10:34:50 -0700138 if (size_bytes == SZ_2G)
139 size_bytes -= SZ_1M;
Stephen Warren1b4af6b2014-07-02 14:12:30 -0600140#endif
Tom Warren41b68382011-01-27 10:58:05 +0000141
Stephen Warren210bdb22014-12-23 10:34:50 -0700142 return size_bytes;
Marcel Ziswilerc5ecf272014-10-10 23:32:32 +0200143}
Thierry Reding17987bb2019-04-15 11:32:20 +0200144#endif
Marcel Ziswilerc5ecf272014-10-10 23:32:32 +0200145
Tom Warren41b68382011-01-27 10:58:05 +0000146int dram_init(void)
147{
Thierry Reding7cef2b22019-04-15 11:32:28 +0200148 int err;
149
150 /* try to initialize DRAM from cboot DTB first */
151 err = cboot_dram_init();
152 if (err == 0)
153 return 0;
154
Thierry Reding17987bb2019-04-15 11:32:20 +0200155#if IS_ENABLED(CONFIG_TEGRA_MC)
Tom Warren41b68382011-01-27 10:58:05 +0000156 /* We do not initialise DRAM here. We just query the size */
Simon Glassf6fcbbd2011-11-05 03:56:57 +0000157 gd->ram_size = query_sdram_size();
Thierry Reding17987bb2019-04-15 11:32:20 +0200158#endif
159
Tom Warren41b68382011-01-27 10:58:05 +0000160 return 0;
161}
162
Thierry Reding7c0b1502019-04-15 11:32:21 +0200163#if IS_ENABLED(CONFIG_TEGRA_PINCTRL)
Stephen Warren59f90102012-05-14 13:13:45 +0000164static int uart_configs[] = {
Tom Warren61c6d0e2012-12-11 13:34:15 +0000165#if defined(CONFIG_TEGRA20)
166 #if defined(CONFIG_TEGRA_UARTA_UAA_UAB)
Stephen Warren59f90102012-05-14 13:13:45 +0000167 FUNCMUX_UART1_UAA_UAB,
Tom Warren61c6d0e2012-12-11 13:34:15 +0000168 #elif defined(CONFIG_TEGRA_UARTA_GPU)
Stephen Warrene4c01a82012-05-16 05:59:59 +0000169 FUNCMUX_UART1_GPU,
Tom Warren61c6d0e2012-12-11 13:34:15 +0000170 #elif defined(CONFIG_TEGRA_UARTA_SDIO1)
Lucas Stach4de6eec2012-05-16 08:21:02 +0000171 FUNCMUX_UART1_SDIO1,
Tom Warren61c6d0e2012-12-11 13:34:15 +0000172 #else
Stephen Warren59f90102012-05-14 13:13:45 +0000173 FUNCMUX_UART1_IRRX_IRTX,
Stephen Warren811af732013-01-22 06:20:08 +0000174#endif
175 FUNCMUX_UART2_UAD,
Stephen Warren59f90102012-05-14 13:13:45 +0000176 -1,
177 FUNCMUX_UART4_GMC,
178 -1,
Tom Warrene3d95bc2013-01-28 13:32:10 +0000179#elif defined(CONFIG_TEGRA30)
Tom Warren61c6d0e2012-12-11 13:34:15 +0000180 FUNCMUX_UART1_ULPI, /* UARTA */
181 -1,
182 -1,
183 -1,
184 -1,
Tom Warrene5ffffd2014-01-24 12:46:16 -0700185#elif defined(CONFIG_TEGRA114)
Tom Warrene3d95bc2013-01-28 13:32:10 +0000186 -1,
187 -1,
188 -1,
189 FUNCMUX_UART4_GMI, /* UARTD */
190 -1,
Tom Warrenab0cc6b2015-03-04 16:36:00 -0700191#elif defined(CONFIG_TEGRA124)
Tom Warrene5ffffd2014-01-24 12:46:16 -0700192 FUNCMUX_UART1_KBC, /* UARTA */
193 -1,
194 -1,
195 FUNCMUX_UART4_GPIO, /* UARTD */
196 -1,
Tom Warrenab0cc6b2015-03-04 16:36:00 -0700197#else /* Tegra210 */
198 FUNCMUX_UART1_UART1, /* UARTA */
199 -1,
200 -1,
201 FUNCMUX_UART4_UART4, /* UARTD */
202 -1,
Tom Warren61c6d0e2012-12-11 13:34:15 +0000203#endif
Stephen Warren59f90102012-05-14 13:13:45 +0000204};
205
Simon Glass96b7c432011-11-28 15:04:39 +0000206/**
207 * Set up the specified uarts
208 *
209 * @param uarts_ids Mask containing UARTs to init (UARTx)
210 */
211static void setup_uarts(int uart_ids)
212{
213 static enum periph_id id_for_uart[] = {
214 PERIPH_ID_UART1,
215 PERIPH_ID_UART2,
216 PERIPH_ID_UART3,
217 PERIPH_ID_UART4,
Tom Warrene3d95bc2013-01-28 13:32:10 +0000218 PERIPH_ID_UART5,
Simon Glass96b7c432011-11-28 15:04:39 +0000219 };
220 size_t i;
221
222 for (i = 0; i < UART_COUNT; i++) {
223 if (uart_ids & (1 << i)) {
224 enum periph_id id = id_for_uart[i];
225
Stephen Warren59f90102012-05-14 13:13:45 +0000226 funcmux_select(id, uart_configs[i]);
Simon Glass96b7c432011-11-28 15:04:39 +0000227 clock_ll_start_uart(id);
228 }
229 }
230}
Thierry Reding7c0b1502019-04-15 11:32:21 +0200231#endif
Simon Glass96b7c432011-11-28 15:04:39 +0000232
233void board_init_uart_f(void)
234{
Thierry Reding7c0b1502019-04-15 11:32:21 +0200235#if IS_ENABLED(CONFIG_TEGRA_PINCTRL)
Simon Glass96b7c432011-11-28 15:04:39 +0000236 int uart_ids = 0; /* bit mask of which UART ids to enable */
237
Tom Warren22562a42012-09-04 17:00:24 -0700238#ifdef CONFIG_TEGRA_ENABLE_UARTA
Simon Glass96b7c432011-11-28 15:04:39 +0000239 uart_ids |= UARTA;
240#endif
Tom Warren22562a42012-09-04 17:00:24 -0700241#ifdef CONFIG_TEGRA_ENABLE_UARTB
Simon Glass96b7c432011-11-28 15:04:39 +0000242 uart_ids |= UARTB;
243#endif
Tom Warrene3d95bc2013-01-28 13:32:10 +0000244#ifdef CONFIG_TEGRA_ENABLE_UARTC
245 uart_ids |= UARTC;
246#endif
Tom Warren22562a42012-09-04 17:00:24 -0700247#ifdef CONFIG_TEGRA_ENABLE_UARTD
Simon Glass96b7c432011-11-28 15:04:39 +0000248 uart_ids |= UARTD;
249#endif
Tom Warrene3d95bc2013-01-28 13:32:10 +0000250#ifdef CONFIG_TEGRA_ENABLE_UARTE
251 uart_ids |= UARTE;
252#endif
Simon Glass96b7c432011-11-28 15:04:39 +0000253 setup_uarts(uart_ids);
Thierry Reding7c0b1502019-04-15 11:32:21 +0200254#endif
Simon Glass96b7c432011-11-28 15:04:39 +0000255}
Simon Glass410012f2012-01-09 13:22:15 +0000256
Simon Glassf4402d02015-12-04 08:58:39 -0700257#if !CONFIG_IS_ENABLED(OF_CONTROL)
Thomas Choue3b90262015-11-19 21:48:11 +0800258static struct ns16550_platdata ns16550_com1_pdata = {
259 .base = CONFIG_SYS_NS16550_COM1,
260 .reg_shift = 2,
261 .clock = CONFIG_SYS_NS16550_CLK,
Heiko Schocher06f108e2017-01-18 08:05:49 +0100262 .fcr = UART_FCR_DEFVAL,
Thomas Choue3b90262015-11-19 21:48:11 +0800263};
264
265U_BOOT_DEVICE(ns16550_com1) = {
266 "ns16550_serial", &ns16550_com1_pdata
267};
268#endif
269
Trevor Woerner43ec7e02019-05-03 09:41:00 -0400270#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF) && !defined(CONFIG_ARM64)
Simon Glass410012f2012-01-09 13:22:15 +0000271void enable_caches(void)
272{
273 /* Enable D-cache. I-cache is already enabled in start.S */
274 dcache_enable();
275}
276#endif