mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 01:17:39 +00:00
4b7f29ff14
Add npcm8xx A2 cpu version check and add 4G RAM support Signed-off-by: Jim Liu <JJLIU0@nuvoton.com>
145 lines
2.6 KiB
C
145 lines
2.6 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (c) 2022 Nuvoton Technology Corp.
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <asm/global_data.h>
|
|
#include <asm/io.h>
|
|
#include <asm/system.h>
|
|
#include <asm/arch/gcr.h>
|
|
#include <asm/armv8/mmu.h>
|
|
|
|
#define SYSCNT_CTRL_BASE_ADDR 0xF07FC000
|
|
#define SC_CNTCR_ENABLE BIT(0)
|
|
#define SC_CNTCR_HDBG BIT(1)
|
|
#define SC_CNTCR_FREQ0 BIT(8)
|
|
#define SC_CNTCR_FREQ1 BIT(9)
|
|
|
|
/* System Counter register map */
|
|
struct sctr_regs {
|
|
u32 cntcr;
|
|
u32 cntsr;
|
|
u32 cntcv1;
|
|
u32 cntcv2;
|
|
u32 resv1[4];
|
|
u32 cntfid0;
|
|
u32 cntfid1;
|
|
u32 cntfid2;
|
|
u32 resv2[1001];
|
|
u32 counterid[1];
|
|
};
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
int print_cpuinfo(void)
|
|
{
|
|
struct npcm_gcr *gcr = (struct npcm_gcr *)NPCM_GCR_BA;
|
|
unsigned int val;
|
|
unsigned long mpidr_val;
|
|
|
|
asm volatile("mrs %0, mpidr_el1" : "=r" (mpidr_val));
|
|
|
|
val = readl(&gcr->mdlr);
|
|
|
|
printf("CPU-%lu: ", mpidr_val & 0x3);
|
|
|
|
switch (val) {
|
|
case ARBEL_NPCM845:
|
|
printf("NPCM845 ");
|
|
break;
|
|
case ARBEL_NPCM830:
|
|
printf("NPCM830 ");
|
|
break;
|
|
case ARBEL_NPCM810:
|
|
printf("NPCM810 ");
|
|
break;
|
|
default:
|
|
printf("NPCM8XX ");
|
|
break;
|
|
}
|
|
|
|
val = readl(&gcr->pdid);
|
|
switch (val) {
|
|
case ARBEL_Z1:
|
|
printf("Z1 @ ");
|
|
break;
|
|
case ARBEL_A1:
|
|
printf("A1 @ ");
|
|
break;
|
|
case ARBEL_A2:
|
|
printf("A2 @ ");
|
|
break;
|
|
default:
|
|
printf("Unknown\n");
|
|
break;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int arch_cpu_init(void)
|
|
{
|
|
if (!IS_ENABLED(CONFIG_SYS_DCACHE_OFF)) {
|
|
/* Enable cache to speed up system running */
|
|
if (get_sctlr() & CR_M)
|
|
return 0;
|
|
|
|
icache_enable();
|
|
__asm_invalidate_dcache_all();
|
|
__asm_invalidate_tlb_all();
|
|
set_sctlr(get_sctlr() | CR_C);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static struct mm_region npcm_mem_map[] = {
|
|
{
|
|
/* DRAM */
|
|
.phys = 0x0UL,
|
|
.virt = 0x0UL,
|
|
.size = 0x80000000UL,
|
|
.attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
|
|
PTE_BLOCK_INNER_SHARE
|
|
},
|
|
{
|
|
.phys = 0x80000000UL,
|
|
.virt = 0x80000000UL,
|
|
.size = 0x80000000UL,
|
|
.attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
|
|
PTE_BLOCK_NON_SHARE |
|
|
PTE_BLOCK_PXN | PTE_BLOCK_UXN
|
|
},
|
|
{
|
|
.phys = 0x100000000UL,
|
|
.virt = 0x100000000UL,
|
|
.size = 0x80000000UL,
|
|
.attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
|
|
PTE_BLOCK_INNER_SHARE
|
|
},
|
|
{
|
|
/* List terminator */
|
|
0,
|
|
}
|
|
};
|
|
|
|
struct mm_region *mem_map = npcm_mem_map;
|
|
|
|
int timer_init(void)
|
|
{
|
|
struct sctr_regs *sctr = (struct sctr_regs *)SYSCNT_CTRL_BASE_ADDR;
|
|
u32 cntfrq_el0;
|
|
|
|
/* Enable system counter */
|
|
__asm__ __volatile__("mrs %0, CNTFRQ_EL0\n\t" : "=r" (cntfrq_el0) : : "memory");
|
|
writel(cntfrq_el0, &sctr->cntfid0);
|
|
clrsetbits_le32(&sctr->cntcr, SC_CNTCR_FREQ0 | SC_CNTCR_FREQ1,
|
|
SC_CNTCR_ENABLE | SC_CNTCR_HDBG);
|
|
|
|
gd->arch.tbl = 0;
|
|
gd->arch.tbu = 0;
|
|
|
|
return 0;
|
|
}
|