blob: 77f24262c25c18764f3c87f8e6a1b706db5714a1 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * S/390 debug facility
4 *
Mikhail Zaslonko0990d832020-05-05 10:34:52 +02005 * Copyright IBM Corp. 1999, 2020
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#ifndef DEBUG_H
8#define DEBUG_H
9
David Woodhouse124b51c2006-09-16 12:15:46 -070010#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/spinlock.h>
12#include <linux/kernel.h>
13#include <linux/time.h>
Elena Reshetovaefc0c212017-03-02 12:23:45 +010014#include <linux/refcount.h>
Heiko Carstens6ffb3f62020-06-18 07:41:18 +020015#include <linux/fs.h>
Peter Oberparleiterd72541f2021-08-13 15:05:04 +020016#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Heiko Carstens496da0d2017-10-13 09:06:29 +020018#define DEBUG_MAX_LEVEL 6 /* debug levels range from 0 to 6 */
19#define DEBUG_OFF_LEVEL -1 /* level where debug is switched off */
20#define DEBUG_FLUSH_ALL -1 /* parameter to flush all areas */
21#define DEBUG_MAX_VIEWS 10 /* max number of views in proc fs */
22#define DEBUG_MAX_NAME_LEN 64 /* max length for a debugfs file name */
23#define DEBUG_DEFAULT_LEVEL 3 /* initial debug level */
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#define DEBUG_DIR_ROOT "s390dbf" /* name of debug root directory in proc fs */
26
Heiko Carstens496da0d2017-10-13 09:06:29 +020027#define DEBUG_DATA(entry) (char *)(entry + 1) /* data is stored behind */
28 /* the entry information */
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Mikhail Zaslonko0990d832020-05-05 10:34:52 +020030#define __DEBUG_FEATURE_VERSION 3 /* version of debug feature */
Heiko Carstens6ffb3f62020-06-18 07:41:18 +020031
32struct __debug_entry {
Mikhail Zaslonko0990d832020-05-05 10:34:52 +020033 unsigned long clock : 60;
34 unsigned long exception : 1;
35 unsigned long level : 3;
Heiko Carstens6ffb3f62020-06-18 07:41:18 +020036 void *caller;
Mikhail Zaslonko0990d832020-05-05 10:34:52 +020037 unsigned short cpu;
Heiko Carstens6ffb3f62020-06-18 07:41:18 +020038} __packed;
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040typedef struct __debug_entry debug_entry_t;
41
42struct debug_view;
43
Heiko Carstens496da0d2017-10-13 09:06:29 +020044typedef struct debug_info {
45 struct debug_info *next;
46 struct debug_info *prev;
Elena Reshetovaefc0c212017-03-02 12:23:45 +010047 refcount_t ref_count;
Heiko Carstens496da0d2017-10-13 09:06:29 +020048 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 int level;
50 int nr_areas;
Michael Holzheu66a464d2005-06-25 14:55:33 -070051 int pages_per_area;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 int buf_size;
Heiko Carstens496da0d2017-10-13 09:06:29 +020053 int entry_size;
54 debug_entry_t ***areas;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 int active_area;
Michael Holzheu66a464d2005-06-25 14:55:33 -070056 int *active_pages;
57 int *active_entries;
Heiko Carstens496da0d2017-10-13 09:06:29 +020058 struct dentry *debugfs_root_entry;
59 struct dentry *debugfs_entries[DEBUG_MAX_VIEWS];
60 struct debug_view *views[DEBUG_MAX_VIEWS];
Michael Holzheu66a464d2005-06-25 14:55:33 -070061 char name[DEBUG_MAX_NAME_LEN];
Al Virof4ae40a62011-07-24 04:33:43 -040062 umode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063} debug_info_t;
64
Heiko Carstens496da0d2017-10-13 09:06:29 +020065typedef int (debug_header_proc_t) (debug_info_t *id,
66 struct debug_view *view,
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 int area,
Heiko Carstens496da0d2017-10-13 09:06:29 +020068 debug_entry_t *entry,
69 char *out_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Heiko Carstens496da0d2017-10-13 09:06:29 +020071typedef int (debug_format_proc_t) (debug_info_t *id,
72 struct debug_view *view, char *out_buf,
73 const char *in_buf);
74typedef int (debug_prolog_proc_t) (debug_info_t *id,
75 struct debug_view *view,
76 char *out_buf);
77typedef int (debug_input_proc_t) (debug_info_t *id,
78 struct debug_view *view,
79 struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 const char __user *user_buf,
Heiko Carstens496da0d2017-10-13 09:06:29 +020081 size_t in_buf_size, loff_t *offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Heiko Carstens496da0d2017-10-13 09:06:29 +020083int debug_dflt_header_fn(debug_info_t *id, struct debug_view *view,
84 int area, debug_entry_t *entry, char *out_buf);
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086struct debug_view {
Michael Holzheu66a464d2005-06-25 14:55:33 -070087 char name[DEBUG_MAX_NAME_LEN];
Heiko Carstens496da0d2017-10-13 09:06:29 +020088 debug_prolog_proc_t *prolog_proc;
89 debug_header_proc_t *header_proc;
90 debug_format_proc_t *format_proc;
91 debug_input_proc_t *input_proc;
92 void *private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093};
94
95extern struct debug_view debug_hex_ascii_view;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096extern struct debug_view debug_sprintf_view;
97
98/* do NOT use the _common functions */
99
Heiko Carstens496da0d2017-10-13 09:06:29 +0200100debug_entry_t *debug_event_common(debug_info_t *id, int level,
101 const void *data, int length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Heiko Carstens496da0d2017-10-13 09:06:29 +0200103debug_entry_t *debug_exception_common(debug_info_t *id, int level,
104 const void *data, int length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106/* Debug Feature API: */
107
Cornelia Huck5cbbf162008-05-15 16:52:35 +0200108debug_info_t *debug_register(const char *name, int pages, int nr_areas,
Heiko Carstens496da0d2017-10-13 09:06:29 +0200109 int buf_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Cornelia Huck5cbbf162008-05-15 16:52:35 +0200111debug_info_t *debug_register_mode(const char *name, int pages, int nr_areas,
Al Virof4ae40a62011-07-24 04:33:43 -0400112 int buf_size, umode_t mode, uid_t uid,
Michael Holzheu9637c3f2008-04-17 07:46:18 +0200113 gid_t gid);
114
Heiko Carstens496da0d2017-10-13 09:06:29 +0200115void debug_unregister(debug_info_t *id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Heiko Carstens496da0d2017-10-13 09:06:29 +0200117void debug_set_level(debug_info_t *id, int new_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Michael Holzheu3ab121a2012-03-11 11:59:32 -0400119void debug_set_critical(void);
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121void debug_stop_all(void);
122
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300123/**
124 * debug_level_enabled() - Returns true if debug events for the specified
125 * level would be logged. Otherwise returns false.
126 *
127 * @id: handle for debug log
128 * @level: debug level
129 *
130 * Return:
131 * - %true if level is less or equal to the current debug level.
132 */
Heiko Carstens496da0d2017-10-13 09:06:29 +0200133static inline bool debug_level_enabled(debug_info_t *id, int level)
Hendrik Bruecknerf1d86b62013-09-18 17:21:34 +0200134{
135 return level <= id->level;
136}
137
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300138/**
Steffen Maier0328e512019-07-03 12:19:48 +0200139 * debug_event() - writes binary debug entry to active debug area
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300140 * (if level <= actual debug level)
141 *
142 * @id: handle for debug log
143 * @level: debug level
144 * @data: pointer to data for debug entry
145 * @length: length of data in bytes
146 *
147 * Return:
148 * - Address of written debug entry
Steffen Maier0328e512019-07-03 12:19:48 +0200149 * - %NULL if error
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300150 */
Heiko Carstens496da0d2017-10-13 09:06:29 +0200151static inline debug_entry_t *debug_event(debug_info_t *id, int level,
152 void *data, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Michael Holzheu66a464d2005-06-25 14:55:33 -0700154 if ((!id) || (level > id->level) || (id->pages_per_area == 0))
155 return NULL;
Heiko Carstens496da0d2017-10-13 09:06:29 +0200156 return debug_event_common(id, level, data, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300159/**
Steffen Maier0328e512019-07-03 12:19:48 +0200160 * debug_int_event() - writes unsigned integer debug entry to active debug area
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300161 * (if level <= actual debug level)
162 *
163 * @id: handle for debug log
164 * @level: debug level
165 * @tag: integer value for debug entry
166 *
167 * Return:
168 * - Address of written debug entry
169 * - %NULL if error
170 */
Heiko Carstens496da0d2017-10-13 09:06:29 +0200171static inline debug_entry_t *debug_int_event(debug_info_t *id, int level,
172 unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Heiko Carstens496da0d2017-10-13 09:06:29 +0200174 unsigned int t = tag;
175
Michael Holzheu66a464d2005-06-25 14:55:33 -0700176 if ((!id) || (level > id->level) || (id->pages_per_area == 0))
177 return NULL;
Heiko Carstens496da0d2017-10-13 09:06:29 +0200178 return debug_event_common(id, level, &t, sizeof(unsigned int));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300181/**
Steffen Maier0328e512019-07-03 12:19:48 +0200182 * debug_long_event() - writes unsigned long debug entry to active debug area
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300183 * (if level <= actual debug level)
184 *
185 * @id: handle for debug log
186 * @level: debug level
Steffen Maier0328e512019-07-03 12:19:48 +0200187 * @tag: long integer value for debug entry
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300188 *
189 * Return:
190 * - Address of written debug entry
191 * - %NULL if error
192 */
Heiko Carstens496da0d2017-10-13 09:06:29 +0200193static inline debug_entry_t *debug_long_event(debug_info_t *id, int level,
194 unsigned long tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Heiko Carstens496da0d2017-10-13 09:06:29 +0200196 unsigned long t = tag;
197
Michael Holzheu66a464d2005-06-25 14:55:33 -0700198 if ((!id) || (level > id->level) || (id->pages_per_area == 0))
199 return NULL;
Heiko Carstens496da0d2017-10-13 09:06:29 +0200200 return debug_event_common(id, level, &t, sizeof(unsigned long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300203/**
Steffen Maier0328e512019-07-03 12:19:48 +0200204 * debug_text_event() - writes string debug entry in ascii format to active
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300205 * debug area (if level <= actual debug level)
206 *
207 * @id: handle for debug log
208 * @level: debug level
209 * @txt: string for debug entry
210 *
211 * Return:
212 * - Address of written debug entry
213 * - %NULL if error
214 */
Heiko Carstens496da0d2017-10-13 09:06:29 +0200215static inline debug_entry_t *debug_text_event(debug_info_t *id, int level,
216 const char *txt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Michael Holzheu66a464d2005-06-25 14:55:33 -0700218 if ((!id) || (level > id->level) || (id->pages_per_area == 0))
219 return NULL;
Heiko Carstens496da0d2017-10-13 09:06:29 +0200220 return debug_event_common(id, level, txt, strlen(txt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
Michael Holzheuf64d04c2009-09-11 10:28:59 +0200223/*
224 * IMPORTANT: Use "%s" in sprintf format strings with care! Only pointers are
Mauro Carvalho Chehab8b4a5032019-06-08 23:27:16 -0300225 * stored in the s390dbf. See Documentation/s390/s390dbf.rst for more details!
Michael Holzheuf64d04c2009-09-11 10:28:59 +0200226 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227extern debug_entry_t *
Christian Borntraeger832a7712014-12-01 09:16:45 +0100228__debug_sprintf_event(debug_info_t *id, int level, char *string, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 __attribute__ ((format(printf, 3, 4)));
230
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300231/**
232 * debug_sprintf_event() - writes debug entry with format string
233 * and varargs (longs) to active debug area
234 * (if level $<=$ actual debug level).
235 *
236 * @_id: handle for debug log
237 * @_level: debug level
238 * @_fmt: format string for debug entry
239 * @...: varargs used as in sprintf()
240 *
241 * Return:
242 * - Address of written debug entry
243 * - %NULL if error
244 *
245 * floats and long long datatypes cannot be used as varargs.
246 */
Christian Borntraeger832a7712014-12-01 09:16:45 +0100247#define debug_sprintf_event(_id, _level, _fmt, ...) \
248({ \
249 debug_entry_t *__ret; \
250 debug_info_t *__id = _id; \
251 int __level = _level; \
Heiko Carstens496da0d2017-10-13 09:06:29 +0200252 \
Christian Borntraeger832a7712014-12-01 09:16:45 +0100253 if ((!__id) || (__level > __id->level)) \
254 __ret = NULL; \
255 else \
256 __ret = __debug_sprintf_event(__id, __level, \
257 _fmt, ## __VA_ARGS__); \
258 __ret; \
259})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300261/**
Steffen Maier0328e512019-07-03 12:19:48 +0200262 * debug_exception() - writes binary debug entry to active debug area
263 * (if level <= actual debug level)
264 * and switches to next debug area
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300265 *
266 * @id: handle for debug log
267 * @level: debug level
268 * @data: pointer to data for debug entry
269 * @length: length of data in bytes
270 *
271 * Return:
272 * - Address of written debug entry
273 * - %NULL if error
274 */
Heiko Carstens496da0d2017-10-13 09:06:29 +0200275static inline debug_entry_t *debug_exception(debug_info_t *id, int level,
276 void *data, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Michael Holzheu66a464d2005-06-25 14:55:33 -0700278 if ((!id) || (level > id->level) || (id->pages_per_area == 0))
279 return NULL;
Heiko Carstens496da0d2017-10-13 09:06:29 +0200280 return debug_exception_common(id, level, data, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300283/**
Steffen Maier0328e512019-07-03 12:19:48 +0200284 * debug_int_exception() - writes unsigned int debug entry to active debug area
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300285 * (if level <= actual debug level)
286 * and switches to next debug area
287 *
288 * @id: handle for debug log
289 * @level: debug level
290 * @tag: integer value for debug entry
291 *
292 * Return:
293 * - Address of written debug entry
294 * - %NULL if error
295 */
Heiko Carstens496da0d2017-10-13 09:06:29 +0200296static inline debug_entry_t *debug_int_exception(debug_info_t *id, int level,
297 unsigned int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Heiko Carstens496da0d2017-10-13 09:06:29 +0200299 unsigned int t = tag;
300
Michael Holzheu66a464d2005-06-25 14:55:33 -0700301 if ((!id) || (level > id->level) || (id->pages_per_area == 0))
302 return NULL;
Heiko Carstens496da0d2017-10-13 09:06:29 +0200303 return debug_exception_common(id, level, &t, sizeof(unsigned int));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300306/**
Steffen Maier0328e512019-07-03 12:19:48 +0200307 * debug_long_exception() - writes long debug entry to active debug area
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300308 * (if level <= actual debug level)
309 * and switches to next debug area
310 *
311 * @id: handle for debug log
312 * @level: debug level
Steffen Maier0328e512019-07-03 12:19:48 +0200313 * @tag: long integer value for debug entry
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300314 *
315 * Return:
316 * - Address of written debug entry
317 * - %NULL if error
318 */
Heiko Carstens496da0d2017-10-13 09:06:29 +0200319static inline debug_entry_t *debug_long_exception (debug_info_t *id, int level,
320 unsigned long tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
Heiko Carstens496da0d2017-10-13 09:06:29 +0200322 unsigned long t = tag;
323
Michael Holzheu66a464d2005-06-25 14:55:33 -0700324 if ((!id) || (level > id->level) || (id->pages_per_area == 0))
325 return NULL;
Heiko Carstens496da0d2017-10-13 09:06:29 +0200326 return debug_exception_common(id, level, &t, sizeof(unsigned long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300329/**
Steffen Maier0328e512019-07-03 12:19:48 +0200330 * debug_text_exception() - writes string debug entry in ascii format to active
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300331 * debug area (if level <= actual debug level)
Steffen Maier0328e512019-07-03 12:19:48 +0200332 * and switches to next debug area
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300333 * area
334 *
335 * @id: handle for debug log
336 * @level: debug level
337 * @txt: string for debug entry
338 *
339 * Return:
340 * - Address of written debug entry
341 * - %NULL if error
342 */
Heiko Carstens496da0d2017-10-13 09:06:29 +0200343static inline debug_entry_t *debug_text_exception(debug_info_t *id, int level,
344 const char *txt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Michael Holzheu66a464d2005-06-25 14:55:33 -0700346 if ((!id) || (level > id->level) || (id->pages_per_area == 0))
347 return NULL;
Heiko Carstens496da0d2017-10-13 09:06:29 +0200348 return debug_exception_common(id, level, txt, strlen(txt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
Michael Holzheuf64d04c2009-09-11 10:28:59 +0200351/*
352 * IMPORTANT: Use "%s" in sprintf format strings with care! Only pointers are
Mauro Carvalho Chehab8b4a5032019-06-08 23:27:16 -0300353 * stored in the s390dbf. See Documentation/s390/s390dbf.rst for more details!
Michael Holzheuf64d04c2009-09-11 10:28:59 +0200354 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355extern debug_entry_t *
Christian Borntraeger832a7712014-12-01 09:16:45 +0100356__debug_sprintf_exception(debug_info_t *id, int level, char *string, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 __attribute__ ((format(printf, 3, 4)));
358
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300359
360/**
361 * debug_sprintf_exception() - writes debug entry with format string and
362 * varargs (longs) to active debug area
Steffen Maier0328e512019-07-03 12:19:48 +0200363 * (if level <= actual debug level)
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300364 * and switches to next debug area.
365 *
366 * @_id: handle for debug log
367 * @_level: debug level
368 * @_fmt: format string for debug entry
369 * @...: varargs used as in sprintf()
370 *
371 * Return:
372 * - Address of written debug entry
373 * - %NULL if error
374 *
375 * floats and long long datatypes cannot be used as varargs.
376 */
Christian Borntraeger832a7712014-12-01 09:16:45 +0100377#define debug_sprintf_exception(_id, _level, _fmt, ...) \
378({ \
379 debug_entry_t *__ret; \
380 debug_info_t *__id = _id; \
381 int __level = _level; \
Heiko Carstens496da0d2017-10-13 09:06:29 +0200382 \
Christian Borntraeger832a7712014-12-01 09:16:45 +0100383 if ((!__id) || (__level > __id->level)) \
384 __ret = NULL; \
385 else \
386 __ret = __debug_sprintf_exception(__id, __level, \
387 _fmt, ## __VA_ARGS__);\
388 __ret; \
389})
390
Heiko Carstens496da0d2017-10-13 09:06:29 +0200391int debug_register_view(debug_info_t *id, struct debug_view *view);
Mauro Carvalho Chehaba20aa852019-06-08 23:27:17 -0300392
Heiko Carstens496da0d2017-10-13 09:06:29 +0200393int debug_unregister_view(debug_info_t *id, struct debug_view *view);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Peter Oberparleiterd72541f2021-08-13 15:05:04 +0200395#ifndef MODULE
396
397/*
398 * Note: Initial page and area numbers must be fixed to allow static
399 * initialization. This enables very early tracing. Changes to these values
400 * must be reflected in __DEFINE_STATIC_AREA.
401 */
402#define EARLY_PAGES 8
403#define EARLY_AREAS 1
404
405#define VNAME(var, suffix) __##var##_##suffix
406
407/*
408 * Define static areas for early trace data. During boot debug_register_static()
409 * will replace these with dynamically allocated areas to allow custom page and
410 * area sizes, and dynamic resizing.
411 */
412#define __DEFINE_STATIC_AREA(var) \
413static char VNAME(var, data)[EARLY_PAGES][PAGE_SIZE] __initdata; \
414static debug_entry_t *VNAME(var, pages)[EARLY_PAGES] __initdata = { \
415 (debug_entry_t *)VNAME(var, data)[0], \
416 (debug_entry_t *)VNAME(var, data)[1], \
417 (debug_entry_t *)VNAME(var, data)[2], \
418 (debug_entry_t *)VNAME(var, data)[3], \
419 (debug_entry_t *)VNAME(var, data)[4], \
420 (debug_entry_t *)VNAME(var, data)[5], \
421 (debug_entry_t *)VNAME(var, data)[6], \
422 (debug_entry_t *)VNAME(var, data)[7], \
423}; \
424static debug_entry_t **VNAME(var, areas)[EARLY_AREAS] __initdata = { \
425 (debug_entry_t **)VNAME(var, pages), \
426}; \
427static int VNAME(var, active_pages)[EARLY_AREAS] __initdata; \
428static int VNAME(var, active_entries)[EARLY_AREAS] __initdata
429
430#define __DEBUG_INFO_INIT(var, _name, _buf_size) { \
431 .next = NULL, \
432 .prev = NULL, \
433 .ref_count = REFCOUNT_INIT(1), \
434 .lock = __SPIN_LOCK_UNLOCKED(var.lock), \
435 .level = DEBUG_DEFAULT_LEVEL, \
436 .nr_areas = EARLY_AREAS, \
437 .pages_per_area = EARLY_PAGES, \
438 .buf_size = (_buf_size), \
439 .entry_size = sizeof(debug_entry_t) + (_buf_size), \
440 .areas = VNAME(var, areas), \
441 .active_area = 0, \
442 .active_pages = VNAME(var, active_pages), \
443 .active_entries = VNAME(var, active_entries), \
444 .debugfs_root_entry = NULL, \
445 .debugfs_entries = { NULL }, \
446 .views = { NULL }, \
447 .name = (_name), \
448 .mode = 0600, \
449}
450
451#define __REGISTER_STATIC_DEBUG_INFO(var, name, pages, areas, view) \
452static int __init VNAME(var, reg)(void) \
453{ \
454 debug_register_static(&var, (pages), (areas)); \
455 debug_register_view(&var, (view)); \
456 return 0; \
457} \
458arch_initcall(VNAME(var, reg))
459
460/**
461 * DEFINE_STATIC_DEBUG_INFO - Define static debug_info_t
462 *
463 * @var: Name of debug_info_t variable
464 * @name: Name of debug log (e.g. used for debugfs entry)
Randy Dunlap4a667ba2021-10-04 22:16:57 -0700465 * @pages: Number of pages per area
Peter Oberparleiterd72541f2021-08-13 15:05:04 +0200466 * @nr_areas: Number of debug areas
467 * @buf_size: Size of data area in each debug entry
468 * @view: Pointer to debug view struct
469 *
470 * Define a static debug_info_t for early tracing. The associated debugfs log
471 * is automatically registered with the specified debug view.
472 *
473 * Important: Users of this macro must not call any of the
474 * debug_register/_unregister() functions for this debug_info_t!
475 *
476 * Note: Tracing will start with a fixed number of initial pages and areas.
477 * The debug area will be changed to use the specified numbers during
478 * arch_initcall.
479 */
480#define DEFINE_STATIC_DEBUG_INFO(var, name, pages, nr_areas, buf_size, view) \
481__DEFINE_STATIC_AREA(var); \
482static debug_info_t __refdata var = \
483 __DEBUG_INFO_INIT(var, (name), (buf_size)); \
484__REGISTER_STATIC_DEBUG_INFO(var, name, pages, nr_areas, view)
485
486void debug_register_static(debug_info_t *id, int pages_per_area, int nr_areas);
487
488#endif /* MODULE */
489
Heiko Carstens496da0d2017-10-13 09:06:29 +0200490#endif /* DEBUG_H */