blob: 981f9e91c34b610a6c4b4247f94b30c3ae2d6106 [file] [log] [blame]
Ziad Elhanafy4c46f5e2024-07-15 16:08:20 +01001/*
2 * Copyright (c) 2024, Arm Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7@DTS_TAG@
8
9@DTS_NODE@ {
10 compatible = "arm,ffa-manifest-1.0";
11 ffa-version = <@CFG_FFA_VERSION@>; /* 31:16 - Major, 15:0 - Minor */
12 uuid = <@EXPORT_SP_UUID_DT@>;
13 description = "SE Proxy";
14 execution-ctx-count = <1>;
15 exception-level = <1>; /* S-EL0 */
16 execution-state = <0>; /* AArch64 */
17 xlat-granule = <0>; /* 4KiB */
Gyorgy Szinga0446482025-05-19 23:17:15 +020018 boot-order = <@EXPORT_SP_BOOT_ORDER@>;
Ziad Elhanafy4c46f5e2024-07-15 16:08:20 +010019 messaging-method = <3>; /* Direct messaging only */
20 ns-interrupts-action = <2>; /* Non-secure interrupts are signaled */
21 elf-format = <1>;
22
23 device-regions {
24 compatible = "arm,ffa-manifest-device-regions";
25 mhu-sender {
26 /* Armv8 A Foundation Platform values */
27 base-address = <0x00000000 0x2AB20000>;
28 pages-count = <16>;
29 attributes = <0x3>; /* read-write */
30 };
31 mhu-receiver {
32 /* Armv8 A Foundation Platform values */
33 base-address = <0x00000000 0x2AB30000>;
34 pages-count = <16>;
35 attributes = <0x3>; /* read-write */
36 };
Michael Zhaodcd097f2024-11-14 17:00:35 +000037 rse-carveout {
38 base-address = <@RSE_COMM_CARVEOUT_BASE@>;
39 physical-address = <@RSE_COMM_CARVEOUT_BASE@>;
40 pages-count = <@RSE_COMM_CARVEOUT_PAGE_COUNT@>;
41 attributes = <0x3>; /* read-write */
42 };
Ziad Elhanafy4c46f5e2024-07-15 16:08:20 +010043 };
44};