summaryrefslogtreecommitdiff
path: root/include/bsp/debug_defs.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/bsp/debug_defs.h')
-rw-r--r--include/bsp/debug_defs.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/include/bsp/debug_defs.h b/include/bsp/debug_defs.h
new file mode 100644
index 0000000000..58f7460f52
--- /dev/null
+++ b/include/bsp/debug_defs.h
@@ -0,0 +1,45 @@
+/**
+ * @file
+ * @ingroup bsp_kit
+ * @defgroup sparc_bsp SPARC
+ * @ingroup sparc_bsp
+ * @brief Debug Definitions
+ */
+
+#ifndef __DEBUG_DEFS_H__
+#define __DEBUG_DEFS_H__
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+#ifdef DEBUG
+
+ #ifndef DEBUG_FLAGS
+ #define DEBUG_FLAGS 0
+ #endif
+
+ #define DBG(fmt, args...) do { printk(" : %03d @ %18s()]:" fmt , __LINE__,__FUNCTION__,## args); } while(0)
+ #define DBG2(fmt) do { printk(" : %03d @ %18s()]:" fmt , __LINE__,__FUNCTION__); } while(0)
+ #define DBGC(c,fmt, args...) do { if (DEBUG_FLAGS & c) { printk(" : %03d @ %18s()]:" fmt , __LINE__,__FUNCTION__,## args); }} while(0)
+
+#else
+
+ #define DBG(fmt, args...)
+ #define DBG2(fmt, args...)
+ #define DBGC(c, fmt, args...)
+
+#endif
+
+#ifdef DEBUGFUNCS
+ #define FUNCDBG() do { printk("%s\n\r",__FUNCTION__); } while(0)
+#else
+ #define FUNCDBG()
+#endif
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __DEBUG_DEFS_H__ */