blob: 7a2ec6bf591d720acac8b825a74ae9029ca92ad2 [file] [log] [blame]
Mingkai Hu0e58b512015-10-26 19:47:50 +08001/*
2 * Copyright 2014-2015 Freescale Semiconductor, Inc.
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <asm/io.h>
9#include <asm/errno.h>
10#include <asm/system.h>
11#include <asm/armv8/mmu.h>
12#include <asm/io.h>
13#include <asm/arch/fsl_serdes.h>
14#include <asm/arch/soc.h>
15#include <asm/arch/cpu.h>
16#include <asm/arch/speed.h>
17#ifdef CONFIG_MP
18#include <asm/arch/mp.h>
19#endif
20#include <fm_eth.h>
21#include <fsl_debug_server.h>
22#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#ifdef CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT
27#include <asm/armv8/sec_firmware.h>
28#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +080029
30DECLARE_GLOBAL_DATA_PTR;
31
York Sun9da8f502016-06-24 16:46:23 -070032struct mm_region *mem_map = early_map;
Alexander Grafce0a64e2016-03-04 01:09:54 +010033
Mingkai Hu0e58b512015-10-26 19:47:50 +080034void cpu_name(char *name)
35{
36 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
37 unsigned int i, svr, ver;
38
39 svr = gur_in32(&gur->svr);
40 ver = SVR_SOC_VER(svr);
41
42 for (i = 0; i < ARRAY_SIZE(cpu_type_list); i++)
43 if ((cpu_type_list[i].soc_ver & SVR_WO_E) == ver) {
44 strcpy(name, cpu_type_list[i].name);
45
46 if (IS_E_PROCESSOR(svr))
47 strcat(name, "E");
48 break;
49 }
50
51 if (i == ARRAY_SIZE(cpu_type_list))
52 strcpy(name, "unknown");
53}
54
55#ifndef CONFIG_SYS_DCACHE_OFF
Mingkai Hu0e58b512015-10-26 19:47:50 +080056/*
57 * To start MMU before DDR is available, we create MMU table in SRAM.
58 * The base address of SRAM is CONFIG_SYS_FSL_OCRAM_BASE. We use three
59 * levels of translation tables here to cover 40-bit address space.
60 * We use 4KB granule size, with 40 bits physical address, T0SZ=24
York Sun9da8f502016-06-24 16:46:23 -070061 * Address above EARLY_PGTABLE_SIZE (0x5000) is free for other purpose.
62 * Note, the debug print in cache_v8.c is not usable for debugging
63 * these early MMU tables because UART is not yet available.
Mingkai Hu0e58b512015-10-26 19:47:50 +080064 */
65static inline void early_mmu_setup(void)
66{
York Sun9da8f502016-06-24 16:46:23 -070067 unsigned int el = current_el();
Mingkai Hu0e58b512015-10-26 19:47:50 +080068
York Sun9da8f502016-06-24 16:46:23 -070069 /* global data is already setup, no allocation yet */
70 gd->arch.tlb_addr = CONFIG_SYS_FSL_OCRAM_BASE;
71 gd->arch.tlb_fillptr = gd->arch.tlb_addr;
72 gd->arch.tlb_size = EARLY_PGTABLE_SIZE;
Mingkai Hu0e58b512015-10-26 19:47:50 +080073
York Sun9da8f502016-06-24 16:46:23 -070074 /* Create early page tables */
75 setup_pgtables();
Mingkai Hu0e58b512015-10-26 19:47:50 +080076
York Sun9da8f502016-06-24 16:46:23 -070077 /* point TTBR to the new table */
78 set_ttbr_tcr_mair(el, gd->arch.tlb_addr,
79 get_tcr(el, NULL, NULL) &
80 ~(TCR_ORGN_MASK | TCR_IRGN_MASK),
Mingkai Hu0e58b512015-10-26 19:47:50 +080081 MEMORY_ATTRIBUTES);
York Sun9da8f502016-06-24 16:46:23 -070082
Mingkai Hu0e58b512015-10-26 19:47:50 +080083 set_sctlr(get_sctlr() | CR_M);
84}
85
86/*
87 * The final tables look similar to early tables, but different in detail.
88 * These tables are in DRAM. Sub tables are added to enable cache for
89 * QBMan and OCRAM.
90 *
York Sun1ef95cc2016-06-24 16:46:18 -070091 * Put the MMU table in secure memory if gd->arch.secure_ram is valid.
92 * OCRAM will be not used for this purpose so gd->arch.secure_ram can't be 0.
Mingkai Hu0e58b512015-10-26 19:47:50 +080093 */
94static inline void final_mmu_setup(void)
95{
York Sun9da8f502016-06-24 16:46:23 -070096 u64 tlb_addr_save = gd->arch.tlb_addr;
York Sun0804d562015-12-04 11:57:08 -080097 unsigned int el = current_el();
York Sun0804d562015-12-04 11:57:08 -080098#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
York Sun9da8f502016-06-24 16:46:23 -070099 int index;
Mingkai Hu0e58b512015-10-26 19:47:50 +0800100#endif
101
York Sun9da8f502016-06-24 16:46:23 -0700102 mem_map = final_map;
Mingkai Hu0e58b512015-10-26 19:47:50 +0800103
York Sun0804d562015-12-04 11:57:08 -0800104#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
York Sun9da8f502016-06-24 16:46:23 -0700105 if (gd->arch.secure_ram & MEM_RESERVE_SECURE_MAINTAINED) {
106 if (el == 3) {
107 /*
108 * Only use gd->arch.secure_ram if the address is
109 * recalculated. Align to 4KB for MMU table.
110 */
111 /* put page tables in secure ram */
112 index = ARRAY_SIZE(final_map) - 2;
113 gd->arch.tlb_addr = gd->arch.secure_ram & ~0xfff;
114 final_map[index].virt = gd->arch.secure_ram & ~0x3;
115 final_map[index].phys = final_map[index].virt;
116 final_map[index].size = CONFIG_SYS_MEM_RESERVE_SECURE;
117 final_map[index].attrs = PTE_BLOCK_OUTER_SHARE;
York Sun1ef95cc2016-06-24 16:46:18 -0700118 gd->arch.secure_ram |= MEM_RESERVE_SECURE_SECURED;
York Sun9da8f502016-06-24 16:46:23 -0700119 tlb_addr_save = gd->arch.tlb_addr;
York Sun0804d562015-12-04 11:57:08 -0800120 } else {
York Sun9da8f502016-06-24 16:46:23 -0700121 /* Use allocated (board_f.c) memory for TLB */
122 tlb_addr_save = gd->arch.tlb_allocated;
123 gd->arch.tlb_addr = tlb_addr_save;
York Sun0804d562015-12-04 11:57:08 -0800124 }
125 }
126#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +0800127
York Sun9da8f502016-06-24 16:46:23 -0700128 /* Reset the fill ptr */
129 gd->arch.tlb_fillptr = tlb_addr_save;
130
131 /* Create normal system page tables */
132 setup_pgtables();
133
134 /* Create emergency page tables */
135 gd->arch.tlb_addr = gd->arch.tlb_fillptr;
136 gd->arch.tlb_emerg = gd->arch.tlb_addr;
137 setup_pgtables();
138 gd->arch.tlb_addr = tlb_addr_save;
139
Mingkai Hu0e58b512015-10-26 19:47:50 +0800140 /* flush new MMU table */
York Sun9da8f502016-06-24 16:46:23 -0700141 flush_dcache_range(gd->arch.tlb_addr,
142 gd->arch.tlb_addr + gd->arch.tlb_size);
Mingkai Hu0e58b512015-10-26 19:47:50 +0800143
144 /* point TTBR to the new table */
York Sun9da8f502016-06-24 16:46:23 -0700145 set_ttbr_tcr_mair(el, gd->arch.tlb_addr, get_tcr(el, NULL, NULL),
Mingkai Hu0e58b512015-10-26 19:47:50 +0800146 MEMORY_ATTRIBUTES);
147 /*
148 * MMU is already enabled, just need to invalidate TLB to load the
149 * new table. The new table is compatible with the current table, if
150 * MMU somehow walks through the new table before invalidation TLB,
151 * it still works. So we don't need to turn off MMU here.
152 */
153}
154
Alexander Grafbc78b922016-03-21 20:26:12 +0100155u64 get_page_table_size(void)
156{
157 return 0x10000;
158}
159
Mingkai Hu0e58b512015-10-26 19:47:50 +0800160int arch_cpu_init(void)
161{
162 icache_enable();
163 __asm_invalidate_dcache_all();
164 __asm_invalidate_tlb_all();
165 early_mmu_setup();
166 set_sctlr(get_sctlr() | CR_C);
167 return 0;
168}
169
Hou Zhiqianga7befa52016-06-28 20:18:12 +0800170void mmu_setup(void)
171{
172 final_mmu_setup();
173}
174
Mingkai Hu0e58b512015-10-26 19:47:50 +0800175/*
Hou Zhiqianga7befa52016-06-28 20:18:12 +0800176 * This function is called from common/board_r.c.
177 * It recreates MMU table in main memory.
Mingkai Hu0e58b512015-10-26 19:47:50 +0800178 */
179void enable_caches(void)
180{
Hou Zhiqianga7befa52016-06-28 20:18:12 +0800181 mmu_setup();
Mingkai Hu0e58b512015-10-26 19:47:50 +0800182 __asm_invalidate_tlb_all();
Hou Zhiqianga7befa52016-06-28 20:18:12 +0800183 icache_enable();
184 dcache_enable();
Mingkai Hu0e58b512015-10-26 19:47:50 +0800185}
186#endif
187
188static inline u32 initiator_type(u32 cluster, int init_id)
189{
190 struct ccsr_gur *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
191 u32 idx = (cluster >> (init_id * 8)) & TP_CLUSTER_INIT_MASK;
192 u32 type = 0;
193
194 type = gur_in32(&gur->tp_ityp[idx]);
195 if (type & TP_ITYP_AV)
196 return type;
197
198 return 0;
199}
200
201u32 cpu_mask(void)
202{
203 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
204 int i = 0, count = 0;
205 u32 cluster, type, mask = 0;
206
207 do {
208 int j;
209
210 cluster = gur_in32(&gur->tp_cluster[i].lower);
211 for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
212 type = initiator_type(cluster, j);
213 if (type) {
214 if (TP_ITYP_TYPE(type) == TP_ITYP_TYPE_ARM)
215 mask |= 1 << count;
216 count++;
217 }
218 }
219 i++;
220 } while ((cluster & TP_CLUSTER_EOC) == 0x0);
221
222 return mask;
223}
224
225/*
226 * Return the number of cores on this SOC.
227 */
228int cpu_numcores(void)
229{
230 return hweight32(cpu_mask());
231}
232
233int fsl_qoriq_core_to_cluster(unsigned int core)
234{
235 struct ccsr_gur __iomem *gur =
236 (void __iomem *)(CONFIG_SYS_FSL_GUTS_ADDR);
237 int i = 0, count = 0;
238 u32 cluster;
239
240 do {
241 int j;
242
243 cluster = gur_in32(&gur->tp_cluster[i].lower);
244 for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
245 if (initiator_type(cluster, j)) {
246 if (count == core)
247 return i;
248 count++;
249 }
250 }
251 i++;
252 } while ((cluster & TP_CLUSTER_EOC) == 0x0);
253
254 return -1; /* cannot identify the cluster */
255}
256
257u32 fsl_qoriq_core_to_type(unsigned int core)
258{
259 struct ccsr_gur __iomem *gur =
260 (void __iomem *)(CONFIG_SYS_FSL_GUTS_ADDR);
261 int i = 0, count = 0;
262 u32 cluster, type;
263
264 do {
265 int j;
266
267 cluster = gur_in32(&gur->tp_cluster[i].lower);
268 for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
269 type = initiator_type(cluster, j);
270 if (type) {
271 if (count == core)
272 return type;
273 count++;
274 }
275 }
276 i++;
277 } while ((cluster & TP_CLUSTER_EOC) == 0x0);
278
279 return -1; /* cannot identify the cluster */
280}
281
Sriram Dash9282d262016-06-13 09:58:32 +0530282uint get_svr(void)
283{
284 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
285
286 return gur_in32(&gur->svr);
287}
288
Mingkai Hu0e58b512015-10-26 19:47:50 +0800289#ifdef CONFIG_DISPLAY_CPUINFO
290int print_cpuinfo(void)
291{
292 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
293 struct sys_info sysinfo;
294 char buf[32];
295 unsigned int i, core;
York Suncbe8e1c2016-04-04 11:41:26 -0700296 u32 type, rcw, svr = gur_in32(&gur->svr);
Mingkai Hu0e58b512015-10-26 19:47:50 +0800297
298 puts("SoC: ");
299
300 cpu_name(buf);
York Suncbe8e1c2016-04-04 11:41:26 -0700301 printf(" %s (0x%x)\n", buf, svr);
Mingkai Hu0e58b512015-10-26 19:47:50 +0800302 memset((u8 *)buf, 0x00, ARRAY_SIZE(buf));
303 get_sys_info(&sysinfo);
304 puts("Clock Configuration:");
305 for_each_cpu(i, core, cpu_numcores(), cpu_mask()) {
306 if (!(i % 3))
307 puts("\n ");
308 type = TP_ITYP_VER(fsl_qoriq_core_to_type(core));
309 printf("CPU%d(%s):%-4s MHz ", core,
310 type == TY_ITYP_VER_A7 ? "A7 " :
311 (type == TY_ITYP_VER_A53 ? "A53" :
312 (type == TY_ITYP_VER_A57 ? "A57" : " ")),
313 strmhz(buf, sysinfo.freq_processor[core]));
314 }
315 printf("\n Bus: %-4s MHz ",
316 strmhz(buf, sysinfo.freq_systembus));
317 printf("DDR: %-4s MT/s", strmhz(buf, sysinfo.freq_ddrbus));
Shaohui Xie04643262015-10-26 19:47:54 +0800318#ifdef CONFIG_SYS_DPAA_FMAN
319 printf(" FMAN: %-4s MHz", strmhz(buf, sysinfo.freq_fman[0]));
320#endif
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530321#ifdef CONFIG_SYS_FSL_HAS_DP_DDR
York Suncbe8e1c2016-04-04 11:41:26 -0700322 if (soc_has_dp_ddr()) {
323 printf(" DP-DDR: %-4s MT/s",
324 strmhz(buf, sysinfo.freq_ddrbus2));
325 }
Mingkai Hu0e58b512015-10-26 19:47:50 +0800326#endif
327 puts("\n");
328
329 /*
330 * Display the RCW, so that no one gets confused as to what RCW
331 * we're actually using for this boot.
332 */
333 puts("Reset Configuration Word (RCW):");
334 for (i = 0; i < ARRAY_SIZE(gur->rcwsr); i++) {
335 rcw = gur_in32(&gur->rcwsr[i]);
336 if ((i % 4) == 0)
337 printf("\n %08x:", i * 4);
338 printf(" %08x", rcw);
339 }
340 puts("\n");
341
342 return 0;
343}
344#endif
345
346#ifdef CONFIG_FSL_ESDHC
347int cpu_mmc_init(bd_t *bis)
348{
349 return fsl_esdhc_mmc_init(bis);
350}
351#endif
352
353int cpu_eth_init(bd_t *bis)
354{
355 int error = 0;
356
357#ifdef CONFIG_FSL_MC_ENET
358 error = fsl_mc_ldpaa_init(bis);
359#endif
Shaohui Xie04643262015-10-26 19:47:54 +0800360#ifdef CONFIG_FMAN_ENET
361 fm_standard_init(bis);
362#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +0800363 return error;
364}
365
366int arch_early_init_r(void)
367{
368#ifdef CONFIG_MP
369 int rv = 1;
Hou Zhiqiang21c4d552016-06-28 20:18:15 +0800370 u32 psci_ver = 0xffffffff;
Prabhakar Kushwaha22cfe962015-11-05 12:00:14 +0530371#endif
372
373#ifdef CONFIG_SYS_FSL_ERRATUM_A009635
374 erratum_a009635();
375#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +0800376
Prabhakar Kushwaha22cfe962015-11-05 12:00:14 +0530377#ifdef CONFIG_MP
Hou Zhiqiang21c4d552016-06-28 20:18:15 +0800378#if defined(CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT) && defined(CONFIG_ARMV8_PSCI)
379 /* Check the psci version to determine if the psci is supported */
380 psci_ver = sec_firmware_support_psci_version();
381#endif
382 if (psci_ver == 0xffffffff) {
383 rv = fsl_layerscape_wake_seconday_cores();
384 if (rv)
385 printf("Did not wake secondary cores\n");
386 }
Mingkai Hu0e58b512015-10-26 19:47:50 +0800387#endif
388
389#ifdef CONFIG_SYS_HAS_SERDES
390 fsl_serdes_init();
391#endif
Shaohui Xie04643262015-10-26 19:47:54 +0800392#ifdef CONFIG_FMAN_ENET
393 fman_enet_init();
394#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +0800395 return 0;
396}
397
398int timer_init(void)
399{
400 u32 __iomem *cntcr = (u32 *)CONFIG_SYS_FSL_TIMER_ADDR;
401#ifdef CONFIG_FSL_LSCH3
402 u32 __iomem *cltbenr = (u32 *)CONFIG_SYS_FSL_PMU_CLTBENR;
403#endif
Yunhui Cui3dfb82a2016-06-08 10:31:42 +0800404#ifdef CONFIG_LS2080A
405 u32 __iomem *pctbenr = (u32 *)FSL_PMU_PCTBENR_OFFSET;
406#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +0800407#ifdef COUNTER_FREQUENCY_REAL
408 unsigned long cntfrq = COUNTER_FREQUENCY_REAL;
409
410 /* Update with accurate clock frequency */
411 asm volatile("msr cntfrq_el0, %0" : : "r" (cntfrq) : "memory");
412#endif
413
414#ifdef CONFIG_FSL_LSCH3
415 /* Enable timebase for all clusters.
416 * It is safe to do so even some clusters are not enabled.
417 */
418 out_le32(cltbenr, 0xf);
419#endif
420
Yunhui Cui3dfb82a2016-06-08 10:31:42 +0800421#ifdef CONFIG_LS2080A
422 /*
423 * In certain Layerscape SoCs, the clock for each core's
424 * has an enable bit in the PMU Physical Core Time Base Enable
425 * Register (PCTBENR), which allows the watchdog to operate.
426 */
427 setbits_le32(pctbenr, 0xff);
428#endif
429
Mingkai Hu0e58b512015-10-26 19:47:50 +0800430 /* Enable clock for timer
431 * This is a global setting.
432 */
433 out_le32(cntcr, 0x1);
434
435 return 0;
436}
437
438void reset_cpu(ulong addr)
439{
440 u32 __iomem *rstcr = (u32 *)CONFIG_SYS_FSL_RST_ADDR;
441 u32 val;
442
443 /* Raise RESET_REQ_B */
444 val = scfg_in32(rstcr);
445 val |= 0x02;
446 scfg_out32(rstcr, val);
447}
York Sun928b6812015-12-07 11:08:58 -0800448
449phys_size_t board_reserve_ram_top(phys_size_t ram_size)
450{
451 phys_size_t ram_top = ram_size;
452
453#ifdef CONFIG_SYS_MEM_TOP_HIDE
454#error CONFIG_SYS_MEM_TOP_HIDE not to be used together with this function
455#endif
456/* Carve the Debug Server private DRAM block from the end of DRAM */
457#ifdef CONFIG_FSL_DEBUG_SERVER
458 ram_top -= debug_server_get_dram_block_size();
459#endif
460
461/* Carve the MC private DRAM block from the end of DRAM */
462#ifdef CONFIG_FSL_MC_ENET
463 ram_top -= mc_get_dram_block_size();
464 ram_top &= ~(CONFIG_SYS_MC_RSV_MEM_ALIGN - 1);
465#endif
466
467 return ram_top;
468}