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