blob: edb9c966581425e4e1bb798e2418e6b1670caca6 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Mingkai Hu0e58b512015-10-26 19:47:50 +08002/*
Priyanka Jain2b361782017-04-27 15:08:06 +05303 * Copyright 2017 NXP
Mingkai Hu0e58b512015-10-26 19:47:50 +08004 * Copyright 2014-2015 Freescale Semiconductor, Inc.
Mingkai Hu0e58b512015-10-26 19:47:50 +08005 */
6
7#include <common.h>
Simon Glass0e0ac202017-04-06 12:47:04 -06008#include <fsl_ddr_sdram.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +08009#include <asm/io.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090010#include <linux/errno.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080011#include <asm/system.h>
Joe Hershberger8f454d92018-07-16 15:33:51 -050012#include <fm_eth.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080013#include <asm/armv8/mmu.h>
14#include <asm/io.h>
15#include <asm/arch/fsl_serdes.h>
16#include <asm/arch/soc.h>
17#include <asm/arch/cpu.h>
18#include <asm/arch/speed.h>
Ashish Kumar11234062017-08-11 11:09:14 +053019#include <fsl_immap.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080020#include <asm/arch/mp.h>
Alexander Graf12be31c2016-11-17 01:03:01 +010021#include <efi_loader.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080022#include <fsl-mc/fsl_mc.h>
23#ifdef CONFIG_FSL_ESDHC
24#include <fsl_esdhc.h>
25#endif
Hou Zhiqiang21c4d552016-06-28 20:18:15 +080026#include <asm/armv8/sec_firmware.h>
Shengzhou Liu15875a52016-11-21 11:36:48 +080027#ifdef CONFIG_SYS_FSL_DDR
28#include <fsl_ddr.h>
29#endif
Simon Glass243182c2017-05-17 08:23:06 -060030#include <asm/arch/clock.h>
Prabhakar Kushwaha0acce842017-11-10 11:32:52 +053031#include <hwconfig.h>
Ahmed Mansouraa270b42017-12-15 16:01:00 -050032#include <fsl_qbman.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080033
Rajesh Bhagat583da8b2018-11-05 18:01:42 +000034#ifdef CONFIG_TFABOOT
35#include <environment.h>
Pankit Gargbdbf84f2018-11-05 18:01:52 +000036#ifdef CONFIG_CHAIN_OF_TRUST
37#include <fsl_validate.h>
38#endif
Rajesh Bhagat583da8b2018-11-05 18:01:42 +000039#endif
40
Mingkai Hu0e58b512015-10-26 19:47:50 +080041DECLARE_GLOBAL_DATA_PTR;
42
York Sunef4cef92018-11-05 18:01:06 +000043static struct cpu_type cpu_type_list[] = {
44 CPU_TYPE_ENTRY(LS2080A, LS2080A, 8),
45 CPU_TYPE_ENTRY(LS2085A, LS2085A, 8),
46 CPU_TYPE_ENTRY(LS2045A, LS2045A, 4),
47 CPU_TYPE_ENTRY(LS2088A, LS2088A, 8),
48 CPU_TYPE_ENTRY(LS2084A, LS2084A, 8),
49 CPU_TYPE_ENTRY(LS2048A, LS2048A, 4),
50 CPU_TYPE_ENTRY(LS2044A, LS2044A, 4),
51 CPU_TYPE_ENTRY(LS2081A, LS2081A, 8),
52 CPU_TYPE_ENTRY(LS2041A, LS2041A, 4),
53 CPU_TYPE_ENTRY(LS1043A, LS1043A, 4),
Hou Zhiqiangb9aedf92018-12-20 06:31:17 +000054 CPU_TYPE_ENTRY(LS1043A, LS1043A_P23, 4),
York Sunef4cef92018-11-05 18:01:06 +000055 CPU_TYPE_ENTRY(LS1023A, LS1023A, 2),
Hou Zhiqiangb9aedf92018-12-20 06:31:17 +000056 CPU_TYPE_ENTRY(LS1023A, LS1023A_P23, 2),
York Sunef4cef92018-11-05 18:01:06 +000057 CPU_TYPE_ENTRY(LS1046A, LS1046A, 4),
58 CPU_TYPE_ENTRY(LS1026A, LS1026A, 2),
59 CPU_TYPE_ENTRY(LS2040A, LS2040A, 4),
60 CPU_TYPE_ENTRY(LS1012A, LS1012A, 1),
Yuantian Tang4aefa162019-04-10 16:43:33 +080061 CPU_TYPE_ENTRY(LS1028A, LS1028A, 2),
York Sunef4cef92018-11-05 18:01:06 +000062 CPU_TYPE_ENTRY(LS1088A, LS1088A, 8),
63 CPU_TYPE_ENTRY(LS1084A, LS1084A, 8),
64 CPU_TYPE_ENTRY(LS1048A, LS1048A, 4),
65 CPU_TYPE_ENTRY(LS1044A, LS1044A, 4),
Priyanka Jainef76b2e2018-10-29 09:17:09 +000066 CPU_TYPE_ENTRY(LX2160A, LX2160A, 16),
67 CPU_TYPE_ENTRY(LX2120A, LX2120A, 12),
68 CPU_TYPE_ENTRY(LX2080A, LX2080A, 8),
York Sunef4cef92018-11-05 18:01:06 +000069};
70
71#define EARLY_PGTABLE_SIZE 0x5000
72static struct mm_region early_map[] = {
73#ifdef CONFIG_FSL_LSCH3
74 { CONFIG_SYS_FSL_CCSR_BASE, CONFIG_SYS_FSL_CCSR_BASE,
75 CONFIG_SYS_FSL_CCSR_SIZE,
76 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
77 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
78 },
79 { CONFIG_SYS_FSL_OCRAM_BASE, CONFIG_SYS_FSL_OCRAM_BASE,
80 SYS_FSL_OCRAM_SPACE_SIZE,
81 PTE_BLOCK_MEMTYPE(MT_NORMAL) | PTE_BLOCK_NON_SHARE
82 },
83 { CONFIG_SYS_FSL_QSPI_BASE1, CONFIG_SYS_FSL_QSPI_BASE1,
84 CONFIG_SYS_FSL_QSPI_SIZE1,
85 PTE_BLOCK_MEMTYPE(MT_NORMAL) | PTE_BLOCK_NON_SHARE},
86#ifdef CONFIG_FSL_IFC
87 /* For IFC Region #1, only the first 4MB is cache-enabled */
88 { CONFIG_SYS_FSL_IFC_BASE1, CONFIG_SYS_FSL_IFC_BASE1,
89 CONFIG_SYS_FSL_IFC_SIZE1_1,
90 PTE_BLOCK_MEMTYPE(MT_NORMAL) | PTE_BLOCK_NON_SHARE
91 },
92 { CONFIG_SYS_FSL_IFC_BASE1 + CONFIG_SYS_FSL_IFC_SIZE1_1,
93 CONFIG_SYS_FSL_IFC_BASE1 + CONFIG_SYS_FSL_IFC_SIZE1_1,
94 CONFIG_SYS_FSL_IFC_SIZE1 - CONFIG_SYS_FSL_IFC_SIZE1_1,
95 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_NON_SHARE
96 },
97 { CONFIG_SYS_FLASH_BASE, CONFIG_SYS_FSL_IFC_BASE1,
98 CONFIG_SYS_FSL_IFC_SIZE1,
99 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_NON_SHARE
100 },
101#endif
102 { CONFIG_SYS_FSL_DRAM_BASE1, CONFIG_SYS_FSL_DRAM_BASE1,
103 CONFIG_SYS_FSL_DRAM_SIZE1,
Rajesh Bhagat5efbecf2018-11-05 18:01:37 +0000104#if defined(CONFIG_TFABOOT) || \
105 (defined(CONFIG_SPL) && !defined(CONFIG_SPL_BUILD))
York Sunef4cef92018-11-05 18:01:06 +0000106 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
107#else /* Start with nGnRnE and PXN and UXN to prevent speculative access */
108 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_PXN | PTE_BLOCK_UXN |
109#endif
110 PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS
111 },
112#ifdef CONFIG_FSL_IFC
113 /* Map IFC region #2 up to CONFIG_SYS_FLASH_BASE for NAND boot */
114 { CONFIG_SYS_FSL_IFC_BASE2, CONFIG_SYS_FSL_IFC_BASE2,
115 CONFIG_SYS_FLASH_BASE - CONFIG_SYS_FSL_IFC_BASE2,
116 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_NON_SHARE
117 },
118#endif
119 { CONFIG_SYS_FSL_DCSR_BASE, CONFIG_SYS_FSL_DCSR_BASE,
120 CONFIG_SYS_FSL_DCSR_SIZE,
121 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
122 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
123 },
124 { CONFIG_SYS_FSL_DRAM_BASE2, CONFIG_SYS_FSL_DRAM_BASE2,
125 CONFIG_SYS_FSL_DRAM_SIZE2,
126 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_PXN | PTE_BLOCK_UXN |
127 PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS
128 },
Priyanka Jain88c25662018-10-29 09:11:29 +0000129#ifdef CONFIG_SYS_FSL_DRAM_BASE3
130 { CONFIG_SYS_FSL_DRAM_BASE3, CONFIG_SYS_FSL_DRAM_BASE3,
131 CONFIG_SYS_FSL_DRAM_SIZE3,
132 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_PXN | PTE_BLOCK_UXN |
133 PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS
134 },
135#endif
York Sunef4cef92018-11-05 18:01:06 +0000136#elif defined(CONFIG_FSL_LSCH2)
137 { CONFIG_SYS_FSL_CCSR_BASE, CONFIG_SYS_FSL_CCSR_BASE,
138 CONFIG_SYS_FSL_CCSR_SIZE,
139 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
140 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
141 },
142 { CONFIG_SYS_FSL_OCRAM_BASE, CONFIG_SYS_FSL_OCRAM_BASE,
143 SYS_FSL_OCRAM_SPACE_SIZE,
144 PTE_BLOCK_MEMTYPE(MT_NORMAL) | PTE_BLOCK_NON_SHARE
145 },
146 { CONFIG_SYS_FSL_DCSR_BASE, CONFIG_SYS_FSL_DCSR_BASE,
147 CONFIG_SYS_FSL_DCSR_SIZE,
148 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
149 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
150 },
151 { CONFIG_SYS_FSL_QSPI_BASE, CONFIG_SYS_FSL_QSPI_BASE,
152 CONFIG_SYS_FSL_QSPI_SIZE,
153 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_NON_SHARE
154 },
155#ifdef CONFIG_FSL_IFC
156 { CONFIG_SYS_FSL_IFC_BASE, CONFIG_SYS_FSL_IFC_BASE,
157 CONFIG_SYS_FSL_IFC_SIZE,
158 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_NON_SHARE
159 },
160#endif
161 { CONFIG_SYS_FSL_DRAM_BASE1, CONFIG_SYS_FSL_DRAM_BASE1,
162 CONFIG_SYS_FSL_DRAM_SIZE1,
Rajesh Bhagat5efbecf2018-11-05 18:01:37 +0000163#if defined(CONFIG_TFABOOT) || \
164 (defined(CONFIG_SPL) && !defined(CONFIG_SPL_BUILD))
York Sunef4cef92018-11-05 18:01:06 +0000165 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
166#else /* Start with nGnRnE and PXN and UXN to prevent speculative access */
167 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_PXN | PTE_BLOCK_UXN |
168#endif
169 PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS
170 },
171 { CONFIG_SYS_FSL_DRAM_BASE2, CONFIG_SYS_FSL_DRAM_BASE2,
172 CONFIG_SYS_FSL_DRAM_SIZE2,
173 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_PXN | PTE_BLOCK_UXN |
174 PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS
175 },
176#endif
177 {}, /* list terminator */
178};
179
180static struct mm_region final_map[] = {
181#ifdef CONFIG_FSL_LSCH3
182 { CONFIG_SYS_FSL_CCSR_BASE, CONFIG_SYS_FSL_CCSR_BASE,
183 CONFIG_SYS_FSL_CCSR_SIZE,
184 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
185 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
186 },
187 { CONFIG_SYS_FSL_OCRAM_BASE, CONFIG_SYS_FSL_OCRAM_BASE,
188 SYS_FSL_OCRAM_SPACE_SIZE,
189 PTE_BLOCK_MEMTYPE(MT_NORMAL) | PTE_BLOCK_NON_SHARE
190 },
191 { CONFIG_SYS_FSL_DRAM_BASE1, CONFIG_SYS_FSL_DRAM_BASE1,
192 CONFIG_SYS_FSL_DRAM_SIZE1,
193 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
194 PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS
195 },
196 { CONFIG_SYS_FSL_QSPI_BASE1, CONFIG_SYS_FSL_QSPI_BASE1,
197 CONFIG_SYS_FSL_QSPI_SIZE1,
198 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
199 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
200 },
201 { CONFIG_SYS_FSL_QSPI_BASE2, CONFIG_SYS_FSL_QSPI_BASE2,
202 CONFIG_SYS_FSL_QSPI_SIZE2,
203 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
204 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
205 },
206#ifdef CONFIG_FSL_IFC
207 { CONFIG_SYS_FSL_IFC_BASE2, CONFIG_SYS_FSL_IFC_BASE2,
208 CONFIG_SYS_FSL_IFC_SIZE2,
209 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
210 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
211 },
212#endif
213 { CONFIG_SYS_FSL_DCSR_BASE, CONFIG_SYS_FSL_DCSR_BASE,
214 CONFIG_SYS_FSL_DCSR_SIZE,
215 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
216 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
217 },
218 { CONFIG_SYS_FSL_MC_BASE, CONFIG_SYS_FSL_MC_BASE,
219 CONFIG_SYS_FSL_MC_SIZE,
220 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
221 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
222 },
223 { CONFIG_SYS_FSL_NI_BASE, CONFIG_SYS_FSL_NI_BASE,
224 CONFIG_SYS_FSL_NI_SIZE,
225 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
226 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
227 },
228 /* For QBMAN portal, only the first 64MB is cache-enabled */
229 { CONFIG_SYS_FSL_QBMAN_BASE, CONFIG_SYS_FSL_QBMAN_BASE,
230 CONFIG_SYS_FSL_QBMAN_SIZE_1,
231 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
232 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN | PTE_BLOCK_NS
233 },
234 { CONFIG_SYS_FSL_QBMAN_BASE + CONFIG_SYS_FSL_QBMAN_SIZE_1,
235 CONFIG_SYS_FSL_QBMAN_BASE + CONFIG_SYS_FSL_QBMAN_SIZE_1,
236 CONFIG_SYS_FSL_QBMAN_SIZE - CONFIG_SYS_FSL_QBMAN_SIZE_1,
237 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
238 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
239 },
240 { CONFIG_SYS_PCIE1_PHYS_ADDR, CONFIG_SYS_PCIE1_PHYS_ADDR,
241 CONFIG_SYS_PCIE1_PHYS_SIZE,
242 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
243 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
244 },
245 { CONFIG_SYS_PCIE2_PHYS_ADDR, CONFIG_SYS_PCIE2_PHYS_ADDR,
246 CONFIG_SYS_PCIE2_PHYS_SIZE,
247 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
248 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
249 },
Yuantian Tang4aefa162019-04-10 16:43:33 +0800250#ifdef CONFIG_SYS_PCIE3_PHYS_ADDR
York Sunef4cef92018-11-05 18:01:06 +0000251 { CONFIG_SYS_PCIE3_PHYS_ADDR, CONFIG_SYS_PCIE3_PHYS_ADDR,
252 CONFIG_SYS_PCIE3_PHYS_SIZE,
253 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
254 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
255 },
Yuantian Tang4aefa162019-04-10 16:43:33 +0800256#endif
Hou Zhiqiangd5d1ce32019-04-08 10:15:32 +0000257#ifdef CONFIG_SYS_PCIE4_PHYS_ADDR
York Sunef4cef92018-11-05 18:01:06 +0000258 { CONFIG_SYS_PCIE4_PHYS_ADDR, CONFIG_SYS_PCIE4_PHYS_ADDR,
259 CONFIG_SYS_PCIE4_PHYS_SIZE,
260 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
261 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
262 },
263#endif
Hou Zhiqiangd08f9702019-04-08 10:15:41 +0000264#ifdef SYS_PCIE5_PHYS_ADDR
265 { SYS_PCIE5_PHYS_ADDR, SYS_PCIE5_PHYS_ADDR,
266 SYS_PCIE5_PHYS_SIZE,
267 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
268 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
269 },
270#endif
271#ifdef SYS_PCIE6_PHYS_ADDR
272 { SYS_PCIE6_PHYS_ADDR, SYS_PCIE6_PHYS_ADDR,
273 SYS_PCIE6_PHYS_SIZE,
274 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
275 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
276 },
277#endif
York Sunef4cef92018-11-05 18:01:06 +0000278 { CONFIG_SYS_FSL_WRIOP1_BASE, CONFIG_SYS_FSL_WRIOP1_BASE,
279 CONFIG_SYS_FSL_WRIOP1_SIZE,
280 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
281 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
282 },
283 { CONFIG_SYS_FSL_AIOP1_BASE, CONFIG_SYS_FSL_AIOP1_BASE,
284 CONFIG_SYS_FSL_AIOP1_SIZE,
285 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
286 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
287 },
288 { CONFIG_SYS_FSL_PEBUF_BASE, CONFIG_SYS_FSL_PEBUF_BASE,
289 CONFIG_SYS_FSL_PEBUF_SIZE,
290 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
291 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
292 },
293 { CONFIG_SYS_FSL_DRAM_BASE2, CONFIG_SYS_FSL_DRAM_BASE2,
294 CONFIG_SYS_FSL_DRAM_SIZE2,
295 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
296 PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS
297 },
Priyanka Jain88c25662018-10-29 09:11:29 +0000298#ifdef CONFIG_SYS_FSL_DRAM_BASE3
299 { CONFIG_SYS_FSL_DRAM_BASE3, CONFIG_SYS_FSL_DRAM_BASE3,
300 CONFIG_SYS_FSL_DRAM_SIZE3,
301 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
302 PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS
303 },
304#endif
York Sunef4cef92018-11-05 18:01:06 +0000305#elif defined(CONFIG_FSL_LSCH2)
306 { CONFIG_SYS_FSL_BOOTROM_BASE, CONFIG_SYS_FSL_BOOTROM_BASE,
307 CONFIG_SYS_FSL_BOOTROM_SIZE,
308 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
309 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
310 },
311 { CONFIG_SYS_FSL_CCSR_BASE, CONFIG_SYS_FSL_CCSR_BASE,
312 CONFIG_SYS_FSL_CCSR_SIZE,
313 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
314 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
315 },
316 { CONFIG_SYS_FSL_OCRAM_BASE, CONFIG_SYS_FSL_OCRAM_BASE,
317 SYS_FSL_OCRAM_SPACE_SIZE,
318 PTE_BLOCK_MEMTYPE(MT_NORMAL) | PTE_BLOCK_NON_SHARE
319 },
320 { CONFIG_SYS_FSL_DCSR_BASE, CONFIG_SYS_FSL_DCSR_BASE,
321 CONFIG_SYS_FSL_DCSR_SIZE,
322 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
323 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
324 },
325 { CONFIG_SYS_FSL_QSPI_BASE, CONFIG_SYS_FSL_QSPI_BASE,
326 CONFIG_SYS_FSL_QSPI_SIZE,
327 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
328 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
329 },
330#ifdef CONFIG_FSL_IFC
331 { CONFIG_SYS_FSL_IFC_BASE, CONFIG_SYS_FSL_IFC_BASE,
332 CONFIG_SYS_FSL_IFC_SIZE,
333 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_NON_SHARE
334 },
335#endif
336 { CONFIG_SYS_FSL_DRAM_BASE1, CONFIG_SYS_FSL_DRAM_BASE1,
337 CONFIG_SYS_FSL_DRAM_SIZE1,
338 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
339 PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS
340 },
341 { CONFIG_SYS_FSL_QBMAN_BASE, CONFIG_SYS_FSL_QBMAN_BASE,
342 CONFIG_SYS_FSL_QBMAN_SIZE,
343 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
344 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
345 },
346 { CONFIG_SYS_FSL_DRAM_BASE2, CONFIG_SYS_FSL_DRAM_BASE2,
347 CONFIG_SYS_FSL_DRAM_SIZE2,
348 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
349 PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS
350 },
351 { CONFIG_SYS_PCIE1_PHYS_ADDR, CONFIG_SYS_PCIE1_PHYS_ADDR,
352 CONFIG_SYS_PCIE1_PHYS_SIZE,
353 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
354 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
355 },
356 { CONFIG_SYS_PCIE2_PHYS_ADDR, CONFIG_SYS_PCIE2_PHYS_ADDR,
357 CONFIG_SYS_PCIE2_PHYS_SIZE,
358 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
359 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
360 },
Yuantian Tang4aefa162019-04-10 16:43:33 +0800361#ifdef CONFIG_SYS_PCIE3_PHYS_ADDR
York Sunef4cef92018-11-05 18:01:06 +0000362 { CONFIG_SYS_PCIE3_PHYS_ADDR, CONFIG_SYS_PCIE3_PHYS_ADDR,
363 CONFIG_SYS_PCIE3_PHYS_SIZE,
364 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
365 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
366 },
Yuantian Tang4aefa162019-04-10 16:43:33 +0800367#endif
York Sunef4cef92018-11-05 18:01:06 +0000368 { CONFIG_SYS_FSL_DRAM_BASE3, CONFIG_SYS_FSL_DRAM_BASE3,
369 CONFIG_SYS_FSL_DRAM_SIZE3,
370 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
371 PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS
372 },
373#endif
374#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
375 {}, /* space holder for secure mem */
376#endif
377 {},
378};
379
York Sun9da8f502016-06-24 16:46:23 -0700380struct mm_region *mem_map = early_map;
Alexander Grafce0a64e2016-03-04 01:09:54 +0100381
Mingkai Hu0e58b512015-10-26 19:47:50 +0800382void cpu_name(char *name)
383{
384 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
385 unsigned int i, svr, ver;
386
387 svr = gur_in32(&gur->svr);
388 ver = SVR_SOC_VER(svr);
389
390 for (i = 0; i < ARRAY_SIZE(cpu_type_list); i++)
391 if ((cpu_type_list[i].soc_ver & SVR_WO_E) == ver) {
392 strcpy(name, cpu_type_list[i].name);
Priyanka Jainef76b2e2018-10-29 09:17:09 +0000393#ifdef CONFIG_ARCH_LX2160A
394 if (IS_C_PROCESSOR(svr))
395 strcat(name, "C");
396#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +0800397
398 if (IS_E_PROCESSOR(svr))
399 strcat(name, "E");
Wenbin Song863a33a2016-09-13 16:13:54 +0800400
401 sprintf(name + strlen(name), " Rev%d.%d",
402 SVR_MAJ(svr), SVR_MIN(svr));
Mingkai Hu0e58b512015-10-26 19:47:50 +0800403 break;
404 }
405
406 if (i == ARRAY_SIZE(cpu_type_list))
407 strcpy(name, "unknown");
408}
409
Trevor Woerner43ec7e02019-05-03 09:41:00 -0400410#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Mingkai Hu0e58b512015-10-26 19:47:50 +0800411/*
412 * To start MMU before DDR is available, we create MMU table in SRAM.
413 * The base address of SRAM is CONFIG_SYS_FSL_OCRAM_BASE. We use three
414 * levels of translation tables here to cover 40-bit address space.
415 * We use 4KB granule size, with 40 bits physical address, T0SZ=24
York Sun9da8f502016-06-24 16:46:23 -0700416 * Address above EARLY_PGTABLE_SIZE (0x5000) is free for other purpose.
417 * Note, the debug print in cache_v8.c is not usable for debugging
418 * these early MMU tables because UART is not yet available.
Mingkai Hu0e58b512015-10-26 19:47:50 +0800419 */
420static inline void early_mmu_setup(void)
421{
York Sun9da8f502016-06-24 16:46:23 -0700422 unsigned int el = current_el();
Mingkai Hu0e58b512015-10-26 19:47:50 +0800423
York Sun9da8f502016-06-24 16:46:23 -0700424 /* global data is already setup, no allocation yet */
Pankit Gargc4d39eb2018-11-05 18:01:28 +0000425 if (el == 3)
426 gd->arch.tlb_addr = CONFIG_SYS_FSL_OCRAM_BASE;
427 else
428 gd->arch.tlb_addr = CONFIG_SYS_DDR_SDRAM_BASE;
York Sun9da8f502016-06-24 16:46:23 -0700429 gd->arch.tlb_fillptr = gd->arch.tlb_addr;
430 gd->arch.tlb_size = EARLY_PGTABLE_SIZE;
Mingkai Hu0e58b512015-10-26 19:47:50 +0800431
York Sun9da8f502016-06-24 16:46:23 -0700432 /* Create early page tables */
433 setup_pgtables();
Mingkai Hu0e58b512015-10-26 19:47:50 +0800434
York Sun9da8f502016-06-24 16:46:23 -0700435 /* point TTBR to the new table */
436 set_ttbr_tcr_mair(el, gd->arch.tlb_addr,
437 get_tcr(el, NULL, NULL) &
438 ~(TCR_ORGN_MASK | TCR_IRGN_MASK),
Mingkai Hu0e58b512015-10-26 19:47:50 +0800439 MEMORY_ATTRIBUTES);
York Sun9da8f502016-06-24 16:46:23 -0700440
Mingkai Hu0e58b512015-10-26 19:47:50 +0800441 set_sctlr(get_sctlr() | CR_M);
442}
443
Hou Zhiqiang92fecb52017-03-03 12:35:09 +0800444static void fix_pcie_mmu_map(void)
445{
York Sun4ce6fbf2017-03-27 11:41:01 -0700446#ifdef CONFIG_ARCH_LS2080A
Hou Zhiqiang92fecb52017-03-03 12:35:09 +0800447 unsigned int i;
448 u32 svr, ver;
449 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
450
451 svr = gur_in32(&gur->svr);
452 ver = SVR_SOC_VER(svr);
453
454 /* Fix PCIE base and size for LS2088A */
455 if ((ver == SVR_LS2088A) || (ver == SVR_LS2084A) ||
Priyanka Jain2b361782017-04-27 15:08:06 +0530456 (ver == SVR_LS2048A) || (ver == SVR_LS2044A) ||
457 (ver == SVR_LS2081A) || (ver == SVR_LS2041A)) {
Hou Zhiqiang92fecb52017-03-03 12:35:09 +0800458 for (i = 0; i < ARRAY_SIZE(final_map); i++) {
459 switch (final_map[i].phys) {
460 case CONFIG_SYS_PCIE1_PHYS_ADDR:
461 final_map[i].phys = 0x2000000000ULL;
462 final_map[i].virt = 0x2000000000ULL;
463 final_map[i].size = 0x800000000ULL;
464 break;
465 case CONFIG_SYS_PCIE2_PHYS_ADDR:
466 final_map[i].phys = 0x2800000000ULL;
467 final_map[i].virt = 0x2800000000ULL;
468 final_map[i].size = 0x800000000ULL;
469 break;
Yuantian Tang4aefa162019-04-10 16:43:33 +0800470#ifdef CONFIG_SYS_PCIE3_PHYS_ADDR
Hou Zhiqiang92fecb52017-03-03 12:35:09 +0800471 case CONFIG_SYS_PCIE3_PHYS_ADDR:
472 final_map[i].phys = 0x3000000000ULL;
473 final_map[i].virt = 0x3000000000ULL;
474 final_map[i].size = 0x800000000ULL;
475 break;
Yuantian Tang4aefa162019-04-10 16:43:33 +0800476#endif
Hou Zhiqiangd5d1ce32019-04-08 10:15:32 +0000477#ifdef CONFIG_SYS_PCIE4_PHYS_ADDR
Hou Zhiqiang92fecb52017-03-03 12:35:09 +0800478 case CONFIG_SYS_PCIE4_PHYS_ADDR:
479 final_map[i].phys = 0x3800000000ULL;
480 final_map[i].virt = 0x3800000000ULL;
481 final_map[i].size = 0x800000000ULL;
482 break;
Hou Zhiqiangd5d1ce32019-04-08 10:15:32 +0000483#endif
Hou Zhiqiang92fecb52017-03-03 12:35:09 +0800484 default:
485 break;
486 }
487 }
488 }
489#endif
490}
491
Mingkai Hu0e58b512015-10-26 19:47:50 +0800492/*
493 * The final tables look similar to early tables, but different in detail.
494 * These tables are in DRAM. Sub tables are added to enable cache for
495 * QBMan and OCRAM.
496 *
York Sun1ef95cc2016-06-24 16:46:18 -0700497 * Put the MMU table in secure memory if gd->arch.secure_ram is valid.
498 * OCRAM will be not used for this purpose so gd->arch.secure_ram can't be 0.
Mingkai Hu0e58b512015-10-26 19:47:50 +0800499 */
500static inline void final_mmu_setup(void)
501{
York Sun9da8f502016-06-24 16:46:23 -0700502 u64 tlb_addr_save = gd->arch.tlb_addr;
York Sun0804d562015-12-04 11:57:08 -0800503 unsigned int el = current_el();
York Sun9da8f502016-06-24 16:46:23 -0700504 int index;
Mingkai Hu0e58b512015-10-26 19:47:50 +0800505
Hou Zhiqiang92fecb52017-03-03 12:35:09 +0800506 /* fix the final_map before filling in the block entries */
507 fix_pcie_mmu_map();
508
York Sun9da8f502016-06-24 16:46:23 -0700509 mem_map = final_map;
Mingkai Hu0e58b512015-10-26 19:47:50 +0800510
York Sun75488ed2017-03-06 09:02:30 -0800511 /* Update mapping for DDR to actual size */
512 for (index = 0; index < ARRAY_SIZE(final_map) - 2; index++) {
513 /*
514 * Find the entry for DDR mapping and update the address and
515 * size. Zero-sized mapping will be skipped when creating MMU
516 * table.
517 */
518 switch (final_map[index].virt) {
519 case CONFIG_SYS_FSL_DRAM_BASE1:
520 final_map[index].virt = gd->bd->bi_dram[0].start;
521 final_map[index].phys = gd->bd->bi_dram[0].start;
522 final_map[index].size = gd->bd->bi_dram[0].size;
523 break;
524#ifdef CONFIG_SYS_FSL_DRAM_BASE2
525 case CONFIG_SYS_FSL_DRAM_BASE2:
526#if (CONFIG_NR_DRAM_BANKS >= 2)
527 final_map[index].virt = gd->bd->bi_dram[1].start;
528 final_map[index].phys = gd->bd->bi_dram[1].start;
529 final_map[index].size = gd->bd->bi_dram[1].size;
530#else
531 final_map[index].size = 0;
532#endif
533 break;
534#endif
535#ifdef CONFIG_SYS_FSL_DRAM_BASE3
536 case CONFIG_SYS_FSL_DRAM_BASE3:
537#if (CONFIG_NR_DRAM_BANKS >= 3)
538 final_map[index].virt = gd->bd->bi_dram[2].start;
539 final_map[index].phys = gd->bd->bi_dram[2].start;
540 final_map[index].size = gd->bd->bi_dram[2].size;
541#else
542 final_map[index].size = 0;
543#endif
544 break;
545#endif
546 default:
547 break;
548 }
549 }
550
York Sun0804d562015-12-04 11:57:08 -0800551#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
York Sun9da8f502016-06-24 16:46:23 -0700552 if (gd->arch.secure_ram & MEM_RESERVE_SECURE_MAINTAINED) {
553 if (el == 3) {
554 /*
555 * Only use gd->arch.secure_ram if the address is
556 * recalculated. Align to 4KB for MMU table.
557 */
558 /* put page tables in secure ram */
559 index = ARRAY_SIZE(final_map) - 2;
560 gd->arch.tlb_addr = gd->arch.secure_ram & ~0xfff;
561 final_map[index].virt = gd->arch.secure_ram & ~0x3;
562 final_map[index].phys = final_map[index].virt;
563 final_map[index].size = CONFIG_SYS_MEM_RESERVE_SECURE;
564 final_map[index].attrs = PTE_BLOCK_OUTER_SHARE;
York Sun1ef95cc2016-06-24 16:46:18 -0700565 gd->arch.secure_ram |= MEM_RESERVE_SECURE_SECURED;
York Sun9da8f502016-06-24 16:46:23 -0700566 tlb_addr_save = gd->arch.tlb_addr;
York Sun0804d562015-12-04 11:57:08 -0800567 } else {
York Sun9da8f502016-06-24 16:46:23 -0700568 /* Use allocated (board_f.c) memory for TLB */
569 tlb_addr_save = gd->arch.tlb_allocated;
570 gd->arch.tlb_addr = tlb_addr_save;
York Sun0804d562015-12-04 11:57:08 -0800571 }
572 }
573#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +0800574
York Sun9da8f502016-06-24 16:46:23 -0700575 /* Reset the fill ptr */
576 gd->arch.tlb_fillptr = tlb_addr_save;
577
578 /* Create normal system page tables */
579 setup_pgtables();
580
581 /* Create emergency page tables */
582 gd->arch.tlb_addr = gd->arch.tlb_fillptr;
583 gd->arch.tlb_emerg = gd->arch.tlb_addr;
584 setup_pgtables();
585 gd->arch.tlb_addr = tlb_addr_save;
586
York Suncf64ced2017-03-06 09:02:31 -0800587 /* Disable cache and MMU */
588 dcache_disable(); /* TLBs are invalidated */
589 invalidate_icache_all();
Mingkai Hu0e58b512015-10-26 19:47:50 +0800590
591 /* point TTBR to the new table */
York Sun9da8f502016-06-24 16:46:23 -0700592 set_ttbr_tcr_mair(el, gd->arch.tlb_addr, get_tcr(el, NULL, NULL),
Mingkai Hu0e58b512015-10-26 19:47:50 +0800593 MEMORY_ATTRIBUTES);
York Suncf64ced2017-03-06 09:02:31 -0800594
York Suneb6eac12016-07-22 10:52:23 -0700595 set_sctlr(get_sctlr() | CR_M);
Mingkai Hu0e58b512015-10-26 19:47:50 +0800596}
597
Alexander Grafbc78b922016-03-21 20:26:12 +0100598u64 get_page_table_size(void)
599{
600 return 0x10000;
601}
602
Mingkai Hu0e58b512015-10-26 19:47:50 +0800603int arch_cpu_init(void)
604{
York Sune6b871e2017-05-15 08:51:59 -0700605 /*
606 * This function is called before U-Boot relocates itself to speed up
607 * on system running. It is not necessary to run if performance is not
608 * critical. Skip if MMU is already enabled by SPL or other means.
609 */
610 if (get_sctlr() & CR_M)
611 return 0;
612
Mingkai Hu0e58b512015-10-26 19:47:50 +0800613 icache_enable();
614 __asm_invalidate_dcache_all();
615 __asm_invalidate_tlb_all();
616 early_mmu_setup();
617 set_sctlr(get_sctlr() | CR_C);
618 return 0;
619}
620
Hou Zhiqianga7befa52016-06-28 20:18:12 +0800621void mmu_setup(void)
622{
623 final_mmu_setup();
624}
625
Mingkai Hu0e58b512015-10-26 19:47:50 +0800626/*
Hou Zhiqianga7befa52016-06-28 20:18:12 +0800627 * This function is called from common/board_r.c.
628 * It recreates MMU table in main memory.
Mingkai Hu0e58b512015-10-26 19:47:50 +0800629 */
630void enable_caches(void)
631{
Hou Zhiqianga7befa52016-06-28 20:18:12 +0800632 mmu_setup();
Mingkai Hu0e58b512015-10-26 19:47:50 +0800633 __asm_invalidate_tlb_all();
Hou Zhiqianga7befa52016-06-28 20:18:12 +0800634 icache_enable();
635 dcache_enable();
Mingkai Hu0e58b512015-10-26 19:47:50 +0800636}
Trevor Woerner43ec7e02019-05-03 09:41:00 -0400637#endif /* !CONFIG_IS_ENABLED(SYS_DCACHE_OFF) */
Rajesh Bhagat583da8b2018-11-05 18:01:42 +0000638
639#ifdef CONFIG_TFABOOT
640enum boot_src __get_boot_src(u32 porsr1)
641{
642 enum boot_src src = BOOT_SOURCE_RESERVED;
643 u32 rcw_src = (porsr1 & RCW_SRC_MASK) >> RCW_SRC_BIT;
Priyanka Jain88c25662018-10-29 09:11:29 +0000644#if !defined(CONFIG_NXP_LSCH3_2)
Rajesh Bhagat583da8b2018-11-05 18:01:42 +0000645 u32 val;
646#endif
647 debug("%s: rcw_src 0x%x\n", __func__, rcw_src);
648
649#if defined(CONFIG_FSL_LSCH3)
Priyanka Jain88c25662018-10-29 09:11:29 +0000650#if defined(CONFIG_NXP_LSCH3_2)
Rajesh Bhagat583da8b2018-11-05 18:01:42 +0000651 switch (rcw_src) {
652 case RCW_SRC_SDHC1_VAL:
653 src = BOOT_SOURCE_SD_MMC;
654 break;
655 case RCW_SRC_SDHC2_VAL:
656 src = BOOT_SOURCE_SD_MMC2;
657 break;
658 case RCW_SRC_I2C1_VAL:
659 src = BOOT_SOURCE_I2C1_EXTENDED;
660 break;
661 case RCW_SRC_FLEXSPI_NAND2K_VAL:
662 src = BOOT_SOURCE_XSPI_NAND;
663 break;
664 case RCW_SRC_FLEXSPI_NAND4K_VAL:
665 src = BOOT_SOURCE_XSPI_NAND;
666 break;
667 case RCW_SRC_RESERVED_1_VAL:
668 src = BOOT_SOURCE_RESERVED;
669 break;
670 case RCW_SRC_FLEXSPI_NOR_24B:
671 src = BOOT_SOURCE_XSPI_NOR;
672 break;
673 default:
674 src = BOOT_SOURCE_RESERVED;
675 }
676#else
677 val = rcw_src & RCW_SRC_TYPE_MASK;
678 if (val == RCW_SRC_NOR_VAL) {
679 val = rcw_src & NOR_TYPE_MASK;
680
681 switch (val) {
682 case NOR_16B_VAL:
683 case NOR_32B_VAL:
684 src = BOOT_SOURCE_IFC_NOR;
685 break;
686 default:
687 src = BOOT_SOURCE_RESERVED;
688 }
689 } else {
690 /* RCW SRC Serial Flash */
691 val = rcw_src & RCW_SRC_SERIAL_MASK;
692 switch (val) {
693 case RCW_SRC_QSPI_VAL:
694 /* RCW SRC Serial NOR (QSPI) */
695 src = BOOT_SOURCE_QSPI_NOR;
696 break;
697 case RCW_SRC_SD_CARD_VAL:
698 /* RCW SRC SD Card */
699 src = BOOT_SOURCE_SD_MMC;
700 break;
701 case RCW_SRC_EMMC_VAL:
702 /* RCW SRC EMMC */
Rajesh Bhagat5b73c902018-12-27 04:37:49 +0000703 src = BOOT_SOURCE_SD_MMC;
Rajesh Bhagat583da8b2018-11-05 18:01:42 +0000704 break;
705 case RCW_SRC_I2C1_VAL:
706 /* RCW SRC I2C1 Extended */
707 src = BOOT_SOURCE_I2C1_EXTENDED;
708 break;
709 default:
710 src = BOOT_SOURCE_RESERVED;
711 }
712 }
713#endif
714#elif defined(CONFIG_FSL_LSCH2)
715 /* RCW SRC NAND */
716 val = rcw_src & RCW_SRC_NAND_MASK;
717 if (val == RCW_SRC_NAND_VAL) {
718 val = rcw_src & NAND_RESERVED_MASK;
719 if (val != NAND_RESERVED_1 && val != NAND_RESERVED_2)
720 src = BOOT_SOURCE_IFC_NAND;
721
722 } else {
723 /* RCW SRC NOR */
724 val = rcw_src & RCW_SRC_NOR_MASK;
725 if (val == NOR_8B_VAL || val == NOR_16B_VAL) {
726 src = BOOT_SOURCE_IFC_NOR;
727 } else {
728 switch (rcw_src) {
729 case QSPI_VAL1:
730 case QSPI_VAL2:
731 src = BOOT_SOURCE_QSPI_NOR;
732 break;
733 case SD_VAL:
734 src = BOOT_SOURCE_SD_MMC;
735 break;
736 default:
737 src = BOOT_SOURCE_RESERVED;
738 }
739 }
740 }
741#endif
York Sun8f3f4ef2018-11-05 18:02:09 +0000742
743 if (CONFIG_IS_ENABLED(SYS_FSL_ERRATUM_A010539) && !rcw_src)
744 src = BOOT_SOURCE_QSPI_NOR;
745
Rajesh Bhagat583da8b2018-11-05 18:01:42 +0000746 debug("%s: src 0x%x\n", __func__, src);
747 return src;
748}
749
750enum boot_src get_boot_src(void)
751{
York Sun8f3f4ef2018-11-05 18:02:09 +0000752 struct pt_regs regs;
753 u32 porsr1 = 0;
Rajesh Bhagat583da8b2018-11-05 18:01:42 +0000754
755#if defined(CONFIG_FSL_LSCH3)
756 u32 __iomem *dcfg_ccsr = (u32 __iomem *)DCFG_BASE;
Rajesh Bhagat583da8b2018-11-05 18:01:42 +0000757#elif defined(CONFIG_FSL_LSCH2)
758 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
York Sun8f3f4ef2018-11-05 18:02:09 +0000759#endif
Rajesh Bhagat583da8b2018-11-05 18:01:42 +0000760
York Sun8f3f4ef2018-11-05 18:02:09 +0000761 if (current_el() == 2) {
762 regs.regs[0] = SIP_SVC_RCW;
763
764 smc_call(&regs);
765 if (!regs.regs[0])
766 porsr1 = regs.regs[1];
767 }
768
769 if (current_el() == 3 || !porsr1) {
770#ifdef CONFIG_FSL_LSCH3
771 porsr1 = in_le32(dcfg_ccsr + DCFG_PORSR1 / 4);
772#elif defined(CONFIG_FSL_LSCH2)
773 porsr1 = in_be32(&gur->porsr1);
Mingkai Hu0e58b512015-10-26 19:47:50 +0800774#endif
York Sun8f3f4ef2018-11-05 18:02:09 +0000775 }
776
Rajesh Bhagat583da8b2018-11-05 18:01:42 +0000777 debug("%s: porsr1 0x%x\n", __func__, porsr1);
778
779 return __get_boot_src(porsr1);
780}
781
782#ifdef CONFIG_ENV_IS_IN_MMC
783int mmc_get_env_dev(void)
784{
785 enum boot_src src = get_boot_src();
786 int dev = CONFIG_SYS_MMC_ENV_DEV;
787
788 switch (src) {
789 case BOOT_SOURCE_SD_MMC:
790 dev = 0;
791 break;
792 case BOOT_SOURCE_SD_MMC2:
793 dev = 1;
794 break;
795 default:
796 break;
797 }
798
799 return dev;
800}
801#endif
802
803enum env_location env_get_location(enum env_operation op, int prio)
804{
805 enum boot_src src = get_boot_src();
806 enum env_location env_loc = ENVL_NOWHERE;
807
808 if (prio)
809 return ENVL_UNKNOWN;
810
Udit Agarwal5e9720c2019-04-23 06:06:04 +0000811#ifdef CONFIG_ENV_IS_NOWHERE
812 return env_loc;
Pankit Gargbdbf84f2018-11-05 18:01:52 +0000813#endif
814
Rajesh Bhagat583da8b2018-11-05 18:01:42 +0000815 switch (src) {
816 case BOOT_SOURCE_IFC_NOR:
817 env_loc = ENVL_FLASH;
818 break;
819 case BOOT_SOURCE_QSPI_NOR:
820 /* FALLTHROUGH */
821 case BOOT_SOURCE_XSPI_NOR:
822 env_loc = ENVL_SPI_FLASH;
823 break;
824 case BOOT_SOURCE_IFC_NAND:
825 /* FALLTHROUGH */
826 case BOOT_SOURCE_QSPI_NAND:
827 /* FALLTHROUGH */
828 case BOOT_SOURCE_XSPI_NAND:
829 env_loc = ENVL_NAND;
830 break;
831 case BOOT_SOURCE_SD_MMC:
832 /* FALLTHROUGH */
833 case BOOT_SOURCE_SD_MMC2:
834 env_loc = ENVL_MMC;
835 break;
836 case BOOT_SOURCE_I2C1_EXTENDED:
837 /* FALLTHROUGH */
838 default:
839 break;
840 }
841
842 return env_loc;
843}
844#endif /* CONFIG_TFABOOT */
Mingkai Hu0e58b512015-10-26 19:47:50 +0800845
Priyanka Jain9a276702016-11-17 12:29:56 +0530846u32 initiator_type(u32 cluster, int init_id)
Mingkai Hu0e58b512015-10-26 19:47:50 +0800847{
848 struct ccsr_gur *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
849 u32 idx = (cluster >> (init_id * 8)) & TP_CLUSTER_INIT_MASK;
850 u32 type = 0;
851
852 type = gur_in32(&gur->tp_ityp[idx]);
853 if (type & TP_ITYP_AV)
854 return type;
855
856 return 0;
857}
858
York Suned7fbe32016-09-13 12:40:30 -0700859u32 cpu_pos_mask(void)
860{
861 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
862 int i = 0;
863 u32 cluster, type, mask = 0;
864
865 do {
866 int j;
867
868 cluster = gur_in32(&gur->tp_cluster[i].lower);
869 for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
870 type = initiator_type(cluster, j);
871 if (type && (TP_ITYP_TYPE(type) == TP_ITYP_TYPE_ARM))
872 mask |= 1 << (i * TP_INIT_PER_CLUSTER + j);
873 }
874 i++;
875 } while ((cluster & TP_CLUSTER_EOC) == 0x0);
876
877 return mask;
878}
879
Mingkai Hu0e58b512015-10-26 19:47:50 +0800880u32 cpu_mask(void)
881{
882 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
883 int i = 0, count = 0;
884 u32 cluster, type, mask = 0;
885
886 do {
887 int j;
888
889 cluster = gur_in32(&gur->tp_cluster[i].lower);
890 for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
891 type = initiator_type(cluster, j);
892 if (type) {
893 if (TP_ITYP_TYPE(type) == TP_ITYP_TYPE_ARM)
894 mask |= 1 << count;
895 count++;
896 }
897 }
898 i++;
899 } while ((cluster & TP_CLUSTER_EOC) == 0x0);
900
901 return mask;
902}
903
904/*
905 * Return the number of cores on this SOC.
906 */
907int cpu_numcores(void)
908{
909 return hweight32(cpu_mask());
910}
911
912int fsl_qoriq_core_to_cluster(unsigned int core)
913{
914 struct ccsr_gur __iomem *gur =
915 (void __iomem *)(CONFIG_SYS_FSL_GUTS_ADDR);
916 int i = 0, count = 0;
917 u32 cluster;
918
919 do {
920 int j;
921
922 cluster = gur_in32(&gur->tp_cluster[i].lower);
923 for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
924 if (initiator_type(cluster, j)) {
925 if (count == core)
926 return i;
927 count++;
928 }
929 }
930 i++;
931 } while ((cluster & TP_CLUSTER_EOC) == 0x0);
932
933 return -1; /* cannot identify the cluster */
934}
935
936u32 fsl_qoriq_core_to_type(unsigned int core)
937{
938 struct ccsr_gur __iomem *gur =
939 (void __iomem *)(CONFIG_SYS_FSL_GUTS_ADDR);
940 int i = 0, count = 0;
941 u32 cluster, type;
942
943 do {
944 int j;
945
946 cluster = gur_in32(&gur->tp_cluster[i].lower);
947 for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
948 type = initiator_type(cluster, j);
949 if (type) {
950 if (count == core)
951 return type;
952 count++;
953 }
954 }
955 i++;
956 } while ((cluster & TP_CLUSTER_EOC) == 0x0);
957
958 return -1; /* cannot identify the cluster */
959}
960
Priyanka Jain96b001f2016-11-17 12:29:51 +0530961#ifndef CONFIG_FSL_LSCH3
Sriram Dash9282d262016-06-13 09:58:32 +0530962uint get_svr(void)
963{
964 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
965
966 return gur_in32(&gur->svr);
967}
Priyanka Jain96b001f2016-11-17 12:29:51 +0530968#endif
Sriram Dash9282d262016-06-13 09:58:32 +0530969
Mingkai Hu0e58b512015-10-26 19:47:50 +0800970#ifdef CONFIG_DISPLAY_CPUINFO
971int print_cpuinfo(void)
972{
973 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
974 struct sys_info sysinfo;
975 char buf[32];
976 unsigned int i, core;
York Suncbe8e1c2016-04-04 11:41:26 -0700977 u32 type, rcw, svr = gur_in32(&gur->svr);
Mingkai Hu0e58b512015-10-26 19:47:50 +0800978
979 puts("SoC: ");
980
981 cpu_name(buf);
York Suncbe8e1c2016-04-04 11:41:26 -0700982 printf(" %s (0x%x)\n", buf, svr);
Mingkai Hu0e58b512015-10-26 19:47:50 +0800983 memset((u8 *)buf, 0x00, ARRAY_SIZE(buf));
984 get_sys_info(&sysinfo);
985 puts("Clock Configuration:");
986 for_each_cpu(i, core, cpu_numcores(), cpu_mask()) {
987 if (!(i % 3))
988 puts("\n ");
989 type = TP_ITYP_VER(fsl_qoriq_core_to_type(core));
990 printf("CPU%d(%s):%-4s MHz ", core,
991 type == TY_ITYP_VER_A7 ? "A7 " :
992 (type == TY_ITYP_VER_A53 ? "A53" :
Alison Wang79808392016-07-05 16:01:52 +0800993 (type == TY_ITYP_VER_A57 ? "A57" :
994 (type == TY_ITYP_VER_A72 ? "A72" : " "))),
Mingkai Hu0e58b512015-10-26 19:47:50 +0800995 strmhz(buf, sysinfo.freq_processor[core]));
996 }
Hou Zhiqiang3f91cda2017-01-10 16:44:15 +0800997 /* Display platform clock as Bus frequency. */
Mingkai Hu0e58b512015-10-26 19:47:50 +0800998 printf("\n Bus: %-4s MHz ",
Hou Zhiqiang3f91cda2017-01-10 16:44:15 +0800999 strmhz(buf, sysinfo.freq_systembus / CONFIG_SYS_FSL_PCLK_DIV));
Mingkai Hu0e58b512015-10-26 19:47:50 +08001000 printf("DDR: %-4s MT/s", strmhz(buf, sysinfo.freq_ddrbus));
Shaohui Xie04643262015-10-26 19:47:54 +08001001#ifdef CONFIG_SYS_DPAA_FMAN
1002 printf(" FMAN: %-4s MHz", strmhz(buf, sysinfo.freq_fman[0]));
1003#endif
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +05301004#ifdef CONFIG_SYS_FSL_HAS_DP_DDR
York Suncbe8e1c2016-04-04 11:41:26 -07001005 if (soc_has_dp_ddr()) {
1006 printf(" DP-DDR: %-4s MT/s",
1007 strmhz(buf, sysinfo.freq_ddrbus2));
1008 }
Mingkai Hu0e58b512015-10-26 19:47:50 +08001009#endif
1010 puts("\n");
1011
1012 /*
1013 * Display the RCW, so that no one gets confused as to what RCW
1014 * we're actually using for this boot.
1015 */
1016 puts("Reset Configuration Word (RCW):");
1017 for (i = 0; i < ARRAY_SIZE(gur->rcwsr); i++) {
1018 rcw = gur_in32(&gur->rcwsr[i]);
1019 if ((i % 4) == 0)
1020 printf("\n %08x:", i * 4);
1021 printf(" %08x", rcw);
1022 }
1023 puts("\n");
1024
1025 return 0;
1026}
1027#endif
1028
1029#ifdef CONFIG_FSL_ESDHC
1030int cpu_mmc_init(bd_t *bis)
1031{
1032 return fsl_esdhc_mmc_init(bis);
1033}
1034#endif
1035
1036int cpu_eth_init(bd_t *bis)
1037{
1038 int error = 0;
1039
Santan Kumar1afa9002017-05-05 15:42:29 +05301040#if defined(CONFIG_FSL_MC_ENET) && !defined(CONFIG_SPL_BUILD)
Mingkai Hu0e58b512015-10-26 19:47:50 +08001041 error = fsl_mc_ldpaa_init(bis);
1042#endif
Shaohui Xie04643262015-10-26 19:47:54 +08001043#ifdef CONFIG_FMAN_ENET
1044 fm_standard_init(bis);
1045#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +08001046 return error;
1047}
1048
Yuantian Tangaec3b142017-04-19 13:27:39 +08001049static inline int check_psci(void)
Mingkai Hu0e58b512015-10-26 19:47:50 +08001050{
Yuantian Tangaec3b142017-04-19 13:27:39 +08001051 unsigned int psci_ver;
Prabhakar Kushwaha22cfe962015-11-05 12:00:14 +05301052
Yuantian Tangaec3b142017-04-19 13:27:39 +08001053 psci_ver = sec_firmware_support_psci_version();
1054 if (psci_ver == PSCI_INVALID_VER)
1055 return 1;
1056
1057 return 0;
1058}
1059
Prabhakar Kushwaha0acce842017-11-10 11:32:52 +05301060static void config_core_prefetch(void)
1061{
1062 char *buf = NULL;
1063 char buffer[HWCONFIG_BUFFER_SIZE];
1064 const char *prefetch_arg = NULL;
1065 size_t arglen;
1066 unsigned int mask;
1067 struct pt_regs regs;
1068
1069 if (env_get_f("hwconfig", buffer, sizeof(buffer)) > 0)
1070 buf = buffer;
1071
1072 prefetch_arg = hwconfig_subarg_f("core_prefetch", "disable",
1073 &arglen, buf);
1074
1075 if (prefetch_arg) {
1076 mask = simple_strtoul(prefetch_arg, NULL, 0) & 0xff;
1077 if (mask & 0x1) {
1078 printf("Core0 prefetch can't be disabled\n");
1079 return;
1080 }
1081
1082#define SIP_PREFETCH_DISABLE_64 0xC200FF13
1083 regs.regs[0] = SIP_PREFETCH_DISABLE_64;
1084 regs.regs[1] = mask;
1085 smc_call(&regs);
1086
1087 if (regs.regs[0])
1088 printf("Prefetch disable config failed for mask ");
1089 else
1090 printf("Prefetch disable config passed for mask ");
1091 printf("0x%x\n", mask);
1092 }
1093}
1094
Yuantian Tangaec3b142017-04-19 13:27:39 +08001095int arch_early_init_r(void)
1096{
Prabhakar Kushwaha22cfe962015-11-05 12:00:14 +05301097#ifdef CONFIG_SYS_FSL_ERRATUM_A009635
Priyanka Jain823e0422017-02-14 10:34:31 +05301098 u32 svr_dev_id;
1099 /*
1100 * erratum A009635 is valid only for LS2080A SoC and
1101 * its personalitiesi
1102 */
Wenbin song5d8a61c2017-12-04 12:18:28 +08001103 svr_dev_id = get_svr();
1104 if (IS_SVR_DEV(svr_dev_id, SVR_DEV(SVR_LS2080A)))
Priyanka Jain823e0422017-02-14 10:34:31 +05301105 erratum_a009635();
Prabhakar Kushwaha22cfe962015-11-05 12:00:14 +05301106#endif
Shengzhou Liu15875a52016-11-21 11:36:48 +08001107#if defined(CONFIG_SYS_FSL_ERRATUM_A009942) && defined(CONFIG_SYS_FSL_DDR)
1108 erratum_a009942_check_cpo();
1109#endif
Yuantian Tangaec3b142017-04-19 13:27:39 +08001110 if (check_psci()) {
1111 debug("PSCI: PSCI does not exist.\n");
1112
1113 /* if PSCI does not exist, boot secondary cores here */
1114 if (fsl_layerscape_wake_seconday_cores())
Hou Zhiqiang21c4d552016-06-28 20:18:15 +08001115 printf("Did not wake secondary cores\n");
1116 }
Mingkai Hu0e58b512015-10-26 19:47:50 +08001117
Prabhakar Kushwaha0acce842017-11-10 11:32:52 +05301118 config_core_prefetch();
1119
Mingkai Hu0e58b512015-10-26 19:47:50 +08001120#ifdef CONFIG_SYS_HAS_SERDES
1121 fsl_serdes_init();
1122#endif
Pankaj Bansalcc840622018-10-29 11:28:26 +00001123#ifdef CONFIG_SYS_FSL_HAS_RGMII
1124 /* some dpmacs in armv8a based freescale layerscape SOCs can be
1125 * configured via both serdes(sgmii, xfi, xlaui etc) bits and via
1126 * EC*_PMUX(rgmii) bits in RCW.
1127 * e.g. dpmac 17 and 18 in LX2160A can be configured as SGMII from
1128 * serdes bits and as RGMII via EC1_PMUX/EC2_PMUX bits
1129 * Now if a dpmac is enabled by serdes bits then it takes precedence
1130 * over EC*_PMUX bits. i.e. in LX2160A if we select serdes protocol
1131 * that configures dpmac17 as SGMII and set the EC1_PMUX as RGMII,
1132 * then the dpmac is SGMII and not RGMII.
1133 *
1134 * Therefore, move the fsl_rgmii_init after fsl_serdes_init. in
1135 * fsl_rgmii_init function of SOC, we will check if the dpmac is enabled
1136 * or not? if it is (fsl_serdes_init has already enabled the dpmac),
1137 * then don't enable it.
1138 */
1139 fsl_rgmii_init();
1140#endif
Shaohui Xie04643262015-10-26 19:47:54 +08001141#ifdef CONFIG_FMAN_ENET
1142 fman_enet_init();
1143#endif
Ahmed Mansouraa270b42017-12-15 16:01:00 -05001144#ifdef CONFIG_SYS_DPAA_QBMAN
1145 setup_qbman_portals();
1146#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +08001147 return 0;
1148}
1149
1150int timer_init(void)
1151{
1152 u32 __iomem *cntcr = (u32 *)CONFIG_SYS_FSL_TIMER_ADDR;
1153#ifdef CONFIG_FSL_LSCH3
1154 u32 __iomem *cltbenr = (u32 *)CONFIG_SYS_FSL_PMU_CLTBENR;
1155#endif
Zhang Ying-224558fd45492018-01-09 16:25:46 +08001156#if defined(CONFIG_ARCH_LS2080A) || defined(CONFIG_ARCH_LS1088A)
Yunhui Cui3dfb82a2016-06-08 10:31:42 +08001157 u32 __iomem *pctbenr = (u32 *)FSL_PMU_PCTBENR_OFFSET;
Priyanka Jain3d31ec72016-11-17 12:29:52 +05301158 u32 svr_dev_id;
Yunhui Cui3dfb82a2016-06-08 10:31:42 +08001159#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +08001160#ifdef COUNTER_FREQUENCY_REAL
1161 unsigned long cntfrq = COUNTER_FREQUENCY_REAL;
1162
1163 /* Update with accurate clock frequency */
York Sune6b871e2017-05-15 08:51:59 -07001164 if (current_el() == 3)
1165 asm volatile("msr cntfrq_el0, %0" : : "r" (cntfrq) : "memory");
Mingkai Hu0e58b512015-10-26 19:47:50 +08001166#endif
1167
1168#ifdef CONFIG_FSL_LSCH3
1169 /* Enable timebase for all clusters.
1170 * It is safe to do so even some clusters are not enabled.
1171 */
1172 out_le32(cltbenr, 0xf);
1173#endif
1174
Zhang Ying-224558fd45492018-01-09 16:25:46 +08001175#if defined(CONFIG_ARCH_LS2080A) || defined(CONFIG_ARCH_LS1088A)
Yunhui Cui3dfb82a2016-06-08 10:31:42 +08001176 /*
1177 * In certain Layerscape SoCs, the clock for each core's
1178 * has an enable bit in the PMU Physical Core Time Base Enable
1179 * Register (PCTBENR), which allows the watchdog to operate.
1180 */
1181 setbits_le32(pctbenr, 0xff);
Priyanka Jain3d31ec72016-11-17 12:29:52 +05301182 /*
1183 * For LS2080A SoC and its personalities, timer controller
1184 * offset is different
1185 */
Wenbin song5d8a61c2017-12-04 12:18:28 +08001186 svr_dev_id = get_svr();
1187 if (IS_SVR_DEV(svr_dev_id, SVR_DEV(SVR_LS2080A)))
Priyanka Jain3d31ec72016-11-17 12:29:52 +05301188 cntcr = (u32 *)SYS_FSL_LS2080A_LS2085A_TIMER_ADDR;
1189
Yunhui Cui3dfb82a2016-06-08 10:31:42 +08001190#endif
1191
Mingkai Hu0e58b512015-10-26 19:47:50 +08001192 /* Enable clock for timer
1193 * This is a global setting.
1194 */
1195 out_le32(cntcr, 0x1);
1196
1197 return 0;
1198}
1199
Alexander Graf12be31c2016-11-17 01:03:01 +01001200__efi_runtime_data u32 __iomem *rstcr = (u32 *)CONFIG_SYS_FSL_RST_ADDR;
1201
1202void __efi_runtime reset_cpu(ulong addr)
Mingkai Hu0e58b512015-10-26 19:47:50 +08001203{
Mingkai Hu0e58b512015-10-26 19:47:50 +08001204 u32 val;
1205
Priyanka Jainef76b2e2018-10-29 09:17:09 +00001206#ifdef CONFIG_ARCH_LX2160A
1207 val = in_le32(rstcr);
1208 val |= 0x01;
1209 out_le32(rstcr, val);
1210#else
Mingkai Hu0e58b512015-10-26 19:47:50 +08001211 /* Raise RESET_REQ_B */
1212 val = scfg_in32(rstcr);
1213 val |= 0x02;
1214 scfg_out32(rstcr, val);
Priyanka Jainef76b2e2018-10-29 09:17:09 +00001215#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +08001216}
York Sun928b6812015-12-07 11:08:58 -08001217
Alexander Graf12be31c2016-11-17 01:03:01 +01001218#ifdef CONFIG_EFI_LOADER
1219
1220void __efi_runtime EFIAPI efi_reset_system(
1221 enum efi_reset_type reset_type,
1222 efi_status_t reset_status,
1223 unsigned long data_size, void *reset_data)
1224{
1225 switch (reset_type) {
1226 case EFI_RESET_COLD:
1227 case EFI_RESET_WARM:
Heinrich Schuchardt450d4c82018-02-06 22:00:22 +01001228 case EFI_RESET_PLATFORM_SPECIFIC:
Alexander Graf12be31c2016-11-17 01:03:01 +01001229 reset_cpu(0);
1230 break;
1231 case EFI_RESET_SHUTDOWN:
1232 /* Nothing we can do */
1233 break;
1234 }
1235
1236 while (1) { }
1237}
1238
Heinrich Schuchardt099b3b72018-03-03 15:28:59 +01001239efi_status_t efi_reset_system_init(void)
Alexander Graf12be31c2016-11-17 01:03:01 +01001240{
Heinrich Schuchardt099b3b72018-03-03 15:28:59 +01001241 return efi_add_runtime_mmio(&rstcr, sizeof(*rstcr));
Alexander Graf12be31c2016-11-17 01:03:01 +01001242}
1243
1244#endif
1245
York Sun2db54082017-09-07 10:12:32 -07001246/*
1247 * Calculate reserved memory with given memory bank
1248 * Return aligned memory size on success
1249 * Return (ram_size + needed size) for failure
1250 */
York Sun928b6812015-12-07 11:08:58 -08001251phys_size_t board_reserve_ram_top(phys_size_t ram_size)
1252{
1253 phys_size_t ram_top = ram_size;
1254
Santan Kumar1afa9002017-05-05 15:42:29 +05301255#if defined(CONFIG_FSL_MC_ENET) && !defined(CONFIG_SPL_BUILD)
York Sun2db54082017-09-07 10:12:32 -07001256 ram_top = mc_get_dram_block_size();
1257 if (ram_top > ram_size)
1258 return ram_size + ram_top;
1259
1260 ram_top = ram_size - ram_top;
York Sun4de24ef2017-03-06 09:02:28 -08001261 /* The start address of MC reserved memory needs to be aligned. */
York Sun928b6812015-12-07 11:08:58 -08001262 ram_top &= ~(CONFIG_SYS_MC_RSV_MEM_ALIGN - 1);
1263#endif
York Sun4de24ef2017-03-06 09:02:28 -08001264
1265 return ram_size - ram_top;
1266}
1267
1268phys_size_t get_effective_memsize(void)
1269{
1270 phys_size_t ea_size, rem = 0;
1271
1272 /*
1273 * For ARMv8 SoCs, DDR memory is split into two or three regions. The
Sumit Garged0deea2017-10-04 03:20:49 +05301274 * first region is 2GB space at 0x8000_0000. Secure memory needs to
1275 * allocated from first region. If the memory extends to the second
1276 * region (or the third region if applicable), Management Complex (MC)
1277 * memory should be put into the highest region, i.e. the end of DDR
1278 * memory. CONFIG_MAX_MEM_MAPPED is set to the size of first region so
1279 * U-Boot doesn't relocate itself into higher address. Should DDR be
1280 * configured to skip the first region, this function needs to be
1281 * adjusted.
York Sun4de24ef2017-03-06 09:02:28 -08001282 */
1283 if (gd->ram_size > CONFIG_MAX_MEM_MAPPED) {
1284 ea_size = CONFIG_MAX_MEM_MAPPED;
1285 rem = gd->ram_size - ea_size;
1286 } else {
1287 ea_size = gd->ram_size;
1288 }
1289
1290#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
1291 /* Check if we have enough space for secure memory */
Sumit Garged0deea2017-10-04 03:20:49 +05301292 if (ea_size > CONFIG_SYS_MEM_RESERVE_SECURE)
1293 ea_size -= CONFIG_SYS_MEM_RESERVE_SECURE;
1294 else
1295 printf("Error: No enough space for secure memory.\n");
York Sun4de24ef2017-03-06 09:02:28 -08001296#endif
1297 /* Check if we have enough memory for MC */
1298 if (rem < board_reserve_ram_top(rem)) {
1299 /* Not enough memory in high region to reserve */
York Sun2db54082017-09-07 10:12:32 -07001300 if (ea_size > board_reserve_ram_top(ea_size))
1301 ea_size -= board_reserve_ram_top(ea_size);
York Sun4de24ef2017-03-06 09:02:28 -08001302 else
1303 printf("Error: No enough space for reserved memory.\n");
1304 }
1305
1306 return ea_size;
1307}
1308
Rajesh Bhagat1dde2d22018-11-05 18:01:58 +00001309#ifdef CONFIG_TFABOOT
1310phys_size_t tfa_get_dram_size(void)
1311{
1312 struct pt_regs regs;
1313 phys_size_t dram_size = 0;
1314
1315 regs.regs[0] = SMC_DRAM_BANK_INFO;
1316 regs.regs[1] = -1;
1317
1318 smc_call(&regs);
1319 if (regs.regs[0])
1320 return 0;
1321
1322 dram_size = regs.regs[1];
1323 return dram_size;
1324}
1325
1326static int tfa_dram_init_banksize(void)
1327{
1328 int i = 0, ret = 0;
1329 struct pt_regs regs;
1330 phys_size_t dram_size = tfa_get_dram_size();
1331
1332 debug("dram_size %llx\n", dram_size);
1333
1334 if (!dram_size)
1335 return -EINVAL;
1336
1337 do {
1338 regs.regs[0] = SMC_DRAM_BANK_INFO;
1339 regs.regs[1] = i;
1340
1341 smc_call(&regs);
1342 if (regs.regs[0]) {
1343 ret = -EINVAL;
1344 break;
1345 }
1346
1347 debug("bank[%d]: start %lx, size %lx\n", i, regs.regs[1],
1348 regs.regs[2]);
1349 gd->bd->bi_dram[i].start = regs.regs[1];
1350 gd->bd->bi_dram[i].size = regs.regs[2];
1351
1352 dram_size -= gd->bd->bi_dram[i].size;
1353
1354 i++;
1355 } while (dram_size);
1356
1357 if (i > 0)
1358 ret = 0;
1359
1360#if defined(CONFIG_FSL_MC_ENET) && !defined(CONFIG_SPL_BUILD)
1361 /* Assign memory for MC */
1362#ifdef CONFIG_SYS_DDR_BLOCK3_BASE
1363 if (gd->bd->bi_dram[2].size >=
1364 board_reserve_ram_top(gd->bd->bi_dram[2].size)) {
1365 gd->arch.resv_ram = gd->bd->bi_dram[2].start +
1366 gd->bd->bi_dram[2].size -
1367 board_reserve_ram_top(gd->bd->bi_dram[2].size);
1368 } else
1369#endif
1370 {
1371 if (gd->bd->bi_dram[1].size >=
1372 board_reserve_ram_top(gd->bd->bi_dram[1].size)) {
1373 gd->arch.resv_ram = gd->bd->bi_dram[1].start +
1374 gd->bd->bi_dram[1].size -
1375 board_reserve_ram_top(gd->bd->bi_dram[1].size);
1376 } else if (gd->bd->bi_dram[0].size >
1377 board_reserve_ram_top(gd->bd->bi_dram[0].size)) {
1378 gd->arch.resv_ram = gd->bd->bi_dram[0].start +
1379 gd->bd->bi_dram[0].size -
1380 board_reserve_ram_top(gd->bd->bi_dram[0].size);
1381 }
1382 }
1383#endif /* CONFIG_FSL_MC_ENET */
1384
1385 return ret;
1386}
1387#endif
1388
Simon Glass2f949c32017-03-31 08:40:32 -06001389int dram_init_banksize(void)
York Sun4de24ef2017-03-06 09:02:28 -08001390{
1391#ifdef CONFIG_SYS_DP_DDR_BASE_PHY
1392 phys_size_t dp_ddr_size;
1393#endif
1394
Rajesh Bhagat1dde2d22018-11-05 18:01:58 +00001395#ifdef CONFIG_TFABOOT
1396 if (!tfa_dram_init_banksize())
1397 return 0;
1398#endif
York Sun4de24ef2017-03-06 09:02:28 -08001399 /*
1400 * gd->ram_size has the total size of DDR memory, less reserved secure
1401 * memory. The DDR extends from low region to high region(s) presuming
1402 * no hole is created with DDR configuration. gd->arch.secure_ram tracks
1403 * the location of secure memory. gd->arch.resv_ram tracks the location
York Sunc9e3e042017-09-28 08:42:12 -07001404 * of reserved memory for Management Complex (MC). Because gd->ram_size
1405 * is reduced by this function if secure memory is reserved, checking
1406 * gd->arch.secure_ram should be done to avoid running it repeatedly.
York Sun4de24ef2017-03-06 09:02:28 -08001407 */
York Sunc9e3e042017-09-28 08:42:12 -07001408
1409#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
1410 if (gd->arch.secure_ram & MEM_RESERVE_SECURE_MAINTAINED) {
1411 debug("No need to run again, skip %s\n", __func__);
1412
1413 return 0;
1414 }
1415#endif
1416
York Sun4de24ef2017-03-06 09:02:28 -08001417 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
1418 if (gd->ram_size > CONFIG_SYS_DDR_BLOCK1_SIZE) {
1419 gd->bd->bi_dram[0].size = CONFIG_SYS_DDR_BLOCK1_SIZE;
1420 gd->bd->bi_dram[1].start = CONFIG_SYS_DDR_BLOCK2_BASE;
1421 gd->bd->bi_dram[1].size = gd->ram_size -
1422 CONFIG_SYS_DDR_BLOCK1_SIZE;
1423#ifdef CONFIG_SYS_DDR_BLOCK3_BASE
1424 if (gd->bi_dram[1].size > CONFIG_SYS_DDR_BLOCK2_SIZE) {
1425 gd->bd->bi_dram[2].start = CONFIG_SYS_DDR_BLOCK3_BASE;
1426 gd->bd->bi_dram[2].size = gd->bd->bi_dram[1].size -
1427 CONFIG_SYS_DDR_BLOCK2_SIZE;
1428 gd->bd->bi_dram[1].size = CONFIG_SYS_DDR_BLOCK2_SIZE;
1429 }
1430#endif
1431 } else {
1432 gd->bd->bi_dram[0].size = gd->ram_size;
1433 }
1434#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
Sumit Garged0deea2017-10-04 03:20:49 +05301435 if (gd->bd->bi_dram[0].size >
1436 CONFIG_SYS_MEM_RESERVE_SECURE) {
1437 gd->bd->bi_dram[0].size -=
1438 CONFIG_SYS_MEM_RESERVE_SECURE;
1439 gd->arch.secure_ram = gd->bd->bi_dram[0].start +
1440 gd->bd->bi_dram[0].size;
York Sun4de24ef2017-03-06 09:02:28 -08001441 gd->arch.secure_ram |= MEM_RESERVE_SECURE_MAINTAINED;
1442 gd->ram_size -= CONFIG_SYS_MEM_RESERVE_SECURE;
York Sun4de24ef2017-03-06 09:02:28 -08001443 }
1444#endif /* CONFIG_SYS_MEM_RESERVE_SECURE */
1445
Santan Kumar1afa9002017-05-05 15:42:29 +05301446#if defined(CONFIG_FSL_MC_ENET) && !defined(CONFIG_SPL_BUILD)
York Sun4de24ef2017-03-06 09:02:28 -08001447 /* Assign memory for MC */
1448#ifdef CONFIG_SYS_DDR_BLOCK3_BASE
1449 if (gd->bd->bi_dram[2].size >=
1450 board_reserve_ram_top(gd->bd->bi_dram[2].size)) {
1451 gd->arch.resv_ram = gd->bd->bi_dram[2].start +
1452 gd->bd->bi_dram[2].size -
1453 board_reserve_ram_top(gd->bd->bi_dram[2].size);
1454 } else
1455#endif
1456 {
1457 if (gd->bd->bi_dram[1].size >=
1458 board_reserve_ram_top(gd->bd->bi_dram[1].size)) {
1459 gd->arch.resv_ram = gd->bd->bi_dram[1].start +
1460 gd->bd->bi_dram[1].size -
1461 board_reserve_ram_top(gd->bd->bi_dram[1].size);
1462 } else if (gd->bd->bi_dram[0].size >
1463 board_reserve_ram_top(gd->bd->bi_dram[0].size)) {
1464 gd->arch.resv_ram = gd->bd->bi_dram[0].start +
1465 gd->bd->bi_dram[0].size -
1466 board_reserve_ram_top(gd->bd->bi_dram[0].size);
1467 }
1468 }
1469#endif /* CONFIG_FSL_MC_ENET */
1470
1471#ifdef CONFIG_SYS_DP_DDR_BASE_PHY
1472#ifdef CONFIG_SYS_DDR_BLOCK3_BASE
1473#error "This SoC shouldn't have DP DDR"
1474#endif
1475 if (soc_has_dp_ddr()) {
1476 /* initialize DP-DDR here */
1477 puts("DP-DDR: ");
1478 /*
1479 * DDR controller use 0 as the base address for binding.
1480 * It is mapped to CONFIG_SYS_DP_DDR_BASE for core to access.
1481 */
1482 dp_ddr_size = fsl_other_ddr_sdram(CONFIG_SYS_DP_DDR_BASE_PHY,
1483 CONFIG_DP_DDR_CTRL,
1484 CONFIG_DP_DDR_NUM_CTRLS,
1485 CONFIG_DP_DDR_DIMM_SLOTS_PER_CTLR,
1486 NULL, NULL, NULL);
1487 if (dp_ddr_size) {
1488 gd->bd->bi_dram[2].start = CONFIG_SYS_DP_DDR_BASE;
1489 gd->bd->bi_dram[2].size = dp_ddr_size;
1490 } else {
1491 puts("Not detected");
1492 }
1493 }
1494#endif
Simon Glass2f949c32017-03-31 08:40:32 -06001495
York Sunc9e3e042017-09-28 08:42:12 -07001496#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
1497 debug("%s is called. gd->ram_size is reduced to %lu\n",
1498 __func__, (ulong)gd->ram_size);
1499#endif
1500
Simon Glass2f949c32017-03-31 08:40:32 -06001501 return 0;
York Sun4de24ef2017-03-06 09:02:28 -08001502}
1503
Stephen Warrend0de8062018-08-30 15:43:43 -06001504#if CONFIG_IS_ENABLED(EFI_LOADER)
York Sun4de24ef2017-03-06 09:02:28 -08001505void efi_add_known_memory(void)
1506{
1507 int i;
1508 phys_addr_t ram_start, start;
1509 phys_size_t ram_size;
1510 u64 pages;
York Sun928b6812015-12-07 11:08:58 -08001511
York Sun4de24ef2017-03-06 09:02:28 -08001512 /* Add RAM */
1513 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
1514#ifdef CONFIG_SYS_DP_DDR_BASE_PHY
1515#ifdef CONFIG_SYS_DDR_BLOCK3_BASE
1516#error "This SoC shouldn't have DP DDR"
1517#endif
1518 if (i == 2)
1519 continue; /* skip DP-DDR */
1520#endif
1521 ram_start = gd->bd->bi_dram[i].start;
1522 ram_size = gd->bd->bi_dram[i].size;
1523#ifdef CONFIG_RESV_RAM
1524 if (gd->arch.resv_ram >= ram_start &&
1525 gd->arch.resv_ram < ram_start + ram_size)
1526 ram_size = gd->arch.resv_ram - ram_start;
1527#endif
1528 start = (ram_start + EFI_PAGE_MASK) & ~EFI_PAGE_MASK;
1529 pages = (ram_size + EFI_PAGE_MASK) >> EFI_PAGE_SHIFT;
1530
1531 efi_add_memory_map(start, pages, EFI_CONVENTIONAL_MEMORY,
1532 false);
1533 }
York Sun928b6812015-12-07 11:08:58 -08001534}
York Sun4de24ef2017-03-06 09:02:28 -08001535#endif
York Sun729f2d12017-03-06 09:02:34 -08001536
1537/*
1538 * Before DDR size is known, early MMU table have DDR mapped as device memory
1539 * to avoid speculative access. To relocate U-Boot to DDR, "normal memory"
1540 * needs to be set for these mappings.
1541 * If a special case configures DDR with holes in the mapping, the holes need
1542 * to be marked as invalid. This is not implemented in this function.
1543 */
1544void update_early_mmu_table(void)
1545{
1546 if (!gd->arch.tlb_addr)
1547 return;
1548
1549 if (gd->ram_size <= CONFIG_SYS_FSL_DRAM_SIZE1) {
1550 mmu_change_region_attr(
1551 CONFIG_SYS_SDRAM_BASE,
1552 gd->ram_size,
1553 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
1554 PTE_BLOCK_OUTER_SHARE |
1555 PTE_BLOCK_NS |
1556 PTE_TYPE_VALID);
1557 } else {
1558 mmu_change_region_attr(
1559 CONFIG_SYS_SDRAM_BASE,
1560 CONFIG_SYS_DDR_BLOCK1_SIZE,
1561 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
1562 PTE_BLOCK_OUTER_SHARE |
1563 PTE_BLOCK_NS |
1564 PTE_TYPE_VALID);
1565#ifdef CONFIG_SYS_DDR_BLOCK3_BASE
1566#ifndef CONFIG_SYS_DDR_BLOCK2_SIZE
1567#error "Missing CONFIG_SYS_DDR_BLOCK2_SIZE"
1568#endif
1569 if (gd->ram_size - CONFIG_SYS_DDR_BLOCK1_SIZE >
1570 CONFIG_SYS_DDR_BLOCK2_SIZE) {
1571 mmu_change_region_attr(
1572 CONFIG_SYS_DDR_BLOCK2_BASE,
1573 CONFIG_SYS_DDR_BLOCK2_SIZE,
1574 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
1575 PTE_BLOCK_OUTER_SHARE |
1576 PTE_BLOCK_NS |
1577 PTE_TYPE_VALID);
1578 mmu_change_region_attr(
1579 CONFIG_SYS_DDR_BLOCK3_BASE,
1580 gd->ram_size -
1581 CONFIG_SYS_DDR_BLOCK1_SIZE -
1582 CONFIG_SYS_DDR_BLOCK2_SIZE,
1583 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
1584 PTE_BLOCK_OUTER_SHARE |
1585 PTE_BLOCK_NS |
1586 PTE_TYPE_VALID);
1587 } else
1588#endif
1589 {
1590 mmu_change_region_attr(
1591 CONFIG_SYS_DDR_BLOCK2_BASE,
1592 gd->ram_size -
1593 CONFIG_SYS_DDR_BLOCK1_SIZE,
1594 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
1595 PTE_BLOCK_OUTER_SHARE |
1596 PTE_BLOCK_NS |
1597 PTE_TYPE_VALID);
1598 }
1599 }
1600}
1601
1602__weak int dram_init(void)
1603{
Simon Glass0e0ac202017-04-06 12:47:04 -06001604 fsl_initdram();
Rajesh Bhagat5efbecf2018-11-05 18:01:37 +00001605#if (!defined(CONFIG_SPL) && !defined(CONFIG_TFABOOT)) || \
1606 defined(CONFIG_SPL_BUILD)
York Sun729f2d12017-03-06 09:02:34 -08001607 /* This will break-before-make MMU for DDR */
1608 update_early_mmu_table();
1609#endif
1610
1611 return 0;
1612}