blob: b7409031a0344aa93cbe4423281ceb8daa80b586 [file] [log] [blame]
Sumit Garg89a8ec92022-07-12 12:42:12 +05301// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Qualcomm QCS404 memory map
4 *
5 * (C) Copyright 2022 Sumit Garg <sumit.garg@linaro.org>
6 */
7
8#include <common.h>
9#include <asm/armv8/mmu.h>
10
11static struct mm_region qcs404_mem_map[] = {
12 {
13 .virt = 0x0UL, /* Peripheral block */
14 .phys = 0x0UL, /* Peripheral block */
15 .size = 0x8000000UL,
16 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
17 PTE_BLOCK_NON_SHARE |
18 PTE_BLOCK_PXN | PTE_BLOCK_UXN
19 }, {
20 .virt = 0x80000000UL, /* DDR */
21 .phys = 0x80000000UL, /* DDR */
22 .size = 0x40000000UL,
23 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
24 PTE_BLOCK_INNER_SHARE
25 }, {
26 /* List terminator */
27 0,
28 }
29};
30
31struct mm_region *mem_map = qcs404_mem_map;