blob: a8bd4eee898a859b2cde99e91e4566ccc6b70265 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Masahiro Yamada063eb1e2016-04-21 14:43:18 +09002/*
3 * Copyright (C) 2016 Masahiro Yamada <yamada.masahiro@socionext.com>
Masahiro Yamada063eb1e2016-04-21 14:43:18 +09004 */
5
Masahiro Yamada063eb1e2016-04-21 14:43:18 +09006#include <linux/types.h>
7#include <asm/armv8/mmu.h>
8
Masahiro Yamadaf0f6a802019-07-10 20:07:45 +09009#include "../init.h"
10
Masahiro Yamada063eb1e2016-04-21 14:43:18 +090011static struct mm_region uniphier_mem_map[] = {
12 {
York Sunc7104e52016-06-24 16:46:22 -070013 .virt = 0x00000000,
14 .phys = 0x00000000,
Masahiro Yamada063eb1e2016-04-21 14:43:18 +090015 .size = 0x80000000,
16 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
17 PTE_BLOCK_NON_SHARE |
18 PTE_BLOCK_PXN | PTE_BLOCK_UXN
19 },
20 {
York Sunc7104e52016-06-24 16:46:22 -070021 .virt = 0x80000000,
22 .phys = 0x80000000,
Masahiro Yamada063eb1e2016-04-21 14:43:18 +090023 .size = 0xc0000000,
24 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
25 PTE_BLOCK_INNER_SHARE
26 },
27 { /* sentinel */ }
28};
29
30struct mm_region *mem_map = uniphier_mem_map;
Masahiro Yamadaf0f6a802019-07-10 20:07:45 +090031
32void uniphier_mem_map_init(unsigned long dram_base, unsigned long dram_size)
33{
34 uniphier_mem_map[0].size = dram_base;
35 uniphier_mem_map[1].virt = dram_base;
36 uniphier_mem_map[1].phys = dram_base;
37 uniphier_mem_map[1].size = dram_size;
38}