2014-06-23 22:15:54 +00:00
|
|
|
/*
|
2015-10-26 11:47:50 +00:00
|
|
|
* Copyright 2014-2015 Freescale Semiconductor, Inc.
|
2014-06-23 22:15:54 +00:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <asm/io.h>
|
2015-08-18 03:22:05 +00:00
|
|
|
#include <asm/errno.h>
|
2014-06-23 22:15:54 +00:00
|
|
|
#include <asm/system.h>
|
|
|
|
#include <asm/armv8/mmu.h>
|
|
|
|
#include <asm/io.h>
|
2015-10-26 11:47:50 +00:00
|
|
|
#include <asm/arch/fsl_serdes.h>
|
|
|
|
#include <asm/arch/soc.h>
|
|
|
|
#include <asm/arch/cpu.h>
|
|
|
|
#include <asm/arch/speed.h>
|
|
|
|
#ifdef CONFIG_MP
|
|
|
|
#include <asm/arch/mp.h>
|
|
|
|
#endif
|
|
|
|
#include <fm_eth.h>
|
2015-03-19 16:20:43 +00:00
|
|
|
#include <fsl_debug_server.h>
|
2015-01-06 21:19:02 +00:00
|
|
|
#include <fsl-mc/fsl_mc.h>
|
2015-03-21 02:28:31 +00:00
|
|
|
#ifdef CONFIG_FSL_ESDHC
|
|
|
|
#include <fsl_esdhc.h>
|
|
|
|
#endif
|
2016-06-28 12:18:15 +00:00
|
|
|
#ifdef CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT
|
|
|
|
#include <asm/armv8/sec_firmware.h>
|
|
|
|
#endif
|
2014-06-23 22:15:54 +00:00
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2016-06-24 23:46:23 +00:00
|
|
|
struct mm_region *mem_map = early_map;
|
2016-03-04 00:09:54 +00:00
|
|
|
|
2015-05-28 09:24:06 +00:00
|
|
|
void cpu_name(char *name)
|
|
|
|
{
|
|
|
|
struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
|
|
|
|
unsigned int i, svr, ver;
|
|
|
|
|
2015-10-26 11:47:50 +00:00
|
|
|
svr = gur_in32(&gur->svr);
|
2015-05-28 09:24:06 +00:00
|
|
|
ver = SVR_SOC_VER(svr);
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(cpu_type_list); i++)
|
|
|
|
if ((cpu_type_list[i].soc_ver & SVR_WO_E) == ver) {
|
|
|
|
strcpy(name, cpu_type_list[i].name);
|
|
|
|
|
|
|
|
if (IS_E_PROCESSOR(svr))
|
|
|
|
strcat(name, "E");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == ARRAY_SIZE(cpu_type_list))
|
|
|
|
strcpy(name, "unknown");
|
|
|
|
}
|
|
|
|
|
2014-06-23 22:15:54 +00:00
|
|
|
#ifndef CONFIG_SYS_DCACHE_OFF
|
2015-08-18 03:22:05 +00:00
|
|
|
/*
|
|
|
|
* To start MMU before DDR is available, we create MMU table in SRAM.
|
|
|
|
* The base address of SRAM is CONFIG_SYS_FSL_OCRAM_BASE. We use three
|
|
|
|
* levels of translation tables here to cover 40-bit address space.
|
|
|
|
* We use 4KB granule size, with 40 bits physical address, T0SZ=24
|
2016-06-24 23:46:23 +00:00
|
|
|
* Address above EARLY_PGTABLE_SIZE (0x5000) is free for other purpose.
|
|
|
|
* Note, the debug print in cache_v8.c is not usable for debugging
|
|
|
|
* these early MMU tables because UART is not yet available.
|
2015-08-18 03:22:05 +00:00
|
|
|
*/
|
|
|
|
static inline void early_mmu_setup(void)
|
|
|
|
{
|
2016-06-24 23:46:23 +00:00
|
|
|
unsigned int el = current_el();
|
2015-08-18 03:22:05 +00:00
|
|
|
|
2016-06-24 23:46:23 +00:00
|
|
|
/* global data is already setup, no allocation yet */
|
|
|
|
gd->arch.tlb_addr = CONFIG_SYS_FSL_OCRAM_BASE;
|
|
|
|
gd->arch.tlb_fillptr = gd->arch.tlb_addr;
|
|
|
|
gd->arch.tlb_size = EARLY_PGTABLE_SIZE;
|
2015-08-18 03:22:05 +00:00
|
|
|
|
2016-06-24 23:46:23 +00:00
|
|
|
/* Create early page tables */
|
|
|
|
setup_pgtables();
|
2015-10-26 11:47:50 +00:00
|
|
|
|
2016-06-24 23:46:23 +00:00
|
|
|
/* point TTBR to the new table */
|
|
|
|
set_ttbr_tcr_mair(el, gd->arch.tlb_addr,
|
|
|
|
get_tcr(el, NULL, NULL) &
|
|
|
|
~(TCR_ORGN_MASK | TCR_IRGN_MASK),
|
2015-10-26 11:47:50 +00:00
|
|
|
MEMORY_ATTRIBUTES);
|
2015-12-04 19:57:08 +00:00
|
|
|
|
2016-06-24 23:46:23 +00:00
|
|
|
set_sctlr(get_sctlr() | CR_M);
|
2015-12-04 19:57:08 +00:00
|
|
|
}
|
|
|
|
|
2014-06-23 22:15:54 +00:00
|
|
|
/*
|
2015-08-18 03:22:05 +00:00
|
|
|
* The final tables look similar to early tables, but different in detail.
|
|
|
|
* These tables are in DRAM. Sub tables are added to enable cache for
|
|
|
|
* QBMan and OCRAM.
|
|
|
|
*
|
2016-06-24 23:46:18 +00:00
|
|
|
* Put the MMU table in secure memory if gd->arch.secure_ram is valid.
|
|
|
|
* OCRAM will be not used for this purpose so gd->arch.secure_ram can't be 0.
|
2014-06-23 22:15:54 +00:00
|
|
|
*/
|
|
|
|
static inline void final_mmu_setup(void)
|
|
|
|
{
|
2016-06-24 23:46:23 +00:00
|
|
|
u64 tlb_addr_save = gd->arch.tlb_addr;
|
2015-12-04 19:57:08 +00:00
|
|
|
unsigned int el = current_el();
|
|
|
|
#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
|
2016-06-24 23:46:23 +00:00
|
|
|
int index;
|
2015-12-04 19:57:08 +00:00
|
|
|
#endif
|
2014-06-23 22:15:54 +00:00
|
|
|
|
2016-06-24 23:46:23 +00:00
|
|
|
mem_map = final_map;
|
2014-06-23 22:15:54 +00:00
|
|
|
|
2015-12-04 19:57:08 +00:00
|
|
|
#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
|
2016-06-24 23:46:23 +00:00
|
|
|
if (gd->arch.secure_ram & MEM_RESERVE_SECURE_MAINTAINED) {
|
|
|
|
if (el == 3) {
|
|
|
|
/*
|
|
|
|
* Only use gd->arch.secure_ram if the address is
|
|
|
|
* recalculated. Align to 4KB for MMU table.
|
|
|
|
*/
|
|
|
|
/* put page tables in secure ram */
|
|
|
|
index = ARRAY_SIZE(final_map) - 2;
|
|
|
|
gd->arch.tlb_addr = gd->arch.secure_ram & ~0xfff;
|
|
|
|
final_map[index].virt = gd->arch.secure_ram & ~0x3;
|
|
|
|
final_map[index].phys = final_map[index].virt;
|
|
|
|
final_map[index].size = CONFIG_SYS_MEM_RESERVE_SECURE;
|
|
|
|
final_map[index].attrs = PTE_BLOCK_OUTER_SHARE;
|
2016-06-24 23:46:18 +00:00
|
|
|
gd->arch.secure_ram |= MEM_RESERVE_SECURE_SECURED;
|
2016-06-24 23:46:23 +00:00
|
|
|
tlb_addr_save = gd->arch.tlb_addr;
|
2015-12-04 19:57:08 +00:00
|
|
|
} else {
|
2016-06-24 23:46:23 +00:00
|
|
|
/* Use allocated (board_f.c) memory for TLB */
|
|
|
|
tlb_addr_save = gd->arch.tlb_allocated;
|
|
|
|
gd->arch.tlb_addr = tlb_addr_save;
|
2015-12-04 19:57:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2014-06-23 22:15:54 +00:00
|
|
|
|
2016-06-24 23:46:23 +00:00
|
|
|
/* Reset the fill ptr */
|
|
|
|
gd->arch.tlb_fillptr = tlb_addr_save;
|
|
|
|
|
|
|
|
/* Create normal system page tables */
|
|
|
|
setup_pgtables();
|
|
|
|
|
|
|
|
/* Create emergency page tables */
|
|
|
|
gd->arch.tlb_addr = gd->arch.tlb_fillptr;
|
|
|
|
gd->arch.tlb_emerg = gd->arch.tlb_addr;
|
|
|
|
setup_pgtables();
|
|
|
|
gd->arch.tlb_addr = tlb_addr_save;
|
|
|
|
|
2014-06-23 22:15:54 +00:00
|
|
|
/* flush new MMU table */
|
2016-06-24 23:46:23 +00:00
|
|
|
flush_dcache_range(gd->arch.tlb_addr,
|
|
|
|
gd->arch.tlb_addr + gd->arch.tlb_size);
|
2014-06-23 22:15:54 +00:00
|
|
|
|
|
|
|
/* point TTBR to the new table */
|
2016-06-24 23:46:23 +00:00
|
|
|
set_ttbr_tcr_mair(el, gd->arch.tlb_addr, get_tcr(el, NULL, NULL),
|
2015-06-29 07:50:42 +00:00
|
|
|
MEMORY_ATTRIBUTES);
|
2014-06-23 22:15:54 +00:00
|
|
|
/*
|
2016-07-22 17:52:23 +00:00
|
|
|
* EL3 MMU is already enabled, just need to invalidate TLB to load the
|
2014-06-23 22:15:54 +00:00
|
|
|
* new table. The new table is compatible with the current table, if
|
|
|
|
* MMU somehow walks through the new table before invalidation TLB,
|
|
|
|
* it still works. So we don't need to turn off MMU here.
|
2016-07-22 17:52:23 +00:00
|
|
|
* When EL2 MMU table is created by calling this function, MMU needs
|
|
|
|
* to be enabled.
|
2014-06-23 22:15:54 +00:00
|
|
|
*/
|
2016-07-22 17:52:23 +00:00
|
|
|
set_sctlr(get_sctlr() | CR_M);
|
2014-06-23 22:15:54 +00:00
|
|
|
}
|
|
|
|
|
2016-03-21 19:26:12 +00:00
|
|
|
u64 get_page_table_size(void)
|
|
|
|
{
|
|
|
|
return 0x10000;
|
|
|
|
}
|
|
|
|
|
2014-06-23 22:15:54 +00:00
|
|
|
int arch_cpu_init(void)
|
|
|
|
{
|
|
|
|
icache_enable();
|
|
|
|
__asm_invalidate_dcache_all();
|
|
|
|
__asm_invalidate_tlb_all();
|
|
|
|
early_mmu_setup();
|
|
|
|
set_sctlr(get_sctlr() | CR_C);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-06-28 12:18:12 +00:00
|
|
|
void mmu_setup(void)
|
|
|
|
{
|
|
|
|
final_mmu_setup();
|
|
|
|
}
|
|
|
|
|
2014-06-23 22:15:54 +00:00
|
|
|
/*
|
2016-06-28 12:18:12 +00:00
|
|
|
* This function is called from common/board_r.c.
|
|
|
|
* It recreates MMU table in main memory.
|
2014-06-23 22:15:54 +00:00
|
|
|
*/
|
|
|
|
void enable_caches(void)
|
|
|
|
{
|
2016-06-28 12:18:12 +00:00
|
|
|
mmu_setup();
|
2014-06-23 22:15:54 +00:00
|
|
|
__asm_invalidate_tlb_all();
|
2016-06-28 12:18:12 +00:00
|
|
|
icache_enable();
|
|
|
|
dcache_enable();
|
2014-06-23 22:15:54 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline u32 initiator_type(u32 cluster, int init_id)
|
|
|
|
{
|
|
|
|
struct ccsr_gur *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
|
|
|
|
u32 idx = (cluster >> (init_id * 8)) & TP_CLUSTER_INIT_MASK;
|
2015-10-26 11:47:50 +00:00
|
|
|
u32 type = 0;
|
2014-06-23 22:15:54 +00:00
|
|
|
|
2015-10-26 11:47:50 +00:00
|
|
|
type = gur_in32(&gur->tp_ityp[idx]);
|
2014-06-23 22:15:54 +00:00
|
|
|
if (type & TP_ITYP_AV)
|
|
|
|
return type;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 cpu_mask(void)
|
|
|
|
{
|
|
|
|
struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
|
|
|
|
int i = 0, count = 0;
|
|
|
|
u32 cluster, type, mask = 0;
|
|
|
|
|
|
|
|
do {
|
|
|
|
int j;
|
2015-10-26 11:47:50 +00:00
|
|
|
|
|
|
|
cluster = gur_in32(&gur->tp_cluster[i].lower);
|
2014-06-23 22:15:54 +00:00
|
|
|
for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
|
|
|
|
type = initiator_type(cluster, j);
|
|
|
|
if (type) {
|
|
|
|
if (TP_ITYP_TYPE(type) == TP_ITYP_TYPE_ARM)
|
|
|
|
mask |= 1 << count;
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
i++;
|
2015-10-26 11:47:50 +00:00
|
|
|
} while ((cluster & TP_CLUSTER_EOC) == 0x0);
|
2014-06-23 22:15:54 +00:00
|
|
|
|
|
|
|
return mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the number of cores on this SOC.
|
|
|
|
*/
|
|
|
|
int cpu_numcores(void)
|
|
|
|
{
|
|
|
|
return hweight32(cpu_mask());
|
|
|
|
}
|
|
|
|
|
|
|
|
int fsl_qoriq_core_to_cluster(unsigned int core)
|
|
|
|
{
|
|
|
|
struct ccsr_gur __iomem *gur =
|
|
|
|
(void __iomem *)(CONFIG_SYS_FSL_GUTS_ADDR);
|
|
|
|
int i = 0, count = 0;
|
|
|
|
u32 cluster;
|
|
|
|
|
|
|
|
do {
|
|
|
|
int j;
|
2015-10-26 11:47:50 +00:00
|
|
|
|
|
|
|
cluster = gur_in32(&gur->tp_cluster[i].lower);
|
2014-06-23 22:15:54 +00:00
|
|
|
for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
|
|
|
|
if (initiator_type(cluster, j)) {
|
|
|
|
if (count == core)
|
|
|
|
return i;
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
i++;
|
2015-10-26 11:47:50 +00:00
|
|
|
} while ((cluster & TP_CLUSTER_EOC) == 0x0);
|
2014-06-23 22:15:54 +00:00
|
|
|
|
|
|
|
return -1; /* cannot identify the cluster */
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 fsl_qoriq_core_to_type(unsigned int core)
|
|
|
|
{
|
|
|
|
struct ccsr_gur __iomem *gur =
|
|
|
|
(void __iomem *)(CONFIG_SYS_FSL_GUTS_ADDR);
|
|
|
|
int i = 0, count = 0;
|
|
|
|
u32 cluster, type;
|
|
|
|
|
|
|
|
do {
|
|
|
|
int j;
|
2015-10-26 11:47:50 +00:00
|
|
|
|
|
|
|
cluster = gur_in32(&gur->tp_cluster[i].lower);
|
2014-06-23 22:15:54 +00:00
|
|
|
for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
|
|
|
|
type = initiator_type(cluster, j);
|
|
|
|
if (type) {
|
|
|
|
if (count == core)
|
|
|
|
return type;
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
i++;
|
2015-10-26 11:47:50 +00:00
|
|
|
} while ((cluster & TP_CLUSTER_EOC) == 0x0);
|
2014-06-23 22:15:54 +00:00
|
|
|
|
|
|
|
return -1; /* cannot identify the cluster */
|
|
|
|
}
|
|
|
|
|
2016-06-13 04:28:32 +00:00
|
|
|
uint get_svr(void)
|
|
|
|
{
|
|
|
|
struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
|
|
|
|
|
|
|
|
return gur_in32(&gur->svr);
|
|
|
|
}
|
|
|
|
|
2014-06-23 22:15:54 +00:00
|
|
|
#ifdef CONFIG_DISPLAY_CPUINFO
|
|
|
|
int print_cpuinfo(void)
|
|
|
|
{
|
2015-03-21 02:28:20 +00:00
|
|
|
struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
|
2014-06-23 22:15:54 +00:00
|
|
|
struct sys_info sysinfo;
|
|
|
|
char buf[32];
|
|
|
|
unsigned int i, core;
|
2016-04-04 18:41:26 +00:00
|
|
|
u32 type, rcw, svr = gur_in32(&gur->svr);
|
2014-06-23 22:15:54 +00:00
|
|
|
|
2015-05-28 09:24:06 +00:00
|
|
|
puts("SoC: ");
|
|
|
|
|
|
|
|
cpu_name(buf);
|
2016-04-04 18:41:26 +00:00
|
|
|
printf(" %s (0x%x)\n", buf, svr);
|
2015-05-28 09:24:06 +00:00
|
|
|
memset((u8 *)buf, 0x00, ARRAY_SIZE(buf));
|
2014-06-23 22:15:54 +00:00
|
|
|
get_sys_info(&sysinfo);
|
|
|
|
puts("Clock Configuration:");
|
|
|
|
for_each_cpu(i, core, cpu_numcores(), cpu_mask()) {
|
|
|
|
if (!(i % 3))
|
|
|
|
puts("\n ");
|
|
|
|
type = TP_ITYP_VER(fsl_qoriq_core_to_type(core));
|
|
|
|
printf("CPU%d(%s):%-4s MHz ", core,
|
|
|
|
type == TY_ITYP_VER_A7 ? "A7 " :
|
|
|
|
(type == TY_ITYP_VER_A53 ? "A53" :
|
2016-07-05 08:01:52 +00:00
|
|
|
(type == TY_ITYP_VER_A57 ? "A57" :
|
|
|
|
(type == TY_ITYP_VER_A72 ? "A72" : " "))),
|
2014-06-23 22:15:54 +00:00
|
|
|
strmhz(buf, sysinfo.freq_processor[core]));
|
|
|
|
}
|
|
|
|
printf("\n Bus: %-4s MHz ",
|
|
|
|
strmhz(buf, sysinfo.freq_systembus));
|
2015-05-28 09:24:05 +00:00
|
|
|
printf("DDR: %-4s MT/s", strmhz(buf, sysinfo.freq_ddrbus));
|
2015-10-26 11:47:54 +00:00
|
|
|
#ifdef CONFIG_SYS_DPAA_FMAN
|
|
|
|
printf(" FMAN: %-4s MHz", strmhz(buf, sysinfo.freq_fman[0]));
|
|
|
|
#endif
|
2015-11-09 11:12:07 +00:00
|
|
|
#ifdef CONFIG_SYS_FSL_HAS_DP_DDR
|
2016-04-04 18:41:26 +00:00
|
|
|
if (soc_has_dp_ddr()) {
|
|
|
|
printf(" DP-DDR: %-4s MT/s",
|
|
|
|
strmhz(buf, sysinfo.freq_ddrbus2));
|
|
|
|
}
|
2015-10-26 11:47:50 +00:00
|
|
|
#endif
|
2014-06-23 22:15:54 +00:00
|
|
|
puts("\n");
|
|
|
|
|
2015-10-26 11:47:50 +00:00
|
|
|
/*
|
|
|
|
* Display the RCW, so that no one gets confused as to what RCW
|
2015-03-21 02:28:20 +00:00
|
|
|
* we're actually using for this boot.
|
|
|
|
*/
|
|
|
|
puts("Reset Configuration Word (RCW):");
|
|
|
|
for (i = 0; i < ARRAY_SIZE(gur->rcwsr); i++) {
|
2015-10-26 11:47:50 +00:00
|
|
|
rcw = gur_in32(&gur->rcwsr[i]);
|
2015-03-21 02:28:20 +00:00
|
|
|
if ((i % 4) == 0)
|
2015-10-26 11:47:50 +00:00
|
|
|
printf("\n %08x:", i * 4);
|
2015-03-21 02:28:20 +00:00
|
|
|
printf(" %08x", rcw);
|
|
|
|
}
|
|
|
|
puts("\n");
|
|
|
|
|
2014-06-23 22:15:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2014-06-23 22:15:55 +00:00
|
|
|
|
2015-03-21 02:28:31 +00:00
|
|
|
#ifdef CONFIG_FSL_ESDHC
|
|
|
|
int cpu_mmc_init(bd_t *bis)
|
|
|
|
{
|
|
|
|
return fsl_esdhc_mmc_init(bis);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-06-23 22:15:55 +00:00
|
|
|
int cpu_eth_init(bd_t *bis)
|
|
|
|
{
|
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
#ifdef CONFIG_FSL_MC_ENET
|
2015-03-19 16:20:45 +00:00
|
|
|
error = fsl_mc_ldpaa_init(bis);
|
2015-10-26 11:47:54 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_FMAN_ENET
|
|
|
|
fm_standard_init(bis);
|
2014-06-23 22:15:55 +00:00
|
|
|
#endif
|
|
|
|
return error;
|
|
|
|
}
|
2014-09-08 19:20:00 +00:00
|
|
|
|
|
|
|
int arch_early_init_r(void)
|
|
|
|
{
|
2015-10-26 11:47:50 +00:00
|
|
|
#ifdef CONFIG_MP
|
|
|
|
int rv = 1;
|
2016-06-28 12:18:15 +00:00
|
|
|
u32 psci_ver = 0xffffffff;
|
2015-11-05 06:30:14 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_SYS_FSL_ERRATUM_A009635
|
|
|
|
erratum_a009635();
|
|
|
|
#endif
|
2014-09-08 19:20:00 +00:00
|
|
|
|
2015-11-05 06:30:14 +00:00
|
|
|
#ifdef CONFIG_MP
|
2016-06-28 12:18:15 +00:00
|
|
|
#if defined(CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT) && defined(CONFIG_ARMV8_PSCI)
|
|
|
|
/* Check the psci version to determine if the psci is supported */
|
|
|
|
psci_ver = sec_firmware_support_psci_version();
|
|
|
|
#endif
|
|
|
|
if (psci_ver == 0xffffffff) {
|
|
|
|
rv = fsl_layerscape_wake_seconday_cores();
|
|
|
|
if (rv)
|
|
|
|
printf("Did not wake secondary cores\n");
|
|
|
|
}
|
2015-10-26 11:47:50 +00:00
|
|
|
#endif
|
2014-09-08 19:20:00 +00:00
|
|
|
|
2015-03-21 02:28:16 +00:00
|
|
|
#ifdef CONFIG_SYS_HAS_SERDES
|
|
|
|
fsl_serdes_init();
|
2015-10-26 11:47:54 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_FMAN_ENET
|
|
|
|
fman_enet_init();
|
2015-03-21 02:28:16 +00:00
|
|
|
#endif
|
2014-09-08 19:20:00 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2015-03-21 02:28:08 +00:00
|
|
|
|
|
|
|
int timer_init(void)
|
|
|
|
{
|
|
|
|
u32 __iomem *cntcr = (u32 *)CONFIG_SYS_FSL_TIMER_ADDR;
|
2015-10-26 11:47:50 +00:00
|
|
|
#ifdef CONFIG_FSL_LSCH3
|
2015-03-21 02:28:08 +00:00
|
|
|
u32 __iomem *cltbenr = (u32 *)CONFIG_SYS_FSL_PMU_CLTBENR;
|
2015-10-26 11:47:50 +00:00
|
|
|
#endif
|
2016-06-08 02:31:42 +00:00
|
|
|
#ifdef CONFIG_LS2080A
|
|
|
|
u32 __iomem *pctbenr = (u32 *)FSL_PMU_PCTBENR_OFFSET;
|
|
|
|
#endif
|
2015-03-21 02:28:08 +00:00
|
|
|
#ifdef COUNTER_FREQUENCY_REAL
|
|
|
|
unsigned long cntfrq = COUNTER_FREQUENCY_REAL;
|
|
|
|
|
|
|
|
/* Update with accurate clock frequency */
|
|
|
|
asm volatile("msr cntfrq_el0, %0" : : "r" (cntfrq) : "memory");
|
|
|
|
#endif
|
|
|
|
|
2015-10-26 11:47:50 +00:00
|
|
|
#ifdef CONFIG_FSL_LSCH3
|
2015-03-21 02:28:08 +00:00
|
|
|
/* Enable timebase for all clusters.
|
|
|
|
* It is safe to do so even some clusters are not enabled.
|
|
|
|
*/
|
|
|
|
out_le32(cltbenr, 0xf);
|
2015-10-26 11:47:50 +00:00
|
|
|
#endif
|
2015-03-21 02:28:08 +00:00
|
|
|
|
2016-06-08 02:31:42 +00:00
|
|
|
#ifdef CONFIG_LS2080A
|
|
|
|
/*
|
|
|
|
* In certain Layerscape SoCs, the clock for each core's
|
|
|
|
* has an enable bit in the PMU Physical Core Time Base Enable
|
|
|
|
* Register (PCTBENR), which allows the watchdog to operate.
|
|
|
|
*/
|
|
|
|
setbits_le32(pctbenr, 0xff);
|
|
|
|
#endif
|
|
|
|
|
2015-03-21 02:28:08 +00:00
|
|
|
/* Enable clock for timer
|
|
|
|
* This is a global setting.
|
|
|
|
*/
|
|
|
|
out_le32(cntcr, 0x1);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2015-03-21 02:28:09 +00:00
|
|
|
|
|
|
|
void reset_cpu(ulong addr)
|
|
|
|
{
|
|
|
|
u32 __iomem *rstcr = (u32 *)CONFIG_SYS_FSL_RST_ADDR;
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
/* Raise RESET_REQ_B */
|
2015-10-26 11:47:50 +00:00
|
|
|
val = scfg_in32(rstcr);
|
2015-03-21 02:28:09 +00:00
|
|
|
val |= 0x02;
|
2015-10-26 11:47:50 +00:00
|
|
|
scfg_out32(rstcr, val);
|
2015-03-21 02:28:09 +00:00
|
|
|
}
|
2015-12-07 19:08:58 +00:00
|
|
|
|
|
|
|
phys_size_t board_reserve_ram_top(phys_size_t ram_size)
|
|
|
|
{
|
|
|
|
phys_size_t ram_top = ram_size;
|
|
|
|
|
|
|
|
#ifdef CONFIG_SYS_MEM_TOP_HIDE
|
|
|
|
#error CONFIG_SYS_MEM_TOP_HIDE not to be used together with this function
|
|
|
|
#endif
|
|
|
|
/* Carve the Debug Server private DRAM block from the end of DRAM */
|
|
|
|
#ifdef CONFIG_FSL_DEBUG_SERVER
|
|
|
|
ram_top -= debug_server_get_dram_block_size();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Carve the MC private DRAM block from the end of DRAM */
|
|
|
|
#ifdef CONFIG_FSL_MC_ENET
|
|
|
|
ram_top -= mc_get_dram_block_size();
|
|
|
|
ram_top &= ~(CONFIG_SYS_MC_RSV_MEM_ALIGN - 1);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return ram_top;
|
|
|
|
}
|