1 /**************************************************************************
3 * Copyright © 2000-2008 Alacritech, Inc. All rights reserved.
5 * $Id: sxgdbg.h,v 1.1 2008/06/27 12:49:28 mook Exp $
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following
15 * disclaimer in the documentation and/or other materials provided
16 * with the distribution.
18 * THIS SOFTWARE IS PROVIDED BY ALACRITECH, INC. ``AS IS'' AND ANY
19 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ALACRITECH, INC. OR
22 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
25 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
28 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * The views and conclusions contained in the software and documentation
32 * are those of the authors and should not be interpreted as representing
33 * official policies, either expressed or implied, of Alacritech, Inc.
35 **************************************************************************/
40 * All debug and assertion-based definitions and macros are included
41 * in this file for the SXGOSS driver.
47 #define ATK_TRACE_ENABLED 0
49 #define DBG_ERROR(n, args...) printk(KERN_WARNING n, ##args)
55 #define SXG_ASSERT_ENABLED
56 #ifdef SXG_ASSERT_ENABLED
61 DBG_ERROR("ASSERT() Failure: file %s, function %s line %d\n", \
62 __FILE__, __func__, __LINE__); \
70 #endif /* SXG_ASSERT_ENABLED */
75 * Global for timer granularity; every driver must have an instance
76 * of this initialized to 0
79 extern ulong ATKTimerDiv;
84 * This structure defines an entry in the trace buffer. The
85 * first few fields mean the same from entry to entry, while
86 * the meaning of last several fields change to suit the
87 * needs of the trace entry. Typically they are function call
91 char name[8];/* 8 character name - like 's'i'm'b'a'r'c'v' */
92 u32 time; /* Current clock tic */
93 unsigned char cpu; /* Current CPU */
94 unsigned char irql; /* Current IRQL */
95 unsigned char driver;/* The driver which added the trace call */
96 /* pad to 4 byte boundary - will probably get used */
98 u32 arg1; /* Caller arg1 */
99 u32 arg2; /* Caller arg2 */
100 u32 arg3; /* Caller arg3 */
101 u32 arg4; /* Caller arg4 */
104 /* Driver types for driver field in struct trace_entry */
109 #define TRACE_ENTRIES 1024
111 struct sxg_trace_buffer {
112 /* aid for windbg extension */
114 unsigned int in; /* Where to add */
115 unsigned int level; /* Current Trace level */
116 spinlock_t lock; /* For MP tracing */
117 struct trace_entry entries[TRACE_ENTRIES];/* The circular buffer */
123 * XXX At the moment I am only defining critical, important, and noisy.
124 * I am leaving room for more if anyone wants them.
126 #define TRACE_NONE 0 /* For trace level - if no tracing wanted */
127 #define TRACE_CRITICAL 1 /* minimal tracing - only critical stuff */
128 #define TRACE_IMPORTANT 5 /* more tracing - anything important */
129 #define TRACE_NOISY 10 /* Everything in the world */
132 /* The macros themselves */
133 #if ATK_TRACE_ENABLED
134 #define SXG_TRACE_INIT(buffer, tlevel) \
136 memset((buffer), 0, sizeof(struct sxg_trace_buffer)); \
137 (buffer)->level = (tlevel); \
138 (buffer)->size = TRACE_ENTRIES; \
139 spin_lock_init(&(buffer)->lock); \
142 #define SXG_TRACE_INIT(buffer, tlevel)
145 /*The trace macro. This is active only if ATK_TRACE_ENABLED is set. */
146 #if ATK_TRACE_ENABLED
147 #define SXG_TRACE(tdriver, buffer, tlevel, tname, a1, a2, a3, a4) { \
148 if ((buffer) && ((buffer)->level >= (tlevel))) { \
149 unsigned int trace_irql = 0;/* ?????? FIX THIS */\
150 unsigned int trace_len; \
151 struct trace_entry *trace_entry; \
152 struct timeval timev; \
153 if(spin_trylock(&(buffer)->lock)) { \
154 trace_entry = &(buffer)->entries[(buffer)->in]; \
155 do_gettimeofday(&timev); \
157 memset(trace_entry->name, 0, 8); \
158 trace_len = strlen(tname); \
159 trace_len = trace_len > 8 ? 8 : trace_len; \
160 memcpy(trace_entry->name, (tname), trace_len); \
161 trace_entry->time = timev.tv_usec; \
162 trace_entry->cpu = (unsigned char)(smp_processor_id() & 0xFF);\
163 trace_entry->driver = (tdriver); \
164 trace_entry->irql = trace_irql; \
165 trace_entry->arg1 = (ulong)(a1); \
166 trace_entry->arg2 = (ulong)(a2); \
167 trace_entry->arg3 = (ulong)(a3); \
168 trace_entry->arg4 = (ulong)(a4); \
171 if ((buffer)->in == TRACE_ENTRIES) \
174 spin_unlock(&(buffer)->lock); \
179 #define SXG_TRACE(tdriver, buffer, tlevel, tname, a1, a2, a3, a4)
184 #endif /* _SXG_DEBUG_H_ */