Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
Wey-Yi Guy | 901069c | 2011-04-05 09:42:00 -0700 | [diff] [blame] | 3 | * Copyright(c) 2003 - 2011 Intel Corporation. All rights reserved. |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 4 | * |
| 5 | * Portions of this file are derived from the ipw3945 project, as well |
| 6 | * as portions of the ieee80211 subsystem header files. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify it |
| 9 | * under the terms of version 2 of the GNU General Public License as |
| 10 | * published by the Free Software Foundation. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 13 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 14 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 15 | * more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License along with |
| 18 | * this program; if not, write to the Free Software Foundation, Inc., |
| 19 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA |
| 20 | * |
| 21 | * The full GNU General Public License is included in this distribution in the |
| 22 | * file called LICENSE. |
| 23 | * |
| 24 | * Contact Information: |
Winkler, Tomas | 759ef89 | 2008-12-09 11:28:58 -0800 | [diff] [blame] | 25 | * Intel Linux Wireless <ilw@linux.intel.com> |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 26 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 27 | * |
| 28 | *****************************************************************************/ |
| 29 | |
| 30 | #include <net/mac80211.h> |
Tomas Winkler | 947b13a | 2008-04-16 16:34:48 -0700 | [diff] [blame] | 31 | #include <linux/etherdevice.h> |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 32 | #include <linux/sched.h> |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 33 | #include <linux/lockdep.h> |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 34 | |
Tomas Winkler | 3e0d4cb | 2008-04-24 11:55:38 -0700 | [diff] [blame] | 35 | #include "iwl-dev.h" |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 36 | #include "iwl-core.h" |
| 37 | #include "iwl-sta.h" |
Emmanuel Grumbach | bdfbf09 | 2011-07-08 08:46:16 -0700 | [diff] [blame] | 38 | #include "iwl-trans.h" |
Don Fry | 5c3d29f | 2011-07-08 08:46:29 -0700 | [diff] [blame] | 39 | #include "iwl-agn.h" |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 40 | |
Reinette Chatre | 1fa97aa | 2010-01-22 14:22:48 -0800 | [diff] [blame] | 41 | /* priv->sta_lock must be held */ |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 42 | static void iwl_sta_ucode_activate(struct iwl_priv *priv, u8 sta_id) |
| 43 | { |
Reinette Chatre | 1fa97aa | 2010-01-22 14:22:48 -0800 | [diff] [blame] | 44 | |
| 45 | if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE)) |
| 46 | IWL_ERR(priv, "ACTIVATE a non DRIVER active station id %u addr %pM\n", |
| 47 | sta_id, priv->stations[sta_id].sta.sta.addr); |
| 48 | |
| 49 | if (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE) { |
| 50 | IWL_DEBUG_ASSOC(priv, |
| 51 | "STA id %u addr %pM already present in uCode (according to driver)\n", |
| 52 | sta_id, priv->stations[sta_id].sta.sta.addr); |
| 53 | } else { |
| 54 | priv->stations[sta_id].used |= IWL_STA_UCODE_ACTIVE; |
| 55 | IWL_DEBUG_ASSOC(priv, "Added STA id %u addr %pM to uCode\n", |
| 56 | sta_id, priv->stations[sta_id].sta.sta.addr); |
| 57 | } |
| 58 | } |
| 59 | |
Johannes Berg | 09034cb | 2010-06-14 08:32:38 -0700 | [diff] [blame] | 60 | static int iwl_process_add_sta_resp(struct iwl_priv *priv, |
| 61 | struct iwl_addsta_cmd *addsta, |
| 62 | struct iwl_rx_packet *pkt, |
| 63 | bool sync) |
Reinette Chatre | 1fa97aa | 2010-01-22 14:22:48 -0800 | [diff] [blame] | 64 | { |
| 65 | u8 sta_id = addsta->sta.sta_id; |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 66 | unsigned long flags; |
Johannes Berg | 09034cb | 2010-06-14 08:32:38 -0700 | [diff] [blame] | 67 | int ret = -EIO; |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 68 | |
Reinette Chatre | 1fa97aa | 2010-01-22 14:22:48 -0800 | [diff] [blame] | 69 | if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) { |
| 70 | IWL_ERR(priv, "Bad return from REPLY_ADD_STA (0x%08X)\n", |
| 71 | pkt->hdr.flags); |
Johannes Berg | 09034cb | 2010-06-14 08:32:38 -0700 | [diff] [blame] | 72 | return ret; |
Reinette Chatre | 1fa97aa | 2010-01-22 14:22:48 -0800 | [diff] [blame] | 73 | } |
| 74 | |
| 75 | IWL_DEBUG_INFO(priv, "Processing response for adding station %u\n", |
| 76 | sta_id); |
| 77 | |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 78 | spin_lock_irqsave(&priv->sta_lock, flags); |
| 79 | |
Reinette Chatre | 1fa97aa | 2010-01-22 14:22:48 -0800 | [diff] [blame] | 80 | switch (pkt->u.add_sta.status) { |
| 81 | case ADD_STA_SUCCESS_MSK: |
| 82 | IWL_DEBUG_INFO(priv, "REPLY_ADD_STA PASSED\n"); |
| 83 | iwl_sta_ucode_activate(priv, sta_id); |
Johannes Berg | 09034cb | 2010-06-14 08:32:38 -0700 | [diff] [blame] | 84 | ret = 0; |
Reinette Chatre | 1fa97aa | 2010-01-22 14:22:48 -0800 | [diff] [blame] | 85 | break; |
| 86 | case ADD_STA_NO_ROOM_IN_TABLE: |
| 87 | IWL_ERR(priv, "Adding station %d failed, no room in table.\n", |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 88 | sta_id); |
Reinette Chatre | 1fa97aa | 2010-01-22 14:22:48 -0800 | [diff] [blame] | 89 | break; |
| 90 | case ADD_STA_NO_BLOCK_ACK_RESOURCE: |
| 91 | IWL_ERR(priv, "Adding station %d failed, no block ack resource.\n", |
| 92 | sta_id); |
| 93 | break; |
| 94 | case ADD_STA_MODIFY_NON_EXIST_STA: |
Frans Pop | 91dd6c2 | 2010-03-24 14:19:58 -0700 | [diff] [blame] | 95 | IWL_ERR(priv, "Attempting to modify non-existing station %d\n", |
Reinette Chatre | 1fa97aa | 2010-01-22 14:22:48 -0800 | [diff] [blame] | 96 | sta_id); |
| 97 | break; |
| 98 | default: |
| 99 | IWL_DEBUG_ASSOC(priv, "Received REPLY_ADD_STA:(0x%08X)\n", |
| 100 | pkt->u.add_sta.status); |
| 101 | break; |
| 102 | } |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 103 | |
Reinette Chatre | 1fa97aa | 2010-01-22 14:22:48 -0800 | [diff] [blame] | 104 | IWL_DEBUG_INFO(priv, "%s station id %u addr %pM\n", |
| 105 | priv->stations[sta_id].sta.mode == |
| 106 | STA_CONTROL_MODIFY_MSK ? "Modified" : "Added", |
| 107 | sta_id, priv->stations[sta_id].sta.sta.addr); |
| 108 | |
| 109 | /* |
| 110 | * XXX: The MAC address in the command buffer is often changed from |
| 111 | * the original sent to the device. That is, the MAC address |
Uwe Kleine-König | b595076 | 2010-11-01 15:38:34 -0400 | [diff] [blame] | 112 | * written to the command buffer often is not the same MAC address |
Reinette Chatre | 1fa97aa | 2010-01-22 14:22:48 -0800 | [diff] [blame] | 113 | * read from the command buffer when the command returns. This |
| 114 | * issue has not yet been resolved and this debugging is left to |
| 115 | * observe the problem. |
| 116 | */ |
| 117 | IWL_DEBUG_INFO(priv, "%s station according to cmd buffer %pM\n", |
| 118 | priv->stations[sta_id].sta.mode == |
| 119 | STA_CONTROL_MODIFY_MSK ? "Modified" : "Added", |
| 120 | addsta->sta.addr); |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 121 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
Johannes Berg | 09034cb | 2010-06-14 08:32:38 -0700 | [diff] [blame] | 122 | |
| 123 | return ret; |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 124 | } |
| 125 | |
Johannes Berg | 5696aea | 2009-07-24 11:13:06 -0700 | [diff] [blame] | 126 | static void iwl_add_sta_callback(struct iwl_priv *priv, |
| 127 | struct iwl_device_cmd *cmd, |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 128 | struct iwl_rx_packet *pkt) |
Tomas Winkler | 42132bc | 2008-05-29 16:35:03 +0800 | [diff] [blame] | 129 | { |
Tomas Winkler | 3257e5d | 2008-10-14 12:32:43 -0700 | [diff] [blame] | 130 | struct iwl_addsta_cmd *addsta = |
| 131 | (struct iwl_addsta_cmd *)cmd->cmd.payload; |
Tomas Winkler | 42132bc | 2008-05-29 16:35:03 +0800 | [diff] [blame] | 132 | |
Reinette Chatre | 1fa97aa | 2010-01-22 14:22:48 -0800 | [diff] [blame] | 133 | iwl_process_add_sta_resp(priv, addsta, pkt, false); |
Tomas Winkler | 42132bc | 2008-05-29 16:35:03 +0800 | [diff] [blame] | 134 | |
Tomas Winkler | 42132bc | 2008-05-29 16:35:03 +0800 | [diff] [blame] | 135 | } |
| 136 | |
Don Fry | 5c3d29f | 2011-07-08 08:46:29 -0700 | [diff] [blame] | 137 | static u16 iwlagn_build_addsta_hcmd(const struct iwl_addsta_cmd *cmd, u8 *data) |
| 138 | { |
| 139 | u16 size = (u16)sizeof(struct iwl_addsta_cmd); |
| 140 | struct iwl_addsta_cmd *addsta = (struct iwl_addsta_cmd *)data; |
| 141 | memcpy(addsta, cmd, size); |
| 142 | /* resrved in 5000 */ |
| 143 | addsta->rate_n_flags = cpu_to_le16(0); |
| 144 | return size; |
| 145 | } |
| 146 | |
Samuel Ortiz | 17f841c | 2009-01-23 13:45:20 -0800 | [diff] [blame] | 147 | int iwl_send_add_sta(struct iwl_priv *priv, |
Tomas Winkler | 133636d | 2008-05-05 10:22:34 +0800 | [diff] [blame] | 148 | struct iwl_addsta_cmd *sta, u8 flags) |
| 149 | { |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 150 | struct iwl_rx_packet *pkt = NULL; |
Tomas Winkler | 133636d | 2008-05-05 10:22:34 +0800 | [diff] [blame] | 151 | int ret = 0; |
| 152 | u8 data[sizeof(*sta)]; |
| 153 | struct iwl_host_cmd cmd = { |
| 154 | .id = REPLY_ADD_STA, |
Johannes Berg | c2acea8 | 2009-07-24 11:13:05 -0700 | [diff] [blame] | 155 | .flags = flags, |
Johannes Berg | 3fa5073 | 2011-05-04 07:50:38 -0700 | [diff] [blame] | 156 | .data = { data, }, |
Tomas Winkler | 133636d | 2008-05-05 10:22:34 +0800 | [diff] [blame] | 157 | }; |
Reinette Chatre | f875f51 | 2010-04-05 10:43:10 -0700 | [diff] [blame] | 158 | u8 sta_id __maybe_unused = sta->sta.sta_id; |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 159 | |
| 160 | IWL_DEBUG_INFO(priv, "Adding sta %u (%pM) %ssynchronously\n", |
| 161 | sta_id, sta->sta.addr, flags & CMD_ASYNC ? "a" : ""); |
Tomas Winkler | 133636d | 2008-05-05 10:22:34 +0800 | [diff] [blame] | 162 | |
Tomas Winkler | 42132bc | 2008-05-29 16:35:03 +0800 | [diff] [blame] | 163 | if (flags & CMD_ASYNC) |
Johannes Berg | c2acea8 | 2009-07-24 11:13:05 -0700 | [diff] [blame] | 164 | cmd.callback = iwl_add_sta_callback; |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 165 | else { |
Johannes Berg | c2acea8 | 2009-07-24 11:13:05 -0700 | [diff] [blame] | 166 | cmd.flags |= CMD_WANT_SKB; |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 167 | might_sleep(); |
| 168 | } |
Tomas Winkler | 133636d | 2008-05-05 10:22:34 +0800 | [diff] [blame] | 169 | |
Don Fry | 5c3d29f | 2011-07-08 08:46:29 -0700 | [diff] [blame] | 170 | cmd.len[0] = iwlagn_build_addsta_hcmd(sta, data); |
Emmanuel Grumbach | 41c5054 | 2011-07-11 08:51:04 +0300 | [diff] [blame] | 171 | ret = trans_send_cmd(&priv->trans, &cmd); |
Tomas Winkler | 133636d | 2008-05-05 10:22:34 +0800 | [diff] [blame] | 172 | |
| 173 | if (ret || (flags & CMD_ASYNC)) |
| 174 | return ret; |
| 175 | |
Tomas Winkler | 133636d | 2008-05-05 10:22:34 +0800 | [diff] [blame] | 176 | if (ret == 0) { |
Reinette Chatre | 1fa97aa | 2010-01-22 14:22:48 -0800 | [diff] [blame] | 177 | pkt = (struct iwl_rx_packet *)cmd.reply_page; |
Johannes Berg | 09034cb | 2010-06-14 08:32:38 -0700 | [diff] [blame] | 178 | ret = iwl_process_add_sta_resp(priv, sta, pkt, true); |
Tomas Winkler | 133636d | 2008-05-05 10:22:34 +0800 | [diff] [blame] | 179 | } |
Zhu Yi | 64a76b5 | 2009-12-10 14:37:21 -0800 | [diff] [blame] | 180 | iwl_free_pages(priv, cmd.reply_page); |
Tomas Winkler | 133636d | 2008-05-05 10:22:34 +0800 | [diff] [blame] | 181 | |
| 182 | return ret; |
| 183 | } |
Tomas Winkler | 947b13a | 2008-04-16 16:34:48 -0700 | [diff] [blame] | 184 | |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 185 | static void iwl_set_ht_add_station(struct iwl_priv *priv, u8 index, |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 186 | struct ieee80211_sta *sta, |
| 187 | struct iwl_rxon_context *ctx) |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 188 | { |
Johannes Berg | 238d781 | 2010-08-23 10:46:45 +0200 | [diff] [blame] | 189 | struct ieee80211_sta_ht_cap *sta_ht_inf = &sta->ht_cap; |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 190 | __le32 sta_flags; |
| 191 | u8 mimo_ps_mode; |
| 192 | |
Johannes Berg | 238d781 | 2010-08-23 10:46:45 +0200 | [diff] [blame] | 193 | if (!sta || !sta_ht_inf->ht_supported) |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 194 | goto done; |
| 195 | |
Tomas Winkler | 00c5ae2 | 2008-09-03 11:26:42 +0800 | [diff] [blame] | 196 | mimo_ps_mode = (sta_ht_inf->cap & IEEE80211_HT_CAP_SM_PS) >> 2; |
Wey-Yi Guy | 3f3e037 | 2009-10-30 14:36:17 -0700 | [diff] [blame] | 197 | IWL_DEBUG_ASSOC(priv, "spatial multiplexing power save mode: %s\n", |
| 198 | (mimo_ps_mode == WLAN_HT_CAP_SM_PS_STATIC) ? |
| 199 | "static" : |
| 200 | (mimo_ps_mode == WLAN_HT_CAP_SM_PS_DYNAMIC) ? |
| 201 | "dynamic" : "disabled"); |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 202 | |
| 203 | sta_flags = priv->stations[index].sta.station_flags; |
| 204 | |
| 205 | sta_flags &= ~(STA_FLG_RTS_MIMO_PROT_MSK | STA_FLG_MIMO_DIS_MSK); |
| 206 | |
| 207 | switch (mimo_ps_mode) { |
Tomas Winkler | 00c5ae2 | 2008-09-03 11:26:42 +0800 | [diff] [blame] | 208 | case WLAN_HT_CAP_SM_PS_STATIC: |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 209 | sta_flags |= STA_FLG_MIMO_DIS_MSK; |
| 210 | break; |
Tomas Winkler | 00c5ae2 | 2008-09-03 11:26:42 +0800 | [diff] [blame] | 211 | case WLAN_HT_CAP_SM_PS_DYNAMIC: |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 212 | sta_flags |= STA_FLG_RTS_MIMO_PROT_MSK; |
| 213 | break; |
Tomas Winkler | 00c5ae2 | 2008-09-03 11:26:42 +0800 | [diff] [blame] | 214 | case WLAN_HT_CAP_SM_PS_DISABLED: |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 215 | break; |
| 216 | default: |
Winkler, Tomas | 39aadf8 | 2008-12-19 10:37:32 +0800 | [diff] [blame] | 217 | IWL_WARN(priv, "Invalid MIMO PS mode %d\n", mimo_ps_mode); |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 218 | break; |
| 219 | } |
| 220 | |
| 221 | sta_flags |= cpu_to_le32( |
| 222 | (u32)sta_ht_inf->ampdu_factor << STA_FLG_MAX_AGG_SIZE_POS); |
| 223 | |
| 224 | sta_flags |= cpu_to_le32( |
| 225 | (u32)sta_ht_inf->ampdu_density << STA_FLG_AGG_MPDU_DENSITY_POS); |
| 226 | |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 227 | if (iwl_is_ht40_tx_allowed(priv, ctx, &sta->ht_cap)) |
Wey-Yi Guy | 7aafef1 | 2009-08-07 15:41:38 -0700 | [diff] [blame] | 228 | sta_flags |= STA_FLG_HT40_EN_MSK; |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 229 | else |
Wey-Yi Guy | 7aafef1 | 2009-08-07 15:41:38 -0700 | [diff] [blame] | 230 | sta_flags &= ~STA_FLG_HT40_EN_MSK; |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 231 | |
| 232 | priv->stations[index].sta.station_flags = sta_flags; |
| 233 | done: |
| 234 | return; |
| 235 | } |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 236 | |
| 237 | /** |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 238 | * iwl_prep_station - Prepare station information for addition |
| 239 | * |
| 240 | * should be called with sta_lock held |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 241 | */ |
Johannes Berg | a30e311 | 2010-09-22 18:02:01 +0200 | [diff] [blame] | 242 | u8 iwl_prep_station(struct iwl_priv *priv, struct iwl_rxon_context *ctx, |
| 243 | const u8 *addr, bool is_ap, struct ieee80211_sta *sta) |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 244 | { |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 245 | struct iwl_station_entry *station; |
Tomas Winkler | c587de0 | 2009-06-03 11:44:07 -0700 | [diff] [blame] | 246 | int i; |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 247 | u8 sta_id = IWL_INVALID_STATION; |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 248 | |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 249 | if (is_ap) |
Johannes Berg | 2995baf | 2010-08-23 10:46:42 +0200 | [diff] [blame] | 250 | sta_id = ctx->ap_sta_id; |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 251 | else if (is_broadcast_ether_addr(addr)) |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 252 | sta_id = ctx->bcast_sta_id; |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 253 | else |
Emmanuel Grumbach | d618912 | 2011-08-25 23:10:39 -0700 | [diff] [blame^] | 254 | for (i = IWL_STA_ID; |
| 255 | i < hw_params(priv).max_stations; i++) { |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 256 | if (!compare_ether_addr(priv->stations[i].sta.sta.addr, |
| 257 | addr)) { |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 258 | sta_id = i; |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 259 | break; |
| 260 | } |
| 261 | |
| 262 | if (!priv->stations[i].used && |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 263 | sta_id == IWL_INVALID_STATION) |
| 264 | sta_id = i; |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 265 | } |
| 266 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 267 | /* |
| 268 | * These two conditions have the same outcome, but keep them |
| 269 | * separate |
| 270 | */ |
| 271 | if (unlikely(sta_id == IWL_INVALID_STATION)) |
| 272 | return sta_id; |
| 273 | |
| 274 | /* |
| 275 | * uCode is not able to deal with multiple requests to add a |
| 276 | * station. Keep track if one is in progress so that we do not send |
| 277 | * another. |
| 278 | */ |
| 279 | if (priv->stations[sta_id].used & IWL_STA_UCODE_INPROGRESS) { |
| 280 | IWL_DEBUG_INFO(priv, "STA %d already in process of being added.\n", |
| 281 | sta_id); |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 282 | return sta_id; |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 283 | } |
| 284 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 285 | if ((priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE) && |
| 286 | (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE) && |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 287 | !compare_ether_addr(priv->stations[sta_id].sta.sta.addr, addr)) { |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 288 | IWL_DEBUG_ASSOC(priv, "STA %d (%pM) already added, not adding again.\n", |
| 289 | sta_id, addr); |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 290 | return sta_id; |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 291 | } |
| 292 | |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 293 | station = &priv->stations[sta_id]; |
| 294 | station->used = IWL_STA_DRIVER_ACTIVE; |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 295 | IWL_DEBUG_ASSOC(priv, "Add STA to driver ID %d: %pM\n", |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 296 | sta_id, addr); |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 297 | priv->num_stations++; |
| 298 | |
| 299 | /* Set up the REPLY_ADD_STA command to send to device */ |
| 300 | memset(&station->sta, 0, sizeof(struct iwl_addsta_cmd)); |
| 301 | memcpy(station->sta.sta.addr, addr, ETH_ALEN); |
| 302 | station->sta.mode = 0; |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 303 | station->sta.sta.sta_id = sta_id; |
Johannes Berg | 770e13b | 2010-08-23 10:46:44 +0200 | [diff] [blame] | 304 | station->sta.station_flags = ctx->station_flags; |
Johannes Berg | dcef732 | 2010-08-27 08:55:52 -0700 | [diff] [blame] | 305 | station->ctxid = ctx->ctxid; |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 306 | |
Johannes Berg | 238d781 | 2010-08-23 10:46:45 +0200 | [diff] [blame] | 307 | if (sta) { |
| 308 | struct iwl_station_priv_common *sta_priv; |
| 309 | |
| 310 | sta_priv = (void *)sta->drv_priv; |
| 311 | sta_priv->ctx = ctx; |
| 312 | } |
| 313 | |
Johannes Berg | 63d4176 | 2010-04-30 11:30:50 -0700 | [diff] [blame] | 314 | /* |
| 315 | * OK to call unconditionally, since local stations (IBSS BSSID |
Johannes Berg | 238d781 | 2010-08-23 10:46:45 +0200 | [diff] [blame] | 316 | * STA and broadcast STA) pass in a NULL sta, and mac80211 |
Johannes Berg | 63d4176 | 2010-04-30 11:30:50 -0700 | [diff] [blame] | 317 | * doesn't allow HT IBSS. |
| 318 | */ |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 319 | iwl_set_ht_add_station(priv, sta_id, sta, ctx); |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 320 | |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 321 | return sta_id; |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 322 | |
| 323 | } |
Tomas Winkler | 4f40e4d | 2008-05-15 13:54:04 +0800 | [diff] [blame] | 324 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 325 | #define STA_WAIT_TIMEOUT (HZ/2) |
| 326 | |
| 327 | /** |
| 328 | * iwl_add_station_common - |
| 329 | */ |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 330 | int iwl_add_station_common(struct iwl_priv *priv, struct iwl_rxon_context *ctx, |
| 331 | const u8 *addr, bool is_ap, |
Johannes Berg | 238d781 | 2010-08-23 10:46:45 +0200 | [diff] [blame] | 332 | struct ieee80211_sta *sta, u8 *sta_id_r) |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 333 | { |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 334 | unsigned long flags_spin; |
| 335 | int ret = 0; |
| 336 | u8 sta_id; |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 337 | struct iwl_addsta_cmd sta_cmd; |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 338 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 339 | *sta_id_r = 0; |
| 340 | spin_lock_irqsave(&priv->sta_lock, flags_spin); |
Johannes Berg | 238d781 | 2010-08-23 10:46:45 +0200 | [diff] [blame] | 341 | sta_id = iwl_prep_station(priv, ctx, addr, is_ap, sta); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 342 | if (sta_id == IWL_INVALID_STATION) { |
| 343 | IWL_ERR(priv, "Unable to prepare station %pM for addition\n", |
| 344 | addr); |
| 345 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
| 346 | return -EINVAL; |
| 347 | } |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 348 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 349 | /* |
| 350 | * uCode is not able to deal with multiple requests to add a |
| 351 | * station. Keep track if one is in progress so that we do not send |
| 352 | * another. |
| 353 | */ |
| 354 | if (priv->stations[sta_id].used & IWL_STA_UCODE_INPROGRESS) { |
| 355 | IWL_DEBUG_INFO(priv, "STA %d already in process of being added.\n", |
| 356 | sta_id); |
| 357 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
| 358 | return -EEXIST; |
| 359 | } |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 360 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 361 | if ((priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE) && |
| 362 | (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE)) { |
| 363 | IWL_DEBUG_ASSOC(priv, "STA %d (%pM) already added, not adding again.\n", |
| 364 | sta_id, addr); |
| 365 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
| 366 | return -EEXIST; |
| 367 | } |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 368 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 369 | priv->stations[sta_id].used |= IWL_STA_UCODE_INPROGRESS; |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 370 | memcpy(&sta_cmd, &priv->stations[sta_id].sta, sizeof(struct iwl_addsta_cmd)); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 371 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
| 372 | |
| 373 | /* Add station to device's station table */ |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 374 | ret = iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 375 | if (ret) { |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 376 | spin_lock_irqsave(&priv->sta_lock, flags_spin); |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 377 | IWL_ERR(priv, "Adding station %pM failed.\n", |
| 378 | priv->stations[sta_id].sta.sta.addr); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 379 | priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE; |
| 380 | priv->stations[sta_id].used &= ~IWL_STA_UCODE_INPROGRESS; |
| 381 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
| 382 | } |
| 383 | *sta_id_r = sta_id; |
| 384 | return ret; |
| 385 | } |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 386 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 387 | /** |
| 388 | * iwl_sta_ucode_deactivate - deactivate ucode status for a station |
| 389 | * |
| 390 | * priv->sta_lock must be held |
| 391 | */ |
| 392 | static void iwl_sta_ucode_deactivate(struct iwl_priv *priv, u8 sta_id) |
| 393 | { |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 394 | /* Ucode must be active and driver must be non active */ |
Reinette Chatre | d2e210a | 2010-04-23 10:33:33 -0700 | [diff] [blame] | 395 | if ((priv->stations[sta_id].used & |
| 396 | (IWL_STA_UCODE_ACTIVE | IWL_STA_DRIVER_ACTIVE)) != IWL_STA_UCODE_ACTIVE) |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 397 | IWL_ERR(priv, "removed non active STA %u\n", sta_id); |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 398 | |
| 399 | priv->stations[sta_id].used &= ~IWL_STA_UCODE_ACTIVE; |
| 400 | |
| 401 | memset(&priv->stations[sta_id], 0, sizeof(struct iwl_station_entry)); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 402 | IWL_DEBUG_ASSOC(priv, "Removed STA %u\n", sta_id); |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 403 | } |
| 404 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 405 | static int iwl_send_remove_station(struct iwl_priv *priv, |
Johannes Berg | 2b5f7a6 | 2010-11-10 18:25:48 -0800 | [diff] [blame] | 406 | const u8 *addr, int sta_id, |
| 407 | bool temporary) |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 408 | { |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 409 | struct iwl_rx_packet *pkt; |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 410 | int ret; |
| 411 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 412 | unsigned long flags_spin; |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 413 | struct iwl_rem_sta_cmd rm_sta_cmd; |
| 414 | |
| 415 | struct iwl_host_cmd cmd = { |
| 416 | .id = REPLY_REMOVE_STA, |
Johannes Berg | 3fa5073 | 2011-05-04 07:50:38 -0700 | [diff] [blame] | 417 | .len = { sizeof(struct iwl_rem_sta_cmd), }, |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 418 | .flags = CMD_SYNC, |
Johannes Berg | 3fa5073 | 2011-05-04 07:50:38 -0700 | [diff] [blame] | 419 | .data = { &rm_sta_cmd, }, |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 420 | }; |
| 421 | |
| 422 | memset(&rm_sta_cmd, 0, sizeof(rm_sta_cmd)); |
| 423 | rm_sta_cmd.num_sta = 1; |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 424 | memcpy(&rm_sta_cmd.addr, addr, ETH_ALEN); |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 425 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 426 | cmd.flags |= CMD_WANT_SKB; |
| 427 | |
Emmanuel Grumbach | 41c5054 | 2011-07-11 08:51:04 +0300 | [diff] [blame] | 428 | ret = trans_send_cmd(&priv->trans, &cmd); |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 429 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 430 | if (ret) |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 431 | return ret; |
| 432 | |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 433 | pkt = (struct iwl_rx_packet *)cmd.reply_page; |
| 434 | if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 435 | IWL_ERR(priv, "Bad return from REPLY_REMOVE_STA (0x%08X)\n", |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 436 | pkt->hdr.flags); |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 437 | ret = -EIO; |
| 438 | } |
| 439 | |
| 440 | if (!ret) { |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 441 | switch (pkt->u.rem_sta.status) { |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 442 | case REM_STA_SUCCESS_MSK: |
Johannes Berg | 2b5f7a6 | 2010-11-10 18:25:48 -0800 | [diff] [blame] | 443 | if (!temporary) { |
| 444 | spin_lock_irqsave(&priv->sta_lock, flags_spin); |
| 445 | iwl_sta_ucode_deactivate(priv, sta_id); |
| 446 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
| 447 | } |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 448 | IWL_DEBUG_ASSOC(priv, "REPLY_REMOVE_STA PASSED\n"); |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 449 | break; |
| 450 | default: |
| 451 | ret = -EIO; |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 452 | IWL_ERR(priv, "REPLY_REMOVE_STA failed\n"); |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 453 | break; |
| 454 | } |
| 455 | } |
Zhu Yi | 64a76b5 | 2009-12-10 14:37:21 -0800 | [diff] [blame] | 456 | iwl_free_pages(priv, cmd.reply_page); |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 457 | |
| 458 | return ret; |
| 459 | } |
Emmanuel Grumbach | be1f3ab6 | 2008-06-12 09:47:18 +0800 | [diff] [blame] | 460 | |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 461 | /** |
| 462 | * iwl_remove_station - Remove driver's knowledge of station. |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 463 | */ |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 464 | int iwl_remove_station(struct iwl_priv *priv, const u8 sta_id, |
| 465 | const u8 *addr) |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 466 | { |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 467 | unsigned long flags; |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 468 | |
| 469 | if (!iwl_is_ready(priv)) { |
| 470 | IWL_DEBUG_INFO(priv, |
Frans Pop | 91dd6c2 | 2010-03-24 14:19:58 -0700 | [diff] [blame] | 471 | "Unable to remove station %pM, device not ready.\n", |
Johannes Berg | c0222df | 2010-04-28 08:44:51 -0700 | [diff] [blame] | 472 | addr); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 473 | /* |
| 474 | * It is typical for stations to be removed when we are |
| 475 | * going down. Return success since device will be down |
| 476 | * soon anyway |
| 477 | */ |
| 478 | return 0; |
| 479 | } |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 480 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 481 | IWL_DEBUG_ASSOC(priv, "Removing STA from driver:%d %pM\n", |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 482 | sta_id, addr); |
| 483 | |
| 484 | if (WARN_ON(sta_id == IWL_INVALID_STATION)) |
| 485 | return -EINVAL; |
| 486 | |
| 487 | spin_lock_irqsave(&priv->sta_lock, flags); |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 488 | |
| 489 | if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE)) { |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 490 | IWL_DEBUG_INFO(priv, "Removing %pM but non DRIVER active\n", |
Johannes Berg | c0222df | 2010-04-28 08:44:51 -0700 | [diff] [blame] | 491 | addr); |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 492 | goto out_err; |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 493 | } |
| 494 | |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 495 | if (!(priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE)) { |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 496 | IWL_DEBUG_INFO(priv, "Removing %pM but non UCODE active\n", |
Johannes Berg | c0222df | 2010-04-28 08:44:51 -0700 | [diff] [blame] | 497 | addr); |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 498 | goto out_err; |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 499 | } |
| 500 | |
Johannes Berg | 1fa61b2 | 2010-04-28 08:44:52 -0700 | [diff] [blame] | 501 | if (priv->stations[sta_id].used & IWL_STA_LOCAL) { |
| 502 | kfree(priv->stations[sta_id].lq); |
| 503 | priv->stations[sta_id].lq = NULL; |
| 504 | } |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 505 | |
| 506 | priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE; |
| 507 | |
| 508 | priv->num_stations--; |
| 509 | |
Johannes Berg | 3e41ace | 2011-04-18 09:12:37 -0700 | [diff] [blame] | 510 | if (WARN_ON(priv->num_stations < 0)) |
| 511 | priv->num_stations = 0; |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 512 | |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 513 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 514 | |
Johannes Berg | 2b5f7a6 | 2010-11-10 18:25:48 -0800 | [diff] [blame] | 515 | return iwl_send_remove_station(priv, addr, sta_id, false); |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 516 | out_err: |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 517 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 518 | return -EINVAL; |
Tomas Winkler | 7a999bf | 2008-05-29 16:35:02 +0800 | [diff] [blame] | 519 | } |
Emmanuel Grumbach | 24e5c40 | 2008-06-30 17:23:03 +0800 | [diff] [blame] | 520 | |
Winkler, Tomas | 83dde8c | 2008-11-19 15:32:23 -0800 | [diff] [blame] | 521 | /** |
Johannes Berg | 2c810cc | 2010-04-29 00:53:29 -0700 | [diff] [blame] | 522 | * iwl_clear_ucode_stations - clear ucode station table bits |
| 523 | * |
| 524 | * This function clears all the bits in the driver indicating |
| 525 | * which stations are active in the ucode. Call when something |
| 526 | * other than explicit station management would cause this in |
| 527 | * the ucode, e.g. unassociated RXON. |
Winkler, Tomas | 83dde8c | 2008-11-19 15:32:23 -0800 | [diff] [blame] | 528 | */ |
Johannes Berg | dcef732 | 2010-08-27 08:55:52 -0700 | [diff] [blame] | 529 | void iwl_clear_ucode_stations(struct iwl_priv *priv, |
| 530 | struct iwl_rxon_context *ctx) |
Winkler, Tomas | 83dde8c | 2008-11-19 15:32:23 -0800 | [diff] [blame] | 531 | { |
Mohamed Abbas | 48676eb | 2009-03-11 11:17:59 -0700 | [diff] [blame] | 532 | int i; |
Reinette Chatre | 7e24619 | 2010-02-18 22:58:32 -0800 | [diff] [blame] | 533 | unsigned long flags_spin; |
| 534 | bool cleared = false; |
Winkler, Tomas | 83dde8c | 2008-11-19 15:32:23 -0800 | [diff] [blame] | 535 | |
Johannes Berg | 2c810cc | 2010-04-29 00:53:29 -0700 | [diff] [blame] | 536 | IWL_DEBUG_INFO(priv, "Clearing ucode stations in driver\n"); |
Mohamed Abbas | 48676eb | 2009-03-11 11:17:59 -0700 | [diff] [blame] | 537 | |
Reinette Chatre | 7e24619 | 2010-02-18 22:58:32 -0800 | [diff] [blame] | 538 | spin_lock_irqsave(&priv->sta_lock, flags_spin); |
Emmanuel Grumbach | d618912 | 2011-08-25 23:10:39 -0700 | [diff] [blame^] | 539 | for (i = 0; i < hw_params(priv).max_stations; i++) { |
Johannes Berg | dcef732 | 2010-08-27 08:55:52 -0700 | [diff] [blame] | 540 | if (ctx && ctx->ctxid != priv->stations[i].ctxid) |
| 541 | continue; |
| 542 | |
Johannes Berg | 2c810cc | 2010-04-29 00:53:29 -0700 | [diff] [blame] | 543 | if (priv->stations[i].used & IWL_STA_UCODE_ACTIVE) { |
| 544 | IWL_DEBUG_INFO(priv, "Clearing ucode active for station %d\n", i); |
| 545 | priv->stations[i].used &= ~IWL_STA_UCODE_ACTIVE; |
| 546 | cleared = true; |
Reinette Chatre | 7e24619 | 2010-02-18 22:58:32 -0800 | [diff] [blame] | 547 | } |
| 548 | } |
| 549 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
| 550 | |
| 551 | if (!cleared) |
| 552 | IWL_DEBUG_INFO(priv, "No active stations found to be cleared\n"); |
Winkler, Tomas | 83dde8c | 2008-11-19 15:32:23 -0800 | [diff] [blame] | 553 | } |
Reinette Chatre | 7e24619 | 2010-02-18 22:58:32 -0800 | [diff] [blame] | 554 | |
| 555 | /** |
| 556 | * iwl_restore_stations() - Restore driver known stations to device |
| 557 | * |
| 558 | * All stations considered active by driver, but not present in ucode, is |
| 559 | * restored. |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 560 | * |
| 561 | * Function sleeps. |
Reinette Chatre | 7e24619 | 2010-02-18 22:58:32 -0800 | [diff] [blame] | 562 | */ |
Johannes Berg | dcef732 | 2010-08-27 08:55:52 -0700 | [diff] [blame] | 563 | void iwl_restore_stations(struct iwl_priv *priv, struct iwl_rxon_context *ctx) |
Reinette Chatre | 7e24619 | 2010-02-18 22:58:32 -0800 | [diff] [blame] | 564 | { |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 565 | struct iwl_addsta_cmd sta_cmd; |
| 566 | struct iwl_link_quality_cmd lq; |
Reinette Chatre | 7e24619 | 2010-02-18 22:58:32 -0800 | [diff] [blame] | 567 | unsigned long flags_spin; |
| 568 | int i; |
| 569 | bool found = false; |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 570 | int ret; |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 571 | bool send_lq; |
Reinette Chatre | 7e24619 | 2010-02-18 22:58:32 -0800 | [diff] [blame] | 572 | |
| 573 | if (!iwl_is_ready(priv)) { |
| 574 | IWL_DEBUG_INFO(priv, "Not ready yet, not restoring any stations.\n"); |
| 575 | return; |
| 576 | } |
| 577 | |
| 578 | IWL_DEBUG_ASSOC(priv, "Restoring all known stations ... start.\n"); |
| 579 | spin_lock_irqsave(&priv->sta_lock, flags_spin); |
Emmanuel Grumbach | d618912 | 2011-08-25 23:10:39 -0700 | [diff] [blame^] | 580 | for (i = 0; i < hw_params(priv).max_stations; i++) { |
Johannes Berg | dcef732 | 2010-08-27 08:55:52 -0700 | [diff] [blame] | 581 | if (ctx->ctxid != priv->stations[i].ctxid) |
| 582 | continue; |
Reinette Chatre | 7e24619 | 2010-02-18 22:58:32 -0800 | [diff] [blame] | 583 | if ((priv->stations[i].used & IWL_STA_DRIVER_ACTIVE) && |
| 584 | !(priv->stations[i].used & IWL_STA_UCODE_ACTIVE)) { |
| 585 | IWL_DEBUG_ASSOC(priv, "Restoring sta %pM\n", |
| 586 | priv->stations[i].sta.sta.addr); |
| 587 | priv->stations[i].sta.mode = 0; |
| 588 | priv->stations[i].used |= IWL_STA_UCODE_INPROGRESS; |
| 589 | found = true; |
| 590 | } |
| 591 | } |
| 592 | |
Emmanuel Grumbach | d618912 | 2011-08-25 23:10:39 -0700 | [diff] [blame^] | 593 | for (i = 0; i < hw_params(priv).max_stations; i++) { |
Reinette Chatre | 7e24619 | 2010-02-18 22:58:32 -0800 | [diff] [blame] | 594 | if ((priv->stations[i].used & IWL_STA_UCODE_INPROGRESS)) { |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 595 | memcpy(&sta_cmd, &priv->stations[i].sta, |
| 596 | sizeof(struct iwl_addsta_cmd)); |
| 597 | send_lq = false; |
| 598 | if (priv->stations[i].lq) { |
| 599 | memcpy(&lq, priv->stations[i].lq, |
| 600 | sizeof(struct iwl_link_quality_cmd)); |
| 601 | send_lq = true; |
| 602 | } |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 603 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 604 | ret = iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 605 | if (ret) { |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 606 | spin_lock_irqsave(&priv->sta_lock, flags_spin); |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 607 | IWL_ERR(priv, "Adding station %pM failed.\n", |
| 608 | priv->stations[i].sta.sta.addr); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 609 | priv->stations[i].used &= ~IWL_STA_DRIVER_ACTIVE; |
| 610 | priv->stations[i].used &= ~IWL_STA_UCODE_INPROGRESS; |
| 611 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
| 612 | } |
| 613 | /* |
| 614 | * Rate scaling has already been initialized, send |
| 615 | * current LQ command |
| 616 | */ |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 617 | if (send_lq) |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 618 | iwl_send_lq_cmd(priv, ctx, &lq, CMD_SYNC, true); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 619 | spin_lock_irqsave(&priv->sta_lock, flags_spin); |
Reinette Chatre | 7e24619 | 2010-02-18 22:58:32 -0800 | [diff] [blame] | 620 | priv->stations[i].used &= ~IWL_STA_UCODE_INPROGRESS; |
| 621 | } |
| 622 | } |
| 623 | |
| 624 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
| 625 | if (!found) |
| 626 | IWL_DEBUG_INFO(priv, "Restoring all known stations .... no stations to be restored.\n"); |
| 627 | else |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 628 | IWL_DEBUG_INFO(priv, "Restoring all known stations .... complete.\n"); |
Reinette Chatre | 7e24619 | 2010-02-18 22:58:32 -0800 | [diff] [blame] | 629 | } |
Winkler, Tomas | 83dde8c | 2008-11-19 15:32:23 -0800 | [diff] [blame] | 630 | |
Johannes Berg | 2b5f7a6 | 2010-11-10 18:25:48 -0800 | [diff] [blame] | 631 | void iwl_reprogram_ap_sta(struct iwl_priv *priv, struct iwl_rxon_context *ctx) |
| 632 | { |
| 633 | unsigned long flags; |
| 634 | int sta_id = ctx->ap_sta_id; |
| 635 | int ret; |
| 636 | struct iwl_addsta_cmd sta_cmd; |
| 637 | struct iwl_link_quality_cmd lq; |
| 638 | bool active; |
| 639 | |
| 640 | spin_lock_irqsave(&priv->sta_lock, flags); |
| 641 | if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE)) { |
| 642 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
| 643 | return; |
| 644 | } |
| 645 | |
| 646 | memcpy(&sta_cmd, &priv->stations[sta_id].sta, sizeof(sta_cmd)); |
| 647 | sta_cmd.mode = 0; |
| 648 | memcpy(&lq, priv->stations[sta_id].lq, sizeof(lq)); |
| 649 | |
| 650 | active = priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE; |
Wey-Yi Guy | 40b97c2 | 2010-11-17 14:17:53 -0800 | [diff] [blame] | 651 | priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE; |
Johannes Berg | 2b5f7a6 | 2010-11-10 18:25:48 -0800 | [diff] [blame] | 652 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
| 653 | |
| 654 | if (active) { |
| 655 | ret = iwl_send_remove_station( |
| 656 | priv, priv->stations[sta_id].sta.sta.addr, |
| 657 | sta_id, true); |
| 658 | if (ret) |
| 659 | IWL_ERR(priv, "failed to remove STA %pM (%d)\n", |
| 660 | priv->stations[sta_id].sta.sta.addr, ret); |
| 661 | } |
Wey-Yi Guy | 40b97c2 | 2010-11-17 14:17:53 -0800 | [diff] [blame] | 662 | spin_lock_irqsave(&priv->sta_lock, flags); |
| 663 | priv->stations[sta_id].used |= IWL_STA_DRIVER_ACTIVE; |
| 664 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
| 665 | |
Johannes Berg | 2b5f7a6 | 2010-11-10 18:25:48 -0800 | [diff] [blame] | 666 | ret = iwl_send_add_sta(priv, &sta_cmd, CMD_SYNC); |
| 667 | if (ret) |
| 668 | IWL_ERR(priv, "failed to re-add STA %pM (%d)\n", |
| 669 | priv->stations[sta_id].sta.sta.addr, ret); |
| 670 | iwl_send_lq_cmd(priv, ctx, &lq, CMD_SYNC, true); |
| 671 | } |
Johannes Berg | 2b5f7a6 | 2010-11-10 18:25:48 -0800 | [diff] [blame] | 672 | |
Johannes Berg | 5a3d988 | 2011-07-15 13:03:12 -0700 | [diff] [blame] | 673 | int iwl_get_free_ucode_key_offset(struct iwl_priv *priv) |
Emmanuel Grumbach | 80fb47a | 2008-04-14 21:16:08 -0700 | [diff] [blame] | 674 | { |
| 675 | int i; |
| 676 | |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 677 | for (i = 0; i < priv->sta_key_max_num; i++) |
Emmanuel Grumbach | 77bab60 | 2008-04-15 16:01:44 -0700 | [diff] [blame] | 678 | if (!test_and_set_bit(i, &priv->ucode_key_table)) |
Emmanuel Grumbach | 80fb47a | 2008-04-14 21:16:08 -0700 | [diff] [blame] | 679 | return i; |
| 680 | |
Tomas Winkler | 40a9a82 | 2008-11-25 23:29:03 +0200 | [diff] [blame] | 681 | return WEP_INVALID_OFFSET; |
Emmanuel Grumbach | 80fb47a | 2008-04-14 21:16:08 -0700 | [diff] [blame] | 682 | } |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 683 | |
Johannes Berg | a30e311 | 2010-09-22 18:02:01 +0200 | [diff] [blame] | 684 | void iwl_dealloc_bcast_stations(struct iwl_priv *priv) |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 685 | { |
Tomas Winkler | 9f58671 | 2008-11-12 13:14:05 -0800 | [diff] [blame] | 686 | unsigned long flags; |
Tomas Winkler | 9f58671 | 2008-11-12 13:14:05 -0800 | [diff] [blame] | 687 | int i; |
Tomas Winkler | 9f58671 | 2008-11-12 13:14:05 -0800 | [diff] [blame] | 688 | |
Tomas Winkler | 9f58671 | 2008-11-12 13:14:05 -0800 | [diff] [blame] | 689 | spin_lock_irqsave(&priv->sta_lock, flags); |
Emmanuel Grumbach | d618912 | 2011-08-25 23:10:39 -0700 | [diff] [blame^] | 690 | for (i = 0; i < hw_params(priv).max_stations; i++) { |
Johannes Berg | a30e311 | 2010-09-22 18:02:01 +0200 | [diff] [blame] | 691 | if (!(priv->stations[i].used & IWL_STA_BCAST)) |
| 692 | continue; |
Tomas Winkler | 9f58671 | 2008-11-12 13:14:05 -0800 | [diff] [blame] | 693 | |
Johannes Berg | a30e311 | 2010-09-22 18:02:01 +0200 | [diff] [blame] | 694 | priv->stations[i].used &= ~IWL_STA_UCODE_ACTIVE; |
| 695 | priv->num_stations--; |
Johannes Berg | 3e41ace | 2011-04-18 09:12:37 -0700 | [diff] [blame] | 696 | if (WARN_ON(priv->num_stations < 0)) |
| 697 | priv->num_stations = 0; |
Johannes Berg | a30e311 | 2010-09-22 18:02:01 +0200 | [diff] [blame] | 698 | kfree(priv->stations[i].lq); |
| 699 | priv->stations[i].lq = NULL; |
| 700 | } |
Tomas Winkler | 9f58671 | 2008-11-12 13:14:05 -0800 | [diff] [blame] | 701 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
Tomas Winkler | 9f58671 | 2008-11-12 13:14:05 -0800 | [diff] [blame] | 702 | } |
Emmanuel Grumbach | 7480513 | 2008-04-14 21:16:09 -0700 | [diff] [blame] | 703 | |
Tomas Winkler | 66c73db | 2008-04-15 16:01:40 -0700 | [diff] [blame] | 704 | #ifdef CONFIG_IWLWIFI_DEBUG |
| 705 | static void iwl_dump_lq_cmd(struct iwl_priv *priv, |
| 706 | struct iwl_link_quality_cmd *lq) |
| 707 | { |
| 708 | int i; |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 709 | IWL_DEBUG_RATE(priv, "lq station id 0x%x\n", lq->sta_id); |
| 710 | IWL_DEBUG_RATE(priv, "lq ant 0x%X 0x%X\n", |
Tomas Winkler | 66c73db | 2008-04-15 16:01:40 -0700 | [diff] [blame] | 711 | lq->general_params.single_stream_ant_msk, |
| 712 | lq->general_params.dual_stream_ant_msk); |
| 713 | |
| 714 | for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 715 | IWL_DEBUG_RATE(priv, "lq index %d 0x%X\n", |
Tomas Winkler | 66c73db | 2008-04-15 16:01:40 -0700 | [diff] [blame] | 716 | i, lq->rs_table[i].rate_n_flags); |
| 717 | } |
| 718 | #else |
| 719 | static inline void iwl_dump_lq_cmd(struct iwl_priv *priv, |
| 720 | struct iwl_link_quality_cmd *lq) |
| 721 | { |
| 722 | } |
| 723 | #endif |
| 724 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 725 | /** |
Reinette Chatre | 3bce606 | 2010-04-13 16:11:19 -0700 | [diff] [blame] | 726 | * is_lq_table_valid() - Test one aspect of LQ cmd for validity |
| 727 | * |
| 728 | * It sometimes happens when a HT rate has been in use and we |
| 729 | * loose connectivity with AP then mac80211 will first tell us that the |
| 730 | * current channel is not HT anymore before removing the station. In such a |
| 731 | * scenario the RXON flags will be updated to indicate we are not |
| 732 | * communicating HT anymore, but the LQ command may still contain HT rates. |
| 733 | * Test for this to prevent driver from sending LQ command between the time |
| 734 | * RXON flags are updated and when LQ command is updated. |
| 735 | */ |
| 736 | static bool is_lq_table_valid(struct iwl_priv *priv, |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 737 | struct iwl_rxon_context *ctx, |
Reinette Chatre | 3bce606 | 2010-04-13 16:11:19 -0700 | [diff] [blame] | 738 | struct iwl_link_quality_cmd *lq) |
| 739 | { |
| 740 | int i; |
Reinette Chatre | 3bce606 | 2010-04-13 16:11:19 -0700 | [diff] [blame] | 741 | |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 742 | if (ctx->ht.enabled) |
Reinette Chatre | 3bce606 | 2010-04-13 16:11:19 -0700 | [diff] [blame] | 743 | return true; |
| 744 | |
| 745 | IWL_DEBUG_INFO(priv, "Channel %u is not an HT channel\n", |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 746 | ctx->active.channel); |
Reinette Chatre | 3bce606 | 2010-04-13 16:11:19 -0700 | [diff] [blame] | 747 | for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) { |
| 748 | if (le32_to_cpu(lq->rs_table[i].rate_n_flags) & RATE_MCS_HT_MSK) { |
| 749 | IWL_DEBUG_INFO(priv, |
| 750 | "index %d of LQ expects HT channel\n", |
| 751 | i); |
| 752 | return false; |
| 753 | } |
| 754 | } |
| 755 | return true; |
| 756 | } |
| 757 | |
| 758 | /** |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 759 | * iwl_send_lq_cmd() - Send link quality command |
| 760 | * @init: This command is sent as part of station initialization right |
| 761 | * after station has been added. |
| 762 | * |
| 763 | * The link quality command is sent as the last step of station creation. |
| 764 | * This is the special case in which init is set and we call a callback in |
| 765 | * this case to clear the state indicating that station creation is in |
| 766 | * progress. |
| 767 | */ |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 768 | int iwl_send_lq_cmd(struct iwl_priv *priv, struct iwl_rxon_context *ctx, |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 769 | struct iwl_link_quality_cmd *lq, u8 flags, bool init) |
Tomas Winkler | 66c73db | 2008-04-15 16:01:40 -0700 | [diff] [blame] | 770 | { |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 771 | int ret = 0; |
| 772 | unsigned long flags_spin; |
| 773 | |
Tomas Winkler | 66c73db | 2008-04-15 16:01:40 -0700 | [diff] [blame] | 774 | struct iwl_host_cmd cmd = { |
| 775 | .id = REPLY_TX_LINK_QUALITY_CMD, |
Johannes Berg | 3fa5073 | 2011-05-04 07:50:38 -0700 | [diff] [blame] | 776 | .len = { sizeof(struct iwl_link_quality_cmd), }, |
Johannes Berg | c2acea8 | 2009-07-24 11:13:05 -0700 | [diff] [blame] | 777 | .flags = flags, |
Johannes Berg | 3fa5073 | 2011-05-04 07:50:38 -0700 | [diff] [blame] | 778 | .data = { lq, }, |
Tomas Winkler | 66c73db | 2008-04-15 16:01:40 -0700 | [diff] [blame] | 779 | }; |
| 780 | |
Johannes Berg | 76c3c69 | 2010-03-30 02:46:29 -0700 | [diff] [blame] | 781 | if (WARN_ON(lq->sta_id == IWL_INVALID_STATION)) |
Tomas Winkler | 66c73db | 2008-04-15 16:01:40 -0700 | [diff] [blame] | 782 | return -EINVAL; |
| 783 | |
Wey-Yi Guy | 40b97c2 | 2010-11-17 14:17:53 -0800 | [diff] [blame] | 784 | |
| 785 | spin_lock_irqsave(&priv->sta_lock, flags_spin); |
| 786 | if (!(priv->stations[lq->sta_id].used & IWL_STA_DRIVER_ACTIVE)) { |
| 787 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
| 788 | return -EINVAL; |
| 789 | } |
| 790 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
| 791 | |
Tomas Winkler | 3ac7f14 | 2008-07-21 02:40:14 +0300 | [diff] [blame] | 792 | iwl_dump_lq_cmd(priv, lq); |
Johannes Berg | 3e41ace | 2011-04-18 09:12:37 -0700 | [diff] [blame] | 793 | if (WARN_ON(init && (cmd.flags & CMD_ASYNC))) |
| 794 | return -EINVAL; |
Tomas Winkler | 66c73db | 2008-04-15 16:01:40 -0700 | [diff] [blame] | 795 | |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 796 | if (is_lq_table_valid(priv, ctx, lq)) |
Emmanuel Grumbach | 41c5054 | 2011-07-11 08:51:04 +0300 | [diff] [blame] | 797 | ret = trans_send_cmd(&priv->trans, &cmd); |
Reinette Chatre | 3bce606 | 2010-04-13 16:11:19 -0700 | [diff] [blame] | 798 | else |
| 799 | ret = -EINVAL; |
Reinette Chatre | d2e210a | 2010-04-23 10:33:33 -0700 | [diff] [blame] | 800 | |
| 801 | if (cmd.flags & CMD_ASYNC) |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 802 | return ret; |
Tomas Winkler | 66c73db | 2008-04-15 16:01:40 -0700 | [diff] [blame] | 803 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 804 | if (init) { |
Frans Pop | 91dd6c2 | 2010-03-24 14:19:58 -0700 | [diff] [blame] | 805 | IWL_DEBUG_INFO(priv, "init LQ command complete, clearing sta addition status for sta %d\n", |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 806 | lq->sta_id); |
| 807 | spin_lock_irqsave(&priv->sta_lock, flags_spin); |
| 808 | priv->stations[lq->sta_id].used &= ~IWL_STA_UCODE_INPROGRESS; |
| 809 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
| 810 | } |
Reinette Chatre | d2e210a | 2010-04-23 10:33:33 -0700 | [diff] [blame] | 811 | return ret; |
Tomas Winkler | 66c73db | 2008-04-15 16:01:40 -0700 | [diff] [blame] | 812 | } |
Tomas Winkler | 66c73db | 2008-04-15 16:01:40 -0700 | [diff] [blame] | 813 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 814 | int iwl_mac_sta_remove(struct ieee80211_hw *hw, |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 815 | struct ieee80211_vif *vif, |
| 816 | struct ieee80211_sta *sta) |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 817 | { |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 818 | struct iwl_priv *priv = hw->priv; |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 819 | struct iwl_station_priv_common *sta_common = (void *)sta->drv_priv; |
| 820 | int ret; |
| 821 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 822 | IWL_DEBUG_INFO(priv, "received request to remove station %pM\n", |
| 823 | sta->addr); |
Reinette Chatre | da5ae1c | 2010-05-28 09:28:39 -0700 | [diff] [blame] | 824 | mutex_lock(&priv->mutex); |
| 825 | IWL_DEBUG_INFO(priv, "proceeding to remove station %pM\n", |
| 826 | sta->addr); |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 827 | ret = iwl_remove_station(priv, sta_common->sta_id, sta->addr); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 828 | if (ret) |
| 829 | IWL_ERR(priv, "Error removing station %pM\n", |
| 830 | sta->addr); |
Reinette Chatre | da5ae1c | 2010-05-28 09:28:39 -0700 | [diff] [blame] | 831 | mutex_unlock(&priv->mutex); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 832 | return ret; |
| 833 | } |