blob: 61eaba711a063c36e27ce858a12da1fbf24efac3 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Tom Warren3f82b1d2011-01-27 10:58:05 +00002/*
Tom Warren7aaa5a62015-03-04 16:36:00 -07003 * (C) Copyright 2010-2015
Tom Warren3f82b1d2011-01-27 10:58:05 +00004 * NVIDIA Corporation <www.nvidia.com>
Tom Warren3f82b1d2011-01-27 10:58:05 +00005 */
6
7#include <common.h>
Simon Glass9edefc22019-11-14 12:57:37 -07008#include <cpu_func.h>
Thomas Chou18746262015-11-19 21:48:11 +08009#include <dm.h>
10#include <ns16550.h>
Simon Glass537e9672015-05-13 07:02:29 -060011#include <spl.h>
Tom Warren3f82b1d2011-01-27 10:58:05 +000012#include <asm/io.h>
Thierry Redingb64e0b92019-04-15 11:32:18 +020013#if IS_ENABLED(CONFIG_TEGRA_CLKRST)
Simon Glassbb6997f2011-11-28 15:04:39 +000014#include <asm/arch/clock.h>
Thierry Redingb64e0b92019-04-15 11:32:18 +020015#endif
Thierry Reding07ea02b2019-04-15 11:32:21 +020016#if IS_ENABLED(CONFIG_TEGRA_PINCTRL)
Simon Glassbb6997f2011-11-28 15:04:39 +000017#include <asm/arch/funcmux.h>
Thierry Reding07ea02b2019-04-15 11:32:21 +020018#endif
Thierry Reding1a869c72019-04-15 11:32:20 +020019#if IS_ENABLED(CONFIG_TEGRA_MC)
Marcel Ziswiler8c33ba72014-10-10 23:32:32 +020020#include <asm/arch/mc.h>
Thierry Reding1a869c72019-04-15 11:32:20 +020021#endif
Tom Warren150c2492012-09-19 15:50:56 -070022#include <asm/arch/tegra.h>
Stephen Warren73c38932015-01-19 16:25:52 -070023#include <asm/arch-tegra/ap.h>
Lucas Stach516f00b2012-09-29 10:02:08 +000024#include <asm/arch-tegra/board.h>
Thierry Redinga0dbc132019-04-15 11:32:28 +020025#include <asm/arch-tegra/cboot.h>
Tom Warren150c2492012-09-19 15:50:56 -070026#include <asm/arch-tegra/pmc.h>
27#include <asm/arch-tegra/sys_proto.h>
28#include <asm/arch-tegra/warmboot.h>
Tom Warren3f82b1d2011-01-27 10:58:05 +000029
Tom Warren659a0752015-07-08 08:05:35 -070030void save_boot_params_ret(void);
31
Tom Warren3f82b1d2011-01-27 10:58:05 +000032DECLARE_GLOBAL_DATA_PTR;
33
Simon Glassbb6997f2011-11-28 15:04:39 +000034enum {
35 /* UARTs which we can enable */
36 UARTA = 1 << 0,
37 UARTB = 1 << 1,
Tom Warrene23bb6a2013-01-28 13:32:10 +000038 UARTC = 1 << 2,
Simon Glassbb6997f2011-11-28 15:04:39 +000039 UARTD = 1 << 3,
Tom Warrene23bb6a2013-01-28 13:32:10 +000040 UARTE = 1 << 4,
41 UART_COUNT = 5,
Simon Glassbb6997f2011-11-28 15:04:39 +000042};
43
Simon Glass537e9672015-05-13 07:02:29 -060044static bool from_spl __attribute__ ((section(".data")));
45
46#ifndef CONFIG_SPL_BUILD
Thierry Reding8f60d182019-04-15 11:32:23 +020047void save_boot_params(unsigned long r0, unsigned long r1, unsigned long r2,
48 unsigned long r3)
Simon Glass537e9672015-05-13 07:02:29 -060049{
50 from_spl = r0 != UBOOT_NOT_LOADED_FROM_SPL;
Thierry Redinga0dbc132019-04-15 11:32:28 +020051
52 /*
53 * The logic for this is somewhat indirect. The purpose of the marker
54 * (UBOOT_NOT_LOADED_FROM_SPL) is in fact used to determine if U-Boot
55 * was loaded from a read-only instance of itself, which is something
56 * that can happen in secure boot setups. So basically the presence
57 * of the marker is an indication that U-Boot was loaded by one such
58 * special variant of U-Boot. Conversely, the absence of the marker
59 * indicates that this instance of U-Boot was loaded by something
60 * other than a special U-Boot. This could be SPL, but it could just
61 * as well be one of any number of other first stage bootloaders.
62 */
63 if (from_spl)
64 cboot_save_boot_params(r0, r1, r2, r3);
65
Simon Glass537e9672015-05-13 07:02:29 -060066 save_boot_params_ret();
67}
68#endif
69
70bool spl_was_boot_source(void)
71{
72 return from_spl;
73}
74
Stephen Warren73c38932015-01-19 16:25:52 -070075#if defined(CONFIG_TEGRA_SUPPORT_NON_SECURE)
76#if !defined(CONFIG_TEGRA124)
77#error tegra_cpu_is_non_secure has only been validated on Tegra124
78#endif
79bool tegra_cpu_is_non_secure(void)
80{
81 /*
82 * This register reads 0xffffffff in non-secure mode. This register
83 * only implements bits 31:20, so the lower bits will always read 0 in
84 * secure mode. Thus, the lower bits are an indicator for secure vs.
85 * non-secure mode.
86 */
87 struct mc_ctlr *mc = (struct mc_ctlr *)NV_PA_MC_BASE;
88 uint32_t mc_s_cfg0 = readl(&mc->mc_security_cfg0);
89 return (mc_s_cfg0 & 1) == 1;
90}
91#endif
92
Thierry Reding1a869c72019-04-15 11:32:20 +020093#if IS_ENABLED(CONFIG_TEGRA_MC)
Stephen Warrenaeb3fcb2014-07-02 14:12:30 -060094/* Read the RAM size directly from the memory controller */
Stephen Warrena5fc3d02015-08-07 16:12:44 -060095static phys_size_t query_sdram_size(void)
Stephen Warrenaeb3fcb2014-07-02 14:12:30 -060096{
97 struct mc_ctlr *const mc = (struct mc_ctlr *)NV_PA_MC_BASE;
Stephen Warrena5fc3d02015-08-07 16:12:44 -060098 u32 emem_cfg;
99 phys_size_t size_bytes;
Stephen Warrenaeb3fcb2014-07-02 14:12:30 -0600100
Stephen Warren3a2cab52014-12-23 10:34:50 -0700101 emem_cfg = readl(&mc->mc_emem_cfg);
Marcel Ziswiler8c33ba72014-10-10 23:32:32 +0200102#if defined(CONFIG_TEGRA20)
Stephen Warren3a2cab52014-12-23 10:34:50 -0700103 debug("mc->mc_emem_cfg (MEM_SIZE_KB) = 0x%08x\n", emem_cfg);
104 size_bytes = get_ram_size((void *)PHYS_SDRAM_1, emem_cfg * 1024);
Marcel Ziswiler8c33ba72014-10-10 23:32:32 +0200105#else
Stephen Warren3a2cab52014-12-23 10:34:50 -0700106 debug("mc->mc_emem_cfg (MEM_SIZE_MB) = 0x%08x\n", emem_cfg);
Stephen Warrena5fc3d02015-08-07 16:12:44 -0600107#ifndef CONFIG_PHYS_64BIT
Stephen Warren56519c42014-12-23 10:34:51 -0700108 /*
109 * If >=4GB RAM is present, the byte RAM size won't fit into 32-bits
110 * and will wrap. Clip the reported size to the maximum that a 32-bit
111 * variable can represent (rounded to a page).
112 */
113 if (emem_cfg >= 4096) {
114 size_bytes = U32_MAX & ~(0x1000 - 1);
Stephen Warrena5fc3d02015-08-07 16:12:44 -0600115 } else
116#endif
117 {
Stephen Warren56519c42014-12-23 10:34:51 -0700118 /* RAM size EMC is programmed to. */
Stephen Warrena5fc3d02015-08-07 16:12:44 -0600119 size_bytes = (phys_size_t)emem_cfg * 1024 * 1024;
120#ifndef CONFIG_ARM64
Stephen Warren56519c42014-12-23 10:34:51 -0700121 /*
122 * If all RAM fits within 32-bits, it can be accessed without
123 * LPAE, so go test the RAM size. Otherwise, we can't access
124 * all the RAM, and get_ram_size() would get confused, so
125 * avoid using it. There's no reason we should need this
126 * validation step anyway.
127 */
128 if (emem_cfg <= (0 - PHYS_SDRAM_1) / (1024 * 1024))
129 size_bytes = get_ram_size((void *)PHYS_SDRAM_1,
130 size_bytes);
Stephen Warrena5fc3d02015-08-07 16:12:44 -0600131#endif
Stephen Warren56519c42014-12-23 10:34:51 -0700132 }
Stephen Warrenaeb3fcb2014-07-02 14:12:30 -0600133#endif
Tom Warren3f82b1d2011-01-27 10:58:05 +0000134
Marcel Ziswiler8c33ba72014-10-10 23:32:32 +0200135#if defined(CONFIG_TEGRA30) || defined(CONFIG_TEGRA114)
136 /* External memory limited to 2047 MB due to IROM/HI-VEC */
Stephen Warren3a2cab52014-12-23 10:34:50 -0700137 if (size_bytes == SZ_2G)
138 size_bytes -= SZ_1M;
Marcel Ziswiler8c33ba72014-10-10 23:32:32 +0200139#endif
140
Stephen Warren3a2cab52014-12-23 10:34:50 -0700141 return size_bytes;
Marcel Ziswiler8c33ba72014-10-10 23:32:32 +0200142}
Thierry Reding1a869c72019-04-15 11:32:20 +0200143#endif
Marcel Ziswiler8c33ba72014-10-10 23:32:32 +0200144
Tom Warren3f82b1d2011-01-27 10:58:05 +0000145int dram_init(void)
146{
Thierry Redinga0dbc132019-04-15 11:32:28 +0200147 int err;
148
149 /* try to initialize DRAM from cboot DTB first */
150 err = cboot_dram_init();
151 if (err == 0)
152 return 0;
153
Thierry Reding1a869c72019-04-15 11:32:20 +0200154#if IS_ENABLED(CONFIG_TEGRA_MC)
Tom Warren3f82b1d2011-01-27 10:58:05 +0000155 /* We do not initialise DRAM here. We just query the size */
Simon Glass7f8c0702011-11-05 03:56:57 +0000156 gd->ram_size = query_sdram_size();
Thierry Reding1a869c72019-04-15 11:32:20 +0200157#endif
158
Tom Warren3f82b1d2011-01-27 10:58:05 +0000159 return 0;
160}
161
Thierry Reding07ea02b2019-04-15 11:32:21 +0200162#if IS_ENABLED(CONFIG_TEGRA_PINCTRL)
Stephen Warrenb9607e72012-05-14 13:13:45 +0000163static int uart_configs[] = {
Tom Warrenb2871032012-12-11 13:34:15 +0000164#if defined(CONFIG_TEGRA20)
165 #if defined(CONFIG_TEGRA_UARTA_UAA_UAB)
Stephen Warrenb9607e72012-05-14 13:13:45 +0000166 FUNCMUX_UART1_UAA_UAB,
Tom Warrenb2871032012-12-11 13:34:15 +0000167 #elif defined(CONFIG_TEGRA_UARTA_GPU)
Stephen Warrene21649b2012-05-16 05:59:59 +0000168 FUNCMUX_UART1_GPU,
Tom Warrenb2871032012-12-11 13:34:15 +0000169 #elif defined(CONFIG_TEGRA_UARTA_SDIO1)
Lucas Stacha2cfe632012-05-16 08:21:02 +0000170 FUNCMUX_UART1_SDIO1,
Tom Warrenb2871032012-12-11 13:34:15 +0000171 #else
Stephen Warrenb9607e72012-05-14 13:13:45 +0000172 FUNCMUX_UART1_IRRX_IRTX,
Stephen Warren4727a132013-01-22 06:20:08 +0000173#endif
174 FUNCMUX_UART2_UAD,
Stephen Warrenb9607e72012-05-14 13:13:45 +0000175 -1,
176 FUNCMUX_UART4_GMC,
177 -1,
Tom Warrene23bb6a2013-01-28 13:32:10 +0000178#elif defined(CONFIG_TEGRA30)
Tom Warrenb2871032012-12-11 13:34:15 +0000179 FUNCMUX_UART1_ULPI, /* UARTA */
180 -1,
181 -1,
182 -1,
183 -1,
Tom Warren2f5dac92014-01-24 12:46:16 -0700184#elif defined(CONFIG_TEGRA114)
Tom Warrene23bb6a2013-01-28 13:32:10 +0000185 -1,
186 -1,
187 -1,
188 FUNCMUX_UART4_GMI, /* UARTD */
189 -1,
Tom Warren7aaa5a62015-03-04 16:36:00 -0700190#elif defined(CONFIG_TEGRA124)
Tom Warren2f5dac92014-01-24 12:46:16 -0700191 FUNCMUX_UART1_KBC, /* UARTA */
192 -1,
193 -1,
194 FUNCMUX_UART4_GPIO, /* UARTD */
195 -1,
Tom Warren7aaa5a62015-03-04 16:36:00 -0700196#else /* Tegra210 */
197 FUNCMUX_UART1_UART1, /* UARTA */
198 -1,
199 -1,
200 FUNCMUX_UART4_UART4, /* UARTD */
201 -1,
Tom Warrenb2871032012-12-11 13:34:15 +0000202#endif
Stephen Warrenb9607e72012-05-14 13:13:45 +0000203};
204
Simon Glassbb6997f2011-11-28 15:04:39 +0000205/**
206 * Set up the specified uarts
207 *
208 * @param uarts_ids Mask containing UARTs to init (UARTx)
209 */
210static void setup_uarts(int uart_ids)
211{
212 static enum periph_id id_for_uart[] = {
213 PERIPH_ID_UART1,
214 PERIPH_ID_UART2,
215 PERIPH_ID_UART3,
216 PERIPH_ID_UART4,
Tom Warrene23bb6a2013-01-28 13:32:10 +0000217 PERIPH_ID_UART5,
Simon Glassbb6997f2011-11-28 15:04:39 +0000218 };
219 size_t i;
220
221 for (i = 0; i < UART_COUNT; i++) {
222 if (uart_ids & (1 << i)) {
223 enum periph_id id = id_for_uart[i];
224
Stephen Warrenb9607e72012-05-14 13:13:45 +0000225 funcmux_select(id, uart_configs[i]);
Simon Glassbb6997f2011-11-28 15:04:39 +0000226 clock_ll_start_uart(id);
227 }
228 }
229}
Thierry Reding07ea02b2019-04-15 11:32:21 +0200230#endif
Simon Glassbb6997f2011-11-28 15:04:39 +0000231
232void board_init_uart_f(void)
233{
Thierry Reding07ea02b2019-04-15 11:32:21 +0200234#if IS_ENABLED(CONFIG_TEGRA_PINCTRL)
Simon Glassbb6997f2011-11-28 15:04:39 +0000235 int uart_ids = 0; /* bit mask of which UART ids to enable */
236
Tom Warren29f3e3f2012-09-04 17:00:24 -0700237#ifdef CONFIG_TEGRA_ENABLE_UARTA
Simon Glassbb6997f2011-11-28 15:04:39 +0000238 uart_ids |= UARTA;
239#endif
Tom Warren29f3e3f2012-09-04 17:00:24 -0700240#ifdef CONFIG_TEGRA_ENABLE_UARTB
Simon Glassbb6997f2011-11-28 15:04:39 +0000241 uart_ids |= UARTB;
242#endif
Tom Warrene23bb6a2013-01-28 13:32:10 +0000243#ifdef CONFIG_TEGRA_ENABLE_UARTC
244 uart_ids |= UARTC;
245#endif
Tom Warren29f3e3f2012-09-04 17:00:24 -0700246#ifdef CONFIG_TEGRA_ENABLE_UARTD
Simon Glassbb6997f2011-11-28 15:04:39 +0000247 uart_ids |= UARTD;
248#endif
Tom Warrene23bb6a2013-01-28 13:32:10 +0000249#ifdef CONFIG_TEGRA_ENABLE_UARTE
250 uart_ids |= UARTE;
251#endif
Simon Glassbb6997f2011-11-28 15:04:39 +0000252 setup_uarts(uart_ids);
Thierry Reding07ea02b2019-04-15 11:32:21 +0200253#endif
Simon Glassbb6997f2011-11-28 15:04:39 +0000254}
Simon Glassbd29cb02012-01-09 13:22:15 +0000255
Simon Glass878a3ed2015-12-04 08:58:39 -0700256#if !CONFIG_IS_ENABLED(OF_CONTROL)
Thomas Chou18746262015-11-19 21:48:11 +0800257static struct ns16550_platdata ns16550_com1_pdata = {
258 .base = CONFIG_SYS_NS16550_COM1,
259 .reg_shift = 2,
260 .clock = CONFIG_SYS_NS16550_CLK,
Heiko Schocher17fa0322017-01-18 08:05:49 +0100261 .fcr = UART_FCR_DEFVAL,
Thomas Chou18746262015-11-19 21:48:11 +0800262};
263
264U_BOOT_DEVICE(ns16550_com1) = {
265 "ns16550_serial", &ns16550_com1_pdata
266};
267#endif
268
Trevor Woerner10015022019-05-03 09:41:00 -0400269#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF) && !defined(CONFIG_ARM64)
Simon Glassbd29cb02012-01-09 13:22:15 +0000270void enable_caches(void)
271{
272 /* Enable D-cache. I-cache is already enabled in start.S */
273 dcache_enable();
274}
275#endif