]> git.ipfire.org Git - thirdparty/u-boot.git/blame - arch/arm/mach-bcmbca/bcm6858/mmu_table.c
Revert "Merge patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet""
[thirdparty/u-boot.git] / arch / arm / mach-bcmbca / bcm6858 / mmu_table.c
CommitLineData
b0e2b6ab
WZ
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2022 Broadcom Ltd.
4 */
d678a59d 5#include <common.h>
b0e2b6ab
WZ
6#include <asm/armv8/mmu.h>
7#include <linux/sizes.h>
8
9static struct mm_region bcm96858_mem_map[] = {
10 {
11 .virt = 0x00000000UL,
12 .phys = 0x00000000UL,
13 .size = 1UL * SZ_1G,
14 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
15 PTE_BLOCK_INNER_SHARE
16 },
17 {
18 /* SoC peripheral */
19 .virt = 0xff800000UL,
20 .phys = 0xff800000UL,
21 .size = 0x100000,
22 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
23 PTE_BLOCK_NON_SHARE |
24 PTE_BLOCK_PXN | PTE_BLOCK_UXN
25 },
26 {
27 /* List terminator */
28 0,
29 }
30};
31
32struct mm_region *mem_map = bcm96858_mem_map;