Julian Hall | 7048d30 | 2021-06-03 16:07:28 +0100 | [diff] [blame] | 1 | /* |
Imre Kis | 506deaf | 2023-02-01 15:34:19 +0100 | [diff] [blame] | 2 | * Copyright (c) 2021-2023, Arm Limited and Contributors. All rights reserved. |
Julian Hall | 7048d30 | 2021-06-03 16:07:28 +0100 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | @DTS_TAG@ |
| 8 | |
| 9 | @DTS_NODE@ { |
| 10 | compatible = "arm,ffa-manifest-1.0"; |
Imre Kis | 033d51a | 2024-01-15 17:19:36 +0100 | [diff] [blame] | 11 | ffa-version = <@CFG_FFA_VERSION@>; /* 31:16 - Major, 15:0 - Minor */ |
Julian Hall | 7048d30 | 2021-06-03 16:07:28 +0100 | [diff] [blame] | 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 */ |
Gabor Toth | 6a89a26 | 2024-04-05 11:39:39 +0200 | [diff] [blame] | 18 | boot-order = /bits/ 16 <@EXPORT_SP_BOOT_ORDER@>; |
Imre Kis | 2476f0f | 2022-06-14 13:27:08 +0200 | [diff] [blame] | 19 | messaging-method = <3>; /* Direct messaging only */ |
Imre Kis | 08b3d39 | 2023-04-26 10:16:48 +0200 | [diff] [blame] | 20 | ns-interrupts-action = <2>; /* Non-secure interrupts are signaled */ |
Imre Kis | 506deaf | 2023-02-01 15:34:19 +0100 | [diff] [blame] | 21 | elf-format = <1>; |
Julian Hall | 7048d30 | 2021-06-03 16:07:28 +0100 | [diff] [blame] | 22 | |
| 23 | memory-regions { |
| 24 | compatible = "arm,ffa-manifest-memory-regions"; |
| 25 | |
| 26 | /* Without optional base-address */ |
| 27 | test-memory { |
| 28 | description = "test-memory"; |
| 29 | pages-count = <4>; |
Gabor Toth | 9acd173 | 2024-08-14 16:08:39 +0200 | [diff] [blame^] | 30 | attributes = <0x3>; /* read-write */ |
Julian Hall | 7048d30 | 2021-06-03 16:07:28 +0100 | [diff] [blame] | 31 | }; |
| 32 | }; |
| 33 | |
| 34 | device-regions { |
| 35 | compatible = "arm,ffa-manifest-device-regions"; |
| 36 | |
| 37 | trng { |
| 38 | /* Armv8 A Foundation Platform values */ |
| 39 | base-address = <0x00000000 0x7fe60000>; |
| 40 | pages-count = <1>; |
| 41 | attributes = <0x3>; /* read-write */ |
| 42 | }; |
| 43 | }; |
| 44 | |
| 45 | boot-params { |
| 46 | compatible = "arm,ffa-manifest-boot-params"; |
| 47 | |
Imre Kis | 50cdff9 | 2022-03-22 20:46:29 +0100 | [diff] [blame] | 48 | /* Legacy node to keep compatibility with psa-development SPMC. */ |
Julian Hall | 7048d30 | 2021-06-03 16:07:28 +0100 | [diff] [blame] | 49 | event-log { |
| 50 | param = "EVENT_LOG"; /* The init parameter name */ |
| 51 | tag = "arm,event-log"; /* Object identifier */ |
| 52 | }; |
| 53 | }; |
Imre Kis | 50cdff9 | 2022-03-22 20:46:29 +0100 | [diff] [blame] | 54 | |
| 55 | tpm_event_log { |
| 56 | compatible = "arm,tpm_event_log"; |
| 57 | tpm_event_log_addr = <0x0 0x0>; |
| 58 | tpm_event_log_size = <0x0>; |
| 59 | }; |
Julian Hall | 7048d30 | 2021-06-03 16:07:28 +0100 | [diff] [blame] | 60 | }; |