summaryrefslogtreecommitdiff
path: root/cnss2/debug.h
blob: 98413e124003f6c5cb1448067630fee654920c2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/* SPDX-License-Identifier: GPL-2.0-only */
/* Copyright (c) 2016-2021, The Linux Foundation. All rights reserved. */

#ifndef _CNSS_DEBUG_H
#define _CNSS_DEBUG_H

#include <linux/printk.h>

#if IS_ENABLED(CONFIG_IPC_LOGGING)
#ifdef CONFIG_CNSS_OUT_OF_TREE
#include "ipc_logging.h"
#else
#include <linux/ipc_logging.h>
#endif
#include <asm/current.h>

extern void *cnss_ipc_log_context;
extern void *cnss_ipc_log_long_context;

#ifdef CONFIG_CNSS2_DEBUG
#define CNSS_IPC_LOG_PAGES              100
#else
#define CNSS_IPC_LOG_PAGES              50
#endif
#define cnss_debug_log_print(_x...) \
		 cnss_debug_ipc_log_print(cnss_ipc_log_context, _x)

#define cnss_debug_log_long_print(_x...) \
		 cnss_debug_ipc_log_print(cnss_ipc_log_long_context, _x)
#else
#define cnss_debug_log_print(_x...) \
		 cnss_debug_ipc_log_print((void *)NULL, _x)
#define cnss_debug_log_long_print(_x...) \
		 cnss_debug_ipc_log_print((void *)NULL, _x)
#endif

#define proc_name (in_irq() ? "irq" : \
		   (in_softirq() ? "soft_irq" : current->comm))

#define cnss_pr_err(_fmt, ...) \
	cnss_debug_log_print(proc_name, __func__, \
			     KERN_ERR, _fmt, ##__VA_ARGS__)

#define cnss_pr_warn(_fmt, ...) \
	cnss_debug_log_print(proc_name, __func__, \
			     KERN_WARNING, _fmt, ##__VA_ARGS__)

#define cnss_pr_info(_fmt, ...) \
	cnss_debug_log_print(proc_name, __func__, \
			     KERN_INFO, _fmt, ##__VA_ARGS__)

#define cnss_pr_dbg(_fmt, ...) \
	cnss_debug_log_print(proc_name, __func__, \
			     KERN_DEBUG, _fmt, ##__VA_ARGS__)

#define cnss_pr_vdbg(_fmt, ...) \
	cnss_debug_log_long_print(proc_name, __func__, \
				  KERN_DEBUG, _fmt, ##__VA_ARGS__)

#define cnss_pr_buf(_fmt, ...) \
	cnss_debug_log_long_print(proc_name, __func__, \
				  NULL, _fmt, ##__VA_ARGS__)

#ifdef CONFIG_CNSS2_DEBUG
#define CNSS_ASSERT(_condition) do {					\
		if (!(_condition)) {					\
			cnss_pr_err("ASSERT at line %d\n",		\
				    __LINE__);				\
			BUG();						\
		}							\
	} while (0)
#else
#define CNSS_ASSERT(_condition) do {					\
		if (!(_condition)) {					\
			cnss_pr_err("ASSERT at line %d\n",		\
				    __LINE__);				\
			WARN_ON(1);					\
		}							\
	} while (0)
#endif

#define cnss_fatal_err(_fmt, ...)					\
	cnss_pr_err("fatal: " _fmt, ##__VA_ARGS__)

int cnss_debug_init(void);
void cnss_debug_deinit(void);
int cnss_debugfs_create(struct cnss_plat_data *plat_priv);
void cnss_debugfs_destroy(struct cnss_plat_data *plat_priv);
void cnss_debug_ipc_log_print(void *log_ctx, char *process, const char *fn,
			      const char *log_level, char *fmt, ...);
#endif /* _CNSS_DEBUG_H */