Prepare the BIOS data areas before device init.
[coreboot.git] / src / include / assert.h
index 639a88c78fa1885b95eaa0ccdcabc07b6dc32f46..346e76961e8083bc6fbac30542e3be38e3570298 100644 (file)
@@ -1,59 +1,64 @@
-/*\r
- * $Header: /home/cvs/BIR/ca-cpu/freebios/src/include/assert.h,v 1.1 2005/07/11 16:03:54 smagnani Exp $\r
- *\r
- * assert.h: Debugging macros\r
- *\r
- * Copyright (C) 2005 Digital Design Corporation\r
- *\r
- * This program is free software; you can redistribute it and/or modify\r
- * it under the terms of the GNU General Public License as published by\r
- * the Free Software Foundation; either version 2 of the License, or\r
- * (at your option) any later version.\r
- *\r
- * This program is distributed in the hope that it will be useful,\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- * GNU General Public License for more details.\r
- *\r
- * You should have received a copy of the GNU General Public License\r
- * along with this program; if not, write to the Free Software\r
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
- *\r
- * $Log: assert.h,v $\r
- * Revision 1.1  2005/07/11 16:03:54  smagnani\r
- * Initial revision.\r
- *\r
- *\r
- */\r
-\r
-#ifndef __ASSERT_H_DEFINED\r
-#define __ASSERT_H_DEFINED\r
-\r
-// ROMCC doesn't support __FILE__ or __LINE__  :^{\r
-\r
-#if DEBUG\r
-#ifdef __ROMCC__\r
-#define ASSERT(x)      { if (!(x)) die("ASSERT failure!\r\n"); }\r
-#else\r
-#define ASSERT(x)      {                               \\r
-                                               if (!(x))       \\r
-                                               {                       \\r
-                                                       printk_emerg("ASSERT failure: file '%s', line %d\n", __FILE__, __LINE__); \\r
-                                                       die(""); \\r
-                                               }                       \\r
-                                       }\r
-#endif         // __ROMCC__\r
-#else          // !DEBUG\r
-#define ASSERT(x)      { }\r
-#endif\r
-\r
-#ifdef __ROMCC__\r
-#define BUG()          {       die("BUG encountered: system halted\r\n");  }\r
-#else\r
-#define BUG()          {                               \\r
-                                               printk_emerg("BUG: file '%s', line %d\n", __FILE__, __LINE__); \\r
-                                               die(""); \\r
-                                       }\r
-#endif\r
-                                       \r
-#endif         // __ASSERT_H_DEFINED\r
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2010 coresystems GmbH
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; version 2 of the License.
+ *
+ * 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef __ASSERT_H__
+#define __ASSERT_H__
+
+#if defined(__PRE_RAM__) && !CONFIG_CACHE_AS_RAM
+
+/* ROMCC versions */
+#define ASSERT(x) {                                            \
+       if(!(x)) {                                              \
+               print_emerg("ASSERTION FAILED: file '");        \
+               print_emerg(__FILE__);                          \
+               print_emerg("', line 0x");                      \
+               print_debug_hex32(__LINE__);                    \
+               print_emerg("\n");                              \
+               /* die(""); */                                  \
+       }                                                       \
+}
+
+#define BUG() {                                                        \
+       print_emerg("BUG ENCOUNTERED: SYSTEM HALTED at file '");\
+       print_emerg(__FILE__);                                  \
+       print_emerg("', line 0x");                              \
+       print_debug_hex32(__LINE__);                            \
+       print_emerg("\n");                                      \
+       /* die(""); */                                          \
+}
+
+#else
+
+/* GCC and CAR versions */
+#define ASSERT(x) {                                            \
+       if (!(x)) {                                             \
+               printk(BIOS_EMERG, "ASSERTION FAILED: file '%s', "      \
+                       " line %d\n", __FILE__, __LINE__);      \
+               /* die(""); */                                  \
+       }                                                       \
+}
+#define BUG() {                                                        \
+       printk(BIOS_EMERG, "BUG ENCOUNTERED: SYSTEM HALTED at file '%s', "      \
+               " line %d\n", __FILE__, __LINE__);              \
+       /* die(""); */                                          \
+}
+
+#endif
+
+#endif // __ASSERT_H__