• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (c) 2020, 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 = <0x486178e0 0xe7f811e3 0xbc5e0002 0xa5d5c51b>;
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 = <0x1000>;
26	xlat-granule = <0>; /* 4KiB */
27	boot-order = <0>;
28	messaging-method = <0>; /* Direct messaging only */
29	run-time-model = <1>; /* Run to completion */
30
31	/* Boot protocol */
32	gp-register-num = <0x0>;
33
34	device-regions {
35		compatible = "arm,ffa-manifest-device-regions";
36
37		uart1 {
38			base-address = <0x00000000 0x1c0a0000>;
39			pages-count = <1>;
40			attributes = <0x3>; /* read-write */
41		};
42
43		gicd {
44			base-address = <0x00000000 0x2f000000>;
45			pages-count = <16>;
46			attributes = <0x3>; /* read-write */
47		};
48	};
49};
50