blob: 024efe78f93338a400c32de3853d21d210966328 [file] [log] [blame]
Jens Wiklandere9290f82023-07-11 10:07:54 +02001/*
2 * Copyright (c) 2020, Arm Limited. All rights reserved.
3 * Copyright (c) 2022, Linaro Limited
4 *
5 * SPDX-License-Identifier: BSD-3-Clause
6 *
7 * This file is a Partition Manifest (PM) for a minimal Secure Partition (SP)
8 * that has additional optional properties defined.
9 *
10 */
11
12/dts-v1/;
13
14/ {
15 compatible = "arm,ffa-manifest-1.0";
16
17 /* Properties */
18 description = "op-tee";
19 ffa-version = <0x00010000>; /* 31:16 - Major, 15:0 - Minor */
20 uuid = <0xe0786148 0xe311f8e7 0x02005ebc 0x1bc5d5a5>;
21 id = <1>;
22 execution-ctx-count = <8>;
23 exception-level = <2>; /* S-EL1 */
24 execution-state = <0>; /* AARCH64 */
25 load-address = <0xe300000>;
26 mem-size = <0xd00000>; /* OP-TEE specific extension */
27 entrypoint-offset = <0x4000>;
28 xlat-granule = <0>; /* 4KiB */
29 boot-order = <0>;
30 messaging-method = <0x3>; /* Direct messaging only */
31 ns-interrupts-action = <1>; /* NS_ACTION_ME */
32
33 /* Boot protocol */
34 gp-register-num = <0x0>;
35
36 /* Boot Info */
37 boot-info {
38 compatible = "arm,ffa-manifest-boot-info";
39 ffa_manifest;
40 };
41
42 device-regions {
43 compatible = "arm,ffa-manifest-device-regions";
44
45 uart1 {
46 base-address = <0x00000000 0x09040000>;
47 pages-count = <1>;
48 attributes = <0x3>; /* read-write */
49 /* SPI, level-triggered, secure, priority=1 */
50 interrupts = <0x28 0xb01>;
51 };
52 };
53};