blob: f9968f70a12d1be5c0ebbc0f6071c7e92ab4942d [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";
Jens Wiklanderb48cfe52025-01-29 17:07:57 +010019 ffa-version = <0x00010002>; /* 31:16 - Major, 15:0 - Minor */
Jens Wiklandere9290f82023-07-11 10:07:54 +020020 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 */
Olivier Deprez9d068662023-09-27 12:39:23 +020032 notification-support;
Jens Wiklandera929f002025-04-02 12:06:04 +020033 vm-availability-messages = <0x3>; /* VM created and destroyed */
Jens Wiklandere9290f82023-07-11 10:07:54 +020034
35 /* Boot protocol */
36 gp-register-num = <0x0>;
37
38 /* Boot Info */
39 boot-info {
40 compatible = "arm,ffa-manifest-boot-info";
41 ffa_manifest;
42 };
43
44 device-regions {
45 compatible = "arm,ffa-manifest-device-regions";
46
47 uart1 {
48 base-address = <0x00000000 0x09040000>;
49 pages-count = <1>;
50 attributes = <0x3>; /* read-write */
Jens Wiklandera3f30f72025-06-03 17:35:10 +020051 /* SPI, edge-triggered, secure, priority=1 */
52 interrupts = <0x28 0x901>;
Jens Wiklandere9290f82023-07-11 10:07:54 +020053 };
54 };
55};