blob: b00e4b5c1e2531d45ccdde0d69cfaf8f6ce3f21c [file] [log] [blame]
Tom Warren41b68382011-01-27 10:58:05 +00001/*
Tom Warrenab0cc6b2015-03-04 16:36:00 -07002 * (C) Copyright 2010-2015
Tom Warren41b68382011-01-27 10:58:05 +00003 * NVIDIA Corporation <www.nvidia.com>
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Tom Warren41b68382011-01-27 10:58:05 +00006 */
7
8#include <common.h>
Simon Glasseec13c42015-05-13 07:02:29 -06009#include <spl.h>
Tom Warren41b68382011-01-27 10:58:05 +000010#include <asm/io.h>
Simon Glass96b7c432011-11-28 15:04:39 +000011#include <asm/arch/clock.h>
12#include <asm/arch/funcmux.h>
Marcel Ziswilerc5ecf272014-10-10 23:32:32 +020013#include <asm/arch/mc.h>
Tom Warrenab371962012-09-19 15:50:56 -070014#include <asm/arch/tegra.h>
Stephen Warren8d1fb312015-01-19 16:25:52 -070015#include <asm/arch-tegra/ap.h>
Lucas Stache80f7ca2012-09-29 10:02:08 +000016#include <asm/arch-tegra/board.h>
Tom Warrenab371962012-09-19 15:50:56 -070017#include <asm/arch-tegra/pmc.h>
18#include <asm/arch-tegra/sys_proto.h>
19#include <asm/arch-tegra/warmboot.h>
Tom Warren41b68382011-01-27 10:58:05 +000020
Tom Warren021a8bb2015-07-08 08:05:35 -070021void save_boot_params_ret(void);
22
Tom Warren41b68382011-01-27 10:58:05 +000023DECLARE_GLOBAL_DATA_PTR;
24
Simon Glass96b7c432011-11-28 15:04:39 +000025enum {
26 /* UARTs which we can enable */
27 UARTA = 1 << 0,
28 UARTB = 1 << 1,
Tom Warrene3d95bc2013-01-28 13:32:10 +000029 UARTC = 1 << 2,
Simon Glass96b7c432011-11-28 15:04:39 +000030 UARTD = 1 << 3,
Tom Warrene3d95bc2013-01-28 13:32:10 +000031 UARTE = 1 << 4,
32 UART_COUNT = 5,
Simon Glass96b7c432011-11-28 15:04:39 +000033};
34
Simon Glasseec13c42015-05-13 07:02:29 -060035static bool from_spl __attribute__ ((section(".data")));
36
37#ifndef CONFIG_SPL_BUILD
38void save_boot_params(u32 r0, u32 r1, u32 r2, u32 r3)
39{
40 from_spl = r0 != UBOOT_NOT_LOADED_FROM_SPL;
41 save_boot_params_ret();
42}
43#endif
44
45bool spl_was_boot_source(void)
46{
47 return from_spl;
48}
49
Stephen Warren8d1fb312015-01-19 16:25:52 -070050#if defined(CONFIG_TEGRA_SUPPORT_NON_SECURE)
51#if !defined(CONFIG_TEGRA124)
52#error tegra_cpu_is_non_secure has only been validated on Tegra124
53#endif
54bool tegra_cpu_is_non_secure(void)
55{
56 /*
57 * This register reads 0xffffffff in non-secure mode. This register
58 * only implements bits 31:20, so the lower bits will always read 0 in
59 * secure mode. Thus, the lower bits are an indicator for secure vs.
60 * non-secure mode.
61 */
62 struct mc_ctlr *mc = (struct mc_ctlr *)NV_PA_MC_BASE;
63 uint32_t mc_s_cfg0 = readl(&mc->mc_security_cfg0);
64 return (mc_s_cfg0 & 1) == 1;
65}
66#endif
67
Stephen Warren1b4af6b2014-07-02 14:12:30 -060068/* Read the RAM size directly from the memory controller */
Stephen Warren6718af02015-08-07 16:12:44 -060069static phys_size_t query_sdram_size(void)
Stephen Warren1b4af6b2014-07-02 14:12:30 -060070{
71 struct mc_ctlr *const mc = (struct mc_ctlr *)NV_PA_MC_BASE;
Stephen Warren6718af02015-08-07 16:12:44 -060072 u32 emem_cfg;
73 phys_size_t size_bytes;
Stephen Warren1b4af6b2014-07-02 14:12:30 -060074
Stephen Warren210bdb22014-12-23 10:34:50 -070075 emem_cfg = readl(&mc->mc_emem_cfg);
Marcel Ziswilerc5ecf272014-10-10 23:32:32 +020076#if defined(CONFIG_TEGRA20)
Stephen Warren210bdb22014-12-23 10:34:50 -070077 debug("mc->mc_emem_cfg (MEM_SIZE_KB) = 0x%08x\n", emem_cfg);
78 size_bytes = get_ram_size((void *)PHYS_SDRAM_1, emem_cfg * 1024);
Marcel Ziswilerc5ecf272014-10-10 23:32:32 +020079#else
Stephen Warren210bdb22014-12-23 10:34:50 -070080 debug("mc->mc_emem_cfg (MEM_SIZE_MB) = 0x%08x\n", emem_cfg);
Stephen Warren6718af02015-08-07 16:12:44 -060081#ifndef CONFIG_PHYS_64BIT
Stephen Warrenc8018052014-12-23 10:34:51 -070082 /*
83 * If >=4GB RAM is present, the byte RAM size won't fit into 32-bits
84 * and will wrap. Clip the reported size to the maximum that a 32-bit
85 * variable can represent (rounded to a page).
86 */
87 if (emem_cfg >= 4096) {
88 size_bytes = U32_MAX & ~(0x1000 - 1);
Stephen Warren6718af02015-08-07 16:12:44 -060089 } else
90#endif
91 {
Stephen Warrenc8018052014-12-23 10:34:51 -070092 /* RAM size EMC is programmed to. */
Stephen Warren6718af02015-08-07 16:12:44 -060093 size_bytes = (phys_size_t)emem_cfg * 1024 * 1024;
94#ifndef CONFIG_ARM64
Stephen Warrenc8018052014-12-23 10:34:51 -070095 /*
96 * If all RAM fits within 32-bits, it can be accessed without
97 * LPAE, so go test the RAM size. Otherwise, we can't access
98 * all the RAM, and get_ram_size() would get confused, so
99 * avoid using it. There's no reason we should need this
100 * validation step anyway.
101 */
102 if (emem_cfg <= (0 - PHYS_SDRAM_1) / (1024 * 1024))
103 size_bytes = get_ram_size((void *)PHYS_SDRAM_1,
104 size_bytes);
Stephen Warren6718af02015-08-07 16:12:44 -0600105#endif
Stephen Warrenc8018052014-12-23 10:34:51 -0700106 }
Marcel Ziswilerc5ecf272014-10-10 23:32:32 +0200107#endif
Stephen Warren1b4af6b2014-07-02 14:12:30 -0600108
Marcel Ziswilerc5ecf272014-10-10 23:32:32 +0200109#if defined(CONFIG_TEGRA30) || defined(CONFIG_TEGRA114)
110 /* External memory limited to 2047 MB due to IROM/HI-VEC */
Stephen Warren210bdb22014-12-23 10:34:50 -0700111 if (size_bytes == SZ_2G)
112 size_bytes -= SZ_1M;
Stephen Warren1b4af6b2014-07-02 14:12:30 -0600113#endif
Tom Warren41b68382011-01-27 10:58:05 +0000114
Stephen Warren210bdb22014-12-23 10:34:50 -0700115 return size_bytes;
Marcel Ziswilerc5ecf272014-10-10 23:32:32 +0200116}
117
Tom Warren41b68382011-01-27 10:58:05 +0000118int dram_init(void)
119{
Tom Warren41b68382011-01-27 10:58:05 +0000120 /* We do not initialise DRAM here. We just query the size */
Simon Glassf6fcbbd2011-11-05 03:56:57 +0000121 gd->ram_size = query_sdram_size();
Tom Warren41b68382011-01-27 10:58:05 +0000122 return 0;
123}
124
Stephen Warren59f90102012-05-14 13:13:45 +0000125static int uart_configs[] = {
Tom Warren61c6d0e2012-12-11 13:34:15 +0000126#if defined(CONFIG_TEGRA20)
127 #if defined(CONFIG_TEGRA_UARTA_UAA_UAB)
Stephen Warren59f90102012-05-14 13:13:45 +0000128 FUNCMUX_UART1_UAA_UAB,
Tom Warren61c6d0e2012-12-11 13:34:15 +0000129 #elif defined(CONFIG_TEGRA_UARTA_GPU)
Stephen Warrene4c01a82012-05-16 05:59:59 +0000130 FUNCMUX_UART1_GPU,
Tom Warren61c6d0e2012-12-11 13:34:15 +0000131 #elif defined(CONFIG_TEGRA_UARTA_SDIO1)
Lucas Stach4de6eec2012-05-16 08:21:02 +0000132 FUNCMUX_UART1_SDIO1,
Tom Warren61c6d0e2012-12-11 13:34:15 +0000133 #else
Stephen Warren59f90102012-05-14 13:13:45 +0000134 FUNCMUX_UART1_IRRX_IRTX,
Stephen Warren811af732013-01-22 06:20:08 +0000135#endif
136 FUNCMUX_UART2_UAD,
Stephen Warren59f90102012-05-14 13:13:45 +0000137 -1,
138 FUNCMUX_UART4_GMC,
139 -1,
Tom Warrene3d95bc2013-01-28 13:32:10 +0000140#elif defined(CONFIG_TEGRA30)
Tom Warren61c6d0e2012-12-11 13:34:15 +0000141 FUNCMUX_UART1_ULPI, /* UARTA */
142 -1,
143 -1,
144 -1,
145 -1,
Tom Warrene5ffffd2014-01-24 12:46:16 -0700146#elif defined(CONFIG_TEGRA114)
Tom Warrene3d95bc2013-01-28 13:32:10 +0000147 -1,
148 -1,
149 -1,
150 FUNCMUX_UART4_GMI, /* UARTD */
151 -1,
Tom Warrenab0cc6b2015-03-04 16:36:00 -0700152#elif defined(CONFIG_TEGRA124)
Tom Warrene5ffffd2014-01-24 12:46:16 -0700153 FUNCMUX_UART1_KBC, /* UARTA */
154 -1,
155 -1,
156 FUNCMUX_UART4_GPIO, /* UARTD */
157 -1,
Tom Warrenab0cc6b2015-03-04 16:36:00 -0700158#else /* Tegra210 */
159 FUNCMUX_UART1_UART1, /* UARTA */
160 -1,
161 -1,
162 FUNCMUX_UART4_UART4, /* UARTD */
163 -1,
Tom Warren61c6d0e2012-12-11 13:34:15 +0000164#endif
Stephen Warren59f90102012-05-14 13:13:45 +0000165};
166
Simon Glass96b7c432011-11-28 15:04:39 +0000167/**
168 * Set up the specified uarts
169 *
170 * @param uarts_ids Mask containing UARTs to init (UARTx)
171 */
172static void setup_uarts(int uart_ids)
173{
174 static enum periph_id id_for_uart[] = {
175 PERIPH_ID_UART1,
176 PERIPH_ID_UART2,
177 PERIPH_ID_UART3,
178 PERIPH_ID_UART4,
Tom Warrene3d95bc2013-01-28 13:32:10 +0000179 PERIPH_ID_UART5,
Simon Glass96b7c432011-11-28 15:04:39 +0000180 };
181 size_t i;
182
183 for (i = 0; i < UART_COUNT; i++) {
184 if (uart_ids & (1 << i)) {
185 enum periph_id id = id_for_uart[i];
186
Stephen Warren59f90102012-05-14 13:13:45 +0000187 funcmux_select(id, uart_configs[i]);
Simon Glass96b7c432011-11-28 15:04:39 +0000188 clock_ll_start_uart(id);
189 }
190 }
191}
192
193void board_init_uart_f(void)
194{
195 int uart_ids = 0; /* bit mask of which UART ids to enable */
196
Tom Warren22562a42012-09-04 17:00:24 -0700197#ifdef CONFIG_TEGRA_ENABLE_UARTA
Simon Glass96b7c432011-11-28 15:04:39 +0000198 uart_ids |= UARTA;
199#endif
Tom Warren22562a42012-09-04 17:00:24 -0700200#ifdef CONFIG_TEGRA_ENABLE_UARTB
Simon Glass96b7c432011-11-28 15:04:39 +0000201 uart_ids |= UARTB;
202#endif
Tom Warrene3d95bc2013-01-28 13:32:10 +0000203#ifdef CONFIG_TEGRA_ENABLE_UARTC
204 uart_ids |= UARTC;
205#endif
Tom Warren22562a42012-09-04 17:00:24 -0700206#ifdef CONFIG_TEGRA_ENABLE_UARTD
Simon Glass96b7c432011-11-28 15:04:39 +0000207 uart_ids |= UARTD;
208#endif
Tom Warrene3d95bc2013-01-28 13:32:10 +0000209#ifdef CONFIG_TEGRA_ENABLE_UARTE
210 uart_ids |= UARTE;
211#endif
Simon Glass96b7c432011-11-28 15:04:39 +0000212 setup_uarts(uart_ids);
213}
Simon Glass410012f2012-01-09 13:22:15 +0000214
Thierry Reding0367dbd2015-07-27 11:45:25 -0600215#if !defined(CONFIG_SYS_DCACHE_OFF) && !defined(CONFIG_ARM64)
Simon Glass410012f2012-01-09 13:22:15 +0000216void enable_caches(void)
217{
218 /* Enable D-cache. I-cache is already enabled in start.S */
219 dcache_enable();
220}
221#endif