WIP FPC-III support
[linux/fpc-iii.git] / drivers / net / wireless / ath / ath11k / debug.c
blobc86de95fbdc5853835c124f59c271cbf99d94b92
1 // SPDX-License-Identifier: BSD-3-Clause-Clear
2 /*
3 * Copyright (c) 2018-2019 The Linux Foundation. All rights reserved.
4 */
6 #include <linux/vmalloc.h>
7 #include "core.h"
8 #include "debug.h"
10 void ath11k_info(struct ath11k_base *ab, const char *fmt, ...)
12 struct va_format vaf = {
13 .fmt = fmt,
15 va_list args;
17 va_start(args, fmt);
18 vaf.va = &args;
19 dev_info(ab->dev, "%pV", &vaf);
20 /* TODO: Trace the log */
21 va_end(args);
23 EXPORT_SYMBOL(ath11k_info);
25 void ath11k_err(struct ath11k_base *ab, const char *fmt, ...)
27 struct va_format vaf = {
28 .fmt = fmt,
30 va_list args;
32 va_start(args, fmt);
33 vaf.va = &args;
34 dev_err(ab->dev, "%pV", &vaf);
35 /* TODO: Trace the log */
36 va_end(args);
38 EXPORT_SYMBOL(ath11k_err);
40 void ath11k_warn(struct ath11k_base *ab, const char *fmt, ...)
42 struct va_format vaf = {
43 .fmt = fmt,
45 va_list args;
47 va_start(args, fmt);
48 vaf.va = &args;
49 dev_warn_ratelimited(ab->dev, "%pV", &vaf);
50 /* TODO: Trace the log */
51 va_end(args);
53 EXPORT_SYMBOL(ath11k_warn);
55 #ifdef CONFIG_ATH11K_DEBUG
57 void __ath11k_dbg(struct ath11k_base *ab, enum ath11k_debug_mask mask,
58 const char *fmt, ...)
60 struct va_format vaf;
61 va_list args;
63 va_start(args, fmt);
65 vaf.fmt = fmt;
66 vaf.va = &args;
68 if (ath11k_debug_mask & mask)
69 dev_printk(KERN_DEBUG, ab->dev, "%pV", &vaf);
71 /* TODO: trace log */
73 va_end(args);
75 EXPORT_SYMBOL(__ath11k_dbg);
77 void ath11k_dbg_dump(struct ath11k_base *ab,
78 enum ath11k_debug_mask mask,
79 const char *msg, const char *prefix,
80 const void *buf, size_t len)
82 char linebuf[256];
83 size_t linebuflen;
84 const void *ptr;
86 if (ath11k_debug_mask & mask) {
87 if (msg)
88 __ath11k_dbg(ab, mask, "%s\n", msg);
90 for (ptr = buf; (ptr - buf) < len; ptr += 16) {
91 linebuflen = 0;
92 linebuflen += scnprintf(linebuf + linebuflen,
93 sizeof(linebuf) - linebuflen,
94 "%s%08x: ",
95 (prefix ? prefix : ""),
96 (unsigned int)(ptr - buf));
97 hex_dump_to_buffer(ptr, len - (ptr - buf), 16, 1,
98 linebuf + linebuflen,
99 sizeof(linebuf) - linebuflen, true);
100 dev_printk(KERN_DEBUG, ab->dev, "%s\n", linebuf);
104 EXPORT_SYMBOL(ath11k_dbg_dump);
106 #endif /* CONFIG_ATH11K_DEBUG */