Boris Deletic | 08f4896 | 2020-10-28 12:42:58 +0000 | [diff] [blame] | 1 | #------------------------------------------------------------------------------- |
Raef Coles | b8c93e3 | 2021-06-03 10:10:45 +0100 | [diff] [blame] | 2 | # Copyright (c) 2020-2021, Arm Limited. All rights reserved. |
Boris Deletic | 08f4896 | 2020-10-28 12:42:58 +0000 | [diff] [blame] | 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | #------------------------------------------------------------------------------- |
| 7 | |
| 8 | { |
| 9 | "psa_framework_version": 1.0, |
| 10 | "name": "TFM_SP_EXAMPLE", |
| 11 | "type": "APPLICATION-ROT", |
| 12 | "priority": "NORMAL", |
| 13 | "entry_point": "tfm_example_partition_main", |
| 14 | "stack_size": "0x200", |
| 15 | "mmio_regions": [ |
| 16 | { |
| 17 | "name": "TFM_PERIPHERAL_TIMER0", |
| 18 | "permission": "READ-WRITE" |
| 19 | } |
| 20 | ], |
| 21 | "services": [ |
| 22 | { |
| 23 | "name": "TFM_EXAMPLE_SERVICE", |
Raef Coles | b8c93e3 | 2021-06-03 10:10:45 +0100 | [diff] [blame] | 24 | # SIDs must be unique, ones that are currently in use are documented in |
| 25 | # tfm_secure_partition_addition.rst on line 184 |
| 26 | "sid": "0x00001000", |
Boris Deletic | 08f4896 | 2020-10-28 12:42:58 +0000 | [diff] [blame] | 27 | "non_secure_clients": true, |
| 28 | "version": 1, |
| 29 | "version_policy": "STRICT" |
| 30 | } |
| 31 | ], |
| 32 | "irqs": [ |
| 33 | { |
| 34 | "source": "TFM_TIMER0_IRQ", |
| 35 | "signal": "TFM_EXAMPLE_SIGNAL_TIMER_0_IRQ", |
| 36 | "tfm_irq_priority": 64, |
| 37 | } |
| 38 | ], |
| 39 | } |