| /* |
| * Copyright (c) 2020-2022, Arm Limited. All rights reserved. |
| * |
| * SPDX-License-Identifier: BSD-3-Clause |
| * |
| * This file is a Partition Manifest (PM) for a minimal Secure Partition (SP) |
| * that has additional optional properties defined. |
| * |
| */ |
| |
| /dts-v1/; |
| |
| / { |
| compatible = "arm,ffa-manifest-1.0"; |
| |
| /* Properties */ |
| description = "Base-1"; |
| ffa-version = <0x00010001>; /* 31:16 - Major, 15:0 - Minor */ |
| uuid = <0x735cb579 0xb9448c1d 0xe1619385 0xd2d80a77>; |
| id = <3>; |
| auxiliary-id = <0xae>; |
| stream-endpoint-ids = <0 1 2 3>; |
| execution-ctx-count = <1>; |
| exception-level = <2>; /* S-EL1 */ |
| execution-state = <0>; /* AARCH64 */ |
| load-address = <0x7200000>; |
| entrypoint-offset = <0x00004000>; |
| xlat-granule = <0>; /* 4KiB */ |
| boot-order = <0>; |
| notification-support; |
| messaging-method = <3>; /* Direct messaging only */ |
| managed-exit; /* Managed exit is supported */ |
| |
| memory-regions { |
| compatible = "arm,ffa-manifest-memory-regions"; |
| |
| /* Without optional base-address */ |
| test-memory { |
| description = "test-memory"; |
| pages-count = <4>; |
| attributes = <0x3>; /* read-write */ |
| }; |
| |
| /* Memory to be shared in memory sharing tests. */ |
| share-memory { |
| description = "share-memory"; |
| pages-count = <1>; |
| base-address = <0x00000000 0x7502000>; |
| attributes = <0x3>; /* read-write */ |
| }; |
| |
| /* Memory to be shared in memory sharing tests. */ |
| share-memory-ns { |
| description = "NS share memory"; |
| pages-count = <1>; |
| base-address = <0x00008800 0x80001000>; |
| attributes = <0x83>; /* NS / read-write */ |
| }; |
| }; |
| }; |