diff options
Diffstat (limited to 'usr/src/uts/common/io/ixgbe/ixgbe_debug.h')
-rw-r--r-- | usr/src/uts/common/io/ixgbe/ixgbe_debug.h | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/usr/src/uts/common/io/ixgbe/ixgbe_debug.h b/usr/src/uts/common/io/ixgbe/ixgbe_debug.h new file mode 100644 index 0000000000..3c314654c3 --- /dev/null +++ b/usr/src/uts/common/io/ixgbe/ixgbe_debug.h @@ -0,0 +1,88 @@ +/* + * CDDL HEADER START + * + * Copyright(c) 2007-2008 Intel Corporation. All rights reserved. + * The contents of this file are subject to the terms of the + * Common Development and Distribution License (the "License"). + * You may not use this file except in compliance with the License. + * + * You can obtain a copy of the license at: + * http://www.opensolaris.org/os/licensing. + * See the License for the specific language governing permissions + * and limitations under the License. + * + * When using or redistributing this file, you may do so under the + * License only. No other modification of this header is permitted. + * + * If applicable, add the following below this CDDL HEADER, with the + * fields enclosed by brackets "[]" replaced with your own identifying + * information: Portions Copyright [yyyy] [name of copyright owner] + * + * CDDL HEADER END + */ + +/* + * Copyright 2008 Sun Microsystems, Inc. All rights reserved. + * Use is subject to license terms of the CDDL. + */ + +#ifndef _IXGBE_DEBUG_H +#define _IXGBE_DEBUG_H + +#pragma ident "%Z%%M% %I% %E% SMI" + +#ifdef __cplusplus +extern "C" { +#endif + + +#ifdef DEBUG +#define IXGBE_DEBUG +#endif + +#ifdef IXGBE_DEBUG + +#define IXGBE_DEBUGLOG_0(adapter, fmt) \ + ixgbe_log((adapter), (fmt)) +#define IXGBE_DEBUGLOG_1(adapter, fmt, d1) \ + ixgbe_log((adapter), (fmt), (d1)) +#define IXGBE_DEBUGLOG_2(adapter, fmt, d1, d2) \ + ixgbe_log((adapter), (fmt), (d1), (d2)) +#define IXGBE_DEBUGLOG_3(adapter, fmt, d1, d2, d3) \ + ixgbe_log((adapter), (fmt), (d1), (d2), (d3)) +#define IXGBE_DEBUGLOG_6(adapter, fmt, d1, d2, d3, d4, d5, d6) \ + ixgbe_log((adapter), (fmt), (d1), (d2), (d3), (d4), (d5), (d6)) + +#define IXGBE_DEBUG_STAT_COND(val, cond) if (cond) (val)++; +#define IXGBE_DEBUG_STAT(val) (val)++; + +#else + +#define IXGBE_DEBUGLOG_0(adapter, fmt) +#define IXGBE_DEBUGLOG_1(adapter, fmt, d1) +#define IXGBE_DEBUGLOG_2(adapter, fmt, d1, d2) +#define IXGBE_DEBUGLOG_3(adapter, fmt, d1, d2, d3) +#define IXGBE_DEBUGLOG_6(adapter, fmt, d1, d2, d3, d4, d5, d6) + +#define IXGBE_DEBUG_STAT_COND(val, cond) +#define IXGBE_DEBUG_STAT(val) + +#endif /* IXGBE_DEBUG */ + +#define IXGBE_STAT(val) (val)++; + +#ifdef IXGBE_DEBUG + +void ixgbe_pci_dump(void *); +void ixgbe_dump_interrupt(void *, char *); +void ixgbe_dump_addr(void *, char *, const uint8_t *); + +#endif /* IXGBE_DEBUG */ + +extern void ixgbe_log(void *, const char *, ...); + +#ifdef __cplusplus +} +#endif + +#endif /* _IXGBE_DEBUG_H */ |