]> Git Repo - u-boot.git/blame - arch/arm/mach-rockchip/rk3399/rk3399.c
SPDX: Convert all of our single license tags to Linux Kernel style
[u-boot.git] / arch / arm / mach-rockchip / rk3399 / rk3399.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
a381bcf5
KY
2/*
3 * Copyright (c) 2016 Rockchip Electronics Co., Ltd
a381bcf5
KY
4 */
5
6#include <common.h>
7#include <asm/armv8/mmu.h>
27b95d25
KY
8#include <asm/io.h>
9#include <asm/arch/hardware.h>
10
975e4aba
KY
11DECLARE_GLOBAL_DATA_PTR;
12
27b95d25 13#define GRF_EMMCCORE_CON11 0xff77f02c
a381bcf5
KY
14
15static struct mm_region rk3399_mem_map[] = {
16 {
17 .virt = 0x0UL,
18 .phys = 0x0UL,
90c9127e 19 .size = 0xf8000000UL,
a381bcf5
KY
20 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
21 PTE_BLOCK_INNER_SHARE
22 }, {
90c9127e
KY
23 .virt = 0xf8000000UL,
24 .phys = 0xf8000000UL,
25 .size = 0x08000000UL,
a381bcf5
KY
26 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
27 PTE_BLOCK_NON_SHARE |
28 PTE_BLOCK_PXN | PTE_BLOCK_UXN
29 }, {
30 /* List terminator */
31 0,
32 }
33};
34
35struct mm_region *mem_map = rk3399_mem_map;
27b95d25 36
975e4aba
KY
37int dram_init_banksize(void)
38{
39 size_t max_size = min((unsigned long)gd->ram_size, gd->ram_top);
40
41 /* Reserve 0x200000 for ATF bl31 */
42 gd->bd->bi_dram[0].start = 0x200000;
43 gd->bd->bi_dram[0].size = max_size - gd->bd->bi_dram[0].start;
44
45 return 0;
46}
47
27b95d25
KY
48int arch_cpu_init(void)
49{
50 /* We do some SoC one time setting here. */
51
52 /* Emmc clock generator: disable the clock multipilier */
53 rk_clrreg(GRF_EMMCCORE_CON11, 0x0ff);
54
55 return 0;
56}
This page took 0.0870300000000001 seconds and 4 git commands to generate.