Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Andreas Bießmann | d2eae43 | 2013-04-18 22:48:50 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2013 |
Andreas Bießmann | 09c2b8f | 2016-05-01 03:46:16 +0200 | [diff] [blame] | 4 | * Andreas Bießmann <andreas@biessmann.org> |
Andreas Bießmann | d2eae43 | 2013-04-18 22:48:50 +0000 | [diff] [blame] | 5 | * |
| 6 | * This file consolidates all the different hang() functions implemented in |
| 7 | * u-boot. |
Andreas Bießmann | d2eae43 | 2013-04-18 22:48:50 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
| 11 | #include <bootstage.h> |
Simon Glass | f2980ec | 2019-05-18 11:59:44 -0600 | [diff] [blame] | 12 | #include <os.h> |
Andreas Bießmann | d2eae43 | 2013-04-18 22:48:50 +0000 | [diff] [blame] | 13 | |
| 14 | /** |
| 15 | * hang - stop processing by staying in an endless loop |
| 16 | * |
| 17 | * The purpose of this function is to stop further execution of code cause |
| 18 | * something went completely wrong. To catch this and give some feedback to |
| 19 | * the user one needs to catch the bootstage_error (see show_boot_progress()) |
| 20 | * in the board code. |
| 21 | */ |
| 22 | void hang(void) |
| 23 | { |
Simon Glass | aa0ffe8 | 2018-10-01 12:22:20 -0600 | [diff] [blame] | 24 | #if !defined(CONFIG_SPL_BUILD) || \ |
| 25 | (CONFIG_IS_ENABLED(LIBCOMMON_SUPPORT) && \ |
| 26 | CONFIG_IS_ENABLED(SERIAL_SUPPORT)) |
Andreas Bießmann | d2eae43 | 2013-04-18 22:48:50 +0000 | [diff] [blame] | 27 | puts("### ERROR ### Please RESET the board ###\n"); |
| 28 | #endif |
| 29 | bootstage_error(BOOTSTAGE_ID_NEED_RESET); |
Simon Glass | f2980ec | 2019-05-18 11:59:44 -0600 | [diff] [blame] | 30 | if (IS_ENABLED(CONFIG_SANDBOX)) |
| 31 | os_exit(1); |
Andreas Bießmann | d2eae43 | 2013-04-18 22:48:50 +0000 | [diff] [blame] | 32 | for (;;) |
| 33 | ; |
| 34 | } |