blob: 273dbeb02081f1c5005e32b9e09b3eeaaec7cae5 [file] [log] [blame]
Beniamino Galvanibfcef282016-05-08 08:30:16 +02001/*
2 * (C) Copyright 2016 Beniamino Galvani <b.galvani@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <libfdt.h>
9#include <linux/err.h>
10#include <asm/arch/gxbb.h>
Beniamino Galvanic7757d42016-05-08 08:30:17 +020011#include <asm/arch/sm.h>
Beniamino Galvanibfcef282016-05-08 08:30:16 +020012#include <asm/armv8/mmu.h>
13#include <asm/unaligned.h>
14
15DECLARE_GLOBAL_DATA_PTR;
16
17int dram_init(void)
18{
19 const fdt64_t *val;
20 int offset;
21 int len;
22
23 offset = fdt_path_offset(gd->fdt_blob, "/memory");
24 if (offset < 0)
25 return -EINVAL;
26
27 val = fdt_getprop(gd->fdt_blob, offset, "reg", &len);
28 if (len < sizeof(*val) * 2)
29 return -EINVAL;
30
31 /* Use unaligned access since cache is still disabled */
32 gd->ram_size = get_unaligned_be64(&val[1]);
33
34 return 0;
35}
36
Simon Glass76b00ac2017-03-31 08:40:32 -060037int dram_init_banksize(void)
Beniamino Galvanibfcef282016-05-08 08:30:16 +020038{
39 /* Reserve first 16 MiB of RAM for firmware */
40 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE + (16 * 1024 * 1024);
41 gd->bd->bi_dram[0].size = gd->ram_size - (16 * 1024 * 1024);
Simon Glass76b00ac2017-03-31 08:40:32 -060042
43 return 0;
Beniamino Galvanibfcef282016-05-08 08:30:16 +020044}
45
46void reset_cpu(ulong addr)
47{
Alexander Graf51bfb5b2016-08-16 21:08:46 +020048 psci_system_reset();
Beniamino Galvanibfcef282016-05-08 08:30:16 +020049}
50
51static struct mm_region gxbb_mem_map[] = {
52 {
York Suncd4b0c52016-06-24 16:46:22 -070053 .virt = 0x0UL,
54 .phys = 0x0UL,
Beniamino Galvanibfcef282016-05-08 08:30:16 +020055 .size = 0x80000000UL,
56 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
57 PTE_BLOCK_INNER_SHARE
58 }, {
York Suncd4b0c52016-06-24 16:46:22 -070059 .virt = 0x80000000UL,
60 .phys = 0x80000000UL,
Beniamino Galvanibfcef282016-05-08 08:30:16 +020061 .size = 0x80000000UL,
62 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
63 PTE_BLOCK_NON_SHARE |
64 PTE_BLOCK_PXN | PTE_BLOCK_UXN
65 }, {
66 /* List terminator */
67 0,
68 }
69};
70
71struct mm_region *mem_map = gxbb_mem_map;