7653bd2d3c65874208376dfb127b65f839b69dec
[oweals/u-boot.git] / arch / arm / mach-uniphier / arm64 / mem_map.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2016 Masahiro Yamada <yamada.masahiro@socionext.com>
4  */
5
6 #include <common.h>
7 #include <linux/types.h>
8 #include <asm/armv8/mmu.h>
9
10 #include "../init.h"
11
12 static struct mm_region uniphier_mem_map[] = {
13         {
14                 .virt = 0x00000000,
15                 .phys = 0x00000000,
16                 .size = 0x80000000,
17                 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
18                          PTE_BLOCK_NON_SHARE |
19                          PTE_BLOCK_PXN | PTE_BLOCK_UXN
20         },
21         {
22                 .virt = 0x80000000,
23                 .phys = 0x80000000,
24                 .size = 0xc0000000,
25                 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
26                          PTE_BLOCK_INNER_SHARE
27         },
28         { /* sentinel */ }
29 };
30
31 struct mm_region *mem_map = uniphier_mem_map;
32
33 void uniphier_mem_map_init(unsigned long dram_base, unsigned long dram_size)
34 {
35         uniphier_mem_map[0].size = dram_base;
36         uniphier_mem_map[1].virt = dram_base;
37         uniphier_mem_map[1].phys = dram_base;
38         uniphier_mem_map[1].size = dram_size;
39 }