1 /******************************************************************************
3 * Copyright(c) 2009 - 2014 Intel Corporation. All rights reserved.
4 * Copyright(c) 2015 Intel Deutschland GmbH
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of version 2 of the GNU General Public License as
8 * published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
19 * The full GNU General Public License is included in this distribution in the
20 * file called LICENSE.
22 * Contact Information:
23 * Intel Linux Wireless <linuxwifi@intel.com>
24 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26 *****************************************************************************/
28 #if !defined(__IWLWIFI_DEVICE_TRACE_DATA) || defined(TRACE_HEADER_MULTI_READ)
29 #define __IWLWIFI_DEVICE_TRACE_DATA
31 #include <linux/tracepoint.h>
34 #define TRACE_SYSTEM iwlwifi_data
36 TRACE_EVENT(iwlwifi_dev_tx_data
,
37 TP_PROTO(const struct device
*dev
,
39 u8 hdr_len
, size_t data_len
),
40 TP_ARGS(dev
, skb
, hdr_len
, data_len
),
44 __dynamic_array(u8
, data
, iwl_trace_data(skb
) ? data_len
: 0)
48 if (iwl_trace_data(skb
))
49 skb_copy_bits(skb
, hdr_len
,
50 __get_dynamic_array(data
), data_len
);
52 TP_printk("[%s] TX frame data", __get_str(dev
))
55 TRACE_EVENT(iwlwifi_dev_tx_tso_chunk
,
56 TP_PROTO(const struct device
*dev
,
57 u8
*data_src
, size_t data_len
),
58 TP_ARGS(dev
, data_src
, data_len
),
62 __dynamic_array(u8
, data
, data_len
)
66 memcpy(__get_dynamic_array(data
), data_src
, data_len
);
68 TP_printk("[%s] TX frame data", __get_str(dev
))
71 TRACE_EVENT(iwlwifi_dev_rx_data
,
72 TP_PROTO(const struct device
*dev
,
73 const struct iwl_trans
*trans
,
74 void *rxbuf
, size_t len
),
75 TP_ARGS(dev
, trans
, rxbuf
, len
),
79 __dynamic_array(u8
, data
,
80 len
- iwl_rx_trace_len(trans
, rxbuf
, len
))
83 size_t offs
= iwl_rx_trace_len(trans
, rxbuf
, len
);
86 memcpy(__get_dynamic_array(data
),
87 ((u8
*)rxbuf
) + offs
, len
- offs
);
89 TP_printk("[%s] RX frame data", __get_str(dev
))
91 #endif /* __IWLWIFI_DEVICE_TRACE_DATA */
93 #undef TRACE_INCLUDE_PATH
94 #define TRACE_INCLUDE_PATH .
95 #undef TRACE_INCLUDE_FILE
96 #define TRACE_INCLUDE_FILE iwl-devtrace-data
97 #include <trace/define_trace.h>