blob: e01b029d64424952cce99e03052f7eaa1ab088a7 [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
34DECLARE_GLOBAL_DATA_PTR;
35
York Sunef4cef92018-11-05 18:01:06 +000036static struct cpu_type cpu_type_list[] = {
37 CPU_TYPE_ENTRY(LS2080A, LS2080A, 8),
38 CPU_TYPE_ENTRY(LS2085A, LS2085A, 8),
39 CPU_TYPE_ENTRY(LS2045A, LS2045A, 4),
40 CPU_TYPE_ENTRY(LS2088A, LS2088A, 8),
41 CPU_TYPE_ENTRY(LS2084A, LS2084A, 8),
42 CPU_TYPE_ENTRY(LS2048A, LS2048A, 4),
43 CPU_TYPE_ENTRY(LS2044A, LS2044A, 4),
44 CPU_TYPE_ENTRY(LS2081A, LS2081A, 8),
45 CPU_TYPE_ENTRY(LS2041A, LS2041A, 4),
46 CPU_TYPE_ENTRY(LS1043A, LS1043A, 4),
47 CPU_TYPE_ENTRY(LS1023A, LS1023A, 2),
48 CPU_TYPE_ENTRY(LS1046A, LS1046A, 4),
49 CPU_TYPE_ENTRY(LS1026A, LS1026A, 2),
50 CPU_TYPE_ENTRY(LS2040A, LS2040A, 4),
51 CPU_TYPE_ENTRY(LS1012A, LS1012A, 1),
52 CPU_TYPE_ENTRY(LS1088A, LS1088A, 8),
53 CPU_TYPE_ENTRY(LS1084A, LS1084A, 8),
54 CPU_TYPE_ENTRY(LS1048A, LS1048A, 4),
55 CPU_TYPE_ENTRY(LS1044A, LS1044A, 4),
56};
57
58#define EARLY_PGTABLE_SIZE 0x5000
59static struct mm_region early_map[] = {
60#ifdef CONFIG_FSL_LSCH3
61 { CONFIG_SYS_FSL_CCSR_BASE, CONFIG_SYS_FSL_CCSR_BASE,
62 CONFIG_SYS_FSL_CCSR_SIZE,
63 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
64 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
65 },
66 { CONFIG_SYS_FSL_OCRAM_BASE, CONFIG_SYS_FSL_OCRAM_BASE,
67 SYS_FSL_OCRAM_SPACE_SIZE,
68 PTE_BLOCK_MEMTYPE(MT_NORMAL) | PTE_BLOCK_NON_SHARE
69 },
70 { CONFIG_SYS_FSL_QSPI_BASE1, CONFIG_SYS_FSL_QSPI_BASE1,
71 CONFIG_SYS_FSL_QSPI_SIZE1,
72 PTE_BLOCK_MEMTYPE(MT_NORMAL) | PTE_BLOCK_NON_SHARE},
73#ifdef CONFIG_FSL_IFC
74 /* For IFC Region #1, only the first 4MB is cache-enabled */
75 { CONFIG_SYS_FSL_IFC_BASE1, CONFIG_SYS_FSL_IFC_BASE1,
76 CONFIG_SYS_FSL_IFC_SIZE1_1,
77 PTE_BLOCK_MEMTYPE(MT_NORMAL) | PTE_BLOCK_NON_SHARE
78 },
79 { CONFIG_SYS_FSL_IFC_BASE1 + CONFIG_SYS_FSL_IFC_SIZE1_1,
80 CONFIG_SYS_FSL_IFC_BASE1 + CONFIG_SYS_FSL_IFC_SIZE1_1,
81 CONFIG_SYS_FSL_IFC_SIZE1 - CONFIG_SYS_FSL_IFC_SIZE1_1,
82 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_NON_SHARE
83 },
84 { CONFIG_SYS_FLASH_BASE, CONFIG_SYS_FSL_IFC_BASE1,
85 CONFIG_SYS_FSL_IFC_SIZE1,
86 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_NON_SHARE
87 },
88#endif
89 { CONFIG_SYS_FSL_DRAM_BASE1, CONFIG_SYS_FSL_DRAM_BASE1,
90 CONFIG_SYS_FSL_DRAM_SIZE1,
91#if defined(CONFIG_SPL) && !defined(CONFIG_SPL_BUILD)
92 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
93#else /* Start with nGnRnE and PXN and UXN to prevent speculative access */
94 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_PXN | PTE_BLOCK_UXN |
95#endif
96 PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS
97 },
98#ifdef CONFIG_FSL_IFC
99 /* Map IFC region #2 up to CONFIG_SYS_FLASH_BASE for NAND boot */
100 { CONFIG_SYS_FSL_IFC_BASE2, CONFIG_SYS_FSL_IFC_BASE2,
101 CONFIG_SYS_FLASH_BASE - CONFIG_SYS_FSL_IFC_BASE2,
102 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_NON_SHARE
103 },
104#endif
105 { CONFIG_SYS_FSL_DCSR_BASE, CONFIG_SYS_FSL_DCSR_BASE,
106 CONFIG_SYS_FSL_DCSR_SIZE,
107 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
108 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
109 },
110 { CONFIG_SYS_FSL_DRAM_BASE2, CONFIG_SYS_FSL_DRAM_BASE2,
111 CONFIG_SYS_FSL_DRAM_SIZE2,
112 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_PXN | PTE_BLOCK_UXN |
113 PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS
114 },
115#elif defined(CONFIG_FSL_LSCH2)
116 { CONFIG_SYS_FSL_CCSR_BASE, CONFIG_SYS_FSL_CCSR_BASE,
117 CONFIG_SYS_FSL_CCSR_SIZE,
118 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
119 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
120 },
121 { CONFIG_SYS_FSL_OCRAM_BASE, CONFIG_SYS_FSL_OCRAM_BASE,
122 SYS_FSL_OCRAM_SPACE_SIZE,
123 PTE_BLOCK_MEMTYPE(MT_NORMAL) | PTE_BLOCK_NON_SHARE
124 },
125 { CONFIG_SYS_FSL_DCSR_BASE, CONFIG_SYS_FSL_DCSR_BASE,
126 CONFIG_SYS_FSL_DCSR_SIZE,
127 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
128 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
129 },
130 { CONFIG_SYS_FSL_QSPI_BASE, CONFIG_SYS_FSL_QSPI_BASE,
131 CONFIG_SYS_FSL_QSPI_SIZE,
132 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_NON_SHARE
133 },
134#ifdef CONFIG_FSL_IFC
135 { CONFIG_SYS_FSL_IFC_BASE, CONFIG_SYS_FSL_IFC_BASE,
136 CONFIG_SYS_FSL_IFC_SIZE,
137 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_NON_SHARE
138 },
139#endif
140 { CONFIG_SYS_FSL_DRAM_BASE1, CONFIG_SYS_FSL_DRAM_BASE1,
141 CONFIG_SYS_FSL_DRAM_SIZE1,
142#if defined(CONFIG_SPL) && !defined(CONFIG_SPL_BUILD)
143 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
144#else /* Start with nGnRnE and PXN and UXN to prevent speculative access */
145 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_PXN | PTE_BLOCK_UXN |
146#endif
147 PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS
148 },
149 { CONFIG_SYS_FSL_DRAM_BASE2, CONFIG_SYS_FSL_DRAM_BASE2,
150 CONFIG_SYS_FSL_DRAM_SIZE2,
151 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_PXN | PTE_BLOCK_UXN |
152 PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS
153 },
154#endif
155 {}, /* list terminator */
156};
157
158static struct mm_region final_map[] = {
159#ifdef CONFIG_FSL_LSCH3
160 { CONFIG_SYS_FSL_CCSR_BASE, CONFIG_SYS_FSL_CCSR_BASE,
161 CONFIG_SYS_FSL_CCSR_SIZE,
162 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
163 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
164 },
165 { CONFIG_SYS_FSL_OCRAM_BASE, CONFIG_SYS_FSL_OCRAM_BASE,
166 SYS_FSL_OCRAM_SPACE_SIZE,
167 PTE_BLOCK_MEMTYPE(MT_NORMAL) | PTE_BLOCK_NON_SHARE
168 },
169 { CONFIG_SYS_FSL_DRAM_BASE1, CONFIG_SYS_FSL_DRAM_BASE1,
170 CONFIG_SYS_FSL_DRAM_SIZE1,
171 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
172 PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS
173 },
174 { CONFIG_SYS_FSL_QSPI_BASE1, CONFIG_SYS_FSL_QSPI_BASE1,
175 CONFIG_SYS_FSL_QSPI_SIZE1,
176 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
177 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
178 },
179 { CONFIG_SYS_FSL_QSPI_BASE2, CONFIG_SYS_FSL_QSPI_BASE2,
180 CONFIG_SYS_FSL_QSPI_SIZE2,
181 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
182 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
183 },
184#ifdef CONFIG_FSL_IFC
185 { CONFIG_SYS_FSL_IFC_BASE2, CONFIG_SYS_FSL_IFC_BASE2,
186 CONFIG_SYS_FSL_IFC_SIZE2,
187 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
188 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
189 },
190#endif
191 { CONFIG_SYS_FSL_DCSR_BASE, CONFIG_SYS_FSL_DCSR_BASE,
192 CONFIG_SYS_FSL_DCSR_SIZE,
193 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
194 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
195 },
196 { CONFIG_SYS_FSL_MC_BASE, CONFIG_SYS_FSL_MC_BASE,
197 CONFIG_SYS_FSL_MC_SIZE,
198 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
199 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
200 },
201 { CONFIG_SYS_FSL_NI_BASE, CONFIG_SYS_FSL_NI_BASE,
202 CONFIG_SYS_FSL_NI_SIZE,
203 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
204 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
205 },
206 /* For QBMAN portal, only the first 64MB is cache-enabled */
207 { CONFIG_SYS_FSL_QBMAN_BASE, CONFIG_SYS_FSL_QBMAN_BASE,
208 CONFIG_SYS_FSL_QBMAN_SIZE_1,
209 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
210 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN | PTE_BLOCK_NS
211 },
212 { CONFIG_SYS_FSL_QBMAN_BASE + CONFIG_SYS_FSL_QBMAN_SIZE_1,
213 CONFIG_SYS_FSL_QBMAN_BASE + CONFIG_SYS_FSL_QBMAN_SIZE_1,
214 CONFIG_SYS_FSL_QBMAN_SIZE - CONFIG_SYS_FSL_QBMAN_SIZE_1,
215 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
216 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
217 },
218 { CONFIG_SYS_PCIE1_PHYS_ADDR, CONFIG_SYS_PCIE1_PHYS_ADDR,
219 CONFIG_SYS_PCIE1_PHYS_SIZE,
220 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
221 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
222 },
223 { CONFIG_SYS_PCIE2_PHYS_ADDR, CONFIG_SYS_PCIE2_PHYS_ADDR,
224 CONFIG_SYS_PCIE2_PHYS_SIZE,
225 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
226 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
227 },
228 { CONFIG_SYS_PCIE3_PHYS_ADDR, CONFIG_SYS_PCIE3_PHYS_ADDR,
229 CONFIG_SYS_PCIE3_PHYS_SIZE,
230 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
231 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
232 },
233#ifdef CONFIG_ARCH_LS2080A
234 { CONFIG_SYS_PCIE4_PHYS_ADDR, CONFIG_SYS_PCIE4_PHYS_ADDR,
235 CONFIG_SYS_PCIE4_PHYS_SIZE,
236 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
237 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
238 },
239#endif
240 { CONFIG_SYS_FSL_WRIOP1_BASE, CONFIG_SYS_FSL_WRIOP1_BASE,
241 CONFIG_SYS_FSL_WRIOP1_SIZE,
242 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
243 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
244 },
245 { CONFIG_SYS_FSL_AIOP1_BASE, CONFIG_SYS_FSL_AIOP1_BASE,
246 CONFIG_SYS_FSL_AIOP1_SIZE,
247 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
248 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
249 },
250 { CONFIG_SYS_FSL_PEBUF_BASE, CONFIG_SYS_FSL_PEBUF_BASE,
251 CONFIG_SYS_FSL_PEBUF_SIZE,
252 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
253 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
254 },
255 { CONFIG_SYS_FSL_DRAM_BASE2, CONFIG_SYS_FSL_DRAM_BASE2,
256 CONFIG_SYS_FSL_DRAM_SIZE2,
257 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
258 PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS
259 },
260#elif defined(CONFIG_FSL_LSCH2)
261 { CONFIG_SYS_FSL_BOOTROM_BASE, CONFIG_SYS_FSL_BOOTROM_BASE,
262 CONFIG_SYS_FSL_BOOTROM_SIZE,
263 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
264 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
265 },
266 { CONFIG_SYS_FSL_CCSR_BASE, CONFIG_SYS_FSL_CCSR_BASE,
267 CONFIG_SYS_FSL_CCSR_SIZE,
268 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
269 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
270 },
271 { CONFIG_SYS_FSL_OCRAM_BASE, CONFIG_SYS_FSL_OCRAM_BASE,
272 SYS_FSL_OCRAM_SPACE_SIZE,
273 PTE_BLOCK_MEMTYPE(MT_NORMAL) | PTE_BLOCK_NON_SHARE
274 },
275 { CONFIG_SYS_FSL_DCSR_BASE, CONFIG_SYS_FSL_DCSR_BASE,
276 CONFIG_SYS_FSL_DCSR_SIZE,
277 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
278 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
279 },
280 { CONFIG_SYS_FSL_QSPI_BASE, CONFIG_SYS_FSL_QSPI_BASE,
281 CONFIG_SYS_FSL_QSPI_SIZE,
282 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
283 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
284 },
285#ifdef CONFIG_FSL_IFC
286 { CONFIG_SYS_FSL_IFC_BASE, CONFIG_SYS_FSL_IFC_BASE,
287 CONFIG_SYS_FSL_IFC_SIZE,
288 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | PTE_BLOCK_NON_SHARE
289 },
290#endif
291 { CONFIG_SYS_FSL_DRAM_BASE1, CONFIG_SYS_FSL_DRAM_BASE1,
292 CONFIG_SYS_FSL_DRAM_SIZE1,
293 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
294 PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS
295 },
296 { CONFIG_SYS_FSL_QBMAN_BASE, CONFIG_SYS_FSL_QBMAN_BASE,
297 CONFIG_SYS_FSL_QBMAN_SIZE,
298 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
299 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
300 },
301 { CONFIG_SYS_FSL_DRAM_BASE2, CONFIG_SYS_FSL_DRAM_BASE2,
302 CONFIG_SYS_FSL_DRAM_SIZE2,
303 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
304 PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS
305 },
306 { CONFIG_SYS_PCIE1_PHYS_ADDR, CONFIG_SYS_PCIE1_PHYS_ADDR,
307 CONFIG_SYS_PCIE1_PHYS_SIZE,
308 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
309 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
310 },
311 { CONFIG_SYS_PCIE2_PHYS_ADDR, CONFIG_SYS_PCIE2_PHYS_ADDR,
312 CONFIG_SYS_PCIE2_PHYS_SIZE,
313 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
314 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
315 },
316 { CONFIG_SYS_PCIE3_PHYS_ADDR, CONFIG_SYS_PCIE3_PHYS_ADDR,
317 CONFIG_SYS_PCIE3_PHYS_SIZE,
318 PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
319 PTE_BLOCK_NON_SHARE | PTE_BLOCK_PXN | PTE_BLOCK_UXN
320 },
321 { CONFIG_SYS_FSL_DRAM_BASE3, CONFIG_SYS_FSL_DRAM_BASE3,
322 CONFIG_SYS_FSL_DRAM_SIZE3,
323 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
324 PTE_BLOCK_OUTER_SHARE | PTE_BLOCK_NS
325 },
326#endif
327#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
328 {}, /* space holder for secure mem */
329#endif
330 {},
331};
332
York Sun9da8f502016-06-24 16:46:23 -0700333struct mm_region *mem_map = early_map;
Alexander Grafce0a64e2016-03-04 01:09:54 +0100334
Mingkai Hu0e58b512015-10-26 19:47:50 +0800335void cpu_name(char *name)
336{
337 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
338 unsigned int i, svr, ver;
339
340 svr = gur_in32(&gur->svr);
341 ver = SVR_SOC_VER(svr);
342
343 for (i = 0; i < ARRAY_SIZE(cpu_type_list); i++)
344 if ((cpu_type_list[i].soc_ver & SVR_WO_E) == ver) {
345 strcpy(name, cpu_type_list[i].name);
346
347 if (IS_E_PROCESSOR(svr))
348 strcat(name, "E");
Wenbin Song863a33a2016-09-13 16:13:54 +0800349
350 sprintf(name + strlen(name), " Rev%d.%d",
351 SVR_MAJ(svr), SVR_MIN(svr));
Mingkai Hu0e58b512015-10-26 19:47:50 +0800352 break;
353 }
354
355 if (i == ARRAY_SIZE(cpu_type_list))
356 strcpy(name, "unknown");
357}
358
359#ifndef CONFIG_SYS_DCACHE_OFF
Mingkai Hu0e58b512015-10-26 19:47:50 +0800360/*
361 * To start MMU before DDR is available, we create MMU table in SRAM.
362 * The base address of SRAM is CONFIG_SYS_FSL_OCRAM_BASE. We use three
363 * levels of translation tables here to cover 40-bit address space.
364 * We use 4KB granule size, with 40 bits physical address, T0SZ=24
York Sun9da8f502016-06-24 16:46:23 -0700365 * Address above EARLY_PGTABLE_SIZE (0x5000) is free for other purpose.
366 * Note, the debug print in cache_v8.c is not usable for debugging
367 * these early MMU tables because UART is not yet available.
Mingkai Hu0e58b512015-10-26 19:47:50 +0800368 */
369static inline void early_mmu_setup(void)
370{
York Sun9da8f502016-06-24 16:46:23 -0700371 unsigned int el = current_el();
Mingkai Hu0e58b512015-10-26 19:47:50 +0800372
York Sun9da8f502016-06-24 16:46:23 -0700373 /* global data is already setup, no allocation yet */
374 gd->arch.tlb_addr = CONFIG_SYS_FSL_OCRAM_BASE;
375 gd->arch.tlb_fillptr = gd->arch.tlb_addr;
376 gd->arch.tlb_size = EARLY_PGTABLE_SIZE;
Mingkai Hu0e58b512015-10-26 19:47:50 +0800377
York Sun9da8f502016-06-24 16:46:23 -0700378 /* Create early page tables */
379 setup_pgtables();
Mingkai Hu0e58b512015-10-26 19:47:50 +0800380
York Sun9da8f502016-06-24 16:46:23 -0700381 /* point TTBR to the new table */
382 set_ttbr_tcr_mair(el, gd->arch.tlb_addr,
383 get_tcr(el, NULL, NULL) &
384 ~(TCR_ORGN_MASK | TCR_IRGN_MASK),
Mingkai Hu0e58b512015-10-26 19:47:50 +0800385 MEMORY_ATTRIBUTES);
York Sun9da8f502016-06-24 16:46:23 -0700386
Mingkai Hu0e58b512015-10-26 19:47:50 +0800387 set_sctlr(get_sctlr() | CR_M);
388}
389
Hou Zhiqiang92fecb52017-03-03 12:35:09 +0800390static void fix_pcie_mmu_map(void)
391{
York Sun4ce6fbf2017-03-27 11:41:01 -0700392#ifdef CONFIG_ARCH_LS2080A
Hou Zhiqiang92fecb52017-03-03 12:35:09 +0800393 unsigned int i;
394 u32 svr, ver;
395 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
396
397 svr = gur_in32(&gur->svr);
398 ver = SVR_SOC_VER(svr);
399
400 /* Fix PCIE base and size for LS2088A */
401 if ((ver == SVR_LS2088A) || (ver == SVR_LS2084A) ||
Priyanka Jain2b361782017-04-27 15:08:06 +0530402 (ver == SVR_LS2048A) || (ver == SVR_LS2044A) ||
403 (ver == SVR_LS2081A) || (ver == SVR_LS2041A)) {
Hou Zhiqiang92fecb52017-03-03 12:35:09 +0800404 for (i = 0; i < ARRAY_SIZE(final_map); i++) {
405 switch (final_map[i].phys) {
406 case CONFIG_SYS_PCIE1_PHYS_ADDR:
407 final_map[i].phys = 0x2000000000ULL;
408 final_map[i].virt = 0x2000000000ULL;
409 final_map[i].size = 0x800000000ULL;
410 break;
411 case CONFIG_SYS_PCIE2_PHYS_ADDR:
412 final_map[i].phys = 0x2800000000ULL;
413 final_map[i].virt = 0x2800000000ULL;
414 final_map[i].size = 0x800000000ULL;
415 break;
416 case CONFIG_SYS_PCIE3_PHYS_ADDR:
417 final_map[i].phys = 0x3000000000ULL;
418 final_map[i].virt = 0x3000000000ULL;
419 final_map[i].size = 0x800000000ULL;
420 break;
421 case CONFIG_SYS_PCIE4_PHYS_ADDR:
422 final_map[i].phys = 0x3800000000ULL;
423 final_map[i].virt = 0x3800000000ULL;
424 final_map[i].size = 0x800000000ULL;
425 break;
426 default:
427 break;
428 }
429 }
430 }
431#endif
432}
433
Mingkai Hu0e58b512015-10-26 19:47:50 +0800434/*
435 * The final tables look similar to early tables, but different in detail.
436 * These tables are in DRAM. Sub tables are added to enable cache for
437 * QBMan and OCRAM.
438 *
York Sun1ef95cc2016-06-24 16:46:18 -0700439 * Put the MMU table in secure memory if gd->arch.secure_ram is valid.
440 * OCRAM will be not used for this purpose so gd->arch.secure_ram can't be 0.
Mingkai Hu0e58b512015-10-26 19:47:50 +0800441 */
442static inline void final_mmu_setup(void)
443{
York Sun9da8f502016-06-24 16:46:23 -0700444 u64 tlb_addr_save = gd->arch.tlb_addr;
York Sun0804d562015-12-04 11:57:08 -0800445 unsigned int el = current_el();
York Sun9da8f502016-06-24 16:46:23 -0700446 int index;
Mingkai Hu0e58b512015-10-26 19:47:50 +0800447
Hou Zhiqiang92fecb52017-03-03 12:35:09 +0800448 /* fix the final_map before filling in the block entries */
449 fix_pcie_mmu_map();
450
York Sun9da8f502016-06-24 16:46:23 -0700451 mem_map = final_map;
Mingkai Hu0e58b512015-10-26 19:47:50 +0800452
York Sun75488ed2017-03-06 09:02:30 -0800453 /* Update mapping for DDR to actual size */
454 for (index = 0; index < ARRAY_SIZE(final_map) - 2; index++) {
455 /*
456 * Find the entry for DDR mapping and update the address and
457 * size. Zero-sized mapping will be skipped when creating MMU
458 * table.
459 */
460 switch (final_map[index].virt) {
461 case CONFIG_SYS_FSL_DRAM_BASE1:
462 final_map[index].virt = gd->bd->bi_dram[0].start;
463 final_map[index].phys = gd->bd->bi_dram[0].start;
464 final_map[index].size = gd->bd->bi_dram[0].size;
465 break;
466#ifdef CONFIG_SYS_FSL_DRAM_BASE2
467 case CONFIG_SYS_FSL_DRAM_BASE2:
468#if (CONFIG_NR_DRAM_BANKS >= 2)
469 final_map[index].virt = gd->bd->bi_dram[1].start;
470 final_map[index].phys = gd->bd->bi_dram[1].start;
471 final_map[index].size = gd->bd->bi_dram[1].size;
472#else
473 final_map[index].size = 0;
474#endif
475 break;
476#endif
477#ifdef CONFIG_SYS_FSL_DRAM_BASE3
478 case CONFIG_SYS_FSL_DRAM_BASE3:
479#if (CONFIG_NR_DRAM_BANKS >= 3)
480 final_map[index].virt = gd->bd->bi_dram[2].start;
481 final_map[index].phys = gd->bd->bi_dram[2].start;
482 final_map[index].size = gd->bd->bi_dram[2].size;
483#else
484 final_map[index].size = 0;
485#endif
486 break;
487#endif
488 default:
489 break;
490 }
491 }
492
York Sun0804d562015-12-04 11:57:08 -0800493#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
York Sun9da8f502016-06-24 16:46:23 -0700494 if (gd->arch.secure_ram & MEM_RESERVE_SECURE_MAINTAINED) {
495 if (el == 3) {
496 /*
497 * Only use gd->arch.secure_ram if the address is
498 * recalculated. Align to 4KB for MMU table.
499 */
500 /* put page tables in secure ram */
501 index = ARRAY_SIZE(final_map) - 2;
502 gd->arch.tlb_addr = gd->arch.secure_ram & ~0xfff;
503 final_map[index].virt = gd->arch.secure_ram & ~0x3;
504 final_map[index].phys = final_map[index].virt;
505 final_map[index].size = CONFIG_SYS_MEM_RESERVE_SECURE;
506 final_map[index].attrs = PTE_BLOCK_OUTER_SHARE;
York Sun1ef95cc2016-06-24 16:46:18 -0700507 gd->arch.secure_ram |= MEM_RESERVE_SECURE_SECURED;
York Sun9da8f502016-06-24 16:46:23 -0700508 tlb_addr_save = gd->arch.tlb_addr;
York Sun0804d562015-12-04 11:57:08 -0800509 } else {
York Sun9da8f502016-06-24 16:46:23 -0700510 /* Use allocated (board_f.c) memory for TLB */
511 tlb_addr_save = gd->arch.tlb_allocated;
512 gd->arch.tlb_addr = tlb_addr_save;
York Sun0804d562015-12-04 11:57:08 -0800513 }
514 }
515#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +0800516
York Sun9da8f502016-06-24 16:46:23 -0700517 /* Reset the fill ptr */
518 gd->arch.tlb_fillptr = tlb_addr_save;
519
520 /* Create normal system page tables */
521 setup_pgtables();
522
523 /* Create emergency page tables */
524 gd->arch.tlb_addr = gd->arch.tlb_fillptr;
525 gd->arch.tlb_emerg = gd->arch.tlb_addr;
526 setup_pgtables();
527 gd->arch.tlb_addr = tlb_addr_save;
528
York Suncf64ced2017-03-06 09:02:31 -0800529 /* Disable cache and MMU */
530 dcache_disable(); /* TLBs are invalidated */
531 invalidate_icache_all();
Mingkai Hu0e58b512015-10-26 19:47:50 +0800532
533 /* point TTBR to the new table */
York Sun9da8f502016-06-24 16:46:23 -0700534 set_ttbr_tcr_mair(el, gd->arch.tlb_addr, get_tcr(el, NULL, NULL),
Mingkai Hu0e58b512015-10-26 19:47:50 +0800535 MEMORY_ATTRIBUTES);
York Suncf64ced2017-03-06 09:02:31 -0800536
York Suneb6eac12016-07-22 10:52:23 -0700537 set_sctlr(get_sctlr() | CR_M);
Mingkai Hu0e58b512015-10-26 19:47:50 +0800538}
539
Alexander Grafbc78b922016-03-21 20:26:12 +0100540u64 get_page_table_size(void)
541{
542 return 0x10000;
543}
544
Mingkai Hu0e58b512015-10-26 19:47:50 +0800545int arch_cpu_init(void)
546{
York Sune6b871e2017-05-15 08:51:59 -0700547 /*
548 * This function is called before U-Boot relocates itself to speed up
549 * on system running. It is not necessary to run if performance is not
550 * critical. Skip if MMU is already enabled by SPL or other means.
551 */
552 if (get_sctlr() & CR_M)
553 return 0;
554
Mingkai Hu0e58b512015-10-26 19:47:50 +0800555 icache_enable();
556 __asm_invalidate_dcache_all();
557 __asm_invalidate_tlb_all();
558 early_mmu_setup();
559 set_sctlr(get_sctlr() | CR_C);
560 return 0;
561}
562
Hou Zhiqianga7befa52016-06-28 20:18:12 +0800563void mmu_setup(void)
564{
565 final_mmu_setup();
566}
567
Mingkai Hu0e58b512015-10-26 19:47:50 +0800568/*
Hou Zhiqianga7befa52016-06-28 20:18:12 +0800569 * This function is called from common/board_r.c.
570 * It recreates MMU table in main memory.
Mingkai Hu0e58b512015-10-26 19:47:50 +0800571 */
572void enable_caches(void)
573{
Hou Zhiqianga7befa52016-06-28 20:18:12 +0800574 mmu_setup();
Mingkai Hu0e58b512015-10-26 19:47:50 +0800575 __asm_invalidate_tlb_all();
Hou Zhiqianga7befa52016-06-28 20:18:12 +0800576 icache_enable();
577 dcache_enable();
Mingkai Hu0e58b512015-10-26 19:47:50 +0800578}
579#endif
580
Priyanka Jain9a276702016-11-17 12:29:56 +0530581u32 initiator_type(u32 cluster, int init_id)
Mingkai Hu0e58b512015-10-26 19:47:50 +0800582{
583 struct ccsr_gur *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
584 u32 idx = (cluster >> (init_id * 8)) & TP_CLUSTER_INIT_MASK;
585 u32 type = 0;
586
587 type = gur_in32(&gur->tp_ityp[idx]);
588 if (type & TP_ITYP_AV)
589 return type;
590
591 return 0;
592}
593
York Suned7fbe32016-09-13 12:40:30 -0700594u32 cpu_pos_mask(void)
595{
596 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
597 int i = 0;
598 u32 cluster, type, mask = 0;
599
600 do {
601 int j;
602
603 cluster = gur_in32(&gur->tp_cluster[i].lower);
604 for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
605 type = initiator_type(cluster, j);
606 if (type && (TP_ITYP_TYPE(type) == TP_ITYP_TYPE_ARM))
607 mask |= 1 << (i * TP_INIT_PER_CLUSTER + j);
608 }
609 i++;
610 } while ((cluster & TP_CLUSTER_EOC) == 0x0);
611
612 return mask;
613}
614
Mingkai Hu0e58b512015-10-26 19:47:50 +0800615u32 cpu_mask(void)
616{
617 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
618 int i = 0, count = 0;
619 u32 cluster, type, mask = 0;
620
621 do {
622 int j;
623
624 cluster = gur_in32(&gur->tp_cluster[i].lower);
625 for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
626 type = initiator_type(cluster, j);
627 if (type) {
628 if (TP_ITYP_TYPE(type) == TP_ITYP_TYPE_ARM)
629 mask |= 1 << count;
630 count++;
631 }
632 }
633 i++;
634 } while ((cluster & TP_CLUSTER_EOC) == 0x0);
635
636 return mask;
637}
638
639/*
640 * Return the number of cores on this SOC.
641 */
642int cpu_numcores(void)
643{
644 return hweight32(cpu_mask());
645}
646
647int fsl_qoriq_core_to_cluster(unsigned int core)
648{
649 struct ccsr_gur __iomem *gur =
650 (void __iomem *)(CONFIG_SYS_FSL_GUTS_ADDR);
651 int i = 0, count = 0;
652 u32 cluster;
653
654 do {
655 int j;
656
657 cluster = gur_in32(&gur->tp_cluster[i].lower);
658 for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
659 if (initiator_type(cluster, j)) {
660 if (count == core)
661 return i;
662 count++;
663 }
664 }
665 i++;
666 } while ((cluster & TP_CLUSTER_EOC) == 0x0);
667
668 return -1; /* cannot identify the cluster */
669}
670
671u32 fsl_qoriq_core_to_type(unsigned int core)
672{
673 struct ccsr_gur __iomem *gur =
674 (void __iomem *)(CONFIG_SYS_FSL_GUTS_ADDR);
675 int i = 0, count = 0;
676 u32 cluster, type;
677
678 do {
679 int j;
680
681 cluster = gur_in32(&gur->tp_cluster[i].lower);
682 for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
683 type = initiator_type(cluster, j);
684 if (type) {
685 if (count == core)
686 return type;
687 count++;
688 }
689 }
690 i++;
691 } while ((cluster & TP_CLUSTER_EOC) == 0x0);
692
693 return -1; /* cannot identify the cluster */
694}
695
Priyanka Jain96b001f2016-11-17 12:29:51 +0530696#ifndef CONFIG_FSL_LSCH3
Sriram Dash9282d262016-06-13 09:58:32 +0530697uint get_svr(void)
698{
699 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
700
701 return gur_in32(&gur->svr);
702}
Priyanka Jain96b001f2016-11-17 12:29:51 +0530703#endif
Sriram Dash9282d262016-06-13 09:58:32 +0530704
Mingkai Hu0e58b512015-10-26 19:47:50 +0800705#ifdef CONFIG_DISPLAY_CPUINFO
706int print_cpuinfo(void)
707{
708 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
709 struct sys_info sysinfo;
710 char buf[32];
711 unsigned int i, core;
York Suncbe8e1c2016-04-04 11:41:26 -0700712 u32 type, rcw, svr = gur_in32(&gur->svr);
Mingkai Hu0e58b512015-10-26 19:47:50 +0800713
714 puts("SoC: ");
715
716 cpu_name(buf);
York Suncbe8e1c2016-04-04 11:41:26 -0700717 printf(" %s (0x%x)\n", buf, svr);
Mingkai Hu0e58b512015-10-26 19:47:50 +0800718 memset((u8 *)buf, 0x00, ARRAY_SIZE(buf));
719 get_sys_info(&sysinfo);
720 puts("Clock Configuration:");
721 for_each_cpu(i, core, cpu_numcores(), cpu_mask()) {
722 if (!(i % 3))
723 puts("\n ");
724 type = TP_ITYP_VER(fsl_qoriq_core_to_type(core));
725 printf("CPU%d(%s):%-4s MHz ", core,
726 type == TY_ITYP_VER_A7 ? "A7 " :
727 (type == TY_ITYP_VER_A53 ? "A53" :
Alison Wang79808392016-07-05 16:01:52 +0800728 (type == TY_ITYP_VER_A57 ? "A57" :
729 (type == TY_ITYP_VER_A72 ? "A72" : " "))),
Mingkai Hu0e58b512015-10-26 19:47:50 +0800730 strmhz(buf, sysinfo.freq_processor[core]));
731 }
Hou Zhiqiang3f91cda2017-01-10 16:44:15 +0800732 /* Display platform clock as Bus frequency. */
Mingkai Hu0e58b512015-10-26 19:47:50 +0800733 printf("\n Bus: %-4s MHz ",
Hou Zhiqiang3f91cda2017-01-10 16:44:15 +0800734 strmhz(buf, sysinfo.freq_systembus / CONFIG_SYS_FSL_PCLK_DIV));
Mingkai Hu0e58b512015-10-26 19:47:50 +0800735 printf("DDR: %-4s MT/s", strmhz(buf, sysinfo.freq_ddrbus));
Shaohui Xie04643262015-10-26 19:47:54 +0800736#ifdef CONFIG_SYS_DPAA_FMAN
737 printf(" FMAN: %-4s MHz", strmhz(buf, sysinfo.freq_fman[0]));
738#endif
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530739#ifdef CONFIG_SYS_FSL_HAS_DP_DDR
York Suncbe8e1c2016-04-04 11:41:26 -0700740 if (soc_has_dp_ddr()) {
741 printf(" DP-DDR: %-4s MT/s",
742 strmhz(buf, sysinfo.freq_ddrbus2));
743 }
Mingkai Hu0e58b512015-10-26 19:47:50 +0800744#endif
745 puts("\n");
746
747 /*
748 * Display the RCW, so that no one gets confused as to what RCW
749 * we're actually using for this boot.
750 */
751 puts("Reset Configuration Word (RCW):");
752 for (i = 0; i < ARRAY_SIZE(gur->rcwsr); i++) {
753 rcw = gur_in32(&gur->rcwsr[i]);
754 if ((i % 4) == 0)
755 printf("\n %08x:", i * 4);
756 printf(" %08x", rcw);
757 }
758 puts("\n");
759
760 return 0;
761}
762#endif
763
764#ifdef CONFIG_FSL_ESDHC
765int cpu_mmc_init(bd_t *bis)
766{
767 return fsl_esdhc_mmc_init(bis);
768}
769#endif
770
771int cpu_eth_init(bd_t *bis)
772{
773 int error = 0;
774
Santan Kumar1afa9002017-05-05 15:42:29 +0530775#if defined(CONFIG_FSL_MC_ENET) && !defined(CONFIG_SPL_BUILD)
Mingkai Hu0e58b512015-10-26 19:47:50 +0800776 error = fsl_mc_ldpaa_init(bis);
777#endif
Shaohui Xie04643262015-10-26 19:47:54 +0800778#ifdef CONFIG_FMAN_ENET
779 fm_standard_init(bis);
780#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +0800781 return error;
782}
783
Yuantian Tangaec3b142017-04-19 13:27:39 +0800784static inline int check_psci(void)
Mingkai Hu0e58b512015-10-26 19:47:50 +0800785{
Yuantian Tangaec3b142017-04-19 13:27:39 +0800786 unsigned int psci_ver;
Prabhakar Kushwaha22cfe962015-11-05 12:00:14 +0530787
Yuantian Tangaec3b142017-04-19 13:27:39 +0800788 psci_ver = sec_firmware_support_psci_version();
789 if (psci_ver == PSCI_INVALID_VER)
790 return 1;
791
792 return 0;
793}
794
Prabhakar Kushwaha0acce842017-11-10 11:32:52 +0530795static void config_core_prefetch(void)
796{
797 char *buf = NULL;
798 char buffer[HWCONFIG_BUFFER_SIZE];
799 const char *prefetch_arg = NULL;
800 size_t arglen;
801 unsigned int mask;
802 struct pt_regs regs;
803
804 if (env_get_f("hwconfig", buffer, sizeof(buffer)) > 0)
805 buf = buffer;
806
807 prefetch_arg = hwconfig_subarg_f("core_prefetch", "disable",
808 &arglen, buf);
809
810 if (prefetch_arg) {
811 mask = simple_strtoul(prefetch_arg, NULL, 0) & 0xff;
812 if (mask & 0x1) {
813 printf("Core0 prefetch can't be disabled\n");
814 return;
815 }
816
817#define SIP_PREFETCH_DISABLE_64 0xC200FF13
818 regs.regs[0] = SIP_PREFETCH_DISABLE_64;
819 regs.regs[1] = mask;
820 smc_call(&regs);
821
822 if (regs.regs[0])
823 printf("Prefetch disable config failed for mask ");
824 else
825 printf("Prefetch disable config passed for mask ");
826 printf("0x%x\n", mask);
827 }
828}
829
Yuantian Tangaec3b142017-04-19 13:27:39 +0800830int arch_early_init_r(void)
831{
Prabhakar Kushwaha22cfe962015-11-05 12:00:14 +0530832#ifdef CONFIG_SYS_FSL_ERRATUM_A009635
Priyanka Jain823e0422017-02-14 10:34:31 +0530833 u32 svr_dev_id;
834 /*
835 * erratum A009635 is valid only for LS2080A SoC and
836 * its personalitiesi
837 */
Wenbin song5d8a61c2017-12-04 12:18:28 +0800838 svr_dev_id = get_svr();
839 if (IS_SVR_DEV(svr_dev_id, SVR_DEV(SVR_LS2080A)))
Priyanka Jain823e0422017-02-14 10:34:31 +0530840 erratum_a009635();
Prabhakar Kushwaha22cfe962015-11-05 12:00:14 +0530841#endif
Shengzhou Liu15875a52016-11-21 11:36:48 +0800842#if defined(CONFIG_SYS_FSL_ERRATUM_A009942) && defined(CONFIG_SYS_FSL_DDR)
843 erratum_a009942_check_cpo();
844#endif
Yuantian Tangaec3b142017-04-19 13:27:39 +0800845 if (check_psci()) {
846 debug("PSCI: PSCI does not exist.\n");
847
848 /* if PSCI does not exist, boot secondary cores here */
849 if (fsl_layerscape_wake_seconday_cores())
Hou Zhiqiang21c4d552016-06-28 20:18:15 +0800850 printf("Did not wake secondary cores\n");
851 }
Mingkai Hu0e58b512015-10-26 19:47:50 +0800852
Ashish Kumarec455e22017-08-31 16:37:31 +0530853#ifdef CONFIG_SYS_FSL_HAS_RGMII
854 fsl_rgmii_init();
855#endif
856
Prabhakar Kushwaha0acce842017-11-10 11:32:52 +0530857 config_core_prefetch();
858
Mingkai Hu0e58b512015-10-26 19:47:50 +0800859#ifdef CONFIG_SYS_HAS_SERDES
860 fsl_serdes_init();
861#endif
Shaohui Xie04643262015-10-26 19:47:54 +0800862#ifdef CONFIG_FMAN_ENET
863 fman_enet_init();
864#endif
Ahmed Mansouraa270b42017-12-15 16:01:00 -0500865#ifdef CONFIG_SYS_DPAA_QBMAN
866 setup_qbman_portals();
867#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +0800868 return 0;
869}
870
871int timer_init(void)
872{
873 u32 __iomem *cntcr = (u32 *)CONFIG_SYS_FSL_TIMER_ADDR;
874#ifdef CONFIG_FSL_LSCH3
875 u32 __iomem *cltbenr = (u32 *)CONFIG_SYS_FSL_PMU_CLTBENR;
876#endif
Zhang Ying-224558fd45492018-01-09 16:25:46 +0800877#if defined(CONFIG_ARCH_LS2080A) || defined(CONFIG_ARCH_LS1088A)
Yunhui Cui3dfb82a2016-06-08 10:31:42 +0800878 u32 __iomem *pctbenr = (u32 *)FSL_PMU_PCTBENR_OFFSET;
Priyanka Jain3d31ec72016-11-17 12:29:52 +0530879 u32 svr_dev_id;
Yunhui Cui3dfb82a2016-06-08 10:31:42 +0800880#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +0800881#ifdef COUNTER_FREQUENCY_REAL
882 unsigned long cntfrq = COUNTER_FREQUENCY_REAL;
883
884 /* Update with accurate clock frequency */
York Sune6b871e2017-05-15 08:51:59 -0700885 if (current_el() == 3)
886 asm volatile("msr cntfrq_el0, %0" : : "r" (cntfrq) : "memory");
Mingkai Hu0e58b512015-10-26 19:47:50 +0800887#endif
888
889#ifdef CONFIG_FSL_LSCH3
890 /* Enable timebase for all clusters.
891 * It is safe to do so even some clusters are not enabled.
892 */
893 out_le32(cltbenr, 0xf);
894#endif
895
Zhang Ying-224558fd45492018-01-09 16:25:46 +0800896#if defined(CONFIG_ARCH_LS2080A) || defined(CONFIG_ARCH_LS1088A)
Yunhui Cui3dfb82a2016-06-08 10:31:42 +0800897 /*
898 * In certain Layerscape SoCs, the clock for each core's
899 * has an enable bit in the PMU Physical Core Time Base Enable
900 * Register (PCTBENR), which allows the watchdog to operate.
901 */
902 setbits_le32(pctbenr, 0xff);
Priyanka Jain3d31ec72016-11-17 12:29:52 +0530903 /*
904 * For LS2080A SoC and its personalities, timer controller
905 * offset is different
906 */
Wenbin song5d8a61c2017-12-04 12:18:28 +0800907 svr_dev_id = get_svr();
908 if (IS_SVR_DEV(svr_dev_id, SVR_DEV(SVR_LS2080A)))
Priyanka Jain3d31ec72016-11-17 12:29:52 +0530909 cntcr = (u32 *)SYS_FSL_LS2080A_LS2085A_TIMER_ADDR;
910
Yunhui Cui3dfb82a2016-06-08 10:31:42 +0800911#endif
912
Mingkai Hu0e58b512015-10-26 19:47:50 +0800913 /* Enable clock for timer
914 * This is a global setting.
915 */
916 out_le32(cntcr, 0x1);
917
918 return 0;
919}
920
Alexander Graf12be31c2016-11-17 01:03:01 +0100921__efi_runtime_data u32 __iomem *rstcr = (u32 *)CONFIG_SYS_FSL_RST_ADDR;
922
923void __efi_runtime reset_cpu(ulong addr)
Mingkai Hu0e58b512015-10-26 19:47:50 +0800924{
Mingkai Hu0e58b512015-10-26 19:47:50 +0800925 u32 val;
926
927 /* Raise RESET_REQ_B */
928 val = scfg_in32(rstcr);
929 val |= 0x02;
930 scfg_out32(rstcr, val);
931}
York Sun928b6812015-12-07 11:08:58 -0800932
Alexander Graf12be31c2016-11-17 01:03:01 +0100933#ifdef CONFIG_EFI_LOADER
934
935void __efi_runtime EFIAPI efi_reset_system(
936 enum efi_reset_type reset_type,
937 efi_status_t reset_status,
938 unsigned long data_size, void *reset_data)
939{
940 switch (reset_type) {
941 case EFI_RESET_COLD:
942 case EFI_RESET_WARM:
Heinrich Schuchardt450d4c82018-02-06 22:00:22 +0100943 case EFI_RESET_PLATFORM_SPECIFIC:
Alexander Graf12be31c2016-11-17 01:03:01 +0100944 reset_cpu(0);
945 break;
946 case EFI_RESET_SHUTDOWN:
947 /* Nothing we can do */
948 break;
949 }
950
951 while (1) { }
952}
953
Heinrich Schuchardt099b3b72018-03-03 15:28:59 +0100954efi_status_t efi_reset_system_init(void)
Alexander Graf12be31c2016-11-17 01:03:01 +0100955{
Heinrich Schuchardt099b3b72018-03-03 15:28:59 +0100956 return efi_add_runtime_mmio(&rstcr, sizeof(*rstcr));
Alexander Graf12be31c2016-11-17 01:03:01 +0100957}
958
959#endif
960
York Sun2db54082017-09-07 10:12:32 -0700961/*
962 * Calculate reserved memory with given memory bank
963 * Return aligned memory size on success
964 * Return (ram_size + needed size) for failure
965 */
York Sun928b6812015-12-07 11:08:58 -0800966phys_size_t board_reserve_ram_top(phys_size_t ram_size)
967{
968 phys_size_t ram_top = ram_size;
969
Santan Kumar1afa9002017-05-05 15:42:29 +0530970#if defined(CONFIG_FSL_MC_ENET) && !defined(CONFIG_SPL_BUILD)
York Sun2db54082017-09-07 10:12:32 -0700971 ram_top = mc_get_dram_block_size();
972 if (ram_top > ram_size)
973 return ram_size + ram_top;
974
975 ram_top = ram_size - ram_top;
York Sun4de24ef2017-03-06 09:02:28 -0800976 /* The start address of MC reserved memory needs to be aligned. */
York Sun928b6812015-12-07 11:08:58 -0800977 ram_top &= ~(CONFIG_SYS_MC_RSV_MEM_ALIGN - 1);
978#endif
York Sun4de24ef2017-03-06 09:02:28 -0800979
980 return ram_size - ram_top;
981}
982
983phys_size_t get_effective_memsize(void)
984{
985 phys_size_t ea_size, rem = 0;
986
987 /*
988 * For ARMv8 SoCs, DDR memory is split into two or three regions. The
Sumit Garged0deea2017-10-04 03:20:49 +0530989 * first region is 2GB space at 0x8000_0000. Secure memory needs to
990 * allocated from first region. If the memory extends to the second
991 * region (or the third region if applicable), Management Complex (MC)
992 * memory should be put into the highest region, i.e. the end of DDR
993 * memory. CONFIG_MAX_MEM_MAPPED is set to the size of first region so
994 * U-Boot doesn't relocate itself into higher address. Should DDR be
995 * configured to skip the first region, this function needs to be
996 * adjusted.
York Sun4de24ef2017-03-06 09:02:28 -0800997 */
998 if (gd->ram_size > CONFIG_MAX_MEM_MAPPED) {
999 ea_size = CONFIG_MAX_MEM_MAPPED;
1000 rem = gd->ram_size - ea_size;
1001 } else {
1002 ea_size = gd->ram_size;
1003 }
1004
1005#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
1006 /* Check if we have enough space for secure memory */
Sumit Garged0deea2017-10-04 03:20:49 +05301007 if (ea_size > CONFIG_SYS_MEM_RESERVE_SECURE)
1008 ea_size -= CONFIG_SYS_MEM_RESERVE_SECURE;
1009 else
1010 printf("Error: No enough space for secure memory.\n");
York Sun4de24ef2017-03-06 09:02:28 -08001011#endif
1012 /* Check if we have enough memory for MC */
1013 if (rem < board_reserve_ram_top(rem)) {
1014 /* Not enough memory in high region to reserve */
York Sun2db54082017-09-07 10:12:32 -07001015 if (ea_size > board_reserve_ram_top(ea_size))
1016 ea_size -= board_reserve_ram_top(ea_size);
York Sun4de24ef2017-03-06 09:02:28 -08001017 else
1018 printf("Error: No enough space for reserved memory.\n");
1019 }
1020
1021 return ea_size;
1022}
1023
Simon Glass2f949c32017-03-31 08:40:32 -06001024int dram_init_banksize(void)
York Sun4de24ef2017-03-06 09:02:28 -08001025{
1026#ifdef CONFIG_SYS_DP_DDR_BASE_PHY
1027 phys_size_t dp_ddr_size;
1028#endif
1029
1030 /*
1031 * gd->ram_size has the total size of DDR memory, less reserved secure
1032 * memory. The DDR extends from low region to high region(s) presuming
1033 * no hole is created with DDR configuration. gd->arch.secure_ram tracks
1034 * the location of secure memory. gd->arch.resv_ram tracks the location
York Sunc9e3e042017-09-28 08:42:12 -07001035 * of reserved memory for Management Complex (MC). Because gd->ram_size
1036 * is reduced by this function if secure memory is reserved, checking
1037 * gd->arch.secure_ram should be done to avoid running it repeatedly.
York Sun4de24ef2017-03-06 09:02:28 -08001038 */
York Sunc9e3e042017-09-28 08:42:12 -07001039
1040#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
1041 if (gd->arch.secure_ram & MEM_RESERVE_SECURE_MAINTAINED) {
1042 debug("No need to run again, skip %s\n", __func__);
1043
1044 return 0;
1045 }
1046#endif
1047
York Sun4de24ef2017-03-06 09:02:28 -08001048 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
1049 if (gd->ram_size > CONFIG_SYS_DDR_BLOCK1_SIZE) {
1050 gd->bd->bi_dram[0].size = CONFIG_SYS_DDR_BLOCK1_SIZE;
1051 gd->bd->bi_dram[1].start = CONFIG_SYS_DDR_BLOCK2_BASE;
1052 gd->bd->bi_dram[1].size = gd->ram_size -
1053 CONFIG_SYS_DDR_BLOCK1_SIZE;
1054#ifdef CONFIG_SYS_DDR_BLOCK3_BASE
1055 if (gd->bi_dram[1].size > CONFIG_SYS_DDR_BLOCK2_SIZE) {
1056 gd->bd->bi_dram[2].start = CONFIG_SYS_DDR_BLOCK3_BASE;
1057 gd->bd->bi_dram[2].size = gd->bd->bi_dram[1].size -
1058 CONFIG_SYS_DDR_BLOCK2_SIZE;
1059 gd->bd->bi_dram[1].size = CONFIG_SYS_DDR_BLOCK2_SIZE;
1060 }
1061#endif
1062 } else {
1063 gd->bd->bi_dram[0].size = gd->ram_size;
1064 }
1065#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
Sumit Garged0deea2017-10-04 03:20:49 +05301066 if (gd->bd->bi_dram[0].size >
1067 CONFIG_SYS_MEM_RESERVE_SECURE) {
1068 gd->bd->bi_dram[0].size -=
1069 CONFIG_SYS_MEM_RESERVE_SECURE;
1070 gd->arch.secure_ram = gd->bd->bi_dram[0].start +
1071 gd->bd->bi_dram[0].size;
York Sun4de24ef2017-03-06 09:02:28 -08001072 gd->arch.secure_ram |= MEM_RESERVE_SECURE_MAINTAINED;
1073 gd->ram_size -= CONFIG_SYS_MEM_RESERVE_SECURE;
York Sun4de24ef2017-03-06 09:02:28 -08001074 }
1075#endif /* CONFIG_SYS_MEM_RESERVE_SECURE */
1076
Santan Kumar1afa9002017-05-05 15:42:29 +05301077#if defined(CONFIG_FSL_MC_ENET) && !defined(CONFIG_SPL_BUILD)
York Sun4de24ef2017-03-06 09:02:28 -08001078 /* Assign memory for MC */
1079#ifdef CONFIG_SYS_DDR_BLOCK3_BASE
1080 if (gd->bd->bi_dram[2].size >=
1081 board_reserve_ram_top(gd->bd->bi_dram[2].size)) {
1082 gd->arch.resv_ram = gd->bd->bi_dram[2].start +
1083 gd->bd->bi_dram[2].size -
1084 board_reserve_ram_top(gd->bd->bi_dram[2].size);
1085 } else
1086#endif
1087 {
1088 if (gd->bd->bi_dram[1].size >=
1089 board_reserve_ram_top(gd->bd->bi_dram[1].size)) {
1090 gd->arch.resv_ram = gd->bd->bi_dram[1].start +
1091 gd->bd->bi_dram[1].size -
1092 board_reserve_ram_top(gd->bd->bi_dram[1].size);
1093 } else if (gd->bd->bi_dram[0].size >
1094 board_reserve_ram_top(gd->bd->bi_dram[0].size)) {
1095 gd->arch.resv_ram = gd->bd->bi_dram[0].start +
1096 gd->bd->bi_dram[0].size -
1097 board_reserve_ram_top(gd->bd->bi_dram[0].size);
1098 }
1099 }
1100#endif /* CONFIG_FSL_MC_ENET */
1101
1102#ifdef CONFIG_SYS_DP_DDR_BASE_PHY
1103#ifdef CONFIG_SYS_DDR_BLOCK3_BASE
1104#error "This SoC shouldn't have DP DDR"
1105#endif
1106 if (soc_has_dp_ddr()) {
1107 /* initialize DP-DDR here */
1108 puts("DP-DDR: ");
1109 /*
1110 * DDR controller use 0 as the base address for binding.
1111 * It is mapped to CONFIG_SYS_DP_DDR_BASE for core to access.
1112 */
1113 dp_ddr_size = fsl_other_ddr_sdram(CONFIG_SYS_DP_DDR_BASE_PHY,
1114 CONFIG_DP_DDR_CTRL,
1115 CONFIG_DP_DDR_NUM_CTRLS,
1116 CONFIG_DP_DDR_DIMM_SLOTS_PER_CTLR,
1117 NULL, NULL, NULL);
1118 if (dp_ddr_size) {
1119 gd->bd->bi_dram[2].start = CONFIG_SYS_DP_DDR_BASE;
1120 gd->bd->bi_dram[2].size = dp_ddr_size;
1121 } else {
1122 puts("Not detected");
1123 }
1124 }
1125#endif
Simon Glass2f949c32017-03-31 08:40:32 -06001126
York Sunc9e3e042017-09-28 08:42:12 -07001127#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
1128 debug("%s is called. gd->ram_size is reduced to %lu\n",
1129 __func__, (ulong)gd->ram_size);
1130#endif
1131
Simon Glass2f949c32017-03-31 08:40:32 -06001132 return 0;
York Sun4de24ef2017-03-06 09:02:28 -08001133}
1134
Stephen Warrend0de8062018-08-30 15:43:43 -06001135#if CONFIG_IS_ENABLED(EFI_LOADER)
York Sun4de24ef2017-03-06 09:02:28 -08001136void efi_add_known_memory(void)
1137{
1138 int i;
1139 phys_addr_t ram_start, start;
1140 phys_size_t ram_size;
1141 u64 pages;
York Sun928b6812015-12-07 11:08:58 -08001142
York Sun4de24ef2017-03-06 09:02:28 -08001143 /* Add RAM */
1144 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
1145#ifdef CONFIG_SYS_DP_DDR_BASE_PHY
1146#ifdef CONFIG_SYS_DDR_BLOCK3_BASE
1147#error "This SoC shouldn't have DP DDR"
1148#endif
1149 if (i == 2)
1150 continue; /* skip DP-DDR */
1151#endif
1152 ram_start = gd->bd->bi_dram[i].start;
1153 ram_size = gd->bd->bi_dram[i].size;
1154#ifdef CONFIG_RESV_RAM
1155 if (gd->arch.resv_ram >= ram_start &&
1156 gd->arch.resv_ram < ram_start + ram_size)
1157 ram_size = gd->arch.resv_ram - ram_start;
1158#endif
1159 start = (ram_start + EFI_PAGE_MASK) & ~EFI_PAGE_MASK;
1160 pages = (ram_size + EFI_PAGE_MASK) >> EFI_PAGE_SHIFT;
1161
1162 efi_add_memory_map(start, pages, EFI_CONVENTIONAL_MEMORY,
1163 false);
1164 }
York Sun928b6812015-12-07 11:08:58 -08001165}
York Sun4de24ef2017-03-06 09:02:28 -08001166#endif
York Sun729f2d12017-03-06 09:02:34 -08001167
1168/*
1169 * Before DDR size is known, early MMU table have DDR mapped as device memory
1170 * to avoid speculative access. To relocate U-Boot to DDR, "normal memory"
1171 * needs to be set for these mappings.
1172 * If a special case configures DDR with holes in the mapping, the holes need
1173 * to be marked as invalid. This is not implemented in this function.
1174 */
1175void update_early_mmu_table(void)
1176{
1177 if (!gd->arch.tlb_addr)
1178 return;
1179
1180 if (gd->ram_size <= CONFIG_SYS_FSL_DRAM_SIZE1) {
1181 mmu_change_region_attr(
1182 CONFIG_SYS_SDRAM_BASE,
1183 gd->ram_size,
1184 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
1185 PTE_BLOCK_OUTER_SHARE |
1186 PTE_BLOCK_NS |
1187 PTE_TYPE_VALID);
1188 } else {
1189 mmu_change_region_attr(
1190 CONFIG_SYS_SDRAM_BASE,
1191 CONFIG_SYS_DDR_BLOCK1_SIZE,
1192 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
1193 PTE_BLOCK_OUTER_SHARE |
1194 PTE_BLOCK_NS |
1195 PTE_TYPE_VALID);
1196#ifdef CONFIG_SYS_DDR_BLOCK3_BASE
1197#ifndef CONFIG_SYS_DDR_BLOCK2_SIZE
1198#error "Missing CONFIG_SYS_DDR_BLOCK2_SIZE"
1199#endif
1200 if (gd->ram_size - CONFIG_SYS_DDR_BLOCK1_SIZE >
1201 CONFIG_SYS_DDR_BLOCK2_SIZE) {
1202 mmu_change_region_attr(
1203 CONFIG_SYS_DDR_BLOCK2_BASE,
1204 CONFIG_SYS_DDR_BLOCK2_SIZE,
1205 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
1206 PTE_BLOCK_OUTER_SHARE |
1207 PTE_BLOCK_NS |
1208 PTE_TYPE_VALID);
1209 mmu_change_region_attr(
1210 CONFIG_SYS_DDR_BLOCK3_BASE,
1211 gd->ram_size -
1212 CONFIG_SYS_DDR_BLOCK1_SIZE -
1213 CONFIG_SYS_DDR_BLOCK2_SIZE,
1214 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
1215 PTE_BLOCK_OUTER_SHARE |
1216 PTE_BLOCK_NS |
1217 PTE_TYPE_VALID);
1218 } else
1219#endif
1220 {
1221 mmu_change_region_attr(
1222 CONFIG_SYS_DDR_BLOCK2_BASE,
1223 gd->ram_size -
1224 CONFIG_SYS_DDR_BLOCK1_SIZE,
1225 PTE_BLOCK_MEMTYPE(MT_NORMAL) |
1226 PTE_BLOCK_OUTER_SHARE |
1227 PTE_BLOCK_NS |
1228 PTE_TYPE_VALID);
1229 }
1230 }
1231}
1232
1233__weak int dram_init(void)
1234{
Simon Glass0e0ac202017-04-06 12:47:04 -06001235 fsl_initdram();
York Sun729f2d12017-03-06 09:02:34 -08001236#if !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD)
1237 /* This will break-before-make MMU for DDR */
1238 update_early_mmu_table();
1239#endif
1240
1241 return 0;
1242}