2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2017-02-23 07:37:51 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2016 Rockchip Electronics Co., Ltd
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <asm/arch/hardware.h>
|
|
|
|
#include <asm/armv8/mmu.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
|
2017-06-23 08:11:11 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2017-02-23 07:37:51 +00:00
|
|
|
static struct mm_region rk3328_mem_map[] = {
|
|
|
|
{
|
|
|
|
.virt = 0x0UL,
|
|
|
|
.phys = 0x0UL,
|
2017-06-13 13:00:12 +00:00
|
|
|
.size = 0xff000000UL,
|
2017-02-23 07:37:51 +00:00
|
|
|
.attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
|
|
|
|
PTE_BLOCK_INNER_SHARE
|
|
|
|
}, {
|
2017-06-13 13:00:12 +00:00
|
|
|
.virt = 0xff000000UL,
|
|
|
|
.phys = 0xff000000UL,
|
|
|
|
.size = 0x1000000UL,
|
2017-02-23 07:37:51 +00:00
|
|
|
.attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
|
|
|
|
PTE_BLOCK_NON_SHARE |
|
|
|
|
PTE_BLOCK_PXN | PTE_BLOCK_UXN
|
|
|
|
}, {
|
|
|
|
/* List terminator */
|
|
|
|
0,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct mm_region *mem_map = rk3328_mem_map;
|
|
|
|
|
2017-06-23 08:11:11 +00:00
|
|
|
int dram_init_banksize(void)
|
|
|
|
{
|
|
|
|
size_t max_size = min((unsigned long)gd->ram_size, gd->ram_top);
|
|
|
|
|
|
|
|
/* Reserve 0x200000 for ATF bl31 */
|
|
|
|
gd->bd->bi_dram[0].start = 0x200000;
|
|
|
|
gd->bd->bi_dram[0].size = max_size - gd->bd->bi_dram[0].start;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-02-23 07:37:51 +00:00
|
|
|
int arch_cpu_init(void)
|
|
|
|
{
|
|
|
|
/* We do some SoC one time setting here. */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|