blob: e2725b43fa67c8fb55f288bf9e0848e41c8159d5 [file] [log] [blame]
Kevin Peng33d03942021-06-08 11:28:41 +08001/*
2 * Copyright (c) 2021, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
8#include "cmsis.h"
9#include "fih.h"
10
11void tfm_idle_thread(void)
12{
13 while (1) {
14 __WFI();
15 }
16
17#ifdef TFM_FIH_PROFILE_ON
18 fih_delay();
19
20 while (1) {
21 __WFI();
22 }
23#endif
24}