blob: d2685d7ef435d8c902d880c7cac6153e5198afb7 [file] [log] [blame]
Julian Hall7048d302021-06-03 16:07:28 +01001/*
Imre Kis50cdff92022-03-22 20:46:29 +01002 * Copyright (c) 2021-2022, Arm Limited and Contributors. All rights reserved.
Julian Hall7048d302021-06-03 16:07:28 +01003 *
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 */
Julian Hall7048d302021-06-03 16:07:28 +010019
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
Imre Kis50cdff92022-03-22 20:46:29 +010045 /* Legacy node to keep compatibility with psa-development SPMC. */
Julian Hall7048d302021-06-03 16:07:28 +010046 event-log {
47 param = "EVENT_LOG"; /* The init parameter name */
48 tag = "arm,event-log"; /* Object identifier */
49 };
50 };
Imre Kis50cdff92022-03-22 20:46:29 +010051
52 tpm_event_log {
53 compatible = "arm,tpm_event_log";
54 tpm_event_log_addr = <0x0 0x0>;
55 tpm_event_log_size = <0x0>;
56 };
Julian Hall7048d302021-06-03 16:07:28 +010057};