2006-08-23 16:28:37 +02:00
|
|
|
/*
|
2010-02-16 00:10:19 +01:00
|
|
|
* This file is part of the coreboot project.
|
2010-03-01 18:19:55 +01:00
|
|
|
*
|
2010-02-28 19:13:09 +01:00
|
|
|
* Copyright (C) 2010 coresystems GmbH
|
2006-08-23 16:28:37 +02:00
|
|
|
*
|
2010-02-28 19:13:09 +01:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
2010-03-01 18:19:55 +01:00
|
|
|
* published by the Free Software Foundation; version 2 of the License.
|
2006-08-23 16:28:37 +02:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2010-02-28 19:13:09 +01:00
|
|
|
#ifndef __ASSERT_H__
|
|
|
|
#define __ASSERT_H__
|
2010-02-16 00:10:19 +01:00
|
|
|
|
2015-02-18 02:27:23 +01:00
|
|
|
#include <arch/hlt.h>
|
2014-02-21 09:22:52 +01:00
|
|
|
#include <console/console.h>
|
|
|
|
|
2010-02-28 19:13:09 +01:00
|
|
|
/* GCC and CAR versions */
|
|
|
|
#define ASSERT(x) { \
|
|
|
|
if (!(x)) { \
|
2015-02-18 02:27:23 +01:00
|
|
|
printk(BIOS_EMERG, "ASSERTION ERROR: file '%s'" \
|
|
|
|
", line %d\n", __FILE__, __LINE__); \
|
2017-03-07 20:44:05 +01:00
|
|
|
if (IS_ENABLED(CONFIG_FATAL_ASSERTS)) \
|
|
|
|
hlt(); \
|
2010-02-28 19:13:09 +01:00
|
|
|
} \
|
|
|
|
}
|
|
|
|
#define BUG() { \
|
2015-02-18 02:27:23 +01:00
|
|
|
printk(BIOS_EMERG, "ERROR: BUG ENCOUNTERED at file '%s'"\
|
|
|
|
", line %d\n", __FILE__, __LINE__); \
|
2017-03-07 20:44:05 +01:00
|
|
|
if (IS_ENABLED(CONFIG_FATAL_ASSERTS)) \
|
|
|
|
hlt(); \
|
2010-02-28 19:13:09 +01:00
|
|
|
}
|
|
|
|
|
2014-02-21 09:22:52 +01:00
|
|
|
#define assert(statement) ASSERT(statement)
|
2010-03-01 18:19:55 +01:00
|
|
|
|
|
|
|
#endif // __ASSERT_H__
|