Arunachalam Ganapathy | 1e51c2f | 2020-09-22 13:28:29 +0100 | [diff] [blame] | 1 | /* |
Usama Arif | 6ddc37f | 2021-01-17 18:05:08 +0000 | [diff] [blame] | 2 | * Copyright (c) 2020-2021, 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-2"; |
Olivier Deprez | 58757e8 | 2021-07-30 10:18:00 +0200 | [diff] [blame] | 18 | ffa-version = <0x00010001>; /* 31:16 - Major, 15:0 - Minor */ |
Olivier Deprez | 224b646 | 2021-09-16 12:18:32 +0200 | [diff] [blame] | 19 | uuid = <0x092358d1 0xb94723f0 0x64447c82 0xc88f57f5>; |
Arunachalam Ganapathy | 1e51c2f | 2020-09-22 13:28:29 +0100 | [diff] [blame] | 20 | id = <2>; |
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 = <0xfe100000>; |
J-Alves | 31d8795 | 2022-04-04 12:34:16 +0100 | [diff] [blame^] | 25 | entrypoint-offset = <0x00004000>; |
Arunachalam Ganapathy | 1e51c2f | 2020-09-22 13:28:29 +0100 | [diff] [blame] | 26 | xlat-granule = <0>; /* 4KiB */ |
| 27 | boot-order = <0>; |
Maksims Svecovs | a74430c | 2021-07-22 14:57:11 +0100 | [diff] [blame] | 28 | messaging-method = <3>; /* Direct messaging only */ |
J-Alves | ac8d29c | 2021-11-02 10:32:41 +0000 | [diff] [blame] | 29 | notification-support; /* Support receipt of notifications. */ |
Arunachalam Ganapathy | 1e51c2f | 2020-09-22 13:28:29 +0100 | [diff] [blame] | 30 | run-time-model = <1>; /* Run to completion */ |
| 31 | |
Arunachalam Ganapathy | 1e51c2f | 2020-09-22 13:28:29 +0100 | [diff] [blame] | 32 | rx_tx-info { |
| 33 | compatible = "arm,ffa-manifest-rx_tx-buffer"; |
| 34 | rx-buffer = <&rxbuffer>; |
| 35 | tx-buffer = <&txbuffer>; |
| 36 | }; |
| 37 | |
| 38 | memory-regions { |
| 39 | compatible = "arm,ffa-manifest-memory-regions"; |
| 40 | |
| 41 | rxbuffer: rx-buffer { |
| 42 | description = "rx-buffer"; |
| 43 | pages-count = <1>; |
| 44 | base-address = <0x00000000 0xfe302000>; |
| 45 | attributes = <0x1>; /* read-only */ |
| 46 | }; |
| 47 | |
| 48 | txbuffer: tx-buffer { |
| 49 | description = "tx-buffer"; |
| 50 | pages-count = <1>; |
| 51 | base-address = <0x00000000 0xfe303000>; |
| 52 | attributes = <0x3>; /* read-write */ |
| 53 | }; |
J-Alves | 60ea4c3 | 2021-07-28 13:57:09 +0100 | [diff] [blame] | 54 | |
| 55 | /* Memory to be shared in memory sharing tests. */ |
| 56 | share-memory { |
| 57 | description = "share-memory"; |
| 58 | pages-count = <1>; |
| 59 | base-address =<0x00000000 0xfe501000>; |
| 60 | attributes = <0x3>; /* read-write */ |
| 61 | }; |
Arunachalam Ganapathy | 1e51c2f | 2020-09-22 13:28:29 +0100 | [diff] [blame] | 62 | }; |
| 63 | }; |