ht.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  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. bool ieee80111_cfg_override_disables_ht40(struct ieee80211_sub_if_data *sdata)
  21. {
  22. const __le16 flg = cpu_to_le16(IEEE80211_HT_CAP_SUP_WIDTH_20_40);
  23. if ((sdata->u.mgd.ht_capa_mask.cap_info & flg) &&
  24. !(sdata->u.mgd.ht_capa.cap_info & flg))
  25. return true;
  26. return false;
  27. }
  28. static void __check_htcap_disable(struct ieee80211_sub_if_data *sdata,
  29. struct ieee80211_sta_ht_cap *ht_cap,
  30. u16 flag)
  31. {
  32. __le16 le_flag = cpu_to_le16(flag);
  33. if (sdata->u.mgd.ht_capa_mask.cap_info & le_flag) {
  34. if (!(sdata->u.mgd.ht_capa.cap_info & le_flag))
  35. ht_cap->cap &= ~flag;
  36. }
  37. }
  38. void ieee80211_apply_htcap_overrides(struct ieee80211_sub_if_data *sdata,
  39. struct ieee80211_sta_ht_cap *ht_cap)
  40. {
  41. u8 *scaps = (u8 *)(&sdata->u.mgd.ht_capa.mcs.rx_mask);
  42. u8 *smask = (u8 *)(&sdata->u.mgd.ht_capa_mask.mcs.rx_mask);
  43. int i;
  44. if (sdata->vif.type != NL80211_IFTYPE_STATION) {
  45. /* AP interfaces call this code when adding new stations,
  46. * so just silently ignore non station interfaces.
  47. */
  48. return;
  49. }
  50. /* NOTE: If you add more over-rides here, update register_hw
  51. * ht_capa_mod_msk logic in main.c as well.
  52. * And, if this method can ever change ht_cap.ht_supported, fix
  53. * the check in ieee80211_add_ht_ie.
  54. */
  55. /* check for HT over-rides, MCS rates first. */
  56. for (i = 0; i < IEEE80211_HT_MCS_MASK_LEN; i++) {
  57. u8 m = smask[i];
  58. ht_cap->mcs.rx_mask[i] &= ~m; /* turn off all masked bits */
  59. /* Add back rates that are supported */
  60. ht_cap->mcs.rx_mask[i] |= (m & scaps[i]);
  61. }
  62. /* Force removal of HT-40 capabilities? */
  63. __check_htcap_disable(sdata, ht_cap, IEEE80211_HT_CAP_SUP_WIDTH_20_40);
  64. __check_htcap_disable(sdata, ht_cap, IEEE80211_HT_CAP_SGI_40);
  65. /* Allow user to disable the max-AMSDU bit. */
  66. __check_htcap_disable(sdata, ht_cap, IEEE80211_HT_CAP_MAX_AMSDU);
  67. /* Allow user to decrease AMPDU factor */
  68. if (sdata->u.mgd.ht_capa_mask.ampdu_params_info &
  69. IEEE80211_HT_AMPDU_PARM_FACTOR) {
  70. u8 n = sdata->u.mgd.ht_capa.ampdu_params_info
  71. & IEEE80211_HT_AMPDU_PARM_FACTOR;
  72. if (n < ht_cap->ampdu_factor)
  73. ht_cap->ampdu_factor = n;
  74. }
  75. /* Allow the user to increase AMPDU density. */
  76. if (sdata->u.mgd.ht_capa_mask.ampdu_params_info &
  77. IEEE80211_HT_AMPDU_PARM_DENSITY) {
  78. u8 n = (sdata->u.mgd.ht_capa.ampdu_params_info &
  79. IEEE80211_HT_AMPDU_PARM_DENSITY)
  80. >> IEEE80211_HT_AMPDU_PARM_DENSITY_SHIFT;
  81. if (n > ht_cap->ampdu_density)
  82. ht_cap->ampdu_density = n;
  83. }
  84. }
  85. void ieee80211_ht_cap_ie_to_sta_ht_cap(struct ieee80211_sub_if_data *sdata,
  86. struct ieee80211_supported_band *sband,
  87. struct ieee80211_ht_cap *ht_cap_ie,
  88. struct ieee80211_sta_ht_cap *ht_cap)
  89. {
  90. u8 ampdu_info, tx_mcs_set_cap;
  91. int i, max_tx_streams;
  92. BUG_ON(!ht_cap);
  93. memset(ht_cap, 0, sizeof(*ht_cap));
  94. if (!ht_cap_ie || !sband->ht_cap.ht_supported)
  95. return;
  96. ht_cap->ht_supported = true;
  97. /*
  98. * The bits listed in this expression should be
  99. * the same for the peer and us, if the station
  100. * advertises more then we can't use those thus
  101. * we mask them out.
  102. */
  103. ht_cap->cap = le16_to_cpu(ht_cap_ie->cap_info) &
  104. (sband->ht_cap.cap |
  105. ~(IEEE80211_HT_CAP_LDPC_CODING |
  106. IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
  107. IEEE80211_HT_CAP_GRN_FLD |
  108. IEEE80211_HT_CAP_SGI_20 |
  109. IEEE80211_HT_CAP_SGI_40 |
  110. IEEE80211_HT_CAP_DSSSCCK40));
  111. /*
  112. * The STBC bits are asymmetric -- if we don't have
  113. * TX then mask out the peer's RX and vice versa.
  114. */
  115. if (!(sband->ht_cap.cap & IEEE80211_HT_CAP_TX_STBC))
  116. ht_cap->cap &= ~IEEE80211_HT_CAP_RX_STBC;
  117. if (!(sband->ht_cap.cap & IEEE80211_HT_CAP_RX_STBC))
  118. ht_cap->cap &= ~IEEE80211_HT_CAP_TX_STBC;
  119. ampdu_info = ht_cap_ie->ampdu_params_info;
  120. ht_cap->ampdu_factor =
  121. ampdu_info & IEEE80211_HT_AMPDU_PARM_FACTOR;
  122. ht_cap->ampdu_density =
  123. (ampdu_info & IEEE80211_HT_AMPDU_PARM_DENSITY) >> 2;
  124. /* own MCS TX capabilities */
  125. tx_mcs_set_cap = sband->ht_cap.mcs.tx_params;
  126. /* Copy peer MCS TX capabilities, the driver might need them. */
  127. ht_cap->mcs.tx_params = ht_cap_ie->mcs.tx_params;
  128. /* can we TX with MCS rates? */
  129. if (!(tx_mcs_set_cap & IEEE80211_HT_MCS_TX_DEFINED))
  130. return;
  131. /* Counting from 0, therefore +1 */
  132. if (tx_mcs_set_cap & IEEE80211_HT_MCS_TX_RX_DIFF)
  133. max_tx_streams =
  134. ((tx_mcs_set_cap & IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK)
  135. >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT) + 1;
  136. else
  137. max_tx_streams = IEEE80211_HT_MCS_TX_MAX_STREAMS;
  138. /*
  139. * 802.11n-2009 20.3.5 / 20.6 says:
  140. * - indices 0 to 7 and 32 are single spatial stream
  141. * - 8 to 31 are multiple spatial streams using equal modulation
  142. * [8..15 for two streams, 16..23 for three and 24..31 for four]
  143. * - remainder are multiple spatial streams using unequal modulation
  144. */
  145. for (i = 0; i < max_tx_streams; i++)
  146. ht_cap->mcs.rx_mask[i] =
  147. sband->ht_cap.mcs.rx_mask[i] & ht_cap_ie->mcs.rx_mask[i];
  148. if (tx_mcs_set_cap & IEEE80211_HT_MCS_TX_UNEQUAL_MODULATION)
  149. for (i = IEEE80211_HT_MCS_UNEQUAL_MODULATION_START_BYTE;
  150. i < IEEE80211_HT_MCS_MASK_LEN; i++)
  151. ht_cap->mcs.rx_mask[i] =
  152. sband->ht_cap.mcs.rx_mask[i] &
  153. ht_cap_ie->mcs.rx_mask[i];
  154. /* handle MCS rate 32 too */
  155. if (sband->ht_cap.mcs.rx_mask[32/8] & ht_cap_ie->mcs.rx_mask[32/8] & 1)
  156. ht_cap->mcs.rx_mask[32/8] |= 1;
  157. /*
  158. * If user has specified capability over-rides, take care
  159. * of that here.
  160. */
  161. ieee80211_apply_htcap_overrides(sdata, ht_cap);
  162. }
  163. void ieee80211_sta_tear_down_BA_sessions(struct sta_info *sta, bool tx)
  164. {
  165. int i;
  166. cancel_work_sync(&sta->ampdu_mlme.work);
  167. for (i = 0; i < STA_TID_NUM; i++) {
  168. __ieee80211_stop_tx_ba_session(sta, i, WLAN_BACK_INITIATOR, tx);
  169. __ieee80211_stop_rx_ba_session(sta, i, WLAN_BACK_RECIPIENT,
  170. WLAN_REASON_QSTA_LEAVE_QBSS, tx);
  171. }
  172. }
  173. void ieee80211_ba_session_work(struct work_struct *work)
  174. {
  175. struct sta_info *sta =
  176. container_of(work, struct sta_info, ampdu_mlme.work);
  177. struct tid_ampdu_tx *tid_tx;
  178. int tid;
  179. /*
  180. * When this flag is set, new sessions should be
  181. * blocked, and existing sessions will be torn
  182. * down by the code that set the flag, so this
  183. * need not run.
  184. */
  185. if (test_sta_flag(sta, WLAN_STA_BLOCK_BA))
  186. return;
  187. mutex_lock(&sta->ampdu_mlme.mtx);
  188. for (tid = 0; tid < STA_TID_NUM; tid++) {
  189. if (test_and_clear_bit(tid, sta->ampdu_mlme.tid_rx_timer_expired))
  190. ___ieee80211_stop_rx_ba_session(
  191. sta, tid, WLAN_BACK_RECIPIENT,
  192. WLAN_REASON_QSTA_TIMEOUT, true);
  193. if (test_and_clear_bit(tid,
  194. sta->ampdu_mlme.tid_rx_stop_requested))
  195. ___ieee80211_stop_rx_ba_session(
  196. sta, tid, WLAN_BACK_RECIPIENT,
  197. WLAN_REASON_UNSPECIFIED, true);
  198. tid_tx = sta->ampdu_mlme.tid_start_tx[tid];
  199. if (tid_tx) {
  200. /*
  201. * Assign it over to the normal tid_tx array
  202. * where it "goes live".
  203. */
  204. spin_lock_bh(&sta->lock);
  205. sta->ampdu_mlme.tid_start_tx[tid] = NULL;
  206. /* could there be a race? */
  207. if (sta->ampdu_mlme.tid_tx[tid])
  208. kfree(tid_tx);
  209. else
  210. ieee80211_assign_tid_tx(sta, tid, tid_tx);
  211. spin_unlock_bh(&sta->lock);
  212. ieee80211_tx_ba_session_handle_start(sta, tid);
  213. continue;
  214. }
  215. tid_tx = rcu_dereference_protected_tid_tx(sta, tid);
  216. if (tid_tx && test_and_clear_bit(HT_AGG_STATE_WANT_STOP,
  217. &tid_tx->state))
  218. ___ieee80211_stop_tx_ba_session(sta, tid,
  219. WLAN_BACK_INITIATOR,
  220. true);
  221. }
  222. mutex_unlock(&sta->ampdu_mlme.mtx);
  223. }
  224. void ieee80211_send_delba(struct ieee80211_sub_if_data *sdata,
  225. const u8 *da, u16 tid,
  226. u16 initiator, u16 reason_code)
  227. {
  228. struct ieee80211_local *local = sdata->local;
  229. struct sk_buff *skb;
  230. struct ieee80211_mgmt *mgmt;
  231. u16 params;
  232. skb = dev_alloc_skb(sizeof(*mgmt) + local->hw.extra_tx_headroom);
  233. if (!skb)
  234. return;
  235. skb_reserve(skb, local->hw.extra_tx_headroom);
  236. mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
  237. memset(mgmt, 0, 24);
  238. memcpy(mgmt->da, da, ETH_ALEN);
  239. memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
  240. if (sdata->vif.type == NL80211_IFTYPE_AP ||
  241. sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
  242. sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
  243. memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
  244. else if (sdata->vif.type == NL80211_IFTYPE_STATION)
  245. memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
  246. else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
  247. memcpy(mgmt->bssid, sdata->u.ibss.bssid, ETH_ALEN);
  248. mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
  249. IEEE80211_STYPE_ACTION);
  250. skb_put(skb, 1 + sizeof(mgmt->u.action.u.delba));
  251. mgmt->u.action.category = WLAN_CATEGORY_BACK;
  252. mgmt->u.action.u.delba.action_code = WLAN_ACTION_DELBA;
  253. params = (u16)(initiator << 11); /* bit 11 initiator */
  254. params |= (u16)(tid << 12); /* bit 15:12 TID number */
  255. mgmt->u.action.u.delba.params = cpu_to_le16(params);
  256. mgmt->u.action.u.delba.reason_code = cpu_to_le16(reason_code);
  257. ieee80211_tx_skb_tid(sdata, skb, tid);
  258. }
  259. void ieee80211_process_delba(struct ieee80211_sub_if_data *sdata,
  260. struct sta_info *sta,
  261. struct ieee80211_mgmt *mgmt, size_t len)
  262. {
  263. u16 tid, params;
  264. u16 initiator;
  265. params = le16_to_cpu(mgmt->u.action.u.delba.params);
  266. tid = (params & IEEE80211_DELBA_PARAM_TID_MASK) >> 12;
  267. initiator = (params & IEEE80211_DELBA_PARAM_INITIATOR_MASK) >> 11;
  268. #ifdef CONFIG_MAC80211_HT_DEBUG
  269. net_dbg_ratelimited("delba from %pM (%s) tid %d reason code %d\n",
  270. mgmt->sa, initiator ? "initiator" : "recipient",
  271. tid,
  272. le16_to_cpu(mgmt->u.action.u.delba.reason_code));
  273. #endif /* CONFIG_MAC80211_HT_DEBUG */
  274. if (initiator == WLAN_BACK_INITIATOR)
  275. __ieee80211_stop_rx_ba_session(sta, tid, WLAN_BACK_INITIATOR, 0,
  276. true);
  277. else
  278. __ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_RECIPIENT,
  279. true);
  280. }
  281. int ieee80211_send_smps_action(struct ieee80211_sub_if_data *sdata,
  282. enum ieee80211_smps_mode smps, const u8 *da,
  283. const u8 *bssid)
  284. {
  285. struct ieee80211_local *local = sdata->local;
  286. struct sk_buff *skb;
  287. struct ieee80211_mgmt *action_frame;
  288. /* 27 = header + category + action + smps mode */
  289. skb = dev_alloc_skb(27 + local->hw.extra_tx_headroom);
  290. if (!skb)
  291. return -ENOMEM;
  292. skb_reserve(skb, local->hw.extra_tx_headroom);
  293. action_frame = (void *)skb_put(skb, 27);
  294. memcpy(action_frame->da, da, ETH_ALEN);
  295. memcpy(action_frame->sa, sdata->dev->dev_addr, ETH_ALEN);
  296. memcpy(action_frame->bssid, bssid, ETH_ALEN);
  297. action_frame->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
  298. IEEE80211_STYPE_ACTION);
  299. action_frame->u.action.category = WLAN_CATEGORY_HT;
  300. action_frame->u.action.u.ht_smps.action = WLAN_HT_ACTION_SMPS;
  301. switch (smps) {
  302. case IEEE80211_SMPS_AUTOMATIC:
  303. case IEEE80211_SMPS_NUM_MODES:
  304. WARN_ON(1);
  305. case IEEE80211_SMPS_OFF:
  306. action_frame->u.action.u.ht_smps.smps_control =
  307. WLAN_HT_SMPS_CONTROL_DISABLED;
  308. break;
  309. case IEEE80211_SMPS_STATIC:
  310. action_frame->u.action.u.ht_smps.smps_control =
  311. WLAN_HT_SMPS_CONTROL_STATIC;
  312. break;
  313. case IEEE80211_SMPS_DYNAMIC:
  314. action_frame->u.action.u.ht_smps.smps_control =
  315. WLAN_HT_SMPS_CONTROL_DYNAMIC;
  316. break;
  317. }
  318. /* we'll do more on status of this frame */
  319. IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
  320. ieee80211_tx_skb(sdata, skb);
  321. return 0;
  322. }
  323. void ieee80211_request_smps_work(struct work_struct *work)
  324. {
  325. struct ieee80211_sub_if_data *sdata =
  326. container_of(work, struct ieee80211_sub_if_data,
  327. u.mgd.request_smps_work);
  328. mutex_lock(&sdata->u.mgd.mtx);
  329. __ieee80211_request_smps(sdata, sdata->u.mgd.driver_smps_mode);
  330. mutex_unlock(&sdata->u.mgd.mtx);
  331. }
  332. void ieee80211_request_smps(struct ieee80211_vif *vif,
  333. enum ieee80211_smps_mode smps_mode)
  334. {
  335. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  336. if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
  337. return;
  338. if (WARN_ON(smps_mode == IEEE80211_SMPS_OFF))
  339. smps_mode = IEEE80211_SMPS_AUTOMATIC;
  340. sdata->u.mgd.driver_smps_mode = smps_mode;
  341. ieee80211_queue_work(&sdata->local->hw,
  342. &sdata->u.mgd.request_smps_work);
  343. }
  344. /* this might change ... don't want non-open drivers using it */
  345. EXPORT_SYMBOL_GPL(ieee80211_request_smps);