blob: 467d9af9200ab6dc26fd5a7eaddb9976c7ab2421 [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>
Masahiro Yamada56a931c2016-09-21 11:28:55 +09009#include <linux/errno.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080010#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
Alexander Graf12be31c2016-11-17 01:03:01 +010020#include <efi_loader.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080021#include <fm_eth.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#ifdef CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT
27#include <asm/armv8/sec_firmware.h>
28#endif
Shengzhou Liu15875a52016-11-21 11:36:48 +080029#ifdef CONFIG_SYS_FSL_DDR
30#include <fsl_ddr.h>
31#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +080032
33DECLARE_GLOBAL_DATA_PTR;
34
York Sun9da8f502016-06-24 16:46:23 -070035struct mm_region *mem_map = early_map;
Alexander Grafce0a64e2016-03-04 01:09:54 +010036
Mingkai Hu0e58b512015-10-26 19:47:50 +080037void cpu_name(char *name)
38{
39 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
40 unsigned int i, svr, ver;
41
42 svr = gur_in32(&gur->svr);
43 ver = SVR_SOC_VER(svr);
44
45 for (i = 0; i < ARRAY_SIZE(cpu_type_list); i++)
46 if ((cpu_type_list[i].soc_ver & SVR_WO_E) == ver) {
47 strcpy(name, cpu_type_list[i].name);
48
49 if (IS_E_PROCESSOR(svr))
50 strcat(name, "E");
Wenbin Song863a33a2016-09-13 16:13:54 +080051
52 sprintf(name + strlen(name), " Rev%d.%d",
53 SVR_MAJ(svr), SVR_MIN(svr));
Mingkai Hu0e58b512015-10-26 19:47:50 +080054 break;
55 }
56
57 if (i == ARRAY_SIZE(cpu_type_list))
58 strcpy(name, "unknown");
59}
60
61#ifndef CONFIG_SYS_DCACHE_OFF
Mingkai Hu0e58b512015-10-26 19:47:50 +080062/*
63 * To start MMU before DDR is available, we create MMU table in SRAM.
64 * The base address of SRAM is CONFIG_SYS_FSL_OCRAM_BASE. We use three
65 * levels of translation tables here to cover 40-bit address space.
66 * We use 4KB granule size, with 40 bits physical address, T0SZ=24
York Sun9da8f502016-06-24 16:46:23 -070067 * Address above EARLY_PGTABLE_SIZE (0x5000) is free for other purpose.
68 * Note, the debug print in cache_v8.c is not usable for debugging
69 * these early MMU tables because UART is not yet available.
Mingkai Hu0e58b512015-10-26 19:47:50 +080070 */
71static inline void early_mmu_setup(void)
72{
York Sun9da8f502016-06-24 16:46:23 -070073 unsigned int el = current_el();
Mingkai Hu0e58b512015-10-26 19:47:50 +080074
York Sun9da8f502016-06-24 16:46:23 -070075 /* global data is already setup, no allocation yet */
76 gd->arch.tlb_addr = CONFIG_SYS_FSL_OCRAM_BASE;
77 gd->arch.tlb_fillptr = gd->arch.tlb_addr;
78 gd->arch.tlb_size = EARLY_PGTABLE_SIZE;
Mingkai Hu0e58b512015-10-26 19:47:50 +080079
York Sun9da8f502016-06-24 16:46:23 -070080 /* Create early page tables */
81 setup_pgtables();
Mingkai Hu0e58b512015-10-26 19:47:50 +080082
York Sun9da8f502016-06-24 16:46:23 -070083 /* point TTBR to the new table */
84 set_ttbr_tcr_mair(el, gd->arch.tlb_addr,
85 get_tcr(el, NULL, NULL) &
86 ~(TCR_ORGN_MASK | TCR_IRGN_MASK),
Mingkai Hu0e58b512015-10-26 19:47:50 +080087 MEMORY_ATTRIBUTES);
York Sun9da8f502016-06-24 16:46:23 -070088
Mingkai Hu0e58b512015-10-26 19:47:50 +080089 set_sctlr(get_sctlr() | CR_M);
90}
91
92/*
93 * The final tables look similar to early tables, but different in detail.
94 * These tables are in DRAM. Sub tables are added to enable cache for
95 * QBMan and OCRAM.
96 *
York Sun1ef95cc2016-06-24 16:46:18 -070097 * Put the MMU table in secure memory if gd->arch.secure_ram is valid.
98 * OCRAM will be not used for this purpose so gd->arch.secure_ram can't be 0.
Mingkai Hu0e58b512015-10-26 19:47:50 +080099 */
100static inline void final_mmu_setup(void)
101{
York Sun9da8f502016-06-24 16:46:23 -0700102 u64 tlb_addr_save = gd->arch.tlb_addr;
York Sun0804d562015-12-04 11:57:08 -0800103 unsigned int el = current_el();
York Sun0804d562015-12-04 11:57:08 -0800104#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
York Sun9da8f502016-06-24 16:46:23 -0700105 int index;
Mingkai Hu0e58b512015-10-26 19:47:50 +0800106#endif
107
York Sun9da8f502016-06-24 16:46:23 -0700108 mem_map = final_map;
Mingkai Hu0e58b512015-10-26 19:47:50 +0800109
York Sun0804d562015-12-04 11:57:08 -0800110#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
York Sun9da8f502016-06-24 16:46:23 -0700111 if (gd->arch.secure_ram & MEM_RESERVE_SECURE_MAINTAINED) {
112 if (el == 3) {
113 /*
114 * Only use gd->arch.secure_ram if the address is
115 * recalculated. Align to 4KB for MMU table.
116 */
117 /* put page tables in secure ram */
118 index = ARRAY_SIZE(final_map) - 2;
119 gd->arch.tlb_addr = gd->arch.secure_ram & ~0xfff;
120 final_map[index].virt = gd->arch.secure_ram & ~0x3;
121 final_map[index].phys = final_map[index].virt;
122 final_map[index].size = CONFIG_SYS_MEM_RESERVE_SECURE;
123 final_map[index].attrs = PTE_BLOCK_OUTER_SHARE;
York Sun1ef95cc2016-06-24 16:46:18 -0700124 gd->arch.secure_ram |= MEM_RESERVE_SECURE_SECURED;
York Sun9da8f502016-06-24 16:46:23 -0700125 tlb_addr_save = gd->arch.tlb_addr;
York Sun0804d562015-12-04 11:57:08 -0800126 } else {
York Sun9da8f502016-06-24 16:46:23 -0700127 /* Use allocated (board_f.c) memory for TLB */
128 tlb_addr_save = gd->arch.tlb_allocated;
129 gd->arch.tlb_addr = tlb_addr_save;
York Sun0804d562015-12-04 11:57:08 -0800130 }
131 }
132#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +0800133
York Sun9da8f502016-06-24 16:46:23 -0700134 /* Reset the fill ptr */
135 gd->arch.tlb_fillptr = tlb_addr_save;
136
137 /* Create normal system page tables */
138 setup_pgtables();
139
140 /* Create emergency page tables */
141 gd->arch.tlb_addr = gd->arch.tlb_fillptr;
142 gd->arch.tlb_emerg = gd->arch.tlb_addr;
143 setup_pgtables();
144 gd->arch.tlb_addr = tlb_addr_save;
145
Mingkai Hu0e58b512015-10-26 19:47:50 +0800146 /* flush new MMU table */
York Sun9da8f502016-06-24 16:46:23 -0700147 flush_dcache_range(gd->arch.tlb_addr,
148 gd->arch.tlb_addr + gd->arch.tlb_size);
Mingkai Hu0e58b512015-10-26 19:47:50 +0800149
150 /* point TTBR to the new table */
York Sun9da8f502016-06-24 16:46:23 -0700151 set_ttbr_tcr_mair(el, gd->arch.tlb_addr, get_tcr(el, NULL, NULL),
Mingkai Hu0e58b512015-10-26 19:47:50 +0800152 MEMORY_ATTRIBUTES);
153 /*
York Suneb6eac12016-07-22 10:52:23 -0700154 * EL3 MMU is already enabled, just need to invalidate TLB to load the
Mingkai Hu0e58b512015-10-26 19:47:50 +0800155 * new table. The new table is compatible with the current table, if
156 * MMU somehow walks through the new table before invalidation TLB,
157 * it still works. So we don't need to turn off MMU here.
York Suneb6eac12016-07-22 10:52:23 -0700158 * When EL2 MMU table is created by calling this function, MMU needs
159 * to be enabled.
Mingkai Hu0e58b512015-10-26 19:47:50 +0800160 */
York Suneb6eac12016-07-22 10:52:23 -0700161 set_sctlr(get_sctlr() | CR_M);
Mingkai Hu0e58b512015-10-26 19:47:50 +0800162}
163
Alexander Grafbc78b922016-03-21 20:26:12 +0100164u64 get_page_table_size(void)
165{
166 return 0x10000;
167}
168
Mingkai Hu0e58b512015-10-26 19:47:50 +0800169int arch_cpu_init(void)
170{
171 icache_enable();
172 __asm_invalidate_dcache_all();
173 __asm_invalidate_tlb_all();
174 early_mmu_setup();
175 set_sctlr(get_sctlr() | CR_C);
176 return 0;
177}
178
Hou Zhiqianga7befa52016-06-28 20:18:12 +0800179void mmu_setup(void)
180{
181 final_mmu_setup();
182}
183
Mingkai Hu0e58b512015-10-26 19:47:50 +0800184/*
Hou Zhiqianga7befa52016-06-28 20:18:12 +0800185 * This function is called from common/board_r.c.
186 * It recreates MMU table in main memory.
Mingkai Hu0e58b512015-10-26 19:47:50 +0800187 */
188void enable_caches(void)
189{
Hou Zhiqianga7befa52016-06-28 20:18:12 +0800190 mmu_setup();
Mingkai Hu0e58b512015-10-26 19:47:50 +0800191 __asm_invalidate_tlb_all();
Hou Zhiqianga7befa52016-06-28 20:18:12 +0800192 icache_enable();
193 dcache_enable();
Mingkai Hu0e58b512015-10-26 19:47:50 +0800194}
195#endif
196
Priyanka Jain9a276702016-11-17 12:29:56 +0530197u32 initiator_type(u32 cluster, int init_id)
Mingkai Hu0e58b512015-10-26 19:47:50 +0800198{
199 struct ccsr_gur *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
200 u32 idx = (cluster >> (init_id * 8)) & TP_CLUSTER_INIT_MASK;
201 u32 type = 0;
202
203 type = gur_in32(&gur->tp_ityp[idx]);
204 if (type & TP_ITYP_AV)
205 return type;
206
207 return 0;
208}
209
York Suned7fbe32016-09-13 12:40:30 -0700210u32 cpu_pos_mask(void)
211{
212 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
213 int i = 0;
214 u32 cluster, type, mask = 0;
215
216 do {
217 int j;
218
219 cluster = gur_in32(&gur->tp_cluster[i].lower);
220 for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
221 type = initiator_type(cluster, j);
222 if (type && (TP_ITYP_TYPE(type) == TP_ITYP_TYPE_ARM))
223 mask |= 1 << (i * TP_INIT_PER_CLUSTER + j);
224 }
225 i++;
226 } while ((cluster & TP_CLUSTER_EOC) == 0x0);
227
228 return mask;
229}
230
Mingkai Hu0e58b512015-10-26 19:47:50 +0800231u32 cpu_mask(void)
232{
233 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
234 int i = 0, count = 0;
235 u32 cluster, type, mask = 0;
236
237 do {
238 int j;
239
240 cluster = gur_in32(&gur->tp_cluster[i].lower);
241 for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
242 type = initiator_type(cluster, j);
243 if (type) {
244 if (TP_ITYP_TYPE(type) == TP_ITYP_TYPE_ARM)
245 mask |= 1 << count;
246 count++;
247 }
248 }
249 i++;
250 } while ((cluster & TP_CLUSTER_EOC) == 0x0);
251
252 return mask;
253}
254
255/*
256 * Return the number of cores on this SOC.
257 */
258int cpu_numcores(void)
259{
260 return hweight32(cpu_mask());
261}
262
263int fsl_qoriq_core_to_cluster(unsigned int core)
264{
265 struct ccsr_gur __iomem *gur =
266 (void __iomem *)(CONFIG_SYS_FSL_GUTS_ADDR);
267 int i = 0, count = 0;
268 u32 cluster;
269
270 do {
271 int j;
272
273 cluster = gur_in32(&gur->tp_cluster[i].lower);
274 for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
275 if (initiator_type(cluster, j)) {
276 if (count == core)
277 return i;
278 count++;
279 }
280 }
281 i++;
282 } while ((cluster & TP_CLUSTER_EOC) == 0x0);
283
284 return -1; /* cannot identify the cluster */
285}
286
287u32 fsl_qoriq_core_to_type(unsigned int core)
288{
289 struct ccsr_gur __iomem *gur =
290 (void __iomem *)(CONFIG_SYS_FSL_GUTS_ADDR);
291 int i = 0, count = 0;
292 u32 cluster, type;
293
294 do {
295 int j;
296
297 cluster = gur_in32(&gur->tp_cluster[i].lower);
298 for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
299 type = initiator_type(cluster, j);
300 if (type) {
301 if (count == core)
302 return type;
303 count++;
304 }
305 }
306 i++;
307 } while ((cluster & TP_CLUSTER_EOC) == 0x0);
308
309 return -1; /* cannot identify the cluster */
310}
311
Priyanka Jain96b001f2016-11-17 12:29:51 +0530312#ifndef CONFIG_FSL_LSCH3
Sriram Dash9282d262016-06-13 09:58:32 +0530313uint get_svr(void)
314{
315 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
316
317 return gur_in32(&gur->svr);
318}
Priyanka Jain96b001f2016-11-17 12:29:51 +0530319#endif
Sriram Dash9282d262016-06-13 09:58:32 +0530320
Mingkai Hu0e58b512015-10-26 19:47:50 +0800321#ifdef CONFIG_DISPLAY_CPUINFO
322int print_cpuinfo(void)
323{
324 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
325 struct sys_info sysinfo;
326 char buf[32];
327 unsigned int i, core;
York Suncbe8e1c2016-04-04 11:41:26 -0700328 u32 type, rcw, svr = gur_in32(&gur->svr);
Mingkai Hu0e58b512015-10-26 19:47:50 +0800329
330 puts("SoC: ");
331
332 cpu_name(buf);
York Suncbe8e1c2016-04-04 11:41:26 -0700333 printf(" %s (0x%x)\n", buf, svr);
Mingkai Hu0e58b512015-10-26 19:47:50 +0800334 memset((u8 *)buf, 0x00, ARRAY_SIZE(buf));
335 get_sys_info(&sysinfo);
336 puts("Clock Configuration:");
337 for_each_cpu(i, core, cpu_numcores(), cpu_mask()) {
338 if (!(i % 3))
339 puts("\n ");
340 type = TP_ITYP_VER(fsl_qoriq_core_to_type(core));
341 printf("CPU%d(%s):%-4s MHz ", core,
342 type == TY_ITYP_VER_A7 ? "A7 " :
343 (type == TY_ITYP_VER_A53 ? "A53" :
Alison Wang79808392016-07-05 16:01:52 +0800344 (type == TY_ITYP_VER_A57 ? "A57" :
345 (type == TY_ITYP_VER_A72 ? "A72" : " "))),
Mingkai Hu0e58b512015-10-26 19:47:50 +0800346 strmhz(buf, sysinfo.freq_processor[core]));
347 }
348 printf("\n Bus: %-4s MHz ",
349 strmhz(buf, sysinfo.freq_systembus));
350 printf("DDR: %-4s MT/s", strmhz(buf, sysinfo.freq_ddrbus));
Shaohui Xie04643262015-10-26 19:47:54 +0800351#ifdef CONFIG_SYS_DPAA_FMAN
352 printf(" FMAN: %-4s MHz", strmhz(buf, sysinfo.freq_fman[0]));
353#endif
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530354#ifdef CONFIG_SYS_FSL_HAS_DP_DDR
York Suncbe8e1c2016-04-04 11:41:26 -0700355 if (soc_has_dp_ddr()) {
356 printf(" DP-DDR: %-4s MT/s",
357 strmhz(buf, sysinfo.freq_ddrbus2));
358 }
Mingkai Hu0e58b512015-10-26 19:47:50 +0800359#endif
360 puts("\n");
361
362 /*
363 * Display the RCW, so that no one gets confused as to what RCW
364 * we're actually using for this boot.
365 */
366 puts("Reset Configuration Word (RCW):");
367 for (i = 0; i < ARRAY_SIZE(gur->rcwsr); i++) {
368 rcw = gur_in32(&gur->rcwsr[i]);
369 if ((i % 4) == 0)
370 printf("\n %08x:", i * 4);
371 printf(" %08x", rcw);
372 }
373 puts("\n");
374
375 return 0;
376}
377#endif
378
379#ifdef CONFIG_FSL_ESDHC
380int cpu_mmc_init(bd_t *bis)
381{
382 return fsl_esdhc_mmc_init(bis);
383}
384#endif
385
386int cpu_eth_init(bd_t *bis)
387{
388 int error = 0;
389
390#ifdef CONFIG_FSL_MC_ENET
391 error = fsl_mc_ldpaa_init(bis);
392#endif
Shaohui Xie04643262015-10-26 19:47:54 +0800393#ifdef CONFIG_FMAN_ENET
394 fm_standard_init(bis);
395#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +0800396 return error;
397}
398
399int arch_early_init_r(void)
400{
401#ifdef CONFIG_MP
402 int rv = 1;
Hou Zhiqiang21c4d552016-06-28 20:18:15 +0800403 u32 psci_ver = 0xffffffff;
Prabhakar Kushwaha22cfe962015-11-05 12:00:14 +0530404#endif
405
406#ifdef CONFIG_SYS_FSL_ERRATUM_A009635
407 erratum_a009635();
408#endif
Shengzhou Liu15875a52016-11-21 11:36:48 +0800409#if defined(CONFIG_SYS_FSL_ERRATUM_A009942) && defined(CONFIG_SYS_FSL_DDR)
410 erratum_a009942_check_cpo();
411#endif
Prabhakar Kushwaha22cfe962015-11-05 12:00:14 +0530412#ifdef CONFIG_MP
macro.wave.z@gmail.comec2d7ed2016-12-08 11:58:21 +0800413#if defined(CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT) && \
414 defined(CONFIG_FSL_PPA_ARMV8_PSCI)
Hou Zhiqiang21c4d552016-06-28 20:18:15 +0800415 /* Check the psci version to determine if the psci is supported */
416 psci_ver = sec_firmware_support_psci_version();
417#endif
418 if (psci_ver == 0xffffffff) {
419 rv = fsl_layerscape_wake_seconday_cores();
420 if (rv)
421 printf("Did not wake secondary cores\n");
422 }
Mingkai Hu0e58b512015-10-26 19:47:50 +0800423#endif
424
425#ifdef CONFIG_SYS_HAS_SERDES
426 fsl_serdes_init();
427#endif
Shaohui Xie04643262015-10-26 19:47:54 +0800428#ifdef CONFIG_FMAN_ENET
429 fman_enet_init();
430#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +0800431 return 0;
432}
433
434int timer_init(void)
435{
436 u32 __iomem *cntcr = (u32 *)CONFIG_SYS_FSL_TIMER_ADDR;
437#ifdef CONFIG_FSL_LSCH3
438 u32 __iomem *cltbenr = (u32 *)CONFIG_SYS_FSL_PMU_CLTBENR;
439#endif
Yunhui Cui3dfb82a2016-06-08 10:31:42 +0800440#ifdef CONFIG_LS2080A
441 u32 __iomem *pctbenr = (u32 *)FSL_PMU_PCTBENR_OFFSET;
Priyanka Jain3d31ec72016-11-17 12:29:52 +0530442 u32 svr_dev_id;
Yunhui Cui3dfb82a2016-06-08 10:31:42 +0800443#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +0800444#ifdef COUNTER_FREQUENCY_REAL
445 unsigned long cntfrq = COUNTER_FREQUENCY_REAL;
446
447 /* Update with accurate clock frequency */
448 asm volatile("msr cntfrq_el0, %0" : : "r" (cntfrq) : "memory");
449#endif
450
451#ifdef CONFIG_FSL_LSCH3
452 /* Enable timebase for all clusters.
453 * It is safe to do so even some clusters are not enabled.
454 */
455 out_le32(cltbenr, 0xf);
456#endif
457
Yunhui Cui3dfb82a2016-06-08 10:31:42 +0800458#ifdef CONFIG_LS2080A
459 /*
460 * In certain Layerscape SoCs, the clock for each core's
461 * has an enable bit in the PMU Physical Core Time Base Enable
462 * Register (PCTBENR), which allows the watchdog to operate.
463 */
464 setbits_le32(pctbenr, 0xff);
Priyanka Jain3d31ec72016-11-17 12:29:52 +0530465 /*
466 * For LS2080A SoC and its personalities, timer controller
467 * offset is different
468 */
469 svr_dev_id = get_svr() >> 16;
470 if (svr_dev_id == SVR_DEV_LS2080A)
471 cntcr = (u32 *)SYS_FSL_LS2080A_LS2085A_TIMER_ADDR;
472
Yunhui Cui3dfb82a2016-06-08 10:31:42 +0800473#endif
474
Mingkai Hu0e58b512015-10-26 19:47:50 +0800475 /* Enable clock for timer
476 * This is a global setting.
477 */
478 out_le32(cntcr, 0x1);
479
480 return 0;
481}
482
Alexander Graf12be31c2016-11-17 01:03:01 +0100483__efi_runtime_data u32 __iomem *rstcr = (u32 *)CONFIG_SYS_FSL_RST_ADDR;
484
485void __efi_runtime reset_cpu(ulong addr)
Mingkai Hu0e58b512015-10-26 19:47:50 +0800486{
Mingkai Hu0e58b512015-10-26 19:47:50 +0800487 u32 val;
488
489 /* Raise RESET_REQ_B */
490 val = scfg_in32(rstcr);
491 val |= 0x02;
492 scfg_out32(rstcr, val);
493}
York Sun928b6812015-12-07 11:08:58 -0800494
Alexander Graf12be31c2016-11-17 01:03:01 +0100495#ifdef CONFIG_EFI_LOADER
496
497void __efi_runtime EFIAPI efi_reset_system(
498 enum efi_reset_type reset_type,
499 efi_status_t reset_status,
500 unsigned long data_size, void *reset_data)
501{
502 switch (reset_type) {
503 case EFI_RESET_COLD:
504 case EFI_RESET_WARM:
505 reset_cpu(0);
506 break;
507 case EFI_RESET_SHUTDOWN:
508 /* Nothing we can do */
509 break;
510 }
511
512 while (1) { }
513}
514
515void efi_reset_system_init(void)
516{
517 efi_add_runtime_mmio(&rstcr, sizeof(*rstcr));
518}
519
520#endif
521
York Sun928b6812015-12-07 11:08:58 -0800522phys_size_t board_reserve_ram_top(phys_size_t ram_size)
523{
524 phys_size_t ram_top = ram_size;
525
526#ifdef CONFIG_SYS_MEM_TOP_HIDE
527#error CONFIG_SYS_MEM_TOP_HIDE not to be used together with this function
528#endif
York Sun928b6812015-12-07 11:08:58 -0800529
530/* Carve the MC private DRAM block from the end of DRAM */
531#ifdef CONFIG_FSL_MC_ENET
532 ram_top -= mc_get_dram_block_size();
533 ram_top &= ~(CONFIG_SYS_MC_RSV_MEM_ALIGN - 1);
534#endif
535
536 return ram_top;
537}