]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/mach-rmobile/memmap-r8a7796.c
arm64: dts: sun50i: h5: Order nodes in alphabetic for orangepi-prime
[people/ms/u-boot.git] / arch / arm / mach-rmobile / memmap-r8a7796.c
CommitLineData
2dea3b3e
MV
1/*
2 * Copyright (C) 2017 Marek Vasut <marek.vasut+renesas@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <asm/armv8/mmu.h>
9
10static struct mm_region r8a7796_mem_map[] = {
11 {
12 .virt = 0x0UL,
13 .phys = 0x0UL,
14 .size = 0xe0000000UL,
15 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
16 PTE_BLOCK_INNER_SHARE
17 }, {
18 .virt = 0xe0000000UL,
19 .phys = 0xe0000000UL,
20 .size = 0xe0000000UL,
21 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
22 PTE_BLOCK_NON_SHARE |
23 PTE_BLOCK_PXN | PTE_BLOCK_UXN
24 }, {
25 /* List terminator */
26 0,
27 }
28};
29
30struct mm_region *mem_map = r8a7796_mem_map;