blob: 4b2795951828517d7262fefd4b616c3e0615c851 [file] [log] [blame]
Arunachalam Ganapathy1e51c2f2020-09-22 13:28:29 +01001/*
2 * Copyright (c) 2020, Arm Limited. All rights reserved.
3 *
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>;
21 execution-ctx-count = <4>;
22 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 };
57};