aboutsummaryrefslogtreecommitdiff
path: root/interface/src/tfm_multi_core_ns_api.c
blob: ce9233c65f628454e14bda0c6920746dc56585fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Copyright (c) 2019-2021, Arm Limited. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 *
 */

#include "tfm_api.h"
#include "tfm_multi_core_api.h"

__attribute__((weak))
enum tfm_status_e tfm_ns_interface_init(void)
{
    return TFM_SUCCESS;
}

int32_t tfm_ns_wait_for_s_cpu_ready(void)
{
    return tfm_platform_ns_wait_for_s_cpu_ready();
}