blob: 44a2dac943fe62e4f0d342c7dca88c4bb08c77ea [file] [log] [blame]
Imre Kis840ded22022-01-13 15:32:01 +01001/*
2 * Copyright (c) 2021-2022, 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 = <0x00010000>; /* 31:16 - Major, 15:0 - Minor */
12 uuid = <@EXPORT_SP_UUID_DT@>;
13 description = "EnvTest";
14 execution-ctx-count = <1>;
15 exception-level = <1>; /* S-EL0 */
16 execution-state = <0>; /* AArch64 */
17 xlat-granule = <0>; /* 4KiB */
Imre Kis2476f0f2022-06-14 13:27:08 +020018 messaging-method = <3>; /* Direct messaging only */
Imre Kis840ded22022-01-13 15:32:01 +010019
20 memory-regions {
21 compatible = "arm,ffa-manifest-memory-regions";
22
23 #include "@EXPORT_DTS_MEM_REGIONS@"
24
25 /* Without optional base-address */
26 test-memory {
27 description = "test-memory";
28 pages-count = <4>;
29 attributes = <0x7>; /* read-write-execute */
30 };
31 };
32
33 device-regions {
34 compatible = "arm,ffa-manifest-device-regions";
35
36 trng {
37 /* Armv8 A Foundation Platform values */
38 base-address = <0x00000000 0x7fe60000>;
39 pages-count = <1>;
40 attributes = <0x3>; /* read-write */
41 };
42 };
43
44 boot-params {
45 compatible = "arm,ffa-manifest-boot-params";
46
47 event-log {
48 param = "EVENT_LOG"; /* The init parameter name */
49 tag = "arm,event-log"; /* Object identifier */
50 };
51 };
52};