blob: bae8a359354216e7b8117d4364af872ebdebbd61 [file] [log] [blame]
Sjoerd Simons2b22a992015-12-04 23:27:38 +01001/*
2 * linux/lib/vsprintf.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/* vsprintf.c -- Lars Wirzenius & Linus Torvalds. */
8/*
9 * Wirzenius wrote this portably, Torvalds fucked it up :-)
10 */
11
12#include <common.h>
13#if !defined(CONFIG_PANIC_HANG)
14#include <command.h>
15#endif
16
17static void panic_finish(void) __attribute__ ((noreturn));
18
19static void panic_finish(void)
20{
21 putc('\n');
22#if defined(CONFIG_PANIC_HANG)
23 hang();
24#else
25 udelay(100000); /* allow messages to go out */
26 do_reset(NULL, 0, 0, NULL);
27#endif
28 while (1)
29 ;
30}
31
32void panic_str(const char *str)
33{
34 puts(str);
35 panic_finish();
36}
37
38void panic(const char *fmt, ...)
39{
Alex Kiernan4f1eed72018-04-19 04:32:55 +000040#if CONFIG_IS_ENABLED(PRINTF)
Sjoerd Simons2b22a992015-12-04 23:27:38 +010041 va_list args;
42 va_start(args, fmt);
43 vprintf(fmt, args);
44 va_end(args);
Alex Kiernan4f1eed72018-04-19 04:32:55 +000045#endif
Sjoerd Simons2b22a992015-12-04 23:27:38 +010046 panic_finish();
47}
Alex Kiernane21c03b2018-04-19 04:32:56 +000048
49void __assert_fail(const char *assertion, const char *file, unsigned int line,
50 const char *function)
51{
52 /* This will not return */
53 panic("%s:%u: %s: Assertion `%s' failed.", file, line, function,
54 assertion);
55}