2019-05-16 14:04:09 +02:00
|
|
|
// SPDX-License-Identifier: ISC
|
2011-10-05 13:19:03 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010 Broadcom Corporation
|
|
|
|
*/
|
|
|
|
|
2014-10-28 14:56:13 +01:00
|
|
|
#ifndef BRCMFMAC_DEBUG_H
|
|
|
|
#define BRCMFMAC_DEBUG_H
|
2011-10-05 13:19:03 +02:00
|
|
|
|
2015-11-25 11:32:45 +01:00
|
|
|
#include <linux/net.h> /* net_ratelimit() */
|
|
|
|
|
2011-12-16 18:37:17 -08:00
|
|
|
/* message levels */
|
2014-07-30 13:20:03 +02:00
|
|
|
#define BRCMF_TRACE_VAL 0x00000002
|
|
|
|
#define BRCMF_INFO_VAL 0x00000004
|
|
|
|
#define BRCMF_DATA_VAL 0x00000008
|
|
|
|
#define BRCMF_CTL_VAL 0x00000010
|
|
|
|
#define BRCMF_TIMER_VAL 0x00000020
|
|
|
|
#define BRCMF_HDRS_VAL 0x00000040
|
|
|
|
#define BRCMF_BYTES_VAL 0x00000080
|
|
|
|
#define BRCMF_INTR_VAL 0x00000100
|
|
|
|
#define BRCMF_GLOM_VAL 0x00000200
|
|
|
|
#define BRCMF_EVENT_VAL 0x00000400
|
|
|
|
#define BRCMF_BTA_VAL 0x00000800
|
|
|
|
#define BRCMF_FIL_VAL 0x00001000
|
|
|
|
#define BRCMF_USB_VAL 0x00002000
|
|
|
|
#define BRCMF_SCAN_VAL 0x00004000
|
|
|
|
#define BRCMF_CONN_VAL 0x00008000
|
|
|
|
#define BRCMF_BCDC_VAL 0x00010000
|
|
|
|
#define BRCMF_SDIO_VAL 0x00020000
|
|
|
|
#define BRCMF_MSGBUF_VAL 0x00040000
|
2014-07-30 13:20:04 +02:00
|
|
|
#define BRCMF_PCIE_VAL 0x00080000
|
2015-08-26 22:15:01 +02:00
|
|
|
#define BRCMF_FWCON_VAL 0x00100000
|
2011-12-16 18:37:17 -08:00
|
|
|
|
2013-01-02 21:20:10 +01:00
|
|
|
/* set default print format */
|
|
|
|
#undef pr_fmt
|
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
|
2019-02-06 12:28:15 +01:00
|
|
|
struct brcmf_bus;
|
|
|
|
|
|
|
|
__printf(3, 4)
|
|
|
|
void __brcmf_err(struct brcmf_bus *bus, const char *func, const char *fmt, ...);
|
2017-02-02 22:33:15 +01:00
|
|
|
/* Macro for error messages. When debugging / tracing the driver all error
|
|
|
|
* messages are important to us.
|
2012-12-07 10:49:57 +01:00
|
|
|
*/
|
2019-02-06 12:28:16 +01:00
|
|
|
#ifndef brcmf_err
|
2012-12-07 10:49:57 +01:00
|
|
|
#define brcmf_err(fmt, ...) \
|
|
|
|
do { \
|
2017-02-02 22:33:15 +01:00
|
|
|
if (IS_ENABLED(CONFIG_BRCMDBG) || \
|
|
|
|
IS_ENABLED(CONFIG_BRCM_TRACING) || \
|
|
|
|
net_ratelimit()) \
|
2019-02-06 12:28:15 +01:00
|
|
|
__brcmf_err(NULL, __func__, fmt, ##__VA_ARGS__);\
|
2012-12-07 10:49:57 +01:00
|
|
|
} while (0)
|
2019-02-06 12:28:16 +01:00
|
|
|
#endif
|
2012-12-07 10:49:57 +01:00
|
|
|
|
2019-02-15 15:45:54 +01:00
|
|
|
#define bphy_err(drvr, fmt, ...) \
|
2019-01-16 07:28:54 +01:00
|
|
|
do { \
|
|
|
|
if (IS_ENABLED(CONFIG_BRCMDBG) || \
|
|
|
|
IS_ENABLED(CONFIG_BRCM_TRACING) || \
|
|
|
|
net_ratelimit()) \
|
2019-02-15 15:45:54 +01:00
|
|
|
wiphy_err((drvr)->wiphy, "%s: " fmt, __func__, \
|
2019-01-16 07:28:54 +01:00
|
|
|
##__VA_ARGS__); \
|
|
|
|
} while (0)
|
|
|
|
|
2013-03-03 12:45:21 +01:00
|
|
|
#if defined(DEBUG) || defined(CONFIG_BRCM_TRACING)
|
2017-03-08 14:50:15 +01:00
|
|
|
|
|
|
|
/* For debug/tracing purposes treat info messages as errors */
|
|
|
|
#define brcmf_info brcmf_err
|
|
|
|
|
2013-03-03 12:45:21 +01:00
|
|
|
__printf(3, 4)
|
|
|
|
void __brcmf_dbg(u32 level, const char *func, const char *fmt, ...);
|
2012-12-07 10:49:57 +01:00
|
|
|
#define brcmf_dbg(level, fmt, ...) \
|
|
|
|
do { \
|
2013-03-03 12:45:21 +01:00
|
|
|
__brcmf_dbg(BRCMF_##level##_VAL, __func__, \
|
|
|
|
fmt, ##__VA_ARGS__); \
|
2011-10-05 13:19:03 +02:00
|
|
|
} while (0)
|
|
|
|
#define BRCMF_DATA_ON() (brcmf_msg_level & BRCMF_DATA_VAL)
|
|
|
|
#define BRCMF_CTL_ON() (brcmf_msg_level & BRCMF_CTL_VAL)
|
|
|
|
#define BRCMF_HDRS_ON() (brcmf_msg_level & BRCMF_HDRS_VAL)
|
|
|
|
#define BRCMF_BYTES_ON() (brcmf_msg_level & BRCMF_BYTES_VAL)
|
|
|
|
#define BRCMF_GLOM_ON() (brcmf_msg_level & BRCMF_GLOM_VAL)
|
2012-09-19 22:21:09 +02:00
|
|
|
#define BRCMF_EVENT_ON() (brcmf_msg_level & BRCMF_EVENT_VAL)
|
2012-10-22 10:36:14 -07:00
|
|
|
#define BRCMF_FIL_ON() (brcmf_msg_level & BRCMF_FIL_VAL)
|
2015-08-26 22:15:01 +02:00
|
|
|
#define BRCMF_FWCON_ON() (brcmf_msg_level & BRCMF_FWCON_VAL)
|
2017-06-09 12:19:20 +01:00
|
|
|
#define BRCMF_SCAN_ON() (brcmf_msg_level & BRCMF_SCAN_VAL)
|
2011-10-05 13:19:03 +02:00
|
|
|
|
2013-03-03 12:45:21 +01:00
|
|
|
#else /* defined(DEBUG) || defined(CONFIG_BRCM_TRACING) */
|
2011-10-05 13:19:03 +02:00
|
|
|
|
2017-03-08 14:50:15 +01:00
|
|
|
#define brcmf_info(fmt, ...) \
|
|
|
|
do { \
|
|
|
|
pr_info("%s: " fmt, __func__, ##__VA_ARGS__); \
|
|
|
|
} while (0)
|
|
|
|
|
2011-10-05 13:19:03 +02:00
|
|
|
#define brcmf_dbg(level, fmt, ...) no_printk(fmt, ##__VA_ARGS__)
|
|
|
|
|
|
|
|
#define BRCMF_DATA_ON() 0
|
|
|
|
#define BRCMF_CTL_ON() 0
|
|
|
|
#define BRCMF_HDRS_ON() 0
|
|
|
|
#define BRCMF_BYTES_ON() 0
|
|
|
|
#define BRCMF_GLOM_ON() 0
|
2012-09-19 22:21:09 +02:00
|
|
|
#define BRCMF_EVENT_ON() 0
|
2012-10-22 10:36:14 -07:00
|
|
|
#define BRCMF_FIL_ON() 0
|
2015-08-26 22:15:01 +02:00
|
|
|
#define BRCMF_FWCON_ON() 0
|
2017-06-09 12:19:20 +01:00
|
|
|
#define BRCMF_SCAN_ON() 0
|
2011-10-05 13:19:03 +02:00
|
|
|
|
2013-03-03 12:45:21 +01:00
|
|
|
#endif /* defined(DEBUG) || defined(CONFIG_BRCM_TRACING) */
|
2011-10-05 13:19:03 +02:00
|
|
|
|
2012-01-15 00:38:40 -08:00
|
|
|
#define brcmf_dbg_hex_dump(test, data, len, fmt, ...) \
|
|
|
|
do { \
|
2013-04-05 10:57:44 +02:00
|
|
|
trace_brcmf_hexdump((void *)data, len); \
|
2012-01-15 00:38:40 -08:00
|
|
|
if (test) \
|
|
|
|
brcmu_dbg_hex_dump(data, len, fmt, ##__VA_ARGS__); \
|
|
|
|
} while (0)
|
|
|
|
|
2011-10-05 13:19:03 +02:00
|
|
|
extern int brcmf_msg_level;
|
|
|
|
|
2017-02-24 17:32:46 +01:00
|
|
|
struct brcmf_bus;
|
2012-06-09 22:51:43 +02:00
|
|
|
struct brcmf_pub;
|
|
|
|
#ifdef DEBUG
|
|
|
|
struct dentry *brcmf_debugfs_get_devdir(struct brcmf_pub *drvr);
|
2020-04-29 12:15:26 +02:00
|
|
|
void brcmf_debugfs_add_entry(struct brcmf_pub *drvr, const char *fn,
|
|
|
|
int (*read_fn)(struct seq_file *seq, void *data));
|
2017-02-24 17:32:46 +01:00
|
|
|
int brcmf_debug_create_memdump(struct brcmf_bus *bus, const void *data,
|
|
|
|
size_t len);
|
2012-06-09 22:51:43 +02:00
|
|
|
#else
|
2019-09-01 13:34:35 +02:00
|
|
|
static inline struct dentry *brcmf_debugfs_get_devdir(struct brcmf_pub *drvr)
|
|
|
|
{
|
|
|
|
return ERR_PTR(-ENOENT);
|
|
|
|
}
|
2014-07-12 08:49:36 +02:00
|
|
|
static inline
|
2020-04-29 12:15:26 +02:00
|
|
|
void brcmf_debugfs_add_entry(struct brcmf_pub *drvr, const char *fn,
|
|
|
|
int (*read_fn)(struct seq_file *seq, void *data))
|
|
|
|
{ }
|
2017-02-24 17:32:46 +01:00
|
|
|
static inline
|
|
|
|
int brcmf_debug_create_memdump(struct brcmf_bus *bus, const void *data,
|
|
|
|
size_t len)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2012-06-09 22:51:43 +02:00
|
|
|
#endif
|
|
|
|
|
2014-10-28 14:56:13 +01:00
|
|
|
#endif /* BRCMFMAC_DEBUG_H */
|