blob: 64daa3d1c9d97f2eaa46adc28b1b729529b4245a [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-1";
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 = <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>;
25 entrypoint-offset = <0x00001000>;
26 xlat-granule = <0>; /* 4KiB */
27 boot-order = <0>;
Maksims Svecovs2904e5a2021-05-06 18:59:16 +010028 messaging-method = <3>; /* Direct messaging only */
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 */
34 gp-register-num = <0x0>;
35
36 rx_tx-info {
37 compatible = "arm,ffa-manifest-rx_tx-buffer";
38 rx-buffer = <&rxbuffer>;
39 tx-buffer = <&txbuffer>;
40 };
41
42 memory-regions {
43 compatible = "arm,ffa-manifest-memory-regions";
44
45 rxbuffer: rx-buffer {
46 description = "rx-buffer";
47 pages-count = <1>;
48 base-address = <0x00000000 0xfe300000>;
49 attributes = <0x1>; /* read-only */
50 };
51
52 txbuffer: tx-buffer {
53 description = "tx-buffer";
54 pages-count = <1>;
55 base-address = <0x00000000 0xfe301000>;
56 attributes = <0x3>; /* read-write */
57 };
J-Alves60ea4c32021-07-28 13:57:09 +010058
59 /* Memory to be shared in memory sharing tests. */
60 share-memory {
61 description = "share-memory";
62 pages-count = <1>;
63 base-address =<0x00000000 0xfe500000>;
64 attributes = <0x3>; /* read-write */
65 };
Arunachalam Ganapathy1e51c2f2020-09-22 13:28:29 +010066 };
Usama Arif6ddc37f2021-01-17 18:05:08 +000067
68 device-regions {
69 compatible = "arm,ffa-manifest-device-regions";
70 uart2 {
71 base-address = <0x00000000 0x7FF80000>;
72 pages-count = <1>;
73 attributes = <0x3>; /* read-write */
74 };
75 };
Arunachalam Ganapathy1e51c2f2020-09-22 13:28:29 +010076};