#ifndef _QL_DEBUG_H
#define _QL_DEBUG_H
#ifdef __cplusplus
extern "C" {
#endif
void ql_dump_buffer(uint8_t *, uint8_t, uint32_t);
void ql_el_msg(ql_adapter_state_t *, const char *, int, ...);
void ql_dbg_msg(ql_adapter_state_t *, const char *, int, ...);
int ql_flash_errlog(ql_adapter_state_t *, uint16_t, uint16_t, uint16_t,
uint16_t);
void ql_dump_el_trace_buffer(ql_adapter_state_t *);
#if (QL_DEBUG & 0xffff)
#define QL_DEBUG_ROUTINES
#define QL_BANG
#define QL_QUESTION
#define QL_CAROT
#else
#define QL_BANG "!"
#define QL_QUESTION "?"
#define QL_CAROT "^"
#endif
#define GLOBAL_EL_LOCK() mutex_enter(&ql_global_el_mutex)
#define GLOBAL_EL_UNLOCK() mutex_exit(&ql_global_el_mutex)
#define TRACE_BUFFER_LOCK(ha) mutex_enter(&ha->ql_trace_desc->mutex)
#define TRACE_BUFFER_UNLOCK(ha) mutex_exit(&ha->ql_trace_desc->mutex)
#define EL(ha, ...) ql_el_msg(ha, __func__, CE_CONT, __VA_ARGS__);
#define ER(s) cmn_err(CE_CONT, QL_BANG "%s", s);
#define ERV(s, ...) cmn_err(CE_CONT, QL_BANG s, __VA_ARGS__);
#define EL_BUFFER_RESERVE 256
#define DEBUG_STK_DEPTH 24
#if QL_DEBUG & 1
#define QL_DEBUG_LEVEL_1
#define QL_PRINT_1(ha, ...) ql_dbg_msg(ha, __func__, CE_CONT, __VA_ARGS__)
#define QL_DUMP_1(bp, wdsize, count) \
ql_dump_buffer((uint8_t *)bp, (uint8_t)wdsize, (uint32_t)count)
#else
#define QL_PRINT_1(...)
#define QL_DUMP_1(bp, wdsize, count)
#endif
#ifdef QL_DEBUG_ROUTINES
#define QL_DEBUG_LEVEL_2
#define QL_PRINT_2(ha, ...) ql_dbg_msg(ha, __func__, CE_CONT, __VA_ARGS__)
#define QL_DUMP_2(bp, wdsize, count) \
ql_dump_buffer((uint8_t *)bp, (uint8_t)wdsize, (uint32_t)count)
#else
#define QL_PRINT_2(...)
#define QL_DUMP_2(bp, wdsize, count)
#endif
#if QL_DEBUG & 4
#define QL_DEBUG_LEVEL_3
#define QL_PRINT_3(ha, ...) ql_dbg_msg(ha, __func__, CE_CONT, __VA_ARGS__)
#define QL_DUMP_3(bp, wdsize, count) \
ql_dump_buffer((uint8_t *)bp, (uint8_t)wdsize, (uint32_t)count)
#else
#define QL_PRINT_3(...)
#define QL_DUMP_3(bp, wdsize, count)
#endif
#if QL_DEBUG & 8
#define QL_DEBUG_LEVEL_4
#define QL_PRINT_4(ha, ...) ql_dbg_msg(ha, __func__, CE_CONT, __VA_ARGS__)
#define QL_DUMP_4(bp, wdsize, count) \
ql_dump_buffer((uint8_t *)bp, (uint8_t)wdsize, (uint32_t)count)
#else
#define QL_PRINT_4(...)
#define QL_DUMP_4(bp, wdsize, count)
#endif
#if QL_DEBUG & 0x10
#define QL_DEBUG_LEVEL_5
#define QL_PRINT_5(ha, ...) ql_dbg_msg(ha, __func__, CE_CONT, __VA_ARGS__)
#define QL_DUMP_5(bp, wdsize, count) \
ql_dump_buffer((uint8_t *)bp, (uint8_t)wdsize, (uint32_t)count)
#else
#define QL_PRINT_5(...)
#define QL_DUMP_5(bp, wdsize, count)
#endif
#if QL_DEBUG & 0x20
#define QL_DEBUG_LEVEL_6
#define QL_PRINT_6(ha, ...) ql_dbg_msg(ha, __func__, CE_CONT, __VA_ARGS__)
#define QL_DUMP_6(bp, wdsize, count) \
ql_dump_buffer((uint8_t *)bp, (uint8_t)wdsize, (uint32_t)count)
#else
#define QL_PRINT_6(...)
#define QL_DUMP_6(bp, wdsize, count)
#endif
#if QL_DEBUG & 0x40
#define QL_DEBUG_LEVEL_7
#define QL_PRINT_7(ha, ...) ql_dbg_msg(ha, __func__, CE_CONT, __VA_ARGS__)
#define QL_DUMP_7(bp, wdsize, count) \
ql_dump_buffer((uint8_t *)bp, (uint8_t)wdsize, (uint32_t)count)
#else
#define QL_PRINT_7(...)
#define QL_DUMP_7(bp, wdsize, count)
#endif
#if QL_DEBUG & 0x80
#define QL_DEBUG_LEVEL_8
#define QL_PRINT_8(ha, ...) ql_dbg_msg(ha, __func__, CE_CONT, __VA_ARGS__)
#define QL_DUMP_8(bp, wdsize, count) \
ql_dump_buffer((uint8_t *)bp, (uint8_t)wdsize, (uint32_t)count)
#else
#define QL_PRINT_8(...)
#define QL_DUMP_8(bp, wdsize, count)
#endif
#if QL_DEBUG & 0x104
#define QL_PRINT_9(ha, ...) ql_dbg_msg(ha, __func__, CE_CONT, __VA_ARGS__)
#define QL_DUMP_9(bp, wdsize, count) \
ql_dump_buffer((uint8_t *)bp, (uint8_t)wdsize, (uint32_t)count)
#else
#define QL_PRINT_9(...)
#define QL_DUMP_9(bp, wdsize, count)
#endif
#if QL_DEBUG & 0x200
#define QL_DEBUG_LEVEL_10
#define QL_PRINT_10(ha, ...) ql_dbg_msg(ha, __func__, CE_CONT, __VA_ARGS__)
#define QL_DUMP_10(bp, wdsize, count) \
ql_dump_buffer((uint8_t *)bp, (uint8_t)wdsize, (uint32_t)count)
#else
#define QL_PRINT_10(...)
#define QL_DUMP_10(bp, wdsize, count)
#endif
#if QL_DEBUG & 0x400
#define QL_DEBUG_LEVEL_11
#define QL_PRINT_11(ha, ...) ql_dbg_msg(ha, __func__, CE_CONT, __VA_ARGS__)
#define QL_DUMP_11(bp, wdsize, count) \
ql_dump_buffer((uint8_t *)bp, (uint8_t)wdsize, (uint32_t)count)
#else
#define QL_PRINT_11(...)
#define QL_DUMP_11(bp, wdsize, count)
#endif
#if QL_DEBUG & 0x800
#define QL_DEBUG_LEVEL_12
#define QL_PRINT_12(ha, ...) ql_dbg_msg(ha, __func__, CE_CONT, __VA_ARGS__)
#define QL_DUMP_12(bp, wdsize, count) \
ql_dump_buffer((uint8_t *)bp, (uint8_t)wdsize, (uint32_t)count)
#else
#define QL_PRINT_12(...)
#define QL_DUMP_12(bp, wdsize, count)
#endif
#if QL_DEBUG & 0x1000
#define QL_DEBUG_LEVEL_13
#define QL_PRINT_13(ha, ...) ql_dbg_msg(ha, __func__, CE_CONT, __VA_ARGS__)
#define QL_DUMP_13(bp, wdsize, count) \
ql_dump_buffer((uint8_t *)bp, (uint8_t)wdsize, (uint32_t)count)
#else
#define QL_PRINT_13(...)
#define QL_DUMP_13(bp, wdsize, count)
#endif
#if QL_DEBUG & 0x2000
#define QL_DEBUG_LEVEL_14
#define QL_PRINT_14(ha, ...) ql_dbg_msg(ha, __func__, CE_CONT, __VA_ARGS__)
#define QL_DUMP_14(bp, wdsize, count) \
ql_dump_buffer((uint8_t *)bp, (uint8_t)wdsize, (uint32_t)count)
#else
#define QL_PRINT_14(...)
#define QL_DUMP_14(bp, wdsize, count)
#endif
#if QL_DEBUG & 0x4000
#define QL_DEBUG_LEVEL_15
#define QL_PRINT_15(ha, ...) ql_dbg_msg(ha, __func__, CE_CONT, __VA_ARGS__)
#define QL_DUMP_15(bp, wdsize, count) \
ql_dump_buffer((uint8_t *)bp, (uint8_t)wdsize, (uint32_t)count)
#else
#define QL_PRINT_15(...)
#define QL_DUMP_15(bp, wdsize, count)
#endif
#if QL_DEBUG & 0x8000
#define QL_DEBUG_LEVEL_16
#define QL_PRINT_16(ha, ...) ql_dbg_msg(ha, __func__, CE_CONT, __VA_ARGS__)
#define QL_DUMP_16(bp, wdsize, count) \
ql_dump_buffer((uint8_t *)bp, (uint8_t)wdsize, (uint32_t)count)
#else
#define QL_PRINT_16(...)
#define QL_DUMP_16(bp, wdsize, count)
#endif
#ifdef __cplusplus
}
#endif
#endif