1 // SPDX-License-Identifier: GPL-2.0+
4 * Andreas Bießmann <andreas@biessmann.org>
6 * This file consolidates all the different hang() functions implemented in
11 #include <bootstage.h>
14 * hang - stop processing by staying in an endless loop
16 * The purpose of this function is to stop further execution of code cause
17 * something went completely wrong. To catch this and give some feedback to
18 * the user one needs to catch the bootstage_error (see show_boot_progress())
23 #if !defined(CONFIG_SPL_BUILD) || \
24 (CONFIG_IS_ENABLED(LIBCOMMON_SUPPORT) && \
25 CONFIG_IS_ENABLED(SERIAL_SUPPORT))
26 puts("### ERROR ### Please RESET the board ###\n");
28 bootstage_error(BOOTSTAGE_ID_NEED_RESET);