2 * include/asm-s390/debug.h
5 * Copyright (C) 1999, 2000 IBM Deutschland Entwicklung GmbH,
15 * struct __debug_entry must be defined outside of #ifdef __KERNEL__
16 * in order to allow a user program to analyze the 'raw'-view.
22 unsigned long long clock
:52;
23 unsigned long long exception
:1;
24 unsigned long long level
:3;
25 unsigned long long cpuid
:8;
28 unsigned long long stck
;
31 } __attribute__((packed
));
34 #define __DEBUG_FEATURE_VERSION 2 /* version of debug feature */
37 #include <linux/string.h>
38 #include <linux/spinlock.h>
39 #include <linux/kernel.h>
40 #include <linux/time.h>
42 #define DEBUG_MAX_LEVEL 6 /* debug levels range from 0 to 6 */
43 #define DEBUG_OFF_LEVEL -1 /* level where debug is switched off */
44 #define DEBUG_FLUSH_ALL -1 /* parameter to flush all areas */
45 #define DEBUG_MAX_VIEWS 10 /* max number of views in proc fs */
46 #define DEBUG_MAX_NAME_LEN 64 /* max length for a debugfs file name */
47 #define DEBUG_DEFAULT_LEVEL 3 /* initial debug level */
49 #define DEBUG_DIR_ROOT "s390dbf" /* name of debug root directory in proc fs */
51 #define DEBUG_DATA(entry) (char*)(entry + 1) /* data is stored behind */
52 /* the entry information */
54 typedef struct __debug_entry debug_entry_t
;
58 typedef struct debug_info
{
59 struct debug_info
* next
;
60 struct debug_info
* prev
;
68 debug_entry_t
*** areas
;
72 struct dentry
* debugfs_root_entry
;
73 struct dentry
* debugfs_entries
[DEBUG_MAX_VIEWS
];
74 struct debug_view
* views
[DEBUG_MAX_VIEWS
];
75 char name
[DEBUG_MAX_NAME_LEN
];
79 typedef int (debug_header_proc_t
) (debug_info_t
* id
,
80 struct debug_view
* view
,
85 typedef int (debug_format_proc_t
) (debug_info_t
* id
,
86 struct debug_view
* view
, char* out_buf
,
88 typedef int (debug_prolog_proc_t
) (debug_info_t
* id
,
89 struct debug_view
* view
,
91 typedef int (debug_input_proc_t
) (debug_info_t
* id
,
92 struct debug_view
* view
,
94 const char __user
*user_buf
,
95 size_t in_buf_size
, loff_t
* offset
);
97 int debug_dflt_header_fn(debug_info_t
* id
, struct debug_view
* view
,
98 int area
, debug_entry_t
* entry
, char* out_buf
);
101 char name
[DEBUG_MAX_NAME_LEN
];
102 debug_prolog_proc_t
* prolog_proc
;
103 debug_header_proc_t
* header_proc
;
104 debug_format_proc_t
* format_proc
;
105 debug_input_proc_t
* input_proc
;
109 extern struct debug_view debug_hex_ascii_view
;
110 extern struct debug_view debug_raw_view
;
111 extern struct debug_view debug_sprintf_view
;
113 /* do NOT use the _common functions */
115 debug_entry_t
* debug_event_common(debug_info_t
* id
, int level
,
116 const void* data
, int length
);
118 debug_entry_t
* debug_exception_common(debug_info_t
* id
, int level
,
119 const void* data
, int length
);
121 /* Debug Feature API: */
123 debug_info_t
*debug_register(const char *name
, int pages
, int nr_areas
,
126 debug_info_t
*debug_register_mode(const char *name
, int pages
, int nr_areas
,
127 int buf_size
, mode_t mode
, uid_t uid
,
130 void debug_unregister(debug_info_t
* id
);
132 void debug_set_level(debug_info_t
* id
, int new_level
);
134 void debug_stop_all(void);
136 static inline debug_entry_t
*
137 debug_event(debug_info_t
* id
, int level
, void* data
, int length
)
139 if ((!id
) || (level
> id
->level
) || (id
->pages_per_area
== 0))
141 return debug_event_common(id
,level
,data
,length
);
144 static inline debug_entry_t
*
145 debug_int_event(debug_info_t
* id
, int level
, unsigned int tag
)
148 if ((!id
) || (level
> id
->level
) || (id
->pages_per_area
== 0))
150 return debug_event_common(id
,level
,&t
,sizeof(unsigned int));
153 static inline debug_entry_t
*
154 debug_long_event (debug_info_t
* id
, int level
, unsigned long tag
)
157 if ((!id
) || (level
> id
->level
) || (id
->pages_per_area
== 0))
159 return debug_event_common(id
,level
,&t
,sizeof(unsigned long));
162 static inline debug_entry_t
*
163 debug_text_event(debug_info_t
* id
, int level
, const char* txt
)
165 if ((!id
) || (level
> id
->level
) || (id
->pages_per_area
== 0))
167 return debug_event_common(id
,level
,txt
,strlen(txt
));
170 extern debug_entry_t
*
171 debug_sprintf_event(debug_info_t
* id
,int level
,char *string
,...)
172 __attribute__ ((format(printf
, 3, 4)));
175 static inline debug_entry_t
*
176 debug_exception(debug_info_t
* id
, int level
, void* data
, int length
)
178 if ((!id
) || (level
> id
->level
) || (id
->pages_per_area
== 0))
180 return debug_exception_common(id
,level
,data
,length
);
183 static inline debug_entry_t
*
184 debug_int_exception(debug_info_t
* id
, int level
, unsigned int tag
)
187 if ((!id
) || (level
> id
->level
) || (id
->pages_per_area
== 0))
189 return debug_exception_common(id
,level
,&t
,sizeof(unsigned int));
192 static inline debug_entry_t
*
193 debug_long_exception (debug_info_t
* id
, int level
, unsigned long tag
)
196 if ((!id
) || (level
> id
->level
) || (id
->pages_per_area
== 0))
198 return debug_exception_common(id
,level
,&t
,sizeof(unsigned long));
201 static inline debug_entry_t
*
202 debug_text_exception(debug_info_t
* id
, int level
, const char* txt
)
204 if ((!id
) || (level
> id
->level
) || (id
->pages_per_area
== 0))
206 return debug_exception_common(id
,level
,txt
,strlen(txt
));
210 extern debug_entry_t
*
211 debug_sprintf_exception(debug_info_t
* id
,int level
,char *string
,...)
212 __attribute__ ((format(printf
, 3, 4)));
214 int debug_register_view(debug_info_t
* id
, struct debug_view
* view
);
215 int debug_unregister_view(debug_info_t
* id
, struct debug_view
* view
);
218 define the debug levels:
219 - 0 No debugging output to console or syslog
220 - 1 Log internal errors to syslog, ignore check conditions
221 - 2 Log internal errors and check conditions to syslog
222 - 3 Log internal errors to console, log check conditions to syslog
223 - 4 Log internal errors and check conditions to console
224 - 5 panic on internal errors, log check conditions to console
225 - 6 panic on both, internal errors and check conditions
229 #define DEBUG_LEVEL 4
232 #define INTERNAL_ERRMSG(x,y...) "E" __FILE__ "%d: " x, __LINE__, y
233 #define INTERNAL_WRNMSG(x,y...) "W" __FILE__ "%d: " x, __LINE__, y
234 #define INTERNAL_INFMSG(x,y...) "I" __FILE__ "%d: " x, __LINE__, y
235 #define INTERNAL_DEBMSG(x,y...) "D" __FILE__ "%d: " x, __LINE__, y
238 #define PRINT_DEBUG(x...) printk ( KERN_DEBUG PRINTK_HEADER x )
239 #define PRINT_INFO(x...) printk ( KERN_INFO PRINTK_HEADER x )
240 #define PRINT_WARN(x...) printk ( KERN_WARNING PRINTK_HEADER x )
241 #define PRINT_ERR(x...) printk ( KERN_ERR PRINTK_HEADER x )
242 #define PRINT_FATAL(x...) panic ( PRINTK_HEADER x )
244 #define PRINT_DEBUG(x...) printk ( KERN_DEBUG PRINTK_HEADER x )
245 #define PRINT_INFO(x...) printk ( KERN_DEBUG PRINTK_HEADER x )
246 #define PRINT_WARN(x...) printk ( KERN_DEBUG PRINTK_HEADER x )
247 #define PRINT_ERR(x...) printk ( KERN_DEBUG PRINTK_HEADER x )
248 #define PRINT_FATAL(x...) printk ( KERN_DEBUG PRINTK_HEADER x )
249 #endif /* DASD_DEBUG */
254 #define kmalloc(x...) (PRINT_INFO(" kmalloc %p\n",b=kmalloc(x)),b)
255 #define kfree(x) PRINT_INFO(" kfree %p\n",x);kfree(x)
256 #define get_zeroed_page(x...) (PRINT_INFO(" gfp %p\n",b=get_zeroed_page(x)),b)
257 #define __get_free_pages(x...) (PRINT_INFO(" gfps %p\n",b=__get_free_pages(x)),b)
258 #endif /* DEBUG_MALLOC */
260 #endif /* __KERNEL__ */