1#------------------------------------------------------------------------------- 2# Copyright (c) 2021-2022 Cypress Semiconductor Corporation (an Infineon 3# company) or an affiliate of Cypress Semiconductor Corporation. All rights 4# reserved. 5# Copyright (c) 2024, Arm Limited. All rights reserved. 6# 7# SPDX-License-Identifier: BSD-3-Clause 8# 9#------------------------------------------------------------------------------- 10 11# Identical to the standard TF-M Non-Secure Mailbox Agent manifest except for 12# the addition of the MAILBOX_INTERRUPT_1 interrupt request 13{ 14 "psa_framework_version": 1.1, 15 "name": "TFM_NS_MAILBOX_AGENT", 16 "type": "PSA-ROT", 17 "ns_agent": true, 18 "priority": "LOW", 19 "model": "IPC", 20 "entry_point": "ns_agent_mailbox_entry", 21 "stack_size": "NS_AGENT_MAILBOX_STACK_SIZE", 22 "client_id_base": "-0x0800ffff", 23 "client_id_limit": "-0x04000000", 24 "irqs": [ 25 { 26 "source": "MAILBOX_IRQ", 27 "name": "MAILBOX_INTERRUPT", 28 "handling": "SLIH", 29 "client_id_base": "-0x0400ffff", 30 "client_id_limit": "-0x04000000", 31 }, 32 { 33 "source": "MAILBOX_IRQ_1", 34 "name": "MAILBOX_INTERRUPT_1", 35 "handling": "SLIH", 36 "client_id_base": "-0x0800ffff", 37 "client_id_limit": "-0x08000000", 38 } 39 ], 40} 41