1/*
2 * Copyright (c) 2021 Arm Limited (or its affiliates). All rights reserved.
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6/dts-v1/;
7
8#include <arm64/fvp/fvp-aemv8r.dtsi>
9
10/ {
11	model = "FVP BaseR AEMv8R";
12
13	chosen {
14		/*
15		 * The SRAM node is actually located in the
16		 * DRAM region of the FVP BaseR AEMv8R.
17		 */
18		zephyr,sram = &dram0;
19		zephyr,flash = &flash0;
20		zephyr,console = &uart0;
21		zephyr,shell-uart = &uart0;
22	};
23
24	psci {
25		compatible = "arm,psci-0.2";
26		method = "hvc";
27	};
28
29	soc {
30		flash0: flash@88000000 {
31			compatible = "soc-nv-flash";
32			reg = <0x88000000 DT_SIZE_M(64)>;
33		};
34
35		dram0: memory@0 {
36			compatible = "mmio-dram";
37			reg = <0x0 DT_SIZE_M(128)>;
38		};
39	};
40};
41
42&uart0 {
43	status = "okay";
44	current-speed = <115200>;
45};
46