1/*
2 * Copyright (c) 2020-2022, 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 = "op-tee";
18	ffa-version = <0x00010000>; /* 31:16 - Major, 15:0 - Minor */
19	uuid = <0xe0786148 0xe311f8e7 0x02005ebc 0x1bc5d5a5>;
20	id = <1>;
21	execution-ctx-count = <8>;
22	exception-level = <2>; /* S-EL1 */
23	execution-state = <0>; /* AARCH64 */
24	load-address = <0x6280000>;
25	entrypoint-offset = <0x4000>;
26	xlat-granule = <0>; /* 4KiB */
27	boot-order = <0>;
28	messaging-method = <0x3>; /* Direct request/response supported. */
29	managed-exit;
30	run-time-model = <1>; /* SP pre-emptible. */
31
32	/* Boot protocol */
33	gp-register-num = <0x0>;
34
35	device-regions {
36		compatible = "arm,ffa-manifest-device-regions";
37
38		uart1 {
39			base-address = <0x00000000 0x1c0a0000>;
40			pages-count = <1>;
41			attributes = <0x3>; /* read-write */
42		};
43	};
44};
45