]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/mach-meson/board.c
meson-gx: reserved memory regions
[people/ms/u-boot.git] / arch / arm / mach-meson / board.c
CommitLineData
bfcef28a
BG
1/*
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>
c7757d46 11#include <asm/arch/sm.h>
bfcef28a
BG
12#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
76b00aca 37int dram_init_banksize(void)
bfcef28a
BG
38{
39 /* Reserve first 16 MiB of RAM for firmware */
e42f096f 40 gd->bd->bi_dram[0].start = 0x1000000;
41 gd->bd->bi_dram[0].size = 0xf000000;
42 /* Reserve 2 MiB for ARM Trusted Firmware (BL31) */
43 gd->bd->bi_dram[1].start = 0x10000000;
44 gd->bd->bi_dram[1].size = gd->ram_size - 0x10200000;
76b00aca 45 return 0;
bfcef28a
BG
46}
47
48void reset_cpu(ulong addr)
49{
51bfb5b6 50 psci_system_reset();
bfcef28a
BG
51}
52
53static struct mm_region gxbb_mem_map[] = {
54 {
cd4b0c5f
YS
55 .virt = 0x0UL,
56 .phys = 0x0UL,
bfcef28a
BG
57 .size = 0x80000000UL,
58 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
59 PTE_BLOCK_INNER_SHARE
60 }, {
cd4b0c5f
YS
61 .virt = 0x80000000UL,
62 .phys = 0x80000000UL,
bfcef28a
BG
63 .size = 0x80000000UL,
64 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
65 PTE_BLOCK_NON_SHARE |
66 PTE_BLOCK_PXN | PTE_BLOCK_UXN
67 }, {
68 /* List terminator */
69 0,
70 }
71};
72
73struct mm_region *mem_map = gxbb_mem_map;