aboutsummaryrefslogtreecommitdiff
path: root/interface/include/tfm_nspm_svc_handler.h
diff options
context:
space:
mode:
authorDavid Hu <david.hu@arm.com>2021-04-07 15:58:53 +0800
committerDavid Hu <david.hu@arm.com>2021-04-29 08:56:18 +0200
commitc686ecbe98e674d2e60a938fcc18ee5104f9ec9d (patch)
tree3f9225a56aba4fa162cb353e8c6a82c54af20b7e /interface/include/tfm_nspm_svc_handler.h
parent5079a041bfb366594cdf6c72f173921ab34b2a92 (diff)
downloadtrusted-firmware-m-c686ecbe98e674d2e60a938fcc18ee5104f9ec9d.tar.gz
Interface: Remove NS specific implementation of test interface
Remove some test interface files to decouple TF-M from NS speific implementation. Those files will be moved to tf-m-tests. Those files include NS client identification management and NS mailbox test utilities. Change-Id: I963ccae2b50d6124e3ac84547d91b09b28fddfd5 Signed-off-by: David Hu <david.hu@arm.com>
Diffstat (limited to 'interface/include/tfm_nspm_svc_handler.h')
-rw-r--r--interface/include/tfm_nspm_svc_handler.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/interface/include/tfm_nspm_svc_handler.h b/interface/include/tfm_nspm_svc_handler.h
deleted file mode 100644
index 73f75a95e1..0000000000
--- a/interface/include/tfm_nspm_svc_handler.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * Copyright (c) 2018, Arm Limited. All rights reserved.
- *
- * SPDX-License-Identifier: BSD-3-Clause
- *
- */
-
-#ifndef __TFM_NSPM_SVC_HANDLER_H__
-#define __TFM_NSPM_SVC_HANDLER_H__
-
-#include <stdint.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/**
- * \brief Reports the client ID of this task to TF-M (SVC function)
- *
- * \param [in] client_id Client ID to register.
- *
- * \return Returns 1 if the client ID was successfully reported 0 otherwise
- */
-uint32_t tfm_nspm_svc_register_client_id(uint32_t client_id);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* __TFM_NSPM_SVC_HANDLER_H__ */