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 | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 515 | il->cfg->base_params->led_compensation); |
| 516 | led_cmd.on = |
| 517 | il_blink_compensation(il, on, |
| 518 | il->cfg->base_params->led_compensation); |
| 519 | led_cmd.off = |
| 520 | il_blink_compensation(il, off, |
| 521 | il->cfg->base_params->led_compensation); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 522 | |
| 523 | ret = il->cfg->ops->led->cmd(il, &led_cmd); |
| 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 | { |
| 694 | BUG_ON(offset >= il->cfg->base_params->eeprom_size); |
| 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 */ |
| 725 | sz = il->cfg->base_params->eeprom_size; |
| 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 | |
| 734 | il->cfg->ops->lib->apm_ops.init(il); |
| 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 */ |
| 744 | ret = il->cfg->ops->lib->eeprom_ops.acquire_semaphore(il); |
| 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: |
| 776 | il->cfg->ops->lib->eeprom_ops.release_semaphore(il); |
| 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 = |
| 803 | il->cfg->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 */ |
| 1004 | if (il->cfg->ops->lib->eeprom_ops.regulatory_bands[5] == |
| 1005 | EEPROM_REGULATORY_BAND_NO_HT40 && |
| 1006 | il->cfg->ops->lib->eeprom_ops.regulatory_bands[6] == |
| 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 | |
| 1161 | if (il->cfg->ops->lib->update_chain_flags && update_chains) |
| 1162 | il->cfg->ops->lib->update_chain_flags(il); |
| 1163 | else if (il->cfg->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 | { |
| 1445 | struct il_rxon_context *ctx = &il->ctx; |
| 1446 | u16 value; |
| 1447 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1448 | u16 passive = |
| 1449 | (band == |
| 1450 | IEEE80211_BAND_2GHZ) ? IL_PASSIVE_DWELL_BASE + |
| 1451 | IL_PASSIVE_DWELL_TIME_24 : IL_PASSIVE_DWELL_BASE + |
| 1452 | IL_PASSIVE_DWELL_TIME_52; |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1453 | |
| 1454 | if (il_is_any_associated(il)) { |
| 1455 | /* |
| 1456 | * If we're associated, we clamp the maximum passive |
| 1457 | * dwell time to be 98% of the smallest beacon interval |
| 1458 | * (minus 2 * channel tune time) |
| 1459 | */ |
| 1460 | value = ctx->vif ? ctx->vif->bss_conf.beacon_int : 0; |
| 1461 | if (value > IL_PASSIVE_DWELL_BASE || !value) |
| 1462 | value = IL_PASSIVE_DWELL_BASE; |
| 1463 | value = (value * 98) / 100 - IL_CHANNEL_TUNE_TIME * 2; |
| 1464 | passive = min(value, passive); |
| 1465 | } |
| 1466 | |
| 1467 | return passive; |
| 1468 | } |
| 1469 | EXPORT_SYMBOL(il_get_passive_dwell_time); |
| 1470 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1471 | void |
| 1472 | il_init_scan_params(struct il_priv *il) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1473 | { |
| 1474 | u8 ant_idx = fls(il->hw_params.valid_tx_ant) - 1; |
| 1475 | if (!il->scan_tx_ant[IEEE80211_BAND_5GHZ]) |
| 1476 | il->scan_tx_ant[IEEE80211_BAND_5GHZ] = ant_idx; |
| 1477 | if (!il->scan_tx_ant[IEEE80211_BAND_2GHZ]) |
| 1478 | il->scan_tx_ant[IEEE80211_BAND_2GHZ] = ant_idx; |
| 1479 | } |
| 1480 | EXPORT_SYMBOL(il_init_scan_params); |
| 1481 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1482 | static int |
| 1483 | il_scan_initiate(struct il_priv *il, struct ieee80211_vif *vif) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1484 | { |
| 1485 | int ret; |
| 1486 | |
| 1487 | lockdep_assert_held(&il->mutex); |
| 1488 | |
| 1489 | if (WARN_ON(!il->cfg->ops->utils->request_scan)) |
| 1490 | return -EOPNOTSUPP; |
| 1491 | |
| 1492 | cancel_delayed_work(&il->scan_check); |
| 1493 | |
| 1494 | if (!il_is_ready_rf(il)) { |
| 1495 | IL_WARN("Request scan called when driver not ready.\n"); |
| 1496 | return -EIO; |
| 1497 | } |
| 1498 | |
| 1499 | if (test_bit(S_SCAN_HW, &il->status)) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1500 | D_SCAN("Multiple concurrent scan requests in parallel.\n"); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1501 | return -EBUSY; |
| 1502 | } |
| 1503 | |
| 1504 | if (test_bit(S_SCAN_ABORTING, &il->status)) { |
| 1505 | D_SCAN("Scan request while abort pending.\n"); |
| 1506 | return -EBUSY; |
| 1507 | } |
| 1508 | |
| 1509 | D_SCAN("Starting scan...\n"); |
| 1510 | |
| 1511 | set_bit(S_SCANNING, &il->status); |
| 1512 | il->scan_start = jiffies; |
| 1513 | |
| 1514 | ret = il->cfg->ops->utils->request_scan(il, vif); |
| 1515 | if (ret) { |
| 1516 | clear_bit(S_SCANNING, &il->status); |
| 1517 | return ret; |
| 1518 | } |
| 1519 | |
| 1520 | queue_delayed_work(il->workqueue, &il->scan_check, |
| 1521 | IL_SCAN_CHECK_WATCHDOG); |
| 1522 | |
| 1523 | return 0; |
| 1524 | } |
| 1525 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1526 | int |
| 1527 | il_mac_hw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
| 1528 | struct cfg80211_scan_request *req) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1529 | { |
| 1530 | struct il_priv *il = hw->priv; |
| 1531 | int ret; |
| 1532 | |
| 1533 | D_MAC80211("enter\n"); |
| 1534 | |
| 1535 | if (req->n_channels == 0) |
| 1536 | return -EINVAL; |
| 1537 | |
| 1538 | mutex_lock(&il->mutex); |
| 1539 | |
| 1540 | if (test_bit(S_SCANNING, &il->status)) { |
| 1541 | D_SCAN("Scan already in progress.\n"); |
| 1542 | ret = -EAGAIN; |
| 1543 | goto out_unlock; |
| 1544 | } |
| 1545 | |
| 1546 | /* mac80211 will only ask for one band at a time */ |
| 1547 | il->scan_request = req; |
| 1548 | il->scan_vif = vif; |
| 1549 | il->scan_band = req->channels[0]->band; |
| 1550 | |
| 1551 | ret = il_scan_initiate(il, vif); |
| 1552 | |
| 1553 | D_MAC80211("leave\n"); |
| 1554 | |
| 1555 | out_unlock: |
| 1556 | mutex_unlock(&il->mutex); |
| 1557 | |
| 1558 | return ret; |
| 1559 | } |
| 1560 | EXPORT_SYMBOL(il_mac_hw_scan); |
| 1561 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1562 | static void |
| 1563 | il_bg_scan_check(struct work_struct *data) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1564 | { |
| 1565 | struct il_priv *il = |
| 1566 | container_of(data, struct il_priv, scan_check.work); |
| 1567 | |
| 1568 | D_SCAN("Scan check work\n"); |
| 1569 | |
| 1570 | /* Since we are here firmware does not finish scan and |
| 1571 | * most likely is in bad shape, so we don't bother to |
| 1572 | * send abort command, just force scan complete to mac80211 */ |
| 1573 | mutex_lock(&il->mutex); |
| 1574 | il_force_scan_end(il); |
| 1575 | mutex_unlock(&il->mutex); |
| 1576 | } |
| 1577 | |
| 1578 | /** |
| 1579 | * il_fill_probe_req - fill in all required fields and IE for probe request |
| 1580 | */ |
| 1581 | |
| 1582 | u16 |
| 1583 | il_fill_probe_req(struct il_priv *il, struct ieee80211_mgmt *frame, |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 1584 | const u8 *ta, const u8 *ies, int ie_len, int left) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1585 | { |
| 1586 | int len = 0; |
| 1587 | u8 *pos = NULL; |
| 1588 | |
| 1589 | /* Make sure there is enough space for the probe request, |
| 1590 | * two mandatory IEs and the data */ |
| 1591 | left -= 24; |
| 1592 | if (left < 0) |
| 1593 | return 0; |
| 1594 | |
| 1595 | frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ); |
| 1596 | memcpy(frame->da, il_bcast_addr, ETH_ALEN); |
| 1597 | memcpy(frame->sa, ta, ETH_ALEN); |
| 1598 | memcpy(frame->bssid, il_bcast_addr, ETH_ALEN); |
| 1599 | frame->seq_ctrl = 0; |
| 1600 | |
| 1601 | len += 24; |
| 1602 | |
| 1603 | /* ...next IE... */ |
| 1604 | pos = &frame->u.probe_req.variable[0]; |
| 1605 | |
| 1606 | /* fill in our indirect SSID IE */ |
| 1607 | left -= 2; |
| 1608 | if (left < 0) |
| 1609 | return 0; |
| 1610 | *pos++ = WLAN_EID_SSID; |
| 1611 | *pos++ = 0; |
| 1612 | |
| 1613 | len += 2; |
| 1614 | |
| 1615 | if (WARN_ON(left < ie_len)) |
| 1616 | return len; |
| 1617 | |
| 1618 | if (ies && ie_len) { |
| 1619 | memcpy(pos, ies, ie_len); |
| 1620 | len += ie_len; |
| 1621 | } |
| 1622 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1623 | return (u16) len; |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1624 | } |
| 1625 | EXPORT_SYMBOL(il_fill_probe_req); |
| 1626 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1627 | static void |
| 1628 | il_bg_abort_scan(struct work_struct *work) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1629 | { |
| 1630 | struct il_priv *il = container_of(work, struct il_priv, abort_scan); |
| 1631 | |
| 1632 | D_SCAN("Abort scan work\n"); |
| 1633 | |
| 1634 | /* We keep scan_check work queued in case when firmware will not |
| 1635 | * report back scan completed notification */ |
| 1636 | mutex_lock(&il->mutex); |
| 1637 | il_scan_cancel_timeout(il, 200); |
| 1638 | mutex_unlock(&il->mutex); |
| 1639 | } |
| 1640 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1641 | static void |
| 1642 | il_bg_scan_completed(struct work_struct *work) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1643 | { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1644 | struct il_priv *il = container_of(work, struct il_priv, scan_completed); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1645 | bool aborted; |
| 1646 | |
| 1647 | D_SCAN("Completed scan.\n"); |
| 1648 | |
| 1649 | cancel_delayed_work(&il->scan_check); |
| 1650 | |
| 1651 | mutex_lock(&il->mutex); |
| 1652 | |
| 1653 | aborted = test_and_clear_bit(S_SCAN_ABORTING, &il->status); |
| 1654 | if (aborted) |
| 1655 | D_SCAN("Aborted scan completed.\n"); |
| 1656 | |
| 1657 | if (!test_and_clear_bit(S_SCANNING, &il->status)) { |
| 1658 | D_SCAN("Scan already completed.\n"); |
| 1659 | goto out_settings; |
| 1660 | } |
| 1661 | |
| 1662 | il_complete_scan(il, aborted); |
| 1663 | |
| 1664 | out_settings: |
| 1665 | /* Can we still talk to firmware ? */ |
| 1666 | if (!il_is_ready_rf(il)) |
| 1667 | goto out; |
| 1668 | |
| 1669 | /* |
| 1670 | * We do not commit power settings while scan is pending, |
| 1671 | * do it now if the settings changed. |
| 1672 | */ |
| 1673 | il_power_set_mode(il, &il->power_data.sleep_cmd_next, false); |
| 1674 | il_set_tx_power(il, il->tx_power_next, false); |
| 1675 | |
| 1676 | il->cfg->ops->utils->post_scan(il); |
| 1677 | |
| 1678 | out: |
| 1679 | mutex_unlock(&il->mutex); |
| 1680 | } |
| 1681 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1682 | void |
| 1683 | il_setup_scan_deferred_work(struct il_priv *il) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1684 | { |
| 1685 | INIT_WORK(&il->scan_completed, il_bg_scan_completed); |
| 1686 | INIT_WORK(&il->abort_scan, il_bg_abort_scan); |
| 1687 | INIT_DELAYED_WORK(&il->scan_check, il_bg_scan_check); |
| 1688 | } |
| 1689 | EXPORT_SYMBOL(il_setup_scan_deferred_work); |
| 1690 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1691 | void |
| 1692 | il_cancel_scan_deferred_work(struct il_priv *il) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1693 | { |
| 1694 | cancel_work_sync(&il->abort_scan); |
| 1695 | cancel_work_sync(&il->scan_completed); |
| 1696 | |
| 1697 | if (cancel_delayed_work_sync(&il->scan_check)) { |
| 1698 | mutex_lock(&il->mutex); |
| 1699 | il_force_scan_end(il); |
| 1700 | mutex_unlock(&il->mutex); |
| 1701 | } |
| 1702 | } |
| 1703 | EXPORT_SYMBOL(il_cancel_scan_deferred_work); |
| 1704 | |
| 1705 | /* il->sta_lock must be held */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1706 | static void |
| 1707 | il_sta_ucode_activate(struct il_priv *il, u8 sta_id) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1708 | { |
| 1709 | |
| 1710 | if (!(il->stations[sta_id].used & IL_STA_DRIVER_ACTIVE)) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1711 | IL_ERR("ACTIVATE a non DRIVER active station id %u addr %pM\n", |
| 1712 | sta_id, il->stations[sta_id].sta.sta.addr); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1713 | |
| 1714 | if (il->stations[sta_id].used & IL_STA_UCODE_ACTIVE) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1715 | D_ASSOC("STA id %u addr %pM already present" |
| 1716 | " in uCode (according to driver)\n", sta_id, |
| 1717 | il->stations[sta_id].sta.sta.addr); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1718 | } else { |
| 1719 | il->stations[sta_id].used |= IL_STA_UCODE_ACTIVE; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1720 | D_ASSOC("Added STA id %u addr %pM to uCode\n", sta_id, |
| 1721 | il->stations[sta_id].sta.sta.addr); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1722 | } |
| 1723 | } |
| 1724 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1725 | static int |
| 1726 | il_process_add_sta_resp(struct il_priv *il, struct il_addsta_cmd *addsta, |
| 1727 | struct il_rx_pkt *pkt, bool sync) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1728 | { |
| 1729 | u8 sta_id = addsta->sta.sta_id; |
| 1730 | unsigned long flags; |
| 1731 | int ret = -EIO; |
| 1732 | |
| 1733 | if (pkt->hdr.flags & IL_CMD_FAILED_MSK) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1734 | 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] | 1735 | return ret; |
| 1736 | } |
| 1737 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1738 | D_INFO("Processing response for adding station %u\n", sta_id); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1739 | |
| 1740 | spin_lock_irqsave(&il->sta_lock, flags); |
| 1741 | |
| 1742 | switch (pkt->u.add_sta.status) { |
| 1743 | case ADD_STA_SUCCESS_MSK: |
| 1744 | D_INFO("C_ADD_STA PASSED\n"); |
| 1745 | il_sta_ucode_activate(il, sta_id); |
| 1746 | ret = 0; |
| 1747 | break; |
| 1748 | case ADD_STA_NO_ROOM_IN_TBL: |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1749 | 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] | 1750 | break; |
| 1751 | case ADD_STA_NO_BLOCK_ACK_RESOURCE: |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1752 | IL_ERR("Adding station %d failed, no block ack resource.\n", |
| 1753 | sta_id); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1754 | break; |
| 1755 | case ADD_STA_MODIFY_NON_EXIST_STA: |
| 1756 | IL_ERR("Attempting to modify non-existing station %d\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1757 | sta_id); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1758 | break; |
| 1759 | default: |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1760 | 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] | 1761 | break; |
| 1762 | } |
| 1763 | |
| 1764 | D_INFO("%s station id %u addr %pM\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1765 | il->stations[sta_id].sta.mode == |
| 1766 | STA_CONTROL_MODIFY_MSK ? "Modified" : "Added", sta_id, |
| 1767 | il->stations[sta_id].sta.sta.addr); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1768 | |
| 1769 | /* |
| 1770 | * XXX: The MAC address in the command buffer is often changed from |
| 1771 | * the original sent to the device. That is, the MAC address |
| 1772 | * written to the command buffer often is not the same MAC address |
| 1773 | * read from the command buffer when the command returns. This |
| 1774 | * issue has not yet been resolved and this debugging is left to |
| 1775 | * observe the problem. |
| 1776 | */ |
| 1777 | D_INFO("%s station according to cmd buffer %pM\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1778 | il->stations[sta_id].sta.mode == |
| 1779 | STA_CONTROL_MODIFY_MSK ? "Modified" : "Added", addsta->sta.addr); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1780 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 1781 | |
| 1782 | return ret; |
| 1783 | } |
| 1784 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1785 | static void |
| 1786 | il_add_sta_callback(struct il_priv *il, struct il_device_cmd *cmd, |
| 1787 | struct il_rx_pkt *pkt) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1788 | { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1789 | struct il_addsta_cmd *addsta = (struct il_addsta_cmd *)cmd->cmd.payload; |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1790 | |
| 1791 | il_process_add_sta_resp(il, addsta, pkt, false); |
| 1792 | |
| 1793 | } |
| 1794 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1795 | int |
| 1796 | 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] | 1797 | { |
| 1798 | struct il_rx_pkt *pkt = NULL; |
| 1799 | int ret = 0; |
| 1800 | u8 data[sizeof(*sta)]; |
| 1801 | struct il_host_cmd cmd = { |
| 1802 | .id = C_ADD_STA, |
| 1803 | .flags = flags, |
| 1804 | .data = data, |
| 1805 | }; |
| 1806 | u8 sta_id __maybe_unused = sta->sta.sta_id; |
| 1807 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1808 | D_INFO("Adding sta %u (%pM) %ssynchronously\n", sta_id, sta->sta.addr, |
| 1809 | flags & CMD_ASYNC ? "a" : ""); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1810 | |
| 1811 | if (flags & CMD_ASYNC) |
| 1812 | cmd.callback = il_add_sta_callback; |
| 1813 | else { |
| 1814 | cmd.flags |= CMD_WANT_SKB; |
| 1815 | might_sleep(); |
| 1816 | } |
| 1817 | |
| 1818 | cmd.len = il->cfg->ops->utils->build_addsta_hcmd(sta, data); |
| 1819 | ret = il_send_cmd(il, &cmd); |
| 1820 | |
| 1821 | if (ret || (flags & CMD_ASYNC)) |
| 1822 | return ret; |
| 1823 | |
| 1824 | if (ret == 0) { |
| 1825 | pkt = (struct il_rx_pkt *)cmd.reply_page; |
| 1826 | ret = il_process_add_sta_resp(il, sta, pkt, true); |
| 1827 | } |
| 1828 | il_free_pages(il, cmd.reply_page); |
| 1829 | |
| 1830 | return ret; |
| 1831 | } |
| 1832 | EXPORT_SYMBOL(il_send_add_sta); |
| 1833 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1834 | static void |
| 1835 | il_set_ht_add_station(struct il_priv *il, u8 idx, struct ieee80211_sta *sta, |
| 1836 | struct il_rxon_context *ctx) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1837 | { |
| 1838 | struct ieee80211_sta_ht_cap *sta_ht_inf = &sta->ht_cap; |
| 1839 | __le32 sta_flags; |
| 1840 | u8 mimo_ps_mode; |
| 1841 | |
| 1842 | if (!sta || !sta_ht_inf->ht_supported) |
| 1843 | goto done; |
| 1844 | |
| 1845 | mimo_ps_mode = (sta_ht_inf->cap & IEEE80211_HT_CAP_SM_PS) >> 2; |
| 1846 | D_ASSOC("spatial multiplexing power save mode: %s\n", |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 1847 | (mimo_ps_mode == WLAN_HT_CAP_SM_PS_STATIC) ? "static" : |
| 1848 | (mimo_ps_mode == WLAN_HT_CAP_SM_PS_DYNAMIC) ? "dynamic" : |
| 1849 | "disabled"); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1850 | |
| 1851 | sta_flags = il->stations[idx].sta.station_flags; |
| 1852 | |
| 1853 | sta_flags &= ~(STA_FLG_RTS_MIMO_PROT_MSK | STA_FLG_MIMO_DIS_MSK); |
| 1854 | |
| 1855 | switch (mimo_ps_mode) { |
| 1856 | case WLAN_HT_CAP_SM_PS_STATIC: |
| 1857 | sta_flags |= STA_FLG_MIMO_DIS_MSK; |
| 1858 | break; |
| 1859 | case WLAN_HT_CAP_SM_PS_DYNAMIC: |
| 1860 | sta_flags |= STA_FLG_RTS_MIMO_PROT_MSK; |
| 1861 | break; |
| 1862 | case WLAN_HT_CAP_SM_PS_DISABLED: |
| 1863 | break; |
| 1864 | default: |
| 1865 | IL_WARN("Invalid MIMO PS mode %d\n", mimo_ps_mode); |
| 1866 | break; |
| 1867 | } |
| 1868 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1869 | sta_flags |= |
| 1870 | cpu_to_le32((u32) sta_ht_inf-> |
| 1871 | ampdu_factor << STA_FLG_MAX_AGG_SIZE_POS); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1872 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1873 | sta_flags |= |
| 1874 | cpu_to_le32((u32) sta_ht_inf-> |
| 1875 | ampdu_density << STA_FLG_AGG_MPDU_DENSITY_POS); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1876 | |
| 1877 | if (il_is_ht40_tx_allowed(il, ctx, &sta->ht_cap)) |
| 1878 | sta_flags |= STA_FLG_HT40_EN_MSK; |
| 1879 | else |
| 1880 | sta_flags &= ~STA_FLG_HT40_EN_MSK; |
| 1881 | |
| 1882 | il->stations[idx].sta.station_flags = sta_flags; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1883 | done: |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1884 | return; |
| 1885 | } |
| 1886 | |
| 1887 | /** |
| 1888 | * il_prep_station - Prepare station information for addition |
| 1889 | * |
| 1890 | * should be called with sta_lock held |
| 1891 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1892 | u8 |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 1893 | il_prep_station(struct il_priv *il, struct il_rxon_context *ctx, |
| 1894 | const u8 *addr, bool is_ap, struct ieee80211_sta *sta) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1895 | { |
| 1896 | struct il_station_entry *station; |
| 1897 | int i; |
| 1898 | u8 sta_id = IL_INVALID_STATION; |
| 1899 | u16 rate; |
| 1900 | |
| 1901 | if (is_ap) |
Stanislaw Gruszka | 8f9e564 | 2012-02-03 17:31:43 +0100 | [diff] [blame] | 1902 | sta_id = IL_AP_ID; |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1903 | else if (is_broadcast_ether_addr(addr)) |
Stanislaw Gruszka | b16db50 | 2012-02-03 17:31:44 +0100 | [diff] [blame] | 1904 | sta_id = il->hw_params.bcast_id; |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1905 | else |
| 1906 | for (i = IL_STA_ID; i < il->hw_params.max_stations; i++) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1907 | if (!compare_ether_addr |
| 1908 | (il->stations[i].sta.sta.addr, addr)) { |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1909 | sta_id = i; |
| 1910 | break; |
| 1911 | } |
| 1912 | |
| 1913 | if (!il->stations[i].used && |
| 1914 | sta_id == IL_INVALID_STATION) |
| 1915 | sta_id = i; |
| 1916 | } |
| 1917 | |
| 1918 | /* |
| 1919 | * These two conditions have the same outcome, but keep them |
| 1920 | * separate |
| 1921 | */ |
| 1922 | if (unlikely(sta_id == IL_INVALID_STATION)) |
| 1923 | return sta_id; |
| 1924 | |
| 1925 | /* |
| 1926 | * uCode is not able to deal with multiple requests to add a |
| 1927 | * station. Keep track if one is in progress so that we do not send |
| 1928 | * another. |
| 1929 | */ |
| 1930 | if (il->stations[sta_id].used & IL_STA_UCODE_INPROGRESS) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1931 | 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] | 1932 | return sta_id; |
| 1933 | } |
| 1934 | |
| 1935 | if ((il->stations[sta_id].used & IL_STA_DRIVER_ACTIVE) && |
| 1936 | (il->stations[sta_id].used & IL_STA_UCODE_ACTIVE) && |
| 1937 | !compare_ether_addr(il->stations[sta_id].sta.sta.addr, addr)) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1938 | D_ASSOC("STA %d (%pM) already added, not adding again.\n", |
| 1939 | sta_id, addr); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1940 | return sta_id; |
| 1941 | } |
| 1942 | |
| 1943 | station = &il->stations[sta_id]; |
| 1944 | station->used = IL_STA_DRIVER_ACTIVE; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1945 | 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] | 1946 | il->num_stations++; |
| 1947 | |
| 1948 | /* Set up the C_ADD_STA command to send to device */ |
| 1949 | memset(&station->sta, 0, sizeof(struct il_addsta_cmd)); |
| 1950 | memcpy(station->sta.sta.addr, addr, ETH_ALEN); |
| 1951 | station->sta.mode = 0; |
| 1952 | station->sta.sta.sta_id = sta_id; |
Stanislaw Gruszka | fd6415b | 2012-02-03 17:31:49 +0100 | [diff] [blame] | 1953 | station->sta.station_flags = 0; |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1954 | |
| 1955 | if (sta) { |
| 1956 | struct il_station_priv_common *sta_priv; |
| 1957 | |
| 1958 | sta_priv = (void *)sta->drv_priv; |
| 1959 | sta_priv->ctx = ctx; |
| 1960 | } |
| 1961 | |
| 1962 | /* |
| 1963 | * OK to call unconditionally, since local stations (IBSS BSSID |
| 1964 | * STA and broadcast STA) pass in a NULL sta, and mac80211 |
| 1965 | * doesn't allow HT IBSS. |
| 1966 | */ |
| 1967 | il_set_ht_add_station(il, sta_id, sta, ctx); |
| 1968 | |
| 1969 | /* 3945 only */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1970 | rate = (il->band == IEEE80211_BAND_5GHZ) ? RATE_6M_PLCP : RATE_1M_PLCP; |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1971 | /* Turn on both antennas for the station... */ |
| 1972 | station->sta.rate_n_flags = cpu_to_le16(rate | RATE_MCS_ANT_AB_MSK); |
| 1973 | |
| 1974 | return sta_id; |
| 1975 | |
| 1976 | } |
| 1977 | EXPORT_SYMBOL_GPL(il_prep_station); |
| 1978 | |
| 1979 | #define STA_WAIT_TIMEOUT (HZ/2) |
| 1980 | |
| 1981 | /** |
| 1982 | * il_add_station_common - |
| 1983 | */ |
| 1984 | int |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1985 | il_add_station_common(struct il_priv *il, struct il_rxon_context *ctx, |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 1986 | const u8 *addr, bool is_ap, struct ieee80211_sta *sta, |
| 1987 | u8 *sta_id_r) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1988 | { |
| 1989 | unsigned long flags_spin; |
| 1990 | int ret = 0; |
| 1991 | u8 sta_id; |
| 1992 | struct il_addsta_cmd sta_cmd; |
| 1993 | |
| 1994 | *sta_id_r = 0; |
| 1995 | spin_lock_irqsave(&il->sta_lock, flags_spin); |
| 1996 | sta_id = il_prep_station(il, ctx, addr, is_ap, sta); |
| 1997 | if (sta_id == IL_INVALID_STATION) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 1998 | IL_ERR("Unable to prepare station %pM for addition\n", addr); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 1999 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); |
| 2000 | return -EINVAL; |
| 2001 | } |
| 2002 | |
| 2003 | /* |
| 2004 | * uCode is not able to deal with multiple requests to add a |
| 2005 | * station. Keep track if one is in progress so that we do not send |
| 2006 | * another. |
| 2007 | */ |
| 2008 | if (il->stations[sta_id].used & IL_STA_UCODE_INPROGRESS) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2009 | 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] | 2010 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); |
| 2011 | return -EEXIST; |
| 2012 | } |
| 2013 | |
| 2014 | if ((il->stations[sta_id].used & IL_STA_DRIVER_ACTIVE) && |
| 2015 | (il->stations[sta_id].used & IL_STA_UCODE_ACTIVE)) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2016 | D_ASSOC("STA %d (%pM) already added, not adding again.\n", |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2017 | sta_id, addr); |
| 2018 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); |
| 2019 | return -EEXIST; |
| 2020 | } |
| 2021 | |
| 2022 | il->stations[sta_id].used |= IL_STA_UCODE_INPROGRESS; |
| 2023 | memcpy(&sta_cmd, &il->stations[sta_id].sta, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2024 | sizeof(struct il_addsta_cmd)); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2025 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); |
| 2026 | |
| 2027 | /* Add station to device's station table */ |
| 2028 | ret = il_send_add_sta(il, &sta_cmd, CMD_SYNC); |
| 2029 | if (ret) { |
| 2030 | spin_lock_irqsave(&il->sta_lock, flags_spin); |
| 2031 | IL_ERR("Adding station %pM failed.\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2032 | il->stations[sta_id].sta.sta.addr); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2033 | il->stations[sta_id].used &= ~IL_STA_DRIVER_ACTIVE; |
| 2034 | il->stations[sta_id].used &= ~IL_STA_UCODE_INPROGRESS; |
| 2035 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); |
| 2036 | } |
| 2037 | *sta_id_r = sta_id; |
| 2038 | return ret; |
| 2039 | } |
| 2040 | EXPORT_SYMBOL(il_add_station_common); |
| 2041 | |
| 2042 | /** |
| 2043 | * il_sta_ucode_deactivate - deactivate ucode status for a station |
| 2044 | * |
| 2045 | * il->sta_lock must be held |
| 2046 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2047 | static void |
| 2048 | il_sta_ucode_deactivate(struct il_priv *il, u8 sta_id) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2049 | { |
| 2050 | /* Ucode must be active and driver must be non active */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2051 | if ((il->stations[sta_id]. |
| 2052 | used & (IL_STA_UCODE_ACTIVE | IL_STA_DRIVER_ACTIVE)) != |
| 2053 | IL_STA_UCODE_ACTIVE) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2054 | IL_ERR("removed non active STA %u\n", sta_id); |
| 2055 | |
| 2056 | il->stations[sta_id].used &= ~IL_STA_UCODE_ACTIVE; |
| 2057 | |
| 2058 | memset(&il->stations[sta_id], 0, sizeof(struct il_station_entry)); |
| 2059 | D_ASSOC("Removed STA %u\n", sta_id); |
| 2060 | } |
| 2061 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2062 | static int |
| 2063 | il_send_remove_station(struct il_priv *il, const u8 * addr, int sta_id, |
| 2064 | bool temporary) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2065 | { |
| 2066 | struct il_rx_pkt *pkt; |
| 2067 | int ret; |
| 2068 | |
| 2069 | unsigned long flags_spin; |
| 2070 | struct il_rem_sta_cmd rm_sta_cmd; |
| 2071 | |
| 2072 | struct il_host_cmd cmd = { |
| 2073 | .id = C_REM_STA, |
| 2074 | .len = sizeof(struct il_rem_sta_cmd), |
| 2075 | .flags = CMD_SYNC, |
| 2076 | .data = &rm_sta_cmd, |
| 2077 | }; |
| 2078 | |
| 2079 | memset(&rm_sta_cmd, 0, sizeof(rm_sta_cmd)); |
| 2080 | rm_sta_cmd.num_sta = 1; |
| 2081 | memcpy(&rm_sta_cmd.addr, addr, ETH_ALEN); |
| 2082 | |
| 2083 | cmd.flags |= CMD_WANT_SKB; |
| 2084 | |
| 2085 | ret = il_send_cmd(il, &cmd); |
| 2086 | |
| 2087 | if (ret) |
| 2088 | return ret; |
| 2089 | |
| 2090 | pkt = (struct il_rx_pkt *)cmd.reply_page; |
| 2091 | if (pkt->hdr.flags & IL_CMD_FAILED_MSK) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2092 | 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] | 2093 | ret = -EIO; |
| 2094 | } |
| 2095 | |
| 2096 | if (!ret) { |
| 2097 | switch (pkt->u.rem_sta.status) { |
| 2098 | case REM_STA_SUCCESS_MSK: |
| 2099 | if (!temporary) { |
| 2100 | spin_lock_irqsave(&il->sta_lock, flags_spin); |
| 2101 | il_sta_ucode_deactivate(il, sta_id); |
| 2102 | spin_unlock_irqrestore(&il->sta_lock, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2103 | flags_spin); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2104 | } |
| 2105 | D_ASSOC("C_REM_STA PASSED\n"); |
| 2106 | break; |
| 2107 | default: |
| 2108 | ret = -EIO; |
| 2109 | IL_ERR("C_REM_STA failed\n"); |
| 2110 | break; |
| 2111 | } |
| 2112 | } |
| 2113 | il_free_pages(il, cmd.reply_page); |
| 2114 | |
| 2115 | return ret; |
| 2116 | } |
| 2117 | |
| 2118 | /** |
| 2119 | * il_remove_station - Remove driver's knowledge of station. |
| 2120 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2121 | int |
| 2122 | 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] | 2123 | { |
| 2124 | unsigned long flags; |
| 2125 | |
| 2126 | if (!il_is_ready(il)) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2127 | D_INFO("Unable to remove station %pM, device not ready.\n", |
| 2128 | addr); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2129 | /* |
| 2130 | * It is typical for stations to be removed when we are |
| 2131 | * going down. Return success since device will be down |
| 2132 | * soon anyway |
| 2133 | */ |
| 2134 | return 0; |
| 2135 | } |
| 2136 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2137 | D_ASSOC("Removing STA from driver:%d %pM\n", sta_id, addr); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2138 | |
| 2139 | if (WARN_ON(sta_id == IL_INVALID_STATION)) |
| 2140 | return -EINVAL; |
| 2141 | |
| 2142 | spin_lock_irqsave(&il->sta_lock, flags); |
| 2143 | |
| 2144 | if (!(il->stations[sta_id].used & IL_STA_DRIVER_ACTIVE)) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2145 | D_INFO("Removing %pM but non DRIVER active\n", addr); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2146 | goto out_err; |
| 2147 | } |
| 2148 | |
| 2149 | if (!(il->stations[sta_id].used & IL_STA_UCODE_ACTIVE)) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2150 | D_INFO("Removing %pM but non UCODE active\n", addr); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2151 | goto out_err; |
| 2152 | } |
| 2153 | |
| 2154 | if (il->stations[sta_id].used & IL_STA_LOCAL) { |
| 2155 | kfree(il->stations[sta_id].lq); |
| 2156 | il->stations[sta_id].lq = NULL; |
| 2157 | } |
| 2158 | |
| 2159 | il->stations[sta_id].used &= ~IL_STA_DRIVER_ACTIVE; |
| 2160 | |
| 2161 | il->num_stations--; |
| 2162 | |
| 2163 | BUG_ON(il->num_stations < 0); |
| 2164 | |
| 2165 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 2166 | |
| 2167 | return il_send_remove_station(il, addr, sta_id, false); |
| 2168 | out_err: |
| 2169 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 2170 | return -EINVAL; |
| 2171 | } |
| 2172 | EXPORT_SYMBOL_GPL(il_remove_station); |
| 2173 | |
| 2174 | /** |
| 2175 | * il_clear_ucode_stations - clear ucode station table bits |
| 2176 | * |
| 2177 | * This function clears all the bits in the driver indicating |
| 2178 | * which stations are active in the ucode. Call when something |
| 2179 | * other than explicit station management would cause this in |
| 2180 | * the ucode, e.g. unassociated RXON. |
| 2181 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2182 | void |
| 2183 | il_clear_ucode_stations(struct il_priv *il, struct il_rxon_context *ctx) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2184 | { |
| 2185 | int i; |
| 2186 | unsigned long flags_spin; |
| 2187 | bool cleared = false; |
| 2188 | |
| 2189 | D_INFO("Clearing ucode stations in driver\n"); |
| 2190 | |
| 2191 | spin_lock_irqsave(&il->sta_lock, flags_spin); |
| 2192 | for (i = 0; i < il->hw_params.max_stations; i++) { |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2193 | if (il->stations[i].used & IL_STA_UCODE_ACTIVE) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2194 | D_INFO("Clearing ucode active for station %d\n", i); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2195 | il->stations[i].used &= ~IL_STA_UCODE_ACTIVE; |
| 2196 | cleared = true; |
| 2197 | } |
| 2198 | } |
| 2199 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); |
| 2200 | |
| 2201 | if (!cleared) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2202 | D_INFO("No active stations found to be cleared\n"); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2203 | } |
| 2204 | EXPORT_SYMBOL(il_clear_ucode_stations); |
| 2205 | |
| 2206 | /** |
| 2207 | * il_restore_stations() - Restore driver known stations to device |
| 2208 | * |
| 2209 | * All stations considered active by driver, but not present in ucode, is |
| 2210 | * restored. |
| 2211 | * |
| 2212 | * Function sleeps. |
| 2213 | */ |
| 2214 | void |
| 2215 | il_restore_stations(struct il_priv *il, struct il_rxon_context *ctx) |
| 2216 | { |
| 2217 | struct il_addsta_cmd sta_cmd; |
| 2218 | struct il_link_quality_cmd lq; |
| 2219 | unsigned long flags_spin; |
| 2220 | int i; |
| 2221 | bool found = false; |
| 2222 | int ret; |
| 2223 | bool send_lq; |
| 2224 | |
| 2225 | if (!il_is_ready(il)) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2226 | D_INFO("Not ready yet, not restoring any stations.\n"); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2227 | return; |
| 2228 | } |
| 2229 | |
| 2230 | D_ASSOC("Restoring all known stations ... start.\n"); |
| 2231 | spin_lock_irqsave(&il->sta_lock, flags_spin); |
| 2232 | for (i = 0; i < il->hw_params.max_stations; i++) { |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2233 | if ((il->stations[i].used & IL_STA_DRIVER_ACTIVE) && |
| 2234 | !(il->stations[i].used & IL_STA_UCODE_ACTIVE)) { |
| 2235 | D_ASSOC("Restoring sta %pM\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2236 | il->stations[i].sta.sta.addr); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2237 | il->stations[i].sta.mode = 0; |
| 2238 | il->stations[i].used |= IL_STA_UCODE_INPROGRESS; |
| 2239 | found = true; |
| 2240 | } |
| 2241 | } |
| 2242 | |
| 2243 | for (i = 0; i < il->hw_params.max_stations; i++) { |
| 2244 | if ((il->stations[i].used & IL_STA_UCODE_INPROGRESS)) { |
| 2245 | memcpy(&sta_cmd, &il->stations[i].sta, |
| 2246 | sizeof(struct il_addsta_cmd)); |
| 2247 | send_lq = false; |
| 2248 | if (il->stations[i].lq) { |
| 2249 | memcpy(&lq, il->stations[i].lq, |
| 2250 | sizeof(struct il_link_quality_cmd)); |
| 2251 | send_lq = true; |
| 2252 | } |
| 2253 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); |
| 2254 | ret = il_send_add_sta(il, &sta_cmd, CMD_SYNC); |
| 2255 | if (ret) { |
| 2256 | spin_lock_irqsave(&il->sta_lock, flags_spin); |
| 2257 | IL_ERR("Adding station %pM failed.\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2258 | il->stations[i].sta.sta.addr); |
| 2259 | il->stations[i].used &= ~IL_STA_DRIVER_ACTIVE; |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2260 | il->stations[i].used &= |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2261 | ~IL_STA_UCODE_INPROGRESS; |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2262 | spin_unlock_irqrestore(&il->sta_lock, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2263 | flags_spin); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2264 | } |
| 2265 | /* |
| 2266 | * Rate scaling has already been initialized, send |
| 2267 | * current LQ command |
| 2268 | */ |
| 2269 | if (send_lq) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2270 | il_send_lq_cmd(il, ctx, &lq, CMD_SYNC, true); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2271 | spin_lock_irqsave(&il->sta_lock, flags_spin); |
| 2272 | il->stations[i].used &= ~IL_STA_UCODE_INPROGRESS; |
| 2273 | } |
| 2274 | } |
| 2275 | |
| 2276 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); |
| 2277 | if (!found) |
| 2278 | D_INFO("Restoring all known stations" |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2279 | " .... no stations to be restored.\n"); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2280 | else |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2281 | D_INFO("Restoring all known stations" " .... complete.\n"); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2282 | } |
| 2283 | EXPORT_SYMBOL(il_restore_stations); |
| 2284 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2285 | int |
| 2286 | il_get_free_ucode_key_idx(struct il_priv *il) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2287 | { |
| 2288 | int i; |
| 2289 | |
| 2290 | for (i = 0; i < il->sta_key_max_num; i++) |
| 2291 | if (!test_and_set_bit(i, &il->ucode_key_table)) |
| 2292 | return i; |
| 2293 | |
| 2294 | return WEP_INVALID_OFFSET; |
| 2295 | } |
| 2296 | EXPORT_SYMBOL(il_get_free_ucode_key_idx); |
| 2297 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2298 | void |
| 2299 | il_dealloc_bcast_stations(struct il_priv *il) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2300 | { |
| 2301 | unsigned long flags; |
| 2302 | int i; |
| 2303 | |
| 2304 | spin_lock_irqsave(&il->sta_lock, flags); |
| 2305 | for (i = 0; i < il->hw_params.max_stations; i++) { |
| 2306 | if (!(il->stations[i].used & IL_STA_BCAST)) |
| 2307 | continue; |
| 2308 | |
| 2309 | il->stations[i].used &= ~IL_STA_UCODE_ACTIVE; |
| 2310 | il->num_stations--; |
| 2311 | BUG_ON(il->num_stations < 0); |
| 2312 | kfree(il->stations[i].lq); |
| 2313 | il->stations[i].lq = NULL; |
| 2314 | } |
| 2315 | spin_unlock_irqrestore(&il->sta_lock, flags); |
| 2316 | } |
| 2317 | EXPORT_SYMBOL_GPL(il_dealloc_bcast_stations); |
| 2318 | |
| 2319 | #ifdef CONFIG_IWLEGACY_DEBUG |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2320 | static void |
| 2321 | 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] | 2322 | { |
| 2323 | int i; |
| 2324 | D_RATE("lq station id 0x%x\n", lq->sta_id); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2325 | D_RATE("lq ant 0x%X 0x%X\n", lq->general_params.single_stream_ant_msk, |
| 2326 | lq->general_params.dual_stream_ant_msk); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2327 | |
| 2328 | for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2329 | 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] | 2330 | } |
| 2331 | #else |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2332 | static inline void |
| 2333 | 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] | 2334 | { |
| 2335 | } |
| 2336 | #endif |
| 2337 | |
| 2338 | /** |
| 2339 | * il_is_lq_table_valid() - Test one aspect of LQ cmd for validity |
| 2340 | * |
| 2341 | * It sometimes happens when a HT rate has been in use and we |
| 2342 | * loose connectivity with AP then mac80211 will first tell us that the |
| 2343 | * current channel is not HT anymore before removing the station. In such a |
| 2344 | * scenario the RXON flags will be updated to indicate we are not |
| 2345 | * communicating HT anymore, but the LQ command may still contain HT rates. |
| 2346 | * Test for this to prevent driver from sending LQ command between the time |
| 2347 | * RXON flags are updated and when LQ command is updated. |
| 2348 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2349 | static bool |
| 2350 | il_is_lq_table_valid(struct il_priv *il, struct il_rxon_context *ctx, |
| 2351 | struct il_link_quality_cmd *lq) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2352 | { |
| 2353 | int i; |
| 2354 | |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 2355 | if (il->ht.enabled) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2356 | return true; |
| 2357 | |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 2358 | 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] | 2359 | for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2360 | if (le32_to_cpu(lq->rs_table[i].rate_n_flags) & RATE_MCS_HT_MSK) { |
| 2361 | D_INFO("idx %d of LQ expects HT channel\n", i); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2362 | return false; |
| 2363 | } |
| 2364 | } |
| 2365 | return true; |
| 2366 | } |
| 2367 | |
| 2368 | /** |
| 2369 | * il_send_lq_cmd() - Send link quality command |
| 2370 | * @init: This command is sent as part of station initialization right |
| 2371 | * after station has been added. |
| 2372 | * |
| 2373 | * The link quality command is sent as the last step of station creation. |
| 2374 | * This is the special case in which init is set and we call a callback in |
| 2375 | * this case to clear the state indicating that station creation is in |
| 2376 | * progress. |
| 2377 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2378 | int |
| 2379 | il_send_lq_cmd(struct il_priv *il, struct il_rxon_context *ctx, |
| 2380 | struct il_link_quality_cmd *lq, u8 flags, bool init) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2381 | { |
| 2382 | int ret = 0; |
| 2383 | unsigned long flags_spin; |
| 2384 | |
| 2385 | struct il_host_cmd cmd = { |
| 2386 | .id = C_TX_LINK_QUALITY_CMD, |
| 2387 | .len = sizeof(struct il_link_quality_cmd), |
| 2388 | .flags = flags, |
| 2389 | .data = lq, |
| 2390 | }; |
| 2391 | |
| 2392 | if (WARN_ON(lq->sta_id == IL_INVALID_STATION)) |
| 2393 | return -EINVAL; |
| 2394 | |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2395 | spin_lock_irqsave(&il->sta_lock, flags_spin); |
| 2396 | if (!(il->stations[lq->sta_id].used & IL_STA_DRIVER_ACTIVE)) { |
| 2397 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); |
| 2398 | return -EINVAL; |
| 2399 | } |
| 2400 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); |
| 2401 | |
| 2402 | il_dump_lq_cmd(il, lq); |
| 2403 | BUG_ON(init && (cmd.flags & CMD_ASYNC)); |
| 2404 | |
| 2405 | if (il_is_lq_table_valid(il, ctx, lq)) |
| 2406 | ret = il_send_cmd(il, &cmd); |
| 2407 | else |
| 2408 | ret = -EINVAL; |
| 2409 | |
| 2410 | if (cmd.flags & CMD_ASYNC) |
| 2411 | return ret; |
| 2412 | |
| 2413 | if (init) { |
| 2414 | D_INFO("init LQ command complete," |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2415 | " clearing sta addition status for sta %d\n", |
| 2416 | lq->sta_id); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2417 | spin_lock_irqsave(&il->sta_lock, flags_spin); |
| 2418 | il->stations[lq->sta_id].used &= ~IL_STA_UCODE_INPROGRESS; |
| 2419 | spin_unlock_irqrestore(&il->sta_lock, flags_spin); |
| 2420 | } |
| 2421 | return ret; |
| 2422 | } |
| 2423 | EXPORT_SYMBOL(il_send_lq_cmd); |
| 2424 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2425 | int |
| 2426 | il_mac_sta_remove(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
| 2427 | struct ieee80211_sta *sta) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2428 | { |
| 2429 | struct il_priv *il = hw->priv; |
| 2430 | struct il_station_priv_common *sta_common = (void *)sta->drv_priv; |
| 2431 | int ret; |
| 2432 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2433 | D_INFO("received request to remove station %pM\n", sta->addr); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2434 | mutex_lock(&il->mutex); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2435 | D_INFO("proceeding to remove station %pM\n", sta->addr); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2436 | ret = il_remove_station(il, sta_common->sta_id, sta->addr); |
| 2437 | if (ret) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2438 | IL_ERR("Error removing station %pM\n", sta->addr); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2439 | mutex_unlock(&il->mutex); |
| 2440 | return ret; |
| 2441 | } |
| 2442 | EXPORT_SYMBOL(il_mac_sta_remove); |
| 2443 | |
| 2444 | /************************** RX-FUNCTIONS ****************************/ |
| 2445 | /* |
| 2446 | * Rx theory of operation |
| 2447 | * |
| 2448 | * Driver allocates a circular buffer of Receive Buffer Descriptors (RBDs), |
| 2449 | * each of which point to Receive Buffers to be filled by the NIC. These get |
| 2450 | * used not only for Rx frames, but for any command response or notification |
| 2451 | * from the NIC. The driver and NIC manage the Rx buffers by means |
| 2452 | * of idxes into the circular buffer. |
| 2453 | * |
| 2454 | * Rx Queue Indexes |
| 2455 | * The host/firmware share two idx registers for managing the Rx buffers. |
| 2456 | * |
| 2457 | * The READ idx maps to the first position that the firmware may be writing |
| 2458 | * to -- the driver can read up to (but not including) this position and get |
| 2459 | * good data. |
| 2460 | * The READ idx is managed by the firmware once the card is enabled. |
| 2461 | * |
| 2462 | * The WRITE idx maps to the last position the driver has read from -- the |
| 2463 | * position preceding WRITE is the last slot the firmware can place a packet. |
| 2464 | * |
| 2465 | * The queue is empty (no good data) if WRITE = READ - 1, and is full if |
| 2466 | * WRITE = READ. |
| 2467 | * |
| 2468 | * During initialization, the host sets up the READ queue position to the first |
| 2469 | * IDX position, and WRITE to the last (READ - 1 wrapped) |
| 2470 | * |
| 2471 | * When the firmware places a packet in a buffer, it will advance the READ idx |
| 2472 | * and fire the RX interrupt. The driver can then query the READ idx and |
| 2473 | * process as many packets as possible, moving the WRITE idx forward as it |
| 2474 | * resets the Rx queue buffers with new memory. |
| 2475 | * |
| 2476 | * The management in the driver is as follows: |
| 2477 | * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When |
| 2478 | * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled |
| 2479 | * to replenish the iwl->rxq->rx_free. |
| 2480 | * + In il_rx_replenish (scheduled) if 'processed' != 'read' then the |
| 2481 | * iwl->rxq is replenished and the READ IDX is updated (updating the |
| 2482 | * 'processed' and 'read' driver idxes as well) |
| 2483 | * + A received packet is processed and handed to the kernel network stack, |
| 2484 | * detached from the iwl->rxq. The driver 'processed' idx is updated. |
| 2485 | * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free |
| 2486 | * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ |
| 2487 | * IDX is not incremented and iwl->status(RX_STALLED) is set. If there |
| 2488 | * were enough free buffers and RX_STALLED is set it is cleared. |
| 2489 | * |
| 2490 | * |
| 2491 | * Driver sequence: |
| 2492 | * |
| 2493 | * il_rx_queue_alloc() Allocates rx_free |
| 2494 | * il_rx_replenish() Replenishes rx_free list from rx_used, and calls |
| 2495 | * il_rx_queue_restock |
| 2496 | * il_rx_queue_restock() Moves available buffers from rx_free into Rx |
| 2497 | * queue, updates firmware pointers, and updates |
| 2498 | * the WRITE idx. If insufficient rx_free buffers |
| 2499 | * are available, schedules il_rx_replenish |
| 2500 | * |
| 2501 | * -- enable interrupts -- |
| 2502 | * ISR - il_rx() Detach il_rx_bufs from pool up to the |
| 2503 | * READ IDX, detaching the SKB from the pool. |
| 2504 | * Moves the packet buffer from queue to rx_used. |
| 2505 | * Calls il_rx_queue_restock to refill any empty |
| 2506 | * slots. |
| 2507 | * ... |
| 2508 | * |
| 2509 | */ |
| 2510 | |
| 2511 | /** |
| 2512 | * il_rx_queue_space - Return number of free slots available in queue. |
| 2513 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2514 | int |
| 2515 | il_rx_queue_space(const struct il_rx_queue *q) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2516 | { |
| 2517 | int s = q->read - q->write; |
| 2518 | if (s <= 0) |
| 2519 | s += RX_QUEUE_SIZE; |
| 2520 | /* keep some buffer to not confuse full and empty queue */ |
| 2521 | s -= 2; |
| 2522 | if (s < 0) |
| 2523 | s = 0; |
| 2524 | return s; |
| 2525 | } |
| 2526 | EXPORT_SYMBOL(il_rx_queue_space); |
| 2527 | |
| 2528 | /** |
| 2529 | * il_rx_queue_update_write_ptr - Update the write pointer for the RX queue |
| 2530 | */ |
| 2531 | void |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2532 | 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] | 2533 | { |
| 2534 | unsigned long flags; |
| 2535 | u32 rx_wrt_ptr_reg = il->hw_params.rx_wrt_ptr_reg; |
| 2536 | u32 reg; |
| 2537 | |
| 2538 | spin_lock_irqsave(&q->lock, flags); |
| 2539 | |
| 2540 | if (q->need_update == 0) |
| 2541 | goto exit_unlock; |
| 2542 | |
| 2543 | /* If power-saving is in use, make sure device is awake */ |
| 2544 | if (test_bit(S_POWER_PMI, &il->status)) { |
| 2545 | reg = _il_rd(il, CSR_UCODE_DRV_GP1); |
| 2546 | |
| 2547 | if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2548 | D_INFO("Rx queue requesting wakeup," " GP1 = 0x%x\n", |
| 2549 | reg); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2550 | il_set_bit(il, CSR_GP_CNTRL, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2551 | CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2552 | goto exit_unlock; |
| 2553 | } |
| 2554 | |
| 2555 | q->write_actual = (q->write & ~0x7); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2556 | il_wr(il, rx_wrt_ptr_reg, q->write_actual); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2557 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2558 | /* Else device is assumed to be awake */ |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2559 | } else { |
| 2560 | /* Device expects a multiple of 8 */ |
| 2561 | q->write_actual = (q->write & ~0x7); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2562 | il_wr(il, rx_wrt_ptr_reg, q->write_actual); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2563 | } |
| 2564 | |
| 2565 | q->need_update = 0; |
| 2566 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2567 | exit_unlock: |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2568 | spin_unlock_irqrestore(&q->lock, flags); |
| 2569 | } |
| 2570 | EXPORT_SYMBOL(il_rx_queue_update_write_ptr); |
| 2571 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2572 | int |
| 2573 | il_rx_queue_alloc(struct il_priv *il) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2574 | { |
| 2575 | struct il_rx_queue *rxq = &il->rxq; |
| 2576 | struct device *dev = &il->pci_dev->dev; |
| 2577 | int i; |
| 2578 | |
| 2579 | spin_lock_init(&rxq->lock); |
| 2580 | INIT_LIST_HEAD(&rxq->rx_free); |
| 2581 | INIT_LIST_HEAD(&rxq->rx_used); |
| 2582 | |
| 2583 | /* Alloc the circular buffer of Read Buffer Descriptors (RBDs) */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2584 | rxq->bd = |
| 2585 | dma_alloc_coherent(dev, 4 * RX_QUEUE_SIZE, &rxq->bd_dma, |
| 2586 | GFP_KERNEL); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2587 | if (!rxq->bd) |
| 2588 | goto err_bd; |
| 2589 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2590 | rxq->rb_stts = |
| 2591 | dma_alloc_coherent(dev, sizeof(struct il_rb_status), |
| 2592 | &rxq->rb_stts_dma, GFP_KERNEL); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2593 | if (!rxq->rb_stts) |
| 2594 | goto err_rb; |
| 2595 | |
| 2596 | /* Fill the rx_used queue with _all_ of the Rx buffers */ |
| 2597 | for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) |
| 2598 | list_add_tail(&rxq->pool[i].list, &rxq->rx_used); |
| 2599 | |
| 2600 | /* Set us so that we have processed and used all buffers, but have |
| 2601 | * not restocked the Rx queue with fresh buffers */ |
| 2602 | rxq->read = rxq->write = 0; |
| 2603 | rxq->write_actual = 0; |
| 2604 | rxq->free_count = 0; |
| 2605 | rxq->need_update = 0; |
| 2606 | return 0; |
| 2607 | |
| 2608 | err_rb: |
| 2609 | dma_free_coherent(&il->pci_dev->dev, 4 * RX_QUEUE_SIZE, rxq->bd, |
| 2610 | rxq->bd_dma); |
| 2611 | err_bd: |
| 2612 | return -ENOMEM; |
| 2613 | } |
| 2614 | EXPORT_SYMBOL(il_rx_queue_alloc); |
| 2615 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2616 | void |
| 2617 | 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] | 2618 | { |
| 2619 | struct il_rx_pkt *pkt = rxb_addr(rxb); |
| 2620 | struct il_spectrum_notification *report = &(pkt->u.spectrum_notif); |
| 2621 | |
| 2622 | if (!report->state) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2623 | D_11H("Spectrum Measure Notification: Start\n"); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2624 | return; |
| 2625 | } |
| 2626 | |
| 2627 | memcpy(&il->measure_report, report, sizeof(*report)); |
| 2628 | il->measurement_status |= MEASUREMENT_READY; |
| 2629 | } |
| 2630 | EXPORT_SYMBOL(il_hdl_spectrum_measurement); |
| 2631 | |
| 2632 | /* |
| 2633 | * returns non-zero if packet should be dropped |
| 2634 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2635 | int |
| 2636 | il_set_decrypted_flag(struct il_priv *il, struct ieee80211_hdr *hdr, |
| 2637 | u32 decrypt_res, struct ieee80211_rx_status *stats) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2638 | { |
| 2639 | u16 fc = le16_to_cpu(hdr->frame_control); |
| 2640 | |
| 2641 | /* |
| 2642 | * All contexts have the same setting here due to it being |
| 2643 | * a module parameter, so OK to check any context. |
| 2644 | */ |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 2645 | if (il->active.filter_flags & RXON_FILTER_DIS_DECRYPT_MSK) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2646 | return 0; |
| 2647 | |
| 2648 | if (!(fc & IEEE80211_FCTL_PROTECTED)) |
| 2649 | return 0; |
| 2650 | |
| 2651 | D_RX("decrypt_res:0x%x\n", decrypt_res); |
| 2652 | switch (decrypt_res & RX_RES_STATUS_SEC_TYPE_MSK) { |
| 2653 | case RX_RES_STATUS_SEC_TYPE_TKIP: |
| 2654 | /* The uCode has got a bad phase 1 Key, pushes the packet. |
| 2655 | * Decryption will be done in SW. */ |
| 2656 | if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) == |
| 2657 | RX_RES_STATUS_BAD_KEY_TTAK) |
| 2658 | break; |
| 2659 | |
| 2660 | case RX_RES_STATUS_SEC_TYPE_WEP: |
| 2661 | if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) == |
| 2662 | RX_RES_STATUS_BAD_ICV_MIC) { |
| 2663 | /* bad ICV, the packet is destroyed since the |
| 2664 | * decryption is inplace, drop it */ |
| 2665 | D_RX("Packet destroyed\n"); |
| 2666 | return -1; |
| 2667 | } |
| 2668 | case RX_RES_STATUS_SEC_TYPE_CCMP: |
| 2669 | if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) == |
| 2670 | RX_RES_STATUS_DECRYPT_OK) { |
| 2671 | D_RX("hw decrypt successfully!!!\n"); |
| 2672 | stats->flag |= RX_FLAG_DECRYPTED; |
| 2673 | } |
| 2674 | break; |
| 2675 | |
| 2676 | default: |
| 2677 | break; |
| 2678 | } |
| 2679 | return 0; |
| 2680 | } |
| 2681 | EXPORT_SYMBOL(il_set_decrypted_flag); |
| 2682 | |
| 2683 | /** |
| 2684 | * il_txq_update_write_ptr - Send new write idx to hardware |
| 2685 | */ |
| 2686 | void |
| 2687 | il_txq_update_write_ptr(struct il_priv *il, struct il_tx_queue *txq) |
| 2688 | { |
| 2689 | u32 reg = 0; |
| 2690 | int txq_id = txq->q.id; |
| 2691 | |
| 2692 | if (txq->need_update == 0) |
| 2693 | return; |
| 2694 | |
| 2695 | /* if we're trying to save power */ |
| 2696 | if (test_bit(S_POWER_PMI, &il->status)) { |
| 2697 | /* wake up nic if it's powered down ... |
| 2698 | * uCode will wake up, and interrupt us again, so next |
| 2699 | * time we'll skip this part. */ |
| 2700 | reg = _il_rd(il, CSR_UCODE_DRV_GP1); |
| 2701 | |
| 2702 | if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2703 | D_INFO("Tx queue %d requesting wakeup," " GP1 = 0x%x\n", |
| 2704 | txq_id, reg); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2705 | il_set_bit(il, CSR_GP_CNTRL, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2706 | CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2707 | return; |
| 2708 | } |
| 2709 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2710 | 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] | 2711 | |
| 2712 | /* |
| 2713 | * else not in power-save mode, |
| 2714 | * uCode will never sleep when we're |
| 2715 | * trying to tx (during RFKILL, we're not trying to tx). |
| 2716 | */ |
| 2717 | } else |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2718 | _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] | 2719 | txq->need_update = 0; |
| 2720 | } |
| 2721 | EXPORT_SYMBOL(il_txq_update_write_ptr); |
| 2722 | |
| 2723 | /** |
| 2724 | * il_tx_queue_unmap - Unmap any remaining DMA mappings and free skb's |
| 2725 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2726 | void |
| 2727 | il_tx_queue_unmap(struct il_priv *il, int txq_id) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2728 | { |
| 2729 | struct il_tx_queue *txq = &il->txq[txq_id]; |
| 2730 | struct il_queue *q = &txq->q; |
| 2731 | |
| 2732 | if (q->n_bd == 0) |
| 2733 | return; |
| 2734 | |
| 2735 | while (q->write_ptr != q->read_ptr) { |
| 2736 | il->cfg->ops->lib->txq_free_tfd(il, txq); |
| 2737 | q->read_ptr = il_queue_inc_wrap(q->read_ptr, q->n_bd); |
| 2738 | } |
| 2739 | } |
| 2740 | EXPORT_SYMBOL(il_tx_queue_unmap); |
| 2741 | |
| 2742 | /** |
| 2743 | * il_tx_queue_free - Deallocate DMA queue. |
| 2744 | * @txq: Transmit queue to deallocate. |
| 2745 | * |
| 2746 | * Empty queue by removing and destroying all BD's. |
| 2747 | * Free all buffers. |
| 2748 | * 0-fill, but do not free "txq" descriptor structure. |
| 2749 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2750 | void |
| 2751 | il_tx_queue_free(struct il_priv *il, int txq_id) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2752 | { |
| 2753 | struct il_tx_queue *txq = &il->txq[txq_id]; |
| 2754 | struct device *dev = &il->pci_dev->dev; |
| 2755 | int i; |
| 2756 | |
| 2757 | il_tx_queue_unmap(il, txq_id); |
| 2758 | |
| 2759 | /* De-alloc array of command/tx buffers */ |
| 2760 | for (i = 0; i < TFD_TX_CMD_SLOTS; i++) |
| 2761 | kfree(txq->cmd[i]); |
| 2762 | |
| 2763 | /* De-alloc circular buffer of TFDs */ |
| 2764 | if (txq->q.n_bd) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2765 | dma_free_coherent(dev, il->hw_params.tfd_size * txq->q.n_bd, |
| 2766 | txq->tfds, txq->q.dma_addr); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2767 | |
| 2768 | /* De-alloc array of per-TFD driver data */ |
| 2769 | kfree(txq->txb); |
| 2770 | txq->txb = NULL; |
| 2771 | |
| 2772 | /* deallocate arrays */ |
| 2773 | kfree(txq->cmd); |
| 2774 | kfree(txq->meta); |
| 2775 | txq->cmd = NULL; |
| 2776 | txq->meta = NULL; |
| 2777 | |
| 2778 | /* 0-fill queue descriptor structure */ |
| 2779 | memset(txq, 0, sizeof(*txq)); |
| 2780 | } |
| 2781 | EXPORT_SYMBOL(il_tx_queue_free); |
| 2782 | |
| 2783 | /** |
| 2784 | * il_cmd_queue_unmap - Unmap any remaining DMA mappings from command queue |
| 2785 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2786 | void |
| 2787 | il_cmd_queue_unmap(struct il_priv *il) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2788 | { |
| 2789 | struct il_tx_queue *txq = &il->txq[il->cmd_queue]; |
| 2790 | struct il_queue *q = &txq->q; |
| 2791 | int i; |
| 2792 | |
| 2793 | if (q->n_bd == 0) |
| 2794 | return; |
| 2795 | |
| 2796 | while (q->read_ptr != q->write_ptr) { |
| 2797 | i = il_get_cmd_idx(q, q->read_ptr, 0); |
| 2798 | |
| 2799 | if (txq->meta[i].flags & CMD_MAPPED) { |
| 2800 | pci_unmap_single(il->pci_dev, |
| 2801 | dma_unmap_addr(&txq->meta[i], mapping), |
| 2802 | dma_unmap_len(&txq->meta[i], len), |
| 2803 | PCI_DMA_BIDIRECTIONAL); |
| 2804 | txq->meta[i].flags = 0; |
| 2805 | } |
| 2806 | |
| 2807 | q->read_ptr = il_queue_inc_wrap(q->read_ptr, q->n_bd); |
| 2808 | } |
| 2809 | |
| 2810 | i = q->n_win; |
| 2811 | if (txq->meta[i].flags & CMD_MAPPED) { |
| 2812 | pci_unmap_single(il->pci_dev, |
| 2813 | dma_unmap_addr(&txq->meta[i], mapping), |
| 2814 | dma_unmap_len(&txq->meta[i], len), |
| 2815 | PCI_DMA_BIDIRECTIONAL); |
| 2816 | txq->meta[i].flags = 0; |
| 2817 | } |
| 2818 | } |
| 2819 | EXPORT_SYMBOL(il_cmd_queue_unmap); |
| 2820 | |
| 2821 | /** |
| 2822 | * il_cmd_queue_free - Deallocate DMA queue. |
| 2823 | * @txq: Transmit queue to deallocate. |
| 2824 | * |
| 2825 | * Empty queue by removing and destroying all BD's. |
| 2826 | * Free all buffers. |
| 2827 | * 0-fill, but do not free "txq" descriptor structure. |
| 2828 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2829 | void |
| 2830 | il_cmd_queue_free(struct il_priv *il) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2831 | { |
| 2832 | struct il_tx_queue *txq = &il->txq[il->cmd_queue]; |
| 2833 | struct device *dev = &il->pci_dev->dev; |
| 2834 | int i; |
| 2835 | |
| 2836 | il_cmd_queue_unmap(il); |
| 2837 | |
| 2838 | /* De-alloc array of command/tx buffers */ |
| 2839 | for (i = 0; i <= TFD_CMD_SLOTS; i++) |
| 2840 | kfree(txq->cmd[i]); |
| 2841 | |
| 2842 | /* De-alloc circular buffer of TFDs */ |
| 2843 | if (txq->q.n_bd) |
| 2844 | dma_free_coherent(dev, il->hw_params.tfd_size * txq->q.n_bd, |
| 2845 | txq->tfds, txq->q.dma_addr); |
| 2846 | |
| 2847 | /* deallocate arrays */ |
| 2848 | kfree(txq->cmd); |
| 2849 | kfree(txq->meta); |
| 2850 | txq->cmd = NULL; |
| 2851 | txq->meta = NULL; |
| 2852 | |
| 2853 | /* 0-fill queue descriptor structure */ |
| 2854 | memset(txq, 0, sizeof(*txq)); |
| 2855 | } |
| 2856 | EXPORT_SYMBOL(il_cmd_queue_free); |
| 2857 | |
| 2858 | /*************** DMA-QUEUE-GENERAL-FUNCTIONS ***** |
| 2859 | * DMA services |
| 2860 | * |
| 2861 | * Theory of operation |
| 2862 | * |
| 2863 | * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer |
| 2864 | * of buffer descriptors, each of which points to one or more data buffers for |
| 2865 | * the device to read from or fill. Driver and device exchange status of each |
| 2866 | * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty |
| 2867 | * entries in each circular buffer, to protect against confusing empty and full |
| 2868 | * queue states. |
| 2869 | * |
| 2870 | * The device reads or writes the data in the queues via the device's several |
| 2871 | * DMA/FIFO channels. Each queue is mapped to a single DMA channel. |
| 2872 | * |
| 2873 | * For Tx queue, there are low mark and high mark limits. If, after queuing |
| 2874 | * the packet for Tx, free space become < low mark, Tx queue stopped. When |
| 2875 | * reclaiming packets (on 'tx done IRQ), if free space become > high mark, |
| 2876 | * Tx queue resumed. |
| 2877 | * |
| 2878 | * See more detailed info in 4965.h. |
| 2879 | ***************************************************/ |
| 2880 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2881 | int |
| 2882 | il_queue_space(const struct il_queue *q) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2883 | { |
| 2884 | int s = q->read_ptr - q->write_ptr; |
| 2885 | |
| 2886 | if (q->read_ptr > q->write_ptr) |
| 2887 | s -= q->n_bd; |
| 2888 | |
| 2889 | if (s <= 0) |
| 2890 | s += q->n_win; |
| 2891 | /* keep some reserve to not confuse empty and full situations */ |
| 2892 | s -= 2; |
| 2893 | if (s < 0) |
| 2894 | s = 0; |
| 2895 | return s; |
| 2896 | } |
| 2897 | EXPORT_SYMBOL(il_queue_space); |
| 2898 | |
| 2899 | |
| 2900 | /** |
| 2901 | * il_queue_init - Initialize queue's high/low-water and read/write idxes |
| 2902 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2903 | static int |
| 2904 | il_queue_init(struct il_priv *il, struct il_queue *q, int count, int slots_num, |
| 2905 | u32 id) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2906 | { |
| 2907 | q->n_bd = count; |
| 2908 | q->n_win = slots_num; |
| 2909 | q->id = id; |
| 2910 | |
| 2911 | /* count must be power-of-two size, otherwise il_queue_inc_wrap |
| 2912 | * and il_queue_dec_wrap are broken. */ |
| 2913 | BUG_ON(!is_power_of_2(count)); |
| 2914 | |
| 2915 | /* slots_num must be power-of-two size, otherwise |
| 2916 | * il_get_cmd_idx is broken. */ |
| 2917 | BUG_ON(!is_power_of_2(slots_num)); |
| 2918 | |
| 2919 | q->low_mark = q->n_win / 4; |
| 2920 | if (q->low_mark < 4) |
| 2921 | q->low_mark = 4; |
| 2922 | |
| 2923 | q->high_mark = q->n_win / 8; |
| 2924 | if (q->high_mark < 2) |
| 2925 | q->high_mark = 2; |
| 2926 | |
| 2927 | q->write_ptr = q->read_ptr = 0; |
| 2928 | |
| 2929 | return 0; |
| 2930 | } |
| 2931 | |
| 2932 | /** |
| 2933 | * il_tx_queue_alloc - Alloc driver data and TFD CB for one Tx/cmd queue |
| 2934 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2935 | static int |
| 2936 | 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] | 2937 | { |
| 2938 | struct device *dev = &il->pci_dev->dev; |
| 2939 | size_t tfd_sz = il->hw_params.tfd_size * TFD_QUEUE_SIZE_MAX; |
| 2940 | |
| 2941 | /* Driver ilate data, only for Tx (not command) queues, |
| 2942 | * not shared with device. */ |
| 2943 | if (id != il->cmd_queue) { |
Thomas Meyer | 2b50b8f | 2011-11-29 22:08:00 +0100 | [diff] [blame] | 2944 | txq->txb = kcalloc(TFD_QUEUE_SIZE_MAX, sizeof(txq->txb[0]), |
| 2945 | GFP_KERNEL); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2946 | if (!txq->txb) { |
| 2947 | IL_ERR("kmalloc for auxiliary BD " |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2948 | "structures failed\n"); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2949 | goto error; |
| 2950 | } |
| 2951 | } else { |
| 2952 | txq->txb = NULL; |
| 2953 | } |
| 2954 | |
| 2955 | /* Circular buffer of transmit frame descriptors (TFDs), |
| 2956 | * shared with device */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2957 | txq->tfds = |
| 2958 | dma_alloc_coherent(dev, tfd_sz, &txq->q.dma_addr, GFP_KERNEL); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2959 | if (!txq->tfds) { |
| 2960 | IL_ERR("pci_alloc_consistent(%zd) failed\n", tfd_sz); |
| 2961 | goto error; |
| 2962 | } |
| 2963 | txq->q.id = id; |
| 2964 | |
| 2965 | return 0; |
| 2966 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2967 | error: |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2968 | kfree(txq->txb); |
| 2969 | txq->txb = NULL; |
| 2970 | |
| 2971 | return -ENOMEM; |
| 2972 | } |
| 2973 | |
| 2974 | /** |
| 2975 | * il_tx_queue_init - Allocate and initialize one tx/cmd queue |
| 2976 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2977 | int |
| 2978 | il_tx_queue_init(struct il_priv *il, struct il_tx_queue *txq, int slots_num, |
| 2979 | u32 txq_id) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 2980 | { |
| 2981 | int i, len; |
| 2982 | int ret; |
| 2983 | int actual_slots = slots_num; |
| 2984 | |
| 2985 | /* |
| 2986 | * Alloc buffer array for commands (Tx or other types of commands). |
| 2987 | * For the command queue (#4/#9), allocate command space + one big |
| 2988 | * command for scan, since scan command is very huge; the system will |
| 2989 | * not have two scans at the same time, so only one is needed. |
| 2990 | * For normal Tx queues (all other queues), no super-size command |
| 2991 | * space is needed. |
| 2992 | */ |
| 2993 | if (txq_id == il->cmd_queue) |
| 2994 | actual_slots++; |
| 2995 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 2996 | txq->meta = |
| 2997 | kzalloc(sizeof(struct il_cmd_meta) * actual_slots, GFP_KERNEL); |
| 2998 | txq->cmd = |
| 2999 | kzalloc(sizeof(struct il_device_cmd *) * actual_slots, GFP_KERNEL); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3000 | |
| 3001 | if (!txq->meta || !txq->cmd) |
| 3002 | goto out_free_arrays; |
| 3003 | |
| 3004 | len = sizeof(struct il_device_cmd); |
| 3005 | for (i = 0; i < actual_slots; i++) { |
| 3006 | /* only happens for cmd queue */ |
| 3007 | if (i == slots_num) |
| 3008 | len = IL_MAX_CMD_SIZE; |
| 3009 | |
| 3010 | txq->cmd[i] = kmalloc(len, GFP_KERNEL); |
| 3011 | if (!txq->cmd[i]) |
| 3012 | goto err; |
| 3013 | } |
| 3014 | |
| 3015 | /* Alloc driver data array and TFD circular buffer */ |
| 3016 | ret = il_tx_queue_alloc(il, txq, txq_id); |
| 3017 | if (ret) |
| 3018 | goto err; |
| 3019 | |
| 3020 | txq->need_update = 0; |
| 3021 | |
| 3022 | /* |
| 3023 | * For the default queues 0-3, set up the swq_id |
| 3024 | * already -- all others need to get one later |
| 3025 | * (if they need one at all). |
| 3026 | */ |
| 3027 | if (txq_id < 4) |
| 3028 | il_set_swq_id(txq, txq_id, txq_id); |
| 3029 | |
| 3030 | /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise |
| 3031 | * il_queue_inc_wrap and il_queue_dec_wrap are broken. */ |
| 3032 | BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1)); |
| 3033 | |
| 3034 | /* Initialize queue's high/low-water marks, and head/tail idxes */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3035 | 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] | 3036 | |
| 3037 | /* Tell device where to find queue */ |
| 3038 | il->cfg->ops->lib->txq_init(il, txq); |
| 3039 | |
| 3040 | return 0; |
| 3041 | err: |
| 3042 | for (i = 0; i < actual_slots; i++) |
| 3043 | kfree(txq->cmd[i]); |
| 3044 | out_free_arrays: |
| 3045 | kfree(txq->meta); |
| 3046 | kfree(txq->cmd); |
| 3047 | |
| 3048 | return -ENOMEM; |
| 3049 | } |
| 3050 | EXPORT_SYMBOL(il_tx_queue_init); |
| 3051 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3052 | void |
| 3053 | il_tx_queue_reset(struct il_priv *il, struct il_tx_queue *txq, int slots_num, |
| 3054 | u32 txq_id) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3055 | { |
| 3056 | int actual_slots = slots_num; |
| 3057 | |
| 3058 | if (txq_id == il->cmd_queue) |
| 3059 | actual_slots++; |
| 3060 | |
| 3061 | memset(txq->meta, 0, sizeof(struct il_cmd_meta) * actual_slots); |
| 3062 | |
| 3063 | txq->need_update = 0; |
| 3064 | |
| 3065 | /* Initialize queue's high/low-water marks, and head/tail idxes */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3066 | 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] | 3067 | |
| 3068 | /* Tell device where to find queue */ |
| 3069 | il->cfg->ops->lib->txq_init(il, txq); |
| 3070 | } |
| 3071 | EXPORT_SYMBOL(il_tx_queue_reset); |
| 3072 | |
| 3073 | /*************** HOST COMMAND QUEUE FUNCTIONS *****/ |
| 3074 | |
| 3075 | /** |
| 3076 | * il_enqueue_hcmd - enqueue a uCode command |
| 3077 | * @il: device ilate data point |
| 3078 | * @cmd: a point to the ucode command structure |
| 3079 | * |
| 3080 | * The function returns < 0 values to indicate the operation is |
| 3081 | * failed. On success, it turns the idx (> 0) of command in the |
| 3082 | * command queue. |
| 3083 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3084 | int |
| 3085 | il_enqueue_hcmd(struct il_priv *il, struct il_host_cmd *cmd) |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3086 | { |
| 3087 | struct il_tx_queue *txq = &il->txq[il->cmd_queue]; |
| 3088 | struct il_queue *q = &txq->q; |
| 3089 | struct il_device_cmd *out_cmd; |
| 3090 | struct il_cmd_meta *out_meta; |
| 3091 | dma_addr_t phys_addr; |
| 3092 | unsigned long flags; |
| 3093 | int len; |
| 3094 | u32 idx; |
| 3095 | u16 fix_size; |
| 3096 | |
| 3097 | cmd->len = il->cfg->ops->utils->get_hcmd_size(cmd->id, cmd->len); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3098 | fix_size = (u16) (cmd->len + sizeof(out_cmd->hdr)); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3099 | |
| 3100 | /* If any of the command structures end up being larger than |
| 3101 | * the TFD_MAX_PAYLOAD_SIZE, and it sent as a 'small' command then |
| 3102 | * we will need to increase the size of the TFD entries |
| 3103 | * Also, check to see if command buffer should not exceed the size |
| 3104 | * of device_cmd and max_cmd_size. */ |
| 3105 | BUG_ON((fix_size > TFD_MAX_PAYLOAD_SIZE) && |
| 3106 | !(cmd->flags & CMD_SIZE_HUGE)); |
| 3107 | BUG_ON(fix_size > IL_MAX_CMD_SIZE); |
| 3108 | |
| 3109 | if (il_is_rfkill(il) || il_is_ctkill(il)) { |
| 3110 | IL_WARN("Not sending command - %s KILL\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3111 | il_is_rfkill(il) ? "RF" : "CT"); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3112 | return -EIO; |
| 3113 | } |
| 3114 | |
| 3115 | spin_lock_irqsave(&il->hcmd_lock, flags); |
| 3116 | |
| 3117 | if (il_queue_space(q) < ((cmd->flags & CMD_ASYNC) ? 2 : 1)) { |
| 3118 | spin_unlock_irqrestore(&il->hcmd_lock, flags); |
| 3119 | |
| 3120 | IL_ERR("Restarting adapter due to command queue full\n"); |
| 3121 | queue_work(il->workqueue, &il->restart); |
| 3122 | return -ENOSPC; |
| 3123 | } |
| 3124 | |
| 3125 | idx = il_get_cmd_idx(q, q->write_ptr, cmd->flags & CMD_SIZE_HUGE); |
| 3126 | out_cmd = txq->cmd[idx]; |
| 3127 | out_meta = &txq->meta[idx]; |
| 3128 | |
| 3129 | if (WARN_ON(out_meta->flags & CMD_MAPPED)) { |
| 3130 | spin_unlock_irqrestore(&il->hcmd_lock, flags); |
| 3131 | return -ENOSPC; |
| 3132 | } |
| 3133 | |
| 3134 | memset(out_meta, 0, sizeof(*out_meta)); /* re-initialize to NULL */ |
| 3135 | out_meta->flags = cmd->flags | CMD_MAPPED; |
| 3136 | if (cmd->flags & CMD_WANT_SKB) |
| 3137 | out_meta->source = cmd; |
| 3138 | if (cmd->flags & CMD_ASYNC) |
| 3139 | out_meta->callback = cmd->callback; |
| 3140 | |
| 3141 | out_cmd->hdr.cmd = cmd->id; |
| 3142 | memcpy(&out_cmd->cmd.payload, cmd->data, cmd->len); |
| 3143 | |
| 3144 | /* At this point, the out_cmd now has all of the incoming cmd |
| 3145 | * information */ |
| 3146 | |
| 3147 | out_cmd->hdr.flags = 0; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3148 | out_cmd->hdr.sequence = |
| 3149 | 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] | 3150 | if (cmd->flags & CMD_SIZE_HUGE) |
| 3151 | out_cmd->hdr.sequence |= SEQ_HUGE_FRAME; |
| 3152 | len = sizeof(struct il_device_cmd); |
| 3153 | if (idx == TFD_CMD_SLOTS) |
| 3154 | len = IL_MAX_CMD_SIZE; |
| 3155 | |
| 3156 | #ifdef CONFIG_IWLEGACY_DEBUG |
| 3157 | switch (out_cmd->hdr.cmd) { |
| 3158 | case C_TX_LINK_QUALITY_CMD: |
| 3159 | case C_SENSITIVITY: |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3160 | D_HC_DUMP("Sending command %s (#%x), seq: 0x%04X, " |
| 3161 | "%d bytes at %d[%d]:%d\n", |
| 3162 | il_get_cmd_string(out_cmd->hdr.cmd), out_cmd->hdr.cmd, |
| 3163 | le16_to_cpu(out_cmd->hdr.sequence), fix_size, |
| 3164 | q->write_ptr, idx, il->cmd_queue); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3165 | break; |
| 3166 | default: |
| 3167 | D_HC("Sending command %s (#%x), seq: 0x%04X, " |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3168 | "%d bytes at %d[%d]:%d\n", |
| 3169 | il_get_cmd_string(out_cmd->hdr.cmd), out_cmd->hdr.cmd, |
| 3170 | le16_to_cpu(out_cmd->hdr.sequence), fix_size, q->write_ptr, |
| 3171 | idx, il->cmd_queue); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3172 | } |
| 3173 | #endif |
| 3174 | txq->need_update = 1; |
| 3175 | |
| 3176 | if (il->cfg->ops->lib->txq_update_byte_cnt_tbl) |
| 3177 | /* Set up entry in queue's byte count circular buffer */ |
| 3178 | il->cfg->ops->lib->txq_update_byte_cnt_tbl(il, txq, 0); |
| 3179 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3180 | phys_addr = |
| 3181 | pci_map_single(il->pci_dev, &out_cmd->hdr, fix_size, |
| 3182 | PCI_DMA_BIDIRECTIONAL); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3183 | dma_unmap_addr_set(out_meta, mapping, phys_addr); |
| 3184 | dma_unmap_len_set(out_meta, len, fix_size); |
| 3185 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3186 | il->cfg->ops->lib->txq_attach_buf_to_tfd(il, txq, phys_addr, fix_size, |
| 3187 | 1, U32_PAD(cmd->len)); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3188 | |
| 3189 | /* Increment and update queue's write idx */ |
| 3190 | q->write_ptr = il_queue_inc_wrap(q->write_ptr, q->n_bd); |
| 3191 | il_txq_update_write_ptr(il, txq); |
| 3192 | |
| 3193 | spin_unlock_irqrestore(&il->hcmd_lock, flags); |
| 3194 | return idx; |
| 3195 | } |
| 3196 | |
| 3197 | /** |
| 3198 | * il_hcmd_queue_reclaim - Reclaim TX command queue entries already Tx'd |
| 3199 | * |
| 3200 | * When FW advances 'R' idx, all entries between old and new 'R' idx |
| 3201 | * need to be reclaimed. As result, some free space forms. If there is |
| 3202 | * enough free space (> low mark), wake the stack that feeds us. |
| 3203 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3204 | static void |
| 3205 | 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] | 3206 | { |
| 3207 | struct il_tx_queue *txq = &il->txq[txq_id]; |
| 3208 | struct il_queue *q = &txq->q; |
| 3209 | int nfreed = 0; |
| 3210 | |
| 3211 | if (idx >= q->n_bd || il_queue_used(q, idx) == 0) { |
| 3212 | IL_ERR("Read idx for DMA queue txq id (%d), idx %d, " |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3213 | "is out of range [0-%d] %d %d.\n", txq_id, idx, q->n_bd, |
| 3214 | q->write_ptr, q->read_ptr); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3215 | return; |
| 3216 | } |
| 3217 | |
| 3218 | for (idx = il_queue_inc_wrap(idx, q->n_bd); q->read_ptr != idx; |
| 3219 | q->read_ptr = il_queue_inc_wrap(q->read_ptr, q->n_bd)) { |
| 3220 | |
| 3221 | if (nfreed++ > 0) { |
| 3222 | IL_ERR("HCMD skipped: idx (%d) %d %d\n", idx, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3223 | q->write_ptr, q->read_ptr); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3224 | queue_work(il->workqueue, &il->restart); |
| 3225 | } |
| 3226 | |
| 3227 | } |
| 3228 | } |
| 3229 | |
| 3230 | /** |
| 3231 | * il_tx_cmd_complete - Pull unused buffers off the queue and reclaim them |
| 3232 | * @rxb: Rx buffer to reclaim |
| 3233 | * |
| 3234 | * If an Rx buffer has an async callback associated with it the callback |
| 3235 | * will be executed. The attached skb (if present) will only be freed |
| 3236 | * if the callback returns 1 |
| 3237 | */ |
| 3238 | void |
| 3239 | il_tx_cmd_complete(struct il_priv *il, struct il_rx_buf *rxb) |
| 3240 | { |
| 3241 | struct il_rx_pkt *pkt = rxb_addr(rxb); |
| 3242 | u16 sequence = le16_to_cpu(pkt->hdr.sequence); |
| 3243 | int txq_id = SEQ_TO_QUEUE(sequence); |
| 3244 | int idx = SEQ_TO_IDX(sequence); |
| 3245 | int cmd_idx; |
| 3246 | bool huge = !!(pkt->hdr.sequence & SEQ_HUGE_FRAME); |
| 3247 | struct il_device_cmd *cmd; |
| 3248 | struct il_cmd_meta *meta; |
| 3249 | struct il_tx_queue *txq = &il->txq[il->cmd_queue]; |
| 3250 | unsigned long flags; |
| 3251 | |
| 3252 | /* If a Tx command is being handled and it isn't in the actual |
| 3253 | * command queue then there a command routing bug has been introduced |
| 3254 | * in the queue management code. */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3255 | if (WARN |
| 3256 | (txq_id != il->cmd_queue, |
| 3257 | "wrong command queue %d (should be %d), sequence 0x%X readp=%d writep=%d\n", |
| 3258 | txq_id, il->cmd_queue, sequence, il->txq[il->cmd_queue].q.read_ptr, |
| 3259 | il->txq[il->cmd_queue].q.write_ptr)) { |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3260 | il_print_hex_error(il, pkt, 32); |
| 3261 | return; |
| 3262 | } |
| 3263 | |
| 3264 | cmd_idx = il_get_cmd_idx(&txq->q, idx, huge); |
| 3265 | cmd = txq->cmd[cmd_idx]; |
| 3266 | meta = &txq->meta[cmd_idx]; |
| 3267 | |
| 3268 | txq->time_stamp = jiffies; |
| 3269 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3270 | pci_unmap_single(il->pci_dev, dma_unmap_addr(meta, mapping), |
| 3271 | dma_unmap_len(meta, len), PCI_DMA_BIDIRECTIONAL); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3272 | |
| 3273 | /* Input error checking is done when commands are added to queue. */ |
| 3274 | if (meta->flags & CMD_WANT_SKB) { |
| 3275 | meta->source->reply_page = (unsigned long)rxb_addr(rxb); |
| 3276 | rxb->page = NULL; |
| 3277 | } else if (meta->callback) |
| 3278 | meta->callback(il, cmd, pkt); |
| 3279 | |
| 3280 | spin_lock_irqsave(&il->hcmd_lock, flags); |
| 3281 | |
| 3282 | il_hcmd_queue_reclaim(il, txq_id, idx, cmd_idx); |
| 3283 | |
| 3284 | if (!(meta->flags & CMD_ASYNC)) { |
| 3285 | clear_bit(S_HCMD_ACTIVE, &il->status); |
| 3286 | D_INFO("Clearing HCMD_ACTIVE for command %s\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3287 | il_get_cmd_string(cmd->hdr.cmd)); |
Stanislaw Gruszka | 0cdc213 | 2011-11-15 13:40:15 +0100 | [diff] [blame] | 3288 | wake_up(&il->wait_command_queue); |
| 3289 | } |
| 3290 | |
| 3291 | /* Mark as unmapped */ |
| 3292 | meta->flags = 0; |
| 3293 | |
| 3294 | spin_unlock_irqrestore(&il->hcmd_lock, flags); |
| 3295 | } |
| 3296 | EXPORT_SYMBOL(il_tx_cmd_complete); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3297 | |
| 3298 | MODULE_DESCRIPTION("iwl-legacy: common functions for 3945 and 4965"); |
| 3299 | MODULE_VERSION(IWLWIFI_VERSION); |
| 3300 | MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR); |
| 3301 | MODULE_LICENSE("GPL"); |
| 3302 | |
| 3303 | /* |
| 3304 | * set bt_coex_active to true, uCode will do kill/defer |
| 3305 | * every time the priority line is asserted (BT is sending signals on the |
| 3306 | * priority line in the PCIx). |
| 3307 | * set bt_coex_active to false, uCode will ignore the BT activity and |
| 3308 | * perform the normal operation |
| 3309 | * |
| 3310 | * User might experience transmit issue on some platform due to WiFi/BT |
| 3311 | * co-exist problem. The possible behaviors are: |
| 3312 | * Able to scan and finding all the available AP |
| 3313 | * Not able to associate with any AP |
| 3314 | * On those platforms, WiFi communication can be restored by set |
| 3315 | * "bt_coex_active" module parameter to "false" |
| 3316 | * |
| 3317 | * default: bt_coex_active = true (BT_COEX_ENABLE) |
| 3318 | */ |
John W. Linville | ef33417 | 2011-02-25 15:51:01 -0500 | [diff] [blame] | 3319 | static bool bt_coex_active = true; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3320 | module_param(bt_coex_active, bool, S_IRUGO); |
| 3321 | MODULE_PARM_DESC(bt_coex_active, "enable wifi/bluetooth co-exist"); |
| 3322 | |
Stanislaw Gruszka | d2ddf621 | 2011-08-16 14:17:04 +0200 | [diff] [blame] | 3323 | u32 il_debug_level; |
| 3324 | EXPORT_SYMBOL(il_debug_level); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3325 | |
Stanislaw Gruszka | d2ddf621 | 2011-08-16 14:17:04 +0200 | [diff] [blame] | 3326 | const u8 il_bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }; |
| 3327 | EXPORT_SYMBOL(il_bcast_addr); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3328 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3329 | /* This function both allocates and initializes hw and il. */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3330 | struct ieee80211_hw * |
| 3331 | il_alloc_all(struct il_cfg *cfg) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3332 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3333 | struct il_priv *il; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3334 | /* mac80211 allocates memory for this device instance, including |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3335 | * space for this driver's ilate structure */ |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3336 | struct ieee80211_hw *hw; |
| 3337 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3338 | hw = ieee80211_alloc_hw(sizeof(struct il_priv), |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3339 | cfg->ops->ieee80211_ops); |
| 3340 | if (hw == NULL) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3341 | pr_err("%s: Can not allocate network device\n", cfg->name); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3342 | goto out; |
| 3343 | } |
| 3344 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3345 | il = hw->priv; |
| 3346 | il->hw = hw; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3347 | |
| 3348 | out: |
| 3349 | return hw; |
| 3350 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3351 | EXPORT_SYMBOL(il_alloc_all); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3352 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3353 | #define MAX_BIT_RATE_40_MHZ 150 /* Mbps */ |
| 3354 | #define MAX_BIT_RATE_20_MHZ 72 /* Mbps */ |
| 3355 | static void |
| 3356 | il_init_ht_hw_capab(const struct il_priv *il, |
| 3357 | struct ieee80211_sta_ht_cap *ht_info, |
| 3358 | enum ieee80211_band band) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3359 | { |
| 3360 | u16 max_bit_rate = 0; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3361 | u8 rx_chains_num = il->hw_params.rx_chains_num; |
| 3362 | u8 tx_chains_num = il->hw_params.tx_chains_num; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3363 | |
| 3364 | ht_info->cap = 0; |
| 3365 | memset(&ht_info->mcs, 0, sizeof(ht_info->mcs)); |
| 3366 | |
| 3367 | ht_info->ht_supported = true; |
| 3368 | |
| 3369 | ht_info->cap |= IEEE80211_HT_CAP_SGI_20; |
| 3370 | max_bit_rate = MAX_BIT_RATE_20_MHZ; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3371 | if (il->hw_params.ht40_channel & BIT(band)) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3372 | ht_info->cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40; |
| 3373 | ht_info->cap |= IEEE80211_HT_CAP_SGI_40; |
| 3374 | ht_info->mcs.rx_mask[4] = 0x01; |
| 3375 | max_bit_rate = MAX_BIT_RATE_40_MHZ; |
| 3376 | } |
| 3377 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3378 | if (il->cfg->mod_params->amsdu_size_8K) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3379 | ht_info->cap |= IEEE80211_HT_CAP_MAX_AMSDU; |
| 3380 | |
| 3381 | ht_info->ampdu_factor = CFG_HT_RX_AMPDU_FACTOR_DEF; |
| 3382 | ht_info->ampdu_density = CFG_HT_MPDU_DENSITY_DEF; |
| 3383 | |
| 3384 | ht_info->mcs.rx_mask[0] = 0xFF; |
| 3385 | if (rx_chains_num >= 2) |
| 3386 | ht_info->mcs.rx_mask[1] = 0xFF; |
| 3387 | if (rx_chains_num >= 3) |
| 3388 | ht_info->mcs.rx_mask[2] = 0xFF; |
| 3389 | |
| 3390 | /* Highest supported Rx data rate */ |
| 3391 | max_bit_rate *= rx_chains_num; |
| 3392 | WARN_ON(max_bit_rate & ~IEEE80211_HT_MCS_RX_HIGHEST_MASK); |
| 3393 | ht_info->mcs.rx_highest = cpu_to_le16(max_bit_rate); |
| 3394 | |
| 3395 | /* Tx MCS capabilities */ |
| 3396 | ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED; |
| 3397 | if (tx_chains_num != rx_chains_num) { |
| 3398 | ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3399 | ht_info->mcs.tx_params |= |
| 3400 | ((tx_chains_num - |
| 3401 | 1) << IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3402 | } |
| 3403 | } |
| 3404 | |
| 3405 | /** |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3406 | * 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] | 3407 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3408 | int |
| 3409 | il_init_geos(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3410 | { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3411 | struct il_channel_info *ch; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3412 | struct ieee80211_supported_band *sband; |
| 3413 | struct ieee80211_channel *channels; |
| 3414 | struct ieee80211_channel *geo_ch; |
| 3415 | struct ieee80211_rate *rates; |
| 3416 | int i = 0; |
Stanislaw Gruszka | 332704a | 2011-04-13 10:56:51 +0200 | [diff] [blame] | 3417 | s8 max_tx_power = 0; |
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->bands[IEEE80211_BAND_2GHZ].n_bitrates || |
| 3420 | il->bands[IEEE80211_BAND_5GHZ].n_bitrates) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 3421 | D_INFO("Geography modes already initialized.\n"); |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 3422 | set_bit(S_GEO_CONFIGURED, &il->status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3423 | return 0; |
| 3424 | } |
| 3425 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3426 | channels = |
| 3427 | kzalloc(sizeof(struct ieee80211_channel) * il->channel_count, |
| 3428 | GFP_KERNEL); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3429 | if (!channels) |
| 3430 | return -ENOMEM; |
| 3431 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3432 | rates = |
| 3433 | kzalloc((sizeof(struct ieee80211_rate) * RATE_COUNT_LEGACY), |
| 3434 | GFP_KERNEL); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3435 | if (!rates) { |
| 3436 | kfree(channels); |
| 3437 | return -ENOMEM; |
| 3438 | } |
| 3439 | |
| 3440 | /* 5.2GHz channels start after the 2.4GHz channels */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3441 | sband = &il->bands[IEEE80211_BAND_5GHZ]; |
Stanislaw Gruszka | d2ddf621 | 2011-08-16 14:17:04 +0200 | [diff] [blame] | 3442 | sband->channels = &channels[ARRAY_SIZE(il_eeprom_band_1)]; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3443 | /* just OFDM */ |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3444 | sband->bitrates = &rates[IL_FIRST_OFDM_RATE]; |
Stanislaw Gruszka | 2eb0581 | 2011-08-26 16:07:43 +0200 | [diff] [blame] | 3445 | sband->n_bitrates = RATE_COUNT_LEGACY - IL_FIRST_OFDM_RATE; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3446 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3447 | if (il->cfg->sku & IL_SKU_N) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3448 | 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] | 3449 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3450 | sband = &il->bands[IEEE80211_BAND_2GHZ]; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3451 | sband->channels = channels; |
| 3452 | /* OFDM & CCK */ |
| 3453 | sband->bitrates = rates; |
Stanislaw Gruszka | 2eb0581 | 2011-08-26 16:07:43 +0200 | [diff] [blame] | 3454 | sband->n_bitrates = RATE_COUNT_LEGACY; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3455 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3456 | if (il->cfg->sku & IL_SKU_N) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3457 | 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] | 3458 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3459 | il->ieee_channels = channels; |
| 3460 | il->ieee_rates = rates; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3461 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3462 | for (i = 0; i < il->channel_count; i++) { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3463 | ch = &il->channel_info[i]; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3464 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3465 | if (!il_is_channel_valid(ch)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3466 | continue; |
| 3467 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3468 | sband = &il->bands[ch->band]; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3469 | |
| 3470 | geo_ch = &sband->channels[sband->n_channels++]; |
| 3471 | |
| 3472 | geo_ch->center_freq = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3473 | ieee80211_channel_to_frequency(ch->channel, ch->band); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3474 | geo_ch->max_power = ch->max_power_avg; |
| 3475 | geo_ch->max_antenna_gain = 0xff; |
| 3476 | geo_ch->hw_value = ch->channel; |
| 3477 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3478 | if (il_is_channel_valid(ch)) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3479 | if (!(ch->flags & EEPROM_CHANNEL_IBSS)) |
| 3480 | geo_ch->flags |= IEEE80211_CHAN_NO_IBSS; |
| 3481 | |
| 3482 | if (!(ch->flags & EEPROM_CHANNEL_ACTIVE)) |
| 3483 | geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN; |
| 3484 | |
| 3485 | if (ch->flags & EEPROM_CHANNEL_RADAR) |
| 3486 | geo_ch->flags |= IEEE80211_CHAN_RADAR; |
| 3487 | |
| 3488 | geo_ch->flags |= ch->ht40_extension_channel; |
| 3489 | |
Stanislaw Gruszka | 332704a | 2011-04-13 10:56:51 +0200 | [diff] [blame] | 3490 | if (ch->max_power_avg > max_tx_power) |
| 3491 | max_tx_power = ch->max_power_avg; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3492 | } else { |
| 3493 | geo_ch->flags |= IEEE80211_CHAN_DISABLED; |
| 3494 | } |
| 3495 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3496 | D_INFO("Channel %d Freq=%d[%sGHz] %s flag=0x%X\n", ch->channel, |
| 3497 | geo_ch->center_freq, |
| 3498 | il_is_channel_a_band(ch) ? "5.2" : "2.4", |
| 3499 | geo_ch-> |
| 3500 | flags & IEEE80211_CHAN_DISABLED ? "restricted" : "valid", |
| 3501 | geo_ch->flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3502 | } |
| 3503 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3504 | il->tx_power_device_lmt = max_tx_power; |
| 3505 | il->tx_power_user_lmt = max_tx_power; |
| 3506 | il->tx_power_next = max_tx_power; |
Stanislaw Gruszka | 332704a | 2011-04-13 10:56:51 +0200 | [diff] [blame] | 3507 | |
Stanislaw Gruszka | 232913b | 2011-08-26 10:45:16 +0200 | [diff] [blame] | 3508 | if (il->bands[IEEE80211_BAND_5GHZ].n_channels == 0 && |
| 3509 | (il->cfg->sku & IL_SKU_A)) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3510 | IL_INFO("Incorrectly detected BG card as ABG. " |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3511 | "Please send your PCI ID 0x%04X:0x%04X to maintainer.\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3512 | il->pci_dev->device, il->pci_dev->subsystem_device); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3513 | il->cfg->sku &= ~IL_SKU_A; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3514 | } |
| 3515 | |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3516 | IL_INFO("Tunable channels: %d 802.11bg, %d 802.11a channels\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3517 | il->bands[IEEE80211_BAND_2GHZ].n_channels, |
| 3518 | il->bands[IEEE80211_BAND_5GHZ].n_channels); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3519 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 3520 | set_bit(S_GEO_CONFIGURED, &il->status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3521 | |
| 3522 | return 0; |
| 3523 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3524 | EXPORT_SYMBOL(il_init_geos); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3525 | |
| 3526 | /* |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3527 | * il_free_geos - undo allocations in il_init_geos |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3528 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3529 | void |
| 3530 | il_free_geos(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3531 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3532 | kfree(il->ieee_channels); |
| 3533 | kfree(il->ieee_rates); |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 3534 | clear_bit(S_GEO_CONFIGURED, &il->status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3535 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3536 | EXPORT_SYMBOL(il_free_geos); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3537 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3538 | static bool |
| 3539 | il_is_channel_extension(struct il_priv *il, enum ieee80211_band band, |
| 3540 | u16 channel, u8 extension_chan_offset) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3541 | { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3542 | const struct il_channel_info *ch_info; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3543 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3544 | ch_info = il_get_channel_info(il, band, channel); |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3545 | if (!il_is_channel_valid(ch_info)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3546 | return false; |
| 3547 | |
| 3548 | if (extension_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_ABOVE) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3549 | return !(ch_info-> |
| 3550 | ht40_extension_channel & IEEE80211_CHAN_NO_HT40PLUS); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3551 | else if (extension_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_BELOW) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3552 | return !(ch_info-> |
| 3553 | ht40_extension_channel & IEEE80211_CHAN_NO_HT40MINUS); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3554 | |
| 3555 | return false; |
| 3556 | } |
| 3557 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3558 | bool |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 3559 | il_is_ht40_tx_allowed(struct il_priv *il, struct il_rxon_context *ctx, |
| 3560 | struct ieee80211_sta_ht_cap *ht_cap) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3561 | { |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 3562 | if (!il->ht.enabled || !il->ht.is_40mhz) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3563 | return false; |
| 3564 | |
| 3565 | /* |
| 3566 | * We do not check for IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
| 3567 | * the bit will not set if it is pure 40MHz case |
| 3568 | */ |
| 3569 | if (ht_cap && !ht_cap->ht_supported) |
| 3570 | return false; |
| 3571 | |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 3572 | #ifdef CONFIG_IWLEGACY_DEBUGFS |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3573 | if (il->disable_ht40) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3574 | return false; |
| 3575 | #endif |
| 3576 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3577 | return il_is_channel_extension(il, il->band, |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3578 | le16_to_cpu(il->staging.channel), |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 3579 | il->ht.extension_chan_offset); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3580 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3581 | EXPORT_SYMBOL(il_is_ht40_tx_allowed); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3582 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3583 | static u16 |
| 3584 | il_adjust_beacon_interval(u16 beacon_val, u16 max_beacon_val) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3585 | { |
| 3586 | u16 new_val; |
| 3587 | u16 beacon_factor; |
| 3588 | |
| 3589 | /* |
| 3590 | * If mac80211 hasn't given us a beacon interval, program |
| 3591 | * the default into the device. |
| 3592 | */ |
| 3593 | if (!beacon_val) |
| 3594 | return DEFAULT_BEACON_INTERVAL; |
| 3595 | |
| 3596 | /* |
| 3597 | * If the beacon interval we obtained from the peer |
| 3598 | * is too large, we'll have to wake up more often |
| 3599 | * (and in IBSS case, we'll beacon too much) |
| 3600 | * |
| 3601 | * For example, if max_beacon_val is 4096, and the |
| 3602 | * requested beacon interval is 7000, we'll have to |
| 3603 | * use 3500 to be able to wake up on the beacons. |
| 3604 | * |
| 3605 | * This could badly influence beacon detection stats. |
| 3606 | */ |
| 3607 | |
| 3608 | beacon_factor = (beacon_val + max_beacon_val) / max_beacon_val; |
| 3609 | new_val = beacon_val / beacon_factor; |
| 3610 | |
| 3611 | if (!new_val) |
| 3612 | new_val = max_beacon_val; |
| 3613 | |
| 3614 | return new_val; |
| 3615 | } |
| 3616 | |
| 3617 | int |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3618 | il_send_rxon_timing(struct il_priv *il, struct il_rxon_context *ctx) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3619 | { |
| 3620 | u64 tsf; |
| 3621 | s32 interval_tm, rem; |
| 3622 | struct ieee80211_conf *conf = NULL; |
| 3623 | u16 beacon_int; |
| 3624 | struct ieee80211_vif *vif = ctx->vif; |
| 3625 | |
Stanislaw Gruszka | 6278dda | 2011-08-31 11:13:05 +0200 | [diff] [blame] | 3626 | conf = &il->hw->conf; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3627 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3628 | lockdep_assert_held(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3629 | |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3630 | memset(&il->timing, 0, sizeof(struct il_rxon_time_cmd)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3631 | |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3632 | il->timing.timestamp = cpu_to_le64(il->timestamp); |
| 3633 | il->timing.listen_interval = cpu_to_le16(conf->listen_interval); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3634 | |
| 3635 | beacon_int = vif ? vif->bss_conf.beacon_int : 0; |
| 3636 | |
| 3637 | /* |
Stanislaw Gruszka | 6ce1dc4 | 2011-08-26 15:49:28 +0200 | [diff] [blame] | 3638 | * TODO: For IBSS we need to get atim_win from mac80211, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3639 | * for now just always use 0 |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3640 | */ |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3641 | il->timing.atim_win = 0; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3642 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3643 | beacon_int = |
| 3644 | il_adjust_beacon_interval(beacon_int, |
| 3645 | il->hw_params.max_beacon_itrvl * |
| 3646 | TIME_UNIT); |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3647 | il->timing.beacon_interval = cpu_to_le16(beacon_int); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3648 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3649 | tsf = il->timestamp; /* tsf is modifed by do_div: copy it */ |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3650 | interval_tm = beacon_int * TIME_UNIT; |
| 3651 | rem = do_div(tsf, interval_tm); |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3652 | il->timing.beacon_init_val = cpu_to_le32(interval_tm - rem); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3653 | |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3654 | 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] | 3655 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3656 | D_ASSOC("beacon interval %d beacon timer %d beacon tim %d\n", |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3657 | le16_to_cpu(il->timing.beacon_interval), |
| 3658 | le32_to_cpu(il->timing.beacon_init_val), |
| 3659 | le16_to_cpu(il->timing.atim_win)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3660 | |
Stanislaw Gruszka | 63d0f0c | 2012-02-03 17:31:39 +0100 | [diff] [blame] | 3661 | return il_send_cmd_pdu(il, C_RXON_TIMING, sizeof(il->timing), |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3662 | &il->timing); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3663 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3664 | EXPORT_SYMBOL(il_send_rxon_timing); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3665 | |
| 3666 | void |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3667 | il_set_rxon_hwcrypto(struct il_priv *il, struct il_rxon_context *ctx, |
| 3668 | int hw_decrypt) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3669 | { |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3670 | struct il_rxon_cmd *rxon = &il->staging; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3671 | |
| 3672 | if (hw_decrypt) |
| 3673 | rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK; |
| 3674 | else |
| 3675 | rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK; |
| 3676 | |
| 3677 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3678 | EXPORT_SYMBOL(il_set_rxon_hwcrypto); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3679 | |
| 3680 | /* validate RXON structure is valid */ |
| 3681 | int |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3682 | il_check_rxon_cmd(struct il_priv *il, struct il_rxon_context *ctx) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3683 | { |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3684 | struct il_rxon_cmd *rxon = &il->staging; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3685 | bool error = false; |
| 3686 | |
| 3687 | if (rxon->flags & RXON_FLG_BAND_24G_MSK) { |
| 3688 | if (rxon->flags & RXON_FLG_TGJ_NARROW_BAND_MSK) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3689 | IL_WARN("check 2.4G: wrong narrow\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3690 | error = true; |
| 3691 | } |
| 3692 | if (rxon->flags & RXON_FLG_RADAR_DETECT_MSK) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3693 | IL_WARN("check 2.4G: wrong radar\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3694 | error = true; |
| 3695 | } |
| 3696 | } else { |
| 3697 | if (!(rxon->flags & RXON_FLG_SHORT_SLOT_MSK)) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3698 | IL_WARN("check 5.2G: not short slot!\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3699 | error = true; |
| 3700 | } |
| 3701 | if (rxon->flags & RXON_FLG_CCK_MSK) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3702 | IL_WARN("check 5.2G: CCK!\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3703 | error = true; |
| 3704 | } |
| 3705 | } |
| 3706 | if ((rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3707 | IL_WARN("mac/bssid mcast!\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3708 | error = true; |
| 3709 | } |
| 3710 | |
| 3711 | /* make sure basic rates 6Mbps and 1Mbps are supported */ |
Stanislaw Gruszka | 2eb0581 | 2011-08-26 16:07:43 +0200 | [diff] [blame] | 3712 | if ((rxon->ofdm_basic_rates & RATE_6M_MASK) == 0 && |
| 3713 | (rxon->cck_basic_rates & RATE_1M_MASK) == 0) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3714 | IL_WARN("neither 1 nor 6 are basic\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3715 | error = true; |
| 3716 | } |
| 3717 | |
| 3718 | if (le16_to_cpu(rxon->assoc_id) > 2007) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3719 | IL_WARN("aid > 2007\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3720 | error = true; |
| 3721 | } |
| 3722 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3723 | if ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK)) == |
| 3724 | (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK)) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3725 | IL_WARN("CCK and short slot\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3726 | error = true; |
| 3727 | } |
| 3728 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3729 | if ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK)) == |
| 3730 | (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK)) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3731 | IL_WARN("CCK and auto detect"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3732 | error = true; |
| 3733 | } |
| 3734 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3735 | if ((rxon-> |
| 3736 | flags & (RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK)) == |
| 3737 | RXON_FLG_TGG_PROTECT_MSK) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3738 | IL_WARN("TGg but no auto-detect\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3739 | error = true; |
| 3740 | } |
| 3741 | |
| 3742 | if (error) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3743 | 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] | 3744 | |
| 3745 | if (error) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 3746 | IL_ERR("Invalid RXON\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3747 | return -EINVAL; |
| 3748 | } |
| 3749 | return 0; |
| 3750 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3751 | EXPORT_SYMBOL(il_check_rxon_cmd); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3752 | |
| 3753 | /** |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3754 | * 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] | 3755 | * @il: staging_rxon is compared to active_rxon |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3756 | * |
| 3757 | * If the RXON structure is changing enough to require a new tune, |
| 3758 | * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that |
| 3759 | * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required. |
| 3760 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3761 | int |
| 3762 | il_full_rxon_required(struct il_priv *il, struct il_rxon_context *ctx) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3763 | { |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3764 | const struct il_rxon_cmd *staging = &il->staging; |
| 3765 | const struct il_rxon_cmd *active = &il->active; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3766 | |
| 3767 | #define CHK(cond) \ |
| 3768 | if ((cond)) { \ |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 3769 | D_INFO("need full RXON - " #cond "\n"); \ |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3770 | return 1; \ |
| 3771 | } |
| 3772 | |
| 3773 | #define CHK_NEQ(c1, c2) \ |
| 3774 | if ((c1) != (c2)) { \ |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 3775 | D_INFO("need full RXON - " \ |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3776 | #c1 " != " #c2 " - %d != %d\n", \ |
| 3777 | (c1), (c2)); \ |
| 3778 | return 1; \ |
| 3779 | } |
| 3780 | |
| 3781 | /* These items are only settable from the full RXON command */ |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3782 | CHK(!il_is_associated(il)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3783 | CHK(compare_ether_addr(staging->bssid_addr, active->bssid_addr)); |
| 3784 | CHK(compare_ether_addr(staging->node_addr, active->node_addr)); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3785 | CHK(compare_ether_addr |
| 3786 | (staging->wlap_bssid_addr, active->wlap_bssid_addr)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3787 | CHK_NEQ(staging->dev_type, active->dev_type); |
| 3788 | CHK_NEQ(staging->channel, active->channel); |
| 3789 | CHK_NEQ(staging->air_propagation, active->air_propagation); |
| 3790 | CHK_NEQ(staging->ofdm_ht_single_stream_basic_rates, |
| 3791 | active->ofdm_ht_single_stream_basic_rates); |
| 3792 | CHK_NEQ(staging->ofdm_ht_dual_stream_basic_rates, |
| 3793 | active->ofdm_ht_dual_stream_basic_rates); |
| 3794 | CHK_NEQ(staging->assoc_id, active->assoc_id); |
| 3795 | |
| 3796 | /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can |
| 3797 | * be updated with the RXON_ASSOC command -- however only some |
| 3798 | * flag transitions are allowed using RXON_ASSOC */ |
| 3799 | |
| 3800 | /* Check if we are not switching bands */ |
| 3801 | CHK_NEQ(staging->flags & RXON_FLG_BAND_24G_MSK, |
| 3802 | active->flags & RXON_FLG_BAND_24G_MSK); |
| 3803 | |
| 3804 | /* Check if we are switching association toggle */ |
| 3805 | CHK_NEQ(staging->filter_flags & RXON_FILTER_ASSOC_MSK, |
| 3806 | active->filter_flags & RXON_FILTER_ASSOC_MSK); |
| 3807 | |
| 3808 | #undef CHK |
| 3809 | #undef CHK_NEQ |
| 3810 | |
| 3811 | return 0; |
| 3812 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3813 | EXPORT_SYMBOL(il_full_rxon_required); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3814 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3815 | u8 |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 3816 | il_get_lowest_plcp(struct il_priv *il, struct il_rxon_context *ctx) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3817 | { |
| 3818 | /* |
| 3819 | * Assign the lowest rate -- should really get this from |
| 3820 | * the beacon skb from mac80211. |
| 3821 | */ |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3822 | if (il->staging.flags & RXON_FLG_BAND_24G_MSK) |
Stanislaw Gruszka | 2eb0581 | 2011-08-26 16:07:43 +0200 | [diff] [blame] | 3823 | return RATE_1M_PLCP; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3824 | else |
Stanislaw Gruszka | 2eb0581 | 2011-08-26 16:07:43 +0200 | [diff] [blame] | 3825 | return RATE_6M_PLCP; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3826 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3827 | EXPORT_SYMBOL(il_get_lowest_plcp); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3828 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3829 | static void |
| 3830 | _il_set_rxon_ht(struct il_priv *il, struct il_ht_config *ht_conf, |
| 3831 | struct il_rxon_context *ctx) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3832 | { |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3833 | struct il_rxon_cmd *rxon = &il->staging; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3834 | |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 3835 | if (!il->ht.enabled) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3836 | rxon->flags &= |
| 3837 | ~(RXON_FLG_CHANNEL_MODE_MSK | |
| 3838 | RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK | RXON_FLG_HT40_PROT_MSK |
| 3839 | | RXON_FLG_HT_PROT_MSK); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3840 | return; |
| 3841 | } |
| 3842 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3843 | rxon->flags |= |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 3844 | 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] | 3845 | |
| 3846 | /* Set up channel bandwidth: |
| 3847 | * 20 MHz only, 20/40 mixed or pure 40 if ht40 ok */ |
| 3848 | /* clear the HT channel mode before set the mode */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3849 | rxon->flags &= |
| 3850 | ~(RXON_FLG_CHANNEL_MODE_MSK | RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3851 | if (il_is_ht40_tx_allowed(il, ctx, NULL)) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3852 | /* pure ht40 */ |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 3853 | if (il->ht.protection == IEEE80211_HT_OP_MODE_PROTECTION_20MHZ) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3854 | rxon->flags |= RXON_FLG_CHANNEL_MODE_PURE_40; |
| 3855 | /* Note: control channel is opposite of extension channel */ |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 3856 | switch (il->ht.extension_chan_offset) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3857 | case IEEE80211_HT_PARAM_CHA_SEC_ABOVE: |
| 3858 | rxon->flags &= |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3859 | ~RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3860 | break; |
| 3861 | case IEEE80211_HT_PARAM_CHA_SEC_BELOW: |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3862 | rxon->flags |= RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3863 | break; |
| 3864 | } |
| 3865 | } else { |
| 3866 | /* Note: control channel is opposite of extension channel */ |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 3867 | switch (il->ht.extension_chan_offset) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3868 | case IEEE80211_HT_PARAM_CHA_SEC_ABOVE: |
| 3869 | rxon->flags &= |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3870 | ~(RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3871 | rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED; |
| 3872 | break; |
| 3873 | case IEEE80211_HT_PARAM_CHA_SEC_BELOW: |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3874 | rxon->flags |= RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3875 | rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED; |
| 3876 | break; |
| 3877 | case IEEE80211_HT_PARAM_CHA_SEC_NONE: |
| 3878 | default: |
| 3879 | /* channel location only valid if in Mixed mode */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3880 | IL_ERR("invalid extension channel offset\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3881 | break; |
| 3882 | } |
| 3883 | } |
| 3884 | } else { |
| 3885 | rxon->flags |= RXON_FLG_CHANNEL_MODE_LEGACY; |
| 3886 | } |
| 3887 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3888 | if (il->cfg->ops->hcmd->set_rxon_chain) |
| 3889 | il->cfg->ops->hcmd->set_rxon_chain(il, ctx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3890 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 3891 | D_ASSOC("rxon flags 0x%X operation mode :0x%X " |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3892 | "extension channel offset 0x%x\n", le32_to_cpu(rxon->flags), |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 3893 | il->ht.protection, il->ht.extension_chan_offset); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3894 | } |
| 3895 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3896 | void |
| 3897 | 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] | 3898 | { |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 3899 | _il_set_rxon_ht(il, ht_conf, &il->ctx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3900 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3901 | EXPORT_SYMBOL(il_set_rxon_ht); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3902 | |
| 3903 | /* Return valid, unused, channel for a passive scan to reset the RF */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3904 | u8 |
| 3905 | 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] | 3906 | { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3907 | const struct il_channel_info *ch_info; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3908 | int i; |
| 3909 | u8 channel = 0; |
| 3910 | u8 min, max; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3911 | |
| 3912 | if (band == IEEE80211_BAND_5GHZ) { |
| 3913 | min = 14; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3914 | max = il->channel_count; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3915 | } else { |
| 3916 | min = 0; |
| 3917 | max = 14; |
| 3918 | } |
| 3919 | |
| 3920 | for (i = min; i < max; i++) { |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 3921 | channel = il->channel_info[i].channel; |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3922 | if (channel == le16_to_cpu(il->staging.channel)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3923 | continue; |
| 3924 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3925 | ch_info = il_get_channel_info(il, band, channel); |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3926 | if (il_is_channel_valid(ch_info)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3927 | break; |
| 3928 | } |
| 3929 | |
| 3930 | return channel; |
| 3931 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3932 | EXPORT_SYMBOL(il_get_single_channel_number); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3933 | |
| 3934 | /** |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3935 | * 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] | 3936 | * @ch: requested channel as a pointer to struct ieee80211_channel |
| 3937 | |
| 3938 | * NOTE: Does not commit to the hardware; it sets appropriate bit fields |
| 3939 | * in the staging RXON flag structure based on the ch->band |
| 3940 | */ |
| 3941 | int |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3942 | il_set_rxon_channel(struct il_priv *il, struct ieee80211_channel *ch, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3943 | struct il_rxon_context *ctx) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3944 | { |
| 3945 | enum ieee80211_band band = ch->band; |
| 3946 | u16 channel = ch->hw_value; |
| 3947 | |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3948 | if (le16_to_cpu(il->staging.channel) == channel && il->band == band) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3949 | return 0; |
| 3950 | |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3951 | il->staging.channel = cpu_to_le16(channel); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3952 | if (band == IEEE80211_BAND_5GHZ) |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3953 | il->staging.flags &= ~RXON_FLG_BAND_24G_MSK; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3954 | else |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3955 | il->staging.flags |= RXON_FLG_BAND_24G_MSK; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3956 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 3957 | il->band = band; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3958 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 3959 | D_INFO("Staging channel set to %d [%d]\n", channel, band); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3960 | |
| 3961 | return 0; |
| 3962 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3963 | EXPORT_SYMBOL(il_set_rxon_channel); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3964 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3965 | void |
| 3966 | il_set_flags_for_band(struct il_priv *il, struct il_rxon_context *ctx, |
| 3967 | enum ieee80211_band band, struct ieee80211_vif *vif) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3968 | { |
| 3969 | if (band == IEEE80211_BAND_5GHZ) { |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3970 | il->staging.flags &= |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3971 | ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK | |
| 3972 | RXON_FLG_CCK_MSK); |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3973 | il->staging.flags |= RXON_FLG_SHORT_SLOT_MSK; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3974 | } else { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3975 | /* Copied from il_post_associate() */ |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3976 | if (vif && vif->bss_conf.use_short_slot) |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3977 | il->staging.flags |= RXON_FLG_SHORT_SLOT_MSK; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3978 | else |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3979 | il->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3980 | |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3981 | il->staging.flags |= RXON_FLG_BAND_24G_MSK; |
| 3982 | il->staging.flags |= RXON_FLG_AUTO_DETECT_MSK; |
| 3983 | il->staging.flags &= ~RXON_FLG_CCK_MSK; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3984 | } |
| 3985 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3986 | EXPORT_SYMBOL(il_set_flags_for_band); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3987 | |
| 3988 | /* |
| 3989 | * initialize rxon structure with default values from eeprom |
| 3990 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 3991 | void |
| 3992 | il_connection_init_rx_config(struct il_priv *il, struct il_rxon_context *ctx) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3993 | { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 3994 | const struct il_channel_info *ch_info; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3995 | |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 3996 | memset(&il->staging, 0, sizeof(il->staging)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 3997 | |
| 3998 | if (!ctx->vif) { |
Stanislaw Gruszka | 0f8b90f | 2012-02-03 17:31:45 +0100 | [diff] [blame] | 3999 | il->staging.dev_type = RXON_DEV_TYPE_ESS; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4000 | } else |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4001 | switch (ctx->vif->type) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4002 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4003 | case NL80211_IFTYPE_STATION: |
Stanislaw Gruszka | 0f8b90f | 2012-02-03 17:31:45 +0100 | [diff] [blame] | 4004 | il->staging.dev_type = RXON_DEV_TYPE_ESS; |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4005 | il->staging.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4006 | break; |
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 | case NL80211_IFTYPE_ADHOC: |
Stanislaw Gruszka | 0f8b90f | 2012-02-03 17:31:45 +0100 | [diff] [blame] | 4009 | il->staging.dev_type = RXON_DEV_TYPE_IBSS; |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4010 | il->staging.flags = RXON_FLG_SHORT_PREAMBLE_MSK; |
| 4011 | il->staging.filter_flags = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4012 | RXON_FILTER_BCON_AWARE_MSK | |
| 4013 | RXON_FILTER_ACCEPT_GRP_MSK; |
| 4014 | break; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4015 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4016 | default: |
| 4017 | IL_ERR("Unsupported interface type %d\n", |
| 4018 | ctx->vif->type); |
| 4019 | break; |
| 4020 | } |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4021 | |
| 4022 | #if 0 |
| 4023 | /* TODO: Figure out when short_preamble would be set and cache from |
| 4024 | * that */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4025 | if (!hw_to_local(il->hw)->short_preamble) |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4026 | il->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4027 | else |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4028 | il->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4029 | #endif |
| 4030 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4031 | ch_info = |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4032 | 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] | 4033 | |
| 4034 | if (!ch_info) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4035 | ch_info = &il->channel_info[0]; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4036 | |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4037 | il->staging.channel = cpu_to_le16(ch_info->channel); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4038 | il->band = ch_info->band; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4039 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4040 | il_set_flags_for_band(il, ctx, il->band, ctx->vif); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4041 | |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4042 | il->staging.ofdm_basic_rates = |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4043 | (IL_OFDM_RATES_MASK >> IL_FIRST_OFDM_RATE) & 0xFF; |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4044 | il->staging.cck_basic_rates = |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4045 | (IL_CCK_RATES_MASK >> IL_FIRST_CCK_RATE) & 0xF; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4046 | |
| 4047 | /* clear both MIX and PURE40 mode flag */ |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4048 | il->staging.flags &= |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4049 | ~(RXON_FLG_CHANNEL_MODE_MIXED | RXON_FLG_CHANNEL_MODE_PURE_40); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4050 | if (ctx->vif) |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4051 | memcpy(il->staging.node_addr, ctx->vif->addr, ETH_ALEN); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4052 | |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4053 | il->staging.ofdm_ht_single_stream_basic_rates = 0xff; |
| 4054 | il->staging.ofdm_ht_dual_stream_basic_rates = 0xff; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4055 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4056 | EXPORT_SYMBOL(il_connection_init_rx_config); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4057 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4058 | void |
| 4059 | il_set_rate(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4060 | { |
| 4061 | const struct ieee80211_supported_band *hw = NULL; |
| 4062 | struct ieee80211_rate *rate; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4063 | int i; |
| 4064 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4065 | hw = il_get_hw_mode(il, il->band); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4066 | if (!hw) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4067 | 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] | 4068 | return; |
| 4069 | } |
| 4070 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4071 | il->active_rate = 0; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4072 | |
| 4073 | for (i = 0; i < hw->n_bitrates; i++) { |
| 4074 | rate = &(hw->bitrates[i]); |
Stanislaw Gruszka | 2eb0581 | 2011-08-26 16:07:43 +0200 | [diff] [blame] | 4075 | if (rate->hw_value < RATE_COUNT_LEGACY) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4076 | il->active_rate |= (1 << rate->hw_value); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4077 | } |
| 4078 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4079 | D_RATE("Set active_rate = %0x\n", il->active_rate); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4080 | |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4081 | il->staging.cck_basic_rates = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4082 | (IL_CCK_BASIC_RATES_MASK >> IL_FIRST_CCK_RATE) & 0xF; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4083 | |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4084 | il->staging.ofdm_basic_rates = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4085 | (IL_OFDM_BASIC_RATES_MASK >> IL_FIRST_OFDM_RATE) & 0xFF; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4086 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4087 | EXPORT_SYMBOL(il_set_rate); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4088 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4089 | void |
| 4090 | il_chswitch_done(struct il_priv *il, bool is_success) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4091 | { |
Stanislaw Gruszka | 7c2cde2 | 2011-11-15 11:29:04 +0100 | [diff] [blame] | 4092 | struct il_rxon_context *ctx = &il->ctx; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4093 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4094 | if (test_bit(S_EXIT_PENDING, &il->status)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4095 | return; |
| 4096 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4097 | if (test_and_clear_bit(S_CHANNEL_SWITCH_PENDING, &il->status)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4098 | ieee80211_chswitch_done(ctx->vif, is_success); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4099 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4100 | EXPORT_SYMBOL(il_chswitch_done); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4101 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4102 | void |
| 4103 | 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] | 4104 | { |
Stanislaw Gruszka | dcae1c6 | 2011-08-26 14:36:21 +0200 | [diff] [blame] | 4105 | struct il_rx_pkt *pkt = rxb_addr(rxb); |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4106 | struct il_csa_notification *csa = &(pkt->u.csa_notif); |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4107 | struct il_rxon_cmd *rxon = (void *)&il->active; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4108 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4109 | if (!test_bit(S_CHANNEL_SWITCH_PENDING, &il->status)) |
Stanislaw Gruszka | 51e6525 | 2011-06-08 15:26:31 +0200 | [diff] [blame] | 4110 | return; |
| 4111 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4112 | if (!le32_to_cpu(csa->status) && csa->channel == il->switch_channel) { |
Stanislaw Gruszka | 51e6525 | 2011-06-08 15:26:31 +0200 | [diff] [blame] | 4113 | rxon->channel = csa->channel; |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4114 | il->staging.channel = csa->channel; |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4115 | D_11H("CSA notif: channel %d\n", le16_to_cpu(csa->channel)); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4116 | il_chswitch_done(il, true); |
Stanislaw Gruszka | 51e6525 | 2011-06-08 15:26:31 +0200 | [diff] [blame] | 4117 | } else { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4118 | IL_ERR("CSA notif (fail) : channel %d\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4119 | le16_to_cpu(csa->channel)); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4120 | il_chswitch_done(il, false); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4121 | } |
| 4122 | } |
Stanislaw Gruszka | d2dfb33 | 2011-11-15 13:16:38 +0100 | [diff] [blame] | 4123 | EXPORT_SYMBOL(il_hdl_csa); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4124 | |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4125 | #ifdef CONFIG_IWLEGACY_DEBUG |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4126 | void |
| 4127 | il_print_rx_config_cmd(struct il_priv *il, struct il_rxon_context *ctx) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4128 | { |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4129 | struct il_rxon_cmd *rxon = &il->staging; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4130 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4131 | D_RADIO("RX CONFIG:\n"); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4132 | il_print_hex_dump(il, IL_DL_RADIO, (u8 *) rxon, sizeof(*rxon)); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4133 | D_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel)); |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4134 | D_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags)); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4135 | 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] | 4136 | D_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4137 | D_RADIO("u8 ofdm_basic_rates: 0x%02x\n", rxon->ofdm_basic_rates); |
| 4138 | 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] | 4139 | D_RADIO("u8[6] node_addr: %pM\n", rxon->node_addr); |
| 4140 | D_RADIO("u8[6] bssid_addr: %pM\n", rxon->bssid_addr); |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4141 | 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] | 4142 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4143 | EXPORT_SYMBOL(il_print_rx_config_cmd); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4144 | #endif |
| 4145 | /** |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4146 | * 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] | 4147 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4148 | void |
| 4149 | il_irq_handle_error(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4150 | { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4151 | /* Set the FW error flag -- cleared on il_down */ |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4152 | set_bit(S_FW_ERROR, &il->status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4153 | |
| 4154 | /* Cancel currently queued command. */ |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4155 | clear_bit(S_HCMD_ACTIVE, &il->status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4156 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4157 | 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] | 4158 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4159 | il->cfg->ops->lib->dump_nic_error_log(il); |
| 4160 | if (il->cfg->ops->lib->dump_fh) |
| 4161 | il->cfg->ops->lib->dump_fh(il, NULL, false); |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4162 | #ifdef CONFIG_IWLEGACY_DEBUG |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4163 | if (il_get_debug_level(il) & IL_DL_FW_ERRORS) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4164 | il_print_rx_config_cmd(il, &il->ctx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4165 | #endif |
| 4166 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4167 | wake_up(&il->wait_command_queue); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4168 | |
| 4169 | /* Keep the restart process from trying to send host |
| 4170 | * commands by clearing the INIT status bit */ |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4171 | clear_bit(S_READY, &il->status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4172 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4173 | if (!test_bit(S_EXIT_PENDING, &il->status)) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4174 | IL_DBG(IL_DL_FW_ERRORS, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4175 | "Restarting adapter due to uCode error.\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4176 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4177 | if (il->cfg->mod_params->restart_fw) |
| 4178 | queue_work(il->workqueue, &il->restart); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4179 | } |
| 4180 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4181 | EXPORT_SYMBOL(il_irq_handle_error); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4182 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4183 | static int |
| 4184 | il_apm_stop_master(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4185 | { |
| 4186 | int ret = 0; |
| 4187 | |
| 4188 | /* stop device's busmaster DMA activity */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4189 | 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] | 4190 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4191 | ret = |
| 4192 | _il_poll_bit(il, CSR_RESET, CSR_RESET_REG_FLAG_MASTER_DISABLED, |
| 4193 | CSR_RESET_REG_FLAG_MASTER_DISABLED, 100); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4194 | if (ret) |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4195 | IL_WARN("Master Disable Timed Out, 100 usec\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4196 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4197 | D_INFO("stop master\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4198 | |
| 4199 | return ret; |
| 4200 | } |
| 4201 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4202 | void |
| 4203 | il_apm_stop(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4204 | { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4205 | D_INFO("Stop card, put in low power state\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4206 | |
| 4207 | /* Stop device's DMA activity */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4208 | il_apm_stop_master(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4209 | |
| 4210 | /* Reset the entire device */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4211 | 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] | 4212 | |
| 4213 | udelay(10); |
| 4214 | |
| 4215 | /* |
| 4216 | * Clear "initialization complete" bit to move adapter from |
| 4217 | * D0A* (powered-up Active) --> D0U* (Uninitialized) state. |
| 4218 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4219 | 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] | 4220 | } |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4221 | EXPORT_SYMBOL(il_apm_stop); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4222 | |
| 4223 | /* |
| 4224 | * Start up NIC's basic functionality after it has been reset |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4225 | * (e.g. after platform boot, or shutdown via il_apm_stop()) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4226 | * NOTE: This does not load uCode nor start the embedded processor |
| 4227 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4228 | int |
| 4229 | il_apm_init(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4230 | { |
| 4231 | int ret = 0; |
| 4232 | u16 lctl; |
| 4233 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4234 | D_INFO("Init card's basic functions\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4235 | |
| 4236 | /* |
| 4237 | * Use "set_bit" below rather than "write", to preserve any hardware |
| 4238 | * bits already set by default after reset. |
| 4239 | */ |
| 4240 | |
| 4241 | /* Disable L0S exit timer (platform NMI Work/Around) */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4242 | il_set_bit(il, CSR_GIO_CHICKEN_BITS, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4243 | CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4244 | |
| 4245 | /* |
| 4246 | * Disable L0s without affecting L1; |
| 4247 | * don't wait for ICH L0s (ICH bug W/A) |
| 4248 | */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4249 | il_set_bit(il, CSR_GIO_CHICKEN_BITS, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4250 | CSR_GIO_CHICKEN_BITS_REG_BIT_L1A_NO_L0S_RX); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4251 | |
| 4252 | /* Set FH wait threshold to maximum (HW error during stress W/A) */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4253 | 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] | 4254 | |
| 4255 | /* |
| 4256 | * Enable HAP INTA (interrupt from management bus) to |
| 4257 | * wake device's PCI Express link L1a -> L0s |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 4258 | * NOTE: This is no-op for 3945 (non-existent bit) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4259 | */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4260 | il_set_bit(il, CSR_HW_IF_CONFIG_REG, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4261 | CSR_HW_IF_CONFIG_REG_BIT_HAP_WAKE_L1A); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4262 | |
| 4263 | /* |
| 4264 | * HW bug W/A for instability in PCIe bus L0->L0S->L1 transition. |
| 4265 | * Check if BIOS (or OS) enabled L1-ASPM on this device. |
| 4266 | * If so (likely), disable L0S, so device moves directly L0->L1; |
| 4267 | * costs negligible amount of power savings. |
| 4268 | * If not (unlikely), enable L0S, so there is at least some |
| 4269 | * power savings, even without L1. |
| 4270 | */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4271 | if (il->cfg->base_params->set_l0s) { |
| 4272 | lctl = il_pcie_link_ctl(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4273 | if ((lctl & PCI_CFG_LINK_CTRL_VAL_L1_EN) == |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4274 | PCI_CFG_LINK_CTRL_VAL_L1_EN) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4275 | /* L1-ASPM enabled; disable(!) L0S */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4276 | il_set_bit(il, CSR_GIO_REG, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4277 | CSR_GIO_REG_VAL_L0S_ENABLED); |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4278 | D_POWER("L1 Enabled; Disabling L0S\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4279 | } else { |
| 4280 | /* L1-ASPM disabled; enable(!) L0S */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4281 | il_clear_bit(il, CSR_GIO_REG, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4282 | CSR_GIO_REG_VAL_L0S_ENABLED); |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4283 | D_POWER("L1 Disabled; Enabling L0S\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4284 | } |
| 4285 | } |
| 4286 | |
| 4287 | /* Configure analog phase-lock-loop before activating to D0A */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4288 | if (il->cfg->base_params->pll_cfg_val) |
| 4289 | il_set_bit(il, CSR_ANA_PLL_CFG, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4290 | il->cfg->base_params->pll_cfg_val); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4291 | |
| 4292 | /* |
| 4293 | * Set "initialization complete" bit to move adapter from |
| 4294 | * D0U* --> D0A* (powered-up active) state. |
| 4295 | */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4296 | 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] | 4297 | |
| 4298 | /* |
| 4299 | * Wait for clock stabilization; once stabilized, access to |
Stanislaw Gruszka | db54eb5 | 2011-08-24 21:06:33 +0200 | [diff] [blame] | 4300 | * device-internal resources is supported, e.g. il_wr_prph() |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4301 | * and accesses to uCode SRAM. |
| 4302 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4303 | ret = |
| 4304 | _il_poll_bit(il, CSR_GP_CNTRL, |
| 4305 | CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, |
| 4306 | CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4307 | if (ret < 0) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4308 | D_INFO("Failed to init the card\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4309 | goto out; |
| 4310 | } |
| 4311 | |
| 4312 | /* |
| 4313 | * Enable DMA and BSM (if used) clocks, wait for them to stabilize. |
| 4314 | * BSM (Boostrap State Machine) is only in 3945 and 4965. |
| 4315 | * |
| 4316 | * Write to "CLK_EN_REG"; "1" bits enable clocks, while "0" bits |
| 4317 | * do not disable clocks. This preserves any hardware bits already |
| 4318 | * set by default in "CLK_CTRL_REG" after reset. |
| 4319 | */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4320 | if (il->cfg->base_params->use_bsm) |
Stanislaw Gruszka | db54eb5 | 2011-08-24 21:06:33 +0200 | [diff] [blame] | 4321 | il_wr_prph(il, APMG_CLK_EN_REG, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4322 | 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] | 4323 | else |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4324 | 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] | 4325 | udelay(20); |
| 4326 | |
| 4327 | /* Disable L1-Active */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4328 | il_set_bits_prph(il, APMG_PCIDEV_STT_REG, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4329 | APMG_PCIDEV_STT_VAL_L1_ACT_DIS); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4330 | |
| 4331 | out: |
| 4332 | return ret; |
| 4333 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4334 | EXPORT_SYMBOL(il_apm_init); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4335 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4336 | int |
| 4337 | 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] | 4338 | { |
| 4339 | int ret; |
| 4340 | s8 prev_tx_power; |
Stanislaw Gruszka | 43f12d4 | 2011-02-24 14:23:55 +0100 | [diff] [blame] | 4341 | bool defer; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4342 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4343 | lockdep_assert_held(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4344 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4345 | if (il->tx_power_user_lmt == tx_power && !force) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4346 | return 0; |
| 4347 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4348 | if (!il->cfg->ops->lib->send_tx_power) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4349 | return -EOPNOTSUPP; |
| 4350 | |
Stanislaw Gruszka | 332704a | 2011-04-13 10:56:51 +0200 | [diff] [blame] | 4351 | /* 0 dBm mean 1 milliwatt */ |
| 4352 | if (tx_power < 0) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4353 | 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] | 4354 | return -EINVAL; |
| 4355 | } |
| 4356 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4357 | if (tx_power > il->tx_power_device_lmt) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4358 | IL_WARN("Requested user TXPOWER %d above upper limit %d.\n", |
| 4359 | tx_power, il->tx_power_device_lmt); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4360 | return -EINVAL; |
| 4361 | } |
| 4362 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4363 | if (!il_is_ready_rf(il)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4364 | return -EIO; |
| 4365 | |
Stanislaw Gruszka | 43f12d4 | 2011-02-24 14:23:55 +0100 | [diff] [blame] | 4366 | /* scan complete and commit_rxon use tx_power_next value, |
| 4367 | * it always need to be updated for newest request */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4368 | il->tx_power_next = tx_power; |
Stanislaw Gruszka | 43f12d4 | 2011-02-24 14:23:55 +0100 | [diff] [blame] | 4369 | |
| 4370 | /* do not set tx power when scanning or channel changing */ |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4371 | defer = test_bit(S_SCANNING, &il->status) || |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 4372 | memcmp(&il->active, &il->staging, sizeof(il->staging)); |
Stanislaw Gruszka | 43f12d4 | 2011-02-24 14:23:55 +0100 | [diff] [blame] | 4373 | if (defer && !force) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4374 | D_INFO("Deferring tx power set\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4375 | return 0; |
| 4376 | } |
| 4377 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4378 | prev_tx_power = il->tx_power_user_lmt; |
| 4379 | il->tx_power_user_lmt = tx_power; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4380 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4381 | ret = il->cfg->ops->lib->send_tx_power(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4382 | |
| 4383 | /* if fail to set tx_power, restore the orig. tx power */ |
| 4384 | if (ret) { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4385 | il->tx_power_user_lmt = prev_tx_power; |
| 4386 | il->tx_power_next = prev_tx_power; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4387 | } |
| 4388 | return ret; |
| 4389 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4390 | EXPORT_SYMBOL(il_set_tx_power); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4391 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4392 | void |
| 4393 | il_send_bt_config(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4394 | { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4395 | struct il_bt_cmd bt_cmd = { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4396 | .lead_time = BT_LEAD_TIME_DEF, |
| 4397 | .max_kill = BT_MAX_KILL_DEF, |
| 4398 | .kill_ack_mask = 0, |
| 4399 | .kill_cts_mask = 0, |
| 4400 | }; |
| 4401 | |
| 4402 | if (!bt_coex_active) |
| 4403 | bt_cmd.flags = BT_COEX_DISABLE; |
| 4404 | else |
| 4405 | bt_cmd.flags = BT_COEX_ENABLE; |
| 4406 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4407 | D_INFO("BT coex %s\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4408 | (bt_cmd.flags == BT_COEX_DISABLE) ? "disable" : "active"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4409 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4410 | 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] | 4411 | IL_ERR("failed to send BT Coex Config\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4412 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4413 | EXPORT_SYMBOL(il_send_bt_config); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4414 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4415 | int |
| 4416 | 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] | 4417 | { |
Stanislaw Gruszka | ebf0d90 | 2011-08-26 15:43:47 +0200 | [diff] [blame] | 4418 | struct il_stats_cmd stats_cmd = { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4419 | .configuration_flags = clear ? IL_STATS_CONF_CLEAR_STATS : 0, |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4420 | }; |
| 4421 | |
| 4422 | if (flags & CMD_ASYNC) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4423 | return il_send_cmd_pdu_async(il, C_STATS, sizeof(struct il_stats_cmd), |
| 4424 | &stats_cmd, NULL); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4425 | else |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4426 | return il_send_cmd_pdu(il, C_STATS, sizeof(struct il_stats_cmd), |
| 4427 | &stats_cmd); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4428 | } |
Stanislaw Gruszka | ebf0d90 | 2011-08-26 15:43:47 +0200 | [diff] [blame] | 4429 | EXPORT_SYMBOL(il_send_stats_request); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4430 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4431 | void |
| 4432 | 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] | 4433 | { |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4434 | #ifdef CONFIG_IWLEGACY_DEBUG |
Stanislaw Gruszka | dcae1c6 | 2011-08-26 14:36:21 +0200 | [diff] [blame] | 4435 | struct il_rx_pkt *pkt = rxb_addr(rxb); |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4436 | struct il_sleep_notification *sleep = &(pkt->u.sleep_notif); |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4437 | D_RX("sleep mode: %d, src: %d\n", |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 4438 | sleep->pm_sleep_mode, sleep->pm_wakeup_src); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4439 | #endif |
| 4440 | } |
Stanislaw Gruszka | d2dfb33 | 2011-11-15 13:16:38 +0100 | [diff] [blame] | 4441 | EXPORT_SYMBOL(il_hdl_pm_sleep); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4442 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4443 | void |
| 4444 | 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] | 4445 | { |
Stanislaw Gruszka | dcae1c6 | 2011-08-26 14:36:21 +0200 | [diff] [blame] | 4446 | struct il_rx_pkt *pkt = rxb_addr(rxb); |
Stanislaw Gruszka | e94a409 | 2011-08-31 13:23:20 +0200 | [diff] [blame] | 4447 | 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] | 4448 | D_RADIO("Dumping %d bytes of unhandled notification for %s:\n", len, |
| 4449 | il_get_cmd_string(pkt->hdr.cmd)); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4450 | 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] | 4451 | } |
Stanislaw Gruszka | d2dfb33 | 2011-11-15 13:16:38 +0100 | [diff] [blame] | 4452 | EXPORT_SYMBOL(il_hdl_pm_debug_stats); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4453 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4454 | void |
| 4455 | 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] | 4456 | { |
Stanislaw Gruszka | dcae1c6 | 2011-08-26 14:36:21 +0200 | [diff] [blame] | 4457 | struct il_rx_pkt *pkt = rxb_addr(rxb); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4458 | |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4459 | IL_ERR("Error Reply type 0x%08X cmd %s (0x%02X) " |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4460 | "seq 0x%04X ser 0x%08X\n", |
| 4461 | le32_to_cpu(pkt->u.err_resp.error_type), |
| 4462 | il_get_cmd_string(pkt->u.err_resp.cmd_id), |
| 4463 | pkt->u.err_resp.cmd_id, |
| 4464 | le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num), |
| 4465 | le32_to_cpu(pkt->u.err_resp.error_info)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4466 | } |
Stanislaw Gruszka | 6e9848b4 | 2011-08-30 15:45:31 +0200 | [diff] [blame] | 4467 | EXPORT_SYMBOL(il_hdl_error); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4468 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4469 | void |
| 4470 | il_clear_isr_stats(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4471 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4472 | memset(&il->isr_stats, 0, sizeof(il->isr_stats)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4473 | } |
| 4474 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4475 | int |
| 4476 | il_mac_conf_tx(struct ieee80211_hw *hw, struct ieee80211_vif *vif, u16 queue, |
| 4477 | const struct ieee80211_tx_queue_params *params) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4478 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4479 | struct il_priv *il = hw->priv; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4480 | unsigned long flags; |
| 4481 | int q; |
| 4482 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4483 | D_MAC80211("enter\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4484 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4485 | if (!il_is_ready_rf(il)) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4486 | D_MAC80211("leave - RF not ready\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4487 | return -EIO; |
| 4488 | } |
| 4489 | |
| 4490 | if (queue >= AC_NUM) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4491 | D_MAC80211("leave - queue >= AC_NUM %d\n", queue); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4492 | return 0; |
| 4493 | } |
| 4494 | |
| 4495 | q = AC_NUM - 1 - queue; |
| 4496 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4497 | spin_lock_irqsave(&il->lock, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4498 | |
Stanislaw Gruszka | 8d44f2b | 2012-02-03 17:31:51 +0100 | [diff] [blame] | 4499 | il->qos_data.def_qos_parm.ac[q].cw_min = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4500 | cpu_to_le16(params->cw_min); |
Stanislaw Gruszka | 8d44f2b | 2012-02-03 17:31:51 +0100 | [diff] [blame] | 4501 | il->qos_data.def_qos_parm.ac[q].cw_max = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4502 | cpu_to_le16(params->cw_max); |
Stanislaw Gruszka | 8d44f2b | 2012-02-03 17:31:51 +0100 | [diff] [blame] | 4503 | il->qos_data.def_qos_parm.ac[q].aifsn = params->aifs; |
| 4504 | il->qos_data.def_qos_parm.ac[q].edca_txop = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4505 | cpu_to_le16((params->txop * 32)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4506 | |
Stanislaw Gruszka | 8d44f2b | 2012-02-03 17:31:51 +0100 | [diff] [blame] | 4507 | il->qos_data.def_qos_parm.ac[q].reserved1 = 0; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4508 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4509 | spin_unlock_irqrestore(&il->lock, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4510 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4511 | D_MAC80211("leave\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4512 | return 0; |
| 4513 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4514 | EXPORT_SYMBOL(il_mac_conf_tx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4515 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4516 | int |
| 4517 | il_mac_tx_last_beacon(struct ieee80211_hw *hw) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4518 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4519 | struct il_priv *il = hw->priv; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4520 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4521 | return il->ibss_manager == IL_IBSS_MANAGER; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4522 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4523 | EXPORT_SYMBOL_GPL(il_mac_tx_last_beacon); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4524 | |
| 4525 | static int |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4526 | il_set_mode(struct il_priv *il, struct il_rxon_context *ctx) |
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 | il_connection_init_rx_config(il, ctx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4529 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4530 | if (il->cfg->ops->hcmd->set_rxon_chain) |
| 4531 | il->cfg->ops->hcmd->set_rxon_chain(il, ctx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4532 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4533 | return il_commit_rxon(il, ctx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4534 | } |
| 4535 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4536 | static int |
| 4537 | il_setup_interface(struct il_priv *il, struct il_rxon_context *ctx) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4538 | { |
| 4539 | struct ieee80211_vif *vif = ctx->vif; |
| 4540 | int err; |
| 4541 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4542 | lockdep_assert_held(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4543 | |
| 4544 | /* |
| 4545 | * This variable will be correct only when there's just |
| 4546 | * a single context, but all code using it is for hardware |
| 4547 | * that supports only one context. |
| 4548 | */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4549 | il->iw_mode = vif->type; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4550 | |
| 4551 | ctx->is_active = true; |
| 4552 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4553 | err = il_set_mode(il, ctx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4554 | if (err) { |
| 4555 | if (!ctx->always_active) |
| 4556 | ctx->is_active = false; |
| 4557 | return err; |
| 4558 | } |
| 4559 | |
| 4560 | return 0; |
| 4561 | } |
| 4562 | |
| 4563 | int |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4564 | 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] | 4565 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4566 | struct il_priv *il = hw->priv; |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4567 | struct il_vif_priv *vif_priv = (void *)vif->drv_priv; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4568 | int err; |
| 4569 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4570 | 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] | 4571 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4572 | mutex_lock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4573 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4574 | if (!il_is_ready_rf(il)) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4575 | IL_WARN("Try to add interface when device not ready\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4576 | err = -EINVAL; |
| 4577 | goto out; |
| 4578 | } |
| 4579 | |
Stanislaw Gruszka | 8c9c48d | 2012-02-03 17:31:50 +0100 | [diff] [blame] | 4580 | if (il->ctx.vif) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4581 | err = -EOPNOTSUPP; |
| 4582 | goto out; |
| 4583 | } |
| 4584 | |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 4585 | vif_priv->ctx = &il->ctx; |
| 4586 | il->ctx.vif = vif; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4587 | |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 4588 | err = il_setup_interface(il, &il->ctx); |
| 4589 | if (err) { |
| 4590 | il->ctx.vif = NULL; |
| 4591 | il->iw_mode = NL80211_IFTYPE_STATION; |
| 4592 | } |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4593 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4594 | out: |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4595 | mutex_unlock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4596 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4597 | D_MAC80211("leave\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4598 | return err; |
| 4599 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4600 | EXPORT_SYMBOL(il_mac_add_interface); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4601 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4602 | static void |
| 4603 | il_teardown_interface(struct il_priv *il, struct ieee80211_vif *vif, |
| 4604 | bool mode_change) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4605 | { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4606 | struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4607 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4608 | lockdep_assert_held(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4609 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4610 | if (il->scan_vif == vif) { |
| 4611 | il_scan_cancel_timeout(il, 200); |
| 4612 | il_force_scan_end(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4613 | } |
| 4614 | |
| 4615 | if (!mode_change) { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4616 | il_set_mode(il, ctx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4617 | if (!ctx->always_active) |
| 4618 | ctx->is_active = false; |
| 4619 | } |
| 4620 | } |
| 4621 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4622 | void |
| 4623 | 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] | 4624 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4625 | struct il_priv *il = hw->priv; |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4626 | struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4627 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4628 | D_MAC80211("enter\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4629 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4630 | mutex_lock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4631 | |
| 4632 | WARN_ON(ctx->vif != vif); |
| 4633 | ctx->vif = NULL; |
| 4634 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4635 | il_teardown_interface(il, vif, false); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4636 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4637 | memset(il->bssid, 0, ETH_ALEN); |
| 4638 | mutex_unlock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4639 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4640 | D_MAC80211("leave\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4641 | |
| 4642 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4643 | EXPORT_SYMBOL(il_mac_remove_interface); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4644 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4645 | int |
| 4646 | il_alloc_txq_mem(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4647 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4648 | if (!il->txq) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4649 | il->txq = |
| 4650 | kzalloc(sizeof(struct il_tx_queue) * |
| 4651 | il->cfg->base_params->num_of_queues, GFP_KERNEL); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4652 | if (!il->txq) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4653 | IL_ERR("Not enough memory for txq\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4654 | return -ENOMEM; |
| 4655 | } |
| 4656 | return 0; |
| 4657 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4658 | EXPORT_SYMBOL(il_alloc_txq_mem); |
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_txq_mem(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4662 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4663 | kfree(il->txq); |
| 4664 | il->txq = NULL; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4665 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4666 | EXPORT_SYMBOL(il_txq_mem); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4667 | |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4668 | #ifdef CONFIG_IWLEGACY_DEBUGFS |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4669 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4670 | #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] | 4671 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4672 | void |
| 4673 | il_reset_traffic_log(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4674 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4675 | il->tx_traffic_idx = 0; |
| 4676 | il->rx_traffic_idx = 0; |
| 4677 | if (il->tx_traffic) |
| 4678 | memset(il->tx_traffic, 0, IL_TRAFFIC_DUMP_SIZE); |
| 4679 | if (il->rx_traffic) |
| 4680 | memset(il->rx_traffic, 0, IL_TRAFFIC_DUMP_SIZE); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4681 | } |
| 4682 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4683 | int |
| 4684 | il_alloc_traffic_mem(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4685 | { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4686 | u32 traffic_size = IL_TRAFFIC_DUMP_SIZE; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4687 | |
Stanislaw Gruszka | d2ddf621 | 2011-08-16 14:17:04 +0200 | [diff] [blame] | 4688 | if (il_debug_level & IL_DL_TX) { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4689 | if (!il->tx_traffic) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4690 | il->tx_traffic = kzalloc(traffic_size, GFP_KERNEL); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4691 | if (!il->tx_traffic) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4692 | return -ENOMEM; |
| 4693 | } |
| 4694 | } |
Stanislaw Gruszka | d2ddf621 | 2011-08-16 14:17:04 +0200 | [diff] [blame] | 4695 | if (il_debug_level & IL_DL_RX) { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4696 | if (!il->rx_traffic) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4697 | il->rx_traffic = kzalloc(traffic_size, GFP_KERNEL); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4698 | if (!il->rx_traffic) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4699 | return -ENOMEM; |
| 4700 | } |
| 4701 | } |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4702 | il_reset_traffic_log(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4703 | return 0; |
| 4704 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4705 | EXPORT_SYMBOL(il_alloc_traffic_mem); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4706 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4707 | void |
| 4708 | il_free_traffic_mem(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4709 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4710 | kfree(il->tx_traffic); |
| 4711 | il->tx_traffic = NULL; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4712 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4713 | kfree(il->rx_traffic); |
| 4714 | il->rx_traffic = NULL; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4715 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4716 | EXPORT_SYMBOL(il_free_traffic_mem); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4717 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4718 | void |
| 4719 | il_dbg_log_tx_data_frame(struct il_priv *il, u16 length, |
| 4720 | struct ieee80211_hdr *header) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4721 | { |
| 4722 | __le16 fc; |
| 4723 | u16 len; |
| 4724 | |
Stanislaw Gruszka | d2ddf621 | 2011-08-16 14:17:04 +0200 | [diff] [blame] | 4725 | if (likely(!(il_debug_level & IL_DL_TX))) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4726 | return; |
| 4727 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4728 | if (!il->tx_traffic) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4729 | return; |
| 4730 | |
| 4731 | fc = header->frame_control; |
| 4732 | if (ieee80211_is_data(fc)) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4733 | len = |
| 4734 | (length > |
| 4735 | IL_TRAFFIC_ENTRY_SIZE) ? IL_TRAFFIC_ENTRY_SIZE : length; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4736 | memcpy((il->tx_traffic + |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4737 | (il->tx_traffic_idx * IL_TRAFFIC_ENTRY_SIZE)), header, |
| 4738 | len); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4739 | il->tx_traffic_idx = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4740 | (il->tx_traffic_idx + 1) % IL_TRAFFIC_ENTRIES; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4741 | } |
| 4742 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4743 | EXPORT_SYMBOL(il_dbg_log_tx_data_frame); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4744 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4745 | void |
| 4746 | il_dbg_log_rx_data_frame(struct il_priv *il, u16 length, |
| 4747 | struct ieee80211_hdr *header) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4748 | { |
| 4749 | __le16 fc; |
| 4750 | u16 len; |
| 4751 | |
Stanislaw Gruszka | d2ddf621 | 2011-08-16 14:17:04 +0200 | [diff] [blame] | 4752 | if (likely(!(il_debug_level & IL_DL_RX))) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4753 | return; |
| 4754 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4755 | if (!il->rx_traffic) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4756 | return; |
| 4757 | |
| 4758 | fc = header->frame_control; |
| 4759 | if (ieee80211_is_data(fc)) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4760 | len = |
| 4761 | (length > |
| 4762 | IL_TRAFFIC_ENTRY_SIZE) ? IL_TRAFFIC_ENTRY_SIZE : length; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4763 | memcpy((il->rx_traffic + |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4764 | (il->rx_traffic_idx * IL_TRAFFIC_ENTRY_SIZE)), header, |
| 4765 | len); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4766 | il->rx_traffic_idx = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4767 | (il->rx_traffic_idx + 1) % IL_TRAFFIC_ENTRIES; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4768 | } |
| 4769 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4770 | EXPORT_SYMBOL(il_dbg_log_rx_data_frame); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4771 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4772 | const char * |
| 4773 | il_get_mgmt_string(int cmd) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4774 | { |
| 4775 | switch (cmd) { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4776 | IL_CMD(MANAGEMENT_ASSOC_REQ); |
| 4777 | IL_CMD(MANAGEMENT_ASSOC_RESP); |
| 4778 | IL_CMD(MANAGEMENT_REASSOC_REQ); |
| 4779 | IL_CMD(MANAGEMENT_REASSOC_RESP); |
| 4780 | IL_CMD(MANAGEMENT_PROBE_REQ); |
| 4781 | IL_CMD(MANAGEMENT_PROBE_RESP); |
| 4782 | IL_CMD(MANAGEMENT_BEACON); |
| 4783 | IL_CMD(MANAGEMENT_ATIM); |
| 4784 | IL_CMD(MANAGEMENT_DISASSOC); |
| 4785 | IL_CMD(MANAGEMENT_AUTH); |
| 4786 | IL_CMD(MANAGEMENT_DEAUTH); |
| 4787 | IL_CMD(MANAGEMENT_ACTION); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4788 | default: |
| 4789 | return "UNKNOWN"; |
| 4790 | |
| 4791 | } |
| 4792 | } |
| 4793 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4794 | const char * |
| 4795 | il_get_ctrl_string(int cmd) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4796 | { |
| 4797 | switch (cmd) { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4798 | IL_CMD(CONTROL_BACK_REQ); |
| 4799 | IL_CMD(CONTROL_BACK); |
| 4800 | IL_CMD(CONTROL_PSPOLL); |
| 4801 | IL_CMD(CONTROL_RTS); |
| 4802 | IL_CMD(CONTROL_CTS); |
| 4803 | IL_CMD(CONTROL_ACK); |
| 4804 | IL_CMD(CONTROL_CFEND); |
| 4805 | IL_CMD(CONTROL_CFENDACK); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4806 | default: |
| 4807 | return "UNKNOWN"; |
| 4808 | |
| 4809 | } |
| 4810 | } |
| 4811 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4812 | void |
| 4813 | il_clear_traffic_stats(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4814 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4815 | memset(&il->tx_stats, 0, sizeof(struct traffic_stats)); |
| 4816 | memset(&il->rx_stats, 0, sizeof(struct traffic_stats)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4817 | } |
| 4818 | |
| 4819 | /* |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4820 | * if CONFIG_IWLEGACY_DEBUGFS defined, |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4821 | * il_update_stats function will |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4822 | * 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] | 4823 | * Use debugFs to display the rx/rx_stats |
Stanislaw Gruszka | d317516 | 2011-11-15 11:25:42 +0100 | [diff] [blame] | 4824 | * 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] | 4825 | * information will be recorded, but DATA pkt still will be recorded |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4826 | * 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] | 4827 | * number of tx and rx data. |
| 4828 | * |
| 4829 | */ |
| 4830 | void |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4831 | 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] | 4832 | { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4833 | struct traffic_stats *stats; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4834 | |
| 4835 | if (is_tx) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4836 | stats = &il->tx_stats; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4837 | else |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4838 | stats = &il->rx_stats; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4839 | |
| 4840 | if (ieee80211_is_mgmt(fc)) { |
| 4841 | switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) { |
| 4842 | case cpu_to_le16(IEEE80211_STYPE_ASSOC_REQ): |
| 4843 | stats->mgmt[MANAGEMENT_ASSOC_REQ]++; |
| 4844 | break; |
| 4845 | case cpu_to_le16(IEEE80211_STYPE_ASSOC_RESP): |
| 4846 | stats->mgmt[MANAGEMENT_ASSOC_RESP]++; |
| 4847 | break; |
| 4848 | case cpu_to_le16(IEEE80211_STYPE_REASSOC_REQ): |
| 4849 | stats->mgmt[MANAGEMENT_REASSOC_REQ]++; |
| 4850 | break; |
| 4851 | case cpu_to_le16(IEEE80211_STYPE_REASSOC_RESP): |
| 4852 | stats->mgmt[MANAGEMENT_REASSOC_RESP]++; |
| 4853 | break; |
| 4854 | case cpu_to_le16(IEEE80211_STYPE_PROBE_REQ): |
| 4855 | stats->mgmt[MANAGEMENT_PROBE_REQ]++; |
| 4856 | break; |
| 4857 | case cpu_to_le16(IEEE80211_STYPE_PROBE_RESP): |
| 4858 | stats->mgmt[MANAGEMENT_PROBE_RESP]++; |
| 4859 | break; |
| 4860 | case cpu_to_le16(IEEE80211_STYPE_BEACON): |
| 4861 | stats->mgmt[MANAGEMENT_BEACON]++; |
| 4862 | break; |
| 4863 | case cpu_to_le16(IEEE80211_STYPE_ATIM): |
| 4864 | stats->mgmt[MANAGEMENT_ATIM]++; |
| 4865 | break; |
| 4866 | case cpu_to_le16(IEEE80211_STYPE_DISASSOC): |
| 4867 | stats->mgmt[MANAGEMENT_DISASSOC]++; |
| 4868 | break; |
| 4869 | case cpu_to_le16(IEEE80211_STYPE_AUTH): |
| 4870 | stats->mgmt[MANAGEMENT_AUTH]++; |
| 4871 | break; |
| 4872 | case cpu_to_le16(IEEE80211_STYPE_DEAUTH): |
| 4873 | stats->mgmt[MANAGEMENT_DEAUTH]++; |
| 4874 | break; |
| 4875 | case cpu_to_le16(IEEE80211_STYPE_ACTION): |
| 4876 | stats->mgmt[MANAGEMENT_ACTION]++; |
| 4877 | break; |
| 4878 | } |
| 4879 | } else if (ieee80211_is_ctl(fc)) { |
| 4880 | switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) { |
| 4881 | case cpu_to_le16(IEEE80211_STYPE_BACK_REQ): |
| 4882 | stats->ctrl[CONTROL_BACK_REQ]++; |
| 4883 | break; |
| 4884 | case cpu_to_le16(IEEE80211_STYPE_BACK): |
| 4885 | stats->ctrl[CONTROL_BACK]++; |
| 4886 | break; |
| 4887 | case cpu_to_le16(IEEE80211_STYPE_PSPOLL): |
| 4888 | stats->ctrl[CONTROL_PSPOLL]++; |
| 4889 | break; |
| 4890 | case cpu_to_le16(IEEE80211_STYPE_RTS): |
| 4891 | stats->ctrl[CONTROL_RTS]++; |
| 4892 | break; |
| 4893 | case cpu_to_le16(IEEE80211_STYPE_CTS): |
| 4894 | stats->ctrl[CONTROL_CTS]++; |
| 4895 | break; |
| 4896 | case cpu_to_le16(IEEE80211_STYPE_ACK): |
| 4897 | stats->ctrl[CONTROL_ACK]++; |
| 4898 | break; |
| 4899 | case cpu_to_le16(IEEE80211_STYPE_CFEND): |
| 4900 | stats->ctrl[CONTROL_CFEND]++; |
| 4901 | break; |
| 4902 | case cpu_to_le16(IEEE80211_STYPE_CFENDACK): |
| 4903 | stats->ctrl[CONTROL_CFENDACK]++; |
| 4904 | break; |
| 4905 | } |
| 4906 | } else { |
| 4907 | /* data */ |
| 4908 | stats->data_cnt++; |
| 4909 | stats->data_bytes += len; |
| 4910 | } |
| 4911 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4912 | EXPORT_SYMBOL(il_update_stats); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4913 | #endif |
| 4914 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4915 | int |
| 4916 | il_force_reset(struct il_priv *il, bool external) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4917 | { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4918 | struct il_force_reset *force_reset; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4919 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4920 | if (test_bit(S_EXIT_PENDING, &il->status)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4921 | return -EINVAL; |
| 4922 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4923 | force_reset = &il->force_reset; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4924 | force_reset->reset_request_count++; |
| 4925 | if (!external) { |
| 4926 | if (force_reset->last_force_reset_jiffies && |
| 4927 | time_after(force_reset->last_force_reset_jiffies + |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4928 | force_reset->reset_duration, jiffies)) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4929 | D_INFO("force reset rejected\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4930 | force_reset->reset_reject_count++; |
| 4931 | return -EAGAIN; |
| 4932 | } |
| 4933 | } |
| 4934 | force_reset->reset_success_count++; |
| 4935 | force_reset->last_force_reset_jiffies = jiffies; |
Stanislaw Gruszka | dd6d2a8 | 2011-06-08 15:28:26 +0200 | [diff] [blame] | 4936 | |
| 4937 | /* |
| 4938 | * if the request is from external(ex: debugfs), |
| 4939 | * then always perform the request in regardless the module |
| 4940 | * parameter setting |
| 4941 | * if the request is from internal (uCode error or driver |
| 4942 | * detect failure), then fw_restart module parameter |
| 4943 | * need to be check before performing firmware reload |
| 4944 | */ |
| 4945 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4946 | if (!external && !il->cfg->mod_params->restart_fw) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 4947 | D_INFO("Cancel firmware reload based on " |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4948 | "module parameter setting\n"); |
Stanislaw Gruszka | dd6d2a8 | 2011-06-08 15:28:26 +0200 | [diff] [blame] | 4949 | return 0; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4950 | } |
Stanislaw Gruszka | dd6d2a8 | 2011-06-08 15:28:26 +0200 | [diff] [blame] | 4951 | |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 4952 | IL_ERR("On demand firmware reload\n"); |
Stanislaw Gruszka | dd6d2a8 | 2011-06-08 15:28:26 +0200 | [diff] [blame] | 4953 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4954 | /* Set the FW error flag -- cleared on il_down */ |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4955 | set_bit(S_FW_ERROR, &il->status); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4956 | wake_up(&il->wait_command_queue); |
Stanislaw Gruszka | dd6d2a8 | 2011-06-08 15:28:26 +0200 | [diff] [blame] | 4957 | /* |
| 4958 | * Keep the restart process from trying to send host |
| 4959 | * commands by clearing the INIT status bit |
| 4960 | */ |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 4961 | clear_bit(S_READY, &il->status); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4962 | queue_work(il->workqueue, &il->restart); |
Stanislaw Gruszka | dd6d2a8 | 2011-06-08 15:28:26 +0200 | [diff] [blame] | 4963 | |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4964 | return 0; |
| 4965 | } |
| 4966 | |
| 4967 | int |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 4968 | 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] | 4969 | enum nl80211_iftype newtype, bool newp2p) |
| 4970 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4971 | struct il_priv *il = hw->priv; |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 4972 | struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4973 | int err; |
| 4974 | |
Stanislaw Gruszka | 8c9c48d | 2012-02-03 17:31:50 +0100 | [diff] [blame] | 4975 | if (newp2p) |
| 4976 | return -EOPNOTSUPP; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4977 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4978 | mutex_lock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4979 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4980 | if (!ctx->vif || !il_is_ready_rf(il)) { |
Johannes Berg | ffd8c74 | 2011-03-29 15:28:11 +0200 | [diff] [blame] | 4981 | /* |
| 4982 | * Huh? But wait ... this can maybe happen when |
| 4983 | * we're in the middle of a firmware restart! |
| 4984 | */ |
| 4985 | err = -EBUSY; |
| 4986 | goto out; |
| 4987 | } |
| 4988 | |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4989 | /* success */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4990 | il_teardown_interface(il, vif, true); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4991 | vif->type = newtype; |
Stanislaw Gruszka | 8c9c48d | 2012-02-03 17:31:50 +0100 | [diff] [blame] | 4992 | vif->p2p = false; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 4993 | err = il_setup_interface(il, ctx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 4994 | WARN_ON(err); |
| 4995 | /* |
| 4996 | * We've switched internally, but submitting to the |
| 4997 | * device may have failed for some reason. Mask this |
| 4998 | * error, because otherwise mac80211 will not switch |
| 4999 | * (and set the interface type back) and we'll be |
| 5000 | * out of sync with it. |
| 5001 | */ |
| 5002 | err = 0; |
| 5003 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5004 | out: |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5005 | mutex_unlock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5006 | return err; |
| 5007 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5008 | EXPORT_SYMBOL(il_mac_change_interface); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5009 | |
| 5010 | /* |
| 5011 | * On every watchdog tick we check (latest) time stamp. If it does not |
| 5012 | * change during timeout period and queue is not empty we reset firmware. |
| 5013 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5014 | static int |
| 5015 | il_check_stuck_queue(struct il_priv *il, int cnt) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5016 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5017 | struct il_tx_queue *txq = &il->txq[cnt]; |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5018 | struct il_queue *q = &txq->q; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5019 | unsigned long timeout; |
| 5020 | int ret; |
| 5021 | |
| 5022 | if (q->read_ptr == q->write_ptr) { |
| 5023 | txq->time_stamp = jiffies; |
| 5024 | return 0; |
| 5025 | } |
| 5026 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5027 | timeout = |
| 5028 | txq->time_stamp + |
| 5029 | msecs_to_jiffies(il->cfg->base_params->wd_timeout); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5030 | |
| 5031 | if (time_after(jiffies, timeout)) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5032 | IL_ERR("Queue %d stuck for %u ms.\n", q->id, |
| 5033 | il->cfg->base_params->wd_timeout); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5034 | ret = il_force_reset(il, false); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5035 | return (ret == -EAGAIN) ? 0 : 1; |
| 5036 | } |
| 5037 | |
| 5038 | return 0; |
| 5039 | } |
| 5040 | |
| 5041 | /* |
| 5042 | * Making watchdog tick be a quarter of timeout assure we will |
| 5043 | * discover the queue hung between timeout and 1.25*timeout |
| 5044 | */ |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5045 | #define IL_WD_TICK(timeout) ((timeout) / 4) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5046 | |
| 5047 | /* |
| 5048 | * Watchdog timer callback, we check each tx queue for stuck, if if hung |
| 5049 | * we reset the firmware. If everything is fine just rearm the timer. |
| 5050 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5051 | void |
| 5052 | il_bg_watchdog(unsigned long data) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5053 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5054 | struct il_priv *il = (struct il_priv *)data; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5055 | int cnt; |
| 5056 | unsigned long timeout; |
| 5057 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5058 | if (test_bit(S_EXIT_PENDING, &il->status)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5059 | return; |
| 5060 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5061 | timeout = il->cfg->base_params->wd_timeout; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5062 | if (timeout == 0) |
| 5063 | return; |
| 5064 | |
| 5065 | /* monitor and check for stuck cmd queue */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5066 | if (il_check_stuck_queue(il, il->cmd_queue)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5067 | return; |
| 5068 | |
| 5069 | /* monitor and check for other stuck queues */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5070 | if (il_is_any_associated(il)) { |
| 5071 | for (cnt = 0; cnt < il->hw_params.max_txq_num; cnt++) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5072 | /* skip as we already checked the command queue */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5073 | if (cnt == il->cmd_queue) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5074 | continue; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5075 | if (il_check_stuck_queue(il, cnt)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5076 | return; |
| 5077 | } |
| 5078 | } |
| 5079 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5080 | mod_timer(&il->watchdog, |
| 5081 | jiffies + msecs_to_jiffies(IL_WD_TICK(timeout))); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5082 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5083 | EXPORT_SYMBOL(il_bg_watchdog); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5084 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5085 | void |
| 5086 | il_setup_watchdog(struct il_priv *il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5087 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5088 | unsigned int timeout = il->cfg->base_params->wd_timeout; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5089 | |
| 5090 | if (timeout) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5091 | mod_timer(&il->watchdog, |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5092 | jiffies + msecs_to_jiffies(IL_WD_TICK(timeout))); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5093 | else |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5094 | del_timer(&il->watchdog); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5095 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5096 | EXPORT_SYMBOL(il_setup_watchdog); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5097 | |
| 5098 | /* |
| 5099 | * extended beacon time format |
| 5100 | * time in usec will be changed into a 32-bit value in extended:internal format |
| 5101 | * the extended part is the beacon counts |
| 5102 | * the internal part is the time in usec within one beacon interval |
| 5103 | */ |
| 5104 | u32 |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5105 | 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] | 5106 | { |
| 5107 | u32 quot; |
| 5108 | u32 rem; |
| 5109 | u32 interval = beacon_interval * TIME_UNIT; |
| 5110 | |
| 5111 | if (!interval || !usec) |
| 5112 | return 0; |
| 5113 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5114 | quot = |
| 5115 | (usec / |
| 5116 | interval) & (il_beacon_time_mask_high(il, |
| 5117 | il->hw_params. |
| 5118 | beacon_time_tsf_bits) >> il-> |
| 5119 | hw_params.beacon_time_tsf_bits); |
| 5120 | rem = |
| 5121 | (usec % interval) & il_beacon_time_mask_low(il, |
| 5122 | il->hw_params. |
| 5123 | beacon_time_tsf_bits); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5124 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5125 | return (quot << il->hw_params.beacon_time_tsf_bits) + rem; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5126 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5127 | EXPORT_SYMBOL(il_usecs_to_beacons); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5128 | |
| 5129 | /* base is usually what we get from ucode with each received frame, |
| 5130 | * the same as HW timer counter counting down |
| 5131 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5132 | __le32 |
Stanislaw Gruszka | 1722f8e | 2011-11-15 14:51:01 +0100 | [diff] [blame] | 5133 | il_add_beacon_time(struct il_priv *il, u32 base, u32 addon, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5134 | u32 beacon_interval) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5135 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5136 | u32 base_low = base & il_beacon_time_mask_low(il, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5137 | il->hw_params. |
| 5138 | beacon_time_tsf_bits); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5139 | u32 addon_low = addon & il_beacon_time_mask_low(il, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5140 | il->hw_params. |
| 5141 | beacon_time_tsf_bits); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5142 | u32 interval = beacon_interval * TIME_UNIT; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5143 | u32 res = (base & il_beacon_time_mask_high(il, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5144 | il->hw_params. |
| 5145 | beacon_time_tsf_bits)) + |
| 5146 | (addon & il_beacon_time_mask_high(il, |
| 5147 | il->hw_params. |
| 5148 | beacon_time_tsf_bits)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5149 | |
| 5150 | if (base_low > addon_low) |
| 5151 | res += base_low - addon_low; |
| 5152 | else if (base_low < addon_low) { |
| 5153 | res += interval + base_low - addon_low; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5154 | res += (1 << il->hw_params.beacon_time_tsf_bits); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5155 | } else |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5156 | res += (1 << il->hw_params.beacon_time_tsf_bits); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5157 | |
| 5158 | return cpu_to_le32(res); |
| 5159 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5160 | EXPORT_SYMBOL(il_add_beacon_time); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5161 | |
| 5162 | #ifdef CONFIG_PM |
| 5163 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5164 | int |
| 5165 | il_pci_suspend(struct device *device) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5166 | { |
| 5167 | struct pci_dev *pdev = to_pci_dev(device); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5168 | struct il_priv *il = pci_get_drvdata(pdev); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5169 | |
| 5170 | /* |
| 5171 | * This function is called when system goes into suspend state |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5172 | * mac80211 will call il_mac_stop() from the mac80211 suspend function |
| 5173 | * 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] | 5174 | * it will not call apm_ops.stop() to stop the DMA operation. |
| 5175 | * Calling apm_ops.stop here to make sure we stop the DMA. |
| 5176 | */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5177 | il_apm_stop(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5178 | |
| 5179 | return 0; |
| 5180 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5181 | EXPORT_SYMBOL(il_pci_suspend); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5182 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5183 | int |
| 5184 | il_pci_resume(struct device *device) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5185 | { |
| 5186 | struct pci_dev *pdev = to_pci_dev(device); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5187 | struct il_priv *il = pci_get_drvdata(pdev); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5188 | bool hw_rfkill = false; |
| 5189 | |
| 5190 | /* |
| 5191 | * We disable the RETRY_TIMEOUT register (0x41) to keep |
| 5192 | * PCI Tx retries from interfering with C3 CPU state. |
| 5193 | */ |
| 5194 | pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00); |
| 5195 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5196 | il_enable_interrupts(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5197 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5198 | 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] | 5199 | hw_rfkill = true; |
| 5200 | |
| 5201 | if (hw_rfkill) |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5202 | set_bit(S_RF_KILL_HW, &il->status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5203 | else |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5204 | clear_bit(S_RF_KILL_HW, &il->status); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5205 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5206 | wiphy_rfkill_set_hw_state(il->hw->wiphy, hw_rfkill); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5207 | |
| 5208 | return 0; |
| 5209 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5210 | EXPORT_SYMBOL(il_pci_resume); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5211 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5212 | const struct dev_pm_ops il_pm_ops = { |
| 5213 | .suspend = il_pci_suspend, |
| 5214 | .resume = il_pci_resume, |
| 5215 | .freeze = il_pci_suspend, |
| 5216 | .thaw = il_pci_resume, |
| 5217 | .poweroff = il_pci_suspend, |
| 5218 | .restore = il_pci_resume, |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5219 | }; |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5220 | EXPORT_SYMBOL(il_pm_ops); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5221 | |
| 5222 | #endif /* CONFIG_PM */ |
| 5223 | |
| 5224 | static void |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5225 | il_update_qos(struct il_priv *il, struct il_rxon_context *ctx) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5226 | { |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5227 | if (test_bit(S_EXIT_PENDING, &il->status)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5228 | return; |
| 5229 | |
| 5230 | if (!ctx->is_active) |
| 5231 | return; |
| 5232 | |
Stanislaw Gruszka | 8d44f2b | 2012-02-03 17:31:51 +0100 | [diff] [blame] | 5233 | il->qos_data.def_qos_parm.qos_flags = 0; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5234 | |
Stanislaw Gruszka | 8d44f2b | 2012-02-03 17:31:51 +0100 | [diff] [blame] | 5235 | if (il->qos_data.qos_active) |
| 5236 | il->qos_data.def_qos_parm.qos_flags |= |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5237 | QOS_PARAM_FLG_UPDATE_EDCA_MSK; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5238 | |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 5239 | if (il->ht.enabled) |
Stanislaw Gruszka | 8d44f2b | 2012-02-03 17:31:51 +0100 | [diff] [blame] | 5240 | 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] | 5241 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5242 | 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] | 5243 | 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] | 5244 | |
Stanislaw Gruszka | b96ed60 | 2012-02-03 17:31:41 +0100 | [diff] [blame] | 5245 | 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] | 5246 | &il->qos_data.def_qos_parm, NULL); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5247 | } |
| 5248 | |
| 5249 | /** |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5250 | * il_mac_config - mac80211 config callback |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5251 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5252 | int |
| 5253 | il_mac_config(struct ieee80211_hw *hw, u32 changed) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5254 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5255 | struct il_priv *il = hw->priv; |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5256 | const struct il_channel_info *ch_info; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5257 | struct ieee80211_conf *conf = &hw->conf; |
| 5258 | struct ieee80211_channel *channel = conf->channel; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5259 | struct il_ht_config *ht_conf = &il->current_ht_config; |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5260 | struct il_rxon_context *ctx = &il->ctx; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5261 | unsigned long flags = 0; |
| 5262 | int ret = 0; |
| 5263 | u16 ch; |
| 5264 | int scan_active = 0; |
Stanislaw Gruszka | 7c2cde2 | 2011-11-15 11:29:04 +0100 | [diff] [blame] | 5265 | bool ht_changed = false; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5266 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5267 | if (WARN_ON(!il->cfg->ops->legacy)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5268 | return -EOPNOTSUPP; |
| 5269 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5270 | mutex_lock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5271 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5272 | D_MAC80211("enter to channel %d changed 0x%X\n", channel->hw_value, |
| 5273 | changed); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5274 | |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5275 | if (unlikely(test_bit(S_SCANNING, &il->status))) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5276 | scan_active = 1; |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5277 | D_MAC80211("scan active\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5278 | } |
| 5279 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5280 | if (changed & |
| 5281 | (IEEE80211_CONF_CHANGE_SMPS | IEEE80211_CONF_CHANGE_CHANNEL)) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5282 | /* mac80211 uses static for non-HT which is what we want */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5283 | il->current_ht_config.smps = conf->smps_mode; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5284 | |
| 5285 | /* |
| 5286 | * Recalculate chain counts. |
| 5287 | * |
| 5288 | * If monitor mode is enabled then mac80211 will |
| 5289 | * set up the SM PS mode to OFF if an HT channel is |
| 5290 | * configured. |
| 5291 | */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5292 | if (il->cfg->ops->hcmd->set_rxon_chain) |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5293 | il->cfg->ops->hcmd->set_rxon_chain(il, &il->ctx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5294 | } |
| 5295 | |
| 5296 | /* during scanning mac80211 will delay channel setting until |
| 5297 | * scan finish with changed = 0 |
| 5298 | */ |
| 5299 | if (!changed || (changed & IEEE80211_CONF_CHANGE_CHANNEL)) { |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5300 | |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5301 | if (scan_active) |
| 5302 | goto set_ch_out; |
| 5303 | |
| 5304 | ch = channel->hw_value; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5305 | ch_info = il_get_channel_info(il, channel->band, ch); |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5306 | if (!il_is_channel_valid(ch_info)) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5307 | D_MAC80211("leave - invalid channel\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5308 | ret = -EINVAL; |
| 5309 | goto set_ch_out; |
| 5310 | } |
| 5311 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5312 | if (il->iw_mode == NL80211_IFTYPE_ADHOC && |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5313 | !il_is_channel_ibss(ch_info)) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5314 | D_MAC80211("leave - not IBSS channel\n"); |
Stanislaw Gruszka | eb85de3 | 2011-05-07 17:46:21 +0200 | [diff] [blame] | 5315 | ret = -EINVAL; |
| 5316 | goto set_ch_out; |
| 5317 | } |
| 5318 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5319 | spin_lock_irqsave(&il->lock, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5320 | |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5321 | /* Configure HT40 channels */ |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 5322 | if (il->ht.enabled != conf_is_ht(conf)) { |
| 5323 | il->ht.enabled = conf_is_ht(conf); |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5324 | ht_changed = true; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5325 | } |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 5326 | if (il->ht.enabled) { |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5327 | if (conf_is_ht40_minus(conf)) { |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 5328 | il->ht.extension_chan_offset = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5329 | IEEE80211_HT_PARAM_CHA_SEC_BELOW; |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 5330 | il->ht.is_40mhz = true; |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5331 | } else if (conf_is_ht40_plus(conf)) { |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 5332 | il->ht.extension_chan_offset = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5333 | IEEE80211_HT_PARAM_CHA_SEC_ABOVE; |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 5334 | il->ht.is_40mhz = true; |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5335 | } else { |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 5336 | il->ht.extension_chan_offset = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5337 | IEEE80211_HT_PARAM_CHA_SEC_NONE; |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 5338 | il->ht.is_40mhz = false; |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5339 | } |
| 5340 | } else |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 5341 | il->ht.is_40mhz = false; |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5342 | |
| 5343 | /* |
| 5344 | * Default to no protection. Protection mode will |
| 5345 | * later be set from BSS config in il_ht_conf |
| 5346 | */ |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 5347 | il->ht.protection = IEEE80211_HT_OP_MODE_PROTECTION_NONE; |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5348 | |
| 5349 | /* if we are switching from ht to 2.4 clear flags |
| 5350 | * from any ht related info since 2.4 does not |
| 5351 | * support ht */ |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5352 | if ((le16_to_cpu(il->staging.channel) != ch)) |
| 5353 | il->staging.flags = 0; |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5354 | |
| 5355 | il_set_rxon_channel(il, channel, ctx); |
| 5356 | il_set_rxon_ht(il, ht_conf); |
| 5357 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5358 | il_set_flags_for_band(il, ctx, channel->band, ctx->vif); |
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 | spin_unlock_irqrestore(&il->lock, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5361 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5362 | if (il->cfg->ops->legacy->update_bcast_stations) |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5363 | ret = il->cfg->ops->legacy->update_bcast_stations(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5364 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5365 | set_ch_out: |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5366 | /* The list of supported rates and rate mask can be different |
| 5367 | * for each band; since the band may have changed, reset |
| 5368 | * the rate mask to what mac80211 lists */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5369 | il_set_rate(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5370 | } |
| 5371 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5372 | if (changed & (IEEE80211_CONF_CHANGE_PS | IEEE80211_CONF_CHANGE_IDLE)) { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5373 | ret = il_power_update_mode(il, false); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5374 | if (ret) |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5375 | D_MAC80211("Error setting sleep level\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5376 | } |
| 5377 | |
| 5378 | if (changed & IEEE80211_CONF_CHANGE_POWER) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5379 | D_MAC80211("TX Power old=%d new=%d\n", il->tx_power_user_lmt, |
| 5380 | conf->power_level); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5381 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5382 | il_set_tx_power(il, conf->power_level, false); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5383 | } |
| 5384 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5385 | if (!il_is_ready(il)) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5386 | D_MAC80211("leave - not ready\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5387 | goto out; |
| 5388 | } |
| 5389 | |
| 5390 | if (scan_active) |
| 5391 | goto out; |
| 5392 | |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5393 | if (memcmp(&il->active, &il->staging, sizeof(il->staging))) |
Stanislaw Gruszka | 17d6e55 | 2011-08-29 12:52:20 +0200 | [diff] [blame] | 5394 | il_commit_rxon(il, ctx); |
| 5395 | else |
| 5396 | D_INFO("Not re-sending same RXON configuration.\n"); |
| 5397 | if (ht_changed) |
| 5398 | il_update_qos(il, ctx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5399 | |
| 5400 | out: |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5401 | D_MAC80211("leave\n"); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5402 | mutex_unlock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5403 | return ret; |
| 5404 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5405 | EXPORT_SYMBOL(il_mac_config); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5406 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5407 | void |
| 5408 | 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] | 5409 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5410 | struct il_priv *il = hw->priv; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5411 | unsigned long flags; |
Stanislaw Gruszka | 7c2cde2 | 2011-11-15 11:29:04 +0100 | [diff] [blame] | 5412 | struct il_rxon_context *ctx = &il->ctx; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5413 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5414 | if (WARN_ON(!il->cfg->ops->legacy)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5415 | return; |
| 5416 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5417 | mutex_lock(&il->mutex); |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5418 | D_MAC80211("enter\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5419 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5420 | spin_lock_irqsave(&il->lock, flags); |
| 5421 | memset(&il->current_ht_config, 0, sizeof(struct il_ht_config)); |
| 5422 | spin_unlock_irqrestore(&il->lock, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5423 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5424 | spin_lock_irqsave(&il->lock, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5425 | |
| 5426 | /* new association get rid of ibss beacon skb */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5427 | if (il->beacon_skb) |
| 5428 | dev_kfree_skb(il->beacon_skb); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5429 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5430 | il->beacon_skb = NULL; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5431 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5432 | il->timestamp = 0; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5433 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5434 | spin_unlock_irqrestore(&il->lock, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5435 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5436 | il_scan_cancel_timeout(il, 100); |
| 5437 | if (!il_is_ready_rf(il)) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5438 | D_MAC80211("leave - not ready\n"); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5439 | mutex_unlock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5440 | return; |
| 5441 | } |
| 5442 | |
| 5443 | /* we are restarting association process |
| 5444 | * clear RXON_FILTER_ASSOC_MSK bit |
| 5445 | */ |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5446 | il->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5447 | il_commit_rxon(il, ctx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5448 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5449 | il_set_rate(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5450 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5451 | mutex_unlock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5452 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5453 | D_MAC80211("leave\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5454 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5455 | EXPORT_SYMBOL(il_mac_reset_tsf); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5456 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5457 | static void |
| 5458 | il_ht_conf(struct il_priv *il, struct ieee80211_vif *vif) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5459 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5460 | struct il_ht_config *ht_conf = &il->current_ht_config; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5461 | struct ieee80211_sta *sta; |
| 5462 | struct ieee80211_bss_conf *bss_conf = &vif->bss_conf; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5463 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5464 | D_ASSOC("enter:\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5465 | |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 5466 | if (!il->ht.enabled) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5467 | return; |
| 5468 | |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 5469 | il->ht.protection = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5470 | bss_conf->ht_operation_mode & IEEE80211_HT_OP_MODE_PROTECTION; |
Stanislaw Gruszka | 1c03c46 | 2012-02-03 17:31:52 +0100 | [diff] [blame^] | 5471 | il->ht.non_gf_sta_present = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5472 | !!(bss_conf-> |
| 5473 | ht_operation_mode & IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5474 | |
| 5475 | ht_conf->single_chain_sufficient = false; |
| 5476 | |
| 5477 | switch (vif->type) { |
| 5478 | case NL80211_IFTYPE_STATION: |
| 5479 | rcu_read_lock(); |
| 5480 | sta = ieee80211_find_sta(vif, bss_conf->bssid); |
| 5481 | if (sta) { |
| 5482 | struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap; |
| 5483 | int maxstreams; |
| 5484 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5485 | maxstreams = |
| 5486 | (ht_cap->mcs. |
| 5487 | tx_params & IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK) |
| 5488 | >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5489 | maxstreams += 1; |
| 5490 | |
Stanislaw Gruszka | 232913b | 2011-08-26 10:45:16 +0200 | [diff] [blame] | 5491 | if (ht_cap->mcs.rx_mask[1] == 0 && |
| 5492 | ht_cap->mcs.rx_mask[2] == 0) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5493 | ht_conf->single_chain_sufficient = true; |
| 5494 | if (maxstreams <= 1) |
| 5495 | ht_conf->single_chain_sufficient = true; |
| 5496 | } else { |
| 5497 | /* |
| 5498 | * If at all, this can only happen through a race |
| 5499 | * when the AP disconnects us while we're still |
| 5500 | * setting up the connection, in that case mac80211 |
| 5501 | * will soon tell us about that. |
| 5502 | */ |
| 5503 | ht_conf->single_chain_sufficient = true; |
| 5504 | } |
| 5505 | rcu_read_unlock(); |
| 5506 | break; |
| 5507 | case NL80211_IFTYPE_ADHOC: |
| 5508 | ht_conf->single_chain_sufficient = true; |
| 5509 | break; |
| 5510 | default: |
| 5511 | break; |
| 5512 | } |
| 5513 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5514 | D_ASSOC("leave\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5515 | } |
| 5516 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5517 | static inline void |
| 5518 | 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] | 5519 | { |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5520 | struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5521 | |
| 5522 | /* |
| 5523 | * inform the ucode that there is no longer an |
| 5524 | * association and that no more packets should be |
| 5525 | * sent |
| 5526 | */ |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5527 | il->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
| 5528 | il->staging.assoc_id = 0; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5529 | il_commit_rxon(il, ctx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5530 | } |
| 5531 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5532 | static void |
| 5533 | il_beacon_update(struct ieee80211_hw *hw, struct ieee80211_vif *vif) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5534 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5535 | struct il_priv *il = hw->priv; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5536 | unsigned long flags; |
| 5537 | __le64 timestamp; |
| 5538 | struct sk_buff *skb = ieee80211_beacon_get(hw, vif); |
| 5539 | |
| 5540 | if (!skb) |
| 5541 | return; |
| 5542 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5543 | D_MAC80211("enter\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5544 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5545 | lockdep_assert_held(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5546 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5547 | if (!il->beacon_ctx) { |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 5548 | IL_ERR("update beacon but no beacon context!\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5549 | dev_kfree_skb(skb); |
| 5550 | return; |
| 5551 | } |
| 5552 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5553 | spin_lock_irqsave(&il->lock, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5554 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5555 | if (il->beacon_skb) |
| 5556 | dev_kfree_skb(il->beacon_skb); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5557 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5558 | il->beacon_skb = skb; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5559 | |
| 5560 | timestamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5561 | il->timestamp = le64_to_cpu(timestamp); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5562 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5563 | D_MAC80211("leave\n"); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5564 | spin_unlock_irqrestore(&il->lock, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5565 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5566 | if (!il_is_ready_rf(il)) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5567 | D_MAC80211("leave - RF not ready\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5568 | return; |
| 5569 | } |
| 5570 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5571 | il->cfg->ops->legacy->post_associate(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5572 | } |
| 5573 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5574 | void |
| 5575 | il_mac_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
| 5576 | struct ieee80211_bss_conf *bss_conf, u32 changes) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5577 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5578 | struct il_priv *il = hw->priv; |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5579 | struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5580 | int ret; |
| 5581 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5582 | if (WARN_ON(!il->cfg->ops->legacy)) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5583 | return; |
| 5584 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5585 | D_MAC80211("changes = 0x%X\n", changes); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5586 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5587 | mutex_lock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5588 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5589 | if (!il_is_alive(il)) { |
| 5590 | mutex_unlock(&il->mutex); |
Stanislaw Gruszka | 28a6e57 | 2011-04-28 11:51:32 +0200 | [diff] [blame] | 5591 | return; |
| 5592 | } |
| 5593 | |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5594 | if (changes & BSS_CHANGED_QOS) { |
| 5595 | unsigned long flags; |
| 5596 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5597 | spin_lock_irqsave(&il->lock, flags); |
Stanislaw Gruszka | 8d44f2b | 2012-02-03 17:31:51 +0100 | [diff] [blame] | 5598 | il->qos_data.qos_active = bss_conf->qos; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5599 | il_update_qos(il, ctx); |
| 5600 | spin_unlock_irqrestore(&il->lock, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5601 | } |
| 5602 | |
| 5603 | if (changes & BSS_CHANGED_BEACON_ENABLED) { |
| 5604 | /* |
| 5605 | * the add_interface code must make sure we only ever |
| 5606 | * have a single interface that could be beaconing at |
| 5607 | * any time. |
| 5608 | */ |
| 5609 | if (vif->bss_conf.enable_beacon) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5610 | il->beacon_ctx = ctx; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5611 | else |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5612 | il->beacon_ctx = NULL; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5613 | } |
| 5614 | |
| 5615 | if (changes & BSS_CHANGED_BSSID) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5616 | D_MAC80211("BSSID %pM\n", bss_conf->bssid); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5617 | |
| 5618 | /* |
| 5619 | * If there is currently a HW scan going on in the |
| 5620 | * background then we need to cancel it else the RXON |
| 5621 | * below/in post_associate will fail. |
| 5622 | */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5623 | if (il_scan_cancel_timeout(il, 100)) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5624 | IL_WARN("Aborted scan still in progress after 100ms\n"); |
| 5625 | D_MAC80211("leaving - scan abort failed.\n"); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5626 | mutex_unlock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5627 | return; |
| 5628 | } |
| 5629 | |
| 5630 | /* mac80211 only sets assoc when in STATION mode */ |
| 5631 | if (vif->type == NL80211_IFTYPE_ADHOC || bss_conf->assoc) { |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5632 | memcpy(il->staging.bssid_addr, bss_conf->bssid, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5633 | ETH_ALEN); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5634 | |
| 5635 | /* currently needed in a few places */ |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5636 | memcpy(il->bssid, bss_conf->bssid, ETH_ALEN); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5637 | } else { |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5638 | il->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5639 | } |
| 5640 | |
| 5641 | } |
| 5642 | |
| 5643 | /* |
| 5644 | * This needs to be after setting the BSSID in case |
| 5645 | * mac80211 decides to do both changes at once because |
| 5646 | * it will invoke post_associate. |
| 5647 | */ |
Stanislaw Gruszka | 232913b | 2011-08-26 10:45:16 +0200 | [diff] [blame] | 5648 | if (vif->type == NL80211_IFTYPE_ADHOC && (changes & BSS_CHANGED_BEACON)) |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5649 | il_beacon_update(hw, vif); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5650 | |
| 5651 | if (changes & BSS_CHANGED_ERP_PREAMBLE) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5652 | D_MAC80211("ERP_PREAMBLE %d\n", bss_conf->use_short_preamble); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5653 | if (bss_conf->use_short_preamble) |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5654 | il->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5655 | else |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5656 | il->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5657 | } |
| 5658 | |
| 5659 | if (changes & BSS_CHANGED_ERP_CTS_PROT) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5660 | D_MAC80211("ERP_CTS %d\n", bss_conf->use_cts_prot); |
Stanislaw Gruszka | 232913b | 2011-08-26 10:45:16 +0200 | [diff] [blame] | 5661 | if (bss_conf->use_cts_prot && il->band != IEEE80211_BAND_5GHZ) |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5662 | il->staging.flags |= RXON_FLG_TGG_PROTECT_MSK; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5663 | else |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5664 | il->staging.flags &= ~RXON_FLG_TGG_PROTECT_MSK; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5665 | if (bss_conf->use_cts_prot) |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5666 | il->staging.flags |= RXON_FLG_SELF_CTS_EN; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5667 | else |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5668 | il->staging.flags &= ~RXON_FLG_SELF_CTS_EN; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5669 | } |
| 5670 | |
| 5671 | if (changes & BSS_CHANGED_BASIC_RATES) { |
| 5672 | /* XXX use this information |
| 5673 | * |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5674 | * 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] | 5675 | * like this here: |
| 5676 | * |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5677 | if (A-band) |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5678 | il->staging.ofdm_basic_rates = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5679 | bss_conf->basic_rates; |
| 5680 | else |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5681 | il->staging.ofdm_basic_rates = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5682 | bss_conf->basic_rates >> 4; |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5683 | il->staging.cck_basic_rates = |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5684 | bss_conf->basic_rates & 0xF; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5685 | */ |
| 5686 | } |
| 5687 | |
| 5688 | if (changes & BSS_CHANGED_HT) { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5689 | il_ht_conf(il, vif); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5690 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5691 | if (il->cfg->ops->hcmd->set_rxon_chain) |
| 5692 | il->cfg->ops->hcmd->set_rxon_chain(il, ctx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5693 | } |
| 5694 | |
| 5695 | if (changes & BSS_CHANGED_ASSOC) { |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5696 | D_MAC80211("ASSOC %d\n", bss_conf->assoc); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5697 | if (bss_conf->assoc) { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5698 | il->timestamp = bss_conf->timestamp; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5699 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5700 | if (!il_is_rfkill(il)) |
| 5701 | il->cfg->ops->legacy->post_associate(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5702 | } else |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5703 | il_set_no_assoc(il, vif); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5704 | } |
| 5705 | |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5706 | if (changes && il_is_associated(il) && bss_conf->aid) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5707 | D_MAC80211("Changes (%#x) while associated\n", changes); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5708 | ret = il_send_rxon_assoc(il, ctx); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5709 | if (!ret) { |
| 5710 | /* Sync active_rxon with latest change. */ |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5711 | memcpy((void *)&il->active, &il->staging, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5712 | sizeof(struct il_rxon_cmd)); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5713 | } |
| 5714 | } |
| 5715 | |
| 5716 | if (changes & BSS_CHANGED_BEACON_ENABLED) { |
| 5717 | if (vif->bss_conf.enable_beacon) { |
Stanislaw Gruszka | c8b0395 | 2012-02-03 17:31:37 +0100 | [diff] [blame] | 5718 | memcpy(il->staging.bssid_addr, bss_conf->bssid, |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5719 | ETH_ALEN); |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5720 | memcpy(il->bssid, bss_conf->bssid, ETH_ALEN); |
| 5721 | il->cfg->ops->legacy->config_ap(il); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5722 | } else |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5723 | il_set_no_assoc(il, vif); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5724 | } |
| 5725 | |
| 5726 | if (changes & BSS_CHANGED_IBSS) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5727 | ret = |
| 5728 | il->cfg->ops->legacy->manage_ibss_station(il, vif, |
| 5729 | bss_conf-> |
| 5730 | ibss_joined); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5731 | if (ret) |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 5732 | IL_ERR("failed to %s IBSS station %pM\n", |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5733 | bss_conf->ibss_joined ? "add" : "remove", |
| 5734 | bss_conf->bssid); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5735 | } |
| 5736 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5737 | mutex_unlock(&il->mutex); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5738 | |
Stanislaw Gruszka | 58de00a | 2011-11-15 11:21:01 +0100 | [diff] [blame] | 5739 | D_MAC80211("leave\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5740 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5741 | EXPORT_SYMBOL(il_mac_bss_info_changed); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5742 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5743 | irqreturn_t |
| 5744 | il_isr(int irq, void *data) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5745 | { |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5746 | struct il_priv *il = data; |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5747 | u32 inta, inta_mask; |
| 5748 | u32 inta_fh; |
| 5749 | unsigned long flags; |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5750 | if (!il) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5751 | return IRQ_NONE; |
| 5752 | |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5753 | spin_lock_irqsave(&il->lock, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5754 | |
| 5755 | /* Disable (but don't clear!) interrupts here to avoid |
| 5756 | * back-to-back ISRs and sporadic interrupts from our NIC. |
| 5757 | * If we have something to service, the tasklet will re-enable ints. |
| 5758 | * 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] | 5759 | inta_mask = _il_rd(il, CSR_INT_MASK); /* just for debug */ |
Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 5760 | _il_wr(il, CSR_INT_MASK, 0x00000000); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5761 | |
| 5762 | /* Discover which interrupts are active/pending */ |
Stanislaw Gruszka | 841b2cc | 2011-08-24 15:14:03 +0200 | [diff] [blame] | 5763 | inta = _il_rd(il, CSR_INT); |
| 5764 | inta_fh = _il_rd(il, CSR_FH_INT_STATUS); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5765 | |
| 5766 | /* Ignore interrupt if there's nothing in NIC to service. |
| 5767 | * This may be due to IRQ shared with another device, |
| 5768 | * or due to sporadic interrupts thrown from our NIC. */ |
| 5769 | if (!inta && !inta_fh) { |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5770 | D_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n"); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5771 | goto none; |
| 5772 | } |
| 5773 | |
Stanislaw Gruszka | 232913b | 2011-08-26 10:45:16 +0200 | [diff] [blame] | 5774 | if (inta == 0xFFFFFFFF || (inta & 0xFFFFFFF0) == 0xa5a5a5a0) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5775 | /* Hardware disappeared. It might have already raised |
| 5776 | * an interrupt */ |
Stanislaw Gruszka | 9406f79 | 2011-08-18 22:07:57 +0200 | [diff] [blame] | 5777 | IL_WARN("HARDWARE GONE?? INTA == 0x%08x\n", inta); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5778 | goto unplugged; |
| 5779 | } |
| 5780 | |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5781 | D_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n", inta, inta_mask, |
| 5782 | inta_fh); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5783 | |
| 5784 | inta &= ~CSR_INT_BIT_SCD; |
| 5785 | |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5786 | /* il_irq_tasklet() will service interrupts and re-enable them */ |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5787 | if (likely(inta || inta_fh)) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5788 | tasklet_schedule(&il->irq_tasklet); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5789 | |
| 5790 | unplugged: |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5791 | spin_unlock_irqrestore(&il->lock, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5792 | return IRQ_HANDLED; |
| 5793 | |
| 5794 | none: |
| 5795 | /* re-enable interrupts here since we don't have anything to service. */ |
Stanislaw Gruszka | 93fd74e | 2011-04-28 11:51:30 +0200 | [diff] [blame] | 5796 | /* only Re-enable if disabled by irq */ |
Stanislaw Gruszka | a6766cc | 2011-11-15 13:09:01 +0100 | [diff] [blame] | 5797 | if (test_bit(S_INT_ENABLED, &il->status)) |
Stanislaw Gruszka | 46bc8d4 | 2011-10-24 16:49:25 +0200 | [diff] [blame] | 5798 | il_enable_interrupts(il); |
| 5799 | spin_unlock_irqrestore(&il->lock, flags); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5800 | return IRQ_NONE; |
| 5801 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5802 | EXPORT_SYMBOL(il_isr); |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5803 | |
| 5804 | /* |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5805 | * 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] | 5806 | * function. |
| 5807 | */ |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5808 | void |
| 5809 | 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] | 5810 | __le16 fc, __le32 *tx_flags) |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5811 | { |
| 5812 | if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) { |
| 5813 | *tx_flags |= TX_CMD_FLG_RTS_MSK; |
| 5814 | *tx_flags &= ~TX_CMD_FLG_CTS_MSK; |
| 5815 | *tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK; |
| 5816 | |
| 5817 | if (!ieee80211_is_mgmt(fc)) |
| 5818 | return; |
| 5819 | |
| 5820 | switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) { |
| 5821 | case cpu_to_le16(IEEE80211_STYPE_AUTH): |
| 5822 | case cpu_to_le16(IEEE80211_STYPE_DEAUTH): |
| 5823 | case cpu_to_le16(IEEE80211_STYPE_ASSOC_REQ): |
| 5824 | case cpu_to_le16(IEEE80211_STYPE_REASSOC_REQ): |
| 5825 | *tx_flags &= ~TX_CMD_FLG_RTS_MSK; |
| 5826 | *tx_flags |= TX_CMD_FLG_CTS_MSK; |
| 5827 | break; |
| 5828 | } |
Stanislaw Gruszka | e739236 | 2011-11-15 14:45:59 +0100 | [diff] [blame] | 5829 | } else if (info->control.rates[0]. |
| 5830 | flags & IEEE80211_TX_RC_USE_CTS_PROTECT) { |
Wey-Yi Guy | be663ab | 2011-02-21 11:27:26 -0800 | [diff] [blame] | 5831 | *tx_flags &= ~TX_CMD_FLG_RTS_MSK; |
| 5832 | *tx_flags |= TX_CMD_FLG_CTS_MSK; |
| 5833 | *tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK; |
| 5834 | } |
| 5835 | } |
Stanislaw Gruszka | e2ebc83 | 2011-10-24 15:41:30 +0200 | [diff] [blame] | 5836 | EXPORT_SYMBOL(il_tx_cmd_protection); |