ht.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528
  1. /*
  2. * HT handling
  3. *
  4. * Copyright 2003, Jouni Malinen <jkmaline@cc.hut.fi>
  5. * Copyright 2002-2005, Instant802 Networks, Inc.
  6. * Copyright 2005-2006, Devicescape Software, Inc.
  7. * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
  8. * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
  9. * Copyright 2007-2010, Intel Corporation
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License version 2 as
  13. * published by the Free Software Foundation.
  14. */
  15. #include <linux/ieee80211.h>
  16. #include <linux/export.h>
  17. #include <net/mac80211.h>
  18. #include "ieee80211_i.h"
  19. #include "rate.h"
  20. static void __check_htcap_disable(struct ieee80211_ht_cap *ht_capa,
  21. struct ieee80211_ht_cap *ht_capa_mask,
  22. struct ieee80211_sta_ht_cap *ht_cap,
  23. u16 flag)
  24. {
  25. __le16 le_flag = cpu_to_le16(flag);
  26. if (ht_capa_mask->cap_info & le_flag) {
  27. if (!(ht_capa->cap_info & le_flag))
  28. ht_cap->cap &= ~flag;
  29. }
  30. }
  31. static void __check_htcap_enable(struct ieee80211_ht_cap *ht_capa,
  32. struct ieee80211_ht_cap *ht_capa_mask,
  33. struct ieee80211_sta_ht_cap *ht_cap,
  34. u16 flag)
  35. {
  36. __le16 le_flag = cpu_to_le16(flag);
  37. if ((ht_capa_mask->cap_info & le_flag) &&
  38. (ht_capa->cap_info & le_flag))
  39. ht_cap->cap |= flag;
  40. }
  41. void ieee80211_apply_htcap_overrides(struct ieee80211_sub_if_data *sdata,
  42. struct ieee80211_sta_ht_cap *ht_cap)
  43. {
  44. struct ieee80211_ht_cap *ht_capa, *ht_capa_mask;
  45. u8 *scaps, *smask;
  46. int i;
  47. if (!ht_cap->ht_supported)
  48. return;
  49. switch (sdata->vif.type) {
  50. case NL80211_IFTYPE_STATION:
  51. ht_capa = &sdata->u.mgd.ht_capa;
  52. ht_capa_mask = &sdata->u.mgd.ht_capa_mask;
  53. break;
  54. case NL80211_IFTYPE_ADHOC:
  55. ht_capa = &sdata->u.ibss.ht_capa;
  56. ht_capa_mask = &sdata->u.ibss.ht_capa_mask;
  57. break;
  58. default:
  59. WARN_ON_ONCE(1);
  60. return;
  61. }
  62. scaps = (u8 *)(&ht_capa->mcs.rx_mask);
  63. smask = (u8 *)(&ht_capa_mask->mcs.rx_mask);
  64. /* NOTE: If you add more over-rides here, update register_hw
  65. * ht_capa_mod_mask logic in main.c as well.
  66. * And, if this method can ever change ht_cap.ht_supported, fix
  67. * the check in ieee80211_add_ht_ie.
  68. */
  69. /* check for HT over-rides, MCS rates first. */
  70. for (i = 0; i < IEEE80211_HT_MCS_MASK_LEN; i++) {
  71. u8 m = smask[i];
  72. ht_cap->mcs.rx_mask[i] &= ~m; /* turn off all masked bits */
  73. /* Add back rates that are supported */
  74. ht_cap->mcs.rx_mask[i] |= (m & scaps[i]);
  75. }
  76. /* Force removal of HT-40 capabilities? */
  77. __check_htcap_disable(ht_capa, ht_capa_mask, ht_cap,
  78. IEEE80211_HT_CAP_SUP_WIDTH_20_40);
  79. __check_htcap_disable(ht_capa, ht_capa_mask, ht_cap,
  80. IEEE80211_HT_CAP_SGI_40);
  81. /* Allow user to disable SGI-20 (SGI-40 is handled above) */
  82. __check_htcap_disable(ht_capa, ht_capa_mask, ht_cap,
  83. IEEE80211_HT_CAP_SGI_20);
  84. /* Allow user to disable the max-AMSDU bit. */
  85. __check_htcap_disable(ht_capa, ht_capa_mask, ht_cap,
  86. IEEE80211_HT_CAP_MAX_AMSDU);
  87. /* Allow user to disable LDPC */
  88. __check_htcap_disable(ht_capa, ht_capa_mask, ht_cap,
  89. IEEE80211_HT_CAP_LDPC_CODING);
  90. /* Allow user to enable 40 MHz intolerant bit. */
  91. __check_htcap_enable(ht_capa, ht_capa_mask, ht_cap,
  92. IEEE80211_HT_CAP_40MHZ_INTOLERANT);
  93. /* Allow user to decrease AMPDU factor */
  94. if (ht_capa_mask->ampdu_params_info &
  95. IEEE80211_HT_AMPDU_PARM_FACTOR) {
  96. u8 n = ht_capa->ampdu_params_info &
  97. IEEE80211_HT_AMPDU_PARM_FACTOR;
  98. if (n < ht_cap->ampdu_factor)
  99. ht_cap->ampdu_factor = n;
  100. }
  101. /* Allow the user to increase AMPDU density. */
  102. if (ht_capa_mask->ampdu_params_info &
  103. IEEE80211_HT_AMPDU_PARM_DENSITY) {
  104. u8 n = (ht_capa->ampdu_params_info &
  105. IEEE80211_HT_AMPDU_PARM_DENSITY)
  106. >> IEEE80211_HT_AMPDU_PARM_DENSITY_SHIFT;
  107. if (n > ht_cap->ampdu_density)
  108. ht_cap->ampdu_density = n;
  109. }
  110. }
  111. bool ieee80211_ht_cap_ie_to_sta_ht_cap(struct ieee80211_sub_if_data *sdata,
  112. struct ieee80211_supported_band *sband,
  113. const struct ieee80211_ht_cap *ht_cap_ie,
  114. struct sta_info *sta)
  115. {
  116. struct ieee80211_sta_ht_cap ht_cap, own_cap;
  117. u8 ampdu_info, tx_mcs_set_cap;
  118. int i, max_tx_streams;
  119. bool changed;
  120. enum ieee80211_sta_rx_bandwidth bw;
  121. enum ieee80211_smps_mode smps_mode;
  122. memset(&ht_cap, 0, sizeof(ht_cap));
  123. if (!ht_cap_ie || !sband->ht_cap.ht_supported)
  124. goto apply;
  125. ht_cap.ht_supported = true;
  126. own_cap = sband->ht_cap;
  127. /*
  128. * If user has specified capability over-rides, take care
  129. * of that if the station we're setting up is the AP or TDLS peer that
  130. * we advertised a restricted capability set to. Override
  131. * our own capabilities and then use those below.
  132. */
  133. if (sdata->vif.type == NL80211_IFTYPE_STATION ||
  134. sdata->vif.type == NL80211_IFTYPE_ADHOC)
  135. ieee80211_apply_htcap_overrides(sdata, &own_cap);
  136. /*
  137. * The bits listed in this expression should be
  138. * the same for the peer and us, if the station
  139. * advertises more then we can't use those thus
  140. * we mask them out.
  141. */
  142. ht_cap.cap = le16_to_cpu(ht_cap_ie->cap_info) &
  143. (own_cap.cap | ~(IEEE80211_HT_CAP_LDPC_CODING |
  144. IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
  145. IEEE80211_HT_CAP_GRN_FLD |
  146. IEEE80211_HT_CAP_SGI_20 |
  147. IEEE80211_HT_CAP_SGI_40 |
  148. IEEE80211_HT_CAP_DSSSCCK40));
  149. /*
  150. * The STBC bits are asymmetric -- if we don't have
  151. * TX then mask out the peer's RX and vice versa.
  152. */
  153. if (!(own_cap.cap & IEEE80211_HT_CAP_TX_STBC))
  154. ht_cap.cap &= ~IEEE80211_HT_CAP_RX_STBC;
  155. if (!(own_cap.cap & IEEE80211_HT_CAP_RX_STBC))
  156. ht_cap.cap &= ~IEEE80211_HT_CAP_TX_STBC;
  157. ampdu_info = ht_cap_ie->ampdu_params_info;
  158. ht_cap.ampdu_factor =
  159. ampdu_info & IEEE80211_HT_AMPDU_PARM_FACTOR;
  160. ht_cap.ampdu_density =
  161. (ampdu_info & IEEE80211_HT_AMPDU_PARM_DENSITY) >> 2;
  162. /* own MCS TX capabilities */
  163. tx_mcs_set_cap = own_cap.mcs.tx_params;
  164. /* Copy peer MCS TX capabilities, the driver might need them. */
  165. ht_cap.mcs.tx_params = ht_cap_ie->mcs.tx_params;
  166. /* can we TX with MCS rates? */
  167. if (!(tx_mcs_set_cap & IEEE80211_HT_MCS_TX_DEFINED))
  168. goto apply;
  169. /* Counting from 0, therefore +1 */
  170. if (tx_mcs_set_cap & IEEE80211_HT_MCS_TX_RX_DIFF)
  171. max_tx_streams =
  172. ((tx_mcs_set_cap & IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK)
  173. >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT) + 1;
  174. else
  175. max_tx_streams = IEEE80211_HT_MCS_TX_MAX_STREAMS;
  176. /*
  177. * 802.11n-2009 20.3.5 / 20.6 says:
  178. * - indices 0 to 7 and 32 are single spatial stream
  179. * - 8 to 31 are multiple spatial streams using equal modulation
  180. * [8..15 for two streams, 16..23 for three and 24..31 for four]
  181. * - remainder are multiple spatial streams using unequal modulation
  182. */
  183. for (i = 0; i < max_tx_streams; i++)
  184. ht_cap.mcs.rx_mask[i] =
  185. own_cap.mcs.rx_mask[i] & ht_cap_ie->mcs.rx_mask[i];
  186. if (tx_mcs_set_cap & IEEE80211_HT_MCS_TX_UNEQUAL_MODULATION)
  187. for (i = IEEE80211_HT_MCS_UNEQUAL_MODULATION_START_BYTE;
  188. i < IEEE80211_HT_MCS_MASK_LEN; i++)
  189. ht_cap.mcs.rx_mask[i] =
  190. own_cap.mcs.rx_mask[i] &
  191. ht_cap_ie->mcs.rx_mask[i];
  192. /* handle MCS rate 32 too */
  193. if (own_cap.mcs.rx_mask[32/8] & ht_cap_ie->mcs.rx_mask[32/8] & 1)
  194. ht_cap.mcs.rx_mask[32/8] |= 1;
  195. /* set Rx highest rate */
  196. ht_cap.mcs.rx_highest = ht_cap_ie->mcs.rx_highest;
  197. if (ht_cap.cap & IEEE80211_HT_CAP_MAX_AMSDU)
  198. sta->sta.max_amsdu_len = IEEE80211_MAX_MPDU_LEN_HT_7935;
  199. else
  200. sta->sta.max_amsdu_len = IEEE80211_MAX_MPDU_LEN_HT_3839;
  201. apply:
  202. changed = memcmp(&sta->sta.ht_cap, &ht_cap, sizeof(ht_cap));
  203. memcpy(&sta->sta.ht_cap, &ht_cap, sizeof(ht_cap));
  204. switch (sdata->vif.bss_conf.chandef.width) {
  205. default:
  206. WARN_ON_ONCE(1);
  207. /* fall through */
  208. case NL80211_CHAN_WIDTH_20_NOHT:
  209. case NL80211_CHAN_WIDTH_20:
  210. bw = IEEE80211_STA_RX_BW_20;
  211. break;
  212. case NL80211_CHAN_WIDTH_40:
  213. case NL80211_CHAN_WIDTH_80:
  214. case NL80211_CHAN_WIDTH_80P80:
  215. case NL80211_CHAN_WIDTH_160:
  216. bw = ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40 ?
  217. IEEE80211_STA_RX_BW_40 : IEEE80211_STA_RX_BW_20;
  218. break;
  219. }
  220. sta->sta.bandwidth = bw;
  221. sta->cur_max_bandwidth =
  222. ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40 ?
  223. IEEE80211_STA_RX_BW_40 : IEEE80211_STA_RX_BW_20;
  224. switch ((ht_cap.cap & IEEE80211_HT_CAP_SM_PS)
  225. >> IEEE80211_HT_CAP_SM_PS_SHIFT) {
  226. case WLAN_HT_CAP_SM_PS_INVALID:
  227. case WLAN_HT_CAP_SM_PS_STATIC:
  228. smps_mode = IEEE80211_SMPS_STATIC;
  229. break;
  230. case WLAN_HT_CAP_SM_PS_DYNAMIC:
  231. smps_mode = IEEE80211_SMPS_DYNAMIC;
  232. break;
  233. case WLAN_HT_CAP_SM_PS_DISABLED:
  234. smps_mode = IEEE80211_SMPS_OFF;
  235. break;
  236. }
  237. if (smps_mode != sta->sta.smps_mode)
  238. changed = true;
  239. sta->sta.smps_mode = smps_mode;
  240. return changed;
  241. }
  242. void ieee80211_sta_tear_down_BA_sessions(struct sta_info *sta,
  243. enum ieee80211_agg_stop_reason reason)
  244. {
  245. int i;
  246. cancel_work_sync(&sta->ampdu_mlme.work);
  247. for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
  248. __ieee80211_stop_tx_ba_session(sta, i, reason);
  249. __ieee80211_stop_rx_ba_session(sta, i, WLAN_BACK_RECIPIENT,
  250. WLAN_REASON_QSTA_LEAVE_QBSS,
  251. reason != AGG_STOP_DESTROY_STA &&
  252. reason != AGG_STOP_PEER_REQUEST);
  253. }
  254. }
  255. void ieee80211_ba_session_work(struct work_struct *work)
  256. {
  257. struct sta_info *sta =
  258. container_of(work, struct sta_info, ampdu_mlme.work);
  259. struct tid_ampdu_tx *tid_tx;
  260. int tid;
  261. /*
  262. * When this flag is set, new sessions should be
  263. * blocked, and existing sessions will be torn
  264. * down by the code that set the flag, so this
  265. * need not run.
  266. */
  267. if (test_sta_flag(sta, WLAN_STA_BLOCK_BA))
  268. return;
  269. mutex_lock(&sta->ampdu_mlme.mtx);
  270. for (tid = 0; tid < IEEE80211_NUM_TIDS; tid++) {
  271. if (test_and_clear_bit(tid, sta->ampdu_mlme.tid_rx_timer_expired))
  272. ___ieee80211_stop_rx_ba_session(
  273. sta, tid, WLAN_BACK_RECIPIENT,
  274. WLAN_REASON_QSTA_TIMEOUT, true);
  275. if (test_and_clear_bit(tid,
  276. sta->ampdu_mlme.tid_rx_stop_requested))
  277. ___ieee80211_stop_rx_ba_session(
  278. sta, tid, WLAN_BACK_RECIPIENT,
  279. WLAN_REASON_UNSPECIFIED, true);
  280. spin_lock_bh(&sta->lock);
  281. tid_tx = sta->ampdu_mlme.tid_start_tx[tid];
  282. if (tid_tx) {
  283. /*
  284. * Assign it over to the normal tid_tx array
  285. * where it "goes live".
  286. */
  287. sta->ampdu_mlme.tid_start_tx[tid] = NULL;
  288. /* could there be a race? */
  289. if (sta->ampdu_mlme.tid_tx[tid])
  290. kfree(tid_tx);
  291. else
  292. ieee80211_assign_tid_tx(sta, tid, tid_tx);
  293. spin_unlock_bh(&sta->lock);
  294. ieee80211_tx_ba_session_handle_start(sta, tid);
  295. continue;
  296. }
  297. spin_unlock_bh(&sta->lock);
  298. tid_tx = rcu_dereference_protected_tid_tx(sta, tid);
  299. if (tid_tx && test_and_clear_bit(HT_AGG_STATE_WANT_STOP,
  300. &tid_tx->state))
  301. ___ieee80211_stop_tx_ba_session(sta, tid,
  302. AGG_STOP_LOCAL_REQUEST);
  303. }
  304. mutex_unlock(&sta->ampdu_mlme.mtx);
  305. }
  306. void ieee80211_send_delba(struct ieee80211_sub_if_data *sdata,
  307. const u8 *da, u16 tid,
  308. u16 initiator, u16 reason_code)
  309. {
  310. struct ieee80211_local *local = sdata->local;
  311. struct sk_buff *skb;
  312. struct ieee80211_mgmt *mgmt;
  313. u16 params;
  314. skb = dev_alloc_skb(sizeof(*mgmt) + local->hw.extra_tx_headroom);
  315. if (!skb)
  316. return;
  317. skb_reserve(skb, local->hw.extra_tx_headroom);
  318. mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
  319. memset(mgmt, 0, 24);
  320. memcpy(mgmt->da, da, ETH_ALEN);
  321. memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
  322. if (sdata->vif.type == NL80211_IFTYPE_AP ||
  323. sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
  324. sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
  325. memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
  326. else if (sdata->vif.type == NL80211_IFTYPE_STATION)
  327. memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
  328. else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
  329. memcpy(mgmt->bssid, sdata->u.ibss.bssid, ETH_ALEN);
  330. mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
  331. IEEE80211_STYPE_ACTION);
  332. skb_put(skb, 1 + sizeof(mgmt->u.action.u.delba));
  333. mgmt->u.action.category = WLAN_CATEGORY_BACK;
  334. mgmt->u.action.u.delba.action_code = WLAN_ACTION_DELBA;
  335. params = (u16)(initiator << 11); /* bit 11 initiator */
  336. params |= (u16)(tid << 12); /* bit 15:12 TID number */
  337. mgmt->u.action.u.delba.params = cpu_to_le16(params);
  338. mgmt->u.action.u.delba.reason_code = cpu_to_le16(reason_code);
  339. ieee80211_tx_skb(sdata, skb);
  340. }
  341. void ieee80211_process_delba(struct ieee80211_sub_if_data *sdata,
  342. struct sta_info *sta,
  343. struct ieee80211_mgmt *mgmt, size_t len)
  344. {
  345. u16 tid, params;
  346. u16 initiator;
  347. params = le16_to_cpu(mgmt->u.action.u.delba.params);
  348. tid = (params & IEEE80211_DELBA_PARAM_TID_MASK) >> 12;
  349. initiator = (params & IEEE80211_DELBA_PARAM_INITIATOR_MASK) >> 11;
  350. ht_dbg_ratelimited(sdata, "delba from %pM (%s) tid %d reason code %d\n",
  351. mgmt->sa, initiator ? "initiator" : "recipient",
  352. tid,
  353. le16_to_cpu(mgmt->u.action.u.delba.reason_code));
  354. if (initiator == WLAN_BACK_INITIATOR)
  355. __ieee80211_stop_rx_ba_session(sta, tid, WLAN_BACK_INITIATOR, 0,
  356. true);
  357. else
  358. __ieee80211_stop_tx_ba_session(sta, tid, AGG_STOP_PEER_REQUEST);
  359. }
  360. int ieee80211_send_smps_action(struct ieee80211_sub_if_data *sdata,
  361. enum ieee80211_smps_mode smps, const u8 *da,
  362. const u8 *bssid)
  363. {
  364. struct ieee80211_local *local = sdata->local;
  365. struct sk_buff *skb;
  366. struct ieee80211_mgmt *action_frame;
  367. /* 27 = header + category + action + smps mode */
  368. skb = dev_alloc_skb(27 + local->hw.extra_tx_headroom);
  369. if (!skb)
  370. return -ENOMEM;
  371. skb_reserve(skb, local->hw.extra_tx_headroom);
  372. action_frame = (void *)skb_put(skb, 27);
  373. memcpy(action_frame->da, da, ETH_ALEN);
  374. memcpy(action_frame->sa, sdata->dev->dev_addr, ETH_ALEN);
  375. memcpy(action_frame->bssid, bssid, ETH_ALEN);
  376. action_frame->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
  377. IEEE80211_STYPE_ACTION);
  378. action_frame->u.action.category = WLAN_CATEGORY_HT;
  379. action_frame->u.action.u.ht_smps.action = WLAN_HT_ACTION_SMPS;
  380. switch (smps) {
  381. case IEEE80211_SMPS_AUTOMATIC:
  382. case IEEE80211_SMPS_NUM_MODES:
  383. WARN_ON(1);
  384. case IEEE80211_SMPS_OFF:
  385. action_frame->u.action.u.ht_smps.smps_control =
  386. WLAN_HT_SMPS_CONTROL_DISABLED;
  387. break;
  388. case IEEE80211_SMPS_STATIC:
  389. action_frame->u.action.u.ht_smps.smps_control =
  390. WLAN_HT_SMPS_CONTROL_STATIC;
  391. break;
  392. case IEEE80211_SMPS_DYNAMIC:
  393. action_frame->u.action.u.ht_smps.smps_control =
  394. WLAN_HT_SMPS_CONTROL_DYNAMIC;
  395. break;
  396. }
  397. /* we'll do more on status of this frame */
  398. IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
  399. ieee80211_tx_skb(sdata, skb);
  400. return 0;
  401. }
  402. void ieee80211_request_smps_mgd_work(struct work_struct *work)
  403. {
  404. struct ieee80211_sub_if_data *sdata =
  405. container_of(work, struct ieee80211_sub_if_data,
  406. u.mgd.request_smps_work);
  407. sdata_lock(sdata);
  408. __ieee80211_request_smps_mgd(sdata, sdata->u.mgd.driver_smps_mode);
  409. sdata_unlock(sdata);
  410. }
  411. void ieee80211_request_smps_ap_work(struct work_struct *work)
  412. {
  413. struct ieee80211_sub_if_data *sdata =
  414. container_of(work, struct ieee80211_sub_if_data,
  415. u.ap.request_smps_work);
  416. sdata_lock(sdata);
  417. if (sdata_dereference(sdata->u.ap.beacon, sdata))
  418. __ieee80211_request_smps_ap(sdata,
  419. sdata->u.ap.driver_smps_mode);
  420. sdata_unlock(sdata);
  421. }
  422. void ieee80211_request_smps(struct ieee80211_vif *vif,
  423. enum ieee80211_smps_mode smps_mode)
  424. {
  425. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  426. if (WARN_ON_ONCE(vif->type != NL80211_IFTYPE_STATION &&
  427. vif->type != NL80211_IFTYPE_AP))
  428. return;
  429. if (vif->type == NL80211_IFTYPE_STATION) {
  430. if (sdata->u.mgd.driver_smps_mode == smps_mode)
  431. return;
  432. sdata->u.mgd.driver_smps_mode = smps_mode;
  433. ieee80211_queue_work(&sdata->local->hw,
  434. &sdata->u.mgd.request_smps_work);
  435. } else {
  436. /* AUTOMATIC is meaningless in AP mode */
  437. if (WARN_ON_ONCE(smps_mode == IEEE80211_SMPS_AUTOMATIC))
  438. return;
  439. if (sdata->u.ap.driver_smps_mode == smps_mode)
  440. return;
  441. sdata->u.ap.driver_smps_mode = smps_mode;
  442. ieee80211_queue_work(&sdata->local->hw,
  443. &sdata->u.ap.request_smps_work);
  444. }
  445. }
  446. /* this might change ... don't want non-open drivers using it */
  447. EXPORT_SYMBOL_GPL(ieee80211_request_smps);