Ken Liu | f39d8eb | 2021-10-07 12:55:33 +0800 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2021, Arm Limited. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
5 | * | ||||
6 | */ | ||||
7 | #include "config_impl.h" | ||||
8 | |||||
9 | #if CONFIG_TFM_SPM_BACKEND_SFN == 1 | ||||
10 | #include "backend_sfn.c" | ||||
11 | #elif CONFIG_TFM_SPM_BACKEND_IPC == 1 | ||||
12 | #include "backend_ipc.c" | ||||
13 | #else | ||||
14 | #error "Invalid configuration." | ||||
15 | #endif |