blob: 3ec2cb03d2c8785e7ac76b38079d63d66c6795fd [file] [log] [blame]
Mate Toth-Pal3956a8a2018-08-03 17:18:47 +02001/*
2 * Copyright (c) 2018, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
Mate Toth-Pal3956a8a2018-08-03 17:18:47 +02007
8#include "tfm_nspm_svc_handler.h"
Mate Toth-Pal3956a8a2018-08-03 17:18:47 +02009#include "tfm_api.h"
10#include "tfm_ns_svc.h"
11
Mate Toth-Pal3956a8a2018-08-03 17:18:47 +020012/* SVC function implementations */
Marc Moreno Berengue2b328e92018-10-10 14:18:17 +010013uint32_t tfm_nspm_svc_register_client_id(uint32_t client_id)
Mate Toth-Pal3956a8a2018-08-03 17:18:47 +020014{
Marc Moreno Berengue2b328e92018-10-10 14:18:17 +010015 if (tfm_register_client_id(client_id) == TFM_SUCCESS) {
16 return 1;
Mate Toth-Pal3956a8a2018-08-03 17:18:47 +020017 }
Marc Moreno Berengue2b328e92018-10-10 14:18:17 +010018
Mate Toth-Pal3956a8a2018-08-03 17:18:47 +020019 return 0;
20}