]> Git Repo - J-u-boot.git/blame - arch/arm/mach-owl/sysmap-owl.c
Init virtio before loading ENV from EXT4 or FAT
[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
97775d26
MS
9#include <asm/armv8/mmu.h>
10
d996f354 11static struct mm_region owl_mem_map[] = {
97775d26
MS
12 {
13 .virt = 0x0UL, /* DDR */
14 .phys = 0x0UL, /* DDR */
15 .size = 0x80000000UL,
16 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
17 PTE_BLOCK_INNER_SHARE
18 }, {
19 .virt = 0xE0000000UL, /* Peripheral block */
20 .phys = 0xE0000000UL, /* Peripheral block */
21 .size = 0x08000000UL,
22 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
23 PTE_BLOCK_NON_SHARE |
24 PTE_BLOCK_PXN | PTE_BLOCK_UXN
25 }, {
26 /* List terminator */
27 0,
28 }
29};
30
d996f354 31struct mm_region *mem_map = owl_mem_map;
This page took 0.159483 seconds and 4 git commands to generate.