ht.c 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  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. void ieee80211_ht_cap_ie_to_sta_ht_cap(struct ieee80211_supported_band *sband,
  21. struct ieee80211_ht_cap *ht_cap_ie,
  22. struct ieee80211_sta_ht_cap *ht_cap)
  23. {
  24. u8 ampdu_info, tx_mcs_set_cap;
  25. int i, max_tx_streams;
  26. BUG_ON(!ht_cap);
  27. memset(ht_cap, 0, sizeof(*ht_cap));
  28. if (!ht_cap_ie || !sband->ht_cap.ht_supported)
  29. return;
  30. ht_cap->ht_supported = true;
  31. /*
  32. * The bits listed in this expression should be
  33. * the same for the peer and us, if the station
  34. * advertises more then we can't use those thus
  35. * we mask them out.
  36. */
  37. ht_cap->cap = le16_to_cpu(ht_cap_ie->cap_info) &
  38. (sband->ht_cap.cap |
  39. ~(IEEE80211_HT_CAP_LDPC_CODING |
  40. IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
  41. IEEE80211_HT_CAP_GRN_FLD |
  42. IEEE80211_HT_CAP_SGI_20 |
  43. IEEE80211_HT_CAP_SGI_40 |
  44. IEEE80211_HT_CAP_DSSSCCK40));
  45. /*
  46. * The STBC bits are asymmetric -- if we don't have
  47. * TX then mask out the peer's RX and vice versa.
  48. */
  49. if (!(sband->ht_cap.cap & IEEE80211_HT_CAP_TX_STBC))
  50. ht_cap->cap &= ~IEEE80211_HT_CAP_RX_STBC;
  51. if (!(sband->ht_cap.cap & IEEE80211_HT_CAP_RX_STBC))
  52. ht_cap->cap &= ~IEEE80211_HT_CAP_TX_STBC;
  53. ampdu_info = ht_cap_ie->ampdu_params_info;
  54. ht_cap->ampdu_factor =
  55. ampdu_info & IEEE80211_HT_AMPDU_PARM_FACTOR;
  56. ht_cap->ampdu_density =
  57. (ampdu_info & IEEE80211_HT_AMPDU_PARM_DENSITY) >> 2;
  58. /* own MCS TX capabilities */
  59. tx_mcs_set_cap = sband->ht_cap.mcs.tx_params;
  60. /* Copy peer MCS TX capabilities, the driver might need them. */
  61. ht_cap->mcs.tx_params = ht_cap_ie->mcs.tx_params;
  62. /* can we TX with MCS rates? */
  63. if (!(tx_mcs_set_cap & IEEE80211_HT_MCS_TX_DEFINED))
  64. return;
  65. /* Counting from 0, therefore +1 */
  66. if (tx_mcs_set_cap & IEEE80211_HT_MCS_TX_RX_DIFF)
  67. max_tx_streams =
  68. ((tx_mcs_set_cap & IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK)
  69. >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT) + 1;
  70. else
  71. max_tx_streams = IEEE80211_HT_MCS_TX_MAX_STREAMS;
  72. /*
  73. * 802.11n-2009 20.3.5 / 20.6 says:
  74. * - indices 0 to 7 and 32 are single spatial stream
  75. * - 8 to 31 are multiple spatial streams using equal modulation
  76. * [8..15 for two streams, 16..23 for three and 24..31 for four]
  77. * - remainder are multiple spatial streams using unequal modulation
  78. */
  79. for (i = 0; i < max_tx_streams; i++)
  80. ht_cap->mcs.rx_mask[i] =
  81. sband->ht_cap.mcs.rx_mask[i] & ht_cap_ie->mcs.rx_mask[i];
  82. if (tx_mcs_set_cap & IEEE80211_HT_MCS_TX_UNEQUAL_MODULATION)
  83. for (i = IEEE80211_HT_MCS_UNEQUAL_MODULATION_START_BYTE;
  84. i < IEEE80211_HT_MCS_MASK_LEN; i++)
  85. ht_cap->mcs.rx_mask[i] =
  86. sband->ht_cap.mcs.rx_mask[i] &
  87. ht_cap_ie->mcs.rx_mask[i];
  88. /* handle MCS rate 32 too */
  89. if (sband->ht_cap.mcs.rx_mask[32/8] & ht_cap_ie->mcs.rx_mask[32/8] & 1)
  90. ht_cap->mcs.rx_mask[32/8] |= 1;
  91. }
  92. void ieee80211_sta_tear_down_BA_sessions(struct sta_info *sta, bool tx)
  93. {
  94. int i;
  95. cancel_work_sync(&sta->ampdu_mlme.work);
  96. for (i = 0; i < STA_TID_NUM; i++) {
  97. __ieee80211_stop_tx_ba_session(sta, i, WLAN_BACK_INITIATOR, tx);
  98. __ieee80211_stop_rx_ba_session(sta, i, WLAN_BACK_RECIPIENT,
  99. WLAN_REASON_QSTA_LEAVE_QBSS, tx);
  100. }
  101. }
  102. void ieee80211_ba_session_work(struct work_struct *work)
  103. {
  104. struct sta_info *sta =
  105. container_of(work, struct sta_info, ampdu_mlme.work);
  106. struct tid_ampdu_tx *tid_tx;
  107. int tid;
  108. /*
  109. * When this flag is set, new sessions should be
  110. * blocked, and existing sessions will be torn
  111. * down by the code that set the flag, so this
  112. * need not run.
  113. */
  114. if (test_sta_flag(sta, WLAN_STA_BLOCK_BA))
  115. return;
  116. mutex_lock(&sta->ampdu_mlme.mtx);
  117. for (tid = 0; tid < STA_TID_NUM; tid++) {
  118. if (test_and_clear_bit(tid, sta->ampdu_mlme.tid_rx_timer_expired))
  119. ___ieee80211_stop_rx_ba_session(
  120. sta, tid, WLAN_BACK_RECIPIENT,
  121. WLAN_REASON_QSTA_TIMEOUT, true);
  122. if (test_and_clear_bit(tid,
  123. sta->ampdu_mlme.tid_rx_stop_requested))
  124. ___ieee80211_stop_rx_ba_session(
  125. sta, tid, WLAN_BACK_RECIPIENT,
  126. WLAN_REASON_UNSPECIFIED, true);
  127. tid_tx = sta->ampdu_mlme.tid_start_tx[tid];
  128. if (tid_tx) {
  129. /*
  130. * Assign it over to the normal tid_tx array
  131. * where it "goes live".
  132. */
  133. spin_lock_bh(&sta->lock);
  134. sta->ampdu_mlme.tid_start_tx[tid] = NULL;
  135. /* could there be a race? */
  136. if (sta->ampdu_mlme.tid_tx[tid])
  137. kfree(tid_tx);
  138. else
  139. ieee80211_assign_tid_tx(sta, tid, tid_tx);
  140. spin_unlock_bh(&sta->lock);
  141. ieee80211_tx_ba_session_handle_start(sta, tid);
  142. continue;
  143. }
  144. tid_tx = rcu_dereference_protected_tid_tx(sta, tid);
  145. if (tid_tx && test_and_clear_bit(HT_AGG_STATE_WANT_STOP,
  146. &tid_tx->state))
  147. ___ieee80211_stop_tx_ba_session(sta, tid,
  148. WLAN_BACK_INITIATOR,
  149. true);
  150. }
  151. mutex_unlock(&sta->ampdu_mlme.mtx);
  152. }
  153. void ieee80211_send_delba(struct ieee80211_sub_if_data *sdata,
  154. const u8 *da, u16 tid,
  155. u16 initiator, u16 reason_code)
  156. {
  157. struct ieee80211_local *local = sdata->local;
  158. struct sk_buff *skb;
  159. struct ieee80211_mgmt *mgmt;
  160. u16 params;
  161. skb = dev_alloc_skb(sizeof(*mgmt) + local->hw.extra_tx_headroom);
  162. if (!skb)
  163. return;
  164. skb_reserve(skb, local->hw.extra_tx_headroom);
  165. mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
  166. memset(mgmt, 0, 24);
  167. memcpy(mgmt->da, da, ETH_ALEN);
  168. memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
  169. if (sdata->vif.type == NL80211_IFTYPE_AP ||
  170. sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
  171. memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
  172. else if (sdata->vif.type == NL80211_IFTYPE_STATION)
  173. memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
  174. mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
  175. IEEE80211_STYPE_ACTION);
  176. skb_put(skb, 1 + sizeof(mgmt->u.action.u.delba));
  177. mgmt->u.action.category = WLAN_CATEGORY_BACK;
  178. mgmt->u.action.u.delba.action_code = WLAN_ACTION_DELBA;
  179. params = (u16)(initiator << 11); /* bit 11 initiator */
  180. params |= (u16)(tid << 12); /* bit 15:12 TID number */
  181. mgmt->u.action.u.delba.params = cpu_to_le16(params);
  182. mgmt->u.action.u.delba.reason_code = cpu_to_le16(reason_code);
  183. ieee80211_tx_skb(sdata, skb);
  184. }
  185. void ieee80211_process_delba(struct ieee80211_sub_if_data *sdata,
  186. struct sta_info *sta,
  187. struct ieee80211_mgmt *mgmt, size_t len)
  188. {
  189. u16 tid, params;
  190. u16 initiator;
  191. params = le16_to_cpu(mgmt->u.action.u.delba.params);
  192. tid = (params & IEEE80211_DELBA_PARAM_TID_MASK) >> 12;
  193. initiator = (params & IEEE80211_DELBA_PARAM_INITIATOR_MASK) >> 11;
  194. #ifdef CONFIG_MAC80211_HT_DEBUG
  195. if (net_ratelimit())
  196. printk(KERN_DEBUG "delba from %pM (%s) tid %d reason code %d\n",
  197. mgmt->sa, initiator ? "initiator" : "recipient", tid,
  198. le16_to_cpu(mgmt->u.action.u.delba.reason_code));
  199. #endif /* CONFIG_MAC80211_HT_DEBUG */
  200. if (initiator == WLAN_BACK_INITIATOR)
  201. __ieee80211_stop_rx_ba_session(sta, tid, WLAN_BACK_INITIATOR, 0,
  202. true);
  203. else
  204. __ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_RECIPIENT,
  205. true);
  206. }
  207. int ieee80211_send_smps_action(struct ieee80211_sub_if_data *sdata,
  208. enum ieee80211_smps_mode smps, const u8 *da,
  209. const u8 *bssid)
  210. {
  211. struct ieee80211_local *local = sdata->local;
  212. struct sk_buff *skb;
  213. struct ieee80211_mgmt *action_frame;
  214. /* 27 = header + category + action + smps mode */
  215. skb = dev_alloc_skb(27 + local->hw.extra_tx_headroom);
  216. if (!skb)
  217. return -ENOMEM;
  218. skb_reserve(skb, local->hw.extra_tx_headroom);
  219. action_frame = (void *)skb_put(skb, 27);
  220. memcpy(action_frame->da, da, ETH_ALEN);
  221. memcpy(action_frame->sa, sdata->dev->dev_addr, ETH_ALEN);
  222. memcpy(action_frame->bssid, bssid, ETH_ALEN);
  223. action_frame->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
  224. IEEE80211_STYPE_ACTION);
  225. action_frame->u.action.category = WLAN_CATEGORY_HT;
  226. action_frame->u.action.u.ht_smps.action = WLAN_HT_ACTION_SMPS;
  227. switch (smps) {
  228. case IEEE80211_SMPS_AUTOMATIC:
  229. case IEEE80211_SMPS_NUM_MODES:
  230. WARN_ON(1);
  231. case IEEE80211_SMPS_OFF:
  232. action_frame->u.action.u.ht_smps.smps_control =
  233. WLAN_HT_SMPS_CONTROL_DISABLED;
  234. break;
  235. case IEEE80211_SMPS_STATIC:
  236. action_frame->u.action.u.ht_smps.smps_control =
  237. WLAN_HT_SMPS_CONTROL_STATIC;
  238. break;
  239. case IEEE80211_SMPS_DYNAMIC:
  240. action_frame->u.action.u.ht_smps.smps_control =
  241. WLAN_HT_SMPS_CONTROL_DYNAMIC;
  242. break;
  243. }
  244. /* we'll do more on status of this frame */
  245. IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
  246. ieee80211_tx_skb(sdata, skb);
  247. return 0;
  248. }
  249. void ieee80211_request_smps_work(struct work_struct *work)
  250. {
  251. struct ieee80211_sub_if_data *sdata =
  252. container_of(work, struct ieee80211_sub_if_data,
  253. u.mgd.request_smps_work);
  254. mutex_lock(&sdata->u.mgd.mtx);
  255. __ieee80211_request_smps(sdata, sdata->u.mgd.driver_smps_mode);
  256. mutex_unlock(&sdata->u.mgd.mtx);
  257. }
  258. void ieee80211_request_smps(struct ieee80211_vif *vif,
  259. enum ieee80211_smps_mode smps_mode)
  260. {
  261. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  262. if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
  263. return;
  264. if (WARN_ON(smps_mode == IEEE80211_SMPS_OFF))
  265. smps_mode = IEEE80211_SMPS_AUTOMATIC;
  266. sdata->u.mgd.driver_smps_mode = smps_mode;
  267. ieee80211_queue_work(&sdata->local->hw,
  268. &sdata->u.mgd.request_smps_work);
  269. }
  270. /* this might change ... don't want non-open drivers using it */
  271. EXPORT_SYMBOL_GPL(ieee80211_request_smps);