ht.c 9.5 KB

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