blob: 712c39ae748fb3eb6d55ea2dd2a3761758da4603 [file] [log] [blame]
Johannes Berg8ca151b2013-01-24 14:25:36 +01001/******************************************************************************
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
8 * Copyright(c) 2012 - 2013 Intel Corporation. All rights reserved.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of version 2 of the GNU General Public License as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
22 * USA
23 *
24 * The full GNU General Public License is included in this distribution
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020025 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010026 *
27 * Contact Information:
28 * Intel Linux Wireless <ilw@linux.intel.com>
29 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
30 *
31 * BSD LICENSE
32 *
33 * Copyright(c) 2012 - 2013 Intel Corporation. All rights reserved.
34 * All rights reserved.
35 *
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
38 * are met:
39 *
40 * * Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * * Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in
44 * the documentation and/or other materials provided with the
45 * distribution.
46 * * Neither the name Intel Corporation nor the names of its
47 * contributors may be used to endorse or promote products derived
48 * from this software without specific prior written permission.
49 *
50 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
51 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
52 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
53 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
54 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
55 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
56 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
57 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
58 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
60 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
61 *
62 *****************************************************************************/
63
64#ifndef __IWL_MVM_H__
65#define __IWL_MVM_H__
66
67#include <linux/list.h>
68#include <linux/spinlock.h>
69#include <linux/leds.h>
70#include <linux/in6.h>
71
72#include "iwl-op-mode.h"
73#include "iwl-trans.h"
74#include "iwl-notif-wait.h"
75#include "iwl-eeprom-parse.h"
76#include "iwl-test.h"
77#include "iwl-trans.h"
78#include "sta.h"
79#include "fw-api.h"
80
81#define IWL_INVALID_MAC80211_QUEUE 0xff
Ilan Peer831e85f2013-02-07 17:09:09 +020082#define IWL_MVM_MAX_ADDRESSES 5
Emmanuel Grumbach8101a7f2013-02-28 11:54:28 +020083/* RSSI offset for WkP */
84#define IWL_RSSI_OFFSET 50
Johannes Berg8ca151b2013-01-24 14:25:36 +010085
86enum iwl_mvm_tx_fifo {
87 IWL_MVM_TX_FIFO_BK = 0,
88 IWL_MVM_TX_FIFO_BE,
89 IWL_MVM_TX_FIFO_VI,
90 IWL_MVM_TX_FIFO_VO,
91};
92
Johannes Berg8ca151b2013-01-24 14:25:36 +010093extern struct ieee80211_ops iwl_mvm_hw_ops;
94/**
95 * struct iwl_mvm_mod_params - module parameters for iwlmvm
96 * @init_dbg: if true, then the NIC won't be stopped if the INIT fw asserted.
97 * We will register to mac80211 to have testmode working. The NIC must not
98 * be up'ed after the INIT fw asserted. This is useful to be able to use
99 * proprietary tools over testmode to debug the INIT fw.
100 * @power_scheme: CAM(Continuous Active Mode)-1, BPS(Balanced Power
101 * Save)-2(default), LP(Low Power)-3
102 */
103struct iwl_mvm_mod_params {
104 bool init_dbg;
105 int power_scheme;
106};
107extern struct iwl_mvm_mod_params iwlmvm_mod_params;
108
109struct iwl_mvm_phy_ctxt {
110 u16 id;
111 u16 color;
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200112 u32 ref;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100113
114 /*
115 * TODO: This should probably be removed. Currently here only for rate
116 * scaling algorithm
117 */
118 struct ieee80211_channel *channel;
119};
120
121struct iwl_mvm_time_event_data {
122 struct ieee80211_vif *vif;
123 struct list_head list;
124 unsigned long end_jiffies;
125 u32 duration;
126 bool running;
127 u32 uid;
128
129 /*
130 * The access to the 'id' field must be done when the
131 * mvm->time_event_lock is held, as it value is used to indicate
132 * if the te is in the time event list or not (when id == TE_MAX)
133 */
134 u32 id;
135};
136
137 /* Power management */
138
139/**
140 * enum iwl_power_scheme
141 * @IWL_POWER_LEVEL_CAM - Continuously Active Mode
142 * @IWL_POWER_LEVEL_BPS - Balanced Power Save (default)
143 * @IWL_POWER_LEVEL_LP - Low Power
144 */
145enum iwl_power_scheme {
146 IWL_POWER_SCHEME_CAM = 1,
147 IWL_POWER_SCHEME_BPS,
148 IWL_POWER_SCHEME_LP
149};
150
151#define IWL_CONN_MAX_LISTEN_INTERVAL 70
152
153/**
154 * struct iwl_mvm_vif - data per Virtual Interface, it is a MAC context
155 * @id: between 0 and 3
156 * @color: to solve races upon MAC addition and removal
157 * @ap_sta_id: the sta_id of the AP - valid only if VIF type is STA
158 * @uploaded: indicates the MAC context has been added to the device
159 * @ap_active: indicates that ap context is configured, and that the interface
160 * should get quota etc.
Ilan Peer1e1391c2013-03-13 14:52:04 +0200161 * @monitor_active: indicates that monitor context is configured, and that the
162 * interface should get quota etc.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100163 * @queue_params: QoS params for this MAC
164 * @bcast_sta: station used for broadcast packets. Used by the following
165 * vifs: P2P_DEVICE, GO and AP.
166 * @beacon_skb: the skb used to hold the AP/GO beacon template
167 */
168struct iwl_mvm_vif {
169 u16 id;
170 u16 color;
171 u8 ap_sta_id;
172
173 bool uploaded;
174 bool ap_active;
Ilan Peer1e1391c2013-03-13 14:52:04 +0200175 bool monitor_active;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100176
Johannes Berg506a81e2013-02-28 14:05:14 +0100177 u32 ap_beacon_time;
178
Johannes Berg8ca151b2013-01-24 14:25:36 +0100179 enum iwl_tsf_id tsf_id;
180
181 /*
182 * QoS data from mac80211, need to store this here
183 * as mac80211 has a separate callback but we need
184 * to have the data for the MAC context
185 */
186 struct ieee80211_tx_queue_params queue_params[IEEE80211_NUM_ACS];
187 struct iwl_mvm_time_event_data time_event_data;
188
189 struct iwl_mvm_int_sta bcast_sta;
190
191 /*
192 * Assigned while mac80211 has the interface in a channel context,
193 * or, for P2P Device, while it exists.
194 */
195 struct iwl_mvm_phy_ctxt *phy_ctxt;
196
197#ifdef CONFIG_PM_SLEEP
198 /* WoWLAN GTK rekey data */
199 struct {
200 u8 kck[NL80211_KCK_LEN], kek[NL80211_KEK_LEN];
201 __le64 replay_ctr;
202 bool valid;
203 } rekey_data;
204
205 int tx_key_idx;
206
207#if IS_ENABLED(CONFIG_IPV6)
208 /* IPv6 addresses for WoWLAN */
209 struct in6_addr target_ipv6_addrs[IWL_PROTO_OFFLOAD_NUM_IPV6_ADDRS];
210 int num_target_ipv6_addrs;
211#endif
212#endif
213
214#ifdef CONFIG_IWLWIFI_DEBUGFS
215 struct dentry *dbgfs_dir;
Johannes Berg63494372013-03-26 10:47:53 +0100216 struct dentry *dbgfs_slink;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100217 void *dbgfs_data;
218#endif
219};
220
221static inline struct iwl_mvm_vif *
222iwl_mvm_vif_from_mac80211(struct ieee80211_vif *vif)
223{
224 return (void *)vif->drv_priv;
225}
226
227enum iwl_mvm_status {
228 IWL_MVM_STATUS_HW_RFKILL,
229 IWL_MVM_STATUS_ROC_RUNNING,
230 IWL_MVM_STATUS_IN_HW_RESTART,
231};
232
233enum iwl_scan_status {
234 IWL_MVM_SCAN_NONE,
235 IWL_MVM_SCAN_OS,
236};
237
238/**
239 * struct iwl_nvm_section - describes an NVM section in memory.
240 *
241 * This struct holds an NVM section read from the NIC using NVM_ACCESS_CMD,
242 * and saved for later use by the driver. Not all NVM sections are saved
243 * this way, only the needed ones.
244 */
245struct iwl_nvm_section {
246 u16 length;
247 const u8 *data;
248};
249
250struct iwl_mvm {
251 /* for logger access */
252 struct device *dev;
253
254 struct iwl_trans *trans;
255 const struct iwl_fw *fw;
256 const struct iwl_cfg *cfg;
257 struct iwl_phy_db *phy_db;
258 struct ieee80211_hw *hw;
259
260 /* for protecting access to iwl_mvm */
261 struct mutex mutex;
262 struct list_head async_handlers_list;
263 spinlock_t async_handlers_lock;
264 struct work_struct async_handlers_wk;
265
266 struct work_struct roc_done_wk;
267
268 unsigned long status;
269
Hila Gonen7df15b12012-12-12 11:16:19 +0200270 /*
271 * for beacon filtering -
272 * currently only one interface can be supported
273 */
274 struct iwl_mvm_vif *bf_allowed_vif;
275
Johannes Berg8ca151b2013-01-24 14:25:36 +0100276 enum iwl_ucode_type cur_ucode;
277 bool ucode_loaded;
278 bool init_ucode_run;
279 u32 error_event_table;
280 u32 log_event_table;
281
282 u32 ampdu_ref;
283
284 struct iwl_notif_wait_data notif_wait;
285
286 unsigned long transport_queue_stop;
287 u8 queue_to_mac80211[IWL_MAX_HW_QUEUES];
288 atomic_t queue_stop_count[IWL_MAX_HW_QUEUES];
289
290 struct iwl_nvm_data *nvm_data;
Emmanuel Grumbachb9545b42013-03-06 11:34:44 +0200291 /* NVM sections */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100292 struct iwl_nvm_section nvm_sections[NVM_NUM_OF_SECTIONS];
293
294 /* EEPROM MAC addresses */
295 struct mac_address addresses[IWL_MVM_MAX_ADDRESSES];
296
297 /* data related to data path */
298 struct iwl_rx_phy_info last_phy_info;
299 struct ieee80211_sta __rcu *fw_id_to_mac_id[IWL_MVM_STATION_COUNT];
300 struct work_struct sta_drained_wk;
301 unsigned long sta_drained[BITS_TO_LONGS(IWL_MVM_STATION_COUNT)];
302
303 /* configured by mac80211 */
304 u32 rts_threshold;
305
306 /* Scan status, cmd (pre-allocated) and auxiliary station */
307 enum iwl_scan_status scan_status;
308 struct iwl_scan_cmd *scan_cmd;
309
310 /* Internal station */
311 struct iwl_mvm_int_sta aux_sta;
312
313 u8 scan_last_antenna_idx; /* to toggle TX between antennas */
314 u8 mgmt_last_antenna_idx;
315
316#ifdef CONFIG_IWLWIFI_DEBUGFS
317 struct dentry *debugfs_dir;
318 u32 dbgfs_sram_offset, dbgfs_sram_len;
319 bool prevent_power_down_d3;
320#endif
321
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200322 struct iwl_mvm_phy_ctxt phy_ctxts[NUM_PHY_CTX];
Johannes Berg8ca151b2013-01-24 14:25:36 +0100323
324 struct list_head time_event_list;
325 spinlock_t time_event_lock;
326
327 /*
328 * A bitmap indicating the index of the key in use. The firmware
329 * can hold 16 keys at most. Reflect this fact.
330 */
331 unsigned long fw_key_table[BITS_TO_LONGS(STA_KEY_MAX_NUM)];
Alexander Bondar5ee2b212013-03-05 10:16:40 +0200332
333 /*
334 * This counter of created interfaces is referenced only in conjunction
335 * with FW limitation related to power management. Currently PM is
336 * supported only on a single interface.
337 * IMPORTANT: this variable counts all interfaces except P2P device.
338 */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100339 u8 vif_count;
340
341 struct led_classdev led;
342
343 struct ieee80211_vif *p2p_device_vif;
Johannes Bergf444eb12013-02-26 12:04:18 +0100344
345#ifdef CONFIG_PM_SLEEP
346 int gtk_ivlen, gtk_icvlen, ptk_ivlen, ptk_icvlen;
Johannes Bergafc66bb2013-05-03 11:44:16 +0200347#ifdef CONFIG_IWLWIFI_DEBUGFS
348 bool store_d3_resume_sram;
349 void *d3_resume_sram;
350#endif
Johannes Bergf444eb12013-02-26 12:04:18 +0100351#endif
Emmanuel Grumbachf421f9c2013-01-17 14:20:29 +0200352
353 /* BT-Coex */
354 u8 bt_kill_msk;
Emmanuel Grumbach10942342013-02-19 11:02:36 +0200355 struct iwl_bt_coex_profile_notif last_bt_notif;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100356};
357
358/* Extract MVM priv from op_mode and _hw */
359#define IWL_OP_MODE_GET_MVM(_iwl_op_mode) \
360 ((struct iwl_mvm *)(_iwl_op_mode)->op_mode_specific)
361
362#define IWL_MAC80211_GET_MVM(_hw) \
363 IWL_OP_MODE_GET_MVM((struct iwl_op_mode *)((_hw)->priv))
364
365extern const u8 iwl_mvm_ac_to_tx_fifo[];
366
367struct iwl_rate_info {
368 u8 plcp; /* uCode API: IWL_RATE_6M_PLCP, etc. */
369 u8 plcp_siso; /* uCode API: IWL_RATE_SISO_6M_PLCP, etc. */
370 u8 plcp_mimo2; /* uCode API: IWL_RATE_MIMO2_6M_PLCP, etc. */
371 u8 plcp_mimo3; /* uCode API: IWL_RATE_MIMO3_6M_PLCP, etc. */
372 u8 ieee; /* MAC header: IWL_RATE_6M_IEEE, etc. */
373};
374
375/******************
376 * MVM Methods
377 ******************/
378/* uCode */
379int iwl_run_init_mvm_ucode(struct iwl_mvm *mvm, bool read_nvm);
380
381/* Utils */
382int iwl_mvm_legacy_rate_to_mac80211_idx(u32 rate_n_flags,
383 enum ieee80211_band band);
384u8 iwl_mvm_mac80211_idx_to_hwrate(int rate_idx);
385void iwl_mvm_dump_nic_error_log(struct iwl_mvm *mvm);
386u8 first_antenna(u8 mask);
387u8 iwl_mvm_next_antenna(struct iwl_mvm *mvm, u8 valid, u8 last_idx);
388
389/* Tx / Host Commands */
390int __must_check iwl_mvm_send_cmd(struct iwl_mvm *mvm,
391 struct iwl_host_cmd *cmd);
392int __must_check iwl_mvm_send_cmd_pdu(struct iwl_mvm *mvm, u8 id,
393 u32 flags, u16 len, const void *data);
394int __must_check iwl_mvm_send_cmd_status(struct iwl_mvm *mvm,
395 struct iwl_host_cmd *cmd,
396 u32 *status);
397int __must_check iwl_mvm_send_cmd_pdu_status(struct iwl_mvm *mvm, u8 id,
398 u16 len, const void *data,
399 u32 *status);
400int iwl_mvm_tx_skb(struct iwl_mvm *mvm, struct sk_buff *skb,
401 struct ieee80211_sta *sta);
402int iwl_mvm_tx_skb_non_sta(struct iwl_mvm *mvm, struct sk_buff *skb);
403#ifdef CONFIG_IWLWIFI_DEBUG
404const char *iwl_mvm_get_tx_fail_reason(u32 status);
405#else
406static inline const char *iwl_mvm_get_tx_fail_reason(u32 status) { return ""; }
407#endif
408int iwl_mvm_flush_tx_path(struct iwl_mvm *mvm, u32 tfd_msk, bool sync);
409void iwl_mvm_async_handlers_purge(struct iwl_mvm *mvm);
410
411/* Statistics */
412int iwl_mvm_rx_reply_statistics(struct iwl_mvm *mvm,
413 struct iwl_rx_cmd_buffer *rxb,
414 struct iwl_device_cmd *cmd);
415int iwl_mvm_rx_statistics(struct iwl_mvm *mvm,
416 struct iwl_rx_cmd_buffer *rxb,
417 struct iwl_device_cmd *cmd);
418
419/* NVM */
420int iwl_nvm_init(struct iwl_mvm *mvm);
421
422int iwl_mvm_up(struct iwl_mvm *mvm);
423int iwl_mvm_load_d3_fw(struct iwl_mvm *mvm);
424
425int iwl_mvm_mac_setup_register(struct iwl_mvm *mvm);
426
427/*
428 * FW notifications / CMD responses handlers
429 * Convention: iwl_mvm_rx_<NAME OF THE CMD>
430 */
431int iwl_mvm_rx_rx_phy_cmd(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
432 struct iwl_device_cmd *cmd);
433int iwl_mvm_rx_rx_mpdu(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
434 struct iwl_device_cmd *cmd);
435int iwl_mvm_rx_tx_cmd(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
436 struct iwl_device_cmd *cmd);
437int iwl_mvm_rx_ba_notif(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
438 struct iwl_device_cmd *cmd);
439int iwl_mvm_rx_radio_ver(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
440 struct iwl_device_cmd *cmd);
441int iwl_mvm_rx_fw_error(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
442 struct iwl_device_cmd *cmd);
443int iwl_mvm_rx_card_state_notif(struct iwl_mvm *mvm,
444 struct iwl_rx_cmd_buffer *rxb,
445 struct iwl_device_cmd *cmd);
446int iwl_mvm_rx_radio_ver(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
447 struct iwl_device_cmd *cmd);
448
449/* MVM PHY */
450int iwl_mvm_phy_ctxt_add(struct iwl_mvm *mvm, struct iwl_mvm_phy_ctxt *ctxt,
451 struct cfg80211_chan_def *chandef,
452 u8 chains_static, u8 chains_dynamic);
453int iwl_mvm_phy_ctxt_changed(struct iwl_mvm *mvm, struct iwl_mvm_phy_ctxt *ctxt,
454 struct cfg80211_chan_def *chandef,
455 u8 chains_static, u8 chains_dynamic);
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200456void iwl_mvm_phy_ctxt_ref(struct iwl_mvm *mvm,
457 struct iwl_mvm_phy_ctxt *ctxt);
458void iwl_mvm_phy_ctxt_unref(struct iwl_mvm *mvm,
459 struct iwl_mvm_phy_ctxt *ctxt);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100460
461/* MAC (virtual interface) programming */
462int iwl_mvm_mac_ctxt_init(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
463void iwl_mvm_mac_ctxt_release(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
464int iwl_mvm_mac_ctxt_add(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
465int iwl_mvm_mac_ctxt_changed(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
466int iwl_mvm_mac_ctxt_remove(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
467u32 iwl_mvm_mac_get_queues_mask(struct iwl_mvm *mvm,
468 struct ieee80211_vif *vif);
469int iwl_mvm_mac_ctxt_beacon_changed(struct iwl_mvm *mvm,
470 struct ieee80211_vif *vif);
Ilan Peer571765c2013-03-05 15:26:03 +0200471int iwl_mvm_rx_beacon_notif(struct iwl_mvm *mvm,
472 struct iwl_rx_cmd_buffer *rxb,
473 struct iwl_device_cmd *cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100474
475/* Bindings */
476int iwl_mvm_binding_add_vif(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
477int iwl_mvm_binding_remove_vif(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
478
479/* Quota management */
480int iwl_mvm_update_quotas(struct iwl_mvm *mvm, struct ieee80211_vif *newvif);
481
482/* Scanning */
483int iwl_mvm_scan_request(struct iwl_mvm *mvm,
484 struct ieee80211_vif *vif,
485 struct cfg80211_scan_request *req);
486int iwl_mvm_rx_scan_response(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
487 struct iwl_device_cmd *cmd);
488int iwl_mvm_rx_scan_complete(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
489 struct iwl_device_cmd *cmd);
490void iwl_mvm_cancel_scan(struct iwl_mvm *mvm);
491
492/* MVM debugfs */
493#ifdef CONFIG_IWLWIFI_DEBUGFS
494int iwl_mvm_dbgfs_register(struct iwl_mvm *mvm, struct dentry *dbgfs_dir);
Johannes Berg63494372013-03-26 10:47:53 +0100495void iwl_mvm_vif_dbgfs_register(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
496void iwl_mvm_vif_dbgfs_clean(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100497#else
498static inline int iwl_mvm_dbgfs_register(struct iwl_mvm *mvm,
499 struct dentry *dbgfs_dir)
500{
501 return 0;
502}
Johannes Berg63494372013-03-26 10:47:53 +0100503static inline void
504iwl_mvm_vif_dbgfs_register(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
505{
506}
507static inline void
508iwl_mvm_vif_dbgfs_clean(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
509{
510}
Johannes Berg8ca151b2013-01-24 14:25:36 +0100511#endif /* CONFIG_IWLWIFI_DEBUGFS */
512
513/* rate scaling */
514int iwl_mvm_send_lq_cmd(struct iwl_mvm *mvm, struct iwl_lq_cmd *lq,
515 u8 flags, bool init);
516
517/* power managment */
518int iwl_mvm_power_update_mode(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
519int iwl_mvm_power_disable(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
Alexander Bondar4d1c4b12013-03-06 16:28:43 +0200520void iwl_mvm_power_build_cmd(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
521 struct iwl_powertable_cmd *cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100522
523int iwl_mvm_leds_init(struct iwl_mvm *mvm);
524void iwl_mvm_leds_exit(struct iwl_mvm *mvm);
525
526/* D3 (WoWLAN, NetDetect) */
527int iwl_mvm_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan);
528int iwl_mvm_resume(struct ieee80211_hw *hw);
529void iwl_mvm_set_wakeup(struct ieee80211_hw *hw, bool enabled);
530void iwl_mvm_set_rekey_data(struct ieee80211_hw *hw,
531 struct ieee80211_vif *vif,
532 struct cfg80211_gtk_rekey_data *data);
533void iwl_mvm_ipv6_addr_change(struct ieee80211_hw *hw,
534 struct ieee80211_vif *vif,
535 struct inet6_dev *idev);
536void iwl_mvm_set_default_unicast_key(struct ieee80211_hw *hw,
537 struct ieee80211_vif *vif, int idx);
538
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200539/* BT Coex */
540int iwl_send_bt_prio_tbl(struct iwl_mvm *mvm);
541int iwl_send_bt_init_conf(struct iwl_mvm *mvm);
Emmanuel Grumbachf421f9c2013-01-17 14:20:29 +0200542int iwl_mvm_rx_bt_coex_notif(struct iwl_mvm *mvm,
543 struct iwl_rx_cmd_buffer *rxb,
544 struct iwl_device_cmd *cmd);
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200545void iwl_mvm_bt_rssi_event(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
546 enum ieee80211_rssi_event rssi_event);
Emmanuel Grumbach9166b1e2013-03-20 15:28:27 +0200547void iwl_mvm_bt_coex_vif_assoc(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200548
Hila Gonen7df15b12012-12-12 11:16:19 +0200549/* beacon filtering */
550int iwl_mvm_enable_beacon_filter(struct iwl_mvm *mvm,
551 struct ieee80211_vif *vif);
552int iwl_mvm_disable_beacon_filter(struct iwl_mvm *mvm,
553 struct ieee80211_vif *vif);
554
Johannes Berg8ca151b2013-01-24 14:25:36 +0100555#endif /* __IWL_MVM_H__ */