blob: 13d489c9f658b5cb9f94e89273cfdc580e09329f [file] [log] [blame]
Arunachalam Ganapathy1e51c2f2020-09-22 13:28:29 +01001/*
Usama Arif6ddc37f2021-01-17 18:05:08 +00002 * Copyright (c) 2020-2021, 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-2";
Olivier Deprez58757e82021-07-30 10:18:00 +020018 ffa-version = <0x00010001>; /* 31:16 - Major, 15:0 - Minor */
Olivier Deprez224b6462021-09-16 12:18:32 +020019 uuid = <0x092358d1 0xb94723f0 0x64447c82 0xc88f57f5>;
Arunachalam Ganapathy1e51c2f2020-09-22 13:28:29 +010020 id = <2>;
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 = <0xfe100000>;
J-Alves31d87952022-04-04 12:34:16 +010025 entrypoint-offset = <0x00004000>;
Arunachalam Ganapathy1e51c2f2020-09-22 13:28:29 +010026 xlat-granule = <0>; /* 4KiB */
27 boot-order = <0>;
Maksims Svecovsa74430c2021-07-22 14:57:11 +010028 messaging-method = <3>; /* Direct messaging only */
J-Alvesac8d29c2021-11-02 10:32:41 +000029 notification-support; /* Support receipt of notifications. */
Arunachalam Ganapathy1e51c2f2020-09-22 13:28:29 +010030 run-time-model = <1>; /* Run to completion */
31
Arunachalam Ganapathy1e51c2f2020-09-22 13:28:29 +010032 rx_tx-info {
33 compatible = "arm,ffa-manifest-rx_tx-buffer";
34 rx-buffer = <&rxbuffer>;
35 tx-buffer = <&txbuffer>;
36 };
37
38 memory-regions {
39 compatible = "arm,ffa-manifest-memory-regions";
40
41 rxbuffer: rx-buffer {
42 description = "rx-buffer";
43 pages-count = <1>;
44 base-address = <0x00000000 0xfe302000>;
45 attributes = <0x1>; /* read-only */
46 };
47
48 txbuffer: tx-buffer {
49 description = "tx-buffer";
50 pages-count = <1>;
51 base-address = <0x00000000 0xfe303000>;
52 attributes = <0x3>; /* read-write */
53 };
J-Alves60ea4c32021-07-28 13:57:09 +010054
55 /* Memory to be shared in memory sharing tests. */
56 share-memory {
57 description = "share-memory";
58 pages-count = <1>;
59 base-address =<0x00000000 0xfe501000>;
60 attributes = <0x3>; /* read-write */
61 };
Arunachalam Ganapathy1e51c2f2020-09-22 13:28:29 +010062 };
63};