1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * DebugFS code for ST-Ericsson CW1200 mac80211 driver
5 * Copyright (c) 2011, ST-Ericsson
6 * Author: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
9 #ifndef CW1200_DEBUG_H_INCLUDED
10 #define CW1200_DEBUG_H_INCLUDED
12 struct cw1200_debug_priv
{
13 struct dentry
*debugfs_phy
;
30 int cw1200_debug_init(struct cw1200_common
*priv
);
31 void cw1200_debug_release(struct cw1200_common
*priv
);
33 static inline void cw1200_debug_txed(struct cw1200_common
*priv
)
38 static inline void cw1200_debug_txed_agg(struct cw1200_common
*priv
)
40 ++priv
->debug
->tx_agg
;
43 static inline void cw1200_debug_txed_multi(struct cw1200_common
*priv
,
46 ++priv
->debug
->tx_multi
;
47 priv
->debug
->tx_multi_frames
+= count
;
50 static inline void cw1200_debug_rxed(struct cw1200_common
*priv
)
55 static inline void cw1200_debug_rxed_agg(struct cw1200_common
*priv
)
57 ++priv
->debug
->rx_agg
;
60 static inline void cw1200_debug_tx_cache_miss(struct cw1200_common
*priv
)
62 ++priv
->debug
->tx_cache_miss
;
65 static inline void cw1200_debug_tx_align(struct cw1200_common
*priv
)
67 ++priv
->debug
->tx_align
;
70 static inline void cw1200_debug_tx_ttl(struct cw1200_common
*priv
)
72 ++priv
->debug
->tx_ttl
;
75 static inline void cw1200_debug_tx_burst(struct cw1200_common
*priv
)
77 ++priv
->debug
->tx_burst
;
80 static inline void cw1200_debug_ba(struct cw1200_common
*priv
,
81 int ba_cnt
, int ba_acc
,
82 int ba_cnt_rx
, int ba_acc_rx
)
84 priv
->debug
->ba_cnt
= ba_cnt
;
85 priv
->debug
->ba_acc
= ba_acc
;
86 priv
->debug
->ba_cnt_rx
= ba_cnt_rx
;
87 priv
->debug
->ba_acc_rx
= ba_acc_rx
;
90 #endif /* CW1200_DEBUG_H_INCLUDED */