1// SPDX-License-Identifier: BSD-2-Clause
2/*
3 * Copyright (c) 2021, Arm Limited. All rights reserved.
4 *
5 * This file is a Partition Manifest (PM) for OP-TEE as a Secure Partition (SP)
6 *
7 */
8
9/dts-v1/;
10
11/ {
12	compatible = "arm,ffa-manifest-1.0";
13
14	/* Properties */
15	description = "op-tee";
16	ffa-version = <0x00010000>; /* 31:16 - Major, 15:0 - Minor */
17	uuid = <0xe0786148 0xe311f8e7 0x02005ebc 0x1bc5d5a5>;
18	id = <1>;
19	execution-ctx-count = <8>;
20	exception-level = <2>; /* S-EL1 */
21	execution-state = <0>; /* AARCH64 */
22	load-address = <0xfd280000>;
23	entrypoint-offset = <0x1000>;
24	xlat-granule = <0>; /* 4KiB */
25	boot-order = <0>;
26	messaging-method = <0x3>; /* Direct request/response supported */
27
28	device-regions {
29		compatible = "arm,ffa-manifest-device-regions";
30		uart0 {
31			base-address = <0x00000000 0x7ff70000>;
32			pages-count = <1>;
33			attributes = <0x3>; /* read-write */
34		};
35	};
36};
37