Arunachalam Ganapathy | 1e51c2f | 2020-09-22 13:28:29 +0100 | [diff] [blame] | 1 | /* |
Kathleen Capella | d0eff2a | 2023-09-29 18:21:51 -0400 | [diff] [blame] | 2 | * Copyright (c) 2020-2023, Arm Limited. All rights reserved. |
Arunachalam Ganapathy | 1e51c2f | 2020-09-22 13:28:29 +0100 | [diff] [blame] | 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"; |
Kathleen Capella | d0eff2a | 2023-09-29 18:21:51 -0400 | [diff] [blame] | 18 | ffa-version = <0x00010002>; /* 31:16 - Major, 15:0 - Minor */ |
Olivier Deprez | 224b646 | 2021-09-16 12:18:32 +0200 | [diff] [blame] | 19 | uuid = <0x1e67b5b4 0xe14f904a 0x13fb1fb8 0xcbdae1da>; |
Arunachalam Ganapathy | 1e51c2f | 2020-09-22 13:28:29 +0100 | [diff] [blame] | 20 | id = <1>; |
Usama Arif | 6ddc37f | 2021-01-17 18:05:08 +0000 | [diff] [blame] | 21 | execution-ctx-count = <8>; |
Arunachalam Ganapathy | 1e51c2f | 2020-09-22 13:28:29 +0100 | [diff] [blame] | 22 | exception-level = <2>; /* S-EL1 */ |
| 23 | execution-state = <0>; /* AARCH64 */ |
| 24 | load-address = <0xfe000000>; |
J-Alves | 31d8795 | 2022-04-04 12:34:16 +0100 | [diff] [blame] | 25 | entrypoint-offset = <0x00002000>; |
Arunachalam Ganapathy | 1e51c2f | 2020-09-22 13:28:29 +0100 | [diff] [blame] | 26 | xlat-granule = <0>; /* 4KiB */ |
| 27 | boot-order = <0>; |
J-Alves | 58cc4da | 2024-04-05 14:17:35 +0100 | [diff] [blame] | 28 | messaging-method = <7>; /* Indirect messaging and direct messaging. */ |
J-Alves | ac8d29c | 2021-11-02 10:32:41 +0000 | [diff] [blame] | 29 | notification-support; /* Support receipt of notifications. */ |
Maksims Svecovs | 2904e5a | 2021-05-06 18:59:16 +0100 | [diff] [blame] | 30 | managed-exit; /* Managed exit supported */ |
Arunachalam Ganapathy | 1e51c2f | 2020-09-22 13:28:29 +0100 | [diff] [blame] | 31 | run-time-model = <1>; /* Run to completion */ |
| 32 | |
| 33 | /* Boot protocol */ |
J-Alves | 31d8795 | 2022-04-04 12:34:16 +0100 | [diff] [blame] | 34 | gp-register-num = <0>; |
| 35 | |
| 36 | /* Boot Info */ |
| 37 | boot-info { |
| 38 | compatible = "arm,ffa-manifest-boot-info"; |
| 39 | ffa_manifest; |
| 40 | }; |
Arunachalam Ganapathy | 1e51c2f | 2020-09-22 13:28:29 +0100 | [diff] [blame] | 41 | |
| 42 | rx_tx-info { |
| 43 | compatible = "arm,ffa-manifest-rx_tx-buffer"; |
| 44 | rx-buffer = <&rxbuffer>; |
| 45 | tx-buffer = <&txbuffer>; |
| 46 | }; |
| 47 | |
| 48 | memory-regions { |
| 49 | compatible = "arm,ffa-manifest-memory-regions"; |
| 50 | |
| 51 | rxbuffer: rx-buffer { |
| 52 | description = "rx-buffer"; |
| 53 | pages-count = <1>; |
| 54 | base-address = <0x00000000 0xfe300000>; |
| 55 | attributes = <0x1>; /* read-only */ |
| 56 | }; |
| 57 | |
| 58 | txbuffer: tx-buffer { |
| 59 | description = "tx-buffer"; |
| 60 | pages-count = <1>; |
| 61 | base-address = <0x00000000 0xfe301000>; |
| 62 | attributes = <0x3>; /* read-write */ |
| 63 | }; |
J-Alves | 60ea4c3 | 2021-07-28 13:57:09 +0100 | [diff] [blame] | 64 | |
| 65 | /* Memory to be shared in memory sharing tests. */ |
| 66 | share-memory { |
| 67 | description = "share-memory"; |
| 68 | pages-count = <1>; |
| 69 | base-address =<0x00000000 0xfe500000>; |
| 70 | attributes = <0x3>; /* read-write */ |
| 71 | }; |
Arunachalam Ganapathy | 1e51c2f | 2020-09-22 13:28:29 +0100 | [diff] [blame] | 72 | }; |
Arunachalam Ganapathy | 1e51c2f | 2020-09-22 13:28:29 +0100 | [diff] [blame] | 73 | }; |