mac-ctxt.c 32 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045
  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. #include <linux/etherdevice.h>
  64. #include <net/mac80211.h>
  65. #include "iwl-io.h"
  66. #include "iwl-prph.h"
  67. #include "fw-api.h"
  68. #include "mvm.h"
  69. const u8 iwl_mvm_ac_to_tx_fifo[] = {
  70. IWL_MVM_TX_FIFO_BK,
  71. IWL_MVM_TX_FIFO_BE,
  72. IWL_MVM_TX_FIFO_VI,
  73. IWL_MVM_TX_FIFO_VO,
  74. };
  75. struct iwl_mvm_mac_iface_iterator_data {
  76. struct iwl_mvm *mvm;
  77. struct ieee80211_vif *vif;
  78. unsigned long available_mac_ids[BITS_TO_LONGS(NUM_MAC_INDEX_DRIVER)];
  79. unsigned long available_tsf_ids[BITS_TO_LONGS(NUM_TSF_IDS)];
  80. unsigned long used_hw_queues[BITS_TO_LONGS(IWL_MVM_FIRST_AGG_QUEUE)];
  81. enum iwl_tsf_id preferred_tsf;
  82. bool found_vif;
  83. };
  84. static void iwl_mvm_mac_iface_iterator(void *_data, u8 *mac,
  85. struct ieee80211_vif *vif)
  86. {
  87. struct iwl_mvm_mac_iface_iterator_data *data = _data;
  88. struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
  89. u32 ac;
  90. /* Iterator may already find the interface being added -- skip it */
  91. if (vif == data->vif) {
  92. data->found_vif = true;
  93. return;
  94. }
  95. /* Mark the queues used by the vif */
  96. for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
  97. if (vif->hw_queue[ac] != IEEE80211_INVAL_HW_QUEUE)
  98. __set_bit(vif->hw_queue[ac], data->used_hw_queues);
  99. if (vif->cab_queue != IEEE80211_INVAL_HW_QUEUE)
  100. __set_bit(vif->cab_queue, data->used_hw_queues);
  101. /*
  102. * Mark MAC IDs as used by clearing the available bit, and
  103. * (below) mark TSFs as used if their existing use is not
  104. * compatible with the new interface type.
  105. * No locking or atomic bit operations are needed since the
  106. * data is on the stack of the caller function.
  107. */
  108. __clear_bit(mvmvif->id, data->available_mac_ids);
  109. /*
  110. * The TSF is a hardware/firmware resource, there are 4 and
  111. * the driver should assign and free them as needed. However,
  112. * there are cases where 2 MACs should share the same TSF ID
  113. * for the purpose of clock sync, an optimization to avoid
  114. * clock drift causing overlapping TBTTs/DTIMs for a GO and
  115. * client in the system.
  116. *
  117. * The firmware will decide according to the MAC type which
  118. * will be the master and slave. Clients that need to sync
  119. * with a remote station will be the master, and an AP or GO
  120. * will be the slave.
  121. *
  122. * Depending on the new interface type it can be slaved to
  123. * or become the master of an existing interface.
  124. */
  125. switch (data->vif->type) {
  126. case NL80211_IFTYPE_STATION:
  127. /*
  128. * The new interface is client, so if the existing one
  129. * we're iterating is an AP, the TSF should be used to
  130. * avoid drift between the new client and existing AP,
  131. * the existing AP will get drift updates from the new
  132. * client context in this case
  133. */
  134. if (vif->type == NL80211_IFTYPE_AP) {
  135. if (data->preferred_tsf == NUM_TSF_IDS &&
  136. test_bit(mvmvif->tsf_id, data->available_tsf_ids))
  137. data->preferred_tsf = mvmvif->tsf_id;
  138. return;
  139. }
  140. break;
  141. case NL80211_IFTYPE_AP:
  142. /*
  143. * The new interface is AP/GO, so should get drift
  144. * updates from an existing client or use the same
  145. * TSF as an existing GO. There's no drift between
  146. * TSFs internally but if they used different TSFs
  147. * then a new client MAC could update one of them
  148. * and cause drift that way.
  149. */
  150. if (vif->type == NL80211_IFTYPE_STATION ||
  151. vif->type == NL80211_IFTYPE_AP) {
  152. if (data->preferred_tsf == NUM_TSF_IDS &&
  153. test_bit(mvmvif->tsf_id, data->available_tsf_ids))
  154. data->preferred_tsf = mvmvif->tsf_id;
  155. return;
  156. }
  157. break;
  158. default:
  159. /*
  160. * For all other interface types there's no need to
  161. * take drift into account. Either they're exclusive
  162. * like IBSS and monitor, or we don't care much about
  163. * their TSF (like P2P Device), but we won't be able
  164. * to share the TSF resource.
  165. */
  166. break;
  167. }
  168. /*
  169. * Unless we exited above, we can't share the TSF resource
  170. * that the virtual interface we're iterating over is using
  171. * with the new one, so clear the available bit and if this
  172. * was the preferred one, reset that as well.
  173. */
  174. __clear_bit(mvmvif->tsf_id, data->available_tsf_ids);
  175. if (data->preferred_tsf == mvmvif->tsf_id)
  176. data->preferred_tsf = NUM_TSF_IDS;
  177. }
  178. /*
  179. * Get the mask of the queus used by the vif
  180. */
  181. u32 iwl_mvm_mac_get_queues_mask(struct iwl_mvm *mvm,
  182. struct ieee80211_vif *vif)
  183. {
  184. u32 qmask, ac;
  185. if (vif->type == NL80211_IFTYPE_P2P_DEVICE)
  186. return BIT(IWL_MVM_OFFCHANNEL_QUEUE);
  187. qmask = (vif->cab_queue != IEEE80211_INVAL_HW_QUEUE) ?
  188. BIT(vif->cab_queue) : 0;
  189. for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
  190. if (vif->hw_queue[ac] != IEEE80211_INVAL_HW_QUEUE)
  191. qmask |= BIT(vif->hw_queue[ac]);
  192. return qmask;
  193. }
  194. static int iwl_mvm_mac_ctxt_allocate_resources(struct iwl_mvm *mvm,
  195. struct ieee80211_vif *vif)
  196. {
  197. struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
  198. struct iwl_mvm_mac_iface_iterator_data data = {
  199. .mvm = mvm,
  200. .vif = vif,
  201. .available_mac_ids = { (1 << NUM_MAC_INDEX_DRIVER) - 1 },
  202. .available_tsf_ids = { (1 << NUM_TSF_IDS) - 1 },
  203. /* no preference yet */
  204. .preferred_tsf = NUM_TSF_IDS,
  205. .used_hw_queues = {
  206. BIT(IWL_MVM_OFFCHANNEL_QUEUE) |
  207. BIT(IWL_MVM_AUX_QUEUE) |
  208. BIT(IWL_MVM_CMD_QUEUE)
  209. },
  210. .found_vif = false,
  211. };
  212. u32 ac;
  213. int ret;
  214. /*
  215. * Allocate a MAC ID and a TSF for this MAC, along with the queues
  216. * and other resources.
  217. */
  218. /*
  219. * Before the iterator, we start with all MAC IDs and TSFs available.
  220. *
  221. * During iteration, all MAC IDs are cleared that are in use by other
  222. * virtual interfaces, and all TSF IDs are cleared that can't be used
  223. * by this new virtual interface because they're used by an interface
  224. * that can't share it with the new one.
  225. * At the same time, we check if there's a preferred TSF in the case
  226. * that we should share it with another interface.
  227. */
  228. /* Currently, MAC ID 0 should be used only for the managed vif */
  229. if (vif->type != NL80211_IFTYPE_STATION || vif->p2p)
  230. __clear_bit(0, data.available_mac_ids);
  231. ieee80211_iterate_active_interfaces_atomic(
  232. mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
  233. iwl_mvm_mac_iface_iterator, &data);
  234. /*
  235. * In the case we're getting here during resume, it's similar to
  236. * firmware restart, and with RESUME_ALL the iterator will find
  237. * the vif being added already.
  238. * We don't want to reassign any IDs in either case since doing
  239. * so would probably assign different IDs (as interfaces aren't
  240. * necessarily added in the same order), but the old IDs were
  241. * preserved anyway, so skip ID assignment for both resume and
  242. * recovery.
  243. */
  244. if (data.found_vif)
  245. return 0;
  246. /* Therefore, in recovery, we can't get here */
  247. WARN_ON_ONCE(test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status));
  248. mvmvif->id = find_first_bit(data.available_mac_ids,
  249. NUM_MAC_INDEX_DRIVER);
  250. if (mvmvif->id == NUM_MAC_INDEX_DRIVER) {
  251. IWL_ERR(mvm, "Failed to init MAC context - no free ID!\n");
  252. ret = -EIO;
  253. goto exit_fail;
  254. }
  255. if (data.preferred_tsf != NUM_TSF_IDS)
  256. mvmvif->tsf_id = data.preferred_tsf;
  257. else
  258. mvmvif->tsf_id = find_first_bit(data.available_tsf_ids,
  259. NUM_TSF_IDS);
  260. if (mvmvif->tsf_id == NUM_TSF_IDS) {
  261. IWL_ERR(mvm, "Failed to init MAC context - no free TSF!\n");
  262. ret = -EIO;
  263. goto exit_fail;
  264. }
  265. mvmvif->color = 0;
  266. INIT_LIST_HEAD(&mvmvif->time_event_data.list);
  267. mvmvif->time_event_data.id = TE_MAX;
  268. /* No need to allocate data queues to P2P Device MAC.*/
  269. if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
  270. for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
  271. vif->hw_queue[ac] = IEEE80211_INVAL_HW_QUEUE;
  272. return 0;
  273. }
  274. /* Find available queues, and allocate them to the ACs */
  275. for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
  276. u8 queue = find_first_zero_bit(data.used_hw_queues,
  277. IWL_MVM_FIRST_AGG_QUEUE);
  278. if (queue >= IWL_MVM_FIRST_AGG_QUEUE) {
  279. IWL_ERR(mvm, "Failed to allocate queue\n");
  280. ret = -EIO;
  281. goto exit_fail;
  282. }
  283. __set_bit(queue, data.used_hw_queues);
  284. vif->hw_queue[ac] = queue;
  285. }
  286. /* Allocate the CAB queue for softAP and GO interfaces */
  287. if (vif->type == NL80211_IFTYPE_AP) {
  288. u8 queue = find_first_zero_bit(data.used_hw_queues,
  289. IWL_MVM_FIRST_AGG_QUEUE);
  290. if (queue >= IWL_MVM_FIRST_AGG_QUEUE) {
  291. IWL_ERR(mvm, "Failed to allocate cab queue\n");
  292. ret = -EIO;
  293. goto exit_fail;
  294. }
  295. vif->cab_queue = queue;
  296. } else {
  297. vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
  298. }
  299. mvmvif->bcast_sta.sta_id = IWL_MVM_STATION_COUNT;
  300. mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT;
  301. return 0;
  302. exit_fail:
  303. memset(mvmvif, 0, sizeof(struct iwl_mvm_vif));
  304. memset(vif->hw_queue, IEEE80211_INVAL_HW_QUEUE, sizeof(vif->hw_queue));
  305. vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
  306. return ret;
  307. }
  308. int iwl_mvm_mac_ctxt_init(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
  309. {
  310. u32 ac;
  311. int ret;
  312. lockdep_assert_held(&mvm->mutex);
  313. ret = iwl_mvm_mac_ctxt_allocate_resources(mvm, vif);
  314. if (ret)
  315. return ret;
  316. switch (vif->type) {
  317. case NL80211_IFTYPE_P2P_DEVICE:
  318. iwl_trans_ac_txq_enable(mvm->trans, IWL_MVM_OFFCHANNEL_QUEUE,
  319. IWL_MVM_TX_FIFO_VO);
  320. break;
  321. case NL80211_IFTYPE_AP:
  322. iwl_trans_ac_txq_enable(mvm->trans, vif->cab_queue,
  323. IWL_MVM_TX_FIFO_VO);
  324. /* fall through */
  325. default:
  326. for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
  327. iwl_trans_ac_txq_enable(mvm->trans, vif->hw_queue[ac],
  328. iwl_mvm_ac_to_tx_fifo[ac]);
  329. break;
  330. }
  331. return 0;
  332. }
  333. void iwl_mvm_mac_ctxt_release(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
  334. {
  335. int ac;
  336. lockdep_assert_held(&mvm->mutex);
  337. switch (vif->type) {
  338. case NL80211_IFTYPE_P2P_DEVICE:
  339. iwl_trans_txq_disable(mvm->trans, IWL_MVM_OFFCHANNEL_QUEUE);
  340. break;
  341. case NL80211_IFTYPE_AP:
  342. iwl_trans_txq_disable(mvm->trans, vif->cab_queue);
  343. /* fall through */
  344. default:
  345. for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
  346. iwl_trans_txq_disable(mvm->trans, vif->hw_queue[ac]);
  347. }
  348. }
  349. static void iwl_mvm_ack_rates(struct iwl_mvm *mvm,
  350. struct ieee80211_vif *vif,
  351. enum ieee80211_band band,
  352. u8 *cck_rates, u8 *ofdm_rates)
  353. {
  354. struct ieee80211_supported_band *sband;
  355. unsigned long basic = vif->bss_conf.basic_rates;
  356. int lowest_present_ofdm = 100;
  357. int lowest_present_cck = 100;
  358. u8 cck = 0;
  359. u8 ofdm = 0;
  360. int i;
  361. sband = mvm->hw->wiphy->bands[band];
  362. for_each_set_bit(i, &basic, BITS_PER_LONG) {
  363. int hw = sband->bitrates[i].hw_value;
  364. if (hw >= IWL_FIRST_OFDM_RATE) {
  365. ofdm |= BIT(hw - IWL_FIRST_OFDM_RATE);
  366. if (lowest_present_ofdm > hw)
  367. lowest_present_ofdm = hw;
  368. } else {
  369. BUILD_BUG_ON(IWL_FIRST_CCK_RATE != 0);
  370. cck |= BIT(hw);
  371. if (lowest_present_cck > hw)
  372. lowest_present_cck = hw;
  373. }
  374. }
  375. /*
  376. * Now we've got the basic rates as bitmaps in the ofdm and cck
  377. * variables. This isn't sufficient though, as there might not
  378. * be all the right rates in the bitmap. E.g. if the only basic
  379. * rates are 5.5 Mbps and 11 Mbps, we still need to add 1 Mbps
  380. * and 6 Mbps because the 802.11-2007 standard says in 9.6:
  381. *
  382. * [...] a STA responding to a received frame shall transmit
  383. * its Control Response frame [...] at the highest rate in the
  384. * BSSBasicRateSet parameter that is less than or equal to the
  385. * rate of the immediately previous frame in the frame exchange
  386. * sequence ([...]) and that is of the same modulation class
  387. * ([...]) as the received frame. If no rate contained in the
  388. * BSSBasicRateSet parameter meets these conditions, then the
  389. * control frame sent in response to a received frame shall be
  390. * transmitted at the highest mandatory rate of the PHY that is
  391. * less than or equal to the rate of the received frame, and
  392. * that is of the same modulation class as the received frame.
  393. *
  394. * As a consequence, we need to add all mandatory rates that are
  395. * lower than all of the basic rates to these bitmaps.
  396. */
  397. if (IWL_RATE_24M_INDEX < lowest_present_ofdm)
  398. ofdm |= IWL_RATE_BIT_MSK(24) >> IWL_FIRST_OFDM_RATE;
  399. if (IWL_RATE_12M_INDEX < lowest_present_ofdm)
  400. ofdm |= IWL_RATE_BIT_MSK(12) >> IWL_FIRST_OFDM_RATE;
  401. /* 6M already there or needed so always add */
  402. ofdm |= IWL_RATE_BIT_MSK(6) >> IWL_FIRST_OFDM_RATE;
  403. /*
  404. * CCK is a bit more complex with DSSS vs. HR/DSSS vs. ERP.
  405. * Note, however:
  406. * - if no CCK rates are basic, it must be ERP since there must
  407. * be some basic rates at all, so they're OFDM => ERP PHY
  408. * (or we're in 5 GHz, and the cck bitmap will never be used)
  409. * - if 11M is a basic rate, it must be ERP as well, so add 5.5M
  410. * - if 5.5M is basic, 1M and 2M are mandatory
  411. * - if 2M is basic, 1M is mandatory
  412. * - if 1M is basic, that's the only valid ACK rate.
  413. * As a consequence, it's not as complicated as it sounds, just add
  414. * any lower rates to the ACK rate bitmap.
  415. */
  416. if (IWL_RATE_11M_INDEX < lowest_present_cck)
  417. cck |= IWL_RATE_BIT_MSK(11) >> IWL_FIRST_CCK_RATE;
  418. if (IWL_RATE_5M_INDEX < lowest_present_cck)
  419. cck |= IWL_RATE_BIT_MSK(5) >> IWL_FIRST_CCK_RATE;
  420. if (IWL_RATE_2M_INDEX < lowest_present_cck)
  421. cck |= IWL_RATE_BIT_MSK(2) >> IWL_FIRST_CCK_RATE;
  422. /* 1M already there or needed so always add */
  423. cck |= IWL_RATE_BIT_MSK(1) >> IWL_FIRST_CCK_RATE;
  424. *cck_rates = cck;
  425. *ofdm_rates = ofdm;
  426. }
  427. static void iwl_mvm_mac_ctxt_cmd_common(struct iwl_mvm *mvm,
  428. struct ieee80211_vif *vif,
  429. struct iwl_mac_ctx_cmd *cmd,
  430. u32 action)
  431. {
  432. struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
  433. struct ieee80211_chanctx_conf *chanctx;
  434. u8 cck_ack_rates, ofdm_ack_rates;
  435. int i;
  436. cmd->id_and_color = cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
  437. mvmvif->color));
  438. cmd->action = cpu_to_le32(action);
  439. switch (vif->type) {
  440. case NL80211_IFTYPE_STATION:
  441. if (vif->p2p)
  442. cmd->mac_type = cpu_to_le32(FW_MAC_TYPE_P2P_STA);
  443. else
  444. cmd->mac_type = cpu_to_le32(FW_MAC_TYPE_BSS_STA);
  445. break;
  446. case NL80211_IFTYPE_AP:
  447. cmd->mac_type = cpu_to_le32(FW_MAC_TYPE_GO);
  448. break;
  449. case NL80211_IFTYPE_MONITOR:
  450. cmd->mac_type = cpu_to_le32(FW_MAC_TYPE_LISTENER);
  451. break;
  452. case NL80211_IFTYPE_P2P_DEVICE:
  453. cmd->mac_type = cpu_to_le32(FW_MAC_TYPE_P2P_DEVICE);
  454. break;
  455. case NL80211_IFTYPE_ADHOC:
  456. cmd->mac_type = cpu_to_le32(FW_MAC_TYPE_IBSS);
  457. break;
  458. default:
  459. WARN_ON_ONCE(1);
  460. }
  461. cmd->tsf_id = cpu_to_le32(mvmvif->tsf_id);
  462. memcpy(cmd->node_addr, vif->addr, ETH_ALEN);
  463. if (vif->bss_conf.bssid)
  464. memcpy(cmd->bssid_addr, vif->bss_conf.bssid, ETH_ALEN);
  465. else
  466. eth_broadcast_addr(cmd->bssid_addr);
  467. rcu_read_lock();
  468. chanctx = rcu_dereference(vif->chanctx_conf);
  469. iwl_mvm_ack_rates(mvm, vif, chanctx ? chanctx->def.chan->band
  470. : IEEE80211_BAND_2GHZ,
  471. &cck_ack_rates, &ofdm_ack_rates);
  472. rcu_read_unlock();
  473. cmd->cck_rates = cpu_to_le32((u32)cck_ack_rates);
  474. cmd->ofdm_rates = cpu_to_le32((u32)ofdm_ack_rates);
  475. cmd->cck_short_preamble =
  476. cpu_to_le32(vif->bss_conf.use_short_preamble ?
  477. MAC_FLG_SHORT_PREAMBLE : 0);
  478. cmd->short_slot =
  479. cpu_to_le32(vif->bss_conf.use_short_slot ?
  480. MAC_FLG_SHORT_SLOT : 0);
  481. for (i = 0; i < AC_NUM; i++) {
  482. cmd->ac[i].cw_min = cpu_to_le16(mvmvif->queue_params[i].cw_min);
  483. cmd->ac[i].cw_max = cpu_to_le16(mvmvif->queue_params[i].cw_max);
  484. cmd->ac[i].aifsn = mvmvif->queue_params[i].aifs;
  485. cmd->ac[i].edca_txop =
  486. cpu_to_le16(mvmvif->queue_params[i].txop * 32);
  487. cmd->ac[i].fifos_mask = BIT(iwl_mvm_ac_to_tx_fifo[i]);
  488. }
  489. if (vif->bss_conf.qos)
  490. cmd->qos_flags |= cpu_to_le32(MAC_QOS_FLG_UPDATE_EDCA);
  491. /* Don't use cts to self as the fw doesn't support it currently. */
  492. if (vif->bss_conf.use_cts_prot)
  493. cmd->protection_flags |= cpu_to_le32(MAC_PROT_FLG_TGG_PROTECT);
  494. /*
  495. * I think that we should enable these 2 flags regardless the HT PROT
  496. * fields in the HT IE, but I am not sure. Someone knows whom to ask?...
  497. */
  498. if (vif->bss_conf.chandef.width != NL80211_CHAN_WIDTH_20_NOHT) {
  499. cmd->qos_flags |= cpu_to_le32(MAC_QOS_FLG_TGN);
  500. cmd->protection_flags |= cpu_to_le32(MAC_PROT_FLG_HT_PROT |
  501. MAC_PROT_FLG_FAT_PROT);
  502. }
  503. cmd->filter_flags = cpu_to_le32(MAC_FILTER_ACCEPT_GRP);
  504. }
  505. static int iwl_mvm_mac_ctxt_send_cmd(struct iwl_mvm *mvm,
  506. struct iwl_mac_ctx_cmd *cmd)
  507. {
  508. int ret = iwl_mvm_send_cmd_pdu(mvm, MAC_CONTEXT_CMD, CMD_SYNC,
  509. sizeof(*cmd), cmd);
  510. if (ret)
  511. IWL_ERR(mvm, "Failed to send MAC context (action:%d): %d\n",
  512. le32_to_cpu(cmd->action), ret);
  513. return ret;
  514. }
  515. /*
  516. * Fill the specific data for mac context of type station or p2p client
  517. */
  518. static void iwl_mvm_mac_ctxt_cmd_fill_sta(struct iwl_mvm *mvm,
  519. struct ieee80211_vif *vif,
  520. struct iwl_mac_data_sta *ctxt_sta)
  521. {
  522. /* We need the dtim_period to set the MAC as associated */
  523. if (vif->bss_conf.assoc && vif->bss_conf.dtim_period) {
  524. u32 dtim_offs;
  525. /*
  526. * The DTIM count counts down, so when it is N that means N
  527. * more beacon intervals happen until the DTIM TBTT. Therefore
  528. * add this to the current time. If that ends up being in the
  529. * future, the firmware will handle it.
  530. *
  531. * Also note that the system_timestamp (which we get here as
  532. * "sync_device_ts") and TSF timestamp aren't at exactly the
  533. * same offset in the frame -- the TSF is at the first symbol
  534. * of the TSF, the system timestamp is at signal acquisition
  535. * time. This means there's an offset between them of at most
  536. * a few hundred microseconds (24 * 8 bits + PLCP time gives
  537. * 384us in the longest case), this is currently not relevant
  538. * as the firmware wakes up around 2ms before the TBTT.
  539. */
  540. dtim_offs = vif->bss_conf.sync_dtim_count *
  541. vif->bss_conf.beacon_int;
  542. /* convert TU to usecs */
  543. dtim_offs *= 1024;
  544. ctxt_sta->dtim_tsf =
  545. cpu_to_le64(vif->bss_conf.sync_tsf + dtim_offs);
  546. ctxt_sta->dtim_time =
  547. cpu_to_le32(vif->bss_conf.sync_device_ts + dtim_offs);
  548. IWL_DEBUG_INFO(mvm, "DTIM TBTT is 0x%llx/0x%x, offset %d\n",
  549. le64_to_cpu(ctxt_sta->dtim_tsf),
  550. le32_to_cpu(ctxt_sta->dtim_time),
  551. dtim_offs);
  552. ctxt_sta->is_assoc = cpu_to_le32(1);
  553. } else {
  554. ctxt_sta->is_assoc = cpu_to_le32(0);
  555. }
  556. ctxt_sta->bi = cpu_to_le32(vif->bss_conf.beacon_int);
  557. ctxt_sta->bi_reciprocal =
  558. cpu_to_le32(iwl_mvm_reciprocal(vif->bss_conf.beacon_int));
  559. ctxt_sta->dtim_interval = cpu_to_le32(vif->bss_conf.beacon_int *
  560. vif->bss_conf.dtim_period);
  561. ctxt_sta->dtim_reciprocal =
  562. cpu_to_le32(iwl_mvm_reciprocal(vif->bss_conf.beacon_int *
  563. vif->bss_conf.dtim_period));
  564. ctxt_sta->listen_interval = cpu_to_le32(mvm->hw->conf.listen_interval);
  565. ctxt_sta->assoc_id = cpu_to_le32(vif->bss_conf.aid);
  566. }
  567. static int iwl_mvm_mac_ctxt_cmd_station(struct iwl_mvm *mvm,
  568. struct ieee80211_vif *vif,
  569. u32 action)
  570. {
  571. struct iwl_mac_ctx_cmd cmd = {};
  572. WARN_ON(vif->type != NL80211_IFTYPE_STATION || vif->p2p);
  573. /* Fill the common data for all mac context types */
  574. iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, action);
  575. /* Allow beacons to pass through as long as we are not associated,or we
  576. * do not have dtim period information */
  577. if (!vif->bss_conf.assoc || !vif->bss_conf.dtim_period)
  578. cmd.filter_flags |= cpu_to_le32(MAC_FILTER_IN_BEACON);
  579. else
  580. cmd.filter_flags &= ~cpu_to_le32(MAC_FILTER_IN_BEACON);
  581. /* Fill the data specific for station mode */
  582. iwl_mvm_mac_ctxt_cmd_fill_sta(mvm, vif, &cmd.sta);
  583. return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
  584. }
  585. static int iwl_mvm_mac_ctxt_cmd_p2p_client(struct iwl_mvm *mvm,
  586. struct ieee80211_vif *vif,
  587. u32 action)
  588. {
  589. struct iwl_mac_ctx_cmd cmd = {};
  590. struct ieee80211_p2p_noa_attr *noa = &vif->bss_conf.p2p_noa_attr;
  591. WARN_ON(vif->type != NL80211_IFTYPE_STATION || !vif->p2p);
  592. /* Fill the common data for all mac context types */
  593. iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, action);
  594. /* Fill the data specific for station mode */
  595. iwl_mvm_mac_ctxt_cmd_fill_sta(mvm, vif, &cmd.p2p_sta.sta);
  596. cmd.p2p_sta.ctwin = cpu_to_le32(noa->oppps_ctwindow &
  597. IEEE80211_P2P_OPPPS_CTWINDOW_MASK);
  598. return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
  599. }
  600. static int iwl_mvm_mac_ctxt_cmd_listener(struct iwl_mvm *mvm,
  601. struct ieee80211_vif *vif,
  602. u32 action)
  603. {
  604. struct iwl_mac_ctx_cmd cmd = {};
  605. WARN_ON(vif->type != NL80211_IFTYPE_MONITOR);
  606. iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, action);
  607. cmd.filter_flags = cpu_to_le32(MAC_FILTER_IN_PROMISC |
  608. MAC_FILTER_IN_CONTROL_AND_MGMT |
  609. MAC_FILTER_IN_BEACON |
  610. MAC_FILTER_IN_PROBE_REQUEST);
  611. return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
  612. }
  613. struct iwl_mvm_go_iterator_data {
  614. bool go_active;
  615. };
  616. static void iwl_mvm_go_iterator(void *_data, u8 *mac, struct ieee80211_vif *vif)
  617. {
  618. struct iwl_mvm_go_iterator_data *data = _data;
  619. struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
  620. if (vif->type == NL80211_IFTYPE_AP && vif->p2p && mvmvif->ap_active)
  621. data->go_active = true;
  622. }
  623. static int iwl_mvm_mac_ctxt_cmd_p2p_device(struct iwl_mvm *mvm,
  624. struct ieee80211_vif *vif,
  625. u32 action)
  626. {
  627. struct iwl_mac_ctx_cmd cmd = {};
  628. struct iwl_mvm_go_iterator_data data = {};
  629. WARN_ON(vif->type != NL80211_IFTYPE_P2P_DEVICE);
  630. iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, action);
  631. cmd.protection_flags |= cpu_to_le32(MAC_PROT_FLG_TGG_PROTECT);
  632. /* Override the filter flags to accept only probe requests */
  633. cmd.filter_flags = cpu_to_le32(MAC_FILTER_IN_PROBE_REQUEST);
  634. /*
  635. * This flag should be set to true when the P2P Device is
  636. * discoverable and there is at least another active P2P GO. Settings
  637. * this flag will allow the P2P Device to be discoverable on other
  638. * channels in addition to its listen channel.
  639. * Note that this flag should not be set in other cases as it opens the
  640. * Rx filters on all MAC and increases the number of interrupts.
  641. */
  642. ieee80211_iterate_active_interfaces_atomic(
  643. mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
  644. iwl_mvm_go_iterator, &data);
  645. cmd.p2p_dev.is_disc_extended = cpu_to_le32(data.go_active ? 1 : 0);
  646. return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
  647. }
  648. static void iwl_mvm_mac_ctxt_set_tim(struct iwl_mvm *mvm,
  649. struct iwl_mac_beacon_cmd *beacon_cmd,
  650. u8 *beacon, u32 frame_size)
  651. {
  652. u32 tim_idx;
  653. struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon;
  654. /* The index is relative to frame start but we start looking at the
  655. * variable-length part of the beacon. */
  656. tim_idx = mgmt->u.beacon.variable - beacon;
  657. /* Parse variable-length elements of beacon to find WLAN_EID_TIM */
  658. while ((tim_idx < (frame_size - 2)) &&
  659. (beacon[tim_idx] != WLAN_EID_TIM))
  660. tim_idx += beacon[tim_idx+1] + 2;
  661. /* If TIM field was found, set variables */
  662. if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) {
  663. beacon_cmd->tim_idx = cpu_to_le32(tim_idx);
  664. beacon_cmd->tim_size = cpu_to_le32((u32)beacon[tim_idx+1]);
  665. } else {
  666. IWL_WARN(mvm, "Unable to find TIM Element in beacon\n");
  667. }
  668. }
  669. static int iwl_mvm_mac_ctxt_send_beacon(struct iwl_mvm *mvm,
  670. struct ieee80211_vif *vif,
  671. struct sk_buff *beacon)
  672. {
  673. struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
  674. struct iwl_host_cmd cmd = {
  675. .id = BEACON_TEMPLATE_CMD,
  676. .flags = CMD_ASYNC,
  677. };
  678. struct iwl_mac_beacon_cmd beacon_cmd = {};
  679. struct ieee80211_tx_info *info;
  680. u32 beacon_skb_len;
  681. u32 rate;
  682. if (WARN_ON(!beacon))
  683. return -EINVAL;
  684. beacon_skb_len = beacon->len;
  685. /* TODO: for now the beacon template id is set to be the mac context id.
  686. * Might be better to handle it as another resource ... */
  687. beacon_cmd.template_id = cpu_to_le32((u32)mvmvif->id);
  688. /* Set up TX command fields */
  689. beacon_cmd.tx.len = cpu_to_le16((u16)beacon_skb_len);
  690. beacon_cmd.tx.sta_id = mvmvif->bcast_sta.sta_id;
  691. beacon_cmd.tx.life_time = cpu_to_le32(TX_CMD_LIFE_TIME_INFINITE);
  692. beacon_cmd.tx.tx_flags = cpu_to_le32(TX_CMD_FLG_SEQ_CTL |
  693. TX_CMD_FLG_BT_DIS |
  694. TX_CMD_FLG_TSF);
  695. mvm->mgmt_last_antenna_idx =
  696. iwl_mvm_next_antenna(mvm, iwl_fw_valid_tx_ant(mvm->fw),
  697. mvm->mgmt_last_antenna_idx);
  698. beacon_cmd.tx.rate_n_flags =
  699. cpu_to_le32(BIT(mvm->mgmt_last_antenna_idx) <<
  700. RATE_MCS_ANT_POS);
  701. info = IEEE80211_SKB_CB(beacon);
  702. if (info->band == IEEE80211_BAND_5GHZ || vif->p2p) {
  703. rate = IWL_FIRST_OFDM_RATE;
  704. } else {
  705. rate = IWL_FIRST_CCK_RATE;
  706. beacon_cmd.tx.rate_n_flags |= cpu_to_le32(RATE_MCS_CCK_MSK);
  707. }
  708. beacon_cmd.tx.rate_n_flags |=
  709. cpu_to_le32(iwl_mvm_mac80211_idx_to_hwrate(rate));
  710. /* Set up TX beacon command fields */
  711. iwl_mvm_mac_ctxt_set_tim(mvm, &beacon_cmd,
  712. beacon->data,
  713. beacon_skb_len);
  714. /* Submit command */
  715. cmd.len[0] = sizeof(beacon_cmd);
  716. cmd.data[0] = &beacon_cmd;
  717. cmd.dataflags[0] = 0;
  718. cmd.len[1] = beacon_skb_len;
  719. cmd.data[1] = beacon->data;
  720. cmd.dataflags[1] = IWL_HCMD_DFL_DUP;
  721. return iwl_mvm_send_cmd(mvm, &cmd);
  722. }
  723. /* The beacon template for the AP/GO context has changed and needs update */
  724. int iwl_mvm_mac_ctxt_beacon_changed(struct iwl_mvm *mvm,
  725. struct ieee80211_vif *vif)
  726. {
  727. struct sk_buff *beacon;
  728. int ret;
  729. WARN_ON(vif->type != NL80211_IFTYPE_AP);
  730. beacon = ieee80211_beacon_get(mvm->hw, vif);
  731. if (!beacon)
  732. return -ENOMEM;
  733. ret = iwl_mvm_mac_ctxt_send_beacon(mvm, vif, beacon);
  734. dev_kfree_skb(beacon);
  735. return ret;
  736. }
  737. /*
  738. * Fill the specific data for mac context of type AP of P2P GO
  739. */
  740. static void iwl_mvm_mac_ctxt_cmd_fill_ap(struct iwl_mvm *mvm,
  741. struct ieee80211_vif *vif,
  742. struct iwl_mac_data_ap *ctxt_ap,
  743. bool add)
  744. {
  745. struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
  746. ctxt_ap->bi = cpu_to_le32(vif->bss_conf.beacon_int);
  747. ctxt_ap->bi_reciprocal =
  748. cpu_to_le32(iwl_mvm_reciprocal(vif->bss_conf.beacon_int));
  749. ctxt_ap->dtim_interval = cpu_to_le32(vif->bss_conf.beacon_int *
  750. vif->bss_conf.dtim_period);
  751. ctxt_ap->dtim_reciprocal =
  752. cpu_to_le32(iwl_mvm_reciprocal(vif->bss_conf.beacon_int *
  753. vif->bss_conf.dtim_period));
  754. ctxt_ap->mcast_qid = cpu_to_le32(vif->cab_queue);
  755. /*
  756. * Only read the system time when the MAC is being added, when we
  757. * just modify the MAC then we should keep the time -- the firmware
  758. * can otherwise have a "jumping" TBTT.
  759. */
  760. if (add)
  761. mvmvif->ap_beacon_time =
  762. iwl_read_prph(mvm->trans, DEVICE_SYSTEM_TIME_REG);
  763. ctxt_ap->beacon_time = cpu_to_le32(mvmvif->ap_beacon_time);
  764. ctxt_ap->beacon_tsf = 0; /* unused */
  765. /* TODO: Assume that the beacon id == mac context id */
  766. ctxt_ap->beacon_template = cpu_to_le32(mvmvif->id);
  767. }
  768. static int iwl_mvm_mac_ctxt_cmd_ap(struct iwl_mvm *mvm,
  769. struct ieee80211_vif *vif,
  770. u32 action)
  771. {
  772. struct iwl_mac_ctx_cmd cmd = {};
  773. WARN_ON(vif->type != NL80211_IFTYPE_AP || vif->p2p);
  774. /* Fill the common data for all mac context types */
  775. iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, action);
  776. /* Also enable probe requests to pass */
  777. cmd.filter_flags |= cpu_to_le32(MAC_FILTER_IN_PROBE_REQUEST);
  778. /* Fill the data specific for ap mode */
  779. iwl_mvm_mac_ctxt_cmd_fill_ap(mvm, vif, &cmd.ap,
  780. action == FW_CTXT_ACTION_ADD);
  781. return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
  782. }
  783. static int iwl_mvm_mac_ctxt_cmd_go(struct iwl_mvm *mvm,
  784. struct ieee80211_vif *vif,
  785. u32 action)
  786. {
  787. struct iwl_mac_ctx_cmd cmd = {};
  788. struct ieee80211_p2p_noa_attr *noa = &vif->bss_conf.p2p_noa_attr;
  789. WARN_ON(vif->type != NL80211_IFTYPE_AP || !vif->p2p);
  790. /* Fill the common data for all mac context types */
  791. iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, action);
  792. /* Fill the data specific for GO mode */
  793. iwl_mvm_mac_ctxt_cmd_fill_ap(mvm, vif, &cmd.go.ap,
  794. action == FW_CTXT_ACTION_ADD);
  795. cmd.go.ctwin = cpu_to_le32(noa->oppps_ctwindow &
  796. IEEE80211_P2P_OPPPS_CTWINDOW_MASK);
  797. cmd.go.opp_ps_enabled =
  798. cpu_to_le32(!!(noa->oppps_ctwindow &
  799. IEEE80211_P2P_OPPPS_ENABLE_BIT));
  800. return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
  801. }
  802. static int iwl_mvm_mac_ctx_send(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
  803. u32 action)
  804. {
  805. switch (vif->type) {
  806. case NL80211_IFTYPE_STATION:
  807. if (!vif->p2p)
  808. return iwl_mvm_mac_ctxt_cmd_station(mvm, vif,
  809. action);
  810. else
  811. return iwl_mvm_mac_ctxt_cmd_p2p_client(mvm, vif,
  812. action);
  813. break;
  814. case NL80211_IFTYPE_AP:
  815. if (!vif->p2p)
  816. return iwl_mvm_mac_ctxt_cmd_ap(mvm, vif, action);
  817. else
  818. return iwl_mvm_mac_ctxt_cmd_go(mvm, vif, action);
  819. break;
  820. case NL80211_IFTYPE_MONITOR:
  821. return iwl_mvm_mac_ctxt_cmd_listener(mvm, vif, action);
  822. case NL80211_IFTYPE_P2P_DEVICE:
  823. return iwl_mvm_mac_ctxt_cmd_p2p_device(mvm, vif, action);
  824. default:
  825. break;
  826. }
  827. return -EOPNOTSUPP;
  828. }
  829. int iwl_mvm_mac_ctxt_add(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
  830. {
  831. struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
  832. int ret;
  833. if (WARN_ONCE(mvmvif->uploaded, "Adding active MAC %pM/%d\n",
  834. vif->addr, ieee80211_vif_type_p2p(vif)))
  835. return -EIO;
  836. ret = iwl_mvm_mac_ctx_send(mvm, vif, FW_CTXT_ACTION_ADD);
  837. if (ret)
  838. return ret;
  839. mvmvif->uploaded = true;
  840. return 0;
  841. }
  842. int iwl_mvm_mac_ctxt_changed(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
  843. {
  844. struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
  845. if (WARN_ONCE(!mvmvif->uploaded, "Changing inactive MAC %pM/%d\n",
  846. vif->addr, ieee80211_vif_type_p2p(vif)))
  847. return -EIO;
  848. return iwl_mvm_mac_ctx_send(mvm, vif, FW_CTXT_ACTION_MODIFY);
  849. }
  850. int iwl_mvm_mac_ctxt_remove(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
  851. {
  852. struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
  853. struct iwl_mac_ctx_cmd cmd;
  854. int ret;
  855. if (WARN_ONCE(!mvmvif->uploaded, "Removing inactive MAC %pM/%d\n",
  856. vif->addr, ieee80211_vif_type_p2p(vif)))
  857. return -EIO;
  858. memset(&cmd, 0, sizeof(cmd));
  859. cmd.id_and_color = cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
  860. mvmvif->color));
  861. cmd.action = cpu_to_le32(FW_CTXT_ACTION_REMOVE);
  862. ret = iwl_mvm_send_cmd_pdu(mvm, MAC_CONTEXT_CMD, CMD_SYNC,
  863. sizeof(cmd), &cmd);
  864. if (ret) {
  865. IWL_ERR(mvm, "Failed to remove MAC context: %d\n", ret);
  866. return ret;
  867. }
  868. mvmvif->uploaded = false;
  869. return 0;
  870. }
  871. int iwl_mvm_rx_beacon_notif(struct iwl_mvm *mvm,
  872. struct iwl_rx_cmd_buffer *rxb,
  873. struct iwl_device_cmd *cmd)
  874. {
  875. struct iwl_rx_packet *pkt = rxb_addr(rxb);
  876. struct iwl_beacon_notif *beacon = (void *)pkt->data;
  877. u16 status __maybe_unused =
  878. le16_to_cpu(beacon->beacon_notify_hdr.status.status);
  879. u32 rate __maybe_unused =
  880. le32_to_cpu(beacon->beacon_notify_hdr.initial_rate);
  881. IWL_DEBUG_RX(mvm, "beacon status %#x retries:%d tsf:0x%16llX rate:%d\n",
  882. status & TX_STATUS_MSK,
  883. beacon->beacon_notify_hdr.failure_frame,
  884. le64_to_cpu(beacon->tsf),
  885. rate);
  886. return 0;
  887. }