blob: bd7c54654e88d72dddf729327af9311e9737d3f2 [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";
18 ffa-version = <0x00010000>; /* 31:16 - Major, 15:0 - Minor */
19 uuid = <0xb4b5671e 0x4a904fe1 0xb81ffb13 0xdae1dacb>;
20 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>;
28 messaging-method = <0>; /* Direct messaging only */
29 run-time-model = <1>; /* Run to completion */
30
31 /* Boot protocol */
32 gp-register-num = <0x0>;
33
34 rx_tx-info {
35 compatible = "arm,ffa-manifest-rx_tx-buffer";
36 rx-buffer = <&rxbuffer>;
37 tx-buffer = <&txbuffer>;
38 };
39
40 memory-regions {
41 compatible = "arm,ffa-manifest-memory-regions";
42
43 rxbuffer: rx-buffer {
44 description = "rx-buffer";
45 pages-count = <1>;
46 base-address = <0x00000000 0xfe300000>;
47 attributes = <0x1>; /* read-only */
48 };
49
50 txbuffer: tx-buffer {
51 description = "tx-buffer";
52 pages-count = <1>;
53 base-address = <0x00000000 0xfe301000>;
54 attributes = <0x3>; /* read-write */
55 };
56 };
Usama Arif6ddc37f2021-01-17 18:05:08 +000057
58 device-regions {
59 compatible = "arm,ffa-manifest-device-regions";
60 uart2 {
61 base-address = <0x00000000 0x7FF80000>;
62 pages-count = <1>;
63 attributes = <0x3>; /* read-write */
64 };
65 };
Arunachalam Ganapathy1e51c2f2020-09-22 13:28:29 +010066};