1
2
3
4
5
6
7#ifndef __iwl_op_mode_h__
8#define __iwl_op_mode_h__
9
10#include <linux/netdevice.h>
11#include <linux/debugfs.h>
12#include "iwl-dbg-tlv.h"
13
14struct iwl_op_mode;
15struct iwl_trans;
16struct sk_buff;
17struct iwl_device_cmd;
18struct iwl_rx_cmd_buffer;
19struct iwl_fw;
20struct iwl_cfg;
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89struct iwl_op_mode_ops {
90 struct iwl_op_mode *(*start)(struct iwl_trans *trans,
91 const struct iwl_cfg *cfg,
92 const struct iwl_fw *fw,
93 struct dentry *dbgfs_dir);
94 void (*stop)(struct iwl_op_mode *op_mode);
95 void (*rx)(struct iwl_op_mode *op_mode, struct napi_struct *napi,
96 struct iwl_rx_cmd_buffer *rxb);
97 void (*rx_rss)(struct iwl_op_mode *op_mode, struct napi_struct *napi,
98 struct iwl_rx_cmd_buffer *rxb, unsigned int queue);
99 void (*async_cb)(struct iwl_op_mode *op_mode,
100 const struct iwl_device_cmd *cmd);
101 void (*queue_full)(struct iwl_op_mode *op_mode, int queue);
102 void (*queue_not_full)(struct iwl_op_mode *op_mode, int queue);
103 bool (*hw_rf_kill)(struct iwl_op_mode *op_mode, bool state);
104 void (*free_skb)(struct iwl_op_mode *op_mode, struct sk_buff *skb);
105 void (*nic_error)(struct iwl_op_mode *op_mode, bool sync);
106 void (*cmd_queue_full)(struct iwl_op_mode *op_mode);
107 void (*nic_config)(struct iwl_op_mode *op_mode);
108 void (*wimax_active)(struct iwl_op_mode *op_mode);
109 void (*time_point)(struct iwl_op_mode *op_mode,
110 enum iwl_fw_ini_time_point tp_id,
111 union iwl_dbg_tlv_tp_data *tp_data);
112};
113
114int iwl_opmode_register(const char *name, const struct iwl_op_mode_ops *ops);
115void iwl_opmode_deregister(const char *name);
116
117
118
119
120
121
122
123struct iwl_op_mode {
124 const struct iwl_op_mode_ops *ops;
125
126 char op_mode_specific[] __aligned(sizeof(void *));
127};
128
129static inline void iwl_op_mode_stop(struct iwl_op_mode *op_mode)
130{
131 might_sleep();
132 op_mode->ops->stop(op_mode);
133}
134
135static inline void iwl_op_mode_rx(struct iwl_op_mode *op_mode,
136 struct napi_struct *napi,
137 struct iwl_rx_cmd_buffer *rxb)
138{
139 return op_mode->ops->rx(op_mode, napi, rxb);
140}
141
142static inline void iwl_op_mode_rx_rss(struct iwl_op_mode *op_mode,
143 struct napi_struct *napi,
144 struct iwl_rx_cmd_buffer *rxb,
145 unsigned int queue)
146{
147 op_mode->ops->rx_rss(op_mode, napi, rxb, queue);
148}
149
150static inline void iwl_op_mode_async_cb(struct iwl_op_mode *op_mode,
151 const struct iwl_device_cmd *cmd)
152{
153 if (op_mode->ops->async_cb)
154 op_mode->ops->async_cb(op_mode, cmd);
155}
156
157static inline void iwl_op_mode_queue_full(struct iwl_op_mode *op_mode,
158 int queue)
159{
160 op_mode->ops->queue_full(op_mode, queue);
161}
162
163static inline void iwl_op_mode_queue_not_full(struct iwl_op_mode *op_mode,
164 int queue)
165{
166 op_mode->ops->queue_not_full(op_mode, queue);
167}
168
169static inline bool __must_check
170iwl_op_mode_hw_rf_kill(struct iwl_op_mode *op_mode, bool state)
171{
172 might_sleep();
173 return op_mode->ops->hw_rf_kill(op_mode, state);
174}
175
176static inline void iwl_op_mode_free_skb(struct iwl_op_mode *op_mode,
177 struct sk_buff *skb)
178{
179 if (WARN_ON_ONCE(!op_mode))
180 return;
181 op_mode->ops->free_skb(op_mode, skb);
182}
183
184static inline void iwl_op_mode_nic_error(struct iwl_op_mode *op_mode, bool sync)
185{
186 op_mode->ops->nic_error(op_mode, sync);
187}
188
189static inline void iwl_op_mode_cmd_queue_full(struct iwl_op_mode *op_mode)
190{
191 op_mode->ops->cmd_queue_full(op_mode);
192}
193
194static inline void iwl_op_mode_nic_config(struct iwl_op_mode *op_mode)
195{
196 might_sleep();
197 op_mode->ops->nic_config(op_mode);
198}
199
200static inline void iwl_op_mode_wimax_active(struct iwl_op_mode *op_mode)
201{
202 might_sleep();
203 op_mode->ops->wimax_active(op_mode);
204}
205
206static inline void iwl_op_mode_time_point(struct iwl_op_mode *op_mode,
207 enum iwl_fw_ini_time_point tp_id,
208 union iwl_dbg_tlv_tp_data *tp_data)
209{
210 if (!op_mode || !op_mode->ops || !op_mode->ops->time_point)
211 return;
212 op_mode->ops->time_point(op_mode, tp_id, tp_data);
213}
214
215#endif
216