freebsd-dev/sys/dev/vxge/include/vxge-debug.h
George V. Neville-Neil 548d35fd69 Exar driver for X3100 10GbE Server/Storage adapters
Features: Jumbo frames (up to 9600), LRO (Large Receive Offload),
          TSO (TCP segmentation offload), RTH (Receive Traffic Hash).

Submitted by: Sriram Rapuru at Exar
MFC after:	2 weeks
2011-04-28 14:33:15 +00:00

160 lines
6.6 KiB
C

/*-
* Copyright(c) 2002-2011 Exar Corp.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification are permitted provided the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the Exar Corporation nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
/*$FreeBSD$*/
#ifndef VXGE_DEBUG_H
#define VXGE_DEBUG_H
__EXTERN_BEGIN_DECLS
/*
* __FUNCTION__ is, together with __PRETTY_FUNCTION__ or something similar,
* a gcc extension. we'll have to #if defined around that, and provide some
* meaningful replacement for those, so to make some gcc versions happier
*/
#ifndef __func__
#if defined(__FUNCTION__)
#define __func__ __FUNCTION__
#else
#define __func__ " "
#endif
#endif
#define NULL_HLDEV NULL
#define NULL_VPID 0xFFFFFFFF
#define VXGE_DEBUG_MODULE_MASK_DEF 0xFFFFFFFF
#define VXGE_DEBUG_LEVEL_DEF VXGE_TRACE
extern u32 g_debug_level;
#ifndef VXGE_DEBUG_MODULE_MASK
#define VXGE_DEBUG_MODULE_MASK 0
#endif
/*
* enum vxge_debug_level_e
* @VXGE_NONE: debug disabled
* @VXGE_ERR: all errors going to be logged out
* @VXGE_INFO: all errors plus all kind of info tracing print outs
* going to be logged out. noisy.
* @VXGE_TRACE: all errors, all info plus all function entry and exit
* and parameters. Very noisy
*
* This enumeration going to be used to switch between different
* debug levels during runtime if DEBUG macro defined during
* compilation. If DEBUG macro not defined than code will be
* compiled out.
*/
typedef enum vxge_debug_level_e {
VXGE_NONE = 0x0,
VXGE_ERR = 0x1,
VXGE_INFO = 0x2,
VXGE_TRACE = 0x4,
} vxge_debug_level_e;
/*
* @VXGE_COMPONENT_HAL_DEVICE: do debug for vxge core device module
* @VXGE_COMPONENT_HAL_DEVICE_IRQ: do debug for vxge core device module in ISR
* @VXGE_COMPONENT_HAL_VAPTH: do debug for vxge core virtual path module
* @VXGE_COMPONENT_HAL_VAPTH_ISR: do debug for vxge core virtual path module in
* ISR
* @VXGE_COMPONENT_HAL_CONFIG: do debug for vxge core config module
* @VXGE_COMPONENT_HAL_MM: do debug for vxge core memory module
* @VXGE_COMPONENT_HAL_POOL: do debug for vxge core memory pool module
* @VXGE_COMPONENT_HAL_QUEUE: do debug for vxge core queue module
* @VXGE_COMPONENT_HAL_BITMAP: do debug for vxge core BITMAP module
* @VXGE_COMPONENT_HAL_CHANNEL: do debug for vxge core channel module
* @VXGE_COMPONENT_HAL_FIFO: do debug for vxge core fifo module
* @VXGE_COMPONENT_HAL_RING: do debug for vxge core ring module
* @VXGE_COMPONENT_HAL_DMQ: do debug for vxge core DMQ module
* @VXGE_COMPONENT_HAL_UMQ: do debug for vxge core UMQ module
* @VXGE_COMPONENT_HAL_SQ: do debug for vxge core SQ module
* @VXGE_COMPONENT_HAL_SRQ: do debug for vxge core SRQ module
* @VXGE_COMPONENT_HAL_CQRQ: do debug for vxge core CRQ module
* @VXGE_COMPONENT_HAL_NCE: do debug for vxge core NCE module
* @VXGE_COMPONENT_HAL_STAG: do debug for vxge core STAG module
* @VXGE_COMPONENT_HAL_TCP: do debug for vxge core TCP module
* @VXGE_COMPONENT_HAL_LRO: do debug for vxge core LRO module
* @VXGE_COMPONENT_HAL_SPDM: do debug for vxge core SPDM module
* @VXGE_COMPONENT_HAL_SESSION: do debug for vxge core SESSION module
* @VXGE_COMPONENT_HAL_STATS: do debug for vxge core statistics module
* @VXGE_COMPONENT_HAL_MRPCIM: do debug for vxge KMA core mrpcim module
* @VXGE_COMPONENT_HAL_SRPCIM: do debug for vxge KMA core srpcim module
* @VXGE_COMPONENT_OSDEP: do debug for vxge KMA os dependent parts
* @VXGE_COMPONENT_LL: do debug for vxge link layer module
* @VXGE_COMPONENT_ULD: do debug for vxge upper layer driver
* @VXGE_COMPONENT_ALL: activate debug for all modules with no exceptions
*
* This enumeration going to be used to distinguish modules
* or libraries during compilation and runtime. Makefile must declare
* VXGE_DEBUG_MODULE_MASK macro and set it to proper value.
*/
#define VXGE_COMPONENT_HAL_DEVICE 0x00000001
#define VXGE_COMPONENT_HAL_DEVICE_IRQ 0x00000002
#define VXGE_COMPONENT_HAL_VPATH 0x00000004
#define VXGE_COMPONENT_HAL_VPATH_IRQ 0x00000008
#define VXGE_COMPONENT_HAL_CONFIG 0x00000010
#define VXGE_COMPONENT_HAL_MM 0x00000020
#define VXGE_COMPONENT_HAL_POOL 0x00000040
#define VXGE_COMPONENT_HAL_QUEUE 0x00000080
#define VXGE_COMPONENT_HAL_BITMAP 0x00000100
#define VXGE_COMPONENT_HAL_CHANNEL 0x00000200
#define VXGE_COMPONENT_HAL_FIFO 0x00000400
#define VXGE_COMPONENT_HAL_RING 0x00000800
#define VXGE_COMPONENT_HAL_DMQ 0x00001000
#define VXGE_COMPONENT_HAL_UMQ 0x00002000
#define VXGE_COMPONENT_HAL_SQ 0x00004000
#define VXGE_COMPONENT_HAL_SRQ 0x00008000
#define VXGE_COMPONENT_HAL_CQRQ 0x00010000
#define VXGE_COMPONENT_HAL_NCE 0x00020000
#define VXGE_COMPONENT_HAL_STAG 0x00040000
#define VXGE_COMPONENT_HAL_TCP 0x00080000
#define VXGE_COMPONENT_HAL_LRO 0x00100000
#define VXGE_COMPONENT_HAL_SPDM 0x00200000
#define VXGE_COMPONENT_HAL_SESSION 0x00400000
#define VXGE_COMPONENT_HAL_STATS 0x00800000
#define VXGE_COMPONENT_HAL_MRPCIM 0x01000000
#define VXGE_COMPONENT_HAL_MRPCIM_IRQ 0x02000000
#define VXGE_COMPONENT_HAL_SRPCIM 0x04000000
#define VXGE_COMPONENT_HAL_SRPCIM_IRQ 0x08000000
#define VXGE_COMPONENT_HAL_DRIVER 0x10000000
/* space for CORE_XXX */
#define VXGE_COMPONENT_OSDEP 0x20000000
#define VXGE_COMPONENT_LL 0x40000000
#define VXGE_COMPONENT_ULD 0x80000000
#define VXGE_COMPONENT_ALL 0xffffffff
__EXTERN_END_DECLS
#endif /* VXGE_DEBUG_H */