blob: a4c71feca1b69f9cee70ef23b579c7271170cde6 [file] [log] [blame]
Arunachalam Ganapathy1e51c2f2020-09-22 13:28:29 +01001/*
Kathleen Capellad0eff2a2023-09-29 18:21:51 -04002 * Copyright (c) 2020-2023, Arm Limited. All rights reserved.
Arunachalam Ganapathy1e51c2f2020-09-22 13:28:29 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 * This file is a Partition Manifest (PM) for a minimal Secure Partition (SP)
7 * that has additional optional properties defined.
8 *
9 */
10
11/dts-v1/;
12
13/ {
14 compatible = "arm,ffa-manifest-1.0";
15
16 /* Properties */
17 description = "cactus-1";
Kathleen Capellad0eff2a2023-09-29 18:21:51 -040018 ffa-version = <0x00010002>; /* 31:16 - Major, 15:0 - Minor */
Olivier Deprez224b6462021-09-16 12:18:32 +020019 uuid = <0x1e67b5b4 0xe14f904a 0x13fb1fb8 0xcbdae1da>;
Arunachalam Ganapathy1e51c2f2020-09-22 13:28:29 +010020 id = <1>;
Usama Arif6ddc37f2021-01-17 18:05:08 +000021 execution-ctx-count = <8>;
Arunachalam Ganapathy1e51c2f2020-09-22 13:28:29 +010022 exception-level = <2>; /* S-EL1 */
23 execution-state = <0>; /* AARCH64 */
24 load-address = <0xfe000000>;
J-Alves31d87952022-04-04 12:34:16 +010025 entrypoint-offset = <0x00002000>;
Arunachalam Ganapathy1e51c2f2020-09-22 13:28:29 +010026 xlat-granule = <0>; /* 4KiB */
27 boot-order = <0>;
J-Alves58cc4da2024-04-05 14:17:35 +010028 messaging-method = <7>; /* Indirect messaging and direct messaging. */
J-Alvesac8d29c2021-11-02 10:32:41 +000029 notification-support; /* Support receipt of notifications. */
Maksims Svecovs2904e5a2021-05-06 18:59:16 +010030 managed-exit; /* Managed exit supported */
Arunachalam Ganapathy1e51c2f2020-09-22 13:28:29 +010031 run-time-model = <1>; /* Run to completion */
32
33 /* Boot protocol */
J-Alves31d87952022-04-04 12:34:16 +010034 gp-register-num = <0>;
35
36 /* Boot Info */
37 boot-info {
38 compatible = "arm,ffa-manifest-boot-info";
39 ffa_manifest;
40 };
Arunachalam Ganapathy1e51c2f2020-09-22 13:28:29 +010041
42 rx_tx-info {
43 compatible = "arm,ffa-manifest-rx_tx-buffer";
44 rx-buffer = <&rxbuffer>;
45 tx-buffer = <&txbuffer>;
46 };
47
48 memory-regions {
49 compatible = "arm,ffa-manifest-memory-regions";
50
51 rxbuffer: rx-buffer {
52 description = "rx-buffer";
53 pages-count = <1>;
54 base-address = <0x00000000 0xfe300000>;
55 attributes = <0x1>; /* read-only */
56 };
57
58 txbuffer: tx-buffer {
59 description = "tx-buffer";
60 pages-count = <1>;
61 base-address = <0x00000000 0xfe301000>;
62 attributes = <0x3>; /* read-write */
63 };
J-Alves60ea4c32021-07-28 13:57:09 +010064
65 /* Memory to be shared in memory sharing tests. */
66 share-memory {
67 description = "share-memory";
68 pages-count = <1>;
69 base-address =<0x00000000 0xfe500000>;
70 attributes = <0x3>; /* read-write */
71 };
Arunachalam Ganapathy1e51c2f2020-09-22 13:28:29 +010072 };
Arunachalam Ganapathy1e51c2f2020-09-22 13:28:29 +010073};