]> Git Repo - J-u-boot.git/blame - arch/arm/mach-owl/sysmap-owl.c
Revert "Merge patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet""
[J-u-boot.git] / arch / arm / mach-owl / sysmap-owl.c
CommitLineData
97775d26
MS
1// SPDX-License-Identifier: GPL-2.0+
2/*
d996f354 3 * Memory map for Actions Semi Owl series SoCs.
97775d26
MS
4 *
5 * Copyright (C) 2015 Actions Semi Co., Ltd.
6 * Copyright (C) 2018 Manivannan Sadhasivam <[email protected]>
7 */
8
d678a59d 9#include <common.h>
97775d26
MS
10#include <asm/armv8/mmu.h>
11
d996f354 12static struct mm_region owl_mem_map[] = {
97775d26
MS
13 {
14 .virt = 0x0UL, /* DDR */
15 .phys = 0x0UL, /* DDR */
16 .size = 0x80000000UL,
17 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
18 PTE_BLOCK_INNER_SHARE
19 }, {
20 .virt = 0xE0000000UL, /* Peripheral block */
21 .phys = 0xE0000000UL, /* Peripheral block */
22 .size = 0x08000000UL,
23 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
24 PTE_BLOCK_NON_SHARE |
25 PTE_BLOCK_PXN | PTE_BLOCK_UXN
26 }, {
27 /* List terminator */
28 0,
29 }
30};
31
d996f354 32struct mm_region *mem_map = owl_mem_map;
This page took 0.145234 seconds and 4 git commands to generate.