blob: f64a5faf81216a7849b0cedf959a038991b56c43 [file] [log] [blame]
Julian Hall7048d302021-06-03 16:07:28 +01001/*
2 * Copyright (c) 2021, 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 */
18 messaging-method = <0>; /* Direct messaging only */
19
20 memory-regions {
21 compatible = "arm,ffa-manifest-memory-regions";
22
23 /* Without optional base-address */
24 test-memory {
25 description = "test-memory";
26 pages-count = <4>;
27 attributes = <0x7>; /* read-write-execute */
28 };
29 };
30
31 device-regions {
32 compatible = "arm,ffa-manifest-device-regions";
33
34 trng {
35 /* Armv8 A Foundation Platform values */
36 base-address = <0x00000000 0x7fe60000>;
37 pages-count = <1>;
38 attributes = <0x3>; /* read-write */
39 };
40 };
41
42 boot-params {
43 compatible = "arm,ffa-manifest-boot-params";
44
45 event-log {
46 param = "EVENT_LOG"; /* The init parameter name */
47 tag = "arm,event-log"; /* Object identifier */
48 };
49 };
50};