blob: d178521b6ef49e037ca6ce5f759a2d4c73e0df25 [file] [log] [blame]
David Milosevicad83eb12023-11-16 05:11:18 +01001/* SPDX-License-Identifier: GPL-2.0-or-later */
2
3#include <memlayout.h>
4#include <arch/header.ld>
5
6/*
7 * Memory map for QEMU sbsa-ref machine since
8 * [hw/arm/sbsa-ref.c, c6f3cbca32bde9ee94d9949aa63e8a7ef2d7bc5b]
9 */
10SECTIONS
11{
12 REGION(flash, 0x10000000, CONFIG_ROM_SIZE, 8)
13
14 DRAM_START(0x10000000000)
15 BOOTBLOCK(0x10020010000, 64K)
16 STACK(0x10020020000, 54K)
17 CBFS_MCACHE(0x1002002D800, 8K)
18 FMAP_CACHE(0x1002002F800, 2K)
19 TIMESTAMP(0x10020030000, 1K)
20 TTB(0x10020070000, 128K)
21 RAMSTAGE(0x100200b0000, 16M)
22 REGION(fdt_pointer, 0x100210b0000, ARCH_POINTER_ALIGN_SIZE, ARCH_POINTER_ALIGN_SIZE)
23
24 POSTRAM_CBFS_CACHE(0x10021200000, 1M)
25}