xref: /freebsd/sys/contrib/dev/iwlwifi/iwl-devtrace.h (revision 9768746b)
1 /*-
2  * Copyright (c) 2020-2021 The FreeBSD Foundation
3  *
4  * This software was developed by Björn Zeeb under sponsorship from
5  * the FreeBSD Foundation.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  * $FreeBSD$
29  */
30 
31 #ifndef _IWL_DEVTRACE_H
32 #define	_IWL_DEVTRACE_H
33 
34 #include <linux/types.h>
35 #include <linux/device.h>
36 
37 #include "iwl-trans.h"
38 
39 void trace_iwlwifi_dev_hcmd(const struct device *,
40     struct iwl_host_cmd *, uint16_t,
41     struct iwl_cmd_header_wide *);
42 
43 void trace_iwlwifi_dev_rx(const struct device *,
44     const struct iwl_trans *,
45     struct iwl_rx_packet *, size_t);
46 
47 void trace_iwlwifi_dev_rx_data(const struct device *,
48     const struct iwl_trans *,
49     struct iwl_rx_packet *, size_t);
50 
51 #define	trace_iwlwifi_dev_ict_read(...)
52 #define	trace_iwlwifi_dev_ioread32(...)
53 #define	trace_iwlwifi_dev_ioread_prph32(...)
54 #define	trace_iwlwifi_dev_iowrite32(...)
55 #define	trace_iwlwifi_dev_iowrite64(...)
56 #define	trace_iwlwifi_dev_iowrite8(...)
57 #define	trace_iwlwifi_dev_iowrite_prph32(...)
58 #define	trace_iwlwifi_dev_iowrite_prph64(...)
59 #define	trace_iwlwifi_dev_irq(...)
60 #define	trace_iwlwifi_dev_irq_msix(...)
61 #define	trace_iwlwifi_dev_tx(...)
62 #define	trace_iwlwifi_dev_tx_tb(...)
63 
64 #define	trace_iwlwifi_crit(...)
65 #define	trace_iwlwifi_dbg(...)
66 #define	trace_iwlwifi_err(...)
67 #define	trace_iwlwifi_info(...)
68 #define	trace_iwlwifi_warn(...)
69 
70 #endif /* _IWL_DEVTRACE_H */
71