blob: b4e1162a6a8a77b7c34cac8d604a457db125d1f9 [file] [log] [blame]
Marc Moreno Berengue8e0fa7a2018-10-04 18:25:13 +01001/*
2 * Copyright (c) 2018, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
8#include "tfm_platform_api.h"
9#include "tfm_platform_veneers.h"
10#include "tfm_ns_lock.h"
11
12enum tfm_platform_err_t tfm_platform_system_reset(void)
13{
14 return tfm_ns_lock_dispatch((veneer_fn)tfm_platform_veneer_system_reset,
15 0,
16 0,
17 0,
18 0);
19}