Johannes Berg | 44d414d | 2008-09-08 17:44:28 +0200 | [diff] [blame] | 1 | /* |
| 2 | * HT handling |
| 3 | * |
| 4 | * Copyright 2003, Jouni Malinen <jkmaline@cc.hut.fi> |
Johannes Berg | bacac54 | 2008-09-08 17:44:29 +0200 | [diff] [blame] | 5 | * Copyright 2002-2005, Instant802 Networks, Inc. |
| 6 | * Copyright 2005-2006, Devicescape Software, Inc. |
Johannes Berg | 44d414d | 2008-09-08 17:44:28 +0200 | [diff] [blame] | 7 | * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz> |
| 8 | * Copyright 2007, Michael Wu <flamingice@sourmilk.net> |
| 9 | * Copyright 2007-2008, 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 | |
| 16 | #include <linux/ieee80211.h> |
Johannes Berg | 44d414d | 2008-09-08 17:44:28 +0200 | [diff] [blame] | 17 | #include <net/mac80211.h> |
| 18 | #include "ieee80211_i.h" |
Sujith | 81cb762 | 2009-02-12 11:38:37 +0530 | [diff] [blame] | 19 | #include "rate.h" |
Johannes Berg | 44d414d | 2008-09-08 17:44:28 +0200 | [diff] [blame] | 20 | |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 21 | void ieee80211_ht_cap_ie_to_sta_ht_cap(struct ieee80211_supported_band *sband, |
| 22 | struct ieee80211_ht_cap *ht_cap_ie, |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 23 | struct ieee80211_sta_ht_cap *ht_cap) |
Johannes Berg | 44d414d | 2008-09-08 17:44:28 +0200 | [diff] [blame] | 24 | { |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 25 | u8 ampdu_info, tx_mcs_set_cap; |
| 26 | int i, max_tx_streams; |
Johannes Berg | 44d414d | 2008-09-08 17:44:28 +0200 | [diff] [blame] | 27 | |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 28 | BUG_ON(!ht_cap); |
Johannes Berg | 44d414d | 2008-09-08 17:44:28 +0200 | [diff] [blame] | 29 | |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 30 | memset(ht_cap, 0, sizeof(*ht_cap)); |
Johannes Berg | 44d414d | 2008-09-08 17:44:28 +0200 | [diff] [blame] | 31 | |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 32 | if (!ht_cap_ie) |
| 33 | return; |
Johannes Berg | 44d414d | 2008-09-08 17:44:28 +0200 | [diff] [blame] | 34 | |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 35 | ht_cap->ht_supported = true; |
Johannes Berg | 44d414d | 2008-09-08 17:44:28 +0200 | [diff] [blame] | 36 | |
Sujith | f16f33d | 2008-11-14 16:27:53 +0530 | [diff] [blame] | 37 | ht_cap->cap = le16_to_cpu(ht_cap_ie->cap_info) & sband->ht_cap.cap; |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 38 | ht_cap->cap &= ~IEEE80211_HT_CAP_SM_PS; |
| 39 | ht_cap->cap |= sband->ht_cap.cap & IEEE80211_HT_CAP_SM_PS; |
Johannes Berg | 44d414d | 2008-09-08 17:44:28 +0200 | [diff] [blame] | 40 | |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 41 | ampdu_info = ht_cap_ie->ampdu_params_info; |
| 42 | ht_cap->ampdu_factor = |
| 43 | ampdu_info & IEEE80211_HT_AMPDU_PARM_FACTOR; |
| 44 | ht_cap->ampdu_density = |
| 45 | (ampdu_info & IEEE80211_HT_AMPDU_PARM_DENSITY) >> 2; |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 46 | |
| 47 | /* own MCS TX capabilities */ |
| 48 | tx_mcs_set_cap = sband->ht_cap.mcs.tx_params; |
| 49 | |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 50 | /* can we TX with MCS rates? */ |
| 51 | if (!(tx_mcs_set_cap & IEEE80211_HT_MCS_TX_DEFINED)) |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 52 | return; |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 53 | |
| 54 | /* Counting from 0, therefore +1 */ |
| 55 | if (tx_mcs_set_cap & IEEE80211_HT_MCS_TX_RX_DIFF) |
| 56 | max_tx_streams = |
| 57 | ((tx_mcs_set_cap & IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK) |
| 58 | >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT) + 1; |
| 59 | else |
| 60 | max_tx_streams = IEEE80211_HT_MCS_TX_MAX_STREAMS; |
| 61 | |
| 62 | /* |
| 63 | * 802.11n D5.0 20.3.5 / 20.6 says: |
| 64 | * - indices 0 to 7 and 32 are single spatial stream |
| 65 | * - 8 to 31 are multiple spatial streams using equal modulation |
| 66 | * [8..15 for two streams, 16..23 for three and 24..31 for four] |
| 67 | * - remainder are multiple spatial streams using unequal modulation |
| 68 | */ |
| 69 | for (i = 0; i < max_tx_streams; i++) |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 70 | ht_cap->mcs.rx_mask[i] = |
| 71 | sband->ht_cap.mcs.rx_mask[i] & ht_cap_ie->mcs.rx_mask[i]; |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 72 | |
| 73 | if (tx_mcs_set_cap & IEEE80211_HT_MCS_TX_UNEQUAL_MODULATION) |
| 74 | for (i = IEEE80211_HT_MCS_UNEQUAL_MODULATION_START_BYTE; |
| 75 | i < IEEE80211_HT_MCS_MASK_LEN; i++) |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 76 | ht_cap->mcs.rx_mask[i] = |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 77 | sband->ht_cap.mcs.rx_mask[i] & |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 78 | ht_cap_ie->mcs.rx_mask[i]; |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 79 | |
| 80 | /* handle MCS rate 32 too */ |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 81 | if (sband->ht_cap.mcs.rx_mask[32/8] & ht_cap_ie->mcs.rx_mask[32/8] & 1) |
| 82 | ht_cap->mcs.rx_mask[32/8] |= 1; |
| 83 | } |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 84 | |
Johannes Berg | 2dace10 | 2009-02-10 21:25:52 +0100 | [diff] [blame] | 85 | void ieee80211_sta_tear_down_BA_sessions(struct sta_info *sta) |
Johannes Berg | 44d414d | 2008-09-08 17:44:28 +0200 | [diff] [blame] | 86 | { |
Johannes Berg | b8695a8 | 2009-02-10 21:25:46 +0100 | [diff] [blame] | 87 | int i; |
Johannes Berg | 44d414d | 2008-09-08 17:44:28 +0200 | [diff] [blame] | 88 | |
Johannes Berg | b8695a8 | 2009-02-10 21:25:46 +0100 | [diff] [blame] | 89 | for (i = 0; i < STA_TID_NUM; i++) { |
Johannes Berg | 849b796 | 2009-02-10 21:25:54 +0100 | [diff] [blame] | 90 | __ieee80211_stop_tx_ba_session(sta, i, WLAN_BACK_INITIATOR); |
| 91 | __ieee80211_stop_rx_ba_session(sta, i, WLAN_BACK_RECIPIENT, |
| 92 | WLAN_REASON_QSTA_LEAVE_QBSS); |
Johannes Berg | 44d414d | 2008-09-08 17:44:28 +0200 | [diff] [blame] | 93 | } |
Johannes Berg | 44d414d | 2008-09-08 17:44:28 +0200 | [diff] [blame] | 94 | } |
| 95 | |
Johannes Berg | b8695a8 | 2009-02-10 21:25:46 +0100 | [diff] [blame] | 96 | void ieee80211_send_delba(struct ieee80211_sub_if_data *sdata, |
| 97 | const u8 *da, u16 tid, |
| 98 | u16 initiator, u16 reason_code) |
Johannes Berg | 44d414d | 2008-09-08 17:44:28 +0200 | [diff] [blame] | 99 | { |
| 100 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 44d414d | 2008-09-08 17:44:28 +0200 | [diff] [blame] | 101 | struct sk_buff *skb; |
| 102 | struct ieee80211_mgmt *mgmt; |
| 103 | u16 params; |
| 104 | |
| 105 | skb = dev_alloc_skb(sizeof(*mgmt) + local->hw.extra_tx_headroom); |
| 106 | |
| 107 | if (!skb) { |
| 108 | printk(KERN_ERR "%s: failed to allocate buffer " |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 109 | "for delba frame\n", sdata->name); |
Johannes Berg | 44d414d | 2008-09-08 17:44:28 +0200 | [diff] [blame] | 110 | return; |
| 111 | } |
| 112 | |
| 113 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 114 | mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24); |
| 115 | memset(mgmt, 0, 24); |
| 116 | memcpy(mgmt->da, da, ETH_ALEN); |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 117 | memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN); |
Johannes Berg | 8abd3f9 | 2009-02-10 21:25:47 +0100 | [diff] [blame] | 118 | if (sdata->vif.type == NL80211_IFTYPE_AP || |
| 119 | sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 120 | memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 121 | else if (sdata->vif.type == NL80211_IFTYPE_STATION) |
| 122 | memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN); |
| 123 | |
Johannes Berg | 44d414d | 2008-09-08 17:44:28 +0200 | [diff] [blame] | 124 | mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | |
| 125 | IEEE80211_STYPE_ACTION); |
| 126 | |
| 127 | skb_put(skb, 1 + sizeof(mgmt->u.action.u.delba)); |
| 128 | |
| 129 | mgmt->u.action.category = WLAN_CATEGORY_BACK; |
| 130 | mgmt->u.action.u.delba.action_code = WLAN_ACTION_DELBA; |
| 131 | params = (u16)(initiator << 11); /* bit 11 initiator */ |
| 132 | params |= (u16)(tid << 12); /* bit 15:12 TID number */ |
| 133 | |
| 134 | mgmt->u.action.u.delba.params = cpu_to_le16(params); |
| 135 | mgmt->u.action.u.delba.reason_code = cpu_to_le16(reason_code); |
| 136 | |
Johannes Berg | 62ae67b | 2009-11-18 18:42:05 +0100 | [diff] [blame] | 137 | ieee80211_tx_skb(sdata, skb); |
Johannes Berg | 44d414d | 2008-09-08 17:44:28 +0200 | [diff] [blame] | 138 | } |
| 139 | |
Johannes Berg | de1ede7 | 2008-09-09 14:42:50 +0200 | [diff] [blame] | 140 | void ieee80211_process_delba(struct ieee80211_sub_if_data *sdata, |
| 141 | struct sta_info *sta, |
| 142 | struct ieee80211_mgmt *mgmt, size_t len) |
| 143 | { |
Johannes Berg | de1ede7 | 2008-09-09 14:42:50 +0200 | [diff] [blame] | 144 | u16 tid, params; |
| 145 | u16 initiator; |
Johannes Berg | de1ede7 | 2008-09-09 14:42:50 +0200 | [diff] [blame] | 146 | |
| 147 | params = le16_to_cpu(mgmt->u.action.u.delba.params); |
| 148 | tid = (params & IEEE80211_DELBA_PARAM_TID_MASK) >> 12; |
| 149 | initiator = (params & IEEE80211_DELBA_PARAM_INITIATOR_MASK) >> 11; |
| 150 | |
| 151 | #ifdef CONFIG_MAC80211_HT_DEBUG |
| 152 | if (net_ratelimit()) |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 153 | printk(KERN_DEBUG "delba from %pM (%s) tid %d reason code %d\n", |
| 154 | mgmt->sa, initiator ? "initiator" : "recipient", tid, |
Johannes Berg | 372362a | 2009-10-29 10:09:28 +0100 | [diff] [blame] | 155 | le16_to_cpu(mgmt->u.action.u.delba.reason_code)); |
Johannes Berg | de1ede7 | 2008-09-09 14:42:50 +0200 | [diff] [blame] | 156 | #endif /* CONFIG_MAC80211_HT_DEBUG */ |
| 157 | |
| 158 | if (initiator == WLAN_BACK_INITIATOR) |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 159 | ieee80211_sta_stop_rx_ba_session(sdata, sta->sta.addr, tid, |
Johannes Berg | de1ede7 | 2008-09-09 14:42:50 +0200 | [diff] [blame] | 160 | WLAN_BACK_INITIATOR, 0); |
| 161 | else { /* WLAN_BACK_RECIPIENT */ |
| 162 | spin_lock_bh(&sta->lock); |
Johannes Berg | 827d42c | 2009-11-22 12:28:41 +0100 | [diff] [blame] | 163 | if (sta->ampdu_mlme.tid_state_tx[tid] & HT_ADDBA_REQUESTED_MSK) |
| 164 | ___ieee80211_stop_tx_ba_session(sta, tid, |
| 165 | WLAN_BACK_RECIPIENT); |
Johannes Berg | de1ede7 | 2008-09-09 14:42:50 +0200 | [diff] [blame] | 166 | spin_unlock_bh(&sta->lock); |
Johannes Berg | de1ede7 | 2008-09-09 14:42:50 +0200 | [diff] [blame] | 167 | } |
| 168 | } |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame^] | 169 | |
| 170 | int ieee80211_send_smps_action(struct ieee80211_sub_if_data *sdata, |
| 171 | enum ieee80211_smps_mode smps, const u8 *da, |
| 172 | const u8 *bssid) |
| 173 | { |
| 174 | struct ieee80211_local *local = sdata->local; |
| 175 | struct sk_buff *skb; |
| 176 | struct ieee80211_mgmt *action_frame; |
| 177 | |
| 178 | /* 27 = header + category + action + smps mode */ |
| 179 | skb = dev_alloc_skb(27 + local->hw.extra_tx_headroom); |
| 180 | if (!skb) |
| 181 | return -ENOMEM; |
| 182 | |
| 183 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 184 | action_frame = (void *)skb_put(skb, 27); |
| 185 | memcpy(action_frame->da, da, ETH_ALEN); |
| 186 | memcpy(action_frame->sa, sdata->dev->dev_addr, ETH_ALEN); |
| 187 | memcpy(action_frame->bssid, bssid, ETH_ALEN); |
| 188 | action_frame->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | |
| 189 | IEEE80211_STYPE_ACTION); |
| 190 | action_frame->u.action.category = WLAN_CATEGORY_HT; |
| 191 | action_frame->u.action.u.ht_smps.action = WLAN_HT_ACTION_SMPS; |
| 192 | switch (smps) { |
| 193 | case IEEE80211_SMPS_AUTOMATIC: |
| 194 | case IEEE80211_SMPS_NUM_MODES: |
| 195 | WARN_ON(1); |
| 196 | case IEEE80211_SMPS_OFF: |
| 197 | action_frame->u.action.u.ht_smps.smps_control = |
| 198 | WLAN_HT_SMPS_CONTROL_DISABLED; |
| 199 | break; |
| 200 | case IEEE80211_SMPS_STATIC: |
| 201 | action_frame->u.action.u.ht_smps.smps_control = |
| 202 | WLAN_HT_SMPS_CONTROL_STATIC; |
| 203 | break; |
| 204 | case IEEE80211_SMPS_DYNAMIC: |
| 205 | action_frame->u.action.u.ht_smps.smps_control = |
| 206 | WLAN_HT_SMPS_CONTROL_DYNAMIC; |
| 207 | break; |
| 208 | } |
| 209 | |
| 210 | /* we'll do more on status of this frame */ |
| 211 | IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS; |
| 212 | ieee80211_tx_skb(sdata, skb); |
| 213 | |
| 214 | return 0; |
| 215 | } |