mvm.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551
  1. /******************************************************************************
  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
  25. * in the file called COPYING.
  26. *
  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. #ifndef __IWL_MVM_H__
  64. #define __IWL_MVM_H__
  65. #include <linux/list.h>
  66. #include <linux/spinlock.h>
  67. #include <linux/leds.h>
  68. #include <linux/in6.h>
  69. #include "iwl-op-mode.h"
  70. #include "iwl-trans.h"
  71. #include "iwl-notif-wait.h"
  72. #include "iwl-eeprom-parse.h"
  73. #include "iwl-test.h"
  74. #include "iwl-trans.h"
  75. #include "sta.h"
  76. #include "fw-api.h"
  77. #define IWL_INVALID_MAC80211_QUEUE 0xff
  78. #define IWL_MVM_MAX_ADDRESSES 5
  79. /* RSSI offset for WkP */
  80. #define IWL_RSSI_OFFSET 50
  81. enum iwl_mvm_tx_fifo {
  82. IWL_MVM_TX_FIFO_BK = 0,
  83. IWL_MVM_TX_FIFO_BE,
  84. IWL_MVM_TX_FIFO_VI,
  85. IWL_MVM_TX_FIFO_VO,
  86. };
  87. extern struct ieee80211_ops iwl_mvm_hw_ops;
  88. /**
  89. * struct iwl_mvm_mod_params - module parameters for iwlmvm
  90. * @init_dbg: if true, then the NIC won't be stopped if the INIT fw asserted.
  91. * We will register to mac80211 to have testmode working. The NIC must not
  92. * be up'ed after the INIT fw asserted. This is useful to be able to use
  93. * proprietary tools over testmode to debug the INIT fw.
  94. * @power_scheme: CAM(Continuous Active Mode)-1, BPS(Balanced Power
  95. * Save)-2(default), LP(Low Power)-3
  96. */
  97. struct iwl_mvm_mod_params {
  98. bool init_dbg;
  99. int power_scheme;
  100. };
  101. extern struct iwl_mvm_mod_params iwlmvm_mod_params;
  102. struct iwl_mvm_phy_ctxt {
  103. u16 id;
  104. u16 color;
  105. u32 ref;
  106. /*
  107. * TODO: This should probably be removed. Currently here only for rate
  108. * scaling algorithm
  109. */
  110. struct ieee80211_channel *channel;
  111. };
  112. struct iwl_mvm_time_event_data {
  113. struct ieee80211_vif *vif;
  114. struct list_head list;
  115. unsigned long end_jiffies;
  116. u32 duration;
  117. bool running;
  118. u32 uid;
  119. /*
  120. * The access to the 'id' field must be done when the
  121. * mvm->time_event_lock is held, as it value is used to indicate
  122. * if the te is in the time event list or not (when id == TE_MAX)
  123. */
  124. u32 id;
  125. };
  126. /* Power management */
  127. /**
  128. * enum iwl_power_scheme
  129. * @IWL_POWER_LEVEL_CAM - Continuously Active Mode
  130. * @IWL_POWER_LEVEL_BPS - Balanced Power Save (default)
  131. * @IWL_POWER_LEVEL_LP - Low Power
  132. */
  133. enum iwl_power_scheme {
  134. IWL_POWER_SCHEME_CAM = 1,
  135. IWL_POWER_SCHEME_BPS,
  136. IWL_POWER_SCHEME_LP
  137. };
  138. #define IWL_CONN_MAX_LISTEN_INTERVAL 70
  139. /**
  140. * struct iwl_mvm_vif - data per Virtual Interface, it is a MAC context
  141. * @id: between 0 and 3
  142. * @color: to solve races upon MAC addition and removal
  143. * @ap_sta_id: the sta_id of the AP - valid only if VIF type is STA
  144. * @uploaded: indicates the MAC context has been added to the device
  145. * @ap_active: indicates that ap context is configured, and that the interface
  146. * should get quota etc.
  147. * @monitor_active: indicates that monitor context is configured, and that the
  148. * interface should get quota etc.
  149. * @queue_params: QoS params for this MAC
  150. * @bcast_sta: station used for broadcast packets. Used by the following
  151. * vifs: P2P_DEVICE, GO and AP.
  152. * @beacon_skb: the skb used to hold the AP/GO beacon template
  153. */
  154. struct iwl_mvm_vif {
  155. u16 id;
  156. u16 color;
  157. u8 ap_sta_id;
  158. bool uploaded;
  159. bool ap_active;
  160. bool monitor_active;
  161. u32 ap_beacon_time;
  162. enum iwl_tsf_id tsf_id;
  163. /*
  164. * QoS data from mac80211, need to store this here
  165. * as mac80211 has a separate callback but we need
  166. * to have the data for the MAC context
  167. */
  168. struct ieee80211_tx_queue_params queue_params[IEEE80211_NUM_ACS];
  169. struct iwl_mvm_time_event_data time_event_data;
  170. struct iwl_mvm_int_sta bcast_sta;
  171. /*
  172. * Assigned while mac80211 has the interface in a channel context,
  173. * or, for P2P Device, while it exists.
  174. */
  175. struct iwl_mvm_phy_ctxt *phy_ctxt;
  176. #ifdef CONFIG_PM_SLEEP
  177. /* WoWLAN GTK rekey data */
  178. struct {
  179. u8 kck[NL80211_KCK_LEN], kek[NL80211_KEK_LEN];
  180. __le64 replay_ctr;
  181. bool valid;
  182. } rekey_data;
  183. int tx_key_idx;
  184. #if IS_ENABLED(CONFIG_IPV6)
  185. /* IPv6 addresses for WoWLAN */
  186. struct in6_addr target_ipv6_addrs[IWL_PROTO_OFFLOAD_NUM_IPV6_ADDRS];
  187. int num_target_ipv6_addrs;
  188. #endif
  189. #endif
  190. #ifdef CONFIG_IWLWIFI_DEBUGFS
  191. struct dentry *dbgfs_dir;
  192. struct dentry *dbgfs_slink;
  193. void *dbgfs_data;
  194. #endif
  195. };
  196. static inline struct iwl_mvm_vif *
  197. iwl_mvm_vif_from_mac80211(struct ieee80211_vif *vif)
  198. {
  199. return (void *)vif->drv_priv;
  200. }
  201. enum iwl_mvm_status {
  202. IWL_MVM_STATUS_HW_RFKILL,
  203. IWL_MVM_STATUS_ROC_RUNNING,
  204. IWL_MVM_STATUS_IN_HW_RESTART,
  205. };
  206. enum iwl_scan_status {
  207. IWL_MVM_SCAN_NONE,
  208. IWL_MVM_SCAN_OS,
  209. };
  210. /**
  211. * struct iwl_nvm_section - describes an NVM section in memory.
  212. *
  213. * This struct holds an NVM section read from the NIC using NVM_ACCESS_CMD,
  214. * and saved for later use by the driver. Not all NVM sections are saved
  215. * this way, only the needed ones.
  216. */
  217. struct iwl_nvm_section {
  218. u16 length;
  219. const u8 *data;
  220. };
  221. struct iwl_mvm {
  222. /* for logger access */
  223. struct device *dev;
  224. struct iwl_trans *trans;
  225. const struct iwl_fw *fw;
  226. const struct iwl_cfg *cfg;
  227. struct iwl_phy_db *phy_db;
  228. struct ieee80211_hw *hw;
  229. /* for protecting access to iwl_mvm */
  230. struct mutex mutex;
  231. struct list_head async_handlers_list;
  232. spinlock_t async_handlers_lock;
  233. struct work_struct async_handlers_wk;
  234. struct work_struct roc_done_wk;
  235. unsigned long status;
  236. /*
  237. * for beacon filtering -
  238. * currently only one interface can be supported
  239. */
  240. struct iwl_mvm_vif *bf_allowed_vif;
  241. enum iwl_ucode_type cur_ucode;
  242. bool ucode_loaded;
  243. bool init_ucode_run;
  244. u32 error_event_table;
  245. u32 log_event_table;
  246. u32 ampdu_ref;
  247. struct iwl_notif_wait_data notif_wait;
  248. unsigned long transport_queue_stop;
  249. u8 queue_to_mac80211[IWL_MAX_HW_QUEUES];
  250. atomic_t queue_stop_count[IWL_MAX_HW_QUEUES];
  251. struct iwl_nvm_data *nvm_data;
  252. /* NVM sections */
  253. struct iwl_nvm_section nvm_sections[NVM_NUM_OF_SECTIONS];
  254. /* EEPROM MAC addresses */
  255. struct mac_address addresses[IWL_MVM_MAX_ADDRESSES];
  256. /* data related to data path */
  257. struct iwl_rx_phy_info last_phy_info;
  258. struct ieee80211_sta __rcu *fw_id_to_mac_id[IWL_MVM_STATION_COUNT];
  259. struct work_struct sta_drained_wk;
  260. unsigned long sta_drained[BITS_TO_LONGS(IWL_MVM_STATION_COUNT)];
  261. /* configured by mac80211 */
  262. u32 rts_threshold;
  263. /* Scan status, cmd (pre-allocated) and auxiliary station */
  264. enum iwl_scan_status scan_status;
  265. struct iwl_scan_cmd *scan_cmd;
  266. /* Internal station */
  267. struct iwl_mvm_int_sta aux_sta;
  268. u8 scan_last_antenna_idx; /* to toggle TX between antennas */
  269. u8 mgmt_last_antenna_idx;
  270. #ifdef CONFIG_IWLWIFI_DEBUGFS
  271. struct dentry *debugfs_dir;
  272. u32 dbgfs_sram_offset, dbgfs_sram_len;
  273. bool prevent_power_down_d3;
  274. #endif
  275. struct iwl_mvm_phy_ctxt phy_ctxts[NUM_PHY_CTX];
  276. struct list_head time_event_list;
  277. spinlock_t time_event_lock;
  278. /*
  279. * A bitmap indicating the index of the key in use. The firmware
  280. * can hold 16 keys at most. Reflect this fact.
  281. */
  282. unsigned long fw_key_table[BITS_TO_LONGS(STA_KEY_MAX_NUM)];
  283. /*
  284. * This counter of created interfaces is referenced only in conjunction
  285. * with FW limitation related to power management. Currently PM is
  286. * supported only on a single interface.
  287. * IMPORTANT: this variable counts all interfaces except P2P device.
  288. */
  289. u8 vif_count;
  290. struct led_classdev led;
  291. struct ieee80211_vif *p2p_device_vif;
  292. #ifdef CONFIG_PM_SLEEP
  293. int gtk_ivlen, gtk_icvlen, ptk_ivlen, ptk_icvlen;
  294. #endif
  295. /* BT-Coex */
  296. u8 bt_kill_msk;
  297. struct iwl_bt_coex_profile_notif last_bt_notif;
  298. };
  299. /* Extract MVM priv from op_mode and _hw */
  300. #define IWL_OP_MODE_GET_MVM(_iwl_op_mode) \
  301. ((struct iwl_mvm *)(_iwl_op_mode)->op_mode_specific)
  302. #define IWL_MAC80211_GET_MVM(_hw) \
  303. IWL_OP_MODE_GET_MVM((struct iwl_op_mode *)((_hw)->priv))
  304. extern const u8 iwl_mvm_ac_to_tx_fifo[];
  305. struct iwl_rate_info {
  306. u8 plcp; /* uCode API: IWL_RATE_6M_PLCP, etc. */
  307. u8 plcp_siso; /* uCode API: IWL_RATE_SISO_6M_PLCP, etc. */
  308. u8 plcp_mimo2; /* uCode API: IWL_RATE_MIMO2_6M_PLCP, etc. */
  309. u8 plcp_mimo3; /* uCode API: IWL_RATE_MIMO3_6M_PLCP, etc. */
  310. u8 ieee; /* MAC header: IWL_RATE_6M_IEEE, etc. */
  311. };
  312. /******************
  313. * MVM Methods
  314. ******************/
  315. /* uCode */
  316. int iwl_run_init_mvm_ucode(struct iwl_mvm *mvm, bool read_nvm);
  317. /* Utils */
  318. int iwl_mvm_legacy_rate_to_mac80211_idx(u32 rate_n_flags,
  319. enum ieee80211_band band);
  320. u8 iwl_mvm_mac80211_idx_to_hwrate(int rate_idx);
  321. void iwl_mvm_dump_nic_error_log(struct iwl_mvm *mvm);
  322. u8 first_antenna(u8 mask);
  323. u8 iwl_mvm_next_antenna(struct iwl_mvm *mvm, u8 valid, u8 last_idx);
  324. /* Tx / Host Commands */
  325. int __must_check iwl_mvm_send_cmd(struct iwl_mvm *mvm,
  326. struct iwl_host_cmd *cmd);
  327. int __must_check iwl_mvm_send_cmd_pdu(struct iwl_mvm *mvm, u8 id,
  328. u32 flags, u16 len, const void *data);
  329. int __must_check iwl_mvm_send_cmd_status(struct iwl_mvm *mvm,
  330. struct iwl_host_cmd *cmd,
  331. u32 *status);
  332. int __must_check iwl_mvm_send_cmd_pdu_status(struct iwl_mvm *mvm, u8 id,
  333. u16 len, const void *data,
  334. u32 *status);
  335. int iwl_mvm_tx_skb(struct iwl_mvm *mvm, struct sk_buff *skb,
  336. struct ieee80211_sta *sta);
  337. int iwl_mvm_tx_skb_non_sta(struct iwl_mvm *mvm, struct sk_buff *skb);
  338. #ifdef CONFIG_IWLWIFI_DEBUG
  339. const char *iwl_mvm_get_tx_fail_reason(u32 status);
  340. #else
  341. static inline const char *iwl_mvm_get_tx_fail_reason(u32 status) { return ""; }
  342. #endif
  343. int iwl_mvm_flush_tx_path(struct iwl_mvm *mvm, u32 tfd_msk, bool sync);
  344. void iwl_mvm_async_handlers_purge(struct iwl_mvm *mvm);
  345. /* Statistics */
  346. int iwl_mvm_rx_reply_statistics(struct iwl_mvm *mvm,
  347. struct iwl_rx_cmd_buffer *rxb,
  348. struct iwl_device_cmd *cmd);
  349. int iwl_mvm_rx_statistics(struct iwl_mvm *mvm,
  350. struct iwl_rx_cmd_buffer *rxb,
  351. struct iwl_device_cmd *cmd);
  352. /* NVM */
  353. int iwl_nvm_init(struct iwl_mvm *mvm);
  354. int iwl_mvm_up(struct iwl_mvm *mvm);
  355. int iwl_mvm_load_d3_fw(struct iwl_mvm *mvm);
  356. int iwl_mvm_mac_setup_register(struct iwl_mvm *mvm);
  357. /*
  358. * FW notifications / CMD responses handlers
  359. * Convention: iwl_mvm_rx_<NAME OF THE CMD>
  360. */
  361. int iwl_mvm_rx_rx_phy_cmd(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
  362. struct iwl_device_cmd *cmd);
  363. int iwl_mvm_rx_rx_mpdu(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
  364. struct iwl_device_cmd *cmd);
  365. int iwl_mvm_rx_tx_cmd(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
  366. struct iwl_device_cmd *cmd);
  367. int iwl_mvm_rx_ba_notif(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
  368. struct iwl_device_cmd *cmd);
  369. int iwl_mvm_rx_radio_ver(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
  370. struct iwl_device_cmd *cmd);
  371. int iwl_mvm_rx_fw_error(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
  372. struct iwl_device_cmd *cmd);
  373. int iwl_mvm_rx_card_state_notif(struct iwl_mvm *mvm,
  374. struct iwl_rx_cmd_buffer *rxb,
  375. struct iwl_device_cmd *cmd);
  376. int iwl_mvm_rx_radio_ver(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
  377. struct iwl_device_cmd *cmd);
  378. /* MVM PHY */
  379. int iwl_mvm_phy_ctxt_add(struct iwl_mvm *mvm, struct iwl_mvm_phy_ctxt *ctxt,
  380. struct cfg80211_chan_def *chandef,
  381. u8 chains_static, u8 chains_dynamic);
  382. int iwl_mvm_phy_ctxt_changed(struct iwl_mvm *mvm, struct iwl_mvm_phy_ctxt *ctxt,
  383. struct cfg80211_chan_def *chandef,
  384. u8 chains_static, u8 chains_dynamic);
  385. void iwl_mvm_phy_ctxt_ref(struct iwl_mvm *mvm,
  386. struct iwl_mvm_phy_ctxt *ctxt);
  387. void iwl_mvm_phy_ctxt_unref(struct iwl_mvm *mvm,
  388. struct iwl_mvm_phy_ctxt *ctxt);
  389. /* MAC (virtual interface) programming */
  390. int iwl_mvm_mac_ctxt_init(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
  391. void iwl_mvm_mac_ctxt_release(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
  392. int iwl_mvm_mac_ctxt_add(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
  393. int iwl_mvm_mac_ctxt_changed(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
  394. int iwl_mvm_mac_ctxt_remove(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
  395. u32 iwl_mvm_mac_get_queues_mask(struct iwl_mvm *mvm,
  396. struct ieee80211_vif *vif);
  397. int iwl_mvm_mac_ctxt_beacon_changed(struct iwl_mvm *mvm,
  398. struct ieee80211_vif *vif);
  399. int iwl_mvm_rx_beacon_notif(struct iwl_mvm *mvm,
  400. struct iwl_rx_cmd_buffer *rxb,
  401. struct iwl_device_cmd *cmd);
  402. /* Bindings */
  403. int iwl_mvm_binding_add_vif(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
  404. int iwl_mvm_binding_remove_vif(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
  405. /* Quota management */
  406. int iwl_mvm_update_quotas(struct iwl_mvm *mvm, struct ieee80211_vif *newvif);
  407. /* Scanning */
  408. int iwl_mvm_scan_request(struct iwl_mvm *mvm,
  409. struct ieee80211_vif *vif,
  410. struct cfg80211_scan_request *req);
  411. int iwl_mvm_rx_scan_response(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
  412. struct iwl_device_cmd *cmd);
  413. int iwl_mvm_rx_scan_complete(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
  414. struct iwl_device_cmd *cmd);
  415. void iwl_mvm_cancel_scan(struct iwl_mvm *mvm);
  416. /* MVM debugfs */
  417. #ifdef CONFIG_IWLWIFI_DEBUGFS
  418. int iwl_mvm_dbgfs_register(struct iwl_mvm *mvm, struct dentry *dbgfs_dir);
  419. void iwl_mvm_vif_dbgfs_register(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
  420. void iwl_mvm_vif_dbgfs_clean(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
  421. #else
  422. static inline int iwl_mvm_dbgfs_register(struct iwl_mvm *mvm,
  423. struct dentry *dbgfs_dir)
  424. {
  425. return 0;
  426. }
  427. static inline void
  428. iwl_mvm_vif_dbgfs_register(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
  429. {
  430. }
  431. static inline void
  432. iwl_mvm_vif_dbgfs_clean(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
  433. {
  434. }
  435. #endif /* CONFIG_IWLWIFI_DEBUGFS */
  436. /* rate scaling */
  437. int iwl_mvm_send_lq_cmd(struct iwl_mvm *mvm, struct iwl_lq_cmd *lq,
  438. u8 flags, bool init);
  439. /* power managment */
  440. int iwl_mvm_power_update_mode(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
  441. int iwl_mvm_power_disable(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
  442. void iwl_mvm_power_build_cmd(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
  443. struct iwl_powertable_cmd *cmd);
  444. int iwl_mvm_leds_init(struct iwl_mvm *mvm);
  445. void iwl_mvm_leds_exit(struct iwl_mvm *mvm);
  446. /* D3 (WoWLAN, NetDetect) */
  447. int iwl_mvm_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan);
  448. int iwl_mvm_resume(struct ieee80211_hw *hw);
  449. void iwl_mvm_set_wakeup(struct ieee80211_hw *hw, bool enabled);
  450. void iwl_mvm_set_rekey_data(struct ieee80211_hw *hw,
  451. struct ieee80211_vif *vif,
  452. struct cfg80211_gtk_rekey_data *data);
  453. void iwl_mvm_ipv6_addr_change(struct ieee80211_hw *hw,
  454. struct ieee80211_vif *vif,
  455. struct inet6_dev *idev);
  456. void iwl_mvm_set_default_unicast_key(struct ieee80211_hw *hw,
  457. struct ieee80211_vif *vif, int idx);
  458. /* BT Coex */
  459. int iwl_send_bt_prio_tbl(struct iwl_mvm *mvm);
  460. int iwl_send_bt_init_conf(struct iwl_mvm *mvm);
  461. int iwl_mvm_rx_bt_coex_notif(struct iwl_mvm *mvm,
  462. struct iwl_rx_cmd_buffer *rxb,
  463. struct iwl_device_cmd *cmd);
  464. void iwl_mvm_bt_rssi_event(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
  465. enum ieee80211_rssi_event rssi_event);
  466. void iwl_mvm_bt_coex_vif_assoc(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
  467. /* beacon filtering */
  468. int iwl_mvm_enable_beacon_filter(struct iwl_mvm *mvm,
  469. struct ieee80211_vif *vif);
  470. int iwl_mvm_disable_beacon_filter(struct iwl_mvm *mvm,
  471. struct ieee80211_vif *vif);
  472. #endif /* __IWL_MVM_H__ */