summaryrefslogtreecommitdiff
path: root/core/arch/arm/kernel/link_dummies.c
blob: 1aa4044dd22bf554a3cfb35a697fcd60dc0440b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// SPDX-License-Identifier: BSD-2-Clause
/*
 * Copyright (c) 2017, Linaro Limited
 */
#include <compiler.h>
#include <kernel/thread.h>
#include <kernel/wait_queue.h>
#include <sm/tee_mon.h>
#include <tee_api_types.h>
#include <tee/arch_svc.h>
#include <tee/entry_std.h>

#include "thread_private.h"

void __section(".text.dummy.tee_svc_handler")
tee_svc_handler(struct thread_svc_regs *regs __unused)
{
}

void __section(".text.dummy.tee_entry_std")
tee_entry_std(struct thread_smc_args *smc_args __unused)
{
}

TEE_Result __section(".text.dummy.init_teecore") init_teecore(void)
{
	return TEE_SUCCESS;
}

void __section(".text.dummy.__thread_std_smc_entry")
__thread_std_smc_entry(struct thread_smc_args *args __unused)
{
}
void __section(".text.dummy.__wq_rpc")
__wq_rpc(uint32_t func __unused, int id __unused,
	 const void *sync_obj __unused, int owner __unused,
	 const char *fname __unused, int lineno  __unused)
{
}