| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 1 | /****************************************************************************** | 
|  | 2 | * | 
|  | 3 | * GPL LICENSE SUMMARY | 
|  | 4 | * | 
|  | 5 | * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved. | 
|  | 6 | * | 
|  | 7 | * This program is free software; you can redistribute it and/or modify | 
|  | 8 | * it under the terms of version 2 of the GNU General Public License as | 
|  | 9 | * published by the Free Software Foundation. | 
|  | 10 | * | 
|  | 11 | * This program is distributed in the hope that it will be useful, but | 
|  | 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
|  | 14 | * General Public License for more details. | 
|  | 15 | * | 
|  | 16 | * You should have received a copy of the GNU General Public License | 
|  | 17 | * along with this program; if not, write to the Free Software | 
|  | 18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, | 
|  | 19 | * USA | 
|  | 20 | * | 
|  | 21 | * The full GNU General Public License is included in this distribution | 
|  | 22 | * in the file called LICENSE.GPL. | 
|  | 23 | * | 
|  | 24 | * Contact Information: | 
|  | 25 | *  Intel Linux Wireless <ilw@linux.intel.com> | 
|  | 26 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | 
|  | 27 | *****************************************************************************/ | 
|  | 28 |  | 
|  | 29 | #include <linux/kernel.h> | 
|  | 30 | #include <linux/module.h> | 
|  | 31 | #include <linux/etherdevice.h> | 
|  | 32 | #include <linux/sched.h> | 
|  | 33 | #include <linux/slab.h> | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 34 | #include <linux/types.h> | 
|  | 35 | #include <linux/lockdep.h> | 
|  | 36 | #include <linux/init.h> | 
|  | 37 | #include <linux/pci.h> | 
|  | 38 | #include <linux/dma-mapping.h> | 
|  | 39 | #include <linux/delay.h> | 
|  | 40 | #include <linux/skbuff.h> | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 41 | #include <net/mac80211.h> | 
|  | 42 |  | 
| Stanislaw Gruszka | 98613be | 2011-11-15 14:19:34 +0100 | [diff] [blame] | 43 | #include "common.h" | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 44 |  | 
| Stanislaw Gruszka | 17d4eca | 2011-12-23 08:13:43 +0100 | [diff] [blame] | 45 | int | 
|  | 46 | _il_poll_bit(struct il_priv *il, u32 addr, u32 bits, u32 mask, int timeout) | 
|  | 47 | { | 
|  | 48 | const int interval = 10; /* microseconds */ | 
|  | 49 | int t = 0; | 
|  | 50 |  | 
|  | 51 | do { | 
|  | 52 | if ((_il_rd(il, addr) & mask) == (bits & mask)) | 
|  | 53 | return t; | 
|  | 54 | udelay(interval); | 
|  | 55 | t += interval; | 
|  | 56 | } while (t < timeout); | 
|  | 57 |  | 
|  | 58 | return -ETIMEDOUT; | 
|  | 59 | } | 
|  | 60 | EXPORT_SYMBOL(_il_poll_bit); | 
|  | 61 |  | 
|  | 62 | void | 
|  | 63 | il_set_bit(struct il_priv *p, u32 r, u32 m) | 
|  | 64 | { | 
|  | 65 | unsigned long reg_flags; | 
|  | 66 |  | 
|  | 67 | spin_lock_irqsave(&p->reg_lock, reg_flags); | 
|  | 68 | _il_set_bit(p, r, m); | 
|  | 69 | spin_unlock_irqrestore(&p->reg_lock, reg_flags); | 
|  | 70 | } | 
|  | 71 | EXPORT_SYMBOL(il_set_bit); | 
|  | 72 |  | 
|  | 73 | void | 
|  | 74 | il_clear_bit(struct il_priv *p, u32 r, u32 m) | 
|  | 75 | { | 
|  | 76 | unsigned long reg_flags; | 
|  | 77 |  | 
|  | 78 | spin_lock_irqsave(&p->reg_lock, reg_flags); | 
|  | 79 | _il_clear_bit(p, r, m); | 
|  | 80 | spin_unlock_irqrestore(&p->reg_lock, reg_flags); | 
|  | 81 | } | 
|  | 82 | EXPORT_SYMBOL(il_clear_bit); | 
|  | 83 |  | 
|  | 84 | int | 
|  | 85 | _il_grab_nic_access(struct il_priv *il) | 
|  | 86 | { | 
|  | 87 | int ret; | 
|  | 88 | u32 val; | 
|  | 89 |  | 
|  | 90 | /* this bit wakes up the NIC */ | 
|  | 91 | _il_set_bit(il, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ); | 
|  | 92 |  | 
|  | 93 | /* | 
|  | 94 | * These bits say the device is running, and should keep running for | 
|  | 95 | * at least a short while (at least as long as MAC_ACCESS_REQ stays 1), | 
|  | 96 | * but they do not indicate that embedded SRAM is restored yet; | 
|  | 97 | * 3945 and 4965 have volatile SRAM, and must save/restore contents | 
|  | 98 | * to/from host DRAM when sleeping/waking for power-saving. | 
|  | 99 | * Each direction takes approximately 1/4 millisecond; with this | 
|  | 100 | * overhead, it's a good idea to grab and hold MAC_ACCESS_REQUEST if a | 
|  | 101 | * series of register accesses are expected (e.g. reading Event Log), | 
|  | 102 | * to keep device from sleeping. | 
|  | 103 | * | 
|  | 104 | * CSR_UCODE_DRV_GP1 register bit MAC_SLEEP == 0 indicates that | 
|  | 105 | * SRAM is okay/restored.  We don't check that here because this call | 
|  | 106 | * is just for hardware register access; but GP1 MAC_SLEEP check is a | 
|  | 107 | * good idea before accessing 3945/4965 SRAM (e.g. reading Event Log). | 
|  | 108 | * | 
|  | 109 | */ | 
|  | 110 | ret = | 
|  | 111 | _il_poll_bit(il, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_VAL_MAC_ACCESS_EN, | 
|  | 112 | (CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY | | 
|  | 113 | CSR_GP_CNTRL_REG_FLAG_GOING_TO_SLEEP), 15000); | 
|  | 114 | if (ret < 0) { | 
|  | 115 | val = _il_rd(il, CSR_GP_CNTRL); | 
|  | 116 | IL_ERR("MAC is in deep sleep!.  CSR_GP_CNTRL = 0x%08X\n", val); | 
|  | 117 | _il_wr(il, CSR_RESET, CSR_RESET_REG_FLAG_FORCE_NMI); | 
|  | 118 | return -EIO; | 
|  | 119 | } | 
|  | 120 |  | 
|  | 121 | return 0; | 
|  | 122 | } | 
|  | 123 | EXPORT_SYMBOL_GPL(_il_grab_nic_access); | 
|  | 124 |  | 
|  | 125 | int | 
|  | 126 | il_poll_bit(struct il_priv *il, u32 addr, u32 mask, int timeout) | 
|  | 127 | { | 
|  | 128 | const int interval = 10; /* microseconds */ | 
|  | 129 | int t = 0; | 
|  | 130 |  | 
|  | 131 | do { | 
|  | 132 | if ((il_rd(il, addr) & mask) == mask) | 
|  | 133 | return t; | 
|  | 134 | udelay(interval); | 
|  | 135 | t += interval; | 
|  | 136 | } while (t < timeout); | 
|  | 137 |  | 
|  | 138 | return -ETIMEDOUT; | 
|  | 139 | } | 
|  | 140 | EXPORT_SYMBOL(il_poll_bit); | 
|  | 141 |  | 
|  | 142 | u32 | 
|  | 143 | il_rd_prph(struct il_priv *il, u32 reg) | 
|  | 144 | { | 
|  | 145 | unsigned long reg_flags; | 
|  | 146 | u32 val; | 
|  | 147 |  | 
|  | 148 | spin_lock_irqsave(&il->reg_lock, reg_flags); | 
|  | 149 | _il_grab_nic_access(il); | 
|  | 150 | val = _il_rd_prph(il, reg); | 
|  | 151 | _il_release_nic_access(il); | 
|  | 152 | spin_unlock_irqrestore(&il->reg_lock, reg_flags); | 
|  | 153 | return val; | 
|  | 154 | } | 
|  | 155 | EXPORT_SYMBOL(il_rd_prph); | 
|  | 156 |  | 
|  | 157 | void | 
|  | 158 | il_wr_prph(struct il_priv *il, u32 addr, u32 val) | 
|  | 159 | { | 
|  | 160 | unsigned long reg_flags; | 
|  | 161 |  | 
|  | 162 | spin_lock_irqsave(&il->reg_lock, reg_flags); | 
|  | 163 | if (!_il_grab_nic_access(il)) { | 
|  | 164 | _il_wr_prph(il, addr, val); | 
|  | 165 | _il_release_nic_access(il); | 
|  | 166 | } | 
|  | 167 | spin_unlock_irqrestore(&il->reg_lock, reg_flags); | 
|  | 168 | } | 
|  | 169 | EXPORT_SYMBOL(il_wr_prph); | 
|  | 170 |  | 
|  | 171 | u32 | 
|  | 172 | il_read_targ_mem(struct il_priv *il, u32 addr) | 
|  | 173 | { | 
|  | 174 | unsigned long reg_flags; | 
|  | 175 | u32 value; | 
|  | 176 |  | 
|  | 177 | spin_lock_irqsave(&il->reg_lock, reg_flags); | 
|  | 178 | _il_grab_nic_access(il); | 
|  | 179 |  | 
|  | 180 | _il_wr(il, HBUS_TARG_MEM_RADDR, addr); | 
|  | 181 | rmb(); | 
|  | 182 | value = _il_rd(il, HBUS_TARG_MEM_RDAT); | 
|  | 183 |  | 
|  | 184 | _il_release_nic_access(il); | 
|  | 185 | spin_unlock_irqrestore(&il->reg_lock, reg_flags); | 
|  | 186 | return value; | 
|  | 187 | } | 
|  | 188 | EXPORT_SYMBOL(il_read_targ_mem); | 
|  | 189 |  | 
|  | 190 | void | 
|  | 191 | il_write_targ_mem(struct il_priv *il, u32 addr, u32 val) | 
|  | 192 | { | 
|  | 193 | unsigned long reg_flags; | 
|  | 194 |  | 
|  | 195 | spin_lock_irqsave(&il->reg_lock, reg_flags); | 
|  | 196 | if (!_il_grab_nic_access(il)) { | 
|  | 197 | _il_wr(il, HBUS_TARG_MEM_WADDR, addr); | 
|  | 198 | wmb(); | 
|  | 199 | _il_wr(il, HBUS_TARG_MEM_WDAT, val); | 
|  | 200 | _il_release_nic_access(il); | 
|  | 201 | } | 
|  | 202 | spin_unlock_irqrestore(&il->reg_lock, reg_flags); | 
|  | 203 | } | 
|  | 204 | EXPORT_SYMBOL(il_write_targ_mem); | 
|  | 205 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 206 | const char * | 
|  | 207 | il_get_cmd_string(u8 cmd) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 208 | { | 
|  | 209 | switch (cmd) { | 
|  | 210 | IL_CMD(N_ALIVE); | 
|  | 211 | IL_CMD(N_ERROR); | 
|  | 212 | IL_CMD(C_RXON); | 
|  | 213 | IL_CMD(C_RXON_ASSOC); | 
|  | 214 | IL_CMD(C_QOS_PARAM); | 
|  | 215 | IL_CMD(C_RXON_TIMING); | 
|  | 216 | IL_CMD(C_ADD_STA); | 
|  | 217 | IL_CMD(C_REM_STA); | 
|  | 218 | IL_CMD(C_WEPKEY); | 
|  | 219 | IL_CMD(N_3945_RX); | 
|  | 220 | IL_CMD(C_TX); | 
|  | 221 | IL_CMD(C_RATE_SCALE); | 
|  | 222 | IL_CMD(C_LEDS); | 
|  | 223 | IL_CMD(C_TX_LINK_QUALITY_CMD); | 
|  | 224 | IL_CMD(C_CHANNEL_SWITCH); | 
|  | 225 | IL_CMD(N_CHANNEL_SWITCH); | 
|  | 226 | IL_CMD(C_SPECTRUM_MEASUREMENT); | 
|  | 227 | IL_CMD(N_SPECTRUM_MEASUREMENT); | 
|  | 228 | IL_CMD(C_POWER_TBL); | 
|  | 229 | IL_CMD(N_PM_SLEEP); | 
|  | 230 | IL_CMD(N_PM_DEBUG_STATS); | 
|  | 231 | IL_CMD(C_SCAN); | 
|  | 232 | IL_CMD(C_SCAN_ABORT); | 
|  | 233 | IL_CMD(N_SCAN_START); | 
|  | 234 | IL_CMD(N_SCAN_RESULTS); | 
|  | 235 | IL_CMD(N_SCAN_COMPLETE); | 
|  | 236 | IL_CMD(N_BEACON); | 
|  | 237 | IL_CMD(C_TX_BEACON); | 
|  | 238 | IL_CMD(C_TX_PWR_TBL); | 
|  | 239 | IL_CMD(C_BT_CONFIG); | 
|  | 240 | IL_CMD(C_STATS); | 
|  | 241 | IL_CMD(N_STATS); | 
|  | 242 | IL_CMD(N_CARD_STATE); | 
|  | 243 | IL_CMD(N_MISSED_BEACONS); | 
|  | 244 | IL_CMD(C_CT_KILL_CONFIG); | 
|  | 245 | IL_CMD(C_SENSITIVITY); | 
|  | 246 | IL_CMD(C_PHY_CALIBRATION); | 
|  | 247 | IL_CMD(N_RX_PHY); | 
|  | 248 | IL_CMD(N_RX_MPDU); | 
|  | 249 | IL_CMD(N_RX); | 
|  | 250 | IL_CMD(N_COMPRESSED_BA); | 
|  | 251 | default: | 
|  | 252 | return "UNKNOWN"; | 
|  | 253 |  | 
|  | 254 | } | 
|  | 255 | } | 
|  | 256 | EXPORT_SYMBOL(il_get_cmd_string); | 
|  | 257 |  | 
|  | 258 | #define HOST_COMPLETE_TIMEOUT (HZ / 2) | 
|  | 259 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 260 | static void | 
|  | 261 | il_generic_cmd_callback(struct il_priv *il, struct il_device_cmd *cmd, | 
|  | 262 | struct il_rx_pkt *pkt) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 263 | { | 
|  | 264 | if (pkt->hdr.flags & IL_CMD_FAILED_MSK) { | 
|  | 265 | IL_ERR("Bad return from %s (0x%08X)\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 266 | il_get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 267 | return; | 
|  | 268 | } | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 269 | #ifdef CONFIG_IWLEGACY_DEBUG | 
|  | 270 | switch (cmd->hdr.cmd) { | 
|  | 271 | case C_TX_LINK_QUALITY_CMD: | 
|  | 272 | case C_SENSITIVITY: | 
|  | 273 | D_HC_DUMP("back from %s (0x%08X)\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 274 | il_get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 275 | break; | 
|  | 276 | default: | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 277 | D_HC("back from %s (0x%08X)\n", il_get_cmd_string(cmd->hdr.cmd), | 
|  | 278 | pkt->hdr.flags); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 279 | } | 
|  | 280 | #endif | 
|  | 281 | } | 
|  | 282 |  | 
|  | 283 | static int | 
|  | 284 | il_send_cmd_async(struct il_priv *il, struct il_host_cmd *cmd) | 
|  | 285 | { | 
|  | 286 | int ret; | 
|  | 287 |  | 
|  | 288 | BUG_ON(!(cmd->flags & CMD_ASYNC)); | 
|  | 289 |  | 
|  | 290 | /* An asynchronous command can not expect an SKB to be set. */ | 
|  | 291 | BUG_ON(cmd->flags & CMD_WANT_SKB); | 
|  | 292 |  | 
|  | 293 | /* Assign a generic callback if one is not provided */ | 
|  | 294 | if (!cmd->callback) | 
|  | 295 | cmd->callback = il_generic_cmd_callback; | 
|  | 296 |  | 
|  | 297 | if (test_bit(S_EXIT_PENDING, &il->status)) | 
|  | 298 | return -EBUSY; | 
|  | 299 |  | 
|  | 300 | ret = il_enqueue_hcmd(il, cmd); | 
|  | 301 | if (ret < 0) { | 
|  | 302 | IL_ERR("Error sending %s: enqueue_hcmd failed: %d\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 303 | il_get_cmd_string(cmd->id), ret); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 304 | return ret; | 
|  | 305 | } | 
|  | 306 | return 0; | 
|  | 307 | } | 
|  | 308 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 309 | int | 
|  | 310 | il_send_cmd_sync(struct il_priv *il, struct il_host_cmd *cmd) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 311 | { | 
|  | 312 | int cmd_idx; | 
|  | 313 | int ret; | 
|  | 314 |  | 
|  | 315 | lockdep_assert_held(&il->mutex); | 
|  | 316 |  | 
|  | 317 | BUG_ON(cmd->flags & CMD_ASYNC); | 
|  | 318 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 319 | /* A synchronous command can not have a callback set. */ | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 320 | BUG_ON(cmd->callback); | 
|  | 321 |  | 
|  | 322 | D_INFO("Attempting to send sync command %s\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 323 | il_get_cmd_string(cmd->id)); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 324 |  | 
|  | 325 | set_bit(S_HCMD_ACTIVE, &il->status); | 
|  | 326 | D_INFO("Setting HCMD_ACTIVE for command %s\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 327 | il_get_cmd_string(cmd->id)); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 328 |  | 
|  | 329 | cmd_idx = il_enqueue_hcmd(il, cmd); | 
|  | 330 | if (cmd_idx < 0) { | 
|  | 331 | ret = cmd_idx; | 
|  | 332 | IL_ERR("Error sending %s: enqueue_hcmd failed: %d\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 333 | il_get_cmd_string(cmd->id), ret); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 334 | goto out; | 
|  | 335 | } | 
|  | 336 |  | 
|  | 337 | ret = wait_event_timeout(il->wait_command_queue, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 338 | !test_bit(S_HCMD_ACTIVE, &il->status), | 
|  | 339 | HOST_COMPLETE_TIMEOUT); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 340 | if (!ret) { | 
|  | 341 | if (test_bit(S_HCMD_ACTIVE, &il->status)) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 342 | IL_ERR("Error sending %s: time out after %dms.\n", | 
|  | 343 | il_get_cmd_string(cmd->id), | 
|  | 344 | jiffies_to_msecs(HOST_COMPLETE_TIMEOUT)); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 345 |  | 
|  | 346 | clear_bit(S_HCMD_ACTIVE, &il->status); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 347 | D_INFO("Clearing HCMD_ACTIVE for command %s\n", | 
|  | 348 | il_get_cmd_string(cmd->id)); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 349 | ret = -ETIMEDOUT; | 
|  | 350 | goto cancel; | 
|  | 351 | } | 
|  | 352 | } | 
|  | 353 |  | 
|  | 354 | if (test_bit(S_RF_KILL_HW, &il->status)) { | 
|  | 355 | IL_ERR("Command %s aborted: RF KILL Switch\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 356 | il_get_cmd_string(cmd->id)); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 357 | ret = -ECANCELED; | 
|  | 358 | goto fail; | 
|  | 359 | } | 
|  | 360 | if (test_bit(S_FW_ERROR, &il->status)) { | 
|  | 361 | IL_ERR("Command %s failed: FW Error\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 362 | il_get_cmd_string(cmd->id)); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 363 | ret = -EIO; | 
|  | 364 | goto fail; | 
|  | 365 | } | 
|  | 366 | if ((cmd->flags & CMD_WANT_SKB) && !cmd->reply_page) { | 
|  | 367 | IL_ERR("Error: Response NULL in '%s'\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 368 | il_get_cmd_string(cmd->id)); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 369 | ret = -EIO; | 
|  | 370 | goto cancel; | 
|  | 371 | } | 
|  | 372 |  | 
|  | 373 | ret = 0; | 
|  | 374 | goto out; | 
|  | 375 |  | 
|  | 376 | cancel: | 
|  | 377 | if (cmd->flags & CMD_WANT_SKB) { | 
|  | 378 | /* | 
|  | 379 | * Cancel the CMD_WANT_SKB flag for the cmd in the | 
|  | 380 | * TX cmd queue. Otherwise in case the cmd comes | 
|  | 381 | * in later, it will possibly set an invalid | 
|  | 382 | * address (cmd->meta.source). | 
|  | 383 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 384 | il->txq[il->cmd_queue].meta[cmd_idx].flags &= ~CMD_WANT_SKB; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 385 | } | 
|  | 386 | fail: | 
|  | 387 | if (cmd->reply_page) { | 
|  | 388 | il_free_pages(il, cmd->reply_page); | 
|  | 389 | cmd->reply_page = 0; | 
|  | 390 | } | 
|  | 391 | out: | 
|  | 392 | return ret; | 
|  | 393 | } | 
|  | 394 | EXPORT_SYMBOL(il_send_cmd_sync); | 
|  | 395 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 396 | int | 
|  | 397 | il_send_cmd(struct il_priv *il, struct il_host_cmd *cmd) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 398 | { | 
|  | 399 | if (cmd->flags & CMD_ASYNC) | 
|  | 400 | return il_send_cmd_async(il, cmd); | 
|  | 401 |  | 
|  | 402 | return il_send_cmd_sync(il, cmd); | 
|  | 403 | } | 
|  | 404 | EXPORT_SYMBOL(il_send_cmd); | 
|  | 405 |  | 
|  | 406 | int | 
|  | 407 | il_send_cmd_pdu(struct il_priv *il, u8 id, u16 len, const void *data) | 
|  | 408 | { | 
|  | 409 | struct il_host_cmd cmd = { | 
|  | 410 | .id = id, | 
|  | 411 | .len = len, | 
|  | 412 | .data = data, | 
|  | 413 | }; | 
|  | 414 |  | 
|  | 415 | return il_send_cmd_sync(il, &cmd); | 
|  | 416 | } | 
|  | 417 | EXPORT_SYMBOL(il_send_cmd_pdu); | 
|  | 418 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 419 | int | 
|  | 420 | il_send_cmd_pdu_async(struct il_priv *il, u8 id, u16 len, const void *data, | 
| Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 421 | void (*callback) (struct il_priv *il, | 
|  | 422 | struct il_device_cmd *cmd, | 
|  | 423 | struct il_rx_pkt *pkt)) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 424 | { | 
|  | 425 | struct il_host_cmd cmd = { | 
|  | 426 | .id = id, | 
|  | 427 | .len = len, | 
|  | 428 | .data = data, | 
|  | 429 | }; | 
|  | 430 |  | 
|  | 431 | cmd.flags |= CMD_ASYNC; | 
|  | 432 | cmd.callback = callback; | 
|  | 433 |  | 
|  | 434 | return il_send_cmd_async(il, &cmd); | 
|  | 435 | } | 
|  | 436 | EXPORT_SYMBOL(il_send_cmd_pdu_async); | 
|  | 437 |  | 
|  | 438 | /* default: IL_LED_BLINK(0) using blinking idx table */ | 
|  | 439 | static int led_mode; | 
|  | 440 | module_param(led_mode, int, S_IRUGO); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 441 | MODULE_PARM_DESC(led_mode, | 
|  | 442 | "0=system default, " "1=On(RF On)/Off(RF Off), 2=blinking"); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 443 |  | 
|  | 444 | /* Throughput		OFF time(ms)	ON time (ms) | 
|  | 445 | *	>300			25		25 | 
|  | 446 | *	>200 to 300		40		40 | 
|  | 447 | *	>100 to 200		55		55 | 
|  | 448 | *	>70 to 100		65		65 | 
|  | 449 | *	>50 to 70		75		75 | 
|  | 450 | *	>20 to 50		85		85 | 
|  | 451 | *	>10 to 20		95		95 | 
|  | 452 | *	>5 to 10		110		110 | 
|  | 453 | *	>1 to 5			130		130 | 
|  | 454 | *	>0 to 1			167		167 | 
|  | 455 | *	<=0					SOLID ON | 
|  | 456 | */ | 
|  | 457 | static const struct ieee80211_tpt_blink il_blink[] = { | 
| Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 458 | {.throughput = 0,		.blink_time = 334}, | 
|  | 459 | {.throughput = 1 * 1024 - 1,	.blink_time = 260}, | 
|  | 460 | {.throughput = 5 * 1024 - 1,	.blink_time = 220}, | 
|  | 461 | {.throughput = 10 * 1024 - 1,	.blink_time = 190}, | 
|  | 462 | {.throughput = 20 * 1024 - 1,	.blink_time = 170}, | 
|  | 463 | {.throughput = 50 * 1024 - 1,	.blink_time = 150}, | 
|  | 464 | {.throughput = 70 * 1024 - 1,	.blink_time = 130}, | 
|  | 465 | {.throughput = 100 * 1024 - 1,	.blink_time = 110}, | 
|  | 466 | {.throughput = 200 * 1024 - 1,	.blink_time = 80}, | 
|  | 467 | {.throughput = 300 * 1024 - 1,	.blink_time = 50}, | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 468 | }; | 
|  | 469 |  | 
|  | 470 | /* | 
|  | 471 | * Adjust led blink rate to compensate on a MAC Clock difference on every HW | 
|  | 472 | * Led blink rate analysis showed an average deviation of 0% on 3945, | 
|  | 473 | * 5% on 4965 HW. | 
|  | 474 | * Need to compensate on the led on/off time per HW according to the deviation | 
|  | 475 | * to achieve the desired led frequency | 
|  | 476 | * The calculation is: (100-averageDeviation)/100 * blinkTime | 
|  | 477 | * For code efficiency the calculation will be: | 
|  | 478 | *     compensation = (100 - averageDeviation) * 64 / 100 | 
|  | 479 | *     NewBlinkTime = (compensation * BlinkTime) / 64 | 
|  | 480 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 481 | static inline u8 | 
|  | 482 | il_blink_compensation(struct il_priv *il, u8 time, u16 compensation) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 483 | { | 
|  | 484 | if (!compensation) { | 
|  | 485 | IL_ERR("undefined blink compensation: " | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 486 | "use pre-defined blinking time\n"); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 487 | return time; | 
|  | 488 | } | 
|  | 489 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 490 | return (u8) ((time * compensation) >> 6); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 491 | } | 
|  | 492 |  | 
|  | 493 | /* Set led pattern command */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 494 | static int | 
|  | 495 | il_led_cmd(struct il_priv *il, unsigned long on, unsigned long off) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 496 | { | 
|  | 497 | struct il_led_cmd led_cmd = { | 
|  | 498 | .id = IL_LED_LINK, | 
|  | 499 | .interval = IL_DEF_LED_INTRVL | 
|  | 500 | }; | 
|  | 501 | int ret; | 
|  | 502 |  | 
|  | 503 | if (!test_bit(S_READY, &il->status)) | 
|  | 504 | return -EBUSY; | 
|  | 505 |  | 
|  | 506 | if (il->blink_on == on && il->blink_off == off) | 
|  | 507 | return 0; | 
|  | 508 |  | 
|  | 509 | if (off == 0) { | 
|  | 510 | /* led is SOLID_ON */ | 
|  | 511 | on = IL_LED_SOLID; | 
|  | 512 | } | 
|  | 513 |  | 
|  | 514 | D_LED("Led blink time compensation=%u\n", | 
| Stanislaw Gruszka | 89ef1ed | 2012-02-03 17:31:59 +0100 | [diff] [blame] | 515 | il->cfg->led_compensation); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 516 | led_cmd.on = | 
|  | 517 | il_blink_compensation(il, on, | 
| Stanislaw Gruszka | 89ef1ed | 2012-02-03 17:31:59 +0100 | [diff] [blame] | 518 | il->cfg->led_compensation); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 519 | led_cmd.off = | 
|  | 520 | il_blink_compensation(il, off, | 
| Stanislaw Gruszka | 89ef1ed | 2012-02-03 17:31:59 +0100 | [diff] [blame] | 521 | il->cfg->led_compensation); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 522 |  | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 523 | ret = il->ops->led->cmd(il, &led_cmd); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 524 | if (!ret) { | 
|  | 525 | il->blink_on = on; | 
|  | 526 | il->blink_off = off; | 
|  | 527 | } | 
|  | 528 | return ret; | 
|  | 529 | } | 
|  | 530 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 531 | static void | 
|  | 532 | il_led_brightness_set(struct led_classdev *led_cdev, | 
|  | 533 | enum led_brightness brightness) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 534 | { | 
|  | 535 | struct il_priv *il = container_of(led_cdev, struct il_priv, led); | 
|  | 536 | unsigned long on = 0; | 
|  | 537 |  | 
|  | 538 | if (brightness > 0) | 
|  | 539 | on = IL_LED_SOLID; | 
|  | 540 |  | 
|  | 541 | il_led_cmd(il, on, 0); | 
|  | 542 | } | 
|  | 543 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 544 | static int | 
|  | 545 | il_led_blink_set(struct led_classdev *led_cdev, unsigned long *delay_on, | 
|  | 546 | unsigned long *delay_off) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 547 | { | 
|  | 548 | struct il_priv *il = container_of(led_cdev, struct il_priv, led); | 
|  | 549 |  | 
|  | 550 | return il_led_cmd(il, *delay_on, *delay_off); | 
|  | 551 | } | 
|  | 552 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 553 | void | 
|  | 554 | il_leds_init(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 555 | { | 
|  | 556 | int mode = led_mode; | 
|  | 557 | int ret; | 
|  | 558 |  | 
|  | 559 | if (mode == IL_LED_DEFAULT) | 
|  | 560 | mode = il->cfg->led_mode; | 
|  | 561 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 562 | il->led.name = | 
|  | 563 | kasprintf(GFP_KERNEL, "%s-led", wiphy_name(il->hw->wiphy)); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 564 | il->led.brightness_set = il_led_brightness_set; | 
|  | 565 | il->led.blink_set = il_led_blink_set; | 
|  | 566 | il->led.max_brightness = 1; | 
|  | 567 |  | 
|  | 568 | switch (mode) { | 
|  | 569 | case IL_LED_DEFAULT: | 
|  | 570 | WARN_ON(1); | 
|  | 571 | break; | 
|  | 572 | case IL_LED_BLINK: | 
|  | 573 | il->led.default_trigger = | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 574 | ieee80211_create_tpt_led_trigger(il->hw, | 
|  | 575 | IEEE80211_TPT_LEDTRIG_FL_CONNECTED, | 
|  | 576 | il_blink, | 
|  | 577 | ARRAY_SIZE(il_blink)); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 578 | break; | 
|  | 579 | case IL_LED_RF_STATE: | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 580 | il->led.default_trigger = ieee80211_get_radio_led_name(il->hw); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 581 | break; | 
|  | 582 | } | 
|  | 583 |  | 
|  | 584 | ret = led_classdev_register(&il->pci_dev->dev, &il->led); | 
|  | 585 | if (ret) { | 
|  | 586 | kfree(il->led.name); | 
|  | 587 | return; | 
|  | 588 | } | 
|  | 589 |  | 
|  | 590 | il->led_registered = true; | 
|  | 591 | } | 
|  | 592 | EXPORT_SYMBOL(il_leds_init); | 
|  | 593 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 594 | void | 
|  | 595 | il_leds_exit(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 596 | { | 
|  | 597 | if (!il->led_registered) | 
|  | 598 | return; | 
|  | 599 |  | 
|  | 600 | led_classdev_unregister(&il->led); | 
|  | 601 | kfree(il->led.name); | 
|  | 602 | } | 
|  | 603 | EXPORT_SYMBOL(il_leds_exit); | 
|  | 604 |  | 
|  | 605 | /************************** EEPROM BANDS **************************** | 
|  | 606 | * | 
|  | 607 | * The il_eeprom_band definitions below provide the mapping from the | 
|  | 608 | * EEPROM contents to the specific channel number supported for each | 
|  | 609 | * band. | 
|  | 610 | * | 
|  | 611 | * For example, il_priv->eeprom.band_3_channels[4] from the band_3 | 
|  | 612 | * definition below maps to physical channel 42 in the 5.2GHz spectrum. | 
|  | 613 | * The specific geography and calibration information for that channel | 
|  | 614 | * is contained in the eeprom map itself. | 
|  | 615 | * | 
|  | 616 | * During init, we copy the eeprom information and channel map | 
|  | 617 | * information into il->channel_info_24/52 and il->channel_map_24/52 | 
|  | 618 | * | 
|  | 619 | * channel_map_24/52 provides the idx in the channel_info array for a | 
|  | 620 | * given channel.  We have to have two separate maps as there is channel | 
|  | 621 | * overlap with the 2.4GHz and 5.2GHz spectrum as seen in band_1 and | 
|  | 622 | * band_2 | 
|  | 623 | * | 
|  | 624 | * A value of 0xff stored in the channel_map indicates that the channel | 
|  | 625 | * is not supported by the hardware at all. | 
|  | 626 | * | 
|  | 627 | * A value of 0xfe in the channel_map indicates that the channel is not | 
|  | 628 | * valid for Tx with the current hardware.  This means that | 
|  | 629 | * while the system can tune and receive on a given channel, it may not | 
|  | 630 | * be able to associate or transmit any frames on that | 
|  | 631 | * channel.  There is no corresponding channel information for that | 
|  | 632 | * entry. | 
|  | 633 | * | 
|  | 634 | *********************************************************************/ | 
|  | 635 |  | 
|  | 636 | /* 2.4 GHz */ | 
|  | 637 | const u8 il_eeprom_band_1[14] = { | 
|  | 638 | 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 | 
|  | 639 | }; | 
|  | 640 |  | 
|  | 641 | /* 5.2 GHz bands */ | 
|  | 642 | static const u8 il_eeprom_band_2[] = {	/* 4915-5080MHz */ | 
|  | 643 | 183, 184, 185, 187, 188, 189, 192, 196, 7, 8, 11, 12, 16 | 
|  | 644 | }; | 
|  | 645 |  | 
|  | 646 | static const u8 il_eeprom_band_3[] = {	/* 5170-5320MHz */ | 
|  | 647 | 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64 | 
|  | 648 | }; | 
|  | 649 |  | 
|  | 650 | static const u8 il_eeprom_band_4[] = {	/* 5500-5700MHz */ | 
|  | 651 | 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140 | 
|  | 652 | }; | 
|  | 653 |  | 
|  | 654 | static const u8 il_eeprom_band_5[] = {	/* 5725-5825MHz */ | 
|  | 655 | 145, 149, 153, 157, 161, 165 | 
|  | 656 | }; | 
|  | 657 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 658 | static const u8 il_eeprom_band_6[] = {	/* 2.4 ht40 channel */ | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 659 | 1, 2, 3, 4, 5, 6, 7 | 
|  | 660 | }; | 
|  | 661 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 662 | static const u8 il_eeprom_band_7[] = {	/* 5.2 ht40 channel */ | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 663 | 36, 44, 52, 60, 100, 108, 116, 124, 132, 149, 157 | 
|  | 664 | }; | 
|  | 665 |  | 
|  | 666 | /****************************************************************************** | 
|  | 667 | * | 
|  | 668 | * EEPROM related functions | 
|  | 669 | * | 
|  | 670 | ******************************************************************************/ | 
|  | 671 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 672 | static int | 
|  | 673 | il_eeprom_verify_signature(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 674 | { | 
|  | 675 | u32 gp = _il_rd(il, CSR_EEPROM_GP) & CSR_EEPROM_GP_VALID_MSK; | 
|  | 676 | int ret = 0; | 
|  | 677 |  | 
|  | 678 | D_EEPROM("EEPROM signature=0x%08x\n", gp); | 
|  | 679 | switch (gp) { | 
|  | 680 | case CSR_EEPROM_GP_GOOD_SIG_EEP_LESS_THAN_4K: | 
|  | 681 | case CSR_EEPROM_GP_GOOD_SIG_EEP_MORE_THAN_4K: | 
|  | 682 | break; | 
|  | 683 | default: | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 684 | IL_ERR("bad EEPROM signature," "EEPROM_GP=0x%08x\n", gp); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 685 | ret = -ENOENT; | 
|  | 686 | break; | 
|  | 687 | } | 
|  | 688 | return ret; | 
|  | 689 | } | 
|  | 690 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 691 | const u8 * | 
|  | 692 | il_eeprom_query_addr(const struct il_priv *il, size_t offset) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 693 | { | 
| Stanislaw Gruszka | 89ef1ed | 2012-02-03 17:31:59 +0100 | [diff] [blame] | 694 | BUG_ON(offset >= il->cfg->eeprom_size); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 695 | return &il->eeprom[offset]; | 
|  | 696 | } | 
|  | 697 | EXPORT_SYMBOL(il_eeprom_query_addr); | 
|  | 698 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 699 | u16 | 
| Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 700 | il_eeprom_query16(const struct il_priv *il, size_t offset) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 701 | { | 
|  | 702 | if (!il->eeprom) | 
|  | 703 | return 0; | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 704 | return (u16) il->eeprom[offset] | ((u16) il->eeprom[offset + 1] << 8); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 705 | } | 
|  | 706 | EXPORT_SYMBOL(il_eeprom_query16); | 
|  | 707 |  | 
|  | 708 | /** | 
|  | 709 | * il_eeprom_init - read EEPROM contents | 
|  | 710 | * | 
|  | 711 | * Load the EEPROM contents from adapter into il->eeprom | 
|  | 712 | * | 
|  | 713 | * NOTE:  This routine uses the non-debug IO access functions. | 
|  | 714 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 715 | int | 
|  | 716 | il_eeprom_init(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 717 | { | 
|  | 718 | __le16 *e; | 
|  | 719 | u32 gp = _il_rd(il, CSR_EEPROM_GP); | 
|  | 720 | int sz; | 
|  | 721 | int ret; | 
|  | 722 | u16 addr; | 
|  | 723 |  | 
|  | 724 | /* allocate eeprom */ | 
| Stanislaw Gruszka | 89ef1ed | 2012-02-03 17:31:59 +0100 | [diff] [blame] | 725 | sz = il->cfg->eeprom_size; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 726 | D_EEPROM("NVM size = %d\n", sz); | 
|  | 727 | il->eeprom = kzalloc(sz, GFP_KERNEL); | 
|  | 728 | if (!il->eeprom) { | 
|  | 729 | ret = -ENOMEM; | 
|  | 730 | goto alloc_err; | 
|  | 731 | } | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 732 | e = (__le16 *) il->eeprom; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 733 |  | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 734 | il->ops->lib->apm_ops.init(il); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 735 |  | 
|  | 736 | ret = il_eeprom_verify_signature(il); | 
|  | 737 | if (ret < 0) { | 
|  | 738 | IL_ERR("EEPROM not found, EEPROM_GP=0x%08x\n", gp); | 
|  | 739 | ret = -ENOENT; | 
|  | 740 | goto err; | 
|  | 741 | } | 
|  | 742 |  | 
|  | 743 | /* Make sure driver (instead of uCode) is allowed to read EEPROM */ | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 744 | ret = il->ops->lib->eeprom_ops.acquire_semaphore(il); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 745 | if (ret < 0) { | 
|  | 746 | IL_ERR("Failed to acquire EEPROM semaphore.\n"); | 
|  | 747 | ret = -ENOENT; | 
|  | 748 | goto err; | 
|  | 749 | } | 
|  | 750 |  | 
|  | 751 | /* eeprom is an array of 16bit values */ | 
|  | 752 | for (addr = 0; addr < sz; addr += sizeof(u16)) { | 
|  | 753 | u32 r; | 
|  | 754 |  | 
|  | 755 | _il_wr(il, CSR_EEPROM_REG, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 756 | CSR_EEPROM_REG_MSK_ADDR & (addr << 1)); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 757 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 758 | ret = | 
|  | 759 | _il_poll_bit(il, CSR_EEPROM_REG, | 
|  | 760 | CSR_EEPROM_REG_READ_VALID_MSK, | 
|  | 761 | CSR_EEPROM_REG_READ_VALID_MSK, | 
|  | 762 | IL_EEPROM_ACCESS_TIMEOUT); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 763 | if (ret < 0) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 764 | IL_ERR("Time out reading EEPROM[%d]\n", addr); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 765 | goto done; | 
|  | 766 | } | 
|  | 767 | r = _il_rd(il, CSR_EEPROM_REG); | 
|  | 768 | e[addr / 2] = cpu_to_le16(r >> 16); | 
|  | 769 | } | 
|  | 770 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 771 | D_EEPROM("NVM Type: %s, version: 0x%x\n", "EEPROM", | 
|  | 772 | il_eeprom_query16(il, EEPROM_VERSION)); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 773 |  | 
|  | 774 | ret = 0; | 
|  | 775 | done: | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 776 | il->ops->lib->eeprom_ops.release_semaphore(il); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 777 |  | 
|  | 778 | err: | 
|  | 779 | if (ret) | 
|  | 780 | il_eeprom_free(il); | 
|  | 781 | /* Reset chip to save power until we load uCode during "up". */ | 
|  | 782 | il_apm_stop(il); | 
|  | 783 | alloc_err: | 
|  | 784 | return ret; | 
|  | 785 | } | 
|  | 786 | EXPORT_SYMBOL(il_eeprom_init); | 
|  | 787 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 788 | void | 
|  | 789 | il_eeprom_free(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 790 | { | 
|  | 791 | kfree(il->eeprom); | 
|  | 792 | il->eeprom = NULL; | 
|  | 793 | } | 
|  | 794 | EXPORT_SYMBOL(il_eeprom_free); | 
|  | 795 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 796 | static void | 
|  | 797 | il_init_band_reference(const struct il_priv *il, int eep_band, | 
|  | 798 | int *eeprom_ch_count, | 
|  | 799 | const struct il_eeprom_channel **eeprom_ch_info, | 
| Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 800 | const u8 **eeprom_ch_idx) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 801 | { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 802 | u32 offset = | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 803 | il->ops->lib->eeprom_ops.regulatory_bands[eep_band - 1]; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 804 | switch (eep_band) { | 
|  | 805 | case 1:		/* 2.4GHz band */ | 
|  | 806 | *eeprom_ch_count = ARRAY_SIZE(il_eeprom_band_1); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 807 | *eeprom_ch_info = | 
|  | 808 | (struct il_eeprom_channel *)il_eeprom_query_addr(il, | 
|  | 809 | offset); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 810 | *eeprom_ch_idx = il_eeprom_band_1; | 
|  | 811 | break; | 
|  | 812 | case 2:		/* 4.9GHz band */ | 
|  | 813 | *eeprom_ch_count = ARRAY_SIZE(il_eeprom_band_2); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 814 | *eeprom_ch_info = | 
|  | 815 | (struct il_eeprom_channel *)il_eeprom_query_addr(il, | 
|  | 816 | offset); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 817 | *eeprom_ch_idx = il_eeprom_band_2; | 
|  | 818 | break; | 
|  | 819 | case 3:		/* 5.2GHz band */ | 
|  | 820 | *eeprom_ch_count = ARRAY_SIZE(il_eeprom_band_3); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 821 | *eeprom_ch_info = | 
|  | 822 | (struct il_eeprom_channel *)il_eeprom_query_addr(il, | 
|  | 823 | offset); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 824 | *eeprom_ch_idx = il_eeprom_band_3; | 
|  | 825 | break; | 
|  | 826 | case 4:		/* 5.5GHz band */ | 
|  | 827 | *eeprom_ch_count = ARRAY_SIZE(il_eeprom_band_4); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 828 | *eeprom_ch_info = | 
|  | 829 | (struct il_eeprom_channel *)il_eeprom_query_addr(il, | 
|  | 830 | offset); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 831 | *eeprom_ch_idx = il_eeprom_band_4; | 
|  | 832 | break; | 
|  | 833 | case 5:		/* 5.7GHz band */ | 
|  | 834 | *eeprom_ch_count = ARRAY_SIZE(il_eeprom_band_5); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 835 | *eeprom_ch_info = | 
|  | 836 | (struct il_eeprom_channel *)il_eeprom_query_addr(il, | 
|  | 837 | offset); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 838 | *eeprom_ch_idx = il_eeprom_band_5; | 
|  | 839 | break; | 
|  | 840 | case 6:		/* 2.4GHz ht40 channels */ | 
|  | 841 | *eeprom_ch_count = ARRAY_SIZE(il_eeprom_band_6); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 842 | *eeprom_ch_info = | 
|  | 843 | (struct il_eeprom_channel *)il_eeprom_query_addr(il, | 
|  | 844 | offset); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 845 | *eeprom_ch_idx = il_eeprom_band_6; | 
|  | 846 | break; | 
|  | 847 | case 7:		/* 5 GHz ht40 channels */ | 
|  | 848 | *eeprom_ch_count = ARRAY_SIZE(il_eeprom_band_7); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 849 | *eeprom_ch_info = | 
|  | 850 | (struct il_eeprom_channel *)il_eeprom_query_addr(il, | 
|  | 851 | offset); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 852 | *eeprom_ch_idx = il_eeprom_band_7; | 
|  | 853 | break; | 
|  | 854 | default: | 
|  | 855 | BUG(); | 
|  | 856 | } | 
|  | 857 | } | 
|  | 858 |  | 
|  | 859 | #define CHECK_AND_PRINT(x) ((eeprom_ch->flags & EEPROM_CHANNEL_##x) \ | 
|  | 860 | ? # x " " : "") | 
|  | 861 | /** | 
|  | 862 | * il_mod_ht40_chan_info - Copy ht40 channel info into driver's il. | 
|  | 863 | * | 
|  | 864 | * Does not set up a command, or touch hardware. | 
|  | 865 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 866 | static int | 
|  | 867 | il_mod_ht40_chan_info(struct il_priv *il, enum ieee80211_band band, u16 channel, | 
|  | 868 | const struct il_eeprom_channel *eeprom_ch, | 
|  | 869 | u8 clear_ht40_extension_channel) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 870 | { | 
|  | 871 | struct il_channel_info *ch_info; | 
|  | 872 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 873 | ch_info = | 
|  | 874 | (struct il_channel_info *)il_get_channel_info(il, band, channel); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 875 |  | 
|  | 876 | if (!il_is_channel_valid(ch_info)) | 
|  | 877 | return -1; | 
|  | 878 |  | 
|  | 879 | D_EEPROM("HT40 Ch. %d [%sGHz] %s%s%s%s%s(0x%02x %ddBm):" | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 880 | " Ad-Hoc %ssupported\n", ch_info->channel, | 
|  | 881 | il_is_channel_a_band(ch_info) ? "5.2" : "2.4", | 
|  | 882 | CHECK_AND_PRINT(IBSS), CHECK_AND_PRINT(ACTIVE), | 
|  | 883 | CHECK_AND_PRINT(RADAR), CHECK_AND_PRINT(WIDE), | 
|  | 884 | CHECK_AND_PRINT(DFS), eeprom_ch->flags, | 
|  | 885 | eeprom_ch->max_power_avg, | 
|  | 886 | ((eeprom_ch->flags & EEPROM_CHANNEL_IBSS) && | 
|  | 887 | !(eeprom_ch->flags & EEPROM_CHANNEL_RADAR)) ? "" : "not "); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 888 |  | 
|  | 889 | ch_info->ht40_eeprom = *eeprom_ch; | 
|  | 890 | ch_info->ht40_max_power_avg = eeprom_ch->max_power_avg; | 
|  | 891 | ch_info->ht40_flags = eeprom_ch->flags; | 
|  | 892 | if (eeprom_ch->flags & EEPROM_CHANNEL_VALID) | 
|  | 893 | ch_info->ht40_extension_channel &= | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 894 | ~clear_ht40_extension_channel; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 895 |  | 
|  | 896 | return 0; | 
|  | 897 | } | 
|  | 898 |  | 
|  | 899 | #define CHECK_AND_PRINT_I(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \ | 
|  | 900 | ? # x " " : "") | 
|  | 901 |  | 
|  | 902 | /** | 
|  | 903 | * il_init_channel_map - Set up driver's info for all possible channels | 
|  | 904 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 905 | int | 
|  | 906 | il_init_channel_map(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 907 | { | 
|  | 908 | int eeprom_ch_count = 0; | 
|  | 909 | const u8 *eeprom_ch_idx = NULL; | 
|  | 910 | const struct il_eeprom_channel *eeprom_ch_info = NULL; | 
|  | 911 | int band, ch; | 
|  | 912 | struct il_channel_info *ch_info; | 
|  | 913 |  | 
|  | 914 | if (il->channel_count) { | 
|  | 915 | D_EEPROM("Channel map already initialized.\n"); | 
|  | 916 | return 0; | 
|  | 917 | } | 
|  | 918 |  | 
|  | 919 | D_EEPROM("Initializing regulatory info from EEPROM\n"); | 
|  | 920 |  | 
|  | 921 | il->channel_count = | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 922 | ARRAY_SIZE(il_eeprom_band_1) + ARRAY_SIZE(il_eeprom_band_2) + | 
|  | 923 | ARRAY_SIZE(il_eeprom_band_3) + ARRAY_SIZE(il_eeprom_band_4) + | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 924 | ARRAY_SIZE(il_eeprom_band_5); | 
|  | 925 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 926 | D_EEPROM("Parsing data for %d channels.\n", il->channel_count); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 927 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 928 | il->channel_info = | 
|  | 929 | kzalloc(sizeof(struct il_channel_info) * il->channel_count, | 
|  | 930 | GFP_KERNEL); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 931 | if (!il->channel_info) { | 
|  | 932 | IL_ERR("Could not allocate channel_info\n"); | 
|  | 933 | il->channel_count = 0; | 
|  | 934 | return -ENOMEM; | 
|  | 935 | } | 
|  | 936 |  | 
|  | 937 | ch_info = il->channel_info; | 
|  | 938 |  | 
|  | 939 | /* Loop through the 5 EEPROM bands adding them in order to the | 
|  | 940 | * channel map we maintain (that contains additional information than | 
|  | 941 | * what just in the EEPROM) */ | 
|  | 942 | for (band = 1; band <= 5; band++) { | 
|  | 943 |  | 
|  | 944 | il_init_band_reference(il, band, &eeprom_ch_count, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 945 | &eeprom_ch_info, &eeprom_ch_idx); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 946 |  | 
|  | 947 | /* Loop through each band adding each of the channels */ | 
|  | 948 | for (ch = 0; ch < eeprom_ch_count; ch++) { | 
|  | 949 | ch_info->channel = eeprom_ch_idx[ch]; | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 950 | ch_info->band = | 
|  | 951 | (band == | 
|  | 952 | 1) ? IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 953 |  | 
|  | 954 | /* permanently store EEPROM's channel regulatory flags | 
|  | 955 | *   and max power in channel info database. */ | 
|  | 956 | ch_info->eeprom = eeprom_ch_info[ch]; | 
|  | 957 |  | 
|  | 958 | /* Copy the run-time flags so they are there even on | 
|  | 959 | * invalid channels */ | 
|  | 960 | ch_info->flags = eeprom_ch_info[ch].flags; | 
|  | 961 | /* First write that ht40 is not enabled, and then enable | 
|  | 962 | * one by one */ | 
|  | 963 | ch_info->ht40_extension_channel = | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 964 | IEEE80211_CHAN_NO_HT40; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 965 |  | 
|  | 966 | if (!(il_is_channel_valid(ch_info))) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 967 | D_EEPROM("Ch. %d Flags %x [%sGHz] - " | 
|  | 968 | "No traffic\n", ch_info->channel, | 
|  | 969 | ch_info->flags, | 
|  | 970 | il_is_channel_a_band(ch_info) ? "5.2" : | 
|  | 971 | "2.4"); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 972 | ch_info++; | 
|  | 973 | continue; | 
|  | 974 | } | 
|  | 975 |  | 
|  | 976 | /* Initialize regulatory-based run-time data */ | 
|  | 977 | ch_info->max_power_avg = ch_info->curr_txpow = | 
|  | 978 | eeprom_ch_info[ch].max_power_avg; | 
|  | 979 | ch_info->scan_power = eeprom_ch_info[ch].max_power_avg; | 
|  | 980 | ch_info->min_power = 0; | 
|  | 981 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 982 | D_EEPROM("Ch. %d [%sGHz] " "%s%s%s%s%s%s(0x%02x %ddBm):" | 
|  | 983 | " Ad-Hoc %ssupported\n", ch_info->channel, | 
|  | 984 | il_is_channel_a_band(ch_info) ? "5.2" : "2.4", | 
|  | 985 | CHECK_AND_PRINT_I(VALID), | 
|  | 986 | CHECK_AND_PRINT_I(IBSS), | 
|  | 987 | CHECK_AND_PRINT_I(ACTIVE), | 
|  | 988 | CHECK_AND_PRINT_I(RADAR), | 
|  | 989 | CHECK_AND_PRINT_I(WIDE), | 
|  | 990 | CHECK_AND_PRINT_I(DFS), | 
|  | 991 | eeprom_ch_info[ch].flags, | 
|  | 992 | eeprom_ch_info[ch].max_power_avg, | 
|  | 993 | ((eeprom_ch_info[ch]. | 
|  | 994 | flags & EEPROM_CHANNEL_IBSS) && | 
|  | 995 | !(eeprom_ch_info[ch]. | 
|  | 996 | flags & EEPROM_CHANNEL_RADAR)) ? "" : | 
|  | 997 | "not "); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 998 |  | 
|  | 999 | ch_info++; | 
|  | 1000 | } | 
|  | 1001 | } | 
|  | 1002 |  | 
|  | 1003 | /* Check if we do have HT40 channels */ | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 1004 | if (il->ops->lib->eeprom_ops.regulatory_bands[5] == | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1005 | EEPROM_REGULATORY_BAND_NO_HT40 && | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 1006 | il->ops->lib->eeprom_ops.regulatory_bands[6] == | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1007 | EEPROM_REGULATORY_BAND_NO_HT40) | 
|  | 1008 | return 0; | 
|  | 1009 |  | 
|  | 1010 | /* Two additional EEPROM bands for 2.4 and 5 GHz HT40 channels */ | 
|  | 1011 | for (band = 6; band <= 7; band++) { | 
|  | 1012 | enum ieee80211_band ieeeband; | 
|  | 1013 |  | 
|  | 1014 | il_init_band_reference(il, band, &eeprom_ch_count, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1015 | &eeprom_ch_info, &eeprom_ch_idx); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1016 |  | 
|  | 1017 | /* EEPROM band 6 is 2.4, band 7 is 5 GHz */ | 
|  | 1018 | ieeeband = | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1019 | (band == 6) ? IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1020 |  | 
|  | 1021 | /* Loop through each band adding each of the channels */ | 
|  | 1022 | for (ch = 0; ch < eeprom_ch_count; ch++) { | 
|  | 1023 | /* Set up driver's info for lower half */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1024 | il_mod_ht40_chan_info(il, ieeeband, eeprom_ch_idx[ch], | 
|  | 1025 | &eeprom_ch_info[ch], | 
|  | 1026 | IEEE80211_CHAN_NO_HT40PLUS); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1027 |  | 
|  | 1028 | /* Set up driver's info for upper half */ | 
|  | 1029 | il_mod_ht40_chan_info(il, ieeeband, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1030 | eeprom_ch_idx[ch] + 4, | 
|  | 1031 | &eeprom_ch_info[ch], | 
|  | 1032 | IEEE80211_CHAN_NO_HT40MINUS); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1033 | } | 
|  | 1034 | } | 
|  | 1035 |  | 
|  | 1036 | return 0; | 
|  | 1037 | } | 
|  | 1038 | EXPORT_SYMBOL(il_init_channel_map); | 
|  | 1039 |  | 
|  | 1040 | /* | 
|  | 1041 | * il_free_channel_map - undo allocations in il_init_channel_map | 
|  | 1042 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1043 | void | 
|  | 1044 | il_free_channel_map(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1045 | { | 
|  | 1046 | kfree(il->channel_info); | 
|  | 1047 | il->channel_count = 0; | 
|  | 1048 | } | 
|  | 1049 | EXPORT_SYMBOL(il_free_channel_map); | 
|  | 1050 |  | 
|  | 1051 | /** | 
|  | 1052 | * il_get_channel_info - Find driver's ilate channel info | 
|  | 1053 | * | 
|  | 1054 | * Based on band and channel number. | 
|  | 1055 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1056 | const struct il_channel_info * | 
|  | 1057 | il_get_channel_info(const struct il_priv *il, enum ieee80211_band band, | 
|  | 1058 | u16 channel) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1059 | { | 
|  | 1060 | int i; | 
|  | 1061 |  | 
|  | 1062 | switch (band) { | 
|  | 1063 | case IEEE80211_BAND_5GHZ: | 
|  | 1064 | for (i = 14; i < il->channel_count; i++) { | 
|  | 1065 | if (il->channel_info[i].channel == channel) | 
|  | 1066 | return &il->channel_info[i]; | 
|  | 1067 | } | 
|  | 1068 | break; | 
|  | 1069 | case IEEE80211_BAND_2GHZ: | 
|  | 1070 | if (channel >= 1 && channel <= 14) | 
|  | 1071 | return &il->channel_info[channel - 1]; | 
|  | 1072 | break; | 
|  | 1073 | default: | 
|  | 1074 | BUG(); | 
|  | 1075 | } | 
|  | 1076 |  | 
|  | 1077 | return NULL; | 
|  | 1078 | } | 
|  | 1079 | EXPORT_SYMBOL(il_get_channel_info); | 
|  | 1080 |  | 
|  | 1081 | /* | 
|  | 1082 | * Setting power level allows the card to go to sleep when not busy. | 
|  | 1083 | * | 
|  | 1084 | * We calculate a sleep command based on the required latency, which | 
|  | 1085 | * we get from mac80211. In order to handle thermal throttling, we can | 
|  | 1086 | * also use pre-defined power levels. | 
|  | 1087 | */ | 
|  | 1088 |  | 
|  | 1089 | /* | 
|  | 1090 | * This defines the old power levels. They are still used by default | 
|  | 1091 | * (level 1) and for thermal throttle (levels 3 through 5) | 
|  | 1092 | */ | 
|  | 1093 |  | 
|  | 1094 | struct il_power_vec_entry { | 
|  | 1095 | struct il_powertable_cmd cmd; | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1096 | u8 no_dtim;		/* number of skip dtim */ | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1097 | }; | 
|  | 1098 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1099 | static void | 
|  | 1100 | il_power_sleep_cam_cmd(struct il_priv *il, struct il_powertable_cmd *cmd) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1101 | { | 
|  | 1102 | memset(cmd, 0, sizeof(*cmd)); | 
|  | 1103 |  | 
|  | 1104 | if (il->power_data.pci_pm) | 
|  | 1105 | cmd->flags |= IL_POWER_PCI_PM_MSK; | 
|  | 1106 |  | 
|  | 1107 | D_POWER("Sleep command for CAM\n"); | 
|  | 1108 | } | 
|  | 1109 |  | 
|  | 1110 | static int | 
|  | 1111 | il_set_power(struct il_priv *il, struct il_powertable_cmd *cmd) | 
|  | 1112 | { | 
|  | 1113 | D_POWER("Sending power/sleep command\n"); | 
|  | 1114 | D_POWER("Flags value = 0x%08X\n", cmd->flags); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1115 | D_POWER("Tx timeout = %u\n", le32_to_cpu(cmd->tx_data_timeout)); | 
|  | 1116 | D_POWER("Rx timeout = %u\n", le32_to_cpu(cmd->rx_data_timeout)); | 
|  | 1117 | D_POWER("Sleep interval vector = { %d , %d , %d , %d , %d }\n", | 
|  | 1118 | le32_to_cpu(cmd->sleep_interval[0]), | 
|  | 1119 | le32_to_cpu(cmd->sleep_interval[1]), | 
|  | 1120 | le32_to_cpu(cmd->sleep_interval[2]), | 
|  | 1121 | le32_to_cpu(cmd->sleep_interval[3]), | 
|  | 1122 | le32_to_cpu(cmd->sleep_interval[4])); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1123 |  | 
|  | 1124 | return il_send_cmd_pdu(il, C_POWER_TBL, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1125 | sizeof(struct il_powertable_cmd), cmd); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1126 | } | 
|  | 1127 |  | 
|  | 1128 | int | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1129 | il_power_set_mode(struct il_priv *il, struct il_powertable_cmd *cmd, bool force) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1130 | { | 
|  | 1131 | int ret; | 
|  | 1132 | bool update_chains; | 
|  | 1133 |  | 
|  | 1134 | lockdep_assert_held(&il->mutex); | 
|  | 1135 |  | 
|  | 1136 | /* Don't update the RX chain when chain noise calibration is running */ | 
|  | 1137 | update_chains = il->chain_noise_data.state == IL_CHAIN_NOISE_DONE || | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1138 | il->chain_noise_data.state == IL_CHAIN_NOISE_ALIVE; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1139 |  | 
|  | 1140 | if (!memcmp(&il->power_data.sleep_cmd, cmd, sizeof(*cmd)) && !force) | 
|  | 1141 | return 0; | 
|  | 1142 |  | 
|  | 1143 | if (!il_is_ready_rf(il)) | 
|  | 1144 | return -EIO; | 
|  | 1145 |  | 
|  | 1146 | /* scan complete use sleep_power_next, need to be updated */ | 
|  | 1147 | memcpy(&il->power_data.sleep_cmd_next, cmd, sizeof(*cmd)); | 
|  | 1148 | if (test_bit(S_SCANNING, &il->status) && !force) { | 
|  | 1149 | D_INFO("Defer power set mode while scanning\n"); | 
|  | 1150 | return 0; | 
|  | 1151 | } | 
|  | 1152 |  | 
|  | 1153 | if (cmd->flags & IL_POWER_DRIVER_ALLOW_SLEEP_MSK) | 
|  | 1154 | set_bit(S_POWER_PMI, &il->status); | 
|  | 1155 |  | 
|  | 1156 | ret = il_set_power(il, cmd); | 
|  | 1157 | if (!ret) { | 
|  | 1158 | if (!(cmd->flags & IL_POWER_DRIVER_ALLOW_SLEEP_MSK)) | 
|  | 1159 | clear_bit(S_POWER_PMI, &il->status); | 
|  | 1160 |  | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 1161 | if (il->ops->lib->update_chain_flags && update_chains) | 
|  | 1162 | il->ops->lib->update_chain_flags(il); | 
|  | 1163 | else if (il->ops->lib->update_chain_flags) | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1164 | D_POWER("Cannot update the power, chain noise " | 
|  | 1165 | "calibration running: %d\n", | 
|  | 1166 | il->chain_noise_data.state); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1167 |  | 
|  | 1168 | memcpy(&il->power_data.sleep_cmd, cmd, sizeof(*cmd)); | 
|  | 1169 | } else | 
|  | 1170 | IL_ERR("set power fail, ret = %d", ret); | 
|  | 1171 |  | 
|  | 1172 | return ret; | 
|  | 1173 | } | 
|  | 1174 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1175 | int | 
|  | 1176 | il_power_update_mode(struct il_priv *il, bool force) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1177 | { | 
|  | 1178 | struct il_powertable_cmd cmd; | 
|  | 1179 |  | 
|  | 1180 | il_power_sleep_cam_cmd(il, &cmd); | 
|  | 1181 | return il_power_set_mode(il, &cmd, force); | 
|  | 1182 | } | 
|  | 1183 | EXPORT_SYMBOL(il_power_update_mode); | 
|  | 1184 |  | 
|  | 1185 | /* initialize to default */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1186 | void | 
|  | 1187 | il_power_initialize(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1188 | { | 
|  | 1189 | u16 lctl = il_pcie_link_ctl(il); | 
|  | 1190 |  | 
|  | 1191 | il->power_data.pci_pm = !(lctl & PCI_CFG_LINK_CTRL_VAL_L0S_EN); | 
|  | 1192 |  | 
|  | 1193 | il->power_data.debug_sleep_level_override = -1; | 
|  | 1194 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1195 | memset(&il->power_data.sleep_cmd, 0, sizeof(il->power_data.sleep_cmd)); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1196 | } | 
|  | 1197 | EXPORT_SYMBOL(il_power_initialize); | 
|  | 1198 |  | 
|  | 1199 | /* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after | 
|  | 1200 | * sending probe req.  This should be set long enough to hear probe responses | 
|  | 1201 | * from more than one AP.  */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1202 | #define IL_ACTIVE_DWELL_TIME_24    (30)	/* all times in msec */ | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1203 | #define IL_ACTIVE_DWELL_TIME_52    (20) | 
|  | 1204 |  | 
|  | 1205 | #define IL_ACTIVE_DWELL_FACTOR_24GHZ (3) | 
|  | 1206 | #define IL_ACTIVE_DWELL_FACTOR_52GHZ (2) | 
|  | 1207 |  | 
|  | 1208 | /* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel. | 
|  | 1209 | * Must be set longer than active dwell time. | 
|  | 1210 | * For the most reliable scan, set > AP beacon interval (typically 100msec). */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1211 | #define IL_PASSIVE_DWELL_TIME_24   (20)	/* all times in msec */ | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1212 | #define IL_PASSIVE_DWELL_TIME_52   (10) | 
|  | 1213 | #define IL_PASSIVE_DWELL_BASE      (100) | 
|  | 1214 | #define IL_CHANNEL_TUNE_TIME       5 | 
|  | 1215 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1216 | static int | 
|  | 1217 | il_send_scan_abort(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1218 | { | 
|  | 1219 | int ret; | 
|  | 1220 | struct il_rx_pkt *pkt; | 
|  | 1221 | struct il_host_cmd cmd = { | 
|  | 1222 | .id = C_SCAN_ABORT, | 
|  | 1223 | .flags = CMD_WANT_SKB, | 
|  | 1224 | }; | 
|  | 1225 |  | 
|  | 1226 | /* Exit instantly with error when device is not ready | 
|  | 1227 | * to receive scan abort command or it does not perform | 
|  | 1228 | * hardware scan currently */ | 
|  | 1229 | if (!test_bit(S_READY, &il->status) || | 
|  | 1230 | !test_bit(S_GEO_CONFIGURED, &il->status) || | 
|  | 1231 | !test_bit(S_SCAN_HW, &il->status) || | 
|  | 1232 | test_bit(S_FW_ERROR, &il->status) || | 
|  | 1233 | test_bit(S_EXIT_PENDING, &il->status)) | 
|  | 1234 | return -EIO; | 
|  | 1235 |  | 
|  | 1236 | ret = il_send_cmd_sync(il, &cmd); | 
|  | 1237 | if (ret) | 
|  | 1238 | return ret; | 
|  | 1239 |  | 
|  | 1240 | pkt = (struct il_rx_pkt *)cmd.reply_page; | 
|  | 1241 | if (pkt->u.status != CAN_ABORT_STATUS) { | 
|  | 1242 | /* The scan abort will return 1 for success or | 
|  | 1243 | * 2 for "failure".  A failure condition can be | 
|  | 1244 | * due to simply not being in an active scan which | 
|  | 1245 | * can occur if we send the scan abort before we | 
|  | 1246 | * the microcode has notified us that a scan is | 
|  | 1247 | * completed. */ | 
|  | 1248 | D_SCAN("SCAN_ABORT ret %d.\n", pkt->u.status); | 
|  | 1249 | ret = -EIO; | 
|  | 1250 | } | 
|  | 1251 |  | 
|  | 1252 | il_free_pages(il, cmd.reply_page); | 
|  | 1253 | return ret; | 
|  | 1254 | } | 
|  | 1255 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1256 | static void | 
|  | 1257 | il_complete_scan(struct il_priv *il, bool aborted) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1258 | { | 
|  | 1259 | /* check if scan was requested from mac80211 */ | 
|  | 1260 | if (il->scan_request) { | 
|  | 1261 | D_SCAN("Complete scan in mac80211\n"); | 
|  | 1262 | ieee80211_scan_completed(il->hw, aborted); | 
|  | 1263 | } | 
|  | 1264 |  | 
|  | 1265 | il->scan_vif = NULL; | 
|  | 1266 | il->scan_request = NULL; | 
|  | 1267 | } | 
|  | 1268 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1269 | void | 
|  | 1270 | il_force_scan_end(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1271 | { | 
|  | 1272 | lockdep_assert_held(&il->mutex); | 
|  | 1273 |  | 
|  | 1274 | if (!test_bit(S_SCANNING, &il->status)) { | 
|  | 1275 | D_SCAN("Forcing scan end while not scanning\n"); | 
|  | 1276 | return; | 
|  | 1277 | } | 
|  | 1278 |  | 
|  | 1279 | D_SCAN("Forcing scan end\n"); | 
|  | 1280 | clear_bit(S_SCANNING, &il->status); | 
|  | 1281 | clear_bit(S_SCAN_HW, &il->status); | 
|  | 1282 | clear_bit(S_SCAN_ABORTING, &il->status); | 
|  | 1283 | il_complete_scan(il, true); | 
|  | 1284 | } | 
|  | 1285 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1286 | static void | 
|  | 1287 | il_do_scan_abort(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1288 | { | 
|  | 1289 | int ret; | 
|  | 1290 |  | 
|  | 1291 | lockdep_assert_held(&il->mutex); | 
|  | 1292 |  | 
|  | 1293 | if (!test_bit(S_SCANNING, &il->status)) { | 
|  | 1294 | D_SCAN("Not performing scan to abort\n"); | 
|  | 1295 | return; | 
|  | 1296 | } | 
|  | 1297 |  | 
|  | 1298 | if (test_and_set_bit(S_SCAN_ABORTING, &il->status)) { | 
|  | 1299 | D_SCAN("Scan abort in progress\n"); | 
|  | 1300 | return; | 
|  | 1301 | } | 
|  | 1302 |  | 
|  | 1303 | ret = il_send_scan_abort(il); | 
|  | 1304 | if (ret) { | 
|  | 1305 | D_SCAN("Send scan abort failed %d\n", ret); | 
|  | 1306 | il_force_scan_end(il); | 
|  | 1307 | } else | 
|  | 1308 | D_SCAN("Successfully send scan abort\n"); | 
|  | 1309 | } | 
|  | 1310 |  | 
|  | 1311 | /** | 
|  | 1312 | * il_scan_cancel - Cancel any currently executing HW scan | 
|  | 1313 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1314 | int | 
|  | 1315 | il_scan_cancel(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1316 | { | 
|  | 1317 | D_SCAN("Queuing abort scan\n"); | 
|  | 1318 | queue_work(il->workqueue, &il->abort_scan); | 
|  | 1319 | return 0; | 
|  | 1320 | } | 
|  | 1321 | EXPORT_SYMBOL(il_scan_cancel); | 
|  | 1322 |  | 
|  | 1323 | /** | 
|  | 1324 | * il_scan_cancel_timeout - Cancel any currently executing HW scan | 
|  | 1325 | * @ms: amount of time to wait (in milliseconds) for scan to abort | 
|  | 1326 | * | 
|  | 1327 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1328 | int | 
|  | 1329 | il_scan_cancel_timeout(struct il_priv *il, unsigned long ms) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1330 | { | 
|  | 1331 | unsigned long timeout = jiffies + msecs_to_jiffies(ms); | 
|  | 1332 |  | 
|  | 1333 | lockdep_assert_held(&il->mutex); | 
|  | 1334 |  | 
|  | 1335 | D_SCAN("Scan cancel timeout\n"); | 
|  | 1336 |  | 
|  | 1337 | il_do_scan_abort(il); | 
|  | 1338 |  | 
|  | 1339 | while (time_before_eq(jiffies, timeout)) { | 
|  | 1340 | if (!test_bit(S_SCAN_HW, &il->status)) | 
|  | 1341 | break; | 
|  | 1342 | msleep(20); | 
|  | 1343 | } | 
|  | 1344 |  | 
|  | 1345 | return test_bit(S_SCAN_HW, &il->status); | 
|  | 1346 | } | 
|  | 1347 | EXPORT_SYMBOL(il_scan_cancel_timeout); | 
|  | 1348 |  | 
|  | 1349 | /* Service response to C_SCAN (0x80) */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1350 | static void | 
|  | 1351 | il_hdl_scan(struct il_priv *il, struct il_rx_buf *rxb) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1352 | { | 
|  | 1353 | #ifdef CONFIG_IWLEGACY_DEBUG | 
|  | 1354 | struct il_rx_pkt *pkt = rxb_addr(rxb); | 
|  | 1355 | struct il_scanreq_notification *notif = | 
|  | 1356 | (struct il_scanreq_notification *)pkt->u.raw; | 
|  | 1357 |  | 
|  | 1358 | D_SCAN("Scan request status = 0x%x\n", notif->status); | 
|  | 1359 | #endif | 
|  | 1360 | } | 
|  | 1361 |  | 
|  | 1362 | /* Service N_SCAN_START (0x82) */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1363 | static void | 
|  | 1364 | il_hdl_scan_start(struct il_priv *il, struct il_rx_buf *rxb) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1365 | { | 
|  | 1366 | struct il_rx_pkt *pkt = rxb_addr(rxb); | 
|  | 1367 | struct il_scanstart_notification *notif = | 
|  | 1368 | (struct il_scanstart_notification *)pkt->u.raw; | 
|  | 1369 | il->scan_start_tsf = le32_to_cpu(notif->tsf_low); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1370 | D_SCAN("Scan start: " "%d [802.11%s] " | 
|  | 1371 | "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n", notif->channel, | 
|  | 1372 | notif->band ? "bg" : "a", le32_to_cpu(notif->tsf_high), | 
|  | 1373 | le32_to_cpu(notif->tsf_low), notif->status, notif->beacon_timer); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1374 | } | 
|  | 1375 |  | 
|  | 1376 | /* Service N_SCAN_RESULTS (0x83) */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1377 | static void | 
|  | 1378 | il_hdl_scan_results(struct il_priv *il, struct il_rx_buf *rxb) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1379 | { | 
|  | 1380 | #ifdef CONFIG_IWLEGACY_DEBUG | 
|  | 1381 | struct il_rx_pkt *pkt = rxb_addr(rxb); | 
|  | 1382 | struct il_scanresults_notification *notif = | 
|  | 1383 | (struct il_scanresults_notification *)pkt->u.raw; | 
|  | 1384 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1385 | D_SCAN("Scan ch.res: " "%d [802.11%s] " "(TSF: 0x%08X:%08X) - %d " | 
|  | 1386 | "elapsed=%lu usec\n", notif->channel, notif->band ? "bg" : "a", | 
|  | 1387 | le32_to_cpu(notif->tsf_high), le32_to_cpu(notif->tsf_low), | 
|  | 1388 | le32_to_cpu(notif->stats[0]), | 
|  | 1389 | le32_to_cpu(notif->tsf_low) - il->scan_start_tsf); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1390 | #endif | 
|  | 1391 | } | 
|  | 1392 |  | 
|  | 1393 | /* Service N_SCAN_COMPLETE (0x84) */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1394 | static void | 
|  | 1395 | il_hdl_scan_complete(struct il_priv *il, struct il_rx_buf *rxb) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1396 | { | 
|  | 1397 |  | 
|  | 1398 | #ifdef CONFIG_IWLEGACY_DEBUG | 
|  | 1399 | struct il_rx_pkt *pkt = rxb_addr(rxb); | 
|  | 1400 | struct il_scancomplete_notification *scan_notif = (void *)pkt->u.raw; | 
|  | 1401 | #endif | 
|  | 1402 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1403 | D_SCAN("Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n", | 
|  | 1404 | scan_notif->scanned_channels, scan_notif->tsf_low, | 
|  | 1405 | scan_notif->tsf_high, scan_notif->status); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1406 |  | 
|  | 1407 | /* The HW is no longer scanning */ | 
|  | 1408 | clear_bit(S_SCAN_HW, &il->status); | 
|  | 1409 |  | 
|  | 1410 | D_SCAN("Scan on %sGHz took %dms\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1411 | (il->scan_band == IEEE80211_BAND_2GHZ) ? "2.4" : "5.2", | 
|  | 1412 | jiffies_to_msecs(jiffies - il->scan_start)); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1413 |  | 
|  | 1414 | queue_work(il->workqueue, &il->scan_completed); | 
|  | 1415 | } | 
|  | 1416 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1417 | void | 
|  | 1418 | il_setup_rx_scan_handlers(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1419 | { | 
|  | 1420 | /* scan handlers */ | 
|  | 1421 | il->handlers[C_SCAN] = il_hdl_scan; | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1422 | il->handlers[N_SCAN_START] = il_hdl_scan_start; | 
|  | 1423 | il->handlers[N_SCAN_RESULTS] = il_hdl_scan_results; | 
|  | 1424 | il->handlers[N_SCAN_COMPLETE] = il_hdl_scan_complete; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1425 | } | 
|  | 1426 | EXPORT_SYMBOL(il_setup_rx_scan_handlers); | 
|  | 1427 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1428 | inline u16 | 
|  | 1429 | il_get_active_dwell_time(struct il_priv *il, enum ieee80211_band band, | 
|  | 1430 | u8 n_probes) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1431 | { | 
|  | 1432 | if (band == IEEE80211_BAND_5GHZ) | 
|  | 1433 | return IL_ACTIVE_DWELL_TIME_52 + | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1434 | IL_ACTIVE_DWELL_FACTOR_52GHZ * (n_probes + 1); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1435 | else | 
|  | 1436 | return IL_ACTIVE_DWELL_TIME_24 + | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1437 | IL_ACTIVE_DWELL_FACTOR_24GHZ * (n_probes + 1); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1438 | } | 
|  | 1439 | EXPORT_SYMBOL(il_get_active_dwell_time); | 
|  | 1440 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1441 | u16 | 
| Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 1442 | il_get_passive_dwell_time(struct il_priv *il, enum ieee80211_band band, | 
|  | 1443 | struct ieee80211_vif *vif) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1444 | { | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1445 | u16 value; | 
|  | 1446 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1447 | u16 passive = | 
|  | 1448 | (band == | 
|  | 1449 | IEEE80211_BAND_2GHZ) ? IL_PASSIVE_DWELL_BASE + | 
|  | 1450 | IL_PASSIVE_DWELL_TIME_24 : IL_PASSIVE_DWELL_BASE + | 
|  | 1451 | IL_PASSIVE_DWELL_TIME_52; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1452 |  | 
|  | 1453 | if (il_is_any_associated(il)) { | 
|  | 1454 | /* | 
|  | 1455 | * If we're associated, we clamp the maximum passive | 
|  | 1456 | * dwell time to be 98% of the smallest beacon interval | 
|  | 1457 | * (minus 2 * channel tune time) | 
|  | 1458 | */ | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 1459 | value = il->vif ? il->vif->bss_conf.beacon_int : 0; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1460 | if (value > IL_PASSIVE_DWELL_BASE || !value) | 
|  | 1461 | value = IL_PASSIVE_DWELL_BASE; | 
|  | 1462 | value = (value * 98) / 100 - IL_CHANNEL_TUNE_TIME * 2; | 
|  | 1463 | passive = min(value, passive); | 
|  | 1464 | } | 
|  | 1465 |  | 
|  | 1466 | return passive; | 
|  | 1467 | } | 
|  | 1468 | EXPORT_SYMBOL(il_get_passive_dwell_time); | 
|  | 1469 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1470 | void | 
|  | 1471 | il_init_scan_params(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1472 | { | 
|  | 1473 | u8 ant_idx = fls(il->hw_params.valid_tx_ant) - 1; | 
|  | 1474 | if (!il->scan_tx_ant[IEEE80211_BAND_5GHZ]) | 
|  | 1475 | il->scan_tx_ant[IEEE80211_BAND_5GHZ] = ant_idx; | 
|  | 1476 | if (!il->scan_tx_ant[IEEE80211_BAND_2GHZ]) | 
|  | 1477 | il->scan_tx_ant[IEEE80211_BAND_2GHZ] = ant_idx; | 
|  | 1478 | } | 
|  | 1479 | EXPORT_SYMBOL(il_init_scan_params); | 
|  | 1480 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1481 | static int | 
|  | 1482 | il_scan_initiate(struct il_priv *il, struct ieee80211_vif *vif) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1483 | { | 
|  | 1484 | int ret; | 
|  | 1485 |  | 
|  | 1486 | lockdep_assert_held(&il->mutex); | 
|  | 1487 |  | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 1488 | if (WARN_ON(!il->ops->utils->request_scan)) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1489 | return -EOPNOTSUPP; | 
|  | 1490 |  | 
|  | 1491 | cancel_delayed_work(&il->scan_check); | 
|  | 1492 |  | 
|  | 1493 | if (!il_is_ready_rf(il)) { | 
|  | 1494 | IL_WARN("Request scan called when driver not ready.\n"); | 
|  | 1495 | return -EIO; | 
|  | 1496 | } | 
|  | 1497 |  | 
|  | 1498 | if (test_bit(S_SCAN_HW, &il->status)) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1499 | D_SCAN("Multiple concurrent scan requests in parallel.\n"); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1500 | return -EBUSY; | 
|  | 1501 | } | 
|  | 1502 |  | 
|  | 1503 | if (test_bit(S_SCAN_ABORTING, &il->status)) { | 
|  | 1504 | D_SCAN("Scan request while abort pending.\n"); | 
|  | 1505 | return -EBUSY; | 
|  | 1506 | } | 
|  | 1507 |  | 
|  | 1508 | D_SCAN("Starting scan...\n"); | 
|  | 1509 |  | 
|  | 1510 | set_bit(S_SCANNING, &il->status); | 
|  | 1511 | il->scan_start = jiffies; | 
|  | 1512 |  | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 1513 | ret = il->ops->utils->request_scan(il, vif); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1514 | if (ret) { | 
|  | 1515 | clear_bit(S_SCANNING, &il->status); | 
|  | 1516 | return ret; | 
|  | 1517 | } | 
|  | 1518 |  | 
|  | 1519 | queue_delayed_work(il->workqueue, &il->scan_check, | 
|  | 1520 | IL_SCAN_CHECK_WATCHDOG); | 
|  | 1521 |  | 
|  | 1522 | return 0; | 
|  | 1523 | } | 
|  | 1524 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1525 | int | 
|  | 1526 | il_mac_hw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif, | 
|  | 1527 | struct cfg80211_scan_request *req) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1528 | { | 
|  | 1529 | struct il_priv *il = hw->priv; | 
|  | 1530 | int ret; | 
|  | 1531 |  | 
|  | 1532 | D_MAC80211("enter\n"); | 
|  | 1533 |  | 
|  | 1534 | if (req->n_channels == 0) | 
|  | 1535 | return -EINVAL; | 
|  | 1536 |  | 
|  | 1537 | mutex_lock(&il->mutex); | 
|  | 1538 |  | 
|  | 1539 | if (test_bit(S_SCANNING, &il->status)) { | 
|  | 1540 | D_SCAN("Scan already in progress.\n"); | 
|  | 1541 | ret = -EAGAIN; | 
|  | 1542 | goto out_unlock; | 
|  | 1543 | } | 
|  | 1544 |  | 
|  | 1545 | /* mac80211 will only ask for one band at a time */ | 
|  | 1546 | il->scan_request = req; | 
|  | 1547 | il->scan_vif = vif; | 
|  | 1548 | il->scan_band = req->channels[0]->band; | 
|  | 1549 |  | 
|  | 1550 | ret = il_scan_initiate(il, vif); | 
|  | 1551 |  | 
|  | 1552 | D_MAC80211("leave\n"); | 
|  | 1553 |  | 
|  | 1554 | out_unlock: | 
|  | 1555 | mutex_unlock(&il->mutex); | 
|  | 1556 |  | 
|  | 1557 | return ret; | 
|  | 1558 | } | 
|  | 1559 | EXPORT_SYMBOL(il_mac_hw_scan); | 
|  | 1560 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1561 | static void | 
|  | 1562 | il_bg_scan_check(struct work_struct *data) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1563 | { | 
|  | 1564 | struct il_priv *il = | 
|  | 1565 | container_of(data, struct il_priv, scan_check.work); | 
|  | 1566 |  | 
|  | 1567 | D_SCAN("Scan check work\n"); | 
|  | 1568 |  | 
|  | 1569 | /* Since we are here firmware does not finish scan and | 
|  | 1570 | * most likely is in bad shape, so we don't bother to | 
|  | 1571 | * send abort command, just force scan complete to mac80211 */ | 
|  | 1572 | mutex_lock(&il->mutex); | 
|  | 1573 | il_force_scan_end(il); | 
|  | 1574 | mutex_unlock(&il->mutex); | 
|  | 1575 | } | 
|  | 1576 |  | 
|  | 1577 | /** | 
|  | 1578 | * il_fill_probe_req - fill in all required fields and IE for probe request | 
|  | 1579 | */ | 
|  | 1580 |  | 
|  | 1581 | u16 | 
|  | 1582 | il_fill_probe_req(struct il_priv *il, struct ieee80211_mgmt *frame, | 
| Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 1583 | const u8 *ta, const u8 *ies, int ie_len, int left) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1584 | { | 
|  | 1585 | int len = 0; | 
|  | 1586 | u8 *pos = NULL; | 
|  | 1587 |  | 
|  | 1588 | /* Make sure there is enough space for the probe request, | 
|  | 1589 | * two mandatory IEs and the data */ | 
|  | 1590 | left -= 24; | 
|  | 1591 | if (left < 0) | 
|  | 1592 | return 0; | 
|  | 1593 |  | 
|  | 1594 | frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ); | 
|  | 1595 | memcpy(frame->da, il_bcast_addr, ETH_ALEN); | 
|  | 1596 | memcpy(frame->sa, ta, ETH_ALEN); | 
|  | 1597 | memcpy(frame->bssid, il_bcast_addr, ETH_ALEN); | 
|  | 1598 | frame->seq_ctrl = 0; | 
|  | 1599 |  | 
|  | 1600 | len += 24; | 
|  | 1601 |  | 
|  | 1602 | /* ...next IE... */ | 
|  | 1603 | pos = &frame->u.probe_req.variable[0]; | 
|  | 1604 |  | 
|  | 1605 | /* fill in our indirect SSID IE */ | 
|  | 1606 | left -= 2; | 
|  | 1607 | if (left < 0) | 
|  | 1608 | return 0; | 
|  | 1609 | *pos++ = WLAN_EID_SSID; | 
|  | 1610 | *pos++ = 0; | 
|  | 1611 |  | 
|  | 1612 | len += 2; | 
|  | 1613 |  | 
|  | 1614 | if (WARN_ON(left < ie_len)) | 
|  | 1615 | return len; | 
|  | 1616 |  | 
|  | 1617 | if (ies && ie_len) { | 
|  | 1618 | memcpy(pos, ies, ie_len); | 
|  | 1619 | len += ie_len; | 
|  | 1620 | } | 
|  | 1621 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1622 | return (u16) len; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1623 | } | 
|  | 1624 | EXPORT_SYMBOL(il_fill_probe_req); | 
|  | 1625 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1626 | static void | 
|  | 1627 | il_bg_abort_scan(struct work_struct *work) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1628 | { | 
|  | 1629 | struct il_priv *il = container_of(work, struct il_priv, abort_scan); | 
|  | 1630 |  | 
|  | 1631 | D_SCAN("Abort scan work\n"); | 
|  | 1632 |  | 
|  | 1633 | /* We keep scan_check work queued in case when firmware will not | 
|  | 1634 | * report back scan completed notification */ | 
|  | 1635 | mutex_lock(&il->mutex); | 
|  | 1636 | il_scan_cancel_timeout(il, 200); | 
|  | 1637 | mutex_unlock(&il->mutex); | 
|  | 1638 | } | 
|  | 1639 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1640 | static void | 
|  | 1641 | il_bg_scan_completed(struct work_struct *work) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1642 | { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1643 | struct il_priv *il = container_of(work, struct il_priv, scan_completed); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1644 | bool aborted; | 
|  | 1645 |  | 
|  | 1646 | D_SCAN("Completed scan.\n"); | 
|  | 1647 |  | 
|  | 1648 | cancel_delayed_work(&il->scan_check); | 
|  | 1649 |  | 
|  | 1650 | mutex_lock(&il->mutex); | 
|  | 1651 |  | 
|  | 1652 | aborted = test_and_clear_bit(S_SCAN_ABORTING, &il->status); | 
|  | 1653 | if (aborted) | 
|  | 1654 | D_SCAN("Aborted scan completed.\n"); | 
|  | 1655 |  | 
|  | 1656 | if (!test_and_clear_bit(S_SCANNING, &il->status)) { | 
|  | 1657 | D_SCAN("Scan already completed.\n"); | 
|  | 1658 | goto out_settings; | 
|  | 1659 | } | 
|  | 1660 |  | 
|  | 1661 | il_complete_scan(il, aborted); | 
|  | 1662 |  | 
|  | 1663 | out_settings: | 
|  | 1664 | /* Can we still talk to firmware ? */ | 
|  | 1665 | if (!il_is_ready_rf(il)) | 
|  | 1666 | goto out; | 
|  | 1667 |  | 
|  | 1668 | /* | 
|  | 1669 | * We do not commit power settings while scan is pending, | 
|  | 1670 | * do it now if the settings changed. | 
|  | 1671 | */ | 
|  | 1672 | il_power_set_mode(il, &il->power_data.sleep_cmd_next, false); | 
|  | 1673 | il_set_tx_power(il, il->tx_power_next, false); | 
|  | 1674 |  | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 1675 | il->ops->utils->post_scan(il); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1676 |  | 
|  | 1677 | out: | 
|  | 1678 | mutex_unlock(&il->mutex); | 
|  | 1679 | } | 
|  | 1680 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1681 | void | 
|  | 1682 | il_setup_scan_deferred_work(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1683 | { | 
|  | 1684 | INIT_WORK(&il->scan_completed, il_bg_scan_completed); | 
|  | 1685 | INIT_WORK(&il->abort_scan, il_bg_abort_scan); | 
|  | 1686 | INIT_DELAYED_WORK(&il->scan_check, il_bg_scan_check); | 
|  | 1687 | } | 
|  | 1688 | EXPORT_SYMBOL(il_setup_scan_deferred_work); | 
|  | 1689 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1690 | void | 
|  | 1691 | il_cancel_scan_deferred_work(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1692 | { | 
|  | 1693 | cancel_work_sync(&il->abort_scan); | 
|  | 1694 | cancel_work_sync(&il->scan_completed); | 
|  | 1695 |  | 
|  | 1696 | if (cancel_delayed_work_sync(&il->scan_check)) { | 
|  | 1697 | mutex_lock(&il->mutex); | 
|  | 1698 | il_force_scan_end(il); | 
|  | 1699 | mutex_unlock(&il->mutex); | 
|  | 1700 | } | 
|  | 1701 | } | 
|  | 1702 | EXPORT_SYMBOL(il_cancel_scan_deferred_work); | 
|  | 1703 |  | 
|  | 1704 | /* il->sta_lock must be held */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1705 | static void | 
|  | 1706 | il_sta_ucode_activate(struct il_priv *il, u8 sta_id) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1707 | { | 
|  | 1708 |  | 
|  | 1709 | if (!(il->stations[sta_id].used & IL_STA_DRIVER_ACTIVE)) | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1710 | IL_ERR("ACTIVATE a non DRIVER active station id %u addr %pM\n", | 
|  | 1711 | sta_id, il->stations[sta_id].sta.sta.addr); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1712 |  | 
|  | 1713 | if (il->stations[sta_id].used & IL_STA_UCODE_ACTIVE) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1714 | D_ASSOC("STA id %u addr %pM already present" | 
|  | 1715 | " in uCode (according to driver)\n", sta_id, | 
|  | 1716 | il->stations[sta_id].sta.sta.addr); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1717 | } else { | 
|  | 1718 | il->stations[sta_id].used |= IL_STA_UCODE_ACTIVE; | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1719 | D_ASSOC("Added STA id %u addr %pM to uCode\n", sta_id, | 
|  | 1720 | il->stations[sta_id].sta.sta.addr); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1721 | } | 
|  | 1722 | } | 
|  | 1723 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1724 | static int | 
|  | 1725 | il_process_add_sta_resp(struct il_priv *il, struct il_addsta_cmd *addsta, | 
|  | 1726 | struct il_rx_pkt *pkt, bool sync) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1727 | { | 
|  | 1728 | u8 sta_id = addsta->sta.sta_id; | 
|  | 1729 | unsigned long flags; | 
|  | 1730 | int ret = -EIO; | 
|  | 1731 |  | 
|  | 1732 | if (pkt->hdr.flags & IL_CMD_FAILED_MSK) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1733 | IL_ERR("Bad return from C_ADD_STA (0x%08X)\n", pkt->hdr.flags); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1734 | return ret; | 
|  | 1735 | } | 
|  | 1736 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1737 | D_INFO("Processing response for adding station %u\n", sta_id); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1738 |  | 
|  | 1739 | spin_lock_irqsave(&il->sta_lock, flags); | 
|  | 1740 |  | 
|  | 1741 | switch (pkt->u.add_sta.status) { | 
|  | 1742 | case ADD_STA_SUCCESS_MSK: | 
|  | 1743 | D_INFO("C_ADD_STA PASSED\n"); | 
|  | 1744 | il_sta_ucode_activate(il, sta_id); | 
|  | 1745 | ret = 0; | 
|  | 1746 | break; | 
|  | 1747 | case ADD_STA_NO_ROOM_IN_TBL: | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1748 | IL_ERR("Adding station %d failed, no room in table.\n", sta_id); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1749 | break; | 
|  | 1750 | case ADD_STA_NO_BLOCK_ACK_RESOURCE: | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1751 | IL_ERR("Adding station %d failed, no block ack resource.\n", | 
|  | 1752 | sta_id); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1753 | break; | 
|  | 1754 | case ADD_STA_MODIFY_NON_EXIST_STA: | 
|  | 1755 | IL_ERR("Attempting to modify non-existing station %d\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1756 | sta_id); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1757 | break; | 
|  | 1758 | default: | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1759 | D_ASSOC("Received C_ADD_STA:(0x%08X)\n", pkt->u.add_sta.status); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1760 | break; | 
|  | 1761 | } | 
|  | 1762 |  | 
|  | 1763 | D_INFO("%s station id %u addr %pM\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1764 | il->stations[sta_id].sta.mode == | 
|  | 1765 | STA_CONTROL_MODIFY_MSK ? "Modified" : "Added", sta_id, | 
|  | 1766 | il->stations[sta_id].sta.sta.addr); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1767 |  | 
|  | 1768 | /* | 
|  | 1769 | * XXX: The MAC address in the command buffer is often changed from | 
|  | 1770 | * the original sent to the device. That is, the MAC address | 
|  | 1771 | * written to the command buffer often is not the same MAC address | 
|  | 1772 | * read from the command buffer when the command returns. This | 
|  | 1773 | * issue has not yet been resolved and this debugging is left to | 
|  | 1774 | * observe the problem. | 
|  | 1775 | */ | 
|  | 1776 | D_INFO("%s station according to cmd buffer %pM\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1777 | il->stations[sta_id].sta.mode == | 
|  | 1778 | STA_CONTROL_MODIFY_MSK ? "Modified" : "Added", addsta->sta.addr); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1779 | spin_unlock_irqrestore(&il->sta_lock, flags); | 
|  | 1780 |  | 
|  | 1781 | return ret; | 
|  | 1782 | } | 
|  | 1783 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1784 | static void | 
|  | 1785 | il_add_sta_callback(struct il_priv *il, struct il_device_cmd *cmd, | 
|  | 1786 | struct il_rx_pkt *pkt) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1787 | { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1788 | struct il_addsta_cmd *addsta = (struct il_addsta_cmd *)cmd->cmd.payload; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1789 |  | 
|  | 1790 | il_process_add_sta_resp(il, addsta, pkt, false); | 
|  | 1791 |  | 
|  | 1792 | } | 
|  | 1793 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1794 | int | 
|  | 1795 | il_send_add_sta(struct il_priv *il, struct il_addsta_cmd *sta, u8 flags) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1796 | { | 
|  | 1797 | struct il_rx_pkt *pkt = NULL; | 
|  | 1798 | int ret = 0; | 
|  | 1799 | u8 data[sizeof(*sta)]; | 
|  | 1800 | struct il_host_cmd cmd = { | 
|  | 1801 | .id = C_ADD_STA, | 
|  | 1802 | .flags = flags, | 
|  | 1803 | .data = data, | 
|  | 1804 | }; | 
|  | 1805 | u8 sta_id __maybe_unused = sta->sta.sta_id; | 
|  | 1806 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1807 | D_INFO("Adding sta %u (%pM) %ssynchronously\n", sta_id, sta->sta.addr, | 
|  | 1808 | flags & CMD_ASYNC ? "a" : ""); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1809 |  | 
|  | 1810 | if (flags & CMD_ASYNC) | 
|  | 1811 | cmd.callback = il_add_sta_callback; | 
|  | 1812 | else { | 
|  | 1813 | cmd.flags |= CMD_WANT_SKB; | 
|  | 1814 | might_sleep(); | 
|  | 1815 | } | 
|  | 1816 |  | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 1817 | cmd.len = il->ops->utils->build_addsta_hcmd(sta, data); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1818 | ret = il_send_cmd(il, &cmd); | 
|  | 1819 |  | 
|  | 1820 | if (ret || (flags & CMD_ASYNC)) | 
|  | 1821 | return ret; | 
|  | 1822 |  | 
|  | 1823 | if (ret == 0) { | 
|  | 1824 | pkt = (struct il_rx_pkt *)cmd.reply_page; | 
|  | 1825 | ret = il_process_add_sta_resp(il, sta, pkt, true); | 
|  | 1826 | } | 
|  | 1827 | il_free_pages(il, cmd.reply_page); | 
|  | 1828 |  | 
|  | 1829 | return ret; | 
|  | 1830 | } | 
|  | 1831 | EXPORT_SYMBOL(il_send_add_sta); | 
|  | 1832 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1833 | static void | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 1834 | il_set_ht_add_station(struct il_priv *il, u8 idx, struct ieee80211_sta *sta) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1835 | { | 
|  | 1836 | struct ieee80211_sta_ht_cap *sta_ht_inf = &sta->ht_cap; | 
|  | 1837 | __le32 sta_flags; | 
|  | 1838 | u8 mimo_ps_mode; | 
|  | 1839 |  | 
|  | 1840 | if (!sta || !sta_ht_inf->ht_supported) | 
|  | 1841 | goto done; | 
|  | 1842 |  | 
|  | 1843 | mimo_ps_mode = (sta_ht_inf->cap & IEEE80211_HT_CAP_SM_PS) >> 2; | 
|  | 1844 | D_ASSOC("spatial multiplexing power save mode: %s\n", | 
| Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 1845 | (mimo_ps_mode == WLAN_HT_CAP_SM_PS_STATIC) ? "static" : | 
|  | 1846 | (mimo_ps_mode == WLAN_HT_CAP_SM_PS_DYNAMIC) ? "dynamic" : | 
|  | 1847 | "disabled"); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1848 |  | 
|  | 1849 | sta_flags = il->stations[idx].sta.station_flags; | 
|  | 1850 |  | 
|  | 1851 | sta_flags &= ~(STA_FLG_RTS_MIMO_PROT_MSK | STA_FLG_MIMO_DIS_MSK); | 
|  | 1852 |  | 
|  | 1853 | switch (mimo_ps_mode) { | 
|  | 1854 | case WLAN_HT_CAP_SM_PS_STATIC: | 
|  | 1855 | sta_flags |= STA_FLG_MIMO_DIS_MSK; | 
|  | 1856 | break; | 
|  | 1857 | case WLAN_HT_CAP_SM_PS_DYNAMIC: | 
|  | 1858 | sta_flags |= STA_FLG_RTS_MIMO_PROT_MSK; | 
|  | 1859 | break; | 
|  | 1860 | case WLAN_HT_CAP_SM_PS_DISABLED: | 
|  | 1861 | break; | 
|  | 1862 | default: | 
|  | 1863 | IL_WARN("Invalid MIMO PS mode %d\n", mimo_ps_mode); | 
|  | 1864 | break; | 
|  | 1865 | } | 
|  | 1866 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1867 | sta_flags |= | 
|  | 1868 | cpu_to_le32((u32) sta_ht_inf-> | 
|  | 1869 | ampdu_factor << STA_FLG_MAX_AGG_SIZE_POS); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1870 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1871 | sta_flags |= | 
|  | 1872 | cpu_to_le32((u32) sta_ht_inf-> | 
|  | 1873 | ampdu_density << STA_FLG_AGG_MPDU_DENSITY_POS); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1874 |  | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 1875 | if (il_is_ht40_tx_allowed(il, &sta->ht_cap)) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1876 | sta_flags |= STA_FLG_HT40_EN_MSK; | 
|  | 1877 | else | 
|  | 1878 | sta_flags &= ~STA_FLG_HT40_EN_MSK; | 
|  | 1879 |  | 
|  | 1880 | il->stations[idx].sta.station_flags = sta_flags; | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1881 | done: | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1882 | return; | 
|  | 1883 | } | 
|  | 1884 |  | 
|  | 1885 | /** | 
|  | 1886 | * il_prep_station - Prepare station information for addition | 
|  | 1887 | * | 
|  | 1888 | * should be called with sta_lock held | 
|  | 1889 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1890 | u8 | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 1891 | il_prep_station(struct il_priv *il, const u8 *addr, bool is_ap, | 
|  | 1892 | struct ieee80211_sta *sta) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1893 | { | 
|  | 1894 | struct il_station_entry *station; | 
|  | 1895 | int i; | 
|  | 1896 | u8 sta_id = IL_INVALID_STATION; | 
|  | 1897 | u16 rate; | 
|  | 1898 |  | 
|  | 1899 | if (is_ap) | 
| Stanislaw Gruszka | 8f9e564 | 2012-02-03 17:31:43 +0100 | [diff] [blame] | 1900 | sta_id = IL_AP_ID; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1901 | else if (is_broadcast_ether_addr(addr)) | 
| Stanislaw Gruszka | b16db50 | 2012-02-03 17:31:44 +0100 | [diff] [blame] | 1902 | sta_id = il->hw_params.bcast_id; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1903 | else | 
|  | 1904 | for (i = IL_STA_ID; i < il->hw_params.max_stations; i++) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1905 | if (!compare_ether_addr | 
|  | 1906 | (il->stations[i].sta.sta.addr, addr)) { | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1907 | sta_id = i; | 
|  | 1908 | break; | 
|  | 1909 | } | 
|  | 1910 |  | 
|  | 1911 | if (!il->stations[i].used && | 
|  | 1912 | sta_id == IL_INVALID_STATION) | 
|  | 1913 | sta_id = i; | 
|  | 1914 | } | 
|  | 1915 |  | 
|  | 1916 | /* | 
|  | 1917 | * These two conditions have the same outcome, but keep them | 
|  | 1918 | * separate | 
|  | 1919 | */ | 
|  | 1920 | if (unlikely(sta_id == IL_INVALID_STATION)) | 
|  | 1921 | return sta_id; | 
|  | 1922 |  | 
|  | 1923 | /* | 
|  | 1924 | * uCode is not able to deal with multiple requests to add a | 
|  | 1925 | * station. Keep track if one is in progress so that we do not send | 
|  | 1926 | * another. | 
|  | 1927 | */ | 
|  | 1928 | if (il->stations[sta_id].used & IL_STA_UCODE_INPROGRESS) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1929 | D_INFO("STA %d already in process of being added.\n", sta_id); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1930 | return sta_id; | 
|  | 1931 | } | 
|  | 1932 |  | 
|  | 1933 | if ((il->stations[sta_id].used & IL_STA_DRIVER_ACTIVE) && | 
|  | 1934 | (il->stations[sta_id].used & IL_STA_UCODE_ACTIVE) && | 
|  | 1935 | !compare_ether_addr(il->stations[sta_id].sta.sta.addr, addr)) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1936 | D_ASSOC("STA %d (%pM) already added, not adding again.\n", | 
|  | 1937 | sta_id, addr); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1938 | return sta_id; | 
|  | 1939 | } | 
|  | 1940 |  | 
|  | 1941 | station = &il->stations[sta_id]; | 
|  | 1942 | station->used = IL_STA_DRIVER_ACTIVE; | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1943 | D_ASSOC("Add STA to driver ID %d: %pM\n", sta_id, addr); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1944 | il->num_stations++; | 
|  | 1945 |  | 
|  | 1946 | /* Set up the C_ADD_STA command to send to device */ | 
|  | 1947 | memset(&station->sta, 0, sizeof(struct il_addsta_cmd)); | 
|  | 1948 | memcpy(station->sta.sta.addr, addr, ETH_ALEN); | 
|  | 1949 | station->sta.mode = 0; | 
|  | 1950 | station->sta.sta.sta_id = sta_id; | 
| Stanislaw Gruszka | fd6415b | 2012-02-03 17:31:49 +0100 | [diff] [blame] | 1951 | station->sta.station_flags = 0; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1952 |  | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1953 | /* | 
|  | 1954 | * OK to call unconditionally, since local stations (IBSS BSSID | 
|  | 1955 | * STA and broadcast STA) pass in a NULL sta, and mac80211 | 
|  | 1956 | * doesn't allow HT IBSS. | 
|  | 1957 | */ | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 1958 | il_set_ht_add_station(il, sta_id, sta); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1959 |  | 
|  | 1960 | /* 3945 only */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1961 | rate = (il->band == IEEE80211_BAND_5GHZ) ? RATE_6M_PLCP : RATE_1M_PLCP; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1962 | /* Turn on both antennas for the station... */ | 
|  | 1963 | station->sta.rate_n_flags = cpu_to_le16(rate | RATE_MCS_ANT_AB_MSK); | 
|  | 1964 |  | 
|  | 1965 | return sta_id; | 
|  | 1966 |  | 
|  | 1967 | } | 
|  | 1968 | EXPORT_SYMBOL_GPL(il_prep_station); | 
|  | 1969 |  | 
|  | 1970 | #define STA_WAIT_TIMEOUT (HZ/2) | 
|  | 1971 |  | 
|  | 1972 | /** | 
|  | 1973 | * il_add_station_common - | 
|  | 1974 | */ | 
|  | 1975 | int | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 1976 | il_add_station_common(struct il_priv *il, const u8 *addr, bool is_ap, | 
|  | 1977 | struct ieee80211_sta *sta, u8 *sta_id_r) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1978 | { | 
|  | 1979 | unsigned long flags_spin; | 
|  | 1980 | int ret = 0; | 
|  | 1981 | u8 sta_id; | 
|  | 1982 | struct il_addsta_cmd sta_cmd; | 
|  | 1983 |  | 
|  | 1984 | *sta_id_r = 0; | 
|  | 1985 | spin_lock_irqsave(&il->sta_lock, flags_spin); | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 1986 | sta_id = il_prep_station(il, addr, is_ap, sta); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1987 | if (sta_id == IL_INVALID_STATION) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1988 | IL_ERR("Unable to prepare station %pM for addition\n", addr); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1989 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); | 
|  | 1990 | return -EINVAL; | 
|  | 1991 | } | 
|  | 1992 |  | 
|  | 1993 | /* | 
|  | 1994 | * uCode is not able to deal with multiple requests to add a | 
|  | 1995 | * station. Keep track if one is in progress so that we do not send | 
|  | 1996 | * another. | 
|  | 1997 | */ | 
|  | 1998 | if (il->stations[sta_id].used & IL_STA_UCODE_INPROGRESS) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1999 | D_INFO("STA %d already in process of being added.\n", sta_id); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2000 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); | 
|  | 2001 | return -EEXIST; | 
|  | 2002 | } | 
|  | 2003 |  | 
|  | 2004 | if ((il->stations[sta_id].used & IL_STA_DRIVER_ACTIVE) && | 
|  | 2005 | (il->stations[sta_id].used & IL_STA_UCODE_ACTIVE)) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2006 | D_ASSOC("STA %d (%pM) already added, not adding again.\n", | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2007 | sta_id, addr); | 
|  | 2008 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); | 
|  | 2009 | return -EEXIST; | 
|  | 2010 | } | 
|  | 2011 |  | 
|  | 2012 | il->stations[sta_id].used |= IL_STA_UCODE_INPROGRESS; | 
|  | 2013 | memcpy(&sta_cmd, &il->stations[sta_id].sta, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2014 | sizeof(struct il_addsta_cmd)); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2015 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); | 
|  | 2016 |  | 
|  | 2017 | /* Add station to device's station table */ | 
|  | 2018 | ret = il_send_add_sta(il, &sta_cmd, CMD_SYNC); | 
|  | 2019 | if (ret) { | 
|  | 2020 | spin_lock_irqsave(&il->sta_lock, flags_spin); | 
|  | 2021 | IL_ERR("Adding station %pM failed.\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2022 | il->stations[sta_id].sta.sta.addr); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2023 | il->stations[sta_id].used &= ~IL_STA_DRIVER_ACTIVE; | 
|  | 2024 | il->stations[sta_id].used &= ~IL_STA_UCODE_INPROGRESS; | 
|  | 2025 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); | 
|  | 2026 | } | 
|  | 2027 | *sta_id_r = sta_id; | 
|  | 2028 | return ret; | 
|  | 2029 | } | 
|  | 2030 | EXPORT_SYMBOL(il_add_station_common); | 
|  | 2031 |  | 
|  | 2032 | /** | 
|  | 2033 | * il_sta_ucode_deactivate - deactivate ucode status for a station | 
|  | 2034 | * | 
|  | 2035 | * il->sta_lock must be held | 
|  | 2036 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2037 | static void | 
|  | 2038 | il_sta_ucode_deactivate(struct il_priv *il, u8 sta_id) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2039 | { | 
|  | 2040 | /* Ucode must be active and driver must be non active */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2041 | if ((il->stations[sta_id]. | 
|  | 2042 | used & (IL_STA_UCODE_ACTIVE | IL_STA_DRIVER_ACTIVE)) != | 
|  | 2043 | IL_STA_UCODE_ACTIVE) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2044 | IL_ERR("removed non active STA %u\n", sta_id); | 
|  | 2045 |  | 
|  | 2046 | il->stations[sta_id].used &= ~IL_STA_UCODE_ACTIVE; | 
|  | 2047 |  | 
|  | 2048 | memset(&il->stations[sta_id], 0, sizeof(struct il_station_entry)); | 
|  | 2049 | D_ASSOC("Removed STA %u\n", sta_id); | 
|  | 2050 | } | 
|  | 2051 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2052 | static int | 
|  | 2053 | il_send_remove_station(struct il_priv *il, const u8 * addr, int sta_id, | 
|  | 2054 | bool temporary) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2055 | { | 
|  | 2056 | struct il_rx_pkt *pkt; | 
|  | 2057 | int ret; | 
|  | 2058 |  | 
|  | 2059 | unsigned long flags_spin; | 
|  | 2060 | struct il_rem_sta_cmd rm_sta_cmd; | 
|  | 2061 |  | 
|  | 2062 | struct il_host_cmd cmd = { | 
|  | 2063 | .id = C_REM_STA, | 
|  | 2064 | .len = sizeof(struct il_rem_sta_cmd), | 
|  | 2065 | .flags = CMD_SYNC, | 
|  | 2066 | .data = &rm_sta_cmd, | 
|  | 2067 | }; | 
|  | 2068 |  | 
|  | 2069 | memset(&rm_sta_cmd, 0, sizeof(rm_sta_cmd)); | 
|  | 2070 | rm_sta_cmd.num_sta = 1; | 
|  | 2071 | memcpy(&rm_sta_cmd.addr, addr, ETH_ALEN); | 
|  | 2072 |  | 
|  | 2073 | cmd.flags |= CMD_WANT_SKB; | 
|  | 2074 |  | 
|  | 2075 | ret = il_send_cmd(il, &cmd); | 
|  | 2076 |  | 
|  | 2077 | if (ret) | 
|  | 2078 | return ret; | 
|  | 2079 |  | 
|  | 2080 | pkt = (struct il_rx_pkt *)cmd.reply_page; | 
|  | 2081 | if (pkt->hdr.flags & IL_CMD_FAILED_MSK) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2082 | IL_ERR("Bad return from C_REM_STA (0x%08X)\n", pkt->hdr.flags); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2083 | ret = -EIO; | 
|  | 2084 | } | 
|  | 2085 |  | 
|  | 2086 | if (!ret) { | 
|  | 2087 | switch (pkt->u.rem_sta.status) { | 
|  | 2088 | case REM_STA_SUCCESS_MSK: | 
|  | 2089 | if (!temporary) { | 
|  | 2090 | spin_lock_irqsave(&il->sta_lock, flags_spin); | 
|  | 2091 | il_sta_ucode_deactivate(il, sta_id); | 
|  | 2092 | spin_unlock_irqrestore(&il->sta_lock, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2093 | flags_spin); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2094 | } | 
|  | 2095 | D_ASSOC("C_REM_STA PASSED\n"); | 
|  | 2096 | break; | 
|  | 2097 | default: | 
|  | 2098 | ret = -EIO; | 
|  | 2099 | IL_ERR("C_REM_STA failed\n"); | 
|  | 2100 | break; | 
|  | 2101 | } | 
|  | 2102 | } | 
|  | 2103 | il_free_pages(il, cmd.reply_page); | 
|  | 2104 |  | 
|  | 2105 | return ret; | 
|  | 2106 | } | 
|  | 2107 |  | 
|  | 2108 | /** | 
|  | 2109 | * il_remove_station - Remove driver's knowledge of station. | 
|  | 2110 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2111 | int | 
|  | 2112 | il_remove_station(struct il_priv *il, const u8 sta_id, const u8 * addr) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2113 | { | 
|  | 2114 | unsigned long flags; | 
|  | 2115 |  | 
|  | 2116 | if (!il_is_ready(il)) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2117 | D_INFO("Unable to remove station %pM, device not ready.\n", | 
|  | 2118 | addr); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2119 | /* | 
|  | 2120 | * It is typical for stations to be removed when we are | 
|  | 2121 | * going down. Return success since device will be down | 
|  | 2122 | * soon anyway | 
|  | 2123 | */ | 
|  | 2124 | return 0; | 
|  | 2125 | } | 
|  | 2126 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2127 | D_ASSOC("Removing STA from driver:%d  %pM\n", sta_id, addr); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2128 |  | 
|  | 2129 | if (WARN_ON(sta_id == IL_INVALID_STATION)) | 
|  | 2130 | return -EINVAL; | 
|  | 2131 |  | 
|  | 2132 | spin_lock_irqsave(&il->sta_lock, flags); | 
|  | 2133 |  | 
|  | 2134 | if (!(il->stations[sta_id].used & IL_STA_DRIVER_ACTIVE)) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2135 | D_INFO("Removing %pM but non DRIVER active\n", addr); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2136 | goto out_err; | 
|  | 2137 | } | 
|  | 2138 |  | 
|  | 2139 | if (!(il->stations[sta_id].used & IL_STA_UCODE_ACTIVE)) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2140 | D_INFO("Removing %pM but non UCODE active\n", addr); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2141 | goto out_err; | 
|  | 2142 | } | 
|  | 2143 |  | 
|  | 2144 | if (il->stations[sta_id].used & IL_STA_LOCAL) { | 
|  | 2145 | kfree(il->stations[sta_id].lq); | 
|  | 2146 | il->stations[sta_id].lq = NULL; | 
|  | 2147 | } | 
|  | 2148 |  | 
|  | 2149 | il->stations[sta_id].used &= ~IL_STA_DRIVER_ACTIVE; | 
|  | 2150 |  | 
|  | 2151 | il->num_stations--; | 
|  | 2152 |  | 
|  | 2153 | BUG_ON(il->num_stations < 0); | 
|  | 2154 |  | 
|  | 2155 | spin_unlock_irqrestore(&il->sta_lock, flags); | 
|  | 2156 |  | 
|  | 2157 | return il_send_remove_station(il, addr, sta_id, false); | 
|  | 2158 | out_err: | 
|  | 2159 | spin_unlock_irqrestore(&il->sta_lock, flags); | 
|  | 2160 | return -EINVAL; | 
|  | 2161 | } | 
|  | 2162 | EXPORT_SYMBOL_GPL(il_remove_station); | 
|  | 2163 |  | 
|  | 2164 | /** | 
|  | 2165 | * il_clear_ucode_stations - clear ucode station table bits | 
|  | 2166 | * | 
|  | 2167 | * This function clears all the bits in the driver indicating | 
|  | 2168 | * which stations are active in the ucode. Call when something | 
|  | 2169 | * other than explicit station management would cause this in | 
|  | 2170 | * the ucode, e.g. unassociated RXON. | 
|  | 2171 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2172 | void | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 2173 | il_clear_ucode_stations(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2174 | { | 
|  | 2175 | int i; | 
|  | 2176 | unsigned long flags_spin; | 
|  | 2177 | bool cleared = false; | 
|  | 2178 |  | 
|  | 2179 | D_INFO("Clearing ucode stations in driver\n"); | 
|  | 2180 |  | 
|  | 2181 | spin_lock_irqsave(&il->sta_lock, flags_spin); | 
|  | 2182 | for (i = 0; i < il->hw_params.max_stations; i++) { | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2183 | if (il->stations[i].used & IL_STA_UCODE_ACTIVE) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2184 | D_INFO("Clearing ucode active for station %d\n", i); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2185 | il->stations[i].used &= ~IL_STA_UCODE_ACTIVE; | 
|  | 2186 | cleared = true; | 
|  | 2187 | } | 
|  | 2188 | } | 
|  | 2189 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); | 
|  | 2190 |  | 
|  | 2191 | if (!cleared) | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2192 | D_INFO("No active stations found to be cleared\n"); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2193 | } | 
|  | 2194 | EXPORT_SYMBOL(il_clear_ucode_stations); | 
|  | 2195 |  | 
|  | 2196 | /** | 
|  | 2197 | * il_restore_stations() - Restore driver known stations to device | 
|  | 2198 | * | 
|  | 2199 | * All stations considered active by driver, but not present in ucode, is | 
|  | 2200 | * restored. | 
|  | 2201 | * | 
|  | 2202 | * Function sleeps. | 
|  | 2203 | */ | 
|  | 2204 | void | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 2205 | il_restore_stations(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2206 | { | 
|  | 2207 | struct il_addsta_cmd sta_cmd; | 
|  | 2208 | struct il_link_quality_cmd lq; | 
|  | 2209 | unsigned long flags_spin; | 
|  | 2210 | int i; | 
|  | 2211 | bool found = false; | 
|  | 2212 | int ret; | 
|  | 2213 | bool send_lq; | 
|  | 2214 |  | 
|  | 2215 | if (!il_is_ready(il)) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2216 | D_INFO("Not ready yet, not restoring any stations.\n"); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2217 | return; | 
|  | 2218 | } | 
|  | 2219 |  | 
|  | 2220 | D_ASSOC("Restoring all known stations ... start.\n"); | 
|  | 2221 | spin_lock_irqsave(&il->sta_lock, flags_spin); | 
|  | 2222 | for (i = 0; i < il->hw_params.max_stations; i++) { | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2223 | if ((il->stations[i].used & IL_STA_DRIVER_ACTIVE) && | 
|  | 2224 | !(il->stations[i].used & IL_STA_UCODE_ACTIVE)) { | 
|  | 2225 | D_ASSOC("Restoring sta %pM\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2226 | il->stations[i].sta.sta.addr); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2227 | il->stations[i].sta.mode = 0; | 
|  | 2228 | il->stations[i].used |= IL_STA_UCODE_INPROGRESS; | 
|  | 2229 | found = true; | 
|  | 2230 | } | 
|  | 2231 | } | 
|  | 2232 |  | 
|  | 2233 | for (i = 0; i < il->hw_params.max_stations; i++) { | 
|  | 2234 | if ((il->stations[i].used & IL_STA_UCODE_INPROGRESS)) { | 
|  | 2235 | memcpy(&sta_cmd, &il->stations[i].sta, | 
|  | 2236 | sizeof(struct il_addsta_cmd)); | 
|  | 2237 | send_lq = false; | 
|  | 2238 | if (il->stations[i].lq) { | 
|  | 2239 | memcpy(&lq, il->stations[i].lq, | 
|  | 2240 | sizeof(struct il_link_quality_cmd)); | 
|  | 2241 | send_lq = true; | 
|  | 2242 | } | 
|  | 2243 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); | 
|  | 2244 | ret = il_send_add_sta(il, &sta_cmd, CMD_SYNC); | 
|  | 2245 | if (ret) { | 
|  | 2246 | spin_lock_irqsave(&il->sta_lock, flags_spin); | 
|  | 2247 | IL_ERR("Adding station %pM failed.\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2248 | il->stations[i].sta.sta.addr); | 
|  | 2249 | il->stations[i].used &= ~IL_STA_DRIVER_ACTIVE; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2250 | il->stations[i].used &= | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2251 | ~IL_STA_UCODE_INPROGRESS; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2252 | spin_unlock_irqrestore(&il->sta_lock, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2253 | flags_spin); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2254 | } | 
|  | 2255 | /* | 
|  | 2256 | * Rate scaling has already been initialized, send | 
|  | 2257 | * current LQ command | 
|  | 2258 | */ | 
|  | 2259 | if (send_lq) | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 2260 | il_send_lq_cmd(il, &lq, CMD_SYNC, true); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2261 | spin_lock_irqsave(&il->sta_lock, flags_spin); | 
|  | 2262 | il->stations[i].used &= ~IL_STA_UCODE_INPROGRESS; | 
|  | 2263 | } | 
|  | 2264 | } | 
|  | 2265 |  | 
|  | 2266 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); | 
|  | 2267 | if (!found) | 
|  | 2268 | D_INFO("Restoring all known stations" | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2269 | " .... no stations to be restored.\n"); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2270 | else | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2271 | D_INFO("Restoring all known stations" " .... complete.\n"); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2272 | } | 
|  | 2273 | EXPORT_SYMBOL(il_restore_stations); | 
|  | 2274 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2275 | int | 
|  | 2276 | il_get_free_ucode_key_idx(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2277 | { | 
|  | 2278 | int i; | 
|  | 2279 |  | 
|  | 2280 | for (i = 0; i < il->sta_key_max_num; i++) | 
|  | 2281 | if (!test_and_set_bit(i, &il->ucode_key_table)) | 
|  | 2282 | return i; | 
|  | 2283 |  | 
|  | 2284 | return WEP_INVALID_OFFSET; | 
|  | 2285 | } | 
|  | 2286 | EXPORT_SYMBOL(il_get_free_ucode_key_idx); | 
|  | 2287 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2288 | void | 
|  | 2289 | il_dealloc_bcast_stations(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2290 | { | 
|  | 2291 | unsigned long flags; | 
|  | 2292 | int i; | 
|  | 2293 |  | 
|  | 2294 | spin_lock_irqsave(&il->sta_lock, flags); | 
|  | 2295 | for (i = 0; i < il->hw_params.max_stations; i++) { | 
|  | 2296 | if (!(il->stations[i].used & IL_STA_BCAST)) | 
|  | 2297 | continue; | 
|  | 2298 |  | 
|  | 2299 | il->stations[i].used &= ~IL_STA_UCODE_ACTIVE; | 
|  | 2300 | il->num_stations--; | 
|  | 2301 | BUG_ON(il->num_stations < 0); | 
|  | 2302 | kfree(il->stations[i].lq); | 
|  | 2303 | il->stations[i].lq = NULL; | 
|  | 2304 | } | 
|  | 2305 | spin_unlock_irqrestore(&il->sta_lock, flags); | 
|  | 2306 | } | 
|  | 2307 | EXPORT_SYMBOL_GPL(il_dealloc_bcast_stations); | 
|  | 2308 |  | 
|  | 2309 | #ifdef CONFIG_IWLEGACY_DEBUG | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2310 | static void | 
|  | 2311 | il_dump_lq_cmd(struct il_priv *il, struct il_link_quality_cmd *lq) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2312 | { | 
|  | 2313 | int i; | 
|  | 2314 | D_RATE("lq station id 0x%x\n", lq->sta_id); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2315 | D_RATE("lq ant 0x%X 0x%X\n", lq->general_params.single_stream_ant_msk, | 
|  | 2316 | lq->general_params.dual_stream_ant_msk); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2317 |  | 
|  | 2318 | for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2319 | D_RATE("lq idx %d 0x%X\n", i, lq->rs_table[i].rate_n_flags); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2320 | } | 
|  | 2321 | #else | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2322 | static inline void | 
|  | 2323 | il_dump_lq_cmd(struct il_priv *il, struct il_link_quality_cmd *lq) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2324 | { | 
|  | 2325 | } | 
|  | 2326 | #endif | 
|  | 2327 |  | 
|  | 2328 | /** | 
|  | 2329 | * il_is_lq_table_valid() - Test one aspect of LQ cmd for validity | 
|  | 2330 | * | 
|  | 2331 | * It sometimes happens when a HT rate has been in use and we | 
|  | 2332 | * loose connectivity with AP then mac80211 will first tell us that the | 
|  | 2333 | * current channel is not HT anymore before removing the station. In such a | 
|  | 2334 | * scenario the RXON flags will be updated to indicate we are not | 
|  | 2335 | * communicating HT anymore, but the LQ command may still contain HT rates. | 
|  | 2336 | * Test for this to prevent driver from sending LQ command between the time | 
|  | 2337 | * RXON flags are updated and when LQ command is updated. | 
|  | 2338 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2339 | static bool | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 2340 | il_is_lq_table_valid(struct il_priv *il, struct il_link_quality_cmd *lq) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2341 | { | 
|  | 2342 | int i; | 
|  | 2343 |  | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 2344 | if (il->ht.enabled) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2345 | return true; | 
|  | 2346 |  | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 2347 | D_INFO("Channel %u is not an HT channel\n", il->active.channel); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2348 | for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2349 | if (le32_to_cpu(lq->rs_table[i].rate_n_flags) & RATE_MCS_HT_MSK) { | 
|  | 2350 | D_INFO("idx %d of LQ expects HT channel\n", i); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2351 | return false; | 
|  | 2352 | } | 
|  | 2353 | } | 
|  | 2354 | return true; | 
|  | 2355 | } | 
|  | 2356 |  | 
|  | 2357 | /** | 
|  | 2358 | * il_send_lq_cmd() - Send link quality command | 
|  | 2359 | * @init: This command is sent as part of station initialization right | 
|  | 2360 | *        after station has been added. | 
|  | 2361 | * | 
|  | 2362 | * The link quality command is sent as the last step of station creation. | 
|  | 2363 | * This is the special case in which init is set and we call a callback in | 
|  | 2364 | * this case to clear the state indicating that station creation is in | 
|  | 2365 | * progress. | 
|  | 2366 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2367 | int | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 2368 | il_send_lq_cmd(struct il_priv *il, struct il_link_quality_cmd *lq, | 
|  | 2369 | u8 flags, bool init) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2370 | { | 
|  | 2371 | int ret = 0; | 
|  | 2372 | unsigned long flags_spin; | 
|  | 2373 |  | 
|  | 2374 | struct il_host_cmd cmd = { | 
|  | 2375 | .id = C_TX_LINK_QUALITY_CMD, | 
|  | 2376 | .len = sizeof(struct il_link_quality_cmd), | 
|  | 2377 | .flags = flags, | 
|  | 2378 | .data = lq, | 
|  | 2379 | }; | 
|  | 2380 |  | 
|  | 2381 | if (WARN_ON(lq->sta_id == IL_INVALID_STATION)) | 
|  | 2382 | return -EINVAL; | 
|  | 2383 |  | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2384 | spin_lock_irqsave(&il->sta_lock, flags_spin); | 
|  | 2385 | if (!(il->stations[lq->sta_id].used & IL_STA_DRIVER_ACTIVE)) { | 
|  | 2386 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); | 
|  | 2387 | return -EINVAL; | 
|  | 2388 | } | 
|  | 2389 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); | 
|  | 2390 |  | 
|  | 2391 | il_dump_lq_cmd(il, lq); | 
|  | 2392 | BUG_ON(init && (cmd.flags & CMD_ASYNC)); | 
|  | 2393 |  | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 2394 | if (il_is_lq_table_valid(il, lq)) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2395 | ret = il_send_cmd(il, &cmd); | 
|  | 2396 | else | 
|  | 2397 | ret = -EINVAL; | 
|  | 2398 |  | 
|  | 2399 | if (cmd.flags & CMD_ASYNC) | 
|  | 2400 | return ret; | 
|  | 2401 |  | 
|  | 2402 | if (init) { | 
|  | 2403 | D_INFO("init LQ command complete," | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2404 | " clearing sta addition status for sta %d\n", | 
|  | 2405 | lq->sta_id); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2406 | spin_lock_irqsave(&il->sta_lock, flags_spin); | 
|  | 2407 | il->stations[lq->sta_id].used &= ~IL_STA_UCODE_INPROGRESS; | 
|  | 2408 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); | 
|  | 2409 | } | 
|  | 2410 | return ret; | 
|  | 2411 | } | 
|  | 2412 | EXPORT_SYMBOL(il_send_lq_cmd); | 
|  | 2413 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2414 | int | 
|  | 2415 | il_mac_sta_remove(struct ieee80211_hw *hw, struct ieee80211_vif *vif, | 
|  | 2416 | struct ieee80211_sta *sta) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2417 | { | 
|  | 2418 | struct il_priv *il = hw->priv; | 
|  | 2419 | struct il_station_priv_common *sta_common = (void *)sta->drv_priv; | 
|  | 2420 | int ret; | 
|  | 2421 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2422 | D_INFO("received request to remove station %pM\n", sta->addr); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2423 | mutex_lock(&il->mutex); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2424 | D_INFO("proceeding to remove station %pM\n", sta->addr); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2425 | ret = il_remove_station(il, sta_common->sta_id, sta->addr); | 
|  | 2426 | if (ret) | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2427 | IL_ERR("Error removing station %pM\n", sta->addr); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2428 | mutex_unlock(&il->mutex); | 
|  | 2429 | return ret; | 
|  | 2430 | } | 
|  | 2431 | EXPORT_SYMBOL(il_mac_sta_remove); | 
|  | 2432 |  | 
|  | 2433 | /************************** RX-FUNCTIONS ****************************/ | 
|  | 2434 | /* | 
|  | 2435 | * Rx theory of operation | 
|  | 2436 | * | 
|  | 2437 | * Driver allocates a circular buffer of Receive Buffer Descriptors (RBDs), | 
|  | 2438 | * each of which point to Receive Buffers to be filled by the NIC.  These get | 
|  | 2439 | * used not only for Rx frames, but for any command response or notification | 
|  | 2440 | * from the NIC.  The driver and NIC manage the Rx buffers by means | 
|  | 2441 | * of idxes into the circular buffer. | 
|  | 2442 | * | 
|  | 2443 | * Rx Queue Indexes | 
|  | 2444 | * The host/firmware share two idx registers for managing the Rx buffers. | 
|  | 2445 | * | 
|  | 2446 | * The READ idx maps to the first position that the firmware may be writing | 
|  | 2447 | * to -- the driver can read up to (but not including) this position and get | 
|  | 2448 | * good data. | 
|  | 2449 | * The READ idx is managed by the firmware once the card is enabled. | 
|  | 2450 | * | 
|  | 2451 | * The WRITE idx maps to the last position the driver has read from -- the | 
|  | 2452 | * position preceding WRITE is the last slot the firmware can place a packet. | 
|  | 2453 | * | 
|  | 2454 | * The queue is empty (no good data) if WRITE = READ - 1, and is full if | 
|  | 2455 | * WRITE = READ. | 
|  | 2456 | * | 
|  | 2457 | * During initialization, the host sets up the READ queue position to the first | 
|  | 2458 | * IDX position, and WRITE to the last (READ - 1 wrapped) | 
|  | 2459 | * | 
|  | 2460 | * When the firmware places a packet in a buffer, it will advance the READ idx | 
|  | 2461 | * and fire the RX interrupt.  The driver can then query the READ idx and | 
|  | 2462 | * process as many packets as possible, moving the WRITE idx forward as it | 
|  | 2463 | * resets the Rx queue buffers with new memory. | 
|  | 2464 | * | 
|  | 2465 | * The management in the driver is as follows: | 
|  | 2466 | * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free.  When | 
|  | 2467 | *   iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled | 
|  | 2468 | *   to replenish the iwl->rxq->rx_free. | 
|  | 2469 | * + In il_rx_replenish (scheduled) if 'processed' != 'read' then the | 
|  | 2470 | *   iwl->rxq is replenished and the READ IDX is updated (updating the | 
|  | 2471 | *   'processed' and 'read' driver idxes as well) | 
|  | 2472 | * + A received packet is processed and handed to the kernel network stack, | 
|  | 2473 | *   detached from the iwl->rxq.  The driver 'processed' idx is updated. | 
|  | 2474 | * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free | 
|  | 2475 | *   list. If there are no allocated buffers in iwl->rxq->rx_free, the READ | 
|  | 2476 | *   IDX is not incremented and iwl->status(RX_STALLED) is set.  If there | 
|  | 2477 | *   were enough free buffers and RX_STALLED is set it is cleared. | 
|  | 2478 | * | 
|  | 2479 | * | 
|  | 2480 | * Driver sequence: | 
|  | 2481 | * | 
|  | 2482 | * il_rx_queue_alloc()   Allocates rx_free | 
|  | 2483 | * il_rx_replenish()     Replenishes rx_free list from rx_used, and calls | 
|  | 2484 | *                            il_rx_queue_restock | 
|  | 2485 | * il_rx_queue_restock() Moves available buffers from rx_free into Rx | 
|  | 2486 | *                            queue, updates firmware pointers, and updates | 
|  | 2487 | *                            the WRITE idx.  If insufficient rx_free buffers | 
|  | 2488 | *                            are available, schedules il_rx_replenish | 
|  | 2489 | * | 
|  | 2490 | * -- enable interrupts -- | 
|  | 2491 | * ISR - il_rx()         Detach il_rx_bufs from pool up to the | 
|  | 2492 | *                            READ IDX, detaching the SKB from the pool. | 
|  | 2493 | *                            Moves the packet buffer from queue to rx_used. | 
|  | 2494 | *                            Calls il_rx_queue_restock to refill any empty | 
|  | 2495 | *                            slots. | 
|  | 2496 | * ... | 
|  | 2497 | * | 
|  | 2498 | */ | 
|  | 2499 |  | 
|  | 2500 | /** | 
|  | 2501 | * il_rx_queue_space - Return number of free slots available in queue. | 
|  | 2502 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2503 | int | 
|  | 2504 | il_rx_queue_space(const struct il_rx_queue *q) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2505 | { | 
|  | 2506 | int s = q->read - q->write; | 
|  | 2507 | if (s <= 0) | 
|  | 2508 | s += RX_QUEUE_SIZE; | 
|  | 2509 | /* keep some buffer to not confuse full and empty queue */ | 
|  | 2510 | s -= 2; | 
|  | 2511 | if (s < 0) | 
|  | 2512 | s = 0; | 
|  | 2513 | return s; | 
|  | 2514 | } | 
|  | 2515 | EXPORT_SYMBOL(il_rx_queue_space); | 
|  | 2516 |  | 
|  | 2517 | /** | 
|  | 2518 | * il_rx_queue_update_write_ptr - Update the write pointer for the RX queue | 
|  | 2519 | */ | 
|  | 2520 | void | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2521 | il_rx_queue_update_write_ptr(struct il_priv *il, struct il_rx_queue *q) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2522 | { | 
|  | 2523 | unsigned long flags; | 
|  | 2524 | u32 rx_wrt_ptr_reg = il->hw_params.rx_wrt_ptr_reg; | 
|  | 2525 | u32 reg; | 
|  | 2526 |  | 
|  | 2527 | spin_lock_irqsave(&q->lock, flags); | 
|  | 2528 |  | 
|  | 2529 | if (q->need_update == 0) | 
|  | 2530 | goto exit_unlock; | 
|  | 2531 |  | 
|  | 2532 | /* If power-saving is in use, make sure device is awake */ | 
|  | 2533 | if (test_bit(S_POWER_PMI, &il->status)) { | 
|  | 2534 | reg = _il_rd(il, CSR_UCODE_DRV_GP1); | 
|  | 2535 |  | 
|  | 2536 | if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2537 | D_INFO("Rx queue requesting wakeup," " GP1 = 0x%x\n", | 
|  | 2538 | reg); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2539 | il_set_bit(il, CSR_GP_CNTRL, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2540 | CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2541 | goto exit_unlock; | 
|  | 2542 | } | 
|  | 2543 |  | 
|  | 2544 | q->write_actual = (q->write & ~0x7); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2545 | il_wr(il, rx_wrt_ptr_reg, q->write_actual); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2546 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2547 | /* Else device is assumed to be awake */ | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2548 | } else { | 
|  | 2549 | /* Device expects a multiple of 8 */ | 
|  | 2550 | q->write_actual = (q->write & ~0x7); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2551 | il_wr(il, rx_wrt_ptr_reg, q->write_actual); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2552 | } | 
|  | 2553 |  | 
|  | 2554 | q->need_update = 0; | 
|  | 2555 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2556 | exit_unlock: | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2557 | spin_unlock_irqrestore(&q->lock, flags); | 
|  | 2558 | } | 
|  | 2559 | EXPORT_SYMBOL(il_rx_queue_update_write_ptr); | 
|  | 2560 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2561 | int | 
|  | 2562 | il_rx_queue_alloc(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2563 | { | 
|  | 2564 | struct il_rx_queue *rxq = &il->rxq; | 
|  | 2565 | struct device *dev = &il->pci_dev->dev; | 
|  | 2566 | int i; | 
|  | 2567 |  | 
|  | 2568 | spin_lock_init(&rxq->lock); | 
|  | 2569 | INIT_LIST_HEAD(&rxq->rx_free); | 
|  | 2570 | INIT_LIST_HEAD(&rxq->rx_used); | 
|  | 2571 |  | 
|  | 2572 | /* Alloc the circular buffer of Read Buffer Descriptors (RBDs) */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2573 | rxq->bd = | 
|  | 2574 | dma_alloc_coherent(dev, 4 * RX_QUEUE_SIZE, &rxq->bd_dma, | 
|  | 2575 | GFP_KERNEL); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2576 | if (!rxq->bd) | 
|  | 2577 | goto err_bd; | 
|  | 2578 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2579 | rxq->rb_stts = | 
|  | 2580 | dma_alloc_coherent(dev, sizeof(struct il_rb_status), | 
|  | 2581 | &rxq->rb_stts_dma, GFP_KERNEL); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2582 | if (!rxq->rb_stts) | 
|  | 2583 | goto err_rb; | 
|  | 2584 |  | 
|  | 2585 | /* Fill the rx_used queue with _all_ of the Rx buffers */ | 
|  | 2586 | for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) | 
|  | 2587 | list_add_tail(&rxq->pool[i].list, &rxq->rx_used); | 
|  | 2588 |  | 
|  | 2589 | /* Set us so that we have processed and used all buffers, but have | 
|  | 2590 | * not restocked the Rx queue with fresh buffers */ | 
|  | 2591 | rxq->read = rxq->write = 0; | 
|  | 2592 | rxq->write_actual = 0; | 
|  | 2593 | rxq->free_count = 0; | 
|  | 2594 | rxq->need_update = 0; | 
|  | 2595 | return 0; | 
|  | 2596 |  | 
|  | 2597 | err_rb: | 
|  | 2598 | dma_free_coherent(&il->pci_dev->dev, 4 * RX_QUEUE_SIZE, rxq->bd, | 
|  | 2599 | rxq->bd_dma); | 
|  | 2600 | err_bd: | 
|  | 2601 | return -ENOMEM; | 
|  | 2602 | } | 
|  | 2603 | EXPORT_SYMBOL(il_rx_queue_alloc); | 
|  | 2604 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2605 | void | 
|  | 2606 | il_hdl_spectrum_measurement(struct il_priv *il, struct il_rx_buf *rxb) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2607 | { | 
|  | 2608 | struct il_rx_pkt *pkt = rxb_addr(rxb); | 
|  | 2609 | struct il_spectrum_notification *report = &(pkt->u.spectrum_notif); | 
|  | 2610 |  | 
|  | 2611 | if (!report->state) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2612 | D_11H("Spectrum Measure Notification: Start\n"); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2613 | return; | 
|  | 2614 | } | 
|  | 2615 |  | 
|  | 2616 | memcpy(&il->measure_report, report, sizeof(*report)); | 
|  | 2617 | il->measurement_status |= MEASUREMENT_READY; | 
|  | 2618 | } | 
|  | 2619 | EXPORT_SYMBOL(il_hdl_spectrum_measurement); | 
|  | 2620 |  | 
|  | 2621 | /* | 
|  | 2622 | * returns non-zero if packet should be dropped | 
|  | 2623 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2624 | int | 
|  | 2625 | il_set_decrypted_flag(struct il_priv *il, struct ieee80211_hdr *hdr, | 
|  | 2626 | u32 decrypt_res, struct ieee80211_rx_status *stats) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2627 | { | 
|  | 2628 | u16 fc = le16_to_cpu(hdr->frame_control); | 
|  | 2629 |  | 
|  | 2630 | /* | 
|  | 2631 | * All contexts have the same setting here due to it being | 
|  | 2632 | * a module parameter, so OK to check any context. | 
|  | 2633 | */ | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 2634 | if (il->active.filter_flags & RXON_FILTER_DIS_DECRYPT_MSK) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2635 | return 0; | 
|  | 2636 |  | 
|  | 2637 | if (!(fc & IEEE80211_FCTL_PROTECTED)) | 
|  | 2638 | return 0; | 
|  | 2639 |  | 
|  | 2640 | D_RX("decrypt_res:0x%x\n", decrypt_res); | 
|  | 2641 | switch (decrypt_res & RX_RES_STATUS_SEC_TYPE_MSK) { | 
|  | 2642 | case RX_RES_STATUS_SEC_TYPE_TKIP: | 
|  | 2643 | /* The uCode has got a bad phase 1 Key, pushes the packet. | 
|  | 2644 | * Decryption will be done in SW. */ | 
|  | 2645 | if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) == | 
|  | 2646 | RX_RES_STATUS_BAD_KEY_TTAK) | 
|  | 2647 | break; | 
|  | 2648 |  | 
|  | 2649 | case RX_RES_STATUS_SEC_TYPE_WEP: | 
|  | 2650 | if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) == | 
|  | 2651 | RX_RES_STATUS_BAD_ICV_MIC) { | 
|  | 2652 | /* bad ICV, the packet is destroyed since the | 
|  | 2653 | * decryption is inplace, drop it */ | 
|  | 2654 | D_RX("Packet destroyed\n"); | 
|  | 2655 | return -1; | 
|  | 2656 | } | 
|  | 2657 | case RX_RES_STATUS_SEC_TYPE_CCMP: | 
|  | 2658 | if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) == | 
|  | 2659 | RX_RES_STATUS_DECRYPT_OK) { | 
|  | 2660 | D_RX("hw decrypt successfully!!!\n"); | 
|  | 2661 | stats->flag |= RX_FLAG_DECRYPTED; | 
|  | 2662 | } | 
|  | 2663 | break; | 
|  | 2664 |  | 
|  | 2665 | default: | 
|  | 2666 | break; | 
|  | 2667 | } | 
|  | 2668 | return 0; | 
|  | 2669 | } | 
|  | 2670 | EXPORT_SYMBOL(il_set_decrypted_flag); | 
|  | 2671 |  | 
|  | 2672 | /** | 
|  | 2673 | * il_txq_update_write_ptr - Send new write idx to hardware | 
|  | 2674 | */ | 
|  | 2675 | void | 
|  | 2676 | il_txq_update_write_ptr(struct il_priv *il, struct il_tx_queue *txq) | 
|  | 2677 | { | 
|  | 2678 | u32 reg = 0; | 
|  | 2679 | int txq_id = txq->q.id; | 
|  | 2680 |  | 
|  | 2681 | if (txq->need_update == 0) | 
|  | 2682 | return; | 
|  | 2683 |  | 
|  | 2684 | /* if we're trying to save power */ | 
|  | 2685 | if (test_bit(S_POWER_PMI, &il->status)) { | 
|  | 2686 | /* wake up nic if it's powered down ... | 
|  | 2687 | * uCode will wake up, and interrupt us again, so next | 
|  | 2688 | * time we'll skip this part. */ | 
|  | 2689 | reg = _il_rd(il, CSR_UCODE_DRV_GP1); | 
|  | 2690 |  | 
|  | 2691 | if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2692 | D_INFO("Tx queue %d requesting wakeup," " GP1 = 0x%x\n", | 
|  | 2693 | txq_id, reg); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2694 | il_set_bit(il, CSR_GP_CNTRL, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2695 | CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2696 | return; | 
|  | 2697 | } | 
|  | 2698 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2699 | il_wr(il, HBUS_TARG_WRPTR, txq->q.write_ptr | (txq_id << 8)); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2700 |  | 
|  | 2701 | /* | 
|  | 2702 | * else not in power-save mode, | 
|  | 2703 | * uCode will never sleep when we're | 
|  | 2704 | * trying to tx (during RFKILL, we're not trying to tx). | 
|  | 2705 | */ | 
|  | 2706 | } else | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2707 | _il_wr(il, HBUS_TARG_WRPTR, txq->q.write_ptr | (txq_id << 8)); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2708 | txq->need_update = 0; | 
|  | 2709 | } | 
|  | 2710 | EXPORT_SYMBOL(il_txq_update_write_ptr); | 
|  | 2711 |  | 
|  | 2712 | /** | 
|  | 2713 | * il_tx_queue_unmap -  Unmap any remaining DMA mappings and free skb's | 
|  | 2714 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2715 | void | 
|  | 2716 | il_tx_queue_unmap(struct il_priv *il, int txq_id) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2717 | { | 
|  | 2718 | struct il_tx_queue *txq = &il->txq[txq_id]; | 
|  | 2719 | struct il_queue *q = &txq->q; | 
|  | 2720 |  | 
|  | 2721 | if (q->n_bd == 0) | 
|  | 2722 | return; | 
|  | 2723 |  | 
|  | 2724 | while (q->write_ptr != q->read_ptr) { | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 2725 | il->ops->lib->txq_free_tfd(il, txq); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2726 | q->read_ptr = il_queue_inc_wrap(q->read_ptr, q->n_bd); | 
|  | 2727 | } | 
|  | 2728 | } | 
|  | 2729 | EXPORT_SYMBOL(il_tx_queue_unmap); | 
|  | 2730 |  | 
|  | 2731 | /** | 
|  | 2732 | * il_tx_queue_free - Deallocate DMA queue. | 
|  | 2733 | * @txq: Transmit queue to deallocate. | 
|  | 2734 | * | 
|  | 2735 | * Empty queue by removing and destroying all BD's. | 
|  | 2736 | * Free all buffers. | 
|  | 2737 | * 0-fill, but do not free "txq" descriptor structure. | 
|  | 2738 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2739 | void | 
|  | 2740 | il_tx_queue_free(struct il_priv *il, int txq_id) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2741 | { | 
|  | 2742 | struct il_tx_queue *txq = &il->txq[txq_id]; | 
|  | 2743 | struct device *dev = &il->pci_dev->dev; | 
|  | 2744 | int i; | 
|  | 2745 |  | 
|  | 2746 | il_tx_queue_unmap(il, txq_id); | 
|  | 2747 |  | 
|  | 2748 | /* De-alloc array of command/tx buffers */ | 
|  | 2749 | for (i = 0; i < TFD_TX_CMD_SLOTS; i++) | 
|  | 2750 | kfree(txq->cmd[i]); | 
|  | 2751 |  | 
|  | 2752 | /* De-alloc circular buffer of TFDs */ | 
|  | 2753 | if (txq->q.n_bd) | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2754 | dma_free_coherent(dev, il->hw_params.tfd_size * txq->q.n_bd, | 
|  | 2755 | txq->tfds, txq->q.dma_addr); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2756 |  | 
|  | 2757 | /* De-alloc array of per-TFD driver data */ | 
| Stanislaw Gruszka | 00ea99e | 2012-02-03 17:32:00 +0100 | [diff] [blame] | 2758 | kfree(txq->skbs); | 
|  | 2759 | txq->skbs = NULL; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2760 |  | 
|  | 2761 | /* deallocate arrays */ | 
|  | 2762 | kfree(txq->cmd); | 
|  | 2763 | kfree(txq->meta); | 
|  | 2764 | txq->cmd = NULL; | 
|  | 2765 | txq->meta = NULL; | 
|  | 2766 |  | 
|  | 2767 | /* 0-fill queue descriptor structure */ | 
|  | 2768 | memset(txq, 0, sizeof(*txq)); | 
|  | 2769 | } | 
|  | 2770 | EXPORT_SYMBOL(il_tx_queue_free); | 
|  | 2771 |  | 
|  | 2772 | /** | 
|  | 2773 | * il_cmd_queue_unmap - Unmap any remaining DMA mappings from command queue | 
|  | 2774 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2775 | void | 
|  | 2776 | il_cmd_queue_unmap(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2777 | { | 
|  | 2778 | struct il_tx_queue *txq = &il->txq[il->cmd_queue]; | 
|  | 2779 | struct il_queue *q = &txq->q; | 
|  | 2780 | int i; | 
|  | 2781 |  | 
|  | 2782 | if (q->n_bd == 0) | 
|  | 2783 | return; | 
|  | 2784 |  | 
|  | 2785 | while (q->read_ptr != q->write_ptr) { | 
|  | 2786 | i = il_get_cmd_idx(q, q->read_ptr, 0); | 
|  | 2787 |  | 
|  | 2788 | if (txq->meta[i].flags & CMD_MAPPED) { | 
|  | 2789 | pci_unmap_single(il->pci_dev, | 
|  | 2790 | dma_unmap_addr(&txq->meta[i], mapping), | 
|  | 2791 | dma_unmap_len(&txq->meta[i], len), | 
|  | 2792 | PCI_DMA_BIDIRECTIONAL); | 
|  | 2793 | txq->meta[i].flags = 0; | 
|  | 2794 | } | 
|  | 2795 |  | 
|  | 2796 | q->read_ptr = il_queue_inc_wrap(q->read_ptr, q->n_bd); | 
|  | 2797 | } | 
|  | 2798 |  | 
|  | 2799 | i = q->n_win; | 
|  | 2800 | if (txq->meta[i].flags & CMD_MAPPED) { | 
|  | 2801 | pci_unmap_single(il->pci_dev, | 
|  | 2802 | dma_unmap_addr(&txq->meta[i], mapping), | 
|  | 2803 | dma_unmap_len(&txq->meta[i], len), | 
|  | 2804 | PCI_DMA_BIDIRECTIONAL); | 
|  | 2805 | txq->meta[i].flags = 0; | 
|  | 2806 | } | 
|  | 2807 | } | 
|  | 2808 | EXPORT_SYMBOL(il_cmd_queue_unmap); | 
|  | 2809 |  | 
|  | 2810 | /** | 
|  | 2811 | * il_cmd_queue_free - Deallocate DMA queue. | 
|  | 2812 | * @txq: Transmit queue to deallocate. | 
|  | 2813 | * | 
|  | 2814 | * Empty queue by removing and destroying all BD's. | 
|  | 2815 | * Free all buffers. | 
|  | 2816 | * 0-fill, but do not free "txq" descriptor structure. | 
|  | 2817 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2818 | void | 
|  | 2819 | il_cmd_queue_free(struct il_priv *il) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2820 | { | 
|  | 2821 | struct il_tx_queue *txq = &il->txq[il->cmd_queue]; | 
|  | 2822 | struct device *dev = &il->pci_dev->dev; | 
|  | 2823 | int i; | 
|  | 2824 |  | 
|  | 2825 | il_cmd_queue_unmap(il); | 
|  | 2826 |  | 
|  | 2827 | /* De-alloc array of command/tx buffers */ | 
|  | 2828 | for (i = 0; i <= TFD_CMD_SLOTS; i++) | 
|  | 2829 | kfree(txq->cmd[i]); | 
|  | 2830 |  | 
|  | 2831 | /* De-alloc circular buffer of TFDs */ | 
|  | 2832 | if (txq->q.n_bd) | 
|  | 2833 | dma_free_coherent(dev, il->hw_params.tfd_size * txq->q.n_bd, | 
|  | 2834 | txq->tfds, txq->q.dma_addr); | 
|  | 2835 |  | 
|  | 2836 | /* deallocate arrays */ | 
|  | 2837 | kfree(txq->cmd); | 
|  | 2838 | kfree(txq->meta); | 
|  | 2839 | txq->cmd = NULL; | 
|  | 2840 | txq->meta = NULL; | 
|  | 2841 |  | 
|  | 2842 | /* 0-fill queue descriptor structure */ | 
|  | 2843 | memset(txq, 0, sizeof(*txq)); | 
|  | 2844 | } | 
|  | 2845 | EXPORT_SYMBOL(il_cmd_queue_free); | 
|  | 2846 |  | 
|  | 2847 | /*************** DMA-QUEUE-GENERAL-FUNCTIONS  ***** | 
|  | 2848 | * DMA services | 
|  | 2849 | * | 
|  | 2850 | * Theory of operation | 
|  | 2851 | * | 
|  | 2852 | * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer | 
|  | 2853 | * of buffer descriptors, each of which points to one or more data buffers for | 
|  | 2854 | * the device to read from or fill.  Driver and device exchange status of each | 
|  | 2855 | * queue via "read" and "write" pointers.  Driver keeps minimum of 2 empty | 
|  | 2856 | * entries in each circular buffer, to protect against confusing empty and full | 
|  | 2857 | * queue states. | 
|  | 2858 | * | 
|  | 2859 | * The device reads or writes the data in the queues via the device's several | 
|  | 2860 | * DMA/FIFO channels.  Each queue is mapped to a single DMA channel. | 
|  | 2861 | * | 
|  | 2862 | * For Tx queue, there are low mark and high mark limits. If, after queuing | 
|  | 2863 | * the packet for Tx, free space become < low mark, Tx queue stopped. When | 
|  | 2864 | * reclaiming packets (on 'tx done IRQ), if free space become > high mark, | 
|  | 2865 | * Tx queue resumed. | 
|  | 2866 | * | 
|  | 2867 | * See more detailed info in 4965.h. | 
|  | 2868 | ***************************************************/ | 
|  | 2869 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2870 | int | 
|  | 2871 | il_queue_space(const struct il_queue *q) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2872 | { | 
|  | 2873 | int s = q->read_ptr - q->write_ptr; | 
|  | 2874 |  | 
|  | 2875 | if (q->read_ptr > q->write_ptr) | 
|  | 2876 | s -= q->n_bd; | 
|  | 2877 |  | 
|  | 2878 | if (s <= 0) | 
|  | 2879 | s += q->n_win; | 
|  | 2880 | /* keep some reserve to not confuse empty and full situations */ | 
|  | 2881 | s -= 2; | 
|  | 2882 | if (s < 0) | 
|  | 2883 | s = 0; | 
|  | 2884 | return s; | 
|  | 2885 | } | 
|  | 2886 | EXPORT_SYMBOL(il_queue_space); | 
|  | 2887 |  | 
|  | 2888 |  | 
|  | 2889 | /** | 
|  | 2890 | * il_queue_init - Initialize queue's high/low-water and read/write idxes | 
|  | 2891 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2892 | static int | 
|  | 2893 | il_queue_init(struct il_priv *il, struct il_queue *q, int count, int slots_num, | 
|  | 2894 | u32 id) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2895 | { | 
|  | 2896 | q->n_bd = count; | 
|  | 2897 | q->n_win = slots_num; | 
|  | 2898 | q->id = id; | 
|  | 2899 |  | 
|  | 2900 | /* count must be power-of-two size, otherwise il_queue_inc_wrap | 
|  | 2901 | * and il_queue_dec_wrap are broken. */ | 
|  | 2902 | BUG_ON(!is_power_of_2(count)); | 
|  | 2903 |  | 
|  | 2904 | /* slots_num must be power-of-two size, otherwise | 
|  | 2905 | * il_get_cmd_idx is broken. */ | 
|  | 2906 | BUG_ON(!is_power_of_2(slots_num)); | 
|  | 2907 |  | 
|  | 2908 | q->low_mark = q->n_win / 4; | 
|  | 2909 | if (q->low_mark < 4) | 
|  | 2910 | q->low_mark = 4; | 
|  | 2911 |  | 
|  | 2912 | q->high_mark = q->n_win / 8; | 
|  | 2913 | if (q->high_mark < 2) | 
|  | 2914 | q->high_mark = 2; | 
|  | 2915 |  | 
|  | 2916 | q->write_ptr = q->read_ptr = 0; | 
|  | 2917 |  | 
|  | 2918 | return 0; | 
|  | 2919 | } | 
|  | 2920 |  | 
|  | 2921 | /** | 
|  | 2922 | * il_tx_queue_alloc - Alloc driver data and TFD CB for one Tx/cmd queue | 
|  | 2923 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2924 | static int | 
|  | 2925 | il_tx_queue_alloc(struct il_priv *il, struct il_tx_queue *txq, u32 id) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2926 | { | 
|  | 2927 | struct device *dev = &il->pci_dev->dev; | 
|  | 2928 | size_t tfd_sz = il->hw_params.tfd_size * TFD_QUEUE_SIZE_MAX; | 
|  | 2929 |  | 
|  | 2930 | /* Driver ilate data, only for Tx (not command) queues, | 
|  | 2931 | * not shared with device. */ | 
|  | 2932 | if (id != il->cmd_queue) { | 
| Stanislaw Gruszka | 00ea99e | 2012-02-03 17:32:00 +0100 | [diff] [blame] | 2933 | txq->skbs = kcalloc(TFD_QUEUE_SIZE_MAX, sizeof(struct skb *), | 
|  | 2934 | GFP_KERNEL); | 
|  | 2935 | if (!txq->skbs) { | 
|  | 2936 | IL_ERR("Fail to alloc skbs\n"); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2937 | goto error; | 
|  | 2938 | } | 
| Stanislaw Gruszka | 00ea99e | 2012-02-03 17:32:00 +0100 | [diff] [blame] | 2939 | } else | 
|  | 2940 | txq->skbs = NULL; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2941 |  | 
|  | 2942 | /* Circular buffer of transmit frame descriptors (TFDs), | 
|  | 2943 | * shared with device */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2944 | txq->tfds = | 
|  | 2945 | dma_alloc_coherent(dev, tfd_sz, &txq->q.dma_addr, GFP_KERNEL); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2946 | if (!txq->tfds) { | 
| Stanislaw Gruszka | 00ea99e | 2012-02-03 17:32:00 +0100 | [diff] [blame] | 2947 | IL_ERR("Fail to alloc TFDs\n"); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2948 | goto error; | 
|  | 2949 | } | 
|  | 2950 | txq->q.id = id; | 
|  | 2951 |  | 
|  | 2952 | return 0; | 
|  | 2953 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2954 | error: | 
| Stanislaw Gruszka | 00ea99e | 2012-02-03 17:32:00 +0100 | [diff] [blame] | 2955 | kfree(txq->skbs); | 
|  | 2956 | txq->skbs = NULL; | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2957 |  | 
|  | 2958 | return -ENOMEM; | 
|  | 2959 | } | 
|  | 2960 |  | 
|  | 2961 | /** | 
|  | 2962 | * il_tx_queue_init - Allocate and initialize one tx/cmd queue | 
|  | 2963 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2964 | int | 
|  | 2965 | il_tx_queue_init(struct il_priv *il, struct il_tx_queue *txq, int slots_num, | 
|  | 2966 | u32 txq_id) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2967 | { | 
|  | 2968 | int i, len; | 
|  | 2969 | int ret; | 
|  | 2970 | int actual_slots = slots_num; | 
|  | 2971 |  | 
|  | 2972 | /* | 
|  | 2973 | * Alloc buffer array for commands (Tx or other types of commands). | 
|  | 2974 | * For the command queue (#4/#9), allocate command space + one big | 
|  | 2975 | * command for scan, since scan command is very huge; the system will | 
|  | 2976 | * not have two scans at the same time, so only one is needed. | 
|  | 2977 | * For normal Tx queues (all other queues), no super-size command | 
|  | 2978 | * space is needed. | 
|  | 2979 | */ | 
|  | 2980 | if (txq_id == il->cmd_queue) | 
|  | 2981 | actual_slots++; | 
|  | 2982 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2983 | txq->meta = | 
|  | 2984 | kzalloc(sizeof(struct il_cmd_meta) * actual_slots, GFP_KERNEL); | 
|  | 2985 | txq->cmd = | 
|  | 2986 | kzalloc(sizeof(struct il_device_cmd *) * actual_slots, GFP_KERNEL); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2987 |  | 
|  | 2988 | if (!txq->meta || !txq->cmd) | 
|  | 2989 | goto out_free_arrays; | 
|  | 2990 |  | 
|  | 2991 | len = sizeof(struct il_device_cmd); | 
|  | 2992 | for (i = 0; i < actual_slots; i++) { | 
|  | 2993 | /* only happens for cmd queue */ | 
|  | 2994 | if (i == slots_num) | 
|  | 2995 | len = IL_MAX_CMD_SIZE; | 
|  | 2996 |  | 
|  | 2997 | txq->cmd[i] = kmalloc(len, GFP_KERNEL); | 
|  | 2998 | if (!txq->cmd[i]) | 
|  | 2999 | goto err; | 
|  | 3000 | } | 
|  | 3001 |  | 
|  | 3002 | /* Alloc driver data array and TFD circular buffer */ | 
|  | 3003 | ret = il_tx_queue_alloc(il, txq, txq_id); | 
|  | 3004 | if (ret) | 
|  | 3005 | goto err; | 
|  | 3006 |  | 
|  | 3007 | txq->need_update = 0; | 
|  | 3008 |  | 
|  | 3009 | /* | 
|  | 3010 | * For the default queues 0-3, set up the swq_id | 
|  | 3011 | * already -- all others need to get one later | 
|  | 3012 | * (if they need one at all). | 
|  | 3013 | */ | 
|  | 3014 | if (txq_id < 4) | 
|  | 3015 | il_set_swq_id(txq, txq_id, txq_id); | 
|  | 3016 |  | 
|  | 3017 | /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise | 
|  | 3018 | * il_queue_inc_wrap and il_queue_dec_wrap are broken. */ | 
|  | 3019 | BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1)); | 
|  | 3020 |  | 
|  | 3021 | /* Initialize queue's high/low-water marks, and head/tail idxes */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3022 | il_queue_init(il, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3023 |  | 
|  | 3024 | /* Tell device where to find queue */ | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 3025 | il->ops->lib->txq_init(il, txq); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3026 |  | 
|  | 3027 | return 0; | 
|  | 3028 | err: | 
|  | 3029 | for (i = 0; i < actual_slots; i++) | 
|  | 3030 | kfree(txq->cmd[i]); | 
|  | 3031 | out_free_arrays: | 
|  | 3032 | kfree(txq->meta); | 
|  | 3033 | kfree(txq->cmd); | 
|  | 3034 |  | 
|  | 3035 | return -ENOMEM; | 
|  | 3036 | } | 
|  | 3037 | EXPORT_SYMBOL(il_tx_queue_init); | 
|  | 3038 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3039 | void | 
|  | 3040 | il_tx_queue_reset(struct il_priv *il, struct il_tx_queue *txq, int slots_num, | 
|  | 3041 | u32 txq_id) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3042 | { | 
|  | 3043 | int actual_slots = slots_num; | 
|  | 3044 |  | 
|  | 3045 | if (txq_id == il->cmd_queue) | 
|  | 3046 | actual_slots++; | 
|  | 3047 |  | 
|  | 3048 | memset(txq->meta, 0, sizeof(struct il_cmd_meta) * actual_slots); | 
|  | 3049 |  | 
|  | 3050 | txq->need_update = 0; | 
|  | 3051 |  | 
|  | 3052 | /* Initialize queue's high/low-water marks, and head/tail idxes */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3053 | il_queue_init(il, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3054 |  | 
|  | 3055 | /* Tell device where to find queue */ | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 3056 | il->ops->lib->txq_init(il, txq); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3057 | } | 
|  | 3058 | EXPORT_SYMBOL(il_tx_queue_reset); | 
|  | 3059 |  | 
|  | 3060 | /*************** HOST COMMAND QUEUE FUNCTIONS   *****/ | 
|  | 3061 |  | 
|  | 3062 | /** | 
|  | 3063 | * il_enqueue_hcmd - enqueue a uCode command | 
|  | 3064 | * @il: device ilate data point | 
|  | 3065 | * @cmd: a point to the ucode command structure | 
|  | 3066 | * | 
|  | 3067 | * The function returns < 0 values to indicate the operation is | 
|  | 3068 | * failed. On success, it turns the idx (> 0) of command in the | 
|  | 3069 | * command queue. | 
|  | 3070 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3071 | int | 
|  | 3072 | il_enqueue_hcmd(struct il_priv *il, struct il_host_cmd *cmd) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3073 | { | 
|  | 3074 | struct il_tx_queue *txq = &il->txq[il->cmd_queue]; | 
|  | 3075 | struct il_queue *q = &txq->q; | 
|  | 3076 | struct il_device_cmd *out_cmd; | 
|  | 3077 | struct il_cmd_meta *out_meta; | 
|  | 3078 | dma_addr_t phys_addr; | 
|  | 3079 | unsigned long flags; | 
|  | 3080 | int len; | 
|  | 3081 | u32 idx; | 
|  | 3082 | u16 fix_size; | 
|  | 3083 |  | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 3084 | cmd->len = il->ops->utils->get_hcmd_size(cmd->id, cmd->len); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3085 | fix_size = (u16) (cmd->len + sizeof(out_cmd->hdr)); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3086 |  | 
|  | 3087 | /* If any of the command structures end up being larger than | 
|  | 3088 | * the TFD_MAX_PAYLOAD_SIZE, and it sent as a 'small' command then | 
|  | 3089 | * we will need to increase the size of the TFD entries | 
|  | 3090 | * Also, check to see if command buffer should not exceed the size | 
|  | 3091 | * of device_cmd and max_cmd_size. */ | 
|  | 3092 | BUG_ON((fix_size > TFD_MAX_PAYLOAD_SIZE) && | 
|  | 3093 | !(cmd->flags & CMD_SIZE_HUGE)); | 
|  | 3094 | BUG_ON(fix_size > IL_MAX_CMD_SIZE); | 
|  | 3095 |  | 
|  | 3096 | if (il_is_rfkill(il) || il_is_ctkill(il)) { | 
|  | 3097 | IL_WARN("Not sending command - %s KILL\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3098 | il_is_rfkill(il) ? "RF" : "CT"); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3099 | return -EIO; | 
|  | 3100 | } | 
|  | 3101 |  | 
|  | 3102 | spin_lock_irqsave(&il->hcmd_lock, flags); | 
|  | 3103 |  | 
|  | 3104 | if (il_queue_space(q) < ((cmd->flags & CMD_ASYNC) ? 2 : 1)) { | 
|  | 3105 | spin_unlock_irqrestore(&il->hcmd_lock, flags); | 
|  | 3106 |  | 
|  | 3107 | IL_ERR("Restarting adapter due to command queue full\n"); | 
|  | 3108 | queue_work(il->workqueue, &il->restart); | 
|  | 3109 | return -ENOSPC; | 
|  | 3110 | } | 
|  | 3111 |  | 
|  | 3112 | idx = il_get_cmd_idx(q, q->write_ptr, cmd->flags & CMD_SIZE_HUGE); | 
|  | 3113 | out_cmd = txq->cmd[idx]; | 
|  | 3114 | out_meta = &txq->meta[idx]; | 
|  | 3115 |  | 
|  | 3116 | if (WARN_ON(out_meta->flags & CMD_MAPPED)) { | 
|  | 3117 | spin_unlock_irqrestore(&il->hcmd_lock, flags); | 
|  | 3118 | return -ENOSPC; | 
|  | 3119 | } | 
|  | 3120 |  | 
|  | 3121 | memset(out_meta, 0, sizeof(*out_meta));	/* re-initialize to NULL */ | 
|  | 3122 | out_meta->flags = cmd->flags | CMD_MAPPED; | 
|  | 3123 | if (cmd->flags & CMD_WANT_SKB) | 
|  | 3124 | out_meta->source = cmd; | 
|  | 3125 | if (cmd->flags & CMD_ASYNC) | 
|  | 3126 | out_meta->callback = cmd->callback; | 
|  | 3127 |  | 
|  | 3128 | out_cmd->hdr.cmd = cmd->id; | 
|  | 3129 | memcpy(&out_cmd->cmd.payload, cmd->data, cmd->len); | 
|  | 3130 |  | 
|  | 3131 | /* At this point, the out_cmd now has all of the incoming cmd | 
|  | 3132 | * information */ | 
|  | 3133 |  | 
|  | 3134 | out_cmd->hdr.flags = 0; | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3135 | out_cmd->hdr.sequence = | 
|  | 3136 | cpu_to_le16(QUEUE_TO_SEQ(il->cmd_queue) | IDX_TO_SEQ(q->write_ptr)); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3137 | if (cmd->flags & CMD_SIZE_HUGE) | 
|  | 3138 | out_cmd->hdr.sequence |= SEQ_HUGE_FRAME; | 
|  | 3139 | len = sizeof(struct il_device_cmd); | 
|  | 3140 | if (idx == TFD_CMD_SLOTS) | 
|  | 3141 | len = IL_MAX_CMD_SIZE; | 
|  | 3142 |  | 
|  | 3143 | #ifdef CONFIG_IWLEGACY_DEBUG | 
|  | 3144 | switch (out_cmd->hdr.cmd) { | 
|  | 3145 | case C_TX_LINK_QUALITY_CMD: | 
|  | 3146 | case C_SENSITIVITY: | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3147 | D_HC_DUMP("Sending command %s (#%x), seq: 0x%04X, " | 
|  | 3148 | "%d bytes at %d[%d]:%d\n", | 
|  | 3149 | il_get_cmd_string(out_cmd->hdr.cmd), out_cmd->hdr.cmd, | 
|  | 3150 | le16_to_cpu(out_cmd->hdr.sequence), fix_size, | 
|  | 3151 | q->write_ptr, idx, il->cmd_queue); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3152 | break; | 
|  | 3153 | default: | 
|  | 3154 | D_HC("Sending command %s (#%x), seq: 0x%04X, " | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3155 | "%d bytes at %d[%d]:%d\n", | 
|  | 3156 | il_get_cmd_string(out_cmd->hdr.cmd), out_cmd->hdr.cmd, | 
|  | 3157 | le16_to_cpu(out_cmd->hdr.sequence), fix_size, q->write_ptr, | 
|  | 3158 | idx, il->cmd_queue); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3159 | } | 
|  | 3160 | #endif | 
|  | 3161 | txq->need_update = 1; | 
|  | 3162 |  | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 3163 | if (il->ops->lib->txq_update_byte_cnt_tbl) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3164 | /* Set up entry in queue's byte count circular buffer */ | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 3165 | il->ops->lib->txq_update_byte_cnt_tbl(il, txq, 0); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3166 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3167 | phys_addr = | 
|  | 3168 | pci_map_single(il->pci_dev, &out_cmd->hdr, fix_size, | 
|  | 3169 | PCI_DMA_BIDIRECTIONAL); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3170 | dma_unmap_addr_set(out_meta, mapping, phys_addr); | 
|  | 3171 | dma_unmap_len_set(out_meta, len, fix_size); | 
|  | 3172 |  | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 3173 | il->ops->lib->txq_attach_buf_to_tfd(il, txq, phys_addr, fix_size, 1, | 
|  | 3174 | U32_PAD(cmd->len)); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3175 |  | 
|  | 3176 | /* Increment and update queue's write idx */ | 
|  | 3177 | q->write_ptr = il_queue_inc_wrap(q->write_ptr, q->n_bd); | 
|  | 3178 | il_txq_update_write_ptr(il, txq); | 
|  | 3179 |  | 
|  | 3180 | spin_unlock_irqrestore(&il->hcmd_lock, flags); | 
|  | 3181 | return idx; | 
|  | 3182 | } | 
|  | 3183 |  | 
|  | 3184 | /** | 
|  | 3185 | * il_hcmd_queue_reclaim - Reclaim TX command queue entries already Tx'd | 
|  | 3186 | * | 
|  | 3187 | * When FW advances 'R' idx, all entries between old and new 'R' idx | 
|  | 3188 | * need to be reclaimed. As result, some free space forms.  If there is | 
|  | 3189 | * enough free space (> low mark), wake the stack that feeds us. | 
|  | 3190 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3191 | static void | 
|  | 3192 | il_hcmd_queue_reclaim(struct il_priv *il, int txq_id, int idx, int cmd_idx) | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3193 | { | 
|  | 3194 | struct il_tx_queue *txq = &il->txq[txq_id]; | 
|  | 3195 | struct il_queue *q = &txq->q; | 
|  | 3196 | int nfreed = 0; | 
|  | 3197 |  | 
|  | 3198 | if (idx >= q->n_bd || il_queue_used(q, idx) == 0) { | 
|  | 3199 | IL_ERR("Read idx for DMA queue txq id (%d), idx %d, " | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3200 | "is out of range [0-%d] %d %d.\n", txq_id, idx, q->n_bd, | 
|  | 3201 | q->write_ptr, q->read_ptr); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3202 | return; | 
|  | 3203 | } | 
|  | 3204 |  | 
|  | 3205 | for (idx = il_queue_inc_wrap(idx, q->n_bd); q->read_ptr != idx; | 
|  | 3206 | q->read_ptr = il_queue_inc_wrap(q->read_ptr, q->n_bd)) { | 
|  | 3207 |  | 
|  | 3208 | if (nfreed++ > 0) { | 
|  | 3209 | IL_ERR("HCMD skipped: idx (%d) %d %d\n", idx, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3210 | q->write_ptr, q->read_ptr); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3211 | queue_work(il->workqueue, &il->restart); | 
|  | 3212 | } | 
|  | 3213 |  | 
|  | 3214 | } | 
|  | 3215 | } | 
|  | 3216 |  | 
|  | 3217 | /** | 
|  | 3218 | * il_tx_cmd_complete - Pull unused buffers off the queue and reclaim them | 
|  | 3219 | * @rxb: Rx buffer to reclaim | 
|  | 3220 | * | 
|  | 3221 | * If an Rx buffer has an async callback associated with it the callback | 
|  | 3222 | * will be executed.  The attached skb (if present) will only be freed | 
|  | 3223 | * if the callback returns 1 | 
|  | 3224 | */ | 
|  | 3225 | void | 
|  | 3226 | il_tx_cmd_complete(struct il_priv *il, struct il_rx_buf *rxb) | 
|  | 3227 | { | 
|  | 3228 | struct il_rx_pkt *pkt = rxb_addr(rxb); | 
|  | 3229 | u16 sequence = le16_to_cpu(pkt->hdr.sequence); | 
|  | 3230 | int txq_id = SEQ_TO_QUEUE(sequence); | 
|  | 3231 | int idx = SEQ_TO_IDX(sequence); | 
|  | 3232 | int cmd_idx; | 
|  | 3233 | bool huge = !!(pkt->hdr.sequence & SEQ_HUGE_FRAME); | 
|  | 3234 | struct il_device_cmd *cmd; | 
|  | 3235 | struct il_cmd_meta *meta; | 
|  | 3236 | struct il_tx_queue *txq = &il->txq[il->cmd_queue]; | 
|  | 3237 | unsigned long flags; | 
|  | 3238 |  | 
|  | 3239 | /* If a Tx command is being handled and it isn't in the actual | 
|  | 3240 | * command queue then there a command routing bug has been introduced | 
|  | 3241 | * in the queue management code. */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3242 | if (WARN | 
|  | 3243 | (txq_id != il->cmd_queue, | 
|  | 3244 | "wrong command queue %d (should be %d), sequence 0x%X readp=%d writep=%d\n", | 
|  | 3245 | txq_id, il->cmd_queue, sequence, il->txq[il->cmd_queue].q.read_ptr, | 
|  | 3246 | il->txq[il->cmd_queue].q.write_ptr)) { | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3247 | il_print_hex_error(il, pkt, 32); | 
|  | 3248 | return; | 
|  | 3249 | } | 
|  | 3250 |  | 
|  | 3251 | cmd_idx = il_get_cmd_idx(&txq->q, idx, huge); | 
|  | 3252 | cmd = txq->cmd[cmd_idx]; | 
|  | 3253 | meta = &txq->meta[cmd_idx]; | 
|  | 3254 |  | 
|  | 3255 | txq->time_stamp = jiffies; | 
|  | 3256 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3257 | pci_unmap_single(il->pci_dev, dma_unmap_addr(meta, mapping), | 
|  | 3258 | dma_unmap_len(meta, len), PCI_DMA_BIDIRECTIONAL); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3259 |  | 
|  | 3260 | /* Input error checking is done when commands are added to queue. */ | 
|  | 3261 | if (meta->flags & CMD_WANT_SKB) { | 
|  | 3262 | meta->source->reply_page = (unsigned long)rxb_addr(rxb); | 
|  | 3263 | rxb->page = NULL; | 
|  | 3264 | } else if (meta->callback) | 
|  | 3265 | meta->callback(il, cmd, pkt); | 
|  | 3266 |  | 
|  | 3267 | spin_lock_irqsave(&il->hcmd_lock, flags); | 
|  | 3268 |  | 
|  | 3269 | il_hcmd_queue_reclaim(il, txq_id, idx, cmd_idx); | 
|  | 3270 |  | 
|  | 3271 | if (!(meta->flags & CMD_ASYNC)) { | 
|  | 3272 | clear_bit(S_HCMD_ACTIVE, &il->status); | 
|  | 3273 | D_INFO("Clearing HCMD_ACTIVE for command %s\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3274 | il_get_cmd_string(cmd->hdr.cmd)); | 
| Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3275 | wake_up(&il->wait_command_queue); | 
|  | 3276 | } | 
|  | 3277 |  | 
|  | 3278 | /* Mark as unmapped */ | 
|  | 3279 | meta->flags = 0; | 
|  | 3280 |  | 
|  | 3281 | spin_unlock_irqrestore(&il->hcmd_lock, flags); | 
|  | 3282 | } | 
|  | 3283 | EXPORT_SYMBOL(il_tx_cmd_complete); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3284 |  | 
|  | 3285 | MODULE_DESCRIPTION("iwl-legacy: common functions for 3945 and 4965"); | 
|  | 3286 | MODULE_VERSION(IWLWIFI_VERSION); | 
|  | 3287 | MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR); | 
|  | 3288 | MODULE_LICENSE("GPL"); | 
|  | 3289 |  | 
|  | 3290 | /* | 
|  | 3291 | * set bt_coex_active to true, uCode will do kill/defer | 
|  | 3292 | * every time the priority line is asserted (BT is sending signals on the | 
|  | 3293 | * priority line in the PCIx). | 
|  | 3294 | * set bt_coex_active to false, uCode will ignore the BT activity and | 
|  | 3295 | * perform the normal operation | 
|  | 3296 | * | 
|  | 3297 | * User might experience transmit issue on some platform due to WiFi/BT | 
|  | 3298 | * co-exist problem. The possible behaviors are: | 
|  | 3299 | *   Able to scan and finding all the available AP | 
|  | 3300 | *   Not able to associate with any AP | 
|  | 3301 | * On those platforms, WiFi communication can be restored by set | 
|  | 3302 | * "bt_coex_active" module parameter to "false" | 
|  | 3303 | * | 
|  | 3304 | * default: bt_coex_active = true (BT_COEX_ENABLE) | 
|  | 3305 | */ | 
| John W. Linville | ef33417 | 2011-02-25 15:51:01 -0500 | [diff] [blame] | 3306 | static bool bt_coex_active = true; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3307 | module_param(bt_coex_active, bool, S_IRUGO); | 
|  | 3308 | MODULE_PARM_DESC(bt_coex_active, "enable wifi/bluetooth co-exist"); | 
|  | 3309 |  | 
| Stanislaw Gruszka | d2ddf62 | 2011-08-16 14:17:04 +0200 | [diff] [blame] | 3310 | u32 il_debug_level; | 
|  | 3311 | EXPORT_SYMBOL(il_debug_level); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3312 |  | 
| Stanislaw Gruszka | d2ddf62 | 2011-08-16 14:17:04 +0200 | [diff] [blame] | 3313 | const u8 il_bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }; | 
|  | 3314 | EXPORT_SYMBOL(il_bcast_addr); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3315 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3316 | #define MAX_BIT_RATE_40_MHZ 150	/* Mbps */ | 
|  | 3317 | #define MAX_BIT_RATE_20_MHZ 72	/* Mbps */ | 
|  | 3318 | static void | 
|  | 3319 | il_init_ht_hw_capab(const struct il_priv *il, | 
|  | 3320 | struct ieee80211_sta_ht_cap *ht_info, | 
|  | 3321 | enum ieee80211_band band) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3322 | { | 
|  | 3323 | u16 max_bit_rate = 0; | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3324 | u8 rx_chains_num = il->hw_params.rx_chains_num; | 
|  | 3325 | u8 tx_chains_num = il->hw_params.tx_chains_num; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3326 |  | 
|  | 3327 | ht_info->cap = 0; | 
|  | 3328 | memset(&ht_info->mcs, 0, sizeof(ht_info->mcs)); | 
|  | 3329 |  | 
|  | 3330 | ht_info->ht_supported = true; | 
|  | 3331 |  | 
|  | 3332 | ht_info->cap |= IEEE80211_HT_CAP_SGI_20; | 
|  | 3333 | max_bit_rate = MAX_BIT_RATE_20_MHZ; | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3334 | if (il->hw_params.ht40_channel & BIT(band)) { | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3335 | ht_info->cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40; | 
|  | 3336 | ht_info->cap |= IEEE80211_HT_CAP_SGI_40; | 
|  | 3337 | ht_info->mcs.rx_mask[4] = 0x01; | 
|  | 3338 | max_bit_rate = MAX_BIT_RATE_40_MHZ; | 
|  | 3339 | } | 
|  | 3340 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3341 | if (il->cfg->mod_params->amsdu_size_8K) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3342 | ht_info->cap |= IEEE80211_HT_CAP_MAX_AMSDU; | 
|  | 3343 |  | 
|  | 3344 | ht_info->ampdu_factor = CFG_HT_RX_AMPDU_FACTOR_DEF; | 
|  | 3345 | ht_info->ampdu_density = CFG_HT_MPDU_DENSITY_DEF; | 
|  | 3346 |  | 
|  | 3347 | ht_info->mcs.rx_mask[0] = 0xFF; | 
|  | 3348 | if (rx_chains_num >= 2) | 
|  | 3349 | ht_info->mcs.rx_mask[1] = 0xFF; | 
|  | 3350 | if (rx_chains_num >= 3) | 
|  | 3351 | ht_info->mcs.rx_mask[2] = 0xFF; | 
|  | 3352 |  | 
|  | 3353 | /* Highest supported Rx data rate */ | 
|  | 3354 | max_bit_rate *= rx_chains_num; | 
|  | 3355 | WARN_ON(max_bit_rate & ~IEEE80211_HT_MCS_RX_HIGHEST_MASK); | 
|  | 3356 | ht_info->mcs.rx_highest = cpu_to_le16(max_bit_rate); | 
|  | 3357 |  | 
|  | 3358 | /* Tx MCS capabilities */ | 
|  | 3359 | ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED; | 
|  | 3360 | if (tx_chains_num != rx_chains_num) { | 
|  | 3361 | ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF; | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3362 | ht_info->mcs.tx_params |= | 
|  | 3363 | ((tx_chains_num - | 
|  | 3364 | 1) << IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3365 | } | 
|  | 3366 | } | 
|  | 3367 |  | 
|  | 3368 | /** | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3369 | * il_init_geos - Initialize mac80211's geo/channel info based from eeprom | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3370 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3371 | int | 
|  | 3372 | il_init_geos(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3373 | { | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3374 | struct il_channel_info *ch; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3375 | struct ieee80211_supported_band *sband; | 
|  | 3376 | struct ieee80211_channel *channels; | 
|  | 3377 | struct ieee80211_channel *geo_ch; | 
|  | 3378 | struct ieee80211_rate *rates; | 
|  | 3379 | int i = 0; | 
| Stanislaw Gruszka | 332704a | 2011-04-13 10:56:51 +0200 | [diff] [blame] | 3380 | s8 max_tx_power = 0; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3381 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3382 | if (il->bands[IEEE80211_BAND_2GHZ].n_bitrates || | 
|  | 3383 | il->bands[IEEE80211_BAND_5GHZ].n_bitrates) { | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 3384 | D_INFO("Geography modes already initialized.\n"); | 
| Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 3385 | set_bit(S_GEO_CONFIGURED, &il->status); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3386 | return 0; | 
|  | 3387 | } | 
|  | 3388 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3389 | channels = | 
|  | 3390 | kzalloc(sizeof(struct ieee80211_channel) * il->channel_count, | 
|  | 3391 | GFP_KERNEL); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3392 | if (!channels) | 
|  | 3393 | return -ENOMEM; | 
|  | 3394 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3395 | rates = | 
|  | 3396 | kzalloc((sizeof(struct ieee80211_rate) * RATE_COUNT_LEGACY), | 
|  | 3397 | GFP_KERNEL); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3398 | if (!rates) { | 
|  | 3399 | kfree(channels); | 
|  | 3400 | return -ENOMEM; | 
|  | 3401 | } | 
|  | 3402 |  | 
|  | 3403 | /* 5.2GHz channels start after the 2.4GHz channels */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3404 | sband = &il->bands[IEEE80211_BAND_5GHZ]; | 
| Stanislaw Gruszka | d2ddf62 | 2011-08-16 14:17:04 +0200 | [diff] [blame] | 3405 | sband->channels = &channels[ARRAY_SIZE(il_eeprom_band_1)]; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3406 | /* just OFDM */ | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3407 | sband->bitrates = &rates[IL_FIRST_OFDM_RATE]; | 
| Stanislaw Gruszka | 2eb0581 | 2011-08-26 16:07:43 +0200 | [diff] [blame] | 3408 | sband->n_bitrates = RATE_COUNT_LEGACY - IL_FIRST_OFDM_RATE; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3409 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3410 | if (il->cfg->sku & IL_SKU_N) | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3411 | il_init_ht_hw_capab(il, &sband->ht_cap, IEEE80211_BAND_5GHZ); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3412 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3413 | sband = &il->bands[IEEE80211_BAND_2GHZ]; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3414 | sband->channels = channels; | 
|  | 3415 | /* OFDM & CCK */ | 
|  | 3416 | sband->bitrates = rates; | 
| Stanislaw Gruszka | 2eb0581 | 2011-08-26 16:07:43 +0200 | [diff] [blame] | 3417 | sband->n_bitrates = RATE_COUNT_LEGACY; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3418 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3419 | if (il->cfg->sku & IL_SKU_N) | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3420 | il_init_ht_hw_capab(il, &sband->ht_cap, IEEE80211_BAND_2GHZ); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3421 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3422 | il->ieee_channels = channels; | 
|  | 3423 | il->ieee_rates = rates; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3424 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3425 | for (i = 0; i < il->channel_count; i++) { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3426 | ch = &il->channel_info[i]; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3427 |  | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3428 | if (!il_is_channel_valid(ch)) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3429 | continue; | 
|  | 3430 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3431 | sband = &il->bands[ch->band]; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3432 |  | 
|  | 3433 | geo_ch = &sband->channels[sband->n_channels++]; | 
|  | 3434 |  | 
|  | 3435 | geo_ch->center_freq = | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3436 | ieee80211_channel_to_frequency(ch->channel, ch->band); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3437 | geo_ch->max_power = ch->max_power_avg; | 
|  | 3438 | geo_ch->max_antenna_gain = 0xff; | 
|  | 3439 | geo_ch->hw_value = ch->channel; | 
|  | 3440 |  | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3441 | if (il_is_channel_valid(ch)) { | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3442 | if (!(ch->flags & EEPROM_CHANNEL_IBSS)) | 
|  | 3443 | geo_ch->flags |= IEEE80211_CHAN_NO_IBSS; | 
|  | 3444 |  | 
|  | 3445 | if (!(ch->flags & EEPROM_CHANNEL_ACTIVE)) | 
|  | 3446 | geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN; | 
|  | 3447 |  | 
|  | 3448 | if (ch->flags & EEPROM_CHANNEL_RADAR) | 
|  | 3449 | geo_ch->flags |= IEEE80211_CHAN_RADAR; | 
|  | 3450 |  | 
|  | 3451 | geo_ch->flags |= ch->ht40_extension_channel; | 
|  | 3452 |  | 
| Stanislaw Gruszka | 332704a | 2011-04-13 10:56:51 +0200 | [diff] [blame] | 3453 | if (ch->max_power_avg > max_tx_power) | 
|  | 3454 | max_tx_power = ch->max_power_avg; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3455 | } else { | 
|  | 3456 | geo_ch->flags |= IEEE80211_CHAN_DISABLED; | 
|  | 3457 | } | 
|  | 3458 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3459 | D_INFO("Channel %d Freq=%d[%sGHz] %s flag=0x%X\n", ch->channel, | 
|  | 3460 | geo_ch->center_freq, | 
|  | 3461 | il_is_channel_a_band(ch) ? "5.2" : "2.4", | 
|  | 3462 | geo_ch-> | 
|  | 3463 | flags & IEEE80211_CHAN_DISABLED ? "restricted" : "valid", | 
|  | 3464 | geo_ch->flags); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3465 | } | 
|  | 3466 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3467 | il->tx_power_device_lmt = max_tx_power; | 
|  | 3468 | il->tx_power_user_lmt = max_tx_power; | 
|  | 3469 | il->tx_power_next = max_tx_power; | 
| Stanislaw Gruszka | 332704a | 2011-04-13 10:56:51 +0200 | [diff] [blame] | 3470 |  | 
| Stanislaw Gruszka | 232913b | 2011-08-26 10:45:16 +0200 | [diff] [blame] | 3471 | if (il->bands[IEEE80211_BAND_5GHZ].n_channels == 0 && | 
|  | 3472 | (il->cfg->sku & IL_SKU_A)) { | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3473 | IL_INFO("Incorrectly detected BG card as ABG. " | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3474 | "Please send your PCI ID 0x%04X:0x%04X to maintainer.\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3475 | il->pci_dev->device, il->pci_dev->subsystem_device); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3476 | il->cfg->sku &= ~IL_SKU_A; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3477 | } | 
|  | 3478 |  | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3479 | IL_INFO("Tunable channels: %d 802.11bg, %d 802.11a channels\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3480 | il->bands[IEEE80211_BAND_2GHZ].n_channels, | 
|  | 3481 | il->bands[IEEE80211_BAND_5GHZ].n_channels); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3482 |  | 
| Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 3483 | set_bit(S_GEO_CONFIGURED, &il->status); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3484 |  | 
|  | 3485 | return 0; | 
|  | 3486 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3487 | EXPORT_SYMBOL(il_init_geos); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3488 |  | 
|  | 3489 | /* | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3490 | * il_free_geos - undo allocations in il_init_geos | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3491 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3492 | void | 
|  | 3493 | il_free_geos(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3494 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3495 | kfree(il->ieee_channels); | 
|  | 3496 | kfree(il->ieee_rates); | 
| Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 3497 | clear_bit(S_GEO_CONFIGURED, &il->status); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3498 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3499 | EXPORT_SYMBOL(il_free_geos); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3500 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3501 | static bool | 
|  | 3502 | il_is_channel_extension(struct il_priv *il, enum ieee80211_band band, | 
|  | 3503 | u16 channel, u8 extension_chan_offset) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3504 | { | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3505 | const struct il_channel_info *ch_info; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3506 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3507 | ch_info = il_get_channel_info(il, band, channel); | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3508 | if (!il_is_channel_valid(ch_info)) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3509 | return false; | 
|  | 3510 |  | 
|  | 3511 | if (extension_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_ABOVE) | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3512 | return !(ch_info-> | 
|  | 3513 | ht40_extension_channel & IEEE80211_CHAN_NO_HT40PLUS); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3514 | else if (extension_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_BELOW) | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3515 | return !(ch_info-> | 
|  | 3516 | ht40_extension_channel & IEEE80211_CHAN_NO_HT40MINUS); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3517 |  | 
|  | 3518 | return false; | 
|  | 3519 | } | 
|  | 3520 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3521 | bool | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 3522 | il_is_ht40_tx_allowed(struct il_priv *il, struct ieee80211_sta_ht_cap *ht_cap) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3523 | { | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 3524 | if (!il->ht.enabled || !il->ht.is_40mhz) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3525 | return false; | 
|  | 3526 |  | 
|  | 3527 | /* | 
|  | 3528 | * We do not check for IEEE80211_HT_CAP_SUP_WIDTH_20_40 | 
|  | 3529 | * the bit will not set if it is pure 40MHz case | 
|  | 3530 | */ | 
|  | 3531 | if (ht_cap && !ht_cap->ht_supported) | 
|  | 3532 | return false; | 
|  | 3533 |  | 
| Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 3534 | #ifdef CONFIG_IWLEGACY_DEBUGFS | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3535 | if (il->disable_ht40) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3536 | return false; | 
|  | 3537 | #endif | 
|  | 3538 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3539 | return il_is_channel_extension(il, il->band, | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3540 | le16_to_cpu(il->staging.channel), | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 3541 | il->ht.extension_chan_offset); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3542 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3543 | EXPORT_SYMBOL(il_is_ht40_tx_allowed); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3544 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3545 | static u16 | 
|  | 3546 | il_adjust_beacon_interval(u16 beacon_val, u16 max_beacon_val) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3547 | { | 
|  | 3548 | u16 new_val; | 
|  | 3549 | u16 beacon_factor; | 
|  | 3550 |  | 
|  | 3551 | /* | 
|  | 3552 | * If mac80211 hasn't given us a beacon interval, program | 
|  | 3553 | * the default into the device. | 
|  | 3554 | */ | 
|  | 3555 | if (!beacon_val) | 
|  | 3556 | return DEFAULT_BEACON_INTERVAL; | 
|  | 3557 |  | 
|  | 3558 | /* | 
|  | 3559 | * If the beacon interval we obtained from the peer | 
|  | 3560 | * is too large, we'll have to wake up more often | 
|  | 3561 | * (and in IBSS case, we'll beacon too much) | 
|  | 3562 | * | 
|  | 3563 | * For example, if max_beacon_val is 4096, and the | 
|  | 3564 | * requested beacon interval is 7000, we'll have to | 
|  | 3565 | * use 3500 to be able to wake up on the beacons. | 
|  | 3566 | * | 
|  | 3567 | * This could badly influence beacon detection stats. | 
|  | 3568 | */ | 
|  | 3569 |  | 
|  | 3570 | beacon_factor = (beacon_val + max_beacon_val) / max_beacon_val; | 
|  | 3571 | new_val = beacon_val / beacon_factor; | 
|  | 3572 |  | 
|  | 3573 | if (!new_val) | 
|  | 3574 | new_val = max_beacon_val; | 
|  | 3575 |  | 
|  | 3576 | return new_val; | 
|  | 3577 | } | 
|  | 3578 |  | 
|  | 3579 | int | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 3580 | il_send_rxon_timing(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3581 | { | 
|  | 3582 | u64 tsf; | 
|  | 3583 | s32 interval_tm, rem; | 
|  | 3584 | struct ieee80211_conf *conf = NULL; | 
|  | 3585 | u16 beacon_int; | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 3586 | struct ieee80211_vif *vif = il->vif; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3587 |  | 
| Stanislaw Gruszka | 6278dda | 2011-08-31 11:13:05 +0200 | [diff] [blame] | 3588 | conf = &il->hw->conf; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3589 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3590 | lockdep_assert_held(&il->mutex); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3591 |  | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3592 | memset(&il->timing, 0, sizeof(struct il_rxon_time_cmd)); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3593 |  | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3594 | il->timing.timestamp = cpu_to_le64(il->timestamp); | 
|  | 3595 | il->timing.listen_interval = cpu_to_le16(conf->listen_interval); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3596 |  | 
|  | 3597 | beacon_int = vif ? vif->bss_conf.beacon_int : 0; | 
|  | 3598 |  | 
|  | 3599 | /* | 
| Stanislaw Gruszka | 6ce1dc4 | 2011-08-26 15:49:28 +0200 | [diff] [blame] | 3600 | * TODO: For IBSS we need to get atim_win from mac80211, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3601 | *       for now just always use 0 | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3602 | */ | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3603 | il->timing.atim_win = 0; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3604 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3605 | beacon_int = | 
|  | 3606 | il_adjust_beacon_interval(beacon_int, | 
|  | 3607 | il->hw_params.max_beacon_itrvl * | 
|  | 3608 | TIME_UNIT); | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3609 | il->timing.beacon_interval = cpu_to_le16(beacon_int); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3610 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3611 | tsf = il->timestamp;	/* tsf is modifed by do_div: copy it */ | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3612 | interval_tm = beacon_int * TIME_UNIT; | 
|  | 3613 | rem = do_div(tsf, interval_tm); | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3614 | il->timing.beacon_init_val = cpu_to_le32(interval_tm - rem); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3615 |  | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3616 | il->timing.dtim_period = vif ? (vif->bss_conf.dtim_period ? : 1) : 1; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3617 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3618 | D_ASSOC("beacon interval %d beacon timer %d beacon tim %d\n", | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3619 | le16_to_cpu(il->timing.beacon_interval), | 
|  | 3620 | le32_to_cpu(il->timing.beacon_init_val), | 
|  | 3621 | le16_to_cpu(il->timing.atim_win)); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3622 |  | 
| Stanislaw Gruszka | 63d0f0c | 2012-02-03 17:31:39 +0100 | [diff] [blame] | 3623 | return il_send_cmd_pdu(il, C_RXON_TIMING, sizeof(il->timing), | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3624 | &il->timing); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3625 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3626 | EXPORT_SYMBOL(il_send_rxon_timing); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3627 |  | 
|  | 3628 | void | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 3629 | il_set_rxon_hwcrypto(struct il_priv *il, int hw_decrypt) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3630 | { | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3631 | struct il_rxon_cmd *rxon = &il->staging; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3632 |  | 
|  | 3633 | if (hw_decrypt) | 
|  | 3634 | rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK; | 
|  | 3635 | else | 
|  | 3636 | rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK; | 
|  | 3637 |  | 
|  | 3638 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3639 | EXPORT_SYMBOL(il_set_rxon_hwcrypto); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3640 |  | 
|  | 3641 | /* validate RXON structure is valid */ | 
|  | 3642 | int | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 3643 | il_check_rxon_cmd(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3644 | { | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3645 | struct il_rxon_cmd *rxon = &il->staging; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3646 | bool error = false; | 
|  | 3647 |  | 
|  | 3648 | if (rxon->flags & RXON_FLG_BAND_24G_MSK) { | 
|  | 3649 | if (rxon->flags & RXON_FLG_TGJ_NARROW_BAND_MSK) { | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3650 | IL_WARN("check 2.4G: wrong narrow\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3651 | error = true; | 
|  | 3652 | } | 
|  | 3653 | if (rxon->flags & RXON_FLG_RADAR_DETECT_MSK) { | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3654 | IL_WARN("check 2.4G: wrong radar\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3655 | error = true; | 
|  | 3656 | } | 
|  | 3657 | } else { | 
|  | 3658 | if (!(rxon->flags & RXON_FLG_SHORT_SLOT_MSK)) { | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3659 | IL_WARN("check 5.2G: not short slot!\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3660 | error = true; | 
|  | 3661 | } | 
|  | 3662 | if (rxon->flags & RXON_FLG_CCK_MSK) { | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3663 | IL_WARN("check 5.2G: CCK!\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3664 | error = true; | 
|  | 3665 | } | 
|  | 3666 | } | 
|  | 3667 | if ((rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1) { | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3668 | IL_WARN("mac/bssid mcast!\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3669 | error = true; | 
|  | 3670 | } | 
|  | 3671 |  | 
|  | 3672 | /* make sure basic rates 6Mbps and 1Mbps are supported */ | 
| Stanislaw Gruszka | 2eb0581 | 2011-08-26 16:07:43 +0200 | [diff] [blame] | 3673 | if ((rxon->ofdm_basic_rates & RATE_6M_MASK) == 0 && | 
|  | 3674 | (rxon->cck_basic_rates & RATE_1M_MASK) == 0) { | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3675 | IL_WARN("neither 1 nor 6 are basic\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3676 | error = true; | 
|  | 3677 | } | 
|  | 3678 |  | 
|  | 3679 | if (le16_to_cpu(rxon->assoc_id) > 2007) { | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3680 | IL_WARN("aid > 2007\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3681 | error = true; | 
|  | 3682 | } | 
|  | 3683 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3684 | if ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK)) == | 
|  | 3685 | (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK)) { | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3686 | IL_WARN("CCK and short slot\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3687 | error = true; | 
|  | 3688 | } | 
|  | 3689 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3690 | if ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK)) == | 
|  | 3691 | (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK)) { | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3692 | IL_WARN("CCK and auto detect"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3693 | error = true; | 
|  | 3694 | } | 
|  | 3695 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3696 | if ((rxon-> | 
|  | 3697 | flags & (RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK)) == | 
|  | 3698 | RXON_FLG_TGG_PROTECT_MSK) { | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3699 | IL_WARN("TGg but no auto-detect\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3700 | error = true; | 
|  | 3701 | } | 
|  | 3702 |  | 
|  | 3703 | if (error) | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3704 | IL_WARN("Tuning to channel %d\n", le16_to_cpu(rxon->channel)); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3705 |  | 
|  | 3706 | if (error) { | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3707 | IL_ERR("Invalid RXON\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3708 | return -EINVAL; | 
|  | 3709 | } | 
|  | 3710 | return 0; | 
|  | 3711 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3712 | EXPORT_SYMBOL(il_check_rxon_cmd); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3713 |  | 
|  | 3714 | /** | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3715 | * il_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3716 | * @il: staging_rxon is compared to active_rxon | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3717 | * | 
|  | 3718 | * If the RXON structure is changing enough to require a new tune, | 
|  | 3719 | * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that | 
|  | 3720 | * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required. | 
|  | 3721 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3722 | int | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 3723 | il_full_rxon_required(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3724 | { | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3725 | const struct il_rxon_cmd *staging = &il->staging; | 
|  | 3726 | const struct il_rxon_cmd *active = &il->active; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3727 |  | 
|  | 3728 | #define CHK(cond)							\ | 
|  | 3729 | if ((cond)) {							\ | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 3730 | D_INFO("need full RXON - " #cond "\n");	\ | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3731 | return 1;						\ | 
|  | 3732 | } | 
|  | 3733 |  | 
|  | 3734 | #define CHK_NEQ(c1, c2)						\ | 
|  | 3735 | if ((c1) != (c2)) {					\ | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 3736 | D_INFO("need full RXON - "	\ | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3737 | #c1 " != " #c2 " - %d != %d\n",	\ | 
|  | 3738 | (c1), (c2));			\ | 
|  | 3739 | return 1;					\ | 
|  | 3740 | } | 
|  | 3741 |  | 
|  | 3742 | /* These items are only settable from the full RXON command */ | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3743 | CHK(!il_is_associated(il)); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3744 | CHK(compare_ether_addr(staging->bssid_addr, active->bssid_addr)); | 
|  | 3745 | CHK(compare_ether_addr(staging->node_addr, active->node_addr)); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3746 | CHK(compare_ether_addr | 
|  | 3747 | (staging->wlap_bssid_addr, active->wlap_bssid_addr)); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3748 | CHK_NEQ(staging->dev_type, active->dev_type); | 
|  | 3749 | CHK_NEQ(staging->channel, active->channel); | 
|  | 3750 | CHK_NEQ(staging->air_propagation, active->air_propagation); | 
|  | 3751 | CHK_NEQ(staging->ofdm_ht_single_stream_basic_rates, | 
|  | 3752 | active->ofdm_ht_single_stream_basic_rates); | 
|  | 3753 | CHK_NEQ(staging->ofdm_ht_dual_stream_basic_rates, | 
|  | 3754 | active->ofdm_ht_dual_stream_basic_rates); | 
|  | 3755 | CHK_NEQ(staging->assoc_id, active->assoc_id); | 
|  | 3756 |  | 
|  | 3757 | /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can | 
|  | 3758 | * be updated with the RXON_ASSOC command -- however only some | 
|  | 3759 | * flag transitions are allowed using RXON_ASSOC */ | 
|  | 3760 |  | 
|  | 3761 | /* Check if we are not switching bands */ | 
|  | 3762 | CHK_NEQ(staging->flags & RXON_FLG_BAND_24G_MSK, | 
|  | 3763 | active->flags & RXON_FLG_BAND_24G_MSK); | 
|  | 3764 |  | 
|  | 3765 | /* Check if we are switching association toggle */ | 
|  | 3766 | CHK_NEQ(staging->filter_flags & RXON_FILTER_ASSOC_MSK, | 
|  | 3767 | active->filter_flags & RXON_FILTER_ASSOC_MSK); | 
|  | 3768 |  | 
|  | 3769 | #undef CHK | 
|  | 3770 | #undef CHK_NEQ | 
|  | 3771 |  | 
|  | 3772 | return 0; | 
|  | 3773 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3774 | EXPORT_SYMBOL(il_full_rxon_required); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3775 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3776 | u8 | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 3777 | il_get_lowest_plcp(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3778 | { | 
|  | 3779 | /* | 
|  | 3780 | * Assign the lowest rate -- should really get this from | 
|  | 3781 | * the beacon skb from mac80211. | 
|  | 3782 | */ | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3783 | if (il->staging.flags & RXON_FLG_BAND_24G_MSK) | 
| Stanislaw Gruszka | 2eb0581 | 2011-08-26 16:07:43 +0200 | [diff] [blame] | 3784 | return RATE_1M_PLCP; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3785 | else | 
| Stanislaw Gruszka | 2eb0581 | 2011-08-26 16:07:43 +0200 | [diff] [blame] | 3786 | return RATE_6M_PLCP; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3787 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3788 | EXPORT_SYMBOL(il_get_lowest_plcp); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3789 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3790 | static void | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 3791 | _il_set_rxon_ht(struct il_priv *il, struct il_ht_config *ht_conf) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3792 | { | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3793 | struct il_rxon_cmd *rxon = &il->staging; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3794 |  | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 3795 | if (!il->ht.enabled) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3796 | rxon->flags &= | 
|  | 3797 | ~(RXON_FLG_CHANNEL_MODE_MSK | | 
|  | 3798 | RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK | RXON_FLG_HT40_PROT_MSK | 
|  | 3799 | | RXON_FLG_HT_PROT_MSK); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3800 | return; | 
|  | 3801 | } | 
|  | 3802 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3803 | rxon->flags |= | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 3804 | cpu_to_le32(il->ht.protection << RXON_FLG_HT_OPERATING_MODE_POS); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3805 |  | 
|  | 3806 | /* Set up channel bandwidth: | 
|  | 3807 | * 20 MHz only, 20/40 mixed or pure 40 if ht40 ok */ | 
|  | 3808 | /* clear the HT channel mode before set the mode */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3809 | rxon->flags &= | 
|  | 3810 | ~(RXON_FLG_CHANNEL_MODE_MSK | RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK); | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 3811 | if (il_is_ht40_tx_allowed(il, NULL)) { | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3812 | /* pure ht40 */ | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 3813 | if (il->ht.protection == IEEE80211_HT_OP_MODE_PROTECTION_20MHZ) { | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3814 | rxon->flags |= RXON_FLG_CHANNEL_MODE_PURE_40; | 
|  | 3815 | /* Note: control channel is opposite of extension channel */ | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 3816 | switch (il->ht.extension_chan_offset) { | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3817 | case IEEE80211_HT_PARAM_CHA_SEC_ABOVE: | 
|  | 3818 | rxon->flags &= | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3819 | ~RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3820 | break; | 
|  | 3821 | case IEEE80211_HT_PARAM_CHA_SEC_BELOW: | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3822 | rxon->flags |= RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3823 | break; | 
|  | 3824 | } | 
|  | 3825 | } else { | 
|  | 3826 | /* Note: control channel is opposite of extension channel */ | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 3827 | switch (il->ht.extension_chan_offset) { | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3828 | case IEEE80211_HT_PARAM_CHA_SEC_ABOVE: | 
|  | 3829 | rxon->flags &= | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3830 | ~(RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3831 | rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED; | 
|  | 3832 | break; | 
|  | 3833 | case IEEE80211_HT_PARAM_CHA_SEC_BELOW: | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3834 | rxon->flags |= RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3835 | rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED; | 
|  | 3836 | break; | 
|  | 3837 | case IEEE80211_HT_PARAM_CHA_SEC_NONE: | 
|  | 3838 | default: | 
|  | 3839 | /* channel location only valid if in Mixed mode */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3840 | IL_ERR("invalid extension channel offset\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3841 | break; | 
|  | 3842 | } | 
|  | 3843 | } | 
|  | 3844 | } else { | 
|  | 3845 | rxon->flags |= RXON_FLG_CHANNEL_MODE_LEGACY; | 
|  | 3846 | } | 
|  | 3847 |  | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 3848 | if (il->ops->hcmd->set_rxon_chain) | 
|  | 3849 | il->ops->hcmd->set_rxon_chain(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3850 |  | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 3851 | D_ASSOC("rxon flags 0x%X operation mode :0x%X " | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3852 | "extension channel offset 0x%x\n", le32_to_cpu(rxon->flags), | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 3853 | il->ht.protection, il->ht.extension_chan_offset); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3854 | } | 
|  | 3855 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3856 | void | 
|  | 3857 | il_set_rxon_ht(struct il_priv *il, struct il_ht_config *ht_conf) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3858 | { | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 3859 | _il_set_rxon_ht(il, ht_conf); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3860 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3861 | EXPORT_SYMBOL(il_set_rxon_ht); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3862 |  | 
|  | 3863 | /* Return valid, unused, channel for a passive scan to reset the RF */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3864 | u8 | 
|  | 3865 | il_get_single_channel_number(struct il_priv *il, enum ieee80211_band band) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3866 | { | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3867 | const struct il_channel_info *ch_info; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3868 | int i; | 
|  | 3869 | u8 channel = 0; | 
|  | 3870 | u8 min, max; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3871 |  | 
|  | 3872 | if (band == IEEE80211_BAND_5GHZ) { | 
|  | 3873 | min = 14; | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3874 | max = il->channel_count; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3875 | } else { | 
|  | 3876 | min = 0; | 
|  | 3877 | max = 14; | 
|  | 3878 | } | 
|  | 3879 |  | 
|  | 3880 | for (i = min; i < max; i++) { | 
| Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 3881 | channel = il->channel_info[i].channel; | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3882 | if (channel == le16_to_cpu(il->staging.channel)) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3883 | continue; | 
|  | 3884 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3885 | ch_info = il_get_channel_info(il, band, channel); | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3886 | if (il_is_channel_valid(ch_info)) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3887 | break; | 
|  | 3888 | } | 
|  | 3889 |  | 
|  | 3890 | return channel; | 
|  | 3891 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3892 | EXPORT_SYMBOL(il_get_single_channel_number); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3893 |  | 
|  | 3894 | /** | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3895 | * il_set_rxon_channel - Set the band and channel values in staging RXON | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3896 | * @ch: requested channel as a pointer to struct ieee80211_channel | 
|  | 3897 |  | 
|  | 3898 | * NOTE:  Does not commit to the hardware; it sets appropriate bit fields | 
|  | 3899 | * in the staging RXON flag structure based on the ch->band | 
|  | 3900 | */ | 
|  | 3901 | int | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 3902 | il_set_rxon_channel(struct il_priv *il, struct ieee80211_channel *ch) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3903 | { | 
|  | 3904 | enum ieee80211_band band = ch->band; | 
|  | 3905 | u16 channel = ch->hw_value; | 
|  | 3906 |  | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3907 | if (le16_to_cpu(il->staging.channel) == channel && il->band == band) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3908 | return 0; | 
|  | 3909 |  | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3910 | il->staging.channel = cpu_to_le16(channel); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3911 | if (band == IEEE80211_BAND_5GHZ) | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3912 | il->staging.flags &= ~RXON_FLG_BAND_24G_MSK; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3913 | else | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3914 | il->staging.flags |= RXON_FLG_BAND_24G_MSK; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3915 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3916 | il->band = band; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3917 |  | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 3918 | D_INFO("Staging channel set to %d [%d]\n", channel, band); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3919 |  | 
|  | 3920 | return 0; | 
|  | 3921 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3922 | EXPORT_SYMBOL(il_set_rxon_channel); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3923 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3924 | void | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 3925 | il_set_flags_for_band(struct il_priv *il, enum ieee80211_band band, | 
|  | 3926 | struct ieee80211_vif *vif) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3927 | { | 
|  | 3928 | if (band == IEEE80211_BAND_5GHZ) { | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3929 | il->staging.flags &= | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3930 | ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK | | 
|  | 3931 | RXON_FLG_CCK_MSK); | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3932 | il->staging.flags |= RXON_FLG_SHORT_SLOT_MSK; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3933 | } else { | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3934 | /* Copied from il_post_associate() */ | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3935 | if (vif && vif->bss_conf.use_short_slot) | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3936 | il->staging.flags |= RXON_FLG_SHORT_SLOT_MSK; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3937 | else | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3938 | il->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3939 |  | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3940 | il->staging.flags |= RXON_FLG_BAND_24G_MSK; | 
|  | 3941 | il->staging.flags |= RXON_FLG_AUTO_DETECT_MSK; | 
|  | 3942 | il->staging.flags &= ~RXON_FLG_CCK_MSK; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3943 | } | 
|  | 3944 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3945 | EXPORT_SYMBOL(il_set_flags_for_band); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3946 |  | 
|  | 3947 | /* | 
|  | 3948 | * initialize rxon structure with default values from eeprom | 
|  | 3949 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3950 | void | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 3951 | il_connection_init_rx_config(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3952 | { | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3953 | const struct il_channel_info *ch_info; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3954 |  | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3955 | memset(&il->staging, 0, sizeof(il->staging)); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3956 |  | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 3957 | if (!il->vif) { | 
| Stanislaw Gruszka | 0f8b90f | 2012-02-03 17:31:45 +0100 | [diff] [blame] | 3958 | il->staging.dev_type = RXON_DEV_TYPE_ESS; | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 3959 | } else if (il->vif->type == NL80211_IFTYPE_STATION) { | 
|  | 3960 | il->staging.dev_type = RXON_DEV_TYPE_ESS; | 
|  | 3961 | il->staging.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK; | 
|  | 3962 | } else if (il->vif->type == NL80211_IFTYPE_ADHOC) { | 
|  | 3963 | il->staging.dev_type = RXON_DEV_TYPE_IBSS; | 
|  | 3964 | il->staging.flags = RXON_FLG_SHORT_PREAMBLE_MSK; | 
|  | 3965 | il->staging.filter_flags = | 
|  | 3966 | RXON_FILTER_BCON_AWARE_MSK | RXON_FILTER_ACCEPT_GRP_MSK; | 
|  | 3967 | } else { | 
|  | 3968 | IL_ERR("Unsupported interface type %d\n", il->vif->type); | 
|  | 3969 | return; | 
|  | 3970 | } | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3971 |  | 
|  | 3972 | #if 0 | 
|  | 3973 | /* TODO:  Figure out when short_preamble would be set and cache from | 
|  | 3974 | * that */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3975 | if (!hw_to_local(il->hw)->short_preamble) | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3976 | il->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3977 | else | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3978 | il->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3979 | #endif | 
|  | 3980 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3981 | ch_info = | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3982 | il_get_channel_info(il, il->band, le16_to_cpu(il->active.channel)); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3983 |  | 
|  | 3984 | if (!ch_info) | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3985 | ch_info = &il->channel_info[0]; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3986 |  | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3987 | il->staging.channel = cpu_to_le16(ch_info->channel); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3988 | il->band = ch_info->band; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3989 |  | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 3990 | il_set_flags_for_band(il, il->band, il->vif); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3991 |  | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3992 | il->staging.ofdm_basic_rates = | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3993 | (IL_OFDM_RATES_MASK >> IL_FIRST_OFDM_RATE) & 0xFF; | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3994 | il->staging.cck_basic_rates = | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3995 | (IL_CCK_RATES_MASK >> IL_FIRST_CCK_RATE) & 0xF; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3996 |  | 
|  | 3997 | /* clear both MIX and PURE40 mode flag */ | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3998 | il->staging.flags &= | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3999 | ~(RXON_FLG_CHANNEL_MODE_MIXED | RXON_FLG_CHANNEL_MODE_PURE_40); | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 4000 | if (il->vif) | 
|  | 4001 | memcpy(il->staging.node_addr, il->vif->addr, ETH_ALEN); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4002 |  | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4003 | il->staging.ofdm_ht_single_stream_basic_rates = 0xff; | 
|  | 4004 | il->staging.ofdm_ht_dual_stream_basic_rates = 0xff; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4005 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4006 | EXPORT_SYMBOL(il_connection_init_rx_config); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4007 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4008 | void | 
|  | 4009 | il_set_rate(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4010 | { | 
|  | 4011 | const struct ieee80211_supported_band *hw = NULL; | 
|  | 4012 | struct ieee80211_rate *rate; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4013 | int i; | 
|  | 4014 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4015 | hw = il_get_hw_mode(il, il->band); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4016 | if (!hw) { | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4017 | IL_ERR("Failed to set rate: unable to get hw mode\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4018 | return; | 
|  | 4019 | } | 
|  | 4020 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4021 | il->active_rate = 0; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4022 |  | 
|  | 4023 | for (i = 0; i < hw->n_bitrates; i++) { | 
|  | 4024 | rate = &(hw->bitrates[i]); | 
| Stanislaw Gruszka | 2eb0581 | 2011-08-26 16:07:43 +0200 | [diff] [blame] | 4025 | if (rate->hw_value < RATE_COUNT_LEGACY) | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4026 | il->active_rate |= (1 << rate->hw_value); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4027 | } | 
|  | 4028 |  | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4029 | D_RATE("Set active_rate = %0x\n", il->active_rate); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4030 |  | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4031 | il->staging.cck_basic_rates = | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4032 | (IL_CCK_BASIC_RATES_MASK >> IL_FIRST_CCK_RATE) & 0xF; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4033 |  | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4034 | il->staging.ofdm_basic_rates = | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4035 | (IL_OFDM_BASIC_RATES_MASK >> IL_FIRST_OFDM_RATE) & 0xFF; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4036 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4037 | EXPORT_SYMBOL(il_set_rate); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4038 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4039 | void | 
|  | 4040 | il_chswitch_done(struct il_priv *il, bool is_success) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4041 | { | 
| Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4042 | if (test_bit(S_EXIT_PENDING, &il->status)) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4043 | return; | 
|  | 4044 |  | 
| Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4045 | if (test_and_clear_bit(S_CHANNEL_SWITCH_PENDING, &il->status)) | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 4046 | ieee80211_chswitch_done(il->vif, is_success); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4047 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4048 | EXPORT_SYMBOL(il_chswitch_done); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4049 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4050 | void | 
|  | 4051 | il_hdl_csa(struct il_priv *il, struct il_rx_buf *rxb) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4052 | { | 
| Stanislaw Gruszka | dcae1c6 | 2011-08-26 14:36:21 +0200 | [diff] [blame] | 4053 | struct il_rx_pkt *pkt = rxb_addr(rxb); | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4054 | struct il_csa_notification *csa = &(pkt->u.csa_notif); | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4055 | struct il_rxon_cmd *rxon = (void *)&il->active; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4056 |  | 
| Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4057 | if (!test_bit(S_CHANNEL_SWITCH_PENDING, &il->status)) | 
| Stanislaw Gruszka | 51e6525 | 2011-06-08 15:26:31 +0200 | [diff] [blame] | 4058 | return; | 
|  | 4059 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4060 | if (!le32_to_cpu(csa->status) && csa->channel == il->switch_channel) { | 
| Stanislaw Gruszka | 51e6525 | 2011-06-08 15:26:31 +0200 | [diff] [blame] | 4061 | rxon->channel = csa->channel; | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4062 | il->staging.channel = csa->channel; | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4063 | D_11H("CSA notif: channel %d\n", le16_to_cpu(csa->channel)); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4064 | il_chswitch_done(il, true); | 
| Stanislaw Gruszka | 51e6525 | 2011-06-08 15:26:31 +0200 | [diff] [blame] | 4065 | } else { | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4066 | IL_ERR("CSA notif (fail) : channel %d\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4067 | le16_to_cpu(csa->channel)); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4068 | il_chswitch_done(il, false); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4069 | } | 
|  | 4070 | } | 
| Stanislaw Gruszka | d2dfb33 | 2011-11-15 13:16:38 +0100 | [diff] [blame] | 4071 | EXPORT_SYMBOL(il_hdl_csa); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4072 |  | 
| Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4073 | #ifdef CONFIG_IWLEGACY_DEBUG | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4074 | void | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 4075 | il_print_rx_config_cmd(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4076 | { | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4077 | struct il_rxon_cmd *rxon = &il->staging; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4078 |  | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4079 | D_RADIO("RX CONFIG:\n"); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4080 | il_print_hex_dump(il, IL_DL_RADIO, (u8 *) rxon, sizeof(*rxon)); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4081 | D_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel)); | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4082 | D_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags)); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4083 | D_RADIO("u32 filter_flags: 0x%08x\n", le32_to_cpu(rxon->filter_flags)); | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4084 | D_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4085 | D_RADIO("u8 ofdm_basic_rates: 0x%02x\n", rxon->ofdm_basic_rates); | 
|  | 4086 | D_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates); | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4087 | D_RADIO("u8[6] node_addr: %pM\n", rxon->node_addr); | 
|  | 4088 | D_RADIO("u8[6] bssid_addr: %pM\n", rxon->bssid_addr); | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4089 | D_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id)); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4090 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4091 | EXPORT_SYMBOL(il_print_rx_config_cmd); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4092 | #endif | 
|  | 4093 | /** | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4094 | * il_irq_handle_error - called for HW or SW error interrupt from card | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4095 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4096 | void | 
|  | 4097 | il_irq_handle_error(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4098 | { | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4099 | /* Set the FW error flag -- cleared on il_down */ | 
| Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4100 | set_bit(S_FW_ERROR, &il->status); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4101 |  | 
|  | 4102 | /* Cancel currently queued command. */ | 
| Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4103 | clear_bit(S_HCMD_ACTIVE, &il->status); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4104 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4105 | IL_ERR("Loaded firmware version: %s\n", il->hw->wiphy->fw_version); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4106 |  | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 4107 | il->ops->lib->dump_nic_error_log(il); | 
|  | 4108 | if (il->ops->lib->dump_fh) | 
|  | 4109 | il->ops->lib->dump_fh(il, NULL, false); | 
| Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4110 | #ifdef CONFIG_IWLEGACY_DEBUG | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4111 | if (il_get_debug_level(il) & IL_DL_FW_ERRORS) | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 4112 | il_print_rx_config_cmd(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4113 | #endif | 
|  | 4114 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4115 | wake_up(&il->wait_command_queue); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4116 |  | 
|  | 4117 | /* Keep the restart process from trying to send host | 
|  | 4118 | * commands by clearing the INIT status bit */ | 
| Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4119 | clear_bit(S_READY, &il->status); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4120 |  | 
| Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4121 | if (!test_bit(S_EXIT_PENDING, &il->status)) { | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4122 | IL_DBG(IL_DL_FW_ERRORS, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4123 | "Restarting adapter due to uCode error.\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4124 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4125 | if (il->cfg->mod_params->restart_fw) | 
|  | 4126 | queue_work(il->workqueue, &il->restart); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4127 | } | 
|  | 4128 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4129 | EXPORT_SYMBOL(il_irq_handle_error); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4130 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4131 | static int | 
|  | 4132 | il_apm_stop_master(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4133 | { | 
|  | 4134 | int ret = 0; | 
|  | 4135 |  | 
|  | 4136 | /* stop device's busmaster DMA activity */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4137 | il_set_bit(il, CSR_RESET, CSR_RESET_REG_FLAG_STOP_MASTER); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4138 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4139 | ret = | 
|  | 4140 | _il_poll_bit(il, CSR_RESET, CSR_RESET_REG_FLAG_MASTER_DISABLED, | 
|  | 4141 | CSR_RESET_REG_FLAG_MASTER_DISABLED, 100); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4142 | if (ret) | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4143 | IL_WARN("Master Disable Timed Out, 100 usec\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4144 |  | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4145 | D_INFO("stop master\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4146 |  | 
|  | 4147 | return ret; | 
|  | 4148 | } | 
|  | 4149 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4150 | void | 
|  | 4151 | il_apm_stop(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4152 | { | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4153 | D_INFO("Stop card, put in low power state\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4154 |  | 
|  | 4155 | /* Stop device's DMA activity */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4156 | il_apm_stop_master(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4157 |  | 
|  | 4158 | /* Reset the entire device */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4159 | il_set_bit(il, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4160 |  | 
|  | 4161 | udelay(10); | 
|  | 4162 |  | 
|  | 4163 | /* | 
|  | 4164 | * Clear "initialization complete" bit to move adapter from | 
|  | 4165 | * D0A* (powered-up Active) --> D0U* (Uninitialized) state. | 
|  | 4166 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4167 | il_clear_bit(il, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4168 | } | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4169 | EXPORT_SYMBOL(il_apm_stop); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4170 |  | 
|  | 4171 | /* | 
|  | 4172 | * Start up NIC's basic functionality after it has been reset | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4173 | * (e.g. after platform boot, or shutdown via il_apm_stop()) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4174 | * NOTE:  This does not load uCode nor start the embedded processor | 
|  | 4175 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4176 | int | 
|  | 4177 | il_apm_init(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4178 | { | 
|  | 4179 | int ret = 0; | 
|  | 4180 | u16 lctl; | 
|  | 4181 |  | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4182 | D_INFO("Init card's basic functions\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4183 |  | 
|  | 4184 | /* | 
|  | 4185 | * Use "set_bit" below rather than "write", to preserve any hardware | 
|  | 4186 | * bits already set by default after reset. | 
|  | 4187 | */ | 
|  | 4188 |  | 
|  | 4189 | /* Disable L0S exit timer (platform NMI Work/Around) */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4190 | il_set_bit(il, CSR_GIO_CHICKEN_BITS, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4191 | CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4192 |  | 
|  | 4193 | /* | 
|  | 4194 | * Disable L0s without affecting L1; | 
|  | 4195 | *  don't wait for ICH L0s (ICH bug W/A) | 
|  | 4196 | */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4197 | il_set_bit(il, CSR_GIO_CHICKEN_BITS, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4198 | CSR_GIO_CHICKEN_BITS_REG_BIT_L1A_NO_L0S_RX); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4199 |  | 
|  | 4200 | /* Set FH wait threshold to maximum (HW error during stress W/A) */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4201 | il_set_bit(il, CSR_DBG_HPET_MEM_REG, CSR_DBG_HPET_MEM_REG_VAL); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4202 |  | 
|  | 4203 | /* | 
|  | 4204 | * Enable HAP INTA (interrupt from management bus) to | 
|  | 4205 | * wake device's PCI Express link L1a -> L0s | 
| Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 4206 | * NOTE:  This is no-op for 3945 (non-existent bit) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4207 | */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4208 | il_set_bit(il, CSR_HW_IF_CONFIG_REG, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4209 | CSR_HW_IF_CONFIG_REG_BIT_HAP_WAKE_L1A); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4210 |  | 
|  | 4211 | /* | 
|  | 4212 | * HW bug W/A for instability in PCIe bus L0->L0S->L1 transition. | 
|  | 4213 | * Check if BIOS (or OS) enabled L1-ASPM on this device. | 
|  | 4214 | * If so (likely), disable L0S, so device moves directly L0->L1; | 
|  | 4215 | *    costs negligible amount of power savings. | 
|  | 4216 | * If not (unlikely), enable L0S, so there is at least some | 
|  | 4217 | *    power savings, even without L1. | 
|  | 4218 | */ | 
| Stanislaw Gruszka | 89ef1ed | 2012-02-03 17:31:59 +0100 | [diff] [blame] | 4219 | if (il->cfg->set_l0s) { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4220 | lctl = il_pcie_link_ctl(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4221 | if ((lctl & PCI_CFG_LINK_CTRL_VAL_L1_EN) == | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4222 | PCI_CFG_LINK_CTRL_VAL_L1_EN) { | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4223 | /* L1-ASPM enabled; disable(!) L0S  */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4224 | il_set_bit(il, CSR_GIO_REG, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4225 | CSR_GIO_REG_VAL_L0S_ENABLED); | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4226 | D_POWER("L1 Enabled; Disabling L0S\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4227 | } else { | 
|  | 4228 | /* L1-ASPM disabled; enable(!) L0S */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4229 | il_clear_bit(il, CSR_GIO_REG, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4230 | CSR_GIO_REG_VAL_L0S_ENABLED); | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4231 | D_POWER("L1 Disabled; Enabling L0S\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4232 | } | 
|  | 4233 | } | 
|  | 4234 |  | 
|  | 4235 | /* Configure analog phase-lock-loop before activating to D0A */ | 
| Stanislaw Gruszka | 89ef1ed | 2012-02-03 17:31:59 +0100 | [diff] [blame] | 4236 | if (il->cfg->pll_cfg_val) | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4237 | il_set_bit(il, CSR_ANA_PLL_CFG, | 
| Stanislaw Gruszka | 89ef1ed | 2012-02-03 17:31:59 +0100 | [diff] [blame] | 4238 | il->cfg->pll_cfg_val); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4239 |  | 
|  | 4240 | /* | 
|  | 4241 | * Set "initialization complete" bit to move adapter from | 
|  | 4242 | * D0U* --> D0A* (powered-up active) state. | 
|  | 4243 | */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4244 | il_set_bit(il, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4245 |  | 
|  | 4246 | /* | 
|  | 4247 | * Wait for clock stabilization; once stabilized, access to | 
| Stanislaw Gruszka | db54eb5 | 2011-08-24 21:06:33 +0200 | [diff] [blame] | 4248 | * device-internal resources is supported, e.g. il_wr_prph() | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4249 | * and accesses to uCode SRAM. | 
|  | 4250 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4251 | ret = | 
|  | 4252 | _il_poll_bit(il, CSR_GP_CNTRL, | 
|  | 4253 | CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, | 
|  | 4254 | CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4255 | if (ret < 0) { | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4256 | D_INFO("Failed to init the card\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4257 | goto out; | 
|  | 4258 | } | 
|  | 4259 |  | 
|  | 4260 | /* | 
|  | 4261 | * Enable DMA and BSM (if used) clocks, wait for them to stabilize. | 
|  | 4262 | * BSM (Boostrap State Machine) is only in 3945 and 4965. | 
|  | 4263 | * | 
|  | 4264 | * Write to "CLK_EN_REG"; "1" bits enable clocks, while "0" bits | 
|  | 4265 | * do not disable clocks.  This preserves any hardware bits already | 
|  | 4266 | * set by default in "CLK_CTRL_REG" after reset. | 
|  | 4267 | */ | 
| Stanislaw Gruszka | 89ef1ed | 2012-02-03 17:31:59 +0100 | [diff] [blame] | 4268 | if (il->cfg->use_bsm) | 
| Stanislaw Gruszka | db54eb5 | 2011-08-24 21:06:33 +0200 | [diff] [blame] | 4269 | il_wr_prph(il, APMG_CLK_EN_REG, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4270 | APMG_CLK_VAL_DMA_CLK_RQT | APMG_CLK_VAL_BSM_CLK_RQT); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4271 | else | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4272 | il_wr_prph(il, APMG_CLK_EN_REG, APMG_CLK_VAL_DMA_CLK_RQT); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4273 | udelay(20); | 
|  | 4274 |  | 
|  | 4275 | /* Disable L1-Active */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4276 | il_set_bits_prph(il, APMG_PCIDEV_STT_REG, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4277 | APMG_PCIDEV_STT_VAL_L1_ACT_DIS); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4278 |  | 
|  | 4279 | out: | 
|  | 4280 | return ret; | 
|  | 4281 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4282 | EXPORT_SYMBOL(il_apm_init); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4283 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4284 | int | 
|  | 4285 | il_set_tx_power(struct il_priv *il, s8 tx_power, bool force) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4286 | { | 
|  | 4287 | int ret; | 
|  | 4288 | s8 prev_tx_power; | 
| Stanislaw Gruszka | 43f12d4 | 2011-02-24 14:23:55 +0100 | [diff] [blame] | 4289 | bool defer; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4290 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4291 | lockdep_assert_held(&il->mutex); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4292 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4293 | if (il->tx_power_user_lmt == tx_power && !force) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4294 | return 0; | 
|  | 4295 |  | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 4296 | if (!il->ops->lib->send_tx_power) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4297 | return -EOPNOTSUPP; | 
|  | 4298 |  | 
| Stanislaw Gruszka | 332704a | 2011-04-13 10:56:51 +0200 | [diff] [blame] | 4299 | /* 0 dBm mean 1 milliwatt */ | 
|  | 4300 | if (tx_power < 0) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4301 | IL_WARN("Requested user TXPOWER %d below 1 mW.\n", tx_power); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4302 | return -EINVAL; | 
|  | 4303 | } | 
|  | 4304 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4305 | if (tx_power > il->tx_power_device_lmt) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4306 | IL_WARN("Requested user TXPOWER %d above upper limit %d.\n", | 
|  | 4307 | tx_power, il->tx_power_device_lmt); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4308 | return -EINVAL; | 
|  | 4309 | } | 
|  | 4310 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4311 | if (!il_is_ready_rf(il)) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4312 | return -EIO; | 
|  | 4313 |  | 
| Stanislaw Gruszka | 43f12d4 | 2011-02-24 14:23:55 +0100 | [diff] [blame] | 4314 | /* scan complete and commit_rxon use tx_power_next value, | 
|  | 4315 | * it always need to be updated for newest request */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4316 | il->tx_power_next = tx_power; | 
| Stanislaw Gruszka | 43f12d4 | 2011-02-24 14:23:55 +0100 | [diff] [blame] | 4317 |  | 
|  | 4318 | /* do not set tx power when scanning or channel changing */ | 
| Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4319 | defer = test_bit(S_SCANNING, &il->status) || | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4320 | memcmp(&il->active, &il->staging, sizeof(il->staging)); | 
| Stanislaw Gruszka | 43f12d4 | 2011-02-24 14:23:55 +0100 | [diff] [blame] | 4321 | if (defer && !force) { | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4322 | D_INFO("Deferring tx power set\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4323 | return 0; | 
|  | 4324 | } | 
|  | 4325 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4326 | prev_tx_power = il->tx_power_user_lmt; | 
|  | 4327 | il->tx_power_user_lmt = tx_power; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4328 |  | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 4329 | ret = il->ops->lib->send_tx_power(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4330 |  | 
|  | 4331 | /* if fail to set tx_power, restore the orig. tx power */ | 
|  | 4332 | if (ret) { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4333 | il->tx_power_user_lmt = prev_tx_power; | 
|  | 4334 | il->tx_power_next = prev_tx_power; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4335 | } | 
|  | 4336 | return ret; | 
|  | 4337 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4338 | EXPORT_SYMBOL(il_set_tx_power); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4339 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4340 | void | 
|  | 4341 | il_send_bt_config(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4342 | { | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4343 | struct il_bt_cmd bt_cmd = { | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4344 | .lead_time = BT_LEAD_TIME_DEF, | 
|  | 4345 | .max_kill = BT_MAX_KILL_DEF, | 
|  | 4346 | .kill_ack_mask = 0, | 
|  | 4347 | .kill_cts_mask = 0, | 
|  | 4348 | }; | 
|  | 4349 |  | 
|  | 4350 | if (!bt_coex_active) | 
|  | 4351 | bt_cmd.flags = BT_COEX_DISABLE; | 
|  | 4352 | else | 
|  | 4353 | bt_cmd.flags = BT_COEX_ENABLE; | 
|  | 4354 |  | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4355 | D_INFO("BT coex %s\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4356 | (bt_cmd.flags == BT_COEX_DISABLE) ? "disable" : "active"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4357 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4358 | if (il_send_cmd_pdu(il, C_BT_CONFIG, sizeof(struct il_bt_cmd), &bt_cmd)) | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4359 | IL_ERR("failed to send BT Coex Config\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4360 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4361 | EXPORT_SYMBOL(il_send_bt_config); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4362 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4363 | int | 
|  | 4364 | il_send_stats_request(struct il_priv *il, u8 flags, bool clear) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4365 | { | 
| Stanislaw Gruszka | ebf0d90 | 2011-08-26 15:43:47 +0200 | [diff] [blame] | 4366 | struct il_stats_cmd stats_cmd = { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4367 | .configuration_flags = clear ? IL_STATS_CONF_CLEAR_STATS : 0, | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4368 | }; | 
|  | 4369 |  | 
|  | 4370 | if (flags & CMD_ASYNC) | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4371 | return il_send_cmd_pdu_async(il, C_STATS, sizeof(struct il_stats_cmd), | 
|  | 4372 | &stats_cmd, NULL); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4373 | else | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4374 | return il_send_cmd_pdu(il, C_STATS, sizeof(struct il_stats_cmd), | 
|  | 4375 | &stats_cmd); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4376 | } | 
| Stanislaw Gruszka | ebf0d90 | 2011-08-26 15:43:47 +0200 | [diff] [blame] | 4377 | EXPORT_SYMBOL(il_send_stats_request); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4378 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4379 | void | 
|  | 4380 | il_hdl_pm_sleep(struct il_priv *il, struct il_rx_buf *rxb) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4381 | { | 
| Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4382 | #ifdef CONFIG_IWLEGACY_DEBUG | 
| Stanislaw Gruszka | dcae1c6 | 2011-08-26 14:36:21 +0200 | [diff] [blame] | 4383 | struct il_rx_pkt *pkt = rxb_addr(rxb); | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4384 | struct il_sleep_notification *sleep = &(pkt->u.sleep_notif); | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4385 | D_RX("sleep mode: %d, src: %d\n", | 
| Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 4386 | sleep->pm_sleep_mode, sleep->pm_wakeup_src); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4387 | #endif | 
|  | 4388 | } | 
| Stanislaw Gruszka | d2dfb33 | 2011-11-15 13:16:38 +0100 | [diff] [blame] | 4389 | EXPORT_SYMBOL(il_hdl_pm_sleep); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4390 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4391 | void | 
|  | 4392 | il_hdl_pm_debug_stats(struct il_priv *il, struct il_rx_buf *rxb) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4393 | { | 
| Stanislaw Gruszka | dcae1c6 | 2011-08-26 14:36:21 +0200 | [diff] [blame] | 4394 | struct il_rx_pkt *pkt = rxb_addr(rxb); | 
| Stanislaw Gruszka | e94a409 | 2011-08-31 13:23:20 +0200 | [diff] [blame] | 4395 | u32 len = le32_to_cpu(pkt->len_n_flags) & IL_RX_FRAME_SIZE_MSK; | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4396 | D_RADIO("Dumping %d bytes of unhandled notification for %s:\n", len, | 
|  | 4397 | il_get_cmd_string(pkt->hdr.cmd)); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4398 | il_print_hex_dump(il, IL_DL_RADIO, pkt->u.raw, len); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4399 | } | 
| Stanislaw Gruszka | d2dfb33 | 2011-11-15 13:16:38 +0100 | [diff] [blame] | 4400 | EXPORT_SYMBOL(il_hdl_pm_debug_stats); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4401 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4402 | void | 
|  | 4403 | il_hdl_error(struct il_priv *il, struct il_rx_buf *rxb) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4404 | { | 
| Stanislaw Gruszka | dcae1c6 | 2011-08-26 14:36:21 +0200 | [diff] [blame] | 4405 | struct il_rx_pkt *pkt = rxb_addr(rxb); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4406 |  | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4407 | IL_ERR("Error Reply type 0x%08X cmd %s (0x%02X) " | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4408 | "seq 0x%04X ser 0x%08X\n", | 
|  | 4409 | le32_to_cpu(pkt->u.err_resp.error_type), | 
|  | 4410 | il_get_cmd_string(pkt->u.err_resp.cmd_id), | 
|  | 4411 | pkt->u.err_resp.cmd_id, | 
|  | 4412 | le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num), | 
|  | 4413 | le32_to_cpu(pkt->u.err_resp.error_info)); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4414 | } | 
| Stanislaw Gruszka | 6e9848b4 | 2011-08-30 15:45:31 +0200 | [diff] [blame] | 4415 | EXPORT_SYMBOL(il_hdl_error); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4416 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4417 | void | 
|  | 4418 | il_clear_isr_stats(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4419 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4420 | memset(&il->isr_stats, 0, sizeof(il->isr_stats)); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4421 | } | 
|  | 4422 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4423 | int | 
|  | 4424 | il_mac_conf_tx(struct ieee80211_hw *hw, struct ieee80211_vif *vif, u16 queue, | 
|  | 4425 | const struct ieee80211_tx_queue_params *params) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4426 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4427 | struct il_priv *il = hw->priv; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4428 | unsigned long flags; | 
|  | 4429 | int q; | 
|  | 4430 |  | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4431 | D_MAC80211("enter\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4432 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4433 | if (!il_is_ready_rf(il)) { | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4434 | D_MAC80211("leave - RF not ready\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4435 | return -EIO; | 
|  | 4436 | } | 
|  | 4437 |  | 
|  | 4438 | if (queue >= AC_NUM) { | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4439 | D_MAC80211("leave - queue >= AC_NUM %d\n", queue); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4440 | return 0; | 
|  | 4441 | } | 
|  | 4442 |  | 
|  | 4443 | q = AC_NUM - 1 - queue; | 
|  | 4444 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4445 | spin_lock_irqsave(&il->lock, flags); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4446 |  | 
| Stanislaw Gruszka | 8d44f2b | 2012-02-03 17:31:51 +0100 | [diff] [blame] | 4447 | il->qos_data.def_qos_parm.ac[q].cw_min = | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4448 | cpu_to_le16(params->cw_min); | 
| Stanislaw Gruszka | 8d44f2b | 2012-02-03 17:31:51 +0100 | [diff] [blame] | 4449 | il->qos_data.def_qos_parm.ac[q].cw_max = | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4450 | cpu_to_le16(params->cw_max); | 
| Stanislaw Gruszka | 8d44f2b | 2012-02-03 17:31:51 +0100 | [diff] [blame] | 4451 | il->qos_data.def_qos_parm.ac[q].aifsn = params->aifs; | 
|  | 4452 | il->qos_data.def_qos_parm.ac[q].edca_txop = | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4453 | cpu_to_le16((params->txop * 32)); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4454 |  | 
| Stanislaw Gruszka | 8d44f2b | 2012-02-03 17:31:51 +0100 | [diff] [blame] | 4455 | il->qos_data.def_qos_parm.ac[q].reserved1 = 0; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4456 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4457 | spin_unlock_irqrestore(&il->lock, flags); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4458 |  | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4459 | D_MAC80211("leave\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4460 | return 0; | 
|  | 4461 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4462 | EXPORT_SYMBOL(il_mac_conf_tx); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4463 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4464 | int | 
|  | 4465 | il_mac_tx_last_beacon(struct ieee80211_hw *hw) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4466 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4467 | struct il_priv *il = hw->priv; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4468 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4469 | return il->ibss_manager == IL_IBSS_MANAGER; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4470 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4471 | EXPORT_SYMBOL_GPL(il_mac_tx_last_beacon); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4472 |  | 
|  | 4473 | static int | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 4474 | il_set_mode(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4475 | { | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 4476 | il_connection_init_rx_config(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4477 |  | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 4478 | if (il->ops->hcmd->set_rxon_chain) | 
|  | 4479 | il->ops->hcmd->set_rxon_chain(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4480 |  | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 4481 | return il_commit_rxon(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4482 | } | 
|  | 4483 |  | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4484 | int | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4485 | il_mac_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4486 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4487 | struct il_priv *il = hw->priv; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4488 | int err; | 
|  | 4489 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4490 | D_MAC80211("enter: type %d, addr %pM\n", vif->type, vif->addr); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4491 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4492 | mutex_lock(&il->mutex); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4493 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4494 | if (!il_is_ready_rf(il)) { | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4495 | IL_WARN("Try to add interface when device not ready\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4496 | err = -EINVAL; | 
|  | 4497 | goto out; | 
|  | 4498 | } | 
|  | 4499 |  | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 4500 | if (il->vif) { | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4501 | err = -EOPNOTSUPP; | 
|  | 4502 | goto out; | 
|  | 4503 | } | 
|  | 4504 |  | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 4505 | il->vif = vif; | 
| Stanislaw Gruszka | 20c47eb | 2012-02-03 17:31:56 +0100 | [diff] [blame] | 4506 | il->iw_mode = vif->type; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4507 |  | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 4508 | err = il_set_mode(il); | 
| Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 4509 | if (err) { | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 4510 | il->vif = NULL; | 
| Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 4511 | il->iw_mode = NL80211_IFTYPE_STATION; | 
|  | 4512 | } | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4513 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4514 | out: | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4515 | mutex_unlock(&il->mutex); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4516 |  | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4517 | D_MAC80211("leave\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4518 | return err; | 
|  | 4519 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4520 | EXPORT_SYMBOL(il_mac_add_interface); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4521 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4522 | static void | 
|  | 4523 | il_teardown_interface(struct il_priv *il, struct ieee80211_vif *vif, | 
|  | 4524 | bool mode_change) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4525 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4526 | lockdep_assert_held(&il->mutex); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4527 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4528 | if (il->scan_vif == vif) { | 
|  | 4529 | il_scan_cancel_timeout(il, 200); | 
|  | 4530 | il_force_scan_end(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4531 | } | 
|  | 4532 |  | 
| Stanislaw Gruszka | dee9a09 | 2012-02-03 17:31:55 +0100 | [diff] [blame] | 4533 | if (!mode_change) | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 4534 | il_set_mode(il); | 
| Stanislaw Gruszka | dee9a09 | 2012-02-03 17:31:55 +0100 | [diff] [blame] | 4535 |  | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4536 | } | 
|  | 4537 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4538 | void | 
|  | 4539 | il_mac_remove_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4540 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4541 | struct il_priv *il = hw->priv; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4542 |  | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4543 | D_MAC80211("enter\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4544 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4545 | mutex_lock(&il->mutex); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4546 |  | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 4547 | WARN_ON(il->vif != vif); | 
|  | 4548 | il->vif = NULL; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4549 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4550 | il_teardown_interface(il, vif, false); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4551 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4552 | memset(il->bssid, 0, ETH_ALEN); | 
|  | 4553 | mutex_unlock(&il->mutex); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4554 |  | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4555 | D_MAC80211("leave\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4556 |  | 
|  | 4557 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4558 | EXPORT_SYMBOL(il_mac_remove_interface); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4559 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4560 | int | 
|  | 4561 | il_alloc_txq_mem(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4562 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4563 | if (!il->txq) | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4564 | il->txq = | 
|  | 4565 | kzalloc(sizeof(struct il_tx_queue) * | 
| Stanislaw Gruszka | 89ef1ed | 2012-02-03 17:31:59 +0100 | [diff] [blame] | 4566 | il->cfg->num_of_queues, GFP_KERNEL); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4567 | if (!il->txq) { | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4568 | IL_ERR("Not enough memory for txq\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4569 | return -ENOMEM; | 
|  | 4570 | } | 
|  | 4571 | return 0; | 
|  | 4572 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4573 | EXPORT_SYMBOL(il_alloc_txq_mem); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4574 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4575 | void | 
|  | 4576 | il_txq_mem(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4577 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4578 | kfree(il->txq); | 
|  | 4579 | il->txq = NULL; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4580 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4581 | EXPORT_SYMBOL(il_txq_mem); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4582 |  | 
| Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4583 | #ifdef CONFIG_IWLEGACY_DEBUGFS | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4584 |  | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4585 | #define IL_TRAFFIC_DUMP_SIZE	(IL_TRAFFIC_ENTRY_SIZE * IL_TRAFFIC_ENTRIES) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4586 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4587 | void | 
|  | 4588 | il_reset_traffic_log(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4589 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4590 | il->tx_traffic_idx = 0; | 
|  | 4591 | il->rx_traffic_idx = 0; | 
|  | 4592 | if (il->tx_traffic) | 
|  | 4593 | memset(il->tx_traffic, 0, IL_TRAFFIC_DUMP_SIZE); | 
|  | 4594 | if (il->rx_traffic) | 
|  | 4595 | memset(il->rx_traffic, 0, IL_TRAFFIC_DUMP_SIZE); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4596 | } | 
|  | 4597 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4598 | int | 
|  | 4599 | il_alloc_traffic_mem(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4600 | { | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4601 | u32 traffic_size = IL_TRAFFIC_DUMP_SIZE; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4602 |  | 
| Stanislaw Gruszka | d2ddf62 | 2011-08-16 14:17:04 +0200 | [diff] [blame] | 4603 | if (il_debug_level & IL_DL_TX) { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4604 | if (!il->tx_traffic) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4605 | il->tx_traffic = kzalloc(traffic_size, GFP_KERNEL); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4606 | if (!il->tx_traffic) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4607 | return -ENOMEM; | 
|  | 4608 | } | 
|  | 4609 | } | 
| Stanislaw Gruszka | d2ddf62 | 2011-08-16 14:17:04 +0200 | [diff] [blame] | 4610 | if (il_debug_level & IL_DL_RX) { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4611 | if (!il->rx_traffic) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4612 | il->rx_traffic = kzalloc(traffic_size, GFP_KERNEL); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4613 | if (!il->rx_traffic) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4614 | return -ENOMEM; | 
|  | 4615 | } | 
|  | 4616 | } | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4617 | il_reset_traffic_log(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4618 | return 0; | 
|  | 4619 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4620 | EXPORT_SYMBOL(il_alloc_traffic_mem); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4621 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4622 | void | 
|  | 4623 | il_free_traffic_mem(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4624 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4625 | kfree(il->tx_traffic); | 
|  | 4626 | il->tx_traffic = NULL; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4627 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4628 | kfree(il->rx_traffic); | 
|  | 4629 | il->rx_traffic = NULL; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4630 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4631 | EXPORT_SYMBOL(il_free_traffic_mem); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4632 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4633 | void | 
|  | 4634 | il_dbg_log_tx_data_frame(struct il_priv *il, u16 length, | 
|  | 4635 | struct ieee80211_hdr *header) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4636 | { | 
|  | 4637 | __le16 fc; | 
|  | 4638 | u16 len; | 
|  | 4639 |  | 
| Stanislaw Gruszka | d2ddf62 | 2011-08-16 14:17:04 +0200 | [diff] [blame] | 4640 | if (likely(!(il_debug_level & IL_DL_TX))) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4641 | return; | 
|  | 4642 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4643 | if (!il->tx_traffic) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4644 | return; | 
|  | 4645 |  | 
|  | 4646 | fc = header->frame_control; | 
|  | 4647 | if (ieee80211_is_data(fc)) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4648 | len = | 
|  | 4649 | (length > | 
|  | 4650 | IL_TRAFFIC_ENTRY_SIZE) ? IL_TRAFFIC_ENTRY_SIZE : length; | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4651 | memcpy((il->tx_traffic + | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4652 | (il->tx_traffic_idx * IL_TRAFFIC_ENTRY_SIZE)), header, | 
|  | 4653 | len); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4654 | il->tx_traffic_idx = | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4655 | (il->tx_traffic_idx + 1) % IL_TRAFFIC_ENTRIES; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4656 | } | 
|  | 4657 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4658 | EXPORT_SYMBOL(il_dbg_log_tx_data_frame); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4659 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4660 | void | 
|  | 4661 | il_dbg_log_rx_data_frame(struct il_priv *il, u16 length, | 
|  | 4662 | struct ieee80211_hdr *header) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4663 | { | 
|  | 4664 | __le16 fc; | 
|  | 4665 | u16 len; | 
|  | 4666 |  | 
| Stanislaw Gruszka | d2ddf62 | 2011-08-16 14:17:04 +0200 | [diff] [blame] | 4667 | if (likely(!(il_debug_level & IL_DL_RX))) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4668 | return; | 
|  | 4669 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4670 | if (!il->rx_traffic) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4671 | return; | 
|  | 4672 |  | 
|  | 4673 | fc = header->frame_control; | 
|  | 4674 | if (ieee80211_is_data(fc)) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4675 | len = | 
|  | 4676 | (length > | 
|  | 4677 | IL_TRAFFIC_ENTRY_SIZE) ? IL_TRAFFIC_ENTRY_SIZE : length; | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4678 | memcpy((il->rx_traffic + | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4679 | (il->rx_traffic_idx * IL_TRAFFIC_ENTRY_SIZE)), header, | 
|  | 4680 | len); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4681 | il->rx_traffic_idx = | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4682 | (il->rx_traffic_idx + 1) % IL_TRAFFIC_ENTRIES; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4683 | } | 
|  | 4684 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4685 | EXPORT_SYMBOL(il_dbg_log_rx_data_frame); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4686 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4687 | const char * | 
|  | 4688 | il_get_mgmt_string(int cmd) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4689 | { | 
|  | 4690 | switch (cmd) { | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4691 | IL_CMD(MANAGEMENT_ASSOC_REQ); | 
|  | 4692 | IL_CMD(MANAGEMENT_ASSOC_RESP); | 
|  | 4693 | IL_CMD(MANAGEMENT_REASSOC_REQ); | 
|  | 4694 | IL_CMD(MANAGEMENT_REASSOC_RESP); | 
|  | 4695 | IL_CMD(MANAGEMENT_PROBE_REQ); | 
|  | 4696 | IL_CMD(MANAGEMENT_PROBE_RESP); | 
|  | 4697 | IL_CMD(MANAGEMENT_BEACON); | 
|  | 4698 | IL_CMD(MANAGEMENT_ATIM); | 
|  | 4699 | IL_CMD(MANAGEMENT_DISASSOC); | 
|  | 4700 | IL_CMD(MANAGEMENT_AUTH); | 
|  | 4701 | IL_CMD(MANAGEMENT_DEAUTH); | 
|  | 4702 | IL_CMD(MANAGEMENT_ACTION); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4703 | default: | 
|  | 4704 | return "UNKNOWN"; | 
|  | 4705 |  | 
|  | 4706 | } | 
|  | 4707 | } | 
|  | 4708 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4709 | const char * | 
|  | 4710 | il_get_ctrl_string(int cmd) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4711 | { | 
|  | 4712 | switch (cmd) { | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4713 | IL_CMD(CONTROL_BACK_REQ); | 
|  | 4714 | IL_CMD(CONTROL_BACK); | 
|  | 4715 | IL_CMD(CONTROL_PSPOLL); | 
|  | 4716 | IL_CMD(CONTROL_RTS); | 
|  | 4717 | IL_CMD(CONTROL_CTS); | 
|  | 4718 | IL_CMD(CONTROL_ACK); | 
|  | 4719 | IL_CMD(CONTROL_CFEND); | 
|  | 4720 | IL_CMD(CONTROL_CFENDACK); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4721 | default: | 
|  | 4722 | return "UNKNOWN"; | 
|  | 4723 |  | 
|  | 4724 | } | 
|  | 4725 | } | 
|  | 4726 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4727 | void | 
|  | 4728 | il_clear_traffic_stats(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4729 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4730 | memset(&il->tx_stats, 0, sizeof(struct traffic_stats)); | 
|  | 4731 | memset(&il->rx_stats, 0, sizeof(struct traffic_stats)); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4732 | } | 
|  | 4733 |  | 
|  | 4734 | /* | 
| Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4735 | * if CONFIG_IWLEGACY_DEBUGFS defined, | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4736 | * il_update_stats function will | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4737 | * record all the MGMT, CTRL and DATA pkt for both TX and Rx pass | 
| Stanislaw Gruszka | ebf0d90 | 2011-08-26 15:43:47 +0200 | [diff] [blame] | 4738 | * Use debugFs to display the rx/rx_stats | 
| Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4739 | * if CONFIG_IWLEGACY_DEBUGFS not being defined, then no MGMT and CTRL | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4740 | * information will be recorded, but DATA pkt still will be recorded | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4741 | * for the reason of il_led.c need to control the led blinking based on | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4742 | * number of tx and rx data. | 
|  | 4743 | * | 
|  | 4744 | */ | 
|  | 4745 | void | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4746 | il_update_stats(struct il_priv *il, bool is_tx, __le16 fc, u16 len) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4747 | { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4748 | struct traffic_stats *stats; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4749 |  | 
|  | 4750 | if (is_tx) | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4751 | stats = &il->tx_stats; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4752 | else | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4753 | stats = &il->rx_stats; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4754 |  | 
|  | 4755 | if (ieee80211_is_mgmt(fc)) { | 
|  | 4756 | switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) { | 
|  | 4757 | case cpu_to_le16(IEEE80211_STYPE_ASSOC_REQ): | 
|  | 4758 | stats->mgmt[MANAGEMENT_ASSOC_REQ]++; | 
|  | 4759 | break; | 
|  | 4760 | case cpu_to_le16(IEEE80211_STYPE_ASSOC_RESP): | 
|  | 4761 | stats->mgmt[MANAGEMENT_ASSOC_RESP]++; | 
|  | 4762 | break; | 
|  | 4763 | case cpu_to_le16(IEEE80211_STYPE_REASSOC_REQ): | 
|  | 4764 | stats->mgmt[MANAGEMENT_REASSOC_REQ]++; | 
|  | 4765 | break; | 
|  | 4766 | case cpu_to_le16(IEEE80211_STYPE_REASSOC_RESP): | 
|  | 4767 | stats->mgmt[MANAGEMENT_REASSOC_RESP]++; | 
|  | 4768 | break; | 
|  | 4769 | case cpu_to_le16(IEEE80211_STYPE_PROBE_REQ): | 
|  | 4770 | stats->mgmt[MANAGEMENT_PROBE_REQ]++; | 
|  | 4771 | break; | 
|  | 4772 | case cpu_to_le16(IEEE80211_STYPE_PROBE_RESP): | 
|  | 4773 | stats->mgmt[MANAGEMENT_PROBE_RESP]++; | 
|  | 4774 | break; | 
|  | 4775 | case cpu_to_le16(IEEE80211_STYPE_BEACON): | 
|  | 4776 | stats->mgmt[MANAGEMENT_BEACON]++; | 
|  | 4777 | break; | 
|  | 4778 | case cpu_to_le16(IEEE80211_STYPE_ATIM): | 
|  | 4779 | stats->mgmt[MANAGEMENT_ATIM]++; | 
|  | 4780 | break; | 
|  | 4781 | case cpu_to_le16(IEEE80211_STYPE_DISASSOC): | 
|  | 4782 | stats->mgmt[MANAGEMENT_DISASSOC]++; | 
|  | 4783 | break; | 
|  | 4784 | case cpu_to_le16(IEEE80211_STYPE_AUTH): | 
|  | 4785 | stats->mgmt[MANAGEMENT_AUTH]++; | 
|  | 4786 | break; | 
|  | 4787 | case cpu_to_le16(IEEE80211_STYPE_DEAUTH): | 
|  | 4788 | stats->mgmt[MANAGEMENT_DEAUTH]++; | 
|  | 4789 | break; | 
|  | 4790 | case cpu_to_le16(IEEE80211_STYPE_ACTION): | 
|  | 4791 | stats->mgmt[MANAGEMENT_ACTION]++; | 
|  | 4792 | break; | 
|  | 4793 | } | 
|  | 4794 | } else if (ieee80211_is_ctl(fc)) { | 
|  | 4795 | switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) { | 
|  | 4796 | case cpu_to_le16(IEEE80211_STYPE_BACK_REQ): | 
|  | 4797 | stats->ctrl[CONTROL_BACK_REQ]++; | 
|  | 4798 | break; | 
|  | 4799 | case cpu_to_le16(IEEE80211_STYPE_BACK): | 
|  | 4800 | stats->ctrl[CONTROL_BACK]++; | 
|  | 4801 | break; | 
|  | 4802 | case cpu_to_le16(IEEE80211_STYPE_PSPOLL): | 
|  | 4803 | stats->ctrl[CONTROL_PSPOLL]++; | 
|  | 4804 | break; | 
|  | 4805 | case cpu_to_le16(IEEE80211_STYPE_RTS): | 
|  | 4806 | stats->ctrl[CONTROL_RTS]++; | 
|  | 4807 | break; | 
|  | 4808 | case cpu_to_le16(IEEE80211_STYPE_CTS): | 
|  | 4809 | stats->ctrl[CONTROL_CTS]++; | 
|  | 4810 | break; | 
|  | 4811 | case cpu_to_le16(IEEE80211_STYPE_ACK): | 
|  | 4812 | stats->ctrl[CONTROL_ACK]++; | 
|  | 4813 | break; | 
|  | 4814 | case cpu_to_le16(IEEE80211_STYPE_CFEND): | 
|  | 4815 | stats->ctrl[CONTROL_CFEND]++; | 
|  | 4816 | break; | 
|  | 4817 | case cpu_to_le16(IEEE80211_STYPE_CFENDACK): | 
|  | 4818 | stats->ctrl[CONTROL_CFENDACK]++; | 
|  | 4819 | break; | 
|  | 4820 | } | 
|  | 4821 | } else { | 
|  | 4822 | /* data */ | 
|  | 4823 | stats->data_cnt++; | 
|  | 4824 | stats->data_bytes += len; | 
|  | 4825 | } | 
|  | 4826 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4827 | EXPORT_SYMBOL(il_update_stats); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4828 | #endif | 
|  | 4829 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4830 | int | 
|  | 4831 | il_force_reset(struct il_priv *il, bool external) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4832 | { | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4833 | struct il_force_reset *force_reset; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4834 |  | 
| Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4835 | if (test_bit(S_EXIT_PENDING, &il->status)) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4836 | return -EINVAL; | 
|  | 4837 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4838 | force_reset = &il->force_reset; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4839 | force_reset->reset_request_count++; | 
|  | 4840 | if (!external) { | 
|  | 4841 | if (force_reset->last_force_reset_jiffies && | 
|  | 4842 | time_after(force_reset->last_force_reset_jiffies + | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4843 | force_reset->reset_duration, jiffies)) { | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4844 | D_INFO("force reset rejected\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4845 | force_reset->reset_reject_count++; | 
|  | 4846 | return -EAGAIN; | 
|  | 4847 | } | 
|  | 4848 | } | 
|  | 4849 | force_reset->reset_success_count++; | 
|  | 4850 | force_reset->last_force_reset_jiffies = jiffies; | 
| Stanislaw Gruszka | dd6d2a8 | 2011-06-08 15:28:26 +0200 | [diff] [blame] | 4851 |  | 
|  | 4852 | /* | 
|  | 4853 | * if the request is from external(ex: debugfs), | 
|  | 4854 | * then always perform the request in regardless the module | 
|  | 4855 | * parameter setting | 
|  | 4856 | * if the request is from internal (uCode error or driver | 
|  | 4857 | * detect failure), then fw_restart module parameter | 
|  | 4858 | * need to be check before performing firmware reload | 
|  | 4859 | */ | 
|  | 4860 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4861 | if (!external && !il->cfg->mod_params->restart_fw) { | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4862 | D_INFO("Cancel firmware reload based on " | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4863 | "module parameter setting\n"); | 
| Stanislaw Gruszka | dd6d2a8 | 2011-06-08 15:28:26 +0200 | [diff] [blame] | 4864 | return 0; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4865 | } | 
| Stanislaw Gruszka | dd6d2a8 | 2011-06-08 15:28:26 +0200 | [diff] [blame] | 4866 |  | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4867 | IL_ERR("On demand firmware reload\n"); | 
| Stanislaw Gruszka | dd6d2a8 | 2011-06-08 15:28:26 +0200 | [diff] [blame] | 4868 |  | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4869 | /* Set the FW error flag -- cleared on il_down */ | 
| Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4870 | set_bit(S_FW_ERROR, &il->status); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4871 | wake_up(&il->wait_command_queue); | 
| Stanislaw Gruszka | dd6d2a8 | 2011-06-08 15:28:26 +0200 | [diff] [blame] | 4872 | /* | 
|  | 4873 | * Keep the restart process from trying to send host | 
|  | 4874 | * commands by clearing the INIT status bit | 
|  | 4875 | */ | 
| Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4876 | clear_bit(S_READY, &il->status); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4877 | queue_work(il->workqueue, &il->restart); | 
| Stanislaw Gruszka | dd6d2a8 | 2011-06-08 15:28:26 +0200 | [diff] [blame] | 4878 |  | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4879 | return 0; | 
|  | 4880 | } | 
|  | 4881 |  | 
|  | 4882 | int | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4883 | il_mac_change_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif, | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4884 | enum nl80211_iftype newtype, bool newp2p) | 
|  | 4885 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4886 | struct il_priv *il = hw->priv; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4887 | int err; | 
|  | 4888 |  | 
| Stanislaw Gruszka | 8c9c48d | 2012-02-03 17:31:50 +0100 | [diff] [blame] | 4889 | if (newp2p) | 
|  | 4890 | return -EOPNOTSUPP; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4891 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4892 | mutex_lock(&il->mutex); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4893 |  | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 4894 | if (!il->vif || !il_is_ready_rf(il)) { | 
| Johannes Berg | ffd8c74 | 2011-03-29 15:28:11 +0200 | [diff] [blame] | 4895 | /* | 
|  | 4896 | * Huh? But wait ... this can maybe happen when | 
|  | 4897 | * we're in the middle of a firmware restart! | 
|  | 4898 | */ | 
|  | 4899 | err = -EBUSY; | 
|  | 4900 | goto out; | 
|  | 4901 | } | 
|  | 4902 |  | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4903 | /* success */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4904 | il_teardown_interface(il, vif, true); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4905 | vif->type = newtype; | 
| Stanislaw Gruszka | 8c9c48d | 2012-02-03 17:31:50 +0100 | [diff] [blame] | 4906 | vif->p2p = false; | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 4907 | err = il_set_mode(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4908 | WARN_ON(err); | 
|  | 4909 | /* | 
|  | 4910 | * We've switched internally, but submitting to the | 
|  | 4911 | * device may have failed for some reason. Mask this | 
|  | 4912 | * error, because otherwise mac80211 will not switch | 
|  | 4913 | * (and set the interface type back) and we'll be | 
|  | 4914 | * out of sync with it. | 
|  | 4915 | */ | 
|  | 4916 | err = 0; | 
|  | 4917 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4918 | out: | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4919 | mutex_unlock(&il->mutex); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4920 | return err; | 
|  | 4921 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4922 | EXPORT_SYMBOL(il_mac_change_interface); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4923 |  | 
|  | 4924 | /* | 
|  | 4925 | * On every watchdog tick we check (latest) time stamp. If it does not | 
|  | 4926 | * change during timeout period and queue is not empty we reset firmware. | 
|  | 4927 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4928 | static int | 
|  | 4929 | il_check_stuck_queue(struct il_priv *il, int cnt) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4930 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4931 | struct il_tx_queue *txq = &il->txq[cnt]; | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4932 | struct il_queue *q = &txq->q; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4933 | unsigned long timeout; | 
|  | 4934 | int ret; | 
|  | 4935 |  | 
|  | 4936 | if (q->read_ptr == q->write_ptr) { | 
|  | 4937 | txq->time_stamp = jiffies; | 
|  | 4938 | return 0; | 
|  | 4939 | } | 
|  | 4940 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4941 | timeout = | 
|  | 4942 | txq->time_stamp + | 
| Stanislaw Gruszka | 89ef1ed | 2012-02-03 17:31:59 +0100 | [diff] [blame] | 4943 | msecs_to_jiffies(il->cfg->wd_timeout); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4944 |  | 
|  | 4945 | if (time_after(jiffies, timeout)) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4946 | IL_ERR("Queue %d stuck for %u ms.\n", q->id, | 
| Stanislaw Gruszka | 89ef1ed | 2012-02-03 17:31:59 +0100 | [diff] [blame] | 4947 | il->cfg->wd_timeout); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4948 | ret = il_force_reset(il, false); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4949 | return (ret == -EAGAIN) ? 0 : 1; | 
|  | 4950 | } | 
|  | 4951 |  | 
|  | 4952 | return 0; | 
|  | 4953 | } | 
|  | 4954 |  | 
|  | 4955 | /* | 
|  | 4956 | * Making watchdog tick be a quarter of timeout assure we will | 
|  | 4957 | * discover the queue hung between timeout and 1.25*timeout | 
|  | 4958 | */ | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4959 | #define IL_WD_TICK(timeout) ((timeout) / 4) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4960 |  | 
|  | 4961 | /* | 
|  | 4962 | * Watchdog timer callback, we check each tx queue for stuck, if if hung | 
|  | 4963 | * we reset the firmware. If everything is fine just rearm the timer. | 
|  | 4964 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4965 | void | 
|  | 4966 | il_bg_watchdog(unsigned long data) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4967 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4968 | struct il_priv *il = (struct il_priv *)data; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4969 | int cnt; | 
|  | 4970 | unsigned long timeout; | 
|  | 4971 |  | 
| Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4972 | if (test_bit(S_EXIT_PENDING, &il->status)) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4973 | return; | 
|  | 4974 |  | 
| Stanislaw Gruszka | 89ef1ed | 2012-02-03 17:31:59 +0100 | [diff] [blame] | 4975 | timeout = il->cfg->wd_timeout; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4976 | if (timeout == 0) | 
|  | 4977 | return; | 
|  | 4978 |  | 
|  | 4979 | /* monitor and check for stuck cmd queue */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4980 | if (il_check_stuck_queue(il, il->cmd_queue)) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4981 | return; | 
|  | 4982 |  | 
|  | 4983 | /* monitor and check for other stuck queues */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4984 | if (il_is_any_associated(il)) { | 
|  | 4985 | for (cnt = 0; cnt < il->hw_params.max_txq_num; cnt++) { | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4986 | /* skip as we already checked the command queue */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4987 | if (cnt == il->cmd_queue) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4988 | continue; | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4989 | if (il_check_stuck_queue(il, cnt)) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4990 | return; | 
|  | 4991 | } | 
|  | 4992 | } | 
|  | 4993 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4994 | mod_timer(&il->watchdog, | 
|  | 4995 | jiffies + msecs_to_jiffies(IL_WD_TICK(timeout))); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4996 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4997 | EXPORT_SYMBOL(il_bg_watchdog); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4998 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4999 | void | 
|  | 5000 | il_setup_watchdog(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5001 | { | 
| Stanislaw Gruszka | 89ef1ed | 2012-02-03 17:31:59 +0100 | [diff] [blame] | 5002 | unsigned int timeout = il->cfg->wd_timeout; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5003 |  | 
|  | 5004 | if (timeout) | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5005 | mod_timer(&il->watchdog, | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5006 | jiffies + msecs_to_jiffies(IL_WD_TICK(timeout))); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5007 | else | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5008 | del_timer(&il->watchdog); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5009 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5010 | EXPORT_SYMBOL(il_setup_watchdog); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5011 |  | 
|  | 5012 | /* | 
|  | 5013 | * extended beacon time format | 
|  | 5014 | * time in usec will be changed into a 32-bit value in extended:internal format | 
|  | 5015 | * the extended part is the beacon counts | 
|  | 5016 | * the internal part is the time in usec within one beacon interval | 
|  | 5017 | */ | 
|  | 5018 | u32 | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5019 | il_usecs_to_beacons(struct il_priv *il, u32 usec, u32 beacon_interval) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5020 | { | 
|  | 5021 | u32 quot; | 
|  | 5022 | u32 rem; | 
|  | 5023 | u32 interval = beacon_interval * TIME_UNIT; | 
|  | 5024 |  | 
|  | 5025 | if (!interval || !usec) | 
|  | 5026 | return 0; | 
|  | 5027 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5028 | quot = | 
|  | 5029 | (usec / | 
|  | 5030 | interval) & (il_beacon_time_mask_high(il, | 
|  | 5031 | il->hw_params. | 
|  | 5032 | beacon_time_tsf_bits) >> il-> | 
|  | 5033 | hw_params.beacon_time_tsf_bits); | 
|  | 5034 | rem = | 
|  | 5035 | (usec % interval) & il_beacon_time_mask_low(il, | 
|  | 5036 | il->hw_params. | 
|  | 5037 | beacon_time_tsf_bits); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5038 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5039 | return (quot << il->hw_params.beacon_time_tsf_bits) + rem; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5040 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5041 | EXPORT_SYMBOL(il_usecs_to_beacons); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5042 |  | 
|  | 5043 | /* base is usually what we get from ucode with each received frame, | 
|  | 5044 | * the same as HW timer counter counting down | 
|  | 5045 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5046 | __le32 | 
| Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 5047 | il_add_beacon_time(struct il_priv *il, u32 base, u32 addon, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5048 | u32 beacon_interval) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5049 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5050 | u32 base_low = base & il_beacon_time_mask_low(il, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5051 | il->hw_params. | 
|  | 5052 | beacon_time_tsf_bits); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5053 | u32 addon_low = addon & il_beacon_time_mask_low(il, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5054 | il->hw_params. | 
|  | 5055 | beacon_time_tsf_bits); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5056 | u32 interval = beacon_interval * TIME_UNIT; | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5057 | u32 res = (base & il_beacon_time_mask_high(il, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5058 | il->hw_params. | 
|  | 5059 | beacon_time_tsf_bits)) + | 
|  | 5060 | (addon & il_beacon_time_mask_high(il, | 
|  | 5061 | il->hw_params. | 
|  | 5062 | beacon_time_tsf_bits)); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5063 |  | 
|  | 5064 | if (base_low > addon_low) | 
|  | 5065 | res += base_low - addon_low; | 
|  | 5066 | else if (base_low < addon_low) { | 
|  | 5067 | res += interval + base_low - addon_low; | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5068 | res += (1 << il->hw_params.beacon_time_tsf_bits); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5069 | } else | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5070 | res += (1 << il->hw_params.beacon_time_tsf_bits); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5071 |  | 
|  | 5072 | return cpu_to_le32(res); | 
|  | 5073 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5074 | EXPORT_SYMBOL(il_add_beacon_time); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5075 |  | 
|  | 5076 | #ifdef CONFIG_PM | 
|  | 5077 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5078 | int | 
|  | 5079 | il_pci_suspend(struct device *device) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5080 | { | 
|  | 5081 | struct pci_dev *pdev = to_pci_dev(device); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5082 | struct il_priv *il = pci_get_drvdata(pdev); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5083 |  | 
|  | 5084 | /* | 
|  | 5085 | * This function is called when system goes into suspend state | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5086 | * mac80211 will call il_mac_stop() from the mac80211 suspend function | 
|  | 5087 | * first but since il_mac_stop() has no knowledge of who the caller is, | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5088 | * it will not call apm_ops.stop() to stop the DMA operation. | 
|  | 5089 | * Calling apm_ops.stop here to make sure we stop the DMA. | 
|  | 5090 | */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5091 | il_apm_stop(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5092 |  | 
|  | 5093 | return 0; | 
|  | 5094 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5095 | EXPORT_SYMBOL(il_pci_suspend); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5096 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5097 | int | 
|  | 5098 | il_pci_resume(struct device *device) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5099 | { | 
|  | 5100 | struct pci_dev *pdev = to_pci_dev(device); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5101 | struct il_priv *il = pci_get_drvdata(pdev); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5102 | bool hw_rfkill = false; | 
|  | 5103 |  | 
|  | 5104 | /* | 
|  | 5105 | * We disable the RETRY_TIMEOUT register (0x41) to keep | 
|  | 5106 | * PCI Tx retries from interfering with C3 CPU state. | 
|  | 5107 | */ | 
|  | 5108 | pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00); | 
|  | 5109 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5110 | il_enable_interrupts(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5111 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5112 | if (!(_il_rd(il, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5113 | hw_rfkill = true; | 
|  | 5114 |  | 
|  | 5115 | if (hw_rfkill) | 
| Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5116 | set_bit(S_RF_KILL_HW, &il->status); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5117 | else | 
| Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5118 | clear_bit(S_RF_KILL_HW, &il->status); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5119 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5120 | wiphy_rfkill_set_hw_state(il->hw->wiphy, hw_rfkill); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5121 |  | 
|  | 5122 | return 0; | 
|  | 5123 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5124 | EXPORT_SYMBOL(il_pci_resume); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5125 |  | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5126 | const struct dev_pm_ops il_pm_ops = { | 
|  | 5127 | .suspend = il_pci_suspend, | 
|  | 5128 | .resume = il_pci_resume, | 
|  | 5129 | .freeze = il_pci_suspend, | 
|  | 5130 | .thaw = il_pci_resume, | 
|  | 5131 | .poweroff = il_pci_suspend, | 
|  | 5132 | .restore = il_pci_resume, | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5133 | }; | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5134 | EXPORT_SYMBOL(il_pm_ops); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5135 |  | 
|  | 5136 | #endif /* CONFIG_PM */ | 
|  | 5137 |  | 
|  | 5138 | static void | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 5139 | il_update_qos(struct il_priv *il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5140 | { | 
| Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5141 | if (test_bit(S_EXIT_PENDING, &il->status)) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5142 | return; | 
|  | 5143 |  | 
| Stanislaw Gruszka | 8d44f2b | 2012-02-03 17:31:51 +0100 | [diff] [blame] | 5144 | il->qos_data.def_qos_parm.qos_flags = 0; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5145 |  | 
| Stanislaw Gruszka | 8d44f2b | 2012-02-03 17:31:51 +0100 | [diff] [blame] | 5146 | if (il->qos_data.qos_active) | 
|  | 5147 | il->qos_data.def_qos_parm.qos_flags |= | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5148 | QOS_PARAM_FLG_UPDATE_EDCA_MSK; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5149 |  | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 5150 | if (il->ht.enabled) | 
| Stanislaw Gruszka | 8d44f2b | 2012-02-03 17:31:51 +0100 | [diff] [blame] | 5151 | il->qos_data.def_qos_parm.qos_flags |= QOS_PARAM_FLG_TGN_MSK; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5152 |  | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5153 | D_QOS("send QoS cmd with Qos active=%d FLAGS=0x%X\n", | 
| Stanislaw Gruszka | 8d44f2b | 2012-02-03 17:31:51 +0100 | [diff] [blame] | 5154 | il->qos_data.qos_active, il->qos_data.def_qos_parm.qos_flags); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5155 |  | 
| Stanislaw Gruszka | b96ed60 | 2012-02-03 17:31:41 +0100 | [diff] [blame] | 5156 | il_send_cmd_pdu_async(il, C_QOS_PARAM, sizeof(struct il_qosparam_cmd), | 
| Stanislaw Gruszka | 8d44f2b | 2012-02-03 17:31:51 +0100 | [diff] [blame] | 5157 | &il->qos_data.def_qos_parm, NULL); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5158 | } | 
|  | 5159 |  | 
|  | 5160 | /** | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5161 | * il_mac_config - mac80211 config callback | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5162 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5163 | int | 
|  | 5164 | il_mac_config(struct ieee80211_hw *hw, u32 changed) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5165 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5166 | struct il_priv *il = hw->priv; | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5167 | const struct il_channel_info *ch_info; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5168 | struct ieee80211_conf *conf = &hw->conf; | 
|  | 5169 | struct ieee80211_channel *channel = conf->channel; | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5170 | struct il_ht_config *ht_conf = &il->current_ht_config; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5171 | unsigned long flags = 0; | 
|  | 5172 | int ret = 0; | 
|  | 5173 | u16 ch; | 
|  | 5174 | int scan_active = 0; | 
| Stanislaw Gruszka | 7c2cde2 | 2011-11-15 11:29:04 +0100 | [diff] [blame] | 5175 | bool ht_changed = false; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5176 |  | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 5177 | if (WARN_ON(!il->ops->legacy)) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5178 | return -EOPNOTSUPP; | 
|  | 5179 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5180 | mutex_lock(&il->mutex); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5181 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5182 | D_MAC80211("enter to channel %d changed 0x%X\n", channel->hw_value, | 
|  | 5183 | changed); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5184 |  | 
| Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5185 | if (unlikely(test_bit(S_SCANNING, &il->status))) { | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5186 | scan_active = 1; | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5187 | D_MAC80211("scan active\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5188 | } | 
|  | 5189 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5190 | if (changed & | 
|  | 5191 | (IEEE80211_CONF_CHANGE_SMPS | IEEE80211_CONF_CHANGE_CHANNEL)) { | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5192 | /* mac80211 uses static for non-HT which is what we want */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5193 | il->current_ht_config.smps = conf->smps_mode; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5194 |  | 
|  | 5195 | /* | 
|  | 5196 | * Recalculate chain counts. | 
|  | 5197 | * | 
|  | 5198 | * If monitor mode is enabled then mac80211 will | 
|  | 5199 | * set up the SM PS mode to OFF if an HT channel is | 
|  | 5200 | * configured. | 
|  | 5201 | */ | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 5202 | if (il->ops->hcmd->set_rxon_chain) | 
|  | 5203 | il->ops->hcmd->set_rxon_chain(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5204 | } | 
|  | 5205 |  | 
|  | 5206 | /* during scanning mac80211 will delay channel setting until | 
|  | 5207 | * scan finish with changed = 0 | 
|  | 5208 | */ | 
|  | 5209 | if (!changed || (changed & IEEE80211_CONF_CHANGE_CHANNEL)) { | 
| Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5210 |  | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5211 | if (scan_active) | 
|  | 5212 | goto set_ch_out; | 
|  | 5213 |  | 
|  | 5214 | ch = channel->hw_value; | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5215 | ch_info = il_get_channel_info(il, channel->band, ch); | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5216 | if (!il_is_channel_valid(ch_info)) { | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5217 | D_MAC80211("leave - invalid channel\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5218 | ret = -EINVAL; | 
|  | 5219 | goto set_ch_out; | 
|  | 5220 | } | 
|  | 5221 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5222 | if (il->iw_mode == NL80211_IFTYPE_ADHOC && | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5223 | !il_is_channel_ibss(ch_info)) { | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5224 | D_MAC80211("leave - not IBSS channel\n"); | 
| Stanislaw Gruszka | eb85de3 | 2011-05-07 17:46:21 +0200 | [diff] [blame] | 5225 | ret = -EINVAL; | 
|  | 5226 | goto set_ch_out; | 
|  | 5227 | } | 
|  | 5228 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5229 | spin_lock_irqsave(&il->lock, flags); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5230 |  | 
| Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5231 | /* Configure HT40 channels */ | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 5232 | if (il->ht.enabled != conf_is_ht(conf)) { | 
|  | 5233 | il->ht.enabled = conf_is_ht(conf); | 
| Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5234 | ht_changed = true; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5235 | } | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 5236 | if (il->ht.enabled) { | 
| Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5237 | if (conf_is_ht40_minus(conf)) { | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 5238 | il->ht.extension_chan_offset = | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5239 | IEEE80211_HT_PARAM_CHA_SEC_BELOW; | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 5240 | il->ht.is_40mhz = true; | 
| Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5241 | } else if (conf_is_ht40_plus(conf)) { | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 5242 | il->ht.extension_chan_offset = | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5243 | IEEE80211_HT_PARAM_CHA_SEC_ABOVE; | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 5244 | il->ht.is_40mhz = true; | 
| Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5245 | } else { | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 5246 | il->ht.extension_chan_offset = | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5247 | IEEE80211_HT_PARAM_CHA_SEC_NONE; | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 5248 | il->ht.is_40mhz = false; | 
| Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5249 | } | 
|  | 5250 | } else | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 5251 | il->ht.is_40mhz = false; | 
| Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5252 |  | 
|  | 5253 | /* | 
|  | 5254 | * Default to no protection. Protection mode will | 
|  | 5255 | * later be set from BSS config in il_ht_conf | 
|  | 5256 | */ | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 5257 | il->ht.protection = IEEE80211_HT_OP_MODE_PROTECTION_NONE; | 
| Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5258 |  | 
|  | 5259 | /* if we are switching from ht to 2.4 clear flags | 
|  | 5260 | * from any ht related info since 2.4 does not | 
|  | 5261 | * support ht */ | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5262 | if ((le16_to_cpu(il->staging.channel) != ch)) | 
|  | 5263 | il->staging.flags = 0; | 
| Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5264 |  | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 5265 | il_set_rxon_channel(il, channel); | 
| Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5266 | il_set_rxon_ht(il, ht_conf); | 
|  | 5267 |  | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 5268 | il_set_flags_for_band(il, channel->band, il->vif); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5269 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5270 | spin_unlock_irqrestore(&il->lock, flags); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5271 |  | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 5272 | if (il->ops->legacy->update_bcast_stations) | 
|  | 5273 | ret = il->ops->legacy->update_bcast_stations(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5274 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5275 | set_ch_out: | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5276 | /* The list of supported rates and rate mask can be different | 
|  | 5277 | * for each band; since the band may have changed, reset | 
|  | 5278 | * the rate mask to what mac80211 lists */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5279 | il_set_rate(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5280 | } | 
|  | 5281 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5282 | if (changed & (IEEE80211_CONF_CHANGE_PS | IEEE80211_CONF_CHANGE_IDLE)) { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5283 | ret = il_power_update_mode(il, false); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5284 | if (ret) | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5285 | D_MAC80211("Error setting sleep level\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5286 | } | 
|  | 5287 |  | 
|  | 5288 | if (changed & IEEE80211_CONF_CHANGE_POWER) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5289 | D_MAC80211("TX Power old=%d new=%d\n", il->tx_power_user_lmt, | 
|  | 5290 | conf->power_level); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5291 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5292 | il_set_tx_power(il, conf->power_level, false); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5293 | } | 
|  | 5294 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5295 | if (!il_is_ready(il)) { | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5296 | D_MAC80211("leave - not ready\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5297 | goto out; | 
|  | 5298 | } | 
|  | 5299 |  | 
|  | 5300 | if (scan_active) | 
|  | 5301 | goto out; | 
|  | 5302 |  | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5303 | if (memcmp(&il->active, &il->staging, sizeof(il->staging))) | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 5304 | il_commit_rxon(il); | 
| Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5305 | else | 
|  | 5306 | D_INFO("Not re-sending same RXON configuration.\n"); | 
|  | 5307 | if (ht_changed) | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 5308 | il_update_qos(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5309 |  | 
|  | 5310 | out: | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5311 | D_MAC80211("leave\n"); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5312 | mutex_unlock(&il->mutex); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5313 | return ret; | 
|  | 5314 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5315 | EXPORT_SYMBOL(il_mac_config); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5316 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5317 | void | 
|  | 5318 | il_mac_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5319 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5320 | struct il_priv *il = hw->priv; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5321 | unsigned long flags; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5322 |  | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 5323 | if (WARN_ON(!il->ops->legacy)) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5324 | return; | 
|  | 5325 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5326 | mutex_lock(&il->mutex); | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5327 | D_MAC80211("enter\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5328 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5329 | spin_lock_irqsave(&il->lock, flags); | 
|  | 5330 | memset(&il->current_ht_config, 0, sizeof(struct il_ht_config)); | 
|  | 5331 | spin_unlock_irqrestore(&il->lock, flags); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5332 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5333 | spin_lock_irqsave(&il->lock, flags); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5334 |  | 
|  | 5335 | /* new association get rid of ibss beacon skb */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5336 | if (il->beacon_skb) | 
|  | 5337 | dev_kfree_skb(il->beacon_skb); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5338 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5339 | il->beacon_skb = NULL; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5340 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5341 | il->timestamp = 0; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5342 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5343 | spin_unlock_irqrestore(&il->lock, flags); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5344 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5345 | il_scan_cancel_timeout(il, 100); | 
|  | 5346 | if (!il_is_ready_rf(il)) { | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5347 | D_MAC80211("leave - not ready\n"); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5348 | mutex_unlock(&il->mutex); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5349 | return; | 
|  | 5350 | } | 
|  | 5351 |  | 
|  | 5352 | /* we are restarting association process | 
|  | 5353 | * clear RXON_FILTER_ASSOC_MSK bit | 
|  | 5354 | */ | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5355 | il->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK; | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 5356 | il_commit_rxon(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5357 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5358 | il_set_rate(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5359 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5360 | mutex_unlock(&il->mutex); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5361 |  | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5362 | D_MAC80211("leave\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5363 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5364 | EXPORT_SYMBOL(il_mac_reset_tsf); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5365 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5366 | static void | 
|  | 5367 | il_ht_conf(struct il_priv *il, struct ieee80211_vif *vif) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5368 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5369 | struct il_ht_config *ht_conf = &il->current_ht_config; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5370 | struct ieee80211_sta *sta; | 
|  | 5371 | struct ieee80211_bss_conf *bss_conf = &vif->bss_conf; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5372 |  | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5373 | D_ASSOC("enter:\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5374 |  | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 5375 | if (!il->ht.enabled) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5376 | return; | 
|  | 5377 |  | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 5378 | il->ht.protection = | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5379 | bss_conf->ht_operation_mode & IEEE80211_HT_OP_MODE_PROTECTION; | 
| Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame] | 5380 | il->ht.non_gf_sta_present = | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5381 | !!(bss_conf-> | 
|  | 5382 | ht_operation_mode & IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5383 |  | 
|  | 5384 | ht_conf->single_chain_sufficient = false; | 
|  | 5385 |  | 
|  | 5386 | switch (vif->type) { | 
|  | 5387 | case NL80211_IFTYPE_STATION: | 
|  | 5388 | rcu_read_lock(); | 
|  | 5389 | sta = ieee80211_find_sta(vif, bss_conf->bssid); | 
|  | 5390 | if (sta) { | 
|  | 5391 | struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap; | 
|  | 5392 | int maxstreams; | 
|  | 5393 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5394 | maxstreams = | 
|  | 5395 | (ht_cap->mcs. | 
|  | 5396 | tx_params & IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK) | 
|  | 5397 | >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5398 | maxstreams += 1; | 
|  | 5399 |  | 
| Stanislaw Gruszka | 232913b | 2011-08-26 10:45:16 +0200 | [diff] [blame] | 5400 | if (ht_cap->mcs.rx_mask[1] == 0 && | 
|  | 5401 | ht_cap->mcs.rx_mask[2] == 0) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5402 | ht_conf->single_chain_sufficient = true; | 
|  | 5403 | if (maxstreams <= 1) | 
|  | 5404 | ht_conf->single_chain_sufficient = true; | 
|  | 5405 | } else { | 
|  | 5406 | /* | 
|  | 5407 | * If at all, this can only happen through a race | 
|  | 5408 | * when the AP disconnects us while we're still | 
|  | 5409 | * setting up the connection, in that case mac80211 | 
|  | 5410 | * will soon tell us about that. | 
|  | 5411 | */ | 
|  | 5412 | ht_conf->single_chain_sufficient = true; | 
|  | 5413 | } | 
|  | 5414 | rcu_read_unlock(); | 
|  | 5415 | break; | 
|  | 5416 | case NL80211_IFTYPE_ADHOC: | 
|  | 5417 | ht_conf->single_chain_sufficient = true; | 
|  | 5418 | break; | 
|  | 5419 | default: | 
|  | 5420 | break; | 
|  | 5421 | } | 
|  | 5422 |  | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5423 | D_ASSOC("leave\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5424 | } | 
|  | 5425 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5426 | static inline void | 
|  | 5427 | il_set_no_assoc(struct il_priv *il, struct ieee80211_vif *vif) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5428 | { | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5429 | /* | 
|  | 5430 | * inform the ucode that there is no longer an | 
|  | 5431 | * association and that no more packets should be | 
|  | 5432 | * sent | 
|  | 5433 | */ | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5434 | il->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK; | 
|  | 5435 | il->staging.assoc_id = 0; | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 5436 | il_commit_rxon(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5437 | } | 
|  | 5438 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5439 | static void | 
|  | 5440 | il_beacon_update(struct ieee80211_hw *hw, struct ieee80211_vif *vif) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5441 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5442 | struct il_priv *il = hw->priv; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5443 | unsigned long flags; | 
|  | 5444 | __le64 timestamp; | 
|  | 5445 | struct sk_buff *skb = ieee80211_beacon_get(hw, vif); | 
|  | 5446 |  | 
|  | 5447 | if (!skb) | 
|  | 5448 | return; | 
|  | 5449 |  | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5450 | D_MAC80211("enter\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5451 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5452 | lockdep_assert_held(&il->mutex); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5453 |  | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 5454 | if (!il->beacon_enabled) { | 
|  | 5455 | IL_ERR("update beacon with no beaconing enabled\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5456 | dev_kfree_skb(skb); | 
|  | 5457 | return; | 
|  | 5458 | } | 
|  | 5459 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5460 | spin_lock_irqsave(&il->lock, flags); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5461 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5462 | if (il->beacon_skb) | 
|  | 5463 | dev_kfree_skb(il->beacon_skb); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5464 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5465 | il->beacon_skb = skb; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5466 |  | 
|  | 5467 | timestamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp; | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5468 | il->timestamp = le64_to_cpu(timestamp); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5469 |  | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5470 | D_MAC80211("leave\n"); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5471 | spin_unlock_irqrestore(&il->lock, flags); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5472 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5473 | if (!il_is_ready_rf(il)) { | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5474 | D_MAC80211("leave - RF not ready\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5475 | return; | 
|  | 5476 | } | 
|  | 5477 |  | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 5478 | il->ops->legacy->post_associate(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5479 | } | 
|  | 5480 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5481 | void | 
|  | 5482 | il_mac_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif, | 
|  | 5483 | struct ieee80211_bss_conf *bss_conf, u32 changes) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5484 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5485 | struct il_priv *il = hw->priv; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5486 | int ret; | 
|  | 5487 |  | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 5488 | if (WARN_ON(!il->ops->legacy)) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5489 | return; | 
|  | 5490 |  | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5491 | D_MAC80211("changes = 0x%X\n", changes); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5492 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5493 | mutex_lock(&il->mutex); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5494 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5495 | if (!il_is_alive(il)) { | 
|  | 5496 | mutex_unlock(&il->mutex); | 
| Stanislaw Gruszka | 28a6e57 | 2011-04-28 11:51:32 +0200 | [diff] [blame] | 5497 | return; | 
|  | 5498 | } | 
|  | 5499 |  | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5500 | if (changes & BSS_CHANGED_QOS) { | 
|  | 5501 | unsigned long flags; | 
|  | 5502 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5503 | spin_lock_irqsave(&il->lock, flags); | 
| Stanislaw Gruszka | 8d44f2b | 2012-02-03 17:31:51 +0100 | [diff] [blame] | 5504 | il->qos_data.qos_active = bss_conf->qos; | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 5505 | il_update_qos(il); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5506 | spin_unlock_irqrestore(&il->lock, flags); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5507 | } | 
|  | 5508 |  | 
|  | 5509 | if (changes & BSS_CHANGED_BEACON_ENABLED) { | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 5510 | /* FIXME: can we remove beacon_enabled ? */ | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5511 | if (vif->bss_conf.enable_beacon) | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 5512 | il->beacon_enabled = true; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5513 | else | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 5514 | il->beacon_enabled = false; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5515 | } | 
|  | 5516 |  | 
|  | 5517 | if (changes & BSS_CHANGED_BSSID) { | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5518 | D_MAC80211("BSSID %pM\n", bss_conf->bssid); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5519 |  | 
|  | 5520 | /* | 
|  | 5521 | * If there is currently a HW scan going on in the | 
|  | 5522 | * background then we need to cancel it else the RXON | 
|  | 5523 | * below/in post_associate will fail. | 
|  | 5524 | */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5525 | if (il_scan_cancel_timeout(il, 100)) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5526 | IL_WARN("Aborted scan still in progress after 100ms\n"); | 
|  | 5527 | D_MAC80211("leaving - scan abort failed.\n"); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5528 | mutex_unlock(&il->mutex); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5529 | return; | 
|  | 5530 | } | 
|  | 5531 |  | 
|  | 5532 | /* mac80211 only sets assoc when in STATION mode */ | 
|  | 5533 | if (vif->type == NL80211_IFTYPE_ADHOC || bss_conf->assoc) { | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5534 | memcpy(il->staging.bssid_addr, bss_conf->bssid, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5535 | ETH_ALEN); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5536 |  | 
|  | 5537 | /* currently needed in a few places */ | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5538 | memcpy(il->bssid, bss_conf->bssid, ETH_ALEN); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5539 | } else { | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5540 | il->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5541 | } | 
|  | 5542 |  | 
|  | 5543 | } | 
|  | 5544 |  | 
|  | 5545 | /* | 
|  | 5546 | * This needs to be after setting the BSSID in case | 
|  | 5547 | * mac80211 decides to do both changes at once because | 
|  | 5548 | * it will invoke post_associate. | 
|  | 5549 | */ | 
| Stanislaw Gruszka | 232913b | 2011-08-26 10:45:16 +0200 | [diff] [blame] | 5550 | if (vif->type == NL80211_IFTYPE_ADHOC && (changes & BSS_CHANGED_BEACON)) | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5551 | il_beacon_update(hw, vif); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5552 |  | 
|  | 5553 | if (changes & BSS_CHANGED_ERP_PREAMBLE) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5554 | D_MAC80211("ERP_PREAMBLE %d\n", bss_conf->use_short_preamble); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5555 | if (bss_conf->use_short_preamble) | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5556 | il->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5557 | else | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5558 | il->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5559 | } | 
|  | 5560 |  | 
|  | 5561 | if (changes & BSS_CHANGED_ERP_CTS_PROT) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5562 | D_MAC80211("ERP_CTS %d\n", bss_conf->use_cts_prot); | 
| Stanislaw Gruszka | 232913b | 2011-08-26 10:45:16 +0200 | [diff] [blame] | 5563 | if (bss_conf->use_cts_prot && il->band != IEEE80211_BAND_5GHZ) | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5564 | il->staging.flags |= RXON_FLG_TGG_PROTECT_MSK; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5565 | else | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5566 | il->staging.flags &= ~RXON_FLG_TGG_PROTECT_MSK; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5567 | if (bss_conf->use_cts_prot) | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5568 | il->staging.flags |= RXON_FLG_SELF_CTS_EN; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5569 | else | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5570 | il->staging.flags &= ~RXON_FLG_SELF_CTS_EN; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5571 | } | 
|  | 5572 |  | 
|  | 5573 | if (changes & BSS_CHANGED_BASIC_RATES) { | 
|  | 5574 | /* XXX use this information | 
|  | 5575 | * | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5576 | * To do that, remove code from il_set_rate() and put something | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5577 | * like this here: | 
|  | 5578 | * | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5579 | if (A-band) | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5580 | il->staging.ofdm_basic_rates = | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5581 | bss_conf->basic_rates; | 
|  | 5582 | else | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5583 | il->staging.ofdm_basic_rates = | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5584 | bss_conf->basic_rates >> 4; | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5585 | il->staging.cck_basic_rates = | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5586 | bss_conf->basic_rates & 0xF; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5587 | */ | 
|  | 5588 | } | 
|  | 5589 |  | 
|  | 5590 | if (changes & BSS_CHANGED_HT) { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5591 | il_ht_conf(il, vif); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5592 |  | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 5593 | if (il->ops->hcmd->set_rxon_chain) | 
|  | 5594 | il->ops->hcmd->set_rxon_chain(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5595 | } | 
|  | 5596 |  | 
|  | 5597 | if (changes & BSS_CHANGED_ASSOC) { | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5598 | D_MAC80211("ASSOC %d\n", bss_conf->assoc); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5599 | if (bss_conf->assoc) { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5600 | il->timestamp = bss_conf->timestamp; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5601 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5602 | if (!il_is_rfkill(il)) | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 5603 | il->ops->legacy->post_associate(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5604 | } else | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5605 | il_set_no_assoc(il, vif); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5606 | } | 
|  | 5607 |  | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5608 | if (changes && il_is_associated(il) && bss_conf->aid) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5609 | D_MAC80211("Changes (%#x) while associated\n", changes); | 
| Stanislaw Gruszka | 8300719 | 2012-02-03 17:31:57 +0100 | [diff] [blame] | 5610 | ret = il_send_rxon_assoc(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5611 | if (!ret) { | 
|  | 5612 | /* Sync active_rxon with latest change. */ | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5613 | memcpy((void *)&il->active, &il->staging, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5614 | sizeof(struct il_rxon_cmd)); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5615 | } | 
|  | 5616 | } | 
|  | 5617 |  | 
|  | 5618 | if (changes & BSS_CHANGED_BEACON_ENABLED) { | 
|  | 5619 | if (vif->bss_conf.enable_beacon) { | 
| Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5620 | memcpy(il->staging.bssid_addr, bss_conf->bssid, | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5621 | ETH_ALEN); | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5622 | memcpy(il->bssid, bss_conf->bssid, ETH_ALEN); | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 5623 | il->ops->legacy->config_ap(il); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5624 | } else | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5625 | il_set_no_assoc(il, vif); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5626 | } | 
|  | 5627 |  | 
|  | 5628 | if (changes & BSS_CHANGED_IBSS) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5629 | ret = | 
| Stanislaw Gruszka | c39ae9f | 2012-02-03 17:31:58 +0100 | [diff] [blame] | 5630 | il->ops->legacy->manage_ibss_station(il, vif, | 
|  | 5631 | bss_conf->ibss_joined); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5632 | if (ret) | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 5633 | IL_ERR("failed to %s IBSS station %pM\n", | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5634 | bss_conf->ibss_joined ? "add" : "remove", | 
|  | 5635 | bss_conf->bssid); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5636 | } | 
|  | 5637 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5638 | mutex_unlock(&il->mutex); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5639 |  | 
| Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5640 | D_MAC80211("leave\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5641 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5642 | EXPORT_SYMBOL(il_mac_bss_info_changed); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5643 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5644 | irqreturn_t | 
|  | 5645 | il_isr(int irq, void *data) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5646 | { | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5647 | struct il_priv *il = data; | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5648 | u32 inta, inta_mask; | 
|  | 5649 | u32 inta_fh; | 
|  | 5650 | unsigned long flags; | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5651 | if (!il) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5652 | return IRQ_NONE; | 
|  | 5653 |  | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5654 | spin_lock_irqsave(&il->lock, flags); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5655 |  | 
|  | 5656 | /* Disable (but don't clear!) interrupts here to avoid | 
|  | 5657 | *    back-to-back ISRs and sporadic interrupts from our NIC. | 
|  | 5658 | * If we have something to service, the tasklet will re-enable ints. | 
|  | 5659 | * If we *don't* have something, we'll re-enable before leaving here. */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5660 | inta_mask = _il_rd(il, CSR_INT_MASK);	/* just for debug */ | 
| Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 5661 | _il_wr(il, CSR_INT_MASK, 0x00000000); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5662 |  | 
|  | 5663 | /* Discover which interrupts are active/pending */ | 
| Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 5664 | inta = _il_rd(il, CSR_INT); | 
|  | 5665 | inta_fh = _il_rd(il, CSR_FH_INT_STATUS); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5666 |  | 
|  | 5667 | /* Ignore interrupt if there's nothing in NIC to service. | 
|  | 5668 | * This may be due to IRQ shared with another device, | 
|  | 5669 | * or due to sporadic interrupts thrown from our NIC. */ | 
|  | 5670 | if (!inta && !inta_fh) { | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5671 | D_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n"); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5672 | goto none; | 
|  | 5673 | } | 
|  | 5674 |  | 
| Stanislaw Gruszka | 232913b | 2011-08-26 10:45:16 +0200 | [diff] [blame] | 5675 | if (inta == 0xFFFFFFFF || (inta & 0xFFFFFFF0) == 0xa5a5a5a0) { | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5676 | /* Hardware disappeared. It might have already raised | 
|  | 5677 | * an interrupt */ | 
| Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 5678 | IL_WARN("HARDWARE GONE?? INTA == 0x%08x\n", inta); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5679 | goto unplugged; | 
|  | 5680 | } | 
|  | 5681 |  | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5682 | D_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n", inta, inta_mask, | 
|  | 5683 | inta_fh); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5684 |  | 
|  | 5685 | inta &= ~CSR_INT_BIT_SCD; | 
|  | 5686 |  | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5687 | /* il_irq_tasklet() will service interrupts and re-enable them */ | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5688 | if (likely(inta || inta_fh)) | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5689 | tasklet_schedule(&il->irq_tasklet); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5690 |  | 
|  | 5691 | unplugged: | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5692 | spin_unlock_irqrestore(&il->lock, flags); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5693 | return IRQ_HANDLED; | 
|  | 5694 |  | 
|  | 5695 | none: | 
|  | 5696 | /* re-enable interrupts here since we don't have anything to service. */ | 
| Stanislaw Gruszka | 93fd74e | 2011-04-28 11:51:30 +0200 | [diff] [blame] | 5697 | /* only Re-enable if disabled by irq */ | 
| Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5698 | if (test_bit(S_INT_ENABLED, &il->status)) | 
| Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5699 | il_enable_interrupts(il); | 
|  | 5700 | spin_unlock_irqrestore(&il->lock, flags); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5701 | return IRQ_NONE; | 
|  | 5702 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5703 | EXPORT_SYMBOL(il_isr); | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5704 |  | 
|  | 5705 | /* | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5706 | *  il_tx_cmd_protection: Set rts/cts. 3945 and 4965 only share this | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5707 | *  function. | 
|  | 5708 | */ | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5709 | void | 
|  | 5710 | il_tx_cmd_protection(struct il_priv *il, struct ieee80211_tx_info *info, | 
| Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 5711 | __le16 fc, __le32 *tx_flags) | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5712 | { | 
|  | 5713 | if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) { | 
|  | 5714 | *tx_flags |= TX_CMD_FLG_RTS_MSK; | 
|  | 5715 | *tx_flags &= ~TX_CMD_FLG_CTS_MSK; | 
|  | 5716 | *tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK; | 
|  | 5717 |  | 
|  | 5718 | if (!ieee80211_is_mgmt(fc)) | 
|  | 5719 | return; | 
|  | 5720 |  | 
|  | 5721 | switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) { | 
|  | 5722 | case cpu_to_le16(IEEE80211_STYPE_AUTH): | 
|  | 5723 | case cpu_to_le16(IEEE80211_STYPE_DEAUTH): | 
|  | 5724 | case cpu_to_le16(IEEE80211_STYPE_ASSOC_REQ): | 
|  | 5725 | case cpu_to_le16(IEEE80211_STYPE_REASSOC_REQ): | 
|  | 5726 | *tx_flags &= ~TX_CMD_FLG_RTS_MSK; | 
|  | 5727 | *tx_flags |= TX_CMD_FLG_CTS_MSK; | 
|  | 5728 | break; | 
|  | 5729 | } | 
| Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5730 | } else if (info->control.rates[0]. | 
|  | 5731 | flags & IEEE80211_TX_RC_USE_CTS_PROTECT) { | 
| Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5732 | *tx_flags &= ~TX_CMD_FLG_RTS_MSK; | 
|  | 5733 | *tx_flags |= TX_CMD_FLG_CTS_MSK; | 
|  | 5734 | *tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK; | 
|  | 5735 | } | 
|  | 5736 | } | 
| Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5737 | EXPORT_SYMBOL(il_tx_cmd_protection); |