tc0_err.c 270 Bytes
Newer Older
Usama Arif's avatar
Usama Arif committed
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Copyright (c) 2020, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <plat/arm/common/plat_arm.h>

/*
 * tc0 error handler
 */
void __dead2 plat_arm_error_handler(int err)
{
Jimmy Brisson's avatar
Jimmy Brisson committed
14
	while (true) {
Usama Arif's avatar
Usama Arif committed
15
16
17
		wfi();
	}
}