blob: 26be598b91e55ec65410e837a2755abc2f75cead [file] [log] [blame]
Boris Deletic08f48962020-10-28 12:42:58 +00001#-------------------------------------------------------------------------------
Raef Colesb8c93e32021-06-03 10:10:45 +01002# Copyright (c) 2020-2021, Arm Limited. All rights reserved.
Boris Deletic08f48962020-10-28 12:42:58 +00003#
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 Colesb8c93e32021-06-03 10:10:45 +010024 # 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 Deletic08f48962020-10-28 12:42:58 +000027 "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}