1 /* 2 * Copyright (c) 2022-2023, Arm Limited. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 * 6 */ 7 8 #ifndef __PLAT_SVC_HANDLER_H__ 9 #define __PLAT_SVC_HANDLER_H__ 10 11 #include "svc_num.h" 12 13 /* Use the SVC number constructors to ensure the validness */ 14 #define TFM_SVC_PLATFORM_DMA350_CONFIG TFM_SVC_NUM_PLATFORM_THREAD(0) 15 #define TFM_SVC_PLATFORM_SDS_STRUCT_ADD TFM_SVC_NUM_PLATFORM_THREAD(1) 16 17 #endif /* __PLAT_SVC_HANDLER_H__ */ 18