blob: 222de6a7352d4420bcf38f5cdeb8cbef406cb66d [file] [log] [blame]
Tom Warren3f82b1d2011-01-27 10:58:05 +00001/*
Tom Warren2f5dac92014-01-24 12:46:16 -07002 * (C) Copyright 2010-2014
Tom Warren3f82b1d2011-01-27 10:58:05 +00003 * NVIDIA Corporation <www.nvidia.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Tom Warren3f82b1d2011-01-27 10:58:05 +00006 */
7
8#include <common.h>
9#include <asm/io.h>
Simon Glassbb6997f2011-11-28 15:04:39 +000010#include <asm/arch/clock.h>
11#include <asm/arch/funcmux.h>
Marcel Ziswiler8c33ba72014-10-10 23:32:32 +020012#include <asm/arch/mc.h>
Tom Warren150c2492012-09-19 15:50:56 -070013#include <asm/arch/tegra.h>
Stephen Warren73c38932015-01-19 16:25:52 -070014#include <asm/arch-tegra/ap.h>
Lucas Stach516f00b2012-09-29 10:02:08 +000015#include <asm/arch-tegra/board.h>
Tom Warren150c2492012-09-19 15:50:56 -070016#include <asm/arch-tegra/pmc.h>
17#include <asm/arch-tegra/sys_proto.h>
18#include <asm/arch-tegra/warmboot.h>
Tom Warren3f82b1d2011-01-27 10:58:05 +000019
20DECLARE_GLOBAL_DATA_PTR;
21
Simon Glassbb6997f2011-11-28 15:04:39 +000022enum {
23 /* UARTs which we can enable */
24 UARTA = 1 << 0,
25 UARTB = 1 << 1,
Tom Warrene23bb6a2013-01-28 13:32:10 +000026 UARTC = 1 << 2,
Simon Glassbb6997f2011-11-28 15:04:39 +000027 UARTD = 1 << 3,
Tom Warrene23bb6a2013-01-28 13:32:10 +000028 UARTE = 1 << 4,
29 UART_COUNT = 5,
Simon Glassbb6997f2011-11-28 15:04:39 +000030};
31
Stephen Warren73c38932015-01-19 16:25:52 -070032#if defined(CONFIG_TEGRA_SUPPORT_NON_SECURE)
33#if !defined(CONFIG_TEGRA124)
34#error tegra_cpu_is_non_secure has only been validated on Tegra124
35#endif
36bool tegra_cpu_is_non_secure(void)
37{
38 /*
39 * This register reads 0xffffffff in non-secure mode. This register
40 * only implements bits 31:20, so the lower bits will always read 0 in
41 * secure mode. Thus, the lower bits are an indicator for secure vs.
42 * non-secure mode.
43 */
44 struct mc_ctlr *mc = (struct mc_ctlr *)NV_PA_MC_BASE;
45 uint32_t mc_s_cfg0 = readl(&mc->mc_security_cfg0);
46 return (mc_s_cfg0 & 1) == 1;
47}
48#endif
49
Stephen Warrenaeb3fcb2014-07-02 14:12:30 -060050/* Read the RAM size directly from the memory controller */
51unsigned int query_sdram_size(void)
52{
53 struct mc_ctlr *const mc = (struct mc_ctlr *)NV_PA_MC_BASE;
Stephen Warren3a2cab52014-12-23 10:34:50 -070054 u32 emem_cfg, size_bytes;
Stephen Warrenaeb3fcb2014-07-02 14:12:30 -060055
Stephen Warren3a2cab52014-12-23 10:34:50 -070056 emem_cfg = readl(&mc->mc_emem_cfg);
Marcel Ziswiler8c33ba72014-10-10 23:32:32 +020057#if defined(CONFIG_TEGRA20)
Stephen Warren3a2cab52014-12-23 10:34:50 -070058 debug("mc->mc_emem_cfg (MEM_SIZE_KB) = 0x%08x\n", emem_cfg);
59 size_bytes = get_ram_size((void *)PHYS_SDRAM_1, emem_cfg * 1024);
Marcel Ziswiler8c33ba72014-10-10 23:32:32 +020060#else
Stephen Warren3a2cab52014-12-23 10:34:50 -070061 debug("mc->mc_emem_cfg (MEM_SIZE_MB) = 0x%08x\n", emem_cfg);
Stephen Warren56519c42014-12-23 10:34:51 -070062 /*
63 * If >=4GB RAM is present, the byte RAM size won't fit into 32-bits
64 * and will wrap. Clip the reported size to the maximum that a 32-bit
65 * variable can represent (rounded to a page).
66 */
67 if (emem_cfg >= 4096) {
68 size_bytes = U32_MAX & ~(0x1000 - 1);
69 } else {
70 /* RAM size EMC is programmed to. */
71 size_bytes = emem_cfg * 1024 * 1024;
72 /*
73 * If all RAM fits within 32-bits, it can be accessed without
74 * LPAE, so go test the RAM size. Otherwise, we can't access
75 * all the RAM, and get_ram_size() would get confused, so
76 * avoid using it. There's no reason we should need this
77 * validation step anyway.
78 */
79 if (emem_cfg <= (0 - PHYS_SDRAM_1) / (1024 * 1024))
80 size_bytes = get_ram_size((void *)PHYS_SDRAM_1,
81 size_bytes);
82 }
Stephen Warrenaeb3fcb2014-07-02 14:12:30 -060083#endif
Tom Warren3f82b1d2011-01-27 10:58:05 +000084
Marcel Ziswiler8c33ba72014-10-10 23:32:32 +020085#if defined(CONFIG_TEGRA30) || defined(CONFIG_TEGRA114)
86 /* External memory limited to 2047 MB due to IROM/HI-VEC */
Stephen Warren3a2cab52014-12-23 10:34:50 -070087 if (size_bytes == SZ_2G)
88 size_bytes -= SZ_1M;
Marcel Ziswiler8c33ba72014-10-10 23:32:32 +020089#endif
90
Stephen Warren3a2cab52014-12-23 10:34:50 -070091 return size_bytes;
Marcel Ziswiler8c33ba72014-10-10 23:32:32 +020092}
93
Tom Warren3f82b1d2011-01-27 10:58:05 +000094int dram_init(void)
95{
Tom Warren3f82b1d2011-01-27 10:58:05 +000096 /* We do not initialise DRAM here. We just query the size */
Simon Glass7f8c0702011-11-05 03:56:57 +000097 gd->ram_size = query_sdram_size();
Tom Warren3f82b1d2011-01-27 10:58:05 +000098 return 0;
99}
100
Stephen Warrenb9607e72012-05-14 13:13:45 +0000101static int uart_configs[] = {
Tom Warrenb2871032012-12-11 13:34:15 +0000102#if defined(CONFIG_TEGRA20)
103 #if defined(CONFIG_TEGRA_UARTA_UAA_UAB)
Stephen Warrenb9607e72012-05-14 13:13:45 +0000104 FUNCMUX_UART1_UAA_UAB,
Tom Warrenb2871032012-12-11 13:34:15 +0000105 #elif defined(CONFIG_TEGRA_UARTA_GPU)
Stephen Warrene21649b2012-05-16 05:59:59 +0000106 FUNCMUX_UART1_GPU,
Tom Warrenb2871032012-12-11 13:34:15 +0000107 #elif defined(CONFIG_TEGRA_UARTA_SDIO1)
Lucas Stacha2cfe632012-05-16 08:21:02 +0000108 FUNCMUX_UART1_SDIO1,
Tom Warrenb2871032012-12-11 13:34:15 +0000109 #else
Stephen Warrenb9607e72012-05-14 13:13:45 +0000110 FUNCMUX_UART1_IRRX_IRTX,
Stephen Warren4727a132013-01-22 06:20:08 +0000111#endif
112 FUNCMUX_UART2_UAD,
Stephen Warrenb9607e72012-05-14 13:13:45 +0000113 -1,
114 FUNCMUX_UART4_GMC,
115 -1,
Tom Warrene23bb6a2013-01-28 13:32:10 +0000116#elif defined(CONFIG_TEGRA30)
Tom Warrenb2871032012-12-11 13:34:15 +0000117 FUNCMUX_UART1_ULPI, /* UARTA */
118 -1,
119 -1,
120 -1,
121 -1,
Tom Warren2f5dac92014-01-24 12:46:16 -0700122#elif defined(CONFIG_TEGRA114)
Tom Warrene23bb6a2013-01-28 13:32:10 +0000123 -1,
124 -1,
125 -1,
126 FUNCMUX_UART4_GMI, /* UARTD */
127 -1,
Tom Warren2f5dac92014-01-24 12:46:16 -0700128#else /* Tegra124 */
129 FUNCMUX_UART1_KBC, /* UARTA */
130 -1,
131 -1,
132 FUNCMUX_UART4_GPIO, /* UARTD */
133 -1,
Tom Warrenb2871032012-12-11 13:34:15 +0000134#endif
Stephen Warrenb9607e72012-05-14 13:13:45 +0000135};
136
Simon Glassbb6997f2011-11-28 15:04:39 +0000137/**
138 * Set up the specified uarts
139 *
140 * @param uarts_ids Mask containing UARTs to init (UARTx)
141 */
142static void setup_uarts(int uart_ids)
143{
144 static enum periph_id id_for_uart[] = {
145 PERIPH_ID_UART1,
146 PERIPH_ID_UART2,
147 PERIPH_ID_UART3,
148 PERIPH_ID_UART4,
Tom Warrene23bb6a2013-01-28 13:32:10 +0000149 PERIPH_ID_UART5,
Simon Glassbb6997f2011-11-28 15:04:39 +0000150 };
151 size_t i;
152
153 for (i = 0; i < UART_COUNT; i++) {
154 if (uart_ids & (1 << i)) {
155 enum periph_id id = id_for_uart[i];
156
Stephen Warrenb9607e72012-05-14 13:13:45 +0000157 funcmux_select(id, uart_configs[i]);
Simon Glassbb6997f2011-11-28 15:04:39 +0000158 clock_ll_start_uart(id);
159 }
160 }
161}
162
163void board_init_uart_f(void)
164{
165 int uart_ids = 0; /* bit mask of which UART ids to enable */
166
Tom Warren29f3e3f2012-09-04 17:00:24 -0700167#ifdef CONFIG_TEGRA_ENABLE_UARTA
Simon Glassbb6997f2011-11-28 15:04:39 +0000168 uart_ids |= UARTA;
169#endif
Tom Warren29f3e3f2012-09-04 17:00:24 -0700170#ifdef CONFIG_TEGRA_ENABLE_UARTB
Simon Glassbb6997f2011-11-28 15:04:39 +0000171 uart_ids |= UARTB;
172#endif
Tom Warrene23bb6a2013-01-28 13:32:10 +0000173#ifdef CONFIG_TEGRA_ENABLE_UARTC
174 uart_ids |= UARTC;
175#endif
Tom Warren29f3e3f2012-09-04 17:00:24 -0700176#ifdef CONFIG_TEGRA_ENABLE_UARTD
Simon Glassbb6997f2011-11-28 15:04:39 +0000177 uart_ids |= UARTD;
178#endif
Tom Warrene23bb6a2013-01-28 13:32:10 +0000179#ifdef CONFIG_TEGRA_ENABLE_UARTE
180 uart_ids |= UARTE;
181#endif
Simon Glassbb6997f2011-11-28 15:04:39 +0000182 setup_uarts(uart_ids);
183}
Simon Glassbd29cb02012-01-09 13:22:15 +0000184
185#ifndef CONFIG_SYS_DCACHE_OFF
186void enable_caches(void)
187{
188 /* Enable D-cache. I-cache is already enabled in start.S */
189 dcache_enable();
190}
191#endif