xref: /rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/cpu.c (revision 5d1a7a9d209fd9b8ffca1f3f27139f372a225e16)
1 /*
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 <linux/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-mc/fsl_mc.h>
22 #ifdef CONFIG_FSL_ESDHC
23 #include <fsl_esdhc.h>
24 #endif
25 #ifdef CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT
26 #include <asm/armv8/sec_firmware.h>
27 #endif
28 
29 DECLARE_GLOBAL_DATA_PTR;
30 
31 struct mm_region *mem_map = early_map;
32 
33 void cpu_name(char *name)
34 {
35 	struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
36 	unsigned int i, svr, ver;
37 
38 	svr = gur_in32(&gur->svr);
39 	ver = SVR_SOC_VER(svr);
40 
41 	for (i = 0; i < ARRAY_SIZE(cpu_type_list); i++)
42 		if ((cpu_type_list[i].soc_ver & SVR_WO_E) == ver) {
43 			strcpy(name, cpu_type_list[i].name);
44 
45 			if (IS_E_PROCESSOR(svr))
46 				strcat(name, "E");
47 
48 			sprintf(name + strlen(name), " Rev%d.%d",
49 				SVR_MAJ(svr), SVR_MIN(svr));
50 			break;
51 		}
52 
53 	if (i == ARRAY_SIZE(cpu_type_list))
54 		strcpy(name, "unknown");
55 }
56 
57 #ifndef CONFIG_SYS_DCACHE_OFF
58 /*
59  * To start MMU before DDR is available, we create MMU table in SRAM.
60  * The base address of SRAM is CONFIG_SYS_FSL_OCRAM_BASE. We use three
61  * levels of translation tables here to cover 40-bit address space.
62  * We use 4KB granule size, with 40 bits physical address, T0SZ=24
63  * Address above EARLY_PGTABLE_SIZE (0x5000) is free for other purpose.
64  * Note, the debug print in cache_v8.c is not usable for debugging
65  * these early MMU tables because UART is not yet available.
66  */
67 static inline void early_mmu_setup(void)
68 {
69 	unsigned int el = current_el();
70 
71 	/* global data is already setup, no allocation yet */
72 	gd->arch.tlb_addr = CONFIG_SYS_FSL_OCRAM_BASE;
73 	gd->arch.tlb_fillptr = gd->arch.tlb_addr;
74 	gd->arch.tlb_size = EARLY_PGTABLE_SIZE;
75 
76 	/* Create early page tables */
77 	setup_pgtables();
78 
79 	/* point TTBR to the new table */
80 	set_ttbr_tcr_mair(el, gd->arch.tlb_addr,
81 			  get_tcr(el, NULL, NULL) &
82 			  ~(TCR_ORGN_MASK | TCR_IRGN_MASK),
83 			  MEMORY_ATTRIBUTES);
84 
85 	set_sctlr(get_sctlr() | CR_M);
86 }
87 
88 /*
89  * The final tables look similar to early tables, but different in detail.
90  * These tables are in DRAM. Sub tables are added to enable cache for
91  * QBMan and OCRAM.
92  *
93  * Put the MMU table in secure memory if gd->arch.secure_ram is valid.
94  * OCRAM will be not used for this purpose so gd->arch.secure_ram can't be 0.
95  */
96 static inline void final_mmu_setup(void)
97 {
98 	u64 tlb_addr_save = gd->arch.tlb_addr;
99 	unsigned int el = current_el();
100 #ifdef CONFIG_SYS_MEM_RESERVE_SECURE
101 	int index;
102 #endif
103 
104 	mem_map = final_map;
105 
106 #ifdef CONFIG_SYS_MEM_RESERVE_SECURE
107 	if (gd->arch.secure_ram & MEM_RESERVE_SECURE_MAINTAINED) {
108 		if (el == 3) {
109 			/*
110 			 * Only use gd->arch.secure_ram if the address is
111 			 * recalculated. Align to 4KB for MMU table.
112 			 */
113 			/* put page tables in secure ram */
114 			index = ARRAY_SIZE(final_map) - 2;
115 			gd->arch.tlb_addr = gd->arch.secure_ram & ~0xfff;
116 			final_map[index].virt = gd->arch.secure_ram & ~0x3;
117 			final_map[index].phys = final_map[index].virt;
118 			final_map[index].size = CONFIG_SYS_MEM_RESERVE_SECURE;
119 			final_map[index].attrs = PTE_BLOCK_OUTER_SHARE;
120 			gd->arch.secure_ram |= MEM_RESERVE_SECURE_SECURED;
121 			tlb_addr_save = gd->arch.tlb_addr;
122 		} else {
123 			/* Use allocated (board_f.c) memory for TLB */
124 			tlb_addr_save = gd->arch.tlb_allocated;
125 			gd->arch.tlb_addr = tlb_addr_save;
126 		}
127 	}
128 #endif
129 
130 	/* Reset the fill ptr */
131 	gd->arch.tlb_fillptr = tlb_addr_save;
132 
133 	/* Create normal system page tables */
134 	setup_pgtables();
135 
136 	/* Create emergency page tables */
137 	gd->arch.tlb_addr = gd->arch.tlb_fillptr;
138 	gd->arch.tlb_emerg = gd->arch.tlb_addr;
139 	setup_pgtables();
140 	gd->arch.tlb_addr = tlb_addr_save;
141 
142 	/* flush new MMU table */
143 	flush_dcache_range(gd->arch.tlb_addr,
144 			   gd->arch.tlb_addr + gd->arch.tlb_size);
145 
146 	/* point TTBR to the new table */
147 	set_ttbr_tcr_mair(el, gd->arch.tlb_addr, get_tcr(el, NULL, NULL),
148 			  MEMORY_ATTRIBUTES);
149 	/*
150 	 * EL3 MMU is already enabled, just need to invalidate TLB to load the
151 	 * new table. The new table is compatible with the current table, if
152 	 * MMU somehow walks through the new table before invalidation TLB,
153 	 * it still works. So we don't need to turn off MMU here.
154 	 * When EL2 MMU table is created by calling this function, MMU needs
155 	 * to be enabled.
156 	 */
157 	set_sctlr(get_sctlr() | CR_M);
158 }
159 
160 u64 get_page_table_size(void)
161 {
162 	return 0x10000;
163 }
164 
165 int arch_cpu_init(void)
166 {
167 	icache_enable();
168 	__asm_invalidate_dcache_all();
169 	__asm_invalidate_tlb_all();
170 	early_mmu_setup();
171 	set_sctlr(get_sctlr() | CR_C);
172 	return 0;
173 }
174 
175 void mmu_setup(void)
176 {
177 	final_mmu_setup();
178 }
179 
180 /*
181  * This function is called from common/board_r.c.
182  * It recreates MMU table in main memory.
183  */
184 void enable_caches(void)
185 {
186 	mmu_setup();
187 	__asm_invalidate_tlb_all();
188 	icache_enable();
189 	dcache_enable();
190 }
191 #endif
192 
193 static inline u32 initiator_type(u32 cluster, int init_id)
194 {
195 	struct ccsr_gur *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
196 	u32 idx = (cluster >> (init_id * 8)) & TP_CLUSTER_INIT_MASK;
197 	u32 type = 0;
198 
199 	type = gur_in32(&gur->tp_ityp[idx]);
200 	if (type & TP_ITYP_AV)
201 		return type;
202 
203 	return 0;
204 }
205 
206 u32 cpu_mask(void)
207 {
208 	struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
209 	int i = 0, count = 0;
210 	u32 cluster, type, mask = 0;
211 
212 	do {
213 		int j;
214 
215 		cluster = gur_in32(&gur->tp_cluster[i].lower);
216 		for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
217 			type = initiator_type(cluster, j);
218 			if (type) {
219 				if (TP_ITYP_TYPE(type) == TP_ITYP_TYPE_ARM)
220 					mask |= 1 << count;
221 				count++;
222 			}
223 		}
224 		i++;
225 	} while ((cluster & TP_CLUSTER_EOC) == 0x0);
226 
227 	return mask;
228 }
229 
230 /*
231  * Return the number of cores on this SOC.
232  */
233 int cpu_numcores(void)
234 {
235 	return hweight32(cpu_mask());
236 }
237 
238 int fsl_qoriq_core_to_cluster(unsigned int core)
239 {
240 	struct ccsr_gur __iomem *gur =
241 		(void __iomem *)(CONFIG_SYS_FSL_GUTS_ADDR);
242 	int i = 0, count = 0;
243 	u32 cluster;
244 
245 	do {
246 		int j;
247 
248 		cluster = gur_in32(&gur->tp_cluster[i].lower);
249 		for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
250 			if (initiator_type(cluster, j)) {
251 				if (count == core)
252 					return i;
253 				count++;
254 			}
255 		}
256 		i++;
257 	} while ((cluster & TP_CLUSTER_EOC) == 0x0);
258 
259 	return -1;      /* cannot identify the cluster */
260 }
261 
262 u32 fsl_qoriq_core_to_type(unsigned int core)
263 {
264 	struct ccsr_gur __iomem *gur =
265 		(void __iomem *)(CONFIG_SYS_FSL_GUTS_ADDR);
266 	int i = 0, count = 0;
267 	u32 cluster, type;
268 
269 	do {
270 		int j;
271 
272 		cluster = gur_in32(&gur->tp_cluster[i].lower);
273 		for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
274 			type = initiator_type(cluster, j);
275 			if (type) {
276 				if (count == core)
277 					return type;
278 				count++;
279 			}
280 		}
281 		i++;
282 	} while ((cluster & TP_CLUSTER_EOC) == 0x0);
283 
284 	return -1;      /* cannot identify the cluster */
285 }
286 
287 uint get_svr(void)
288 {
289 	struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
290 
291 	return gur_in32(&gur->svr);
292 }
293 
294 #ifdef CONFIG_DISPLAY_CPUINFO
295 int print_cpuinfo(void)
296 {
297 	struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
298 	struct sys_info sysinfo;
299 	char buf[32];
300 	unsigned int i, core;
301 	u32 type, rcw, svr = gur_in32(&gur->svr);
302 
303 	puts("SoC: ");
304 
305 	cpu_name(buf);
306 	printf(" %s (0x%x)\n", buf, svr);
307 	memset((u8 *)buf, 0x00, ARRAY_SIZE(buf));
308 	get_sys_info(&sysinfo);
309 	puts("Clock Configuration:");
310 	for_each_cpu(i, core, cpu_numcores(), cpu_mask()) {
311 		if (!(i % 3))
312 			puts("\n       ");
313 		type = TP_ITYP_VER(fsl_qoriq_core_to_type(core));
314 		printf("CPU%d(%s):%-4s MHz  ", core,
315 		       type == TY_ITYP_VER_A7 ? "A7 " :
316 		       (type == TY_ITYP_VER_A53 ? "A53" :
317 		       (type == TY_ITYP_VER_A57 ? "A57" :
318 		       (type == TY_ITYP_VER_A72 ? "A72" : "   "))),
319 		       strmhz(buf, sysinfo.freq_processor[core]));
320 	}
321 	printf("\n       Bus:      %-4s MHz  ",
322 	       strmhz(buf, sysinfo.freq_systembus));
323 	printf("DDR:      %-4s MT/s", strmhz(buf, sysinfo.freq_ddrbus));
324 #ifdef CONFIG_SYS_DPAA_FMAN
325 	printf("  FMAN:     %-4s MHz", strmhz(buf, sysinfo.freq_fman[0]));
326 #endif
327 #ifdef CONFIG_SYS_FSL_HAS_DP_DDR
328 	if (soc_has_dp_ddr()) {
329 		printf("     DP-DDR:   %-4s MT/s",
330 		       strmhz(buf, sysinfo.freq_ddrbus2));
331 	}
332 #endif
333 	puts("\n");
334 
335 	/*
336 	 * Display the RCW, so that no one gets confused as to what RCW
337 	 * we're actually using for this boot.
338 	 */
339 	puts("Reset Configuration Word (RCW):");
340 	for (i = 0; i < ARRAY_SIZE(gur->rcwsr); i++) {
341 		rcw = gur_in32(&gur->rcwsr[i]);
342 		if ((i % 4) == 0)
343 			printf("\n       %08x:", i * 4);
344 		printf(" %08x", rcw);
345 	}
346 	puts("\n");
347 
348 	return 0;
349 }
350 #endif
351 
352 #ifdef CONFIG_FSL_ESDHC
353 int cpu_mmc_init(bd_t *bis)
354 {
355 	return fsl_esdhc_mmc_init(bis);
356 }
357 #endif
358 
359 int cpu_eth_init(bd_t *bis)
360 {
361 	int error = 0;
362 
363 #ifdef CONFIG_FSL_MC_ENET
364 	error = fsl_mc_ldpaa_init(bis);
365 #endif
366 #ifdef CONFIG_FMAN_ENET
367 	fm_standard_init(bis);
368 #endif
369 	return error;
370 }
371 
372 int arch_early_init_r(void)
373 {
374 #ifdef CONFIG_MP
375 	int rv = 1;
376 	u32 psci_ver = 0xffffffff;
377 #endif
378 
379 #ifdef CONFIG_SYS_FSL_ERRATUM_A009635
380 	erratum_a009635();
381 #endif
382 
383 #ifdef CONFIG_MP
384 #if defined(CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT) && defined(CONFIG_ARMV8_PSCI)
385 	/* Check the psci version to determine if the psci is supported */
386 	psci_ver = sec_firmware_support_psci_version();
387 #endif
388 	if (psci_ver == 0xffffffff) {
389 		rv = fsl_layerscape_wake_seconday_cores();
390 		if (rv)
391 			printf("Did not wake secondary cores\n");
392 	}
393 #endif
394 
395 #ifdef CONFIG_SYS_HAS_SERDES
396 	fsl_serdes_init();
397 #endif
398 #ifdef CONFIG_FMAN_ENET
399 	fman_enet_init();
400 #endif
401 	return 0;
402 }
403 
404 int timer_init(void)
405 {
406 	u32 __iomem *cntcr = (u32 *)CONFIG_SYS_FSL_TIMER_ADDR;
407 #ifdef CONFIG_FSL_LSCH3
408 	u32 __iomem *cltbenr = (u32 *)CONFIG_SYS_FSL_PMU_CLTBENR;
409 #endif
410 #ifdef CONFIG_LS2080A
411 	u32 __iomem *pctbenr = (u32 *)FSL_PMU_PCTBENR_OFFSET;
412 #endif
413 #ifdef COUNTER_FREQUENCY_REAL
414 	unsigned long cntfrq = COUNTER_FREQUENCY_REAL;
415 
416 	/* Update with accurate clock frequency */
417 	asm volatile("msr cntfrq_el0, %0" : : "r" (cntfrq) : "memory");
418 #endif
419 
420 #ifdef CONFIG_FSL_LSCH3
421 	/* Enable timebase for all clusters.
422 	 * It is safe to do so even some clusters are not enabled.
423 	 */
424 	out_le32(cltbenr, 0xf);
425 #endif
426 
427 #ifdef CONFIG_LS2080A
428 	/*
429 	 * In certain Layerscape SoCs, the clock for each core's
430 	 * has an enable bit in the PMU Physical Core Time Base Enable
431 	 * Register (PCTBENR), which allows the watchdog to operate.
432 	 */
433 	setbits_le32(pctbenr, 0xff);
434 #endif
435 
436 	/* Enable clock for timer
437 	 * This is a global setting.
438 	 */
439 	out_le32(cntcr, 0x1);
440 
441 	return 0;
442 }
443 
444 void reset_cpu(ulong addr)
445 {
446 	u32 __iomem *rstcr = (u32 *)CONFIG_SYS_FSL_RST_ADDR;
447 	u32 val;
448 
449 	/* Raise RESET_REQ_B */
450 	val = scfg_in32(rstcr);
451 	val |= 0x02;
452 	scfg_out32(rstcr, val);
453 }
454 
455 phys_size_t board_reserve_ram_top(phys_size_t ram_size)
456 {
457 	phys_size_t ram_top = ram_size;
458 
459 #ifdef CONFIG_SYS_MEM_TOP_HIDE
460 #error CONFIG_SYS_MEM_TOP_HIDE not to be used together with this function
461 #endif
462 
463 /* Carve the MC private DRAM block from the end of DRAM */
464 #ifdef CONFIG_FSL_MC_ENET
465 	ram_top -= mc_get_dram_block_size();
466 	ram_top &= ~(CONFIG_SYS_MC_RSV_MEM_ALIGN - 1);
467 #endif
468 
469 	return ram_top;
470 }
471