xref: /rk3399_ARM-atf/lib/libc/assert.c (revision 39b6cc66d670be41d6b51b644beb675f386a4240)
1 /*
2  * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include <assert.h>
8 #include <cdefs.h>
9 #include <console.h>
10 #include <debug.h>
11 #include <platform.h>
12 #include <stdio.h>
13 
14 /*
15  * Only print the output if PLAT_LOG_LEVEL_ASSERT is higher or equal to
16  * LOG_LEVEL_INFO, which is the default value for builds with DEBUG=1.
17  */
18 
19 #if PLAT_LOG_LEVEL_ASSERT >= LOG_LEVEL_VERBOSE
20 void __assert(const char *file, unsigned int line, const char *assertion)
21 {
22 	printf("ASSERT: %s:%d:%s\n", file, line, assertion);
23 	console_flush();
24 	plat_panic_handler();
25 }
26 #elif PLAT_LOG_LEVEL_ASSERT >= LOG_LEVEL_INFO
27 void __assert(const char *file, unsigned int line)
28 {
29 	printf("ASSERT: %s:%d\n", file, line);
30 	console_flush();
31 	plat_panic_handler();
32 }
33 #else
34 void __assert(void)
35 {
36 	plat_panic_handler();
37 }
38 #endif
39