blob: 2baa8b9f59259b709b2e5f1e3b95c7daeaf5c0ae [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>;
25 entrypoint-offset = <0x00001000>;
26 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
32 /* Boot protocol */
33 gp-register-num = <0x0>;
34
35 rx_tx-info {
36 compatible = "arm,ffa-manifest-rx_tx-buffer";
37 rx-buffer = <&rxbuffer>;
38 tx-buffer = <&txbuffer>;
39 };
40
41 memory-regions {
42 compatible = "arm,ffa-manifest-memory-regions";
43
44 rxbuffer: rx-buffer {
45 description = "rx-buffer";
46 pages-count = <1>;
47 base-address = <0x00000000 0xfe302000>;
48 attributes = <0x1>; /* read-only */
49 };
50
51 txbuffer: tx-buffer {
52 description = "tx-buffer";
53 pages-count = <1>;
54 base-address = <0x00000000 0xfe303000>;
55 attributes = <0x3>; /* read-write */
56 };
J-Alves60ea4c32021-07-28 13:57:09 +010057
58 /* Memory to be shared in memory sharing tests. */
59 share-memory {
60 description = "share-memory";
61 pages-count = <1>;
62 base-address =<0x00000000 0xfe501000>;
63 attributes = <0x3>; /* read-write */
64 };
Arunachalam Ganapathy1e51c2f2020-09-22 13:28:29 +010065 };
66};