Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
Reinette Chatre | 1f44780 | 2010-01-15 13:43:41 -0800 | [diff] [blame] | 3 | * Copyright(c) 2003 - 2010 Intel Corporation. All rights reserved. |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4 | * |
| 5 | * Portions of this file are derived from the ipw3945 project, as well |
| 6 | * as portions of the ieee80211 subsystem header files. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify it |
| 9 | * under the terms of version 2 of the GNU General Public License as |
| 10 | * published by the Free Software Foundation. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 13 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 14 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 15 | * more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License along with |
| 18 | * this program; if not, write to the Free Software Foundation, Inc., |
| 19 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA |
| 20 | * |
| 21 | * The full GNU General Public License is included in this distribution in the |
| 22 | * file called LICENSE. |
| 23 | * |
| 24 | * Contact Information: |
Winkler, Tomas | 759ef89 | 2008-12-09 11:28:58 -0800 | [diff] [blame] | 25 | * Intel Linux Wireless <ilw@linux.intel.com> |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 26 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 27 | * |
| 28 | *****************************************************************************/ |
| 29 | |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 30 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 31 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 32 | #include <linux/kernel.h> |
| 33 | #include <linux/module.h> |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 34 | #include <linux/init.h> |
| 35 | #include <linux/pci.h> |
John W. Linville | 1a7123c | 2010-08-05 14:39:31 -0400 | [diff] [blame] | 36 | #include <linux/pci-aspm.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 37 | #include <linux/slab.h> |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 38 | #include <linux/dma-mapping.h> |
| 39 | #include <linux/delay.h> |
Alexey Dobriyan | d43c36d | 2009-10-07 17:09:06 +0400 | [diff] [blame] | 40 | #include <linux/sched.h> |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 41 | #include <linux/skbuff.h> |
| 42 | #include <linux/netdevice.h> |
| 43 | #include <linux/wireless.h> |
| 44 | #include <linux/firmware.h> |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 45 | #include <linux/etherdevice.h> |
| 46 | #include <linux/if_arp.h> |
| 47 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 48 | #include <net/mac80211.h> |
| 49 | |
| 50 | #include <asm/div64.h> |
| 51 | |
Samuel Ortiz | a3139c5 | 2008-12-19 10:37:09 +0800 | [diff] [blame] | 52 | #define DRV_NAME "iwlagn" |
| 53 | |
Assaf Krauss | 6bc913b | 2008-03-11 16:17:18 -0700 | [diff] [blame] | 54 | #include "iwl-eeprom.h" |
Tomas Winkler | 3e0d4cb | 2008-04-24 11:55:38 -0700 | [diff] [blame] | 55 | #include "iwl-dev.h" |
Tomas Winkler | fee1247 | 2008-04-03 16:05:21 -0700 | [diff] [blame] | 56 | #include "iwl-core.h" |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 57 | #include "iwl-io.h" |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 58 | #include "iwl-helpers.h" |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 59 | #include "iwl-sta.h" |
Emmanuel Grumbach | f0832f1 | 2008-04-16 16:34:47 -0700 | [diff] [blame] | 60 | #include "iwl-calib.h" |
Johannes Berg | a117512 | 2010-01-21 06:21:10 -0800 | [diff] [blame] | 61 | #include "iwl-agn.h" |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 62 | |
Christoph Hellwig | 416e143 | 2007-10-25 17:15:49 +0800 | [diff] [blame] | 63 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 64 | /****************************************************************************** |
| 65 | * |
| 66 | * module boiler plate |
| 67 | * |
| 68 | ******************************************************************************/ |
| 69 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 70 | /* |
| 71 | * module name, copyright, version, etc. |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 72 | */ |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 73 | #define DRV_DESCRIPTION "Intel(R) Wireless WiFi Link AGN driver for Linux" |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 74 | |
Tomas Winkler | 0a6857e | 2008-03-12 16:58:49 -0700 | [diff] [blame] | 75 | #ifdef CONFIG_IWLWIFI_DEBUG |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 76 | #define VD "d" |
| 77 | #else |
| 78 | #define VD |
| 79 | #endif |
| 80 | |
Reinette Chatre | 81963d6 | 2010-01-22 14:22:57 -0800 | [diff] [blame] | 81 | #define DRV_VERSION IWLWIFI_VERSION VD |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 82 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 83 | |
| 84 | MODULE_DESCRIPTION(DRV_DESCRIPTION); |
| 85 | MODULE_VERSION(DRV_VERSION); |
Tomas Winkler | a7b7520 | 2008-12-11 10:33:41 -0800 | [diff] [blame] | 86 | MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 87 | MODULE_LICENSE("GPL"); |
Tomas Winkler | 4fc22b2 | 2008-07-21 18:54:42 +0300 | [diff] [blame] | 88 | MODULE_ALIAS("iwl4965"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 89 | |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 90 | static int iwlagn_ant_coupling; |
Wey-Yi Guy | f37837c | 2010-08-23 07:57:12 -0700 | [diff] [blame] | 91 | static bool iwlagn_bt_ch_announce = 1; |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 92 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 93 | /** |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 94 | * iwl_commit_rxon - commit staging_rxon to hardware |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 95 | * |
Ian Schram | 01ebd06 | 2007-10-25 17:15:22 +0800 | [diff] [blame] | 96 | * The RXON command in staging_rxon is committed to the hardware and |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 97 | * the active_rxon structure is updated with the new data. This |
| 98 | * function correctly transitions out of the RXON_ASSOC_MSK state if |
| 99 | * a HW tune is required based on the RXON structure changes. |
| 100 | */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 101 | int iwl_commit_rxon(struct iwl_priv *priv, struct iwl_rxon_context *ctx) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 102 | { |
| 103 | /* cast away the const for active_rxon in this function */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 104 | struct iwl_rxon_cmd *active_rxon = (void *)&ctx->active; |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 105 | int ret; |
| 106 | bool new_assoc = |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 107 | !!(ctx->staging.filter_flags & RXON_FILTER_ASSOC_MSK); |
Johannes Berg | b01efe4 | 2010-08-23 10:46:56 +0200 | [diff] [blame] | 108 | bool old_assoc = !!(ctx->active.filter_flags & RXON_FILTER_ASSOC_MSK); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 109 | |
Tomas Winkler | fee1247 | 2008-04-03 16:05:21 -0700 | [diff] [blame] | 110 | if (!iwl_is_alive(priv)) |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 111 | return -EBUSY; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 112 | |
| 113 | /* always get timestamp with Rx frame */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 114 | ctx->staging.flags |= RXON_FLG_TSF2HOST_MSK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 115 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 116 | ret = iwl_check_rxon_cmd(priv, ctx); |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 117 | if (ret) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 118 | IWL_ERR(priv, "Invalid RXON configuration. Not committing.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 119 | return -EINVAL; |
| 120 | } |
| 121 | |
Wey-Yi Guy | 0924e519 | 2009-11-06 14:52:54 -0800 | [diff] [blame] | 122 | /* |
| 123 | * receive commit_rxon request |
| 124 | * abort any previous channel switch if still in process |
| 125 | */ |
| 126 | if (priv->switch_rxon.switch_in_progress && |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 127 | (priv->switch_rxon.channel != ctx->staging.channel)) { |
Wey-Yi Guy | 0924e519 | 2009-11-06 14:52:54 -0800 | [diff] [blame] | 128 | IWL_DEBUG_11H(priv, "abort channel switch on %d\n", |
| 129 | le16_to_cpu(priv->switch_rxon.channel)); |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 130 | iwl_chswitch_done(priv, false); |
Wey-Yi Guy | 0924e519 | 2009-11-06 14:52:54 -0800 | [diff] [blame] | 131 | } |
| 132 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 133 | /* If we don't need to send a full RXON, we can use |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 134 | * iwl_rxon_assoc_cmd which is used to reconfigure filter |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 135 | * and other flags for the current radio configuration. */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 136 | if (!iwl_full_rxon_required(priv, ctx)) { |
| 137 | ret = iwl_send_rxon_assoc(priv, ctx); |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 138 | if (ret) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 139 | IWL_ERR(priv, "Error setting RXON_ASSOC (%d)\n", ret); |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 140 | return ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 141 | } |
| 142 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 143 | memcpy(active_rxon, &ctx->staging, sizeof(*active_rxon)); |
| 144 | iwl_print_rx_config_cmd(priv, ctx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 145 | return 0; |
| 146 | } |
| 147 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 148 | /* If we are currently associated and the new config requires |
| 149 | * an RXON_ASSOC and the new config wants the associated mask enabled, |
| 150 | * we must clear the associated from the active configuration |
| 151 | * before we apply the new config */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 152 | if (iwl_is_associated_ctx(ctx) && new_assoc) { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 153 | IWL_DEBUG_INFO(priv, "Toggling associated bit on current RXON\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 154 | active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
| 155 | |
Johannes Berg | 8f2d3d2 | 2010-08-23 10:46:37 +0200 | [diff] [blame] | 156 | ret = iwl_send_cmd_pdu(priv, ctx->rxon_cmd, |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 157 | sizeof(struct iwl_rxon_cmd), |
| 158 | active_rxon); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 159 | |
| 160 | /* If the mask clearing failed then we set |
| 161 | * active_rxon back to what it was previously */ |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 162 | if (ret) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 163 | active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK; |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 164 | IWL_ERR(priv, "Error clearing ASSOC_MSK (%d)\n", ret); |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 165 | return ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 166 | } |
Johannes Berg | dcef732 | 2010-08-27 08:55:52 -0700 | [diff] [blame] | 167 | iwl_clear_ucode_stations(priv, ctx); |
| 168 | iwl_restore_stations(priv, ctx); |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 169 | ret = iwl_restore_default_wep_keys(priv, ctx); |
Johannes Berg | 335348b | 2010-03-30 10:11:46 -0700 | [diff] [blame] | 170 | if (ret) { |
| 171 | IWL_ERR(priv, "Failed to restore WEP keys (%d)\n", ret); |
| 172 | return ret; |
| 173 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 174 | } |
| 175 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 176 | IWL_DEBUG_INFO(priv, "Sending RXON\n" |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 177 | "* with%s RXON_FILTER_ASSOC_MSK\n" |
| 178 | "* channel = %d\n" |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 179 | "* bssid = %pM\n", |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 180 | (new_assoc ? "" : "out"), |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 181 | le16_to_cpu(ctx->staging.channel), |
| 182 | ctx->staging.bssid_addr); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 183 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 184 | iwl_set_rxon_hwcrypto(priv, ctx, !priv->cfg->mod_params->sw_crypto); |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 185 | |
Johannes Berg | b01efe4 | 2010-08-23 10:46:56 +0200 | [diff] [blame] | 186 | if (!old_assoc) { |
Johannes Berg | 2491fa4 | 2010-08-23 10:46:52 +0200 | [diff] [blame] | 187 | /* |
| 188 | * First of all, before setting associated, we need to |
| 189 | * send RXON timing so the device knows about the DTIM |
| 190 | * period and other timing values |
| 191 | */ |
Johannes Berg | 47313e3 | 2010-08-23 10:46:55 +0200 | [diff] [blame] | 192 | ret = iwl_send_rxon_timing(priv, ctx); |
Johannes Berg | 2491fa4 | 2010-08-23 10:46:52 +0200 | [diff] [blame] | 193 | if (ret) { |
| 194 | IWL_ERR(priv, "Error setting RXON timing!\n"); |
| 195 | return ret; |
| 196 | } |
| 197 | } |
| 198 | |
Johannes Berg | 52a02d1 | 2010-08-27 09:44:50 -0700 | [diff] [blame] | 199 | if (priv->cfg->ops->hcmd->set_pan_params) { |
| 200 | ret = priv->cfg->ops->hcmd->set_pan_params(priv); |
| 201 | if (ret) |
| 202 | return ret; |
| 203 | } |
| 204 | |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 205 | /* Apply the new configuration |
Reinette Chatre | 7e24619 | 2010-02-18 22:58:32 -0800 | [diff] [blame] | 206 | * RXON unassoc clears the station table in uCode so restoration of |
| 207 | * stations is needed after it (the RXON command) completes |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 208 | */ |
| 209 | if (!new_assoc) { |
Johannes Berg | 8f2d3d2 | 2010-08-23 10:46:37 +0200 | [diff] [blame] | 210 | ret = iwl_send_cmd_pdu(priv, ctx->rxon_cmd, |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 211 | sizeof(struct iwl_rxon_cmd), &ctx->staging); |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 212 | if (ret) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 213 | IWL_ERR(priv, "Error setting new RXON (%d)\n", ret); |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 214 | return ret; |
| 215 | } |
Frans Pop | 91dd6c2 | 2010-03-24 14:19:58 -0700 | [diff] [blame] | 216 | IWL_DEBUG_INFO(priv, "Return from !new_assoc RXON.\n"); |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 217 | memcpy(active_rxon, &ctx->staging, sizeof(*active_rxon)); |
Johannes Berg | dcef732 | 2010-08-27 08:55:52 -0700 | [diff] [blame] | 218 | iwl_clear_ucode_stations(priv, ctx); |
| 219 | iwl_restore_stations(priv, ctx); |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 220 | ret = iwl_restore_default_wep_keys(priv, ctx); |
Johannes Berg | 335348b | 2010-03-30 10:11:46 -0700 | [diff] [blame] | 221 | if (ret) { |
| 222 | IWL_ERR(priv, "Failed to restore WEP keys (%d)\n", ret); |
| 223 | return ret; |
| 224 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 225 | } |
| 226 | |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 227 | priv->start_calib = 0; |
Tomas Winkler | 9185159 | 2008-06-30 17:23:14 +0800 | [diff] [blame] | 228 | if (new_assoc) { |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 229 | /* Apply the new configuration |
| 230 | * RXON assoc doesn't clear the station table in uCode, |
| 231 | */ |
Johannes Berg | 8f2d3d2 | 2010-08-23 10:46:37 +0200 | [diff] [blame] | 232 | ret = iwl_send_cmd_pdu(priv, ctx->rxon_cmd, |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 233 | sizeof(struct iwl_rxon_cmd), &ctx->staging); |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 234 | if (ret) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 235 | IWL_ERR(priv, "Error setting new RXON (%d)\n", ret); |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 236 | return ret; |
| 237 | } |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 238 | memcpy(active_rxon, &ctx->staging, sizeof(*active_rxon)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 239 | } |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 240 | iwl_print_rx_config_cmd(priv, ctx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 241 | |
Zhu Yi | 36da7d7 | 2008-07-11 11:53:40 +0800 | [diff] [blame] | 242 | iwl_init_sensitivity(priv); |
| 243 | |
| 244 | /* If we issue a new RXON command which required a tune then we must |
| 245 | * send a new TXPOWER command or we won't be able to Tx any frames */ |
| 246 | ret = iwl_set_tx_power(priv, priv->tx_power_user_lmt, true); |
| 247 | if (ret) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 248 | IWL_ERR(priv, "Error sending TX power (%d)\n", ret); |
Zhu Yi | 36da7d7 | 2008-07-11 11:53:40 +0800 | [diff] [blame] | 249 | return ret; |
| 250 | } |
| 251 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 252 | return 0; |
| 253 | } |
| 254 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 255 | void iwl_update_chain_flags(struct iwl_priv *priv) |
Mohamed Abbas | 5da4b55 | 2008-04-21 15:41:51 -0700 | [diff] [blame] | 256 | { |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 257 | struct iwl_rxon_context *ctx; |
Mohamed Abbas | 5da4b55 | 2008-04-21 15:41:51 -0700 | [diff] [blame] | 258 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 259 | if (priv->cfg->ops->hcmd->set_rxon_chain) { |
| 260 | for_each_context(priv, ctx) { |
| 261 | priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx); |
| 262 | iwlcore_commit_rxon(priv, ctx); |
| 263 | } |
| 264 | } |
Mohamed Abbas | 5da4b55 | 2008-04-21 15:41:51 -0700 | [diff] [blame] | 265 | } |
| 266 | |
Tomas Winkler | fcab423 | 2008-05-15 13:54:01 +0800 | [diff] [blame] | 267 | static void iwl_clear_free_frames(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 268 | { |
| 269 | struct list_head *element; |
| 270 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 271 | IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n", |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 272 | priv->frames_count); |
| 273 | |
| 274 | while (!list_empty(&priv->free_frames)) { |
| 275 | element = priv->free_frames.next; |
| 276 | list_del(element); |
Tomas Winkler | fcab423 | 2008-05-15 13:54:01 +0800 | [diff] [blame] | 277 | kfree(list_entry(element, struct iwl_frame, list)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 278 | priv->frames_count--; |
| 279 | } |
| 280 | |
| 281 | if (priv->frames_count) { |
Winkler, Tomas | 39aadf8 | 2008-12-19 10:37:32 +0800 | [diff] [blame] | 282 | IWL_WARN(priv, "%d frames still in use. Did we lose one?\n", |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 283 | priv->frames_count); |
| 284 | priv->frames_count = 0; |
| 285 | } |
| 286 | } |
| 287 | |
Tomas Winkler | fcab423 | 2008-05-15 13:54:01 +0800 | [diff] [blame] | 288 | static struct iwl_frame *iwl_get_free_frame(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 289 | { |
Tomas Winkler | fcab423 | 2008-05-15 13:54:01 +0800 | [diff] [blame] | 290 | struct iwl_frame *frame; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 291 | struct list_head *element; |
| 292 | if (list_empty(&priv->free_frames)) { |
| 293 | frame = kzalloc(sizeof(*frame), GFP_KERNEL); |
| 294 | if (!frame) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 295 | IWL_ERR(priv, "Could not allocate frame!\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 296 | return NULL; |
| 297 | } |
| 298 | |
| 299 | priv->frames_count++; |
| 300 | return frame; |
| 301 | } |
| 302 | |
| 303 | element = priv->free_frames.next; |
| 304 | list_del(element); |
Tomas Winkler | fcab423 | 2008-05-15 13:54:01 +0800 | [diff] [blame] | 305 | return list_entry(element, struct iwl_frame, list); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 306 | } |
| 307 | |
Tomas Winkler | fcab423 | 2008-05-15 13:54:01 +0800 | [diff] [blame] | 308 | static void iwl_free_frame(struct iwl_priv *priv, struct iwl_frame *frame) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 309 | { |
| 310 | memset(frame, 0, sizeof(*frame)); |
| 311 | list_add(&frame->list, &priv->free_frames); |
| 312 | } |
| 313 | |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 314 | static u32 iwl_fill_beacon_frame(struct iwl_priv *priv, |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 315 | struct ieee80211_hdr *hdr, |
Rami Rosen | 73ec1cc | 2008-12-16 09:37:07 +0200 | [diff] [blame] | 316 | int left) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 317 | { |
Johannes Berg | 6abbe55 | 2010-07-15 05:59:07 -0700 | [diff] [blame] | 318 | if (!priv->ibss_beacon) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 319 | return 0; |
| 320 | |
| 321 | if (priv->ibss_beacon->len > left) |
| 322 | return 0; |
| 323 | |
| 324 | memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len); |
| 325 | |
| 326 | return priv->ibss_beacon->len; |
| 327 | } |
| 328 | |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 329 | /* Parse the beacon frame to find the TIM element and set tim_idx & tim_size */ |
| 330 | static void iwl_set_beacon_tim(struct iwl_priv *priv, |
| 331 | struct iwl_tx_beacon_cmd *tx_beacon_cmd, |
| 332 | u8 *beacon, u32 frame_size) |
| 333 | { |
| 334 | u16 tim_idx; |
| 335 | struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon; |
| 336 | |
| 337 | /* |
| 338 | * The index is relative to frame start but we start looking at the |
| 339 | * variable-length part of the beacon. |
| 340 | */ |
| 341 | tim_idx = mgmt->u.beacon.variable - beacon; |
| 342 | |
| 343 | /* Parse variable-length elements of beacon to find WLAN_EID_TIM */ |
| 344 | while ((tim_idx < (frame_size - 2)) && |
| 345 | (beacon[tim_idx] != WLAN_EID_TIM)) |
| 346 | tim_idx += beacon[tim_idx+1] + 2; |
| 347 | |
| 348 | /* If TIM field was found, set variables */ |
| 349 | if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) { |
| 350 | tx_beacon_cmd->tim_idx = cpu_to_le16(tim_idx); |
| 351 | tx_beacon_cmd->tim_size = beacon[tim_idx+1]; |
| 352 | } else |
| 353 | IWL_WARN(priv, "Unable to find TIM Element in beacon\n"); |
| 354 | } |
| 355 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 356 | static unsigned int iwl_hw_get_beacon_cmd(struct iwl_priv *priv, |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 357 | struct iwl_frame *frame) |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 358 | { |
| 359 | struct iwl_tx_beacon_cmd *tx_beacon_cmd; |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 360 | u32 frame_size; |
| 361 | u32 rate_flags; |
| 362 | u32 rate; |
| 363 | /* |
| 364 | * We have to set up the TX command, the TX Beacon command, and the |
| 365 | * beacon contents. |
| 366 | */ |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 367 | |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 368 | lockdep_assert_held(&priv->mutex); |
| 369 | |
| 370 | if (!priv->beacon_ctx) { |
| 371 | IWL_ERR(priv, "trying to build beacon w/o beacon context!\n"); |
Julia Lawall | 950094c | 2010-09-05 21:00:26 +0200 | [diff] [blame^] | 372 | return 0; |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 373 | } |
| 374 | |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 375 | /* Initialize memory */ |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 376 | tx_beacon_cmd = &frame->u.beacon; |
| 377 | memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd)); |
| 378 | |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 379 | /* Set up TX beacon contents */ |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 380 | frame_size = iwl_fill_beacon_frame(priv, tx_beacon_cmd->frame, |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 381 | sizeof(frame->u) - sizeof(*tx_beacon_cmd)); |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 382 | if (WARN_ON_ONCE(frame_size > MAX_MPDU_SIZE)) |
| 383 | return 0; |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 384 | |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 385 | /* Set up TX command fields */ |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 386 | tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size); |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 387 | tx_beacon_cmd->tx.sta_id = priv->beacon_ctx->bcast_sta_id; |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 388 | tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 389 | tx_beacon_cmd->tx.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK | |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 390 | TX_CMD_FLG_TSF_MSK | TX_CMD_FLG_STA_RATE_MSK; |
| 391 | |
| 392 | /* Set up TX beacon command fields */ |
| 393 | iwl_set_beacon_tim(priv, tx_beacon_cmd, (u8 *)tx_beacon_cmd->frame, |
| 394 | frame_size); |
| 395 | |
| 396 | /* Set up packet rate and flags */ |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 397 | rate = iwl_rate_get_lowest_plcp(priv, priv->beacon_ctx); |
Johannes Berg | 0e1654f | 2010-05-18 02:48:36 -0700 | [diff] [blame] | 398 | priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant, |
| 399 | priv->hw_params.valid_tx_ant); |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 400 | rate_flags = iwl_ant_idx_to_flags(priv->mgmt_tx_ant); |
| 401 | if ((rate >= IWL_FIRST_CCK_RATE) && (rate <= IWL_LAST_CCK_RATE)) |
| 402 | rate_flags |= RATE_MCS_CCK_MSK; |
| 403 | tx_beacon_cmd->tx.rate_n_flags = iwl_hw_set_rate_n_flags(rate, |
| 404 | rate_flags); |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 405 | |
| 406 | return sizeof(*tx_beacon_cmd) + frame_size; |
| 407 | } |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 408 | static int iwl_send_beacon_cmd(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 409 | { |
Tomas Winkler | fcab423 | 2008-05-15 13:54:01 +0800 | [diff] [blame] | 410 | struct iwl_frame *frame; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 411 | unsigned int frame_size; |
| 412 | int rc; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 413 | |
Tomas Winkler | fcab423 | 2008-05-15 13:54:01 +0800 | [diff] [blame] | 414 | frame = iwl_get_free_frame(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 415 | if (!frame) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 416 | IWL_ERR(priv, "Could not obtain free frame buffer for beacon " |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 417 | "command.\n"); |
| 418 | return -ENOMEM; |
| 419 | } |
| 420 | |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 421 | frame_size = iwl_hw_get_beacon_cmd(priv, frame); |
| 422 | if (!frame_size) { |
| 423 | IWL_ERR(priv, "Error configuring the beacon command\n"); |
| 424 | iwl_free_frame(priv, frame); |
| 425 | return -EINVAL; |
| 426 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 427 | |
Tomas Winkler | 857485c | 2008-03-21 13:53:44 -0700 | [diff] [blame] | 428 | rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 429 | &frame->u.cmd[0]); |
| 430 | |
Tomas Winkler | fcab423 | 2008-05-15 13:54:01 +0800 | [diff] [blame] | 431 | iwl_free_frame(priv, frame); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 432 | |
| 433 | return rc; |
| 434 | } |
| 435 | |
Samuel Ortiz | 7aaa1d7 | 2009-01-19 15:30:26 -0800 | [diff] [blame] | 436 | static inline dma_addr_t iwl_tfd_tb_get_addr(struct iwl_tfd *tfd, u8 idx) |
| 437 | { |
| 438 | struct iwl_tfd_tb *tb = &tfd->tbs[idx]; |
| 439 | |
| 440 | dma_addr_t addr = get_unaligned_le32(&tb->lo); |
| 441 | if (sizeof(dma_addr_t) > sizeof(u32)) |
| 442 | addr |= |
| 443 | ((dma_addr_t)(le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << 16; |
| 444 | |
| 445 | return addr; |
| 446 | } |
| 447 | |
| 448 | static inline u16 iwl_tfd_tb_get_len(struct iwl_tfd *tfd, u8 idx) |
| 449 | { |
| 450 | struct iwl_tfd_tb *tb = &tfd->tbs[idx]; |
| 451 | |
| 452 | return le16_to_cpu(tb->hi_n_len) >> 4; |
| 453 | } |
| 454 | |
| 455 | static inline void iwl_tfd_set_tb(struct iwl_tfd *tfd, u8 idx, |
| 456 | dma_addr_t addr, u16 len) |
| 457 | { |
| 458 | struct iwl_tfd_tb *tb = &tfd->tbs[idx]; |
| 459 | u16 hi_n_len = len << 4; |
| 460 | |
| 461 | put_unaligned_le32(addr, &tb->lo); |
| 462 | if (sizeof(dma_addr_t) > sizeof(u32)) |
| 463 | hi_n_len |= ((addr >> 16) >> 16) & 0xF; |
| 464 | |
| 465 | tb->hi_n_len = cpu_to_le16(hi_n_len); |
| 466 | |
| 467 | tfd->num_tbs = idx + 1; |
| 468 | } |
| 469 | |
| 470 | static inline u8 iwl_tfd_get_num_tbs(struct iwl_tfd *tfd) |
| 471 | { |
| 472 | return tfd->num_tbs & 0x1f; |
| 473 | } |
| 474 | |
| 475 | /** |
| 476 | * iwl_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr] |
| 477 | * @priv - driver private data |
| 478 | * @txq - tx queue |
| 479 | * |
| 480 | * Does NOT advance any TFD circular buffer read/write indexes |
| 481 | * Does NOT free the TFD itself (which is within circular buffer) |
| 482 | */ |
| 483 | void iwl_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq) |
| 484 | { |
Samuel Ortiz | 59606ff | 2009-01-23 13:45:13 -0800 | [diff] [blame] | 485 | struct iwl_tfd *tfd_tmp = (struct iwl_tfd *)txq->tfds; |
Samuel Ortiz | 7aaa1d7 | 2009-01-19 15:30:26 -0800 | [diff] [blame] | 486 | struct iwl_tfd *tfd; |
| 487 | struct pci_dev *dev = priv->pci_dev; |
| 488 | int index = txq->q.read_ptr; |
| 489 | int i; |
| 490 | int num_tbs; |
| 491 | |
| 492 | tfd = &tfd_tmp[index]; |
| 493 | |
| 494 | /* Sanity check on number of chunks */ |
| 495 | num_tbs = iwl_tfd_get_num_tbs(tfd); |
| 496 | |
| 497 | if (num_tbs >= IWL_NUM_OF_TBS) { |
| 498 | IWL_ERR(priv, "Too many chunks: %i\n", num_tbs); |
| 499 | /* @todo issue fatal error, it is quite serious situation */ |
| 500 | return; |
| 501 | } |
| 502 | |
| 503 | /* Unmap tx_cmd */ |
| 504 | if (num_tbs) |
| 505 | pci_unmap_single(dev, |
FUJITA Tomonori | 2e72444 | 2010-06-03 14:19:20 +0900 | [diff] [blame] | 506 | dma_unmap_addr(&txq->meta[index], mapping), |
| 507 | dma_unmap_len(&txq->meta[index], len), |
Fenghua Yu | 96891ce | 2009-02-18 15:54:33 -0800 | [diff] [blame] | 508 | PCI_DMA_BIDIRECTIONAL); |
Samuel Ortiz | 7aaa1d7 | 2009-01-19 15:30:26 -0800 | [diff] [blame] | 509 | |
| 510 | /* Unmap chunks, if any. */ |
Johannes Berg | ff0d91c | 2010-05-17 02:37:34 -0700 | [diff] [blame] | 511 | for (i = 1; i < num_tbs; i++) |
Samuel Ortiz | 7aaa1d7 | 2009-01-19 15:30:26 -0800 | [diff] [blame] | 512 | pci_unmap_single(dev, iwl_tfd_tb_get_addr(tfd, i), |
| 513 | iwl_tfd_tb_get_len(tfd, i), PCI_DMA_TODEVICE); |
| 514 | |
Johannes Berg | ff0d91c | 2010-05-17 02:37:34 -0700 | [diff] [blame] | 515 | /* free SKB */ |
| 516 | if (txq->txb) { |
| 517 | struct sk_buff *skb; |
Johannes Berg | 6f80240 | 2010-05-17 02:37:32 -0700 | [diff] [blame] | 518 | |
Johannes Berg | ff0d91c | 2010-05-17 02:37:34 -0700 | [diff] [blame] | 519 | skb = txq->txb[txq->q.read_ptr].skb; |
Johannes Berg | 6f80240 | 2010-05-17 02:37:32 -0700 | [diff] [blame] | 520 | |
Johannes Berg | ff0d91c | 2010-05-17 02:37:34 -0700 | [diff] [blame] | 521 | /* can be called from irqs-disabled context */ |
| 522 | if (skb) { |
| 523 | dev_kfree_skb_any(skb); |
| 524 | txq->txb[txq->q.read_ptr].skb = NULL; |
Samuel Ortiz | 7aaa1d7 | 2009-01-19 15:30:26 -0800 | [diff] [blame] | 525 | } |
| 526 | } |
| 527 | } |
| 528 | |
| 529 | int iwl_hw_txq_attach_buf_to_tfd(struct iwl_priv *priv, |
| 530 | struct iwl_tx_queue *txq, |
| 531 | dma_addr_t addr, u16 len, |
| 532 | u8 reset, u8 pad) |
| 533 | { |
| 534 | struct iwl_queue *q; |
Samuel Ortiz | 59606ff | 2009-01-23 13:45:13 -0800 | [diff] [blame] | 535 | struct iwl_tfd *tfd, *tfd_tmp; |
Samuel Ortiz | 7aaa1d7 | 2009-01-19 15:30:26 -0800 | [diff] [blame] | 536 | u32 num_tbs; |
| 537 | |
| 538 | q = &txq->q; |
Samuel Ortiz | 59606ff | 2009-01-23 13:45:13 -0800 | [diff] [blame] | 539 | tfd_tmp = (struct iwl_tfd *)txq->tfds; |
| 540 | tfd = &tfd_tmp[q->write_ptr]; |
Samuel Ortiz | 7aaa1d7 | 2009-01-19 15:30:26 -0800 | [diff] [blame] | 541 | |
| 542 | if (reset) |
| 543 | memset(tfd, 0, sizeof(*tfd)); |
| 544 | |
| 545 | num_tbs = iwl_tfd_get_num_tbs(tfd); |
| 546 | |
| 547 | /* Each TFD can point to a maximum 20 Tx buffers */ |
| 548 | if (num_tbs >= IWL_NUM_OF_TBS) { |
| 549 | IWL_ERR(priv, "Error can not send more than %d chunks\n", |
| 550 | IWL_NUM_OF_TBS); |
| 551 | return -EINVAL; |
| 552 | } |
| 553 | |
| 554 | BUG_ON(addr & ~DMA_BIT_MASK(36)); |
| 555 | if (unlikely(addr & ~IWL_TX_DMA_MASK)) |
| 556 | IWL_ERR(priv, "Unaligned address = %llx\n", |
| 557 | (unsigned long long)addr); |
| 558 | |
| 559 | iwl_tfd_set_tb(tfd, num_tbs, addr, len); |
| 560 | |
| 561 | return 0; |
| 562 | } |
| 563 | |
Samuel Ortiz | a8e74e27 | 2009-01-23 13:45:14 -0800 | [diff] [blame] | 564 | /* |
| 565 | * Tell nic where to find circular buffer of Tx Frame Descriptors for |
| 566 | * given Tx queue, and enable the DMA channel used for that queue. |
| 567 | * |
| 568 | * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA |
| 569 | * channels supported in hardware. |
| 570 | */ |
| 571 | int iwl_hw_tx_queue_init(struct iwl_priv *priv, |
| 572 | struct iwl_tx_queue *txq) |
| 573 | { |
Samuel Ortiz | a8e74e27 | 2009-01-23 13:45:14 -0800 | [diff] [blame] | 574 | int txq_id = txq->q.id; |
| 575 | |
Samuel Ortiz | a8e74e27 | 2009-01-23 13:45:14 -0800 | [diff] [blame] | 576 | /* Circular buffer (TFD queue in DRAM) physical base address */ |
| 577 | iwl_write_direct32(priv, FH_MEM_CBBC_QUEUE(txq_id), |
| 578 | txq->q.dma_addr >> 8); |
| 579 | |
Samuel Ortiz | a8e74e27 | 2009-01-23 13:45:14 -0800 | [diff] [blame] | 580 | return 0; |
| 581 | } |
| 582 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 583 | /****************************************************************************** |
| 584 | * |
| 585 | * Generic RX handler implementations |
| 586 | * |
| 587 | ******************************************************************************/ |
Tomas Winkler | 885ba20 | 2008-05-29 16:34:55 +0800 | [diff] [blame] | 588 | static void iwl_rx_reply_alive(struct iwl_priv *priv, |
| 589 | struct iwl_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 590 | { |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 591 | struct iwl_rx_packet *pkt = rxb_addr(rxb); |
Tomas Winkler | 885ba20 | 2008-05-29 16:34:55 +0800 | [diff] [blame] | 592 | struct iwl_alive_resp *palive; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 593 | struct delayed_work *pwork; |
| 594 | |
| 595 | palive = &pkt->u.alive_frame; |
| 596 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 597 | IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision " |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 598 | "0x%01X 0x%01X\n", |
| 599 | palive->is_valid, palive->ver_type, |
| 600 | palive->ver_subtype); |
| 601 | |
| 602 | if (palive->ver_subtype == INITIALIZE_SUBTYPE) { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 603 | IWL_DEBUG_INFO(priv, "Initialization Alive received.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 604 | memcpy(&priv->card_alive_init, |
| 605 | &pkt->u.alive_frame, |
Tomas Winkler | 885ba20 | 2008-05-29 16:34:55 +0800 | [diff] [blame] | 606 | sizeof(struct iwl_init_alive_resp)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 607 | pwork = &priv->init_alive_start; |
| 608 | } else { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 609 | IWL_DEBUG_INFO(priv, "Runtime Alive received.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 610 | memcpy(&priv->card_alive, &pkt->u.alive_frame, |
Tomas Winkler | 885ba20 | 2008-05-29 16:34:55 +0800 | [diff] [blame] | 611 | sizeof(struct iwl_alive_resp)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 612 | pwork = &priv->alive_start; |
| 613 | } |
| 614 | |
| 615 | /* We delay the ALIVE response by 5ms to |
| 616 | * give the HW RF Kill time to activate... */ |
| 617 | if (palive->is_valid == UCODE_VALID_OK) |
| 618 | queue_delayed_work(priv->workqueue, pwork, |
| 619 | msecs_to_jiffies(5)); |
| 620 | else |
Winkler, Tomas | 39aadf8 | 2008-12-19 10:37:32 +0800 | [diff] [blame] | 621 | IWL_WARN(priv, "uCode did not respond OK.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 622 | } |
| 623 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 624 | static void iwl_bg_beacon_update(struct work_struct *work) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 625 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 626 | struct iwl_priv *priv = |
| 627 | container_of(work, struct iwl_priv, beacon_update); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 628 | struct sk_buff *beacon; |
| 629 | |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 630 | mutex_lock(&priv->mutex); |
| 631 | if (!priv->beacon_ctx) { |
| 632 | IWL_ERR(priv, "updating beacon w/o beacon context!\n"); |
| 633 | goto out; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 634 | } |
| 635 | |
Johannes Berg | 60744f6 | 2010-08-23 10:46:50 +0200 | [diff] [blame] | 636 | if (priv->beacon_ctx->vif->type != NL80211_IFTYPE_AP) { |
| 637 | /* |
| 638 | * The ucode will send beacon notifications even in |
| 639 | * IBSS mode, but we don't want to process them. But |
| 640 | * we need to defer the type check to here due to |
| 641 | * requiring locking around the beacon_ctx access. |
| 642 | */ |
| 643 | goto out; |
| 644 | } |
| 645 | |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 646 | /* Pull updated AP beacon from mac80211. will fail if not in AP mode */ |
| 647 | beacon = ieee80211_beacon_get(priv->hw, priv->beacon_ctx->vif); |
| 648 | if (!beacon) { |
| 649 | IWL_ERR(priv, "update beacon failed\n"); |
| 650 | goto out; |
| 651 | } |
| 652 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 653 | /* new beacon skb is allocated every time; dispose previous.*/ |
| 654 | if (priv->ibss_beacon) |
| 655 | dev_kfree_skb(priv->ibss_beacon); |
| 656 | |
| 657 | priv->ibss_beacon = beacon; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 658 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 659 | iwl_send_beacon_cmd(priv); |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 660 | out: |
| 661 | mutex_unlock(&priv->mutex); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 662 | } |
| 663 | |
Wey-Yi Guy | fbba941 | 2010-08-23 07:57:10 -0700 | [diff] [blame] | 664 | static void iwl_bg_bt_runtime_config(struct work_struct *work) |
| 665 | { |
| 666 | struct iwl_priv *priv = |
| 667 | container_of(work, struct iwl_priv, bt_runtime_config); |
| 668 | |
| 669 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 670 | return; |
| 671 | |
| 672 | /* dont send host command if rf-kill is on */ |
| 673 | if (!iwl_is_ready_rf(priv)) |
| 674 | return; |
| 675 | priv->cfg->ops->hcmd->send_bt_config(priv); |
| 676 | } |
| 677 | |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 678 | static void iwl_bg_bt_full_concurrency(struct work_struct *work) |
| 679 | { |
| 680 | struct iwl_priv *priv = |
| 681 | container_of(work, struct iwl_priv, bt_full_concurrency); |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 682 | struct iwl_rxon_context *ctx; |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 683 | |
| 684 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 685 | return; |
| 686 | |
| 687 | /* dont send host command if rf-kill is on */ |
| 688 | if (!iwl_is_ready_rf(priv)) |
| 689 | return; |
| 690 | |
| 691 | IWL_DEBUG_INFO(priv, "BT coex in %s mode\n", |
| 692 | priv->bt_full_concurrent ? |
| 693 | "full concurrency" : "3-wire"); |
| 694 | |
| 695 | /* |
| 696 | * LQ & RXON updated cmds must be sent before BT Config cmd |
| 697 | * to avoid 3-wire collisions |
| 698 | */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 699 | mutex_lock(&priv->mutex); |
| 700 | for_each_context(priv, ctx) { |
| 701 | if (priv->cfg->ops->hcmd->set_rxon_chain) |
| 702 | priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx); |
| 703 | iwlcore_commit_rxon(priv, ctx); |
| 704 | } |
| 705 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 706 | |
| 707 | priv->cfg->ops->hcmd->send_bt_config(priv); |
| 708 | } |
| 709 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 710 | /** |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 711 | * iwl_bg_statistics_periodic - Timer callback to queue statistics |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 712 | * |
| 713 | * This callback is provided in order to send a statistics request. |
| 714 | * |
| 715 | * This timer function is continually reset to execute within |
| 716 | * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION |
| 717 | * was received. We need to ensure we receive the statistics in order |
| 718 | * to update the temperature used for calibrating the TXPOWER. |
| 719 | */ |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 720 | static void iwl_bg_statistics_periodic(unsigned long data) |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 721 | { |
| 722 | struct iwl_priv *priv = (struct iwl_priv *)data; |
| 723 | |
| 724 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 725 | return; |
| 726 | |
Mohamed Abbas | 61780ee | 2008-10-29 14:05:49 -0700 | [diff] [blame] | 727 | /* dont send host command if rf-kill is on */ |
| 728 | if (!iwl_is_ready_rf(priv)) |
| 729 | return; |
| 730 | |
Wey-Yi Guy | ef8d552 | 2009-11-13 11:56:28 -0800 | [diff] [blame] | 731 | iwl_send_statistics_request(priv, CMD_ASYNC, false); |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 732 | } |
| 733 | |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 734 | |
| 735 | static void iwl_print_cont_event_trace(struct iwl_priv *priv, u32 base, |
| 736 | u32 start_idx, u32 num_events, |
| 737 | u32 mode) |
| 738 | { |
| 739 | u32 i; |
| 740 | u32 ptr; /* SRAM byte address of log data */ |
| 741 | u32 ev, time, data; /* event log data */ |
| 742 | unsigned long reg_flags; |
| 743 | |
| 744 | if (mode == 0) |
| 745 | ptr = base + (4 * sizeof(u32)) + (start_idx * 2 * sizeof(u32)); |
| 746 | else |
| 747 | ptr = base + (4 * sizeof(u32)) + (start_idx * 3 * sizeof(u32)); |
| 748 | |
| 749 | /* Make sure device is powered up for SRAM reads */ |
| 750 | spin_lock_irqsave(&priv->reg_lock, reg_flags); |
| 751 | if (iwl_grab_nic_access(priv)) { |
| 752 | spin_unlock_irqrestore(&priv->reg_lock, reg_flags); |
| 753 | return; |
| 754 | } |
| 755 | |
| 756 | /* Set starting address; reads will auto-increment */ |
| 757 | _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr); |
| 758 | rmb(); |
| 759 | |
| 760 | /* |
| 761 | * "time" is actually "data" for mode 0 (no timestamp). |
| 762 | * place event id # at far right for easier visual parsing. |
| 763 | */ |
| 764 | for (i = 0; i < num_events; i++) { |
| 765 | ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT); |
| 766 | time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT); |
| 767 | if (mode == 0) { |
| 768 | trace_iwlwifi_dev_ucode_cont_event(priv, |
| 769 | 0, time, ev); |
| 770 | } else { |
| 771 | data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT); |
| 772 | trace_iwlwifi_dev_ucode_cont_event(priv, |
| 773 | time, data, ev); |
| 774 | } |
| 775 | } |
| 776 | /* Allow device to power down */ |
| 777 | iwl_release_nic_access(priv); |
| 778 | spin_unlock_irqrestore(&priv->reg_lock, reg_flags); |
| 779 | } |
| 780 | |
Johannes Berg | 875295f | 2010-01-22 14:22:55 -0800 | [diff] [blame] | 781 | static void iwl_continuous_event_trace(struct iwl_priv *priv) |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 782 | { |
| 783 | u32 capacity; /* event log capacity in # entries */ |
| 784 | u32 base; /* SRAM byte address of event log header */ |
| 785 | u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */ |
| 786 | u32 num_wraps; /* # times uCode wrapped to top of log */ |
| 787 | u32 next_entry; /* index of next entry to be written by uCode */ |
| 788 | |
| 789 | if (priv->ucode_type == UCODE_INIT) |
| 790 | base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr); |
| 791 | else |
| 792 | base = le32_to_cpu(priv->card_alive.log_event_table_ptr); |
| 793 | if (priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) { |
| 794 | capacity = iwl_read_targ_mem(priv, base); |
| 795 | num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32))); |
| 796 | mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32))); |
| 797 | next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32))); |
| 798 | } else |
| 799 | return; |
| 800 | |
| 801 | if (num_wraps == priv->event_log.num_wraps) { |
| 802 | iwl_print_cont_event_trace(priv, |
| 803 | base, priv->event_log.next_entry, |
| 804 | next_entry - priv->event_log.next_entry, |
| 805 | mode); |
| 806 | priv->event_log.non_wraps_count++; |
| 807 | } else { |
| 808 | if ((num_wraps - priv->event_log.num_wraps) > 1) |
| 809 | priv->event_log.wraps_more_count++; |
| 810 | else |
| 811 | priv->event_log.wraps_once_count++; |
| 812 | trace_iwlwifi_dev_ucode_wrap_event(priv, |
| 813 | num_wraps - priv->event_log.num_wraps, |
| 814 | next_entry, priv->event_log.next_entry); |
| 815 | if (next_entry < priv->event_log.next_entry) { |
| 816 | iwl_print_cont_event_trace(priv, base, |
| 817 | priv->event_log.next_entry, |
| 818 | capacity - priv->event_log.next_entry, |
| 819 | mode); |
| 820 | |
| 821 | iwl_print_cont_event_trace(priv, base, 0, |
| 822 | next_entry, mode); |
| 823 | } else { |
| 824 | iwl_print_cont_event_trace(priv, base, |
| 825 | next_entry, capacity - next_entry, |
| 826 | mode); |
| 827 | |
| 828 | iwl_print_cont_event_trace(priv, base, 0, |
| 829 | next_entry, mode); |
| 830 | } |
| 831 | } |
| 832 | priv->event_log.num_wraps = num_wraps; |
| 833 | priv->event_log.next_entry = next_entry; |
| 834 | } |
| 835 | |
| 836 | /** |
| 837 | * iwl_bg_ucode_trace - Timer callback to log ucode event |
| 838 | * |
| 839 | * The timer is continually set to execute every |
| 840 | * UCODE_TRACE_PERIOD milliseconds after the last timer expired |
| 841 | * this function is to perform continuous uCode event logging operation |
| 842 | * if enabled |
| 843 | */ |
| 844 | static void iwl_bg_ucode_trace(unsigned long data) |
| 845 | { |
| 846 | struct iwl_priv *priv = (struct iwl_priv *)data; |
| 847 | |
| 848 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 849 | return; |
| 850 | |
| 851 | if (priv->event_log.ucode_trace) { |
| 852 | iwl_continuous_event_trace(priv); |
| 853 | /* Reschedule the timer to occur in UCODE_TRACE_PERIOD */ |
| 854 | mod_timer(&priv->ucode_trace, |
| 855 | jiffies + msecs_to_jiffies(UCODE_TRACE_PERIOD)); |
| 856 | } |
| 857 | } |
| 858 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 859 | static void iwl_rx_beacon_notif(struct iwl_priv *priv, |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 860 | struct iwl_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 861 | { |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 862 | struct iwl_rx_packet *pkt = rxb_addr(rxb); |
Tomas Winkler | 2aa6ab8 | 2008-12-11 10:33:40 -0800 | [diff] [blame] | 863 | struct iwl4965_beacon_notif *beacon = |
| 864 | (struct iwl4965_beacon_notif *)pkt->u.raw; |
Johannes Berg | a85d7cc | 2010-07-31 08:34:10 -0700 | [diff] [blame] | 865 | #ifdef CONFIG_IWLWIFI_DEBUG |
Tomas Winkler | e7d326ac | 2008-06-12 09:47:11 +0800 | [diff] [blame] | 866 | u8 rate = iwl_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 867 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 868 | IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d " |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 869 | "tsf %d %d rate %d\n", |
Tomas Winkler | 25a6572 | 2008-06-12 09:47:07 +0800 | [diff] [blame] | 870 | le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 871 | beacon->beacon_notify_hdr.failure_frame, |
| 872 | le32_to_cpu(beacon->ibss_mgr_status), |
| 873 | le32_to_cpu(beacon->high_tsf), |
| 874 | le32_to_cpu(beacon->low_tsf), rate); |
| 875 | #endif |
| 876 | |
Johannes Berg | a85d7cc | 2010-07-31 08:34:10 -0700 | [diff] [blame] | 877 | priv->ibss_manager = le32_to_cpu(beacon->ibss_mgr_status); |
| 878 | |
Johannes Berg | 60744f6 | 2010-08-23 10:46:50 +0200 | [diff] [blame] | 879 | if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 880 | queue_work(priv->workqueue, &priv->beacon_update); |
| 881 | } |
| 882 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 883 | /* Handle notification from uCode that card's power state is changing |
| 884 | * due to software, hardware, or critical temperature RFKILL */ |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 885 | static void iwl_rx_card_state_notif(struct iwl_priv *priv, |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 886 | struct iwl_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 887 | { |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 888 | struct iwl_rx_packet *pkt = rxb_addr(rxb); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 889 | u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags); |
| 890 | unsigned long status = priv->status; |
| 891 | |
Wey-Yi Guy | 3a41bbd | 2009-12-10 14:37:24 -0800 | [diff] [blame] | 892 | IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s CT:%s\n", |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 893 | (flags & HW_CARD_DISABLED) ? "Kill" : "On", |
Wey-Yi Guy | 3a41bbd | 2009-12-10 14:37:24 -0800 | [diff] [blame] | 894 | (flags & SW_CARD_DISABLED) ? "Kill" : "On", |
| 895 | (flags & CT_CARD_DISABLED) ? |
| 896 | "Reached" : "Not reached"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 897 | |
| 898 | if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED | |
Wey-Yi Guy | 3a41bbd | 2009-12-10 14:37:24 -0800 | [diff] [blame] | 899 | CT_CARD_DISABLED)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 900 | |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 901 | iwl_write32(priv, CSR_UCODE_DRV_GP1_SET, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 902 | CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED); |
| 903 | |
Mohamed Abbas | a8b50a0 | 2009-05-22 11:01:47 -0700 | [diff] [blame] | 904 | iwl_write_direct32(priv, HBUS_TARG_MBX_C, |
| 905 | HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 906 | |
| 907 | if (!(flags & RXON_CARD_DISABLED)) { |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 908 | iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 909 | CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED); |
Mohamed Abbas | a8b50a0 | 2009-05-22 11:01:47 -0700 | [diff] [blame] | 910 | iwl_write_direct32(priv, HBUS_TARG_MBX_C, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 911 | HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 912 | } |
Wey-Yi Guy | 3a41bbd | 2009-12-10 14:37:24 -0800 | [diff] [blame] | 913 | if (flags & CT_CARD_DISABLED) |
Wey-Yi Guy | 39b73fb1 | 2009-07-24 11:13:02 -0700 | [diff] [blame] | 914 | iwl_tt_enter_ct_kill(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 915 | } |
Wey-Yi Guy | 3a41bbd | 2009-12-10 14:37:24 -0800 | [diff] [blame] | 916 | if (!(flags & CT_CARD_DISABLED)) |
Wey-Yi Guy | 39b73fb1 | 2009-07-24 11:13:02 -0700 | [diff] [blame] | 917 | iwl_tt_exit_ct_kill(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 918 | |
| 919 | if (flags & HW_CARD_DISABLED) |
| 920 | set_bit(STATUS_RF_KILL_HW, &priv->status); |
| 921 | else |
| 922 | clear_bit(STATUS_RF_KILL_HW, &priv->status); |
| 923 | |
| 924 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 925 | if (!(flags & RXON_CARD_DISABLED)) |
Tomas Winkler | 2a421b9 | 2008-06-12 09:47:10 +0800 | [diff] [blame] | 926 | iwl_scan_cancel(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 927 | |
| 928 | if ((test_bit(STATUS_RF_KILL_HW, &status) != |
Johannes Berg | a60e77e | 2009-06-04 18:26:06 +0200 | [diff] [blame] | 929 | test_bit(STATUS_RF_KILL_HW, &priv->status))) |
| 930 | wiphy_rfkill_set_hw_state(priv->hw->wiphy, |
| 931 | test_bit(STATUS_RF_KILL_HW, &priv->status)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 932 | else |
| 933 | wake_up_interruptible(&priv->wait_command_queue); |
| 934 | } |
| 935 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 936 | int iwl_set_pwr_src(struct iwl_priv *priv, enum iwl_pwr_src src) |
Tomas Winkler | e2e3c57 | 2008-07-18 13:53:04 +0800 | [diff] [blame] | 937 | { |
Tomas Winkler | e2e3c57 | 2008-07-18 13:53:04 +0800 | [diff] [blame] | 938 | if (src == IWL_PWR_SRC_VAUX) { |
Tomas Winkler | 3fdb68d | 2009-02-10 15:19:02 -0800 | [diff] [blame] | 939 | if (pci_pme_capable(priv->pci_dev, PCI_D3cold)) |
Tomas Winkler | e2e3c57 | 2008-07-18 13:53:04 +0800 | [diff] [blame] | 940 | iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG, |
| 941 | APMG_PS_CTRL_VAL_PWR_SRC_VAUX, |
| 942 | ~APMG_PS_CTRL_MSK_PWR_SRC); |
| 943 | } else { |
| 944 | iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG, |
| 945 | APMG_PS_CTRL_VAL_PWR_SRC_VMAIN, |
| 946 | ~APMG_PS_CTRL_MSK_PWR_SRC); |
| 947 | } |
| 948 | |
Mohamed Abbas | a8b50a0 | 2009-05-22 11:01:47 -0700 | [diff] [blame] | 949 | return 0; |
Tomas Winkler | e2e3c57 | 2008-07-18 13:53:04 +0800 | [diff] [blame] | 950 | } |
| 951 | |
Wey-Yi Guy | 6555063 | 2010-06-24 13:18:35 -0700 | [diff] [blame] | 952 | static void iwl_bg_tx_flush(struct work_struct *work) |
| 953 | { |
| 954 | struct iwl_priv *priv = |
| 955 | container_of(work, struct iwl_priv, tx_flush); |
| 956 | |
| 957 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 958 | return; |
| 959 | |
| 960 | /* do nothing if rf-kill is on */ |
| 961 | if (!iwl_is_ready_rf(priv)) |
| 962 | return; |
| 963 | |
| 964 | if (priv->cfg->ops->lib->txfifo_flush) { |
| 965 | IWL_DEBUG_INFO(priv, "device request: flush all tx frames\n"); |
| 966 | iwlagn_dev_txfifo_flush(priv, IWL_DROP_ALL); |
| 967 | } |
| 968 | } |
| 969 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 970 | /** |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 971 | * iwl_setup_rx_handlers - Initialize Rx handler callbacks |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 972 | * |
| 973 | * Setup the RX handlers for each of the reply types sent from the uCode |
| 974 | * to the host. |
| 975 | * |
| 976 | * This function chains into the hardware specific files for them to setup |
| 977 | * any hardware specific handlers as well. |
| 978 | */ |
Emmanuel Grumbach | 653fa4a | 2008-06-30 17:23:11 +0800 | [diff] [blame] | 979 | static void iwl_setup_rx_handlers(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 980 | { |
Tomas Winkler | 885ba20 | 2008-05-29 16:34:55 +0800 | [diff] [blame] | 981 | priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive; |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 982 | priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error; |
| 983 | priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa; |
Reinette Chatre | 81963d6 | 2010-01-22 14:22:57 -0800 | [diff] [blame] | 984 | priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] = |
| 985 | iwl_rx_spectrum_measure_notif; |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 986 | priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 987 | priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] = |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 988 | iwl_rx_pm_debug_statistics_notif; |
| 989 | priv->rx_handlers[BEACON_NOTIFICATION] = iwl_rx_beacon_notif; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 990 | |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 991 | /* |
| 992 | * The same handler is used for both the REPLY to a discrete |
| 993 | * statistics request from the host as well as for the periodic |
| 994 | * statistics notifications (after received beacons) from the uCode. |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 995 | */ |
Wey-Yi Guy | ef8d552 | 2009-11-13 11:56:28 -0800 | [diff] [blame] | 996 | priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl_reply_statistics; |
Emmanuel Grumbach | 8f91aec | 2008-06-30 17:23:07 +0800 | [diff] [blame] | 997 | priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl_rx_statistics; |
Tomas Winkler | 2a421b9 | 2008-06-12 09:47:10 +0800 | [diff] [blame] | 998 | |
| 999 | iwl_setup_rx_scan_handlers(priv); |
| 1000 | |
Ron Rindjunsky | 37a4421 | 2008-05-29 16:35:18 +0800 | [diff] [blame] | 1001 | /* status change handler */ |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 1002 | priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl_rx_card_state_notif; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1003 | |
Tomas Winkler | c135475 | 2008-05-29 16:35:04 +0800 | [diff] [blame] | 1004 | priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] = |
| 1005 | iwl_rx_missed_beacon_notif; |
Ron Rindjunsky | 37a4421 | 2008-05-29 16:35:18 +0800 | [diff] [blame] | 1006 | /* Rx handlers */ |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 1007 | priv->rx_handlers[REPLY_RX_PHY_CMD] = iwlagn_rx_reply_rx_phy; |
| 1008 | priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwlagn_rx_reply_rx; |
Emmanuel Grumbach | 653fa4a | 2008-06-30 17:23:11 +0800 | [diff] [blame] | 1009 | /* block ack */ |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1010 | priv->rx_handlers[REPLY_COMPRESSED_BA] = iwlagn_rx_reply_compressed_ba; |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 1011 | /* Set up hardware specific Rx handlers */ |
Emmanuel Grumbach | d4789ef | 2008-04-24 11:55:20 -0700 | [diff] [blame] | 1012 | priv->cfg->ops->lib->rx_handler_setup(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1013 | } |
| 1014 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1015 | /** |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 1016 | * iwl_rx_handle - Main entry function for receiving responses from uCode |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1017 | * |
| 1018 | * Uses the priv->rx_handlers callback function array to invoke |
| 1019 | * the appropriate handlers, including command responses, |
| 1020 | * frame-received notifications, and other notifications. |
| 1021 | */ |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 1022 | void iwl_rx_handle(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1023 | { |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 1024 | struct iwl_rx_mem_buffer *rxb; |
Tomas Winkler | db11d63 | 2008-05-05 10:22:33 +0800 | [diff] [blame] | 1025 | struct iwl_rx_packet *pkt; |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 1026 | struct iwl_rx_queue *rxq = &priv->rxq; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1027 | u32 r, i; |
| 1028 | int reclaim; |
| 1029 | unsigned long flags; |
Mohamed Abbas | 5c0eef9 | 2007-11-29 11:10:14 +0800 | [diff] [blame] | 1030 | u8 fill_rx = 0; |
Mohamed Abbas | d68ab68 | 2008-02-07 13:16:33 -0800 | [diff] [blame] | 1031 | u32 count = 8; |
Mohamed Abbas | 4752c93 | 2009-05-22 11:01:51 -0700 | [diff] [blame] | 1032 | int total_empty; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1033 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 1034 | /* uCode's read index (stored in shared DRAM) indicates the last Rx |
| 1035 | * buffer that the driver may process (last buffer filled by ucode). */ |
Winkler, Tomas | 8d86422 | 2008-11-07 09:58:39 -0800 | [diff] [blame] | 1036 | r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1037 | i = rxq->read; |
| 1038 | |
| 1039 | /* Rx interrupt, but nothing sent from uCode */ |
| 1040 | if (i == r) |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 1041 | IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1042 | |
Mohamed Abbas | 4752c93 | 2009-05-22 11:01:51 -0700 | [diff] [blame] | 1043 | /* calculate total frames need to be restock after handling RX */ |
Zhu Yi | 7300515 | 2009-10-23 13:42:32 -0700 | [diff] [blame] | 1044 | total_empty = r - rxq->write_actual; |
Mohamed Abbas | 4752c93 | 2009-05-22 11:01:51 -0700 | [diff] [blame] | 1045 | if (total_empty < 0) |
| 1046 | total_empty += RX_QUEUE_SIZE; |
| 1047 | |
| 1048 | if (total_empty > (RX_QUEUE_SIZE / 2)) |
Mohamed Abbas | 5c0eef9 | 2007-11-29 11:10:14 +0800 | [diff] [blame] | 1049 | fill_rx = 1; |
| 1050 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1051 | while (i != r) { |
Johannes Berg | f4989d9 | 2010-05-28 04:08:30 -0700 | [diff] [blame] | 1052 | int len; |
| 1053 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1054 | rxb = rxq->queue[i]; |
| 1055 | |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 1056 | /* If an RXB doesn't have a Rx queue slot associated with it, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1057 | * then a bug has been introduced in the queue refilling |
| 1058 | * routines -- catch it here */ |
| 1059 | BUG_ON(rxb == NULL); |
| 1060 | |
| 1061 | rxq->queue[i] = NULL; |
| 1062 | |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 1063 | pci_unmap_page(priv->pci_dev, rxb->page_dma, |
| 1064 | PAGE_SIZE << priv->hw_params.rx_page_order, |
| 1065 | PCI_DMA_FROMDEVICE); |
| 1066 | pkt = rxb_addr(rxb); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1067 | |
Johannes Berg | f4989d9 | 2010-05-28 04:08:30 -0700 | [diff] [blame] | 1068 | len = le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK; |
| 1069 | len += sizeof(u32); /* account for status word */ |
| 1070 | trace_iwlwifi_dev_rx(priv, pkt, len); |
Johannes Berg | be1a71a | 2009-10-02 13:44:02 -0700 | [diff] [blame] | 1071 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1072 | /* Reclaim a command buffer only if this packet is a response |
| 1073 | * to a (driver-originated) command. |
| 1074 | * If the packet (e.g. Rx frame) originated from uCode, |
| 1075 | * there is no command buffer to reclaim. |
| 1076 | * Ucode should set SEQ_RX_FRAME bit if ucode-originated, |
| 1077 | * but apparently a few don't get set; catch them here. */ |
| 1078 | reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) && |
| 1079 | (pkt->hdr.cmd != REPLY_RX_PHY_CMD) && |
Tomas Winkler | 857485c | 2008-03-21 13:53:44 -0700 | [diff] [blame] | 1080 | (pkt->hdr.cmd != REPLY_RX) && |
Daniel Halperin | 7dddaf1 | 2008-10-23 23:48:58 -0700 | [diff] [blame] | 1081 | (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) && |
Zhu Yi | cfe0170 | 2007-09-27 11:27:31 +0800 | [diff] [blame] | 1082 | (pkt->hdr.cmd != REPLY_COMPRESSED_BA) && |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1083 | (pkt->hdr.cmd != STATISTICS_NOTIFICATION) && |
| 1084 | (pkt->hdr.cmd != REPLY_TX); |
| 1085 | |
| 1086 | /* Based on type of command response or notification, |
| 1087 | * handle those that need handling via function in |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 1088 | * rx_handlers table. See iwl_setup_rx_handlers() */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1089 | if (priv->rx_handlers[pkt->hdr.cmd]) { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 1090 | IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r, |
Ester Kummer | f3d6799 | 2008-05-06 11:05:12 +0800 | [diff] [blame] | 1091 | i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd); |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1092 | priv->isr_stats.rx_handlers[pkt->hdr.cmd]++; |
Zhu Yi | 29b1b26 | 2009-10-23 13:42:25 -0700 | [diff] [blame] | 1093 | priv->rx_handlers[pkt->hdr.cmd] (priv, rxb); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1094 | } else { |
| 1095 | /* No handling needed */ |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 1096 | IWL_DEBUG_RX(priv, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1097 | "r %d i %d No handler needed for %s, 0x%02x\n", |
| 1098 | r, i, get_cmd_string(pkt->hdr.cmd), |
| 1099 | pkt->hdr.cmd); |
| 1100 | } |
| 1101 | |
Zhu Yi | 29b1b26 | 2009-10-23 13:42:25 -0700 | [diff] [blame] | 1102 | /* |
| 1103 | * XXX: After here, we should always check rxb->page |
| 1104 | * against NULL before touching it or its virtual |
| 1105 | * memory (pkt). Because some rx_handler might have |
| 1106 | * already taken or freed the pages. |
| 1107 | */ |
| 1108 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1109 | if (reclaim) { |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 1110 | /* Invoke any callbacks, transfer the buffer to caller, |
| 1111 | * and fire off the (possibly) blocking iwl_send_cmd() |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1112 | * as we reclaim the driver command queue */ |
Zhu Yi | 29b1b26 | 2009-10-23 13:42:25 -0700 | [diff] [blame] | 1113 | if (rxb->page) |
Tomas Winkler | 17b8892 | 2008-05-29 16:35:12 +0800 | [diff] [blame] | 1114 | iwl_tx_cmd_complete(priv, rxb); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1115 | else |
Winkler, Tomas | 39aadf8 | 2008-12-19 10:37:32 +0800 | [diff] [blame] | 1116 | IWL_WARN(priv, "Claim null rxb?\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1117 | } |
| 1118 | |
Zhu Yi | 7300515 | 2009-10-23 13:42:32 -0700 | [diff] [blame] | 1119 | /* Reuse the page if possible. For notification packets and |
| 1120 | * SKBs that fail to Rx correctly, add them back into the |
| 1121 | * rx_free list for reuse later. */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1122 | spin_lock_irqsave(&rxq->lock, flags); |
Zhu Yi | 7300515 | 2009-10-23 13:42:32 -0700 | [diff] [blame] | 1123 | if (rxb->page != NULL) { |
| 1124 | rxb->page_dma = pci_map_page(priv->pci_dev, rxb->page, |
| 1125 | 0, PAGE_SIZE << priv->hw_params.rx_page_order, |
| 1126 | PCI_DMA_FROMDEVICE); |
| 1127 | list_add_tail(&rxb->list, &rxq->rx_free); |
| 1128 | rxq->free_count++; |
| 1129 | } else |
| 1130 | list_add_tail(&rxb->list, &rxq->rx_used); |
| 1131 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1132 | spin_unlock_irqrestore(&rxq->lock, flags); |
Zhu Yi | 7300515 | 2009-10-23 13:42:32 -0700 | [diff] [blame] | 1133 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1134 | i = (i + 1) & RX_QUEUE_MASK; |
Mohamed Abbas | 5c0eef9 | 2007-11-29 11:10:14 +0800 | [diff] [blame] | 1135 | /* If there are a lot of unused frames, |
| 1136 | * restock the Rx queue so ucode wont assert. */ |
| 1137 | if (fill_rx) { |
| 1138 | count++; |
| 1139 | if (count >= 8) { |
Zhu Yi | 7300515 | 2009-10-23 13:42:32 -0700 | [diff] [blame] | 1140 | rxq->read = i; |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 1141 | iwlagn_rx_replenish_now(priv); |
Mohamed Abbas | 5c0eef9 | 2007-11-29 11:10:14 +0800 | [diff] [blame] | 1142 | count = 0; |
| 1143 | } |
| 1144 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1145 | } |
| 1146 | |
| 1147 | /* Backtrack one entry */ |
Zhu Yi | 7300515 | 2009-10-23 13:42:32 -0700 | [diff] [blame] | 1148 | rxq->read = i; |
Mohamed Abbas | 4752c93 | 2009-05-22 11:01:51 -0700 | [diff] [blame] | 1149 | if (fill_rx) |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 1150 | iwlagn_rx_replenish_now(priv); |
Mohamed Abbas | 4752c93 | 2009-05-22 11:01:51 -0700 | [diff] [blame] | 1151 | else |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 1152 | iwlagn_rx_queue_restock(priv); |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 1153 | } |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 1154 | |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 1155 | /* call this function to flush any scheduled tasklet */ |
| 1156 | static inline void iwl_synchronize_irq(struct iwl_priv *priv) |
| 1157 | { |
Tomas Winkler | a96a27f | 2008-10-23 23:48:56 -0700 | [diff] [blame] | 1158 | /* wait to make sure we flush pending tasklet*/ |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 1159 | synchronize_irq(priv->pci_dev->irq); |
| 1160 | tasklet_kill(&priv->irq_tasklet); |
| 1161 | } |
| 1162 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1163 | static void iwl_irq_tasklet_legacy(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1164 | { |
| 1165 | u32 inta, handled = 0; |
| 1166 | u32 inta_fh; |
| 1167 | unsigned long flags; |
Ben Cahill | c2e61da | 2009-10-30 14:36:09 -0700 | [diff] [blame] | 1168 | u32 i; |
Tomas Winkler | 0a6857e | 2008-03-12 16:58:49 -0700 | [diff] [blame] | 1169 | #ifdef CONFIG_IWLWIFI_DEBUG |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1170 | u32 inta_mask; |
| 1171 | #endif |
| 1172 | |
| 1173 | spin_lock_irqsave(&priv->lock, flags); |
| 1174 | |
| 1175 | /* Ack/clear/reset pending uCode interrupts. |
| 1176 | * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS, |
| 1177 | * and will clear only when CSR_FH_INT_STATUS gets cleared. */ |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 1178 | inta = iwl_read32(priv, CSR_INT); |
| 1179 | iwl_write32(priv, CSR_INT, inta); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1180 | |
| 1181 | /* Ack/clear/reset pending flow-handler (DMA) interrupts. |
| 1182 | * Any new interrupts that happen after this, either while we're |
| 1183 | * in this tasklet, or later, will show up in next ISR/tasklet. */ |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 1184 | inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS); |
| 1185 | iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1186 | |
Tomas Winkler | 0a6857e | 2008-03-12 16:58:49 -0700 | [diff] [blame] | 1187 | #ifdef CONFIG_IWLWIFI_DEBUG |
Reinette Chatre | 3d816c7 | 2009-08-07 15:41:37 -0700 | [diff] [blame] | 1188 | if (iwl_get_debug_level(priv) & IWL_DL_ISR) { |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 1189 | /* just for debug */ |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 1190 | inta_mask = iwl_read32(priv, CSR_INT_MASK); |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 1191 | IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n", |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1192 | inta, inta_mask, inta_fh); |
| 1193 | } |
| 1194 | #endif |
| 1195 | |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 1196 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1197 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1198 | /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not |
| 1199 | * atomic, make sure that inta covers all the interrupts that |
| 1200 | * we've discovered, even if FH interrupt came in just after |
| 1201 | * reading CSR_INT. */ |
Tomas Winkler | 6f83eaa | 2008-03-04 18:09:28 -0800 | [diff] [blame] | 1202 | if (inta_fh & CSR49_FH_INT_RX_MASK) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1203 | inta |= CSR_INT_BIT_FH_RX; |
Tomas Winkler | 6f83eaa | 2008-03-04 18:09:28 -0800 | [diff] [blame] | 1204 | if (inta_fh & CSR49_FH_INT_TX_MASK) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1205 | inta |= CSR_INT_BIT_FH_TX; |
| 1206 | |
| 1207 | /* Now service all interrupt bits discovered above. */ |
| 1208 | if (inta & CSR_INT_BIT_HW_ERR) { |
Reinette Chatre | 58dba72 | 2009-07-17 09:30:25 -0700 | [diff] [blame] | 1209 | IWL_ERR(priv, "Hardware error detected. Restarting.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1210 | |
| 1211 | /* Tell the device to stop sending interrupts */ |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 1212 | iwl_disable_interrupts(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1213 | |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1214 | priv->isr_stats.hw++; |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 1215 | iwl_irq_handle_error(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1216 | |
| 1217 | handled |= CSR_INT_BIT_HW_ERR; |
| 1218 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1219 | return; |
| 1220 | } |
| 1221 | |
Tomas Winkler | 0a6857e | 2008-03-12 16:58:49 -0700 | [diff] [blame] | 1222 | #ifdef CONFIG_IWLWIFI_DEBUG |
Reinette Chatre | 3d816c7 | 2009-08-07 15:41:37 -0700 | [diff] [blame] | 1223 | if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1224 | /* NIC fires this, but we don't use it, redundant with WAKEUP */ |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1225 | if (inta & CSR_INT_BIT_SCD) { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 1226 | IWL_DEBUG_ISR(priv, "Scheduler finished to transmit " |
Joonwoo Park | 25c03d8 | 2008-01-23 10:15:20 -0800 | [diff] [blame] | 1227 | "the frame/frames.\n"); |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1228 | priv->isr_stats.sch++; |
| 1229 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1230 | |
| 1231 | /* Alive notification via Rx interrupt will do the real work */ |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1232 | if (inta & CSR_INT_BIT_ALIVE) { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 1233 | IWL_DEBUG_ISR(priv, "Alive interrupt\n"); |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1234 | priv->isr_stats.alive++; |
| 1235 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1236 | } |
| 1237 | #endif |
| 1238 | /* Safely ignore these bits for debug checks below */ |
Joonwoo Park | 25c03d8 | 2008-01-23 10:15:20 -0800 | [diff] [blame] | 1239 | inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1240 | |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 1241 | /* HW RF KILL switch toggled */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1242 | if (inta & CSR_INT_BIT_RF_KILL) { |
| 1243 | int hw_rf_kill = 0; |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 1244 | if (!(iwl_read32(priv, CSR_GP_CNTRL) & |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1245 | CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)) |
| 1246 | hw_rf_kill = 1; |
| 1247 | |
Reinette Chatre | 4c423a2 | 2009-07-17 09:30:26 -0700 | [diff] [blame] | 1248 | IWL_WARN(priv, "RF_KILL bit toggled to %s.\n", |
Abhijeet Kolekar | c305606 | 2008-11-12 13:14:08 -0800 | [diff] [blame] | 1249 | hw_rf_kill ? "disable radio" : "enable radio"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1250 | |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1251 | priv->isr_stats.rfkill++; |
| 1252 | |
Emmanuel Grumbach | a9efa65 | 2008-06-30 17:23:25 +0800 | [diff] [blame] | 1253 | /* driver only loads ucode once setting the interface up. |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 1254 | * the driver allows loading the ucode even if the radio |
| 1255 | * is killed. Hence update the killswitch state here. The |
| 1256 | * rfkill handler will care about restarting if needed. |
Emmanuel Grumbach | a9efa65 | 2008-06-30 17:23:25 +0800 | [diff] [blame] | 1257 | */ |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 1258 | if (!test_bit(STATUS_ALIVE, &priv->status)) { |
| 1259 | if (hw_rf_kill) |
| 1260 | set_bit(STATUS_RF_KILL_HW, &priv->status); |
| 1261 | else |
| 1262 | clear_bit(STATUS_RF_KILL_HW, &priv->status); |
Johannes Berg | a60e77e | 2009-06-04 18:26:06 +0200 | [diff] [blame] | 1263 | wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill); |
Mohamed Abbas | edb3422 | 2008-12-11 10:33:37 -0800 | [diff] [blame] | 1264 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1265 | |
| 1266 | handled |= CSR_INT_BIT_RF_KILL; |
| 1267 | } |
| 1268 | |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 1269 | /* Chip got too hot and stopped itself */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1270 | if (inta & CSR_INT_BIT_CT_KILL) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 1271 | IWL_ERR(priv, "Microcode CT kill error detected.\n"); |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1272 | priv->isr_stats.ctkill++; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1273 | handled |= CSR_INT_BIT_CT_KILL; |
| 1274 | } |
| 1275 | |
| 1276 | /* Error detected by uCode */ |
| 1277 | if (inta & CSR_INT_BIT_SW_ERR) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 1278 | IWL_ERR(priv, "Microcode SW error detected. " |
| 1279 | " Restarting 0x%X.\n", inta); |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1280 | priv->isr_stats.sw++; |
| 1281 | priv->isr_stats.sw_err = inta; |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 1282 | iwl_irq_handle_error(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1283 | handled |= CSR_INT_BIT_SW_ERR; |
| 1284 | } |
| 1285 | |
Ben Cahill | c2e61da | 2009-10-30 14:36:09 -0700 | [diff] [blame] | 1286 | /* |
| 1287 | * uCode wakes up after power-down sleep. |
| 1288 | * Tell device about any new tx or host commands enqueued, |
| 1289 | * and about any Rx buffers made available while asleep. |
| 1290 | */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1291 | if (inta & CSR_INT_BIT_WAKEUP) { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 1292 | IWL_DEBUG_ISR(priv, "Wakeup interrupt\n"); |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 1293 | iwl_rx_queue_update_write_ptr(priv, &priv->rxq); |
Ben Cahill | c2e61da | 2009-10-30 14:36:09 -0700 | [diff] [blame] | 1294 | for (i = 0; i < priv->hw_params.max_txq_num; i++) |
| 1295 | iwl_txq_update_write_ptr(priv, &priv->txq[i]); |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1296 | priv->isr_stats.wakeup++; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1297 | handled |= CSR_INT_BIT_WAKEUP; |
| 1298 | } |
| 1299 | |
| 1300 | /* All uCode command responses, including Tx command responses, |
| 1301 | * Rx "responses" (frame-received notification), and other |
| 1302 | * notifications from uCode come through here*/ |
| 1303 | if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) { |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 1304 | iwl_rx_handle(priv); |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1305 | priv->isr_stats.rx++; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1306 | handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX); |
| 1307 | } |
| 1308 | |
Ben Cahill | c72cd19 | 2009-10-30 14:36:08 -0700 | [diff] [blame] | 1309 | /* This "Tx" DMA channel is used only for loading uCode */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1310 | if (inta & CSR_INT_BIT_FH_TX) { |
Ben Cahill | c72cd19 | 2009-10-30 14:36:08 -0700 | [diff] [blame] | 1311 | IWL_DEBUG_ISR(priv, "uCode load interrupt\n"); |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1312 | priv->isr_stats.tx++; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1313 | handled |= CSR_INT_BIT_FH_TX; |
Ben Cahill | c72cd19 | 2009-10-30 14:36:08 -0700 | [diff] [blame] | 1314 | /* Wake up uCode load routine, now that load is complete */ |
Ron Rindjunsky | dbb983b | 2008-05-15 13:54:12 +0800 | [diff] [blame] | 1315 | priv->ucode_write_complete = 1; |
| 1316 | wake_up_interruptible(&priv->wait_command_queue); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1317 | } |
| 1318 | |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1319 | if (inta & ~handled) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 1320 | IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled); |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1321 | priv->isr_stats.unhandled++; |
| 1322 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1323 | |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 1324 | if (inta & ~(priv->inta_mask)) { |
Winkler, Tomas | 39aadf8 | 2008-12-19 10:37:32 +0800 | [diff] [blame] | 1325 | IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n", |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 1326 | inta & ~priv->inta_mask); |
Winkler, Tomas | 39aadf8 | 2008-12-19 10:37:32 +0800 | [diff] [blame] | 1327 | IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1328 | } |
| 1329 | |
| 1330 | /* Re-enable all interrupts */ |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 1331 | /* only Re-enable if diabled by irq */ |
| 1332 | if (test_bit(STATUS_INT_ENABLED, &priv->status)) |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 1333 | iwl_enable_interrupts(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1334 | |
Tomas Winkler | 0a6857e | 2008-03-12 16:58:49 -0700 | [diff] [blame] | 1335 | #ifdef CONFIG_IWLWIFI_DEBUG |
Reinette Chatre | 3d816c7 | 2009-08-07 15:41:37 -0700 | [diff] [blame] | 1336 | if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) { |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 1337 | inta = iwl_read32(priv, CSR_INT); |
| 1338 | inta_mask = iwl_read32(priv, CSR_INT_MASK); |
| 1339 | inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS); |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 1340 | IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, " |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1341 | "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags); |
| 1342 | } |
| 1343 | #endif |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1344 | } |
| 1345 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1346 | /* tasklet for iwlagn interrupt */ |
| 1347 | static void iwl_irq_tasklet(struct iwl_priv *priv) |
| 1348 | { |
| 1349 | u32 inta = 0; |
| 1350 | u32 handled = 0; |
| 1351 | unsigned long flags; |
Ben Cahill | 8756990 | 2009-11-06 14:53:01 -0800 | [diff] [blame] | 1352 | u32 i; |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1353 | #ifdef CONFIG_IWLWIFI_DEBUG |
| 1354 | u32 inta_mask; |
| 1355 | #endif |
| 1356 | |
| 1357 | spin_lock_irqsave(&priv->lock, flags); |
| 1358 | |
| 1359 | /* Ack/clear/reset pending uCode interrupts. |
| 1360 | * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS, |
| 1361 | */ |
Shanyu Zhao | 48a6be6 | 2010-03-16 10:22:26 -0700 | [diff] [blame] | 1362 | /* There is a hardware bug in the interrupt mask function that some |
| 1363 | * interrupts (i.e. CSR_INT_BIT_SCD) can still be generated even if |
| 1364 | * they are disabled in the CSR_INT_MASK register. Furthermore the |
| 1365 | * ICT interrupt handling mechanism has another bug that might cause |
| 1366 | * these unmasked interrupts fail to be detected. We workaround the |
| 1367 | * hardware bugs here by ACKing all the possible interrupts so that |
| 1368 | * interrupt coalescing can still be achieved. |
| 1369 | */ |
David S. Miller | 4a35ecf | 2010-04-06 23:53:30 -0700 | [diff] [blame] | 1370 | iwl_write32(priv, CSR_INT, priv->_agn.inta | ~priv->inta_mask); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1371 | |
Johannes Berg | a4c8b2a | 2010-01-21 06:25:54 -0800 | [diff] [blame] | 1372 | inta = priv->_agn.inta; |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1373 | |
| 1374 | #ifdef CONFIG_IWLWIFI_DEBUG |
Reinette Chatre | 3d816c7 | 2009-08-07 15:41:37 -0700 | [diff] [blame] | 1375 | if (iwl_get_debug_level(priv) & IWL_DL_ISR) { |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1376 | /* just for debug */ |
| 1377 | inta_mask = iwl_read32(priv, CSR_INT_MASK); |
| 1378 | IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x\n ", |
| 1379 | inta, inta_mask); |
| 1380 | } |
| 1381 | #endif |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 1382 | |
| 1383 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1384 | |
Johannes Berg | a4c8b2a | 2010-01-21 06:25:54 -0800 | [diff] [blame] | 1385 | /* saved interrupt in inta variable now we can reset priv->_agn.inta */ |
| 1386 | priv->_agn.inta = 0; |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1387 | |
| 1388 | /* Now service all interrupt bits discovered above. */ |
| 1389 | if (inta & CSR_INT_BIT_HW_ERR) { |
Reinette Chatre | 58dba72 | 2009-07-17 09:30:25 -0700 | [diff] [blame] | 1390 | IWL_ERR(priv, "Hardware error detected. Restarting.\n"); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1391 | |
| 1392 | /* Tell the device to stop sending interrupts */ |
| 1393 | iwl_disable_interrupts(priv); |
| 1394 | |
| 1395 | priv->isr_stats.hw++; |
| 1396 | iwl_irq_handle_error(priv); |
| 1397 | |
| 1398 | handled |= CSR_INT_BIT_HW_ERR; |
| 1399 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1400 | return; |
| 1401 | } |
| 1402 | |
| 1403 | #ifdef CONFIG_IWLWIFI_DEBUG |
Reinette Chatre | 3d816c7 | 2009-08-07 15:41:37 -0700 | [diff] [blame] | 1404 | if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) { |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1405 | /* NIC fires this, but we don't use it, redundant with WAKEUP */ |
| 1406 | if (inta & CSR_INT_BIT_SCD) { |
| 1407 | IWL_DEBUG_ISR(priv, "Scheduler finished to transmit " |
| 1408 | "the frame/frames.\n"); |
| 1409 | priv->isr_stats.sch++; |
| 1410 | } |
| 1411 | |
| 1412 | /* Alive notification via Rx interrupt will do the real work */ |
| 1413 | if (inta & CSR_INT_BIT_ALIVE) { |
| 1414 | IWL_DEBUG_ISR(priv, "Alive interrupt\n"); |
| 1415 | priv->isr_stats.alive++; |
| 1416 | } |
| 1417 | } |
| 1418 | #endif |
| 1419 | /* Safely ignore these bits for debug checks below */ |
| 1420 | inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE); |
| 1421 | |
| 1422 | /* HW RF KILL switch toggled */ |
| 1423 | if (inta & CSR_INT_BIT_RF_KILL) { |
| 1424 | int hw_rf_kill = 0; |
| 1425 | if (!(iwl_read32(priv, CSR_GP_CNTRL) & |
| 1426 | CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)) |
| 1427 | hw_rf_kill = 1; |
| 1428 | |
Reinette Chatre | 4c423a2 | 2009-07-17 09:30:26 -0700 | [diff] [blame] | 1429 | IWL_WARN(priv, "RF_KILL bit toggled to %s.\n", |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1430 | hw_rf_kill ? "disable radio" : "enable radio"); |
| 1431 | |
| 1432 | priv->isr_stats.rfkill++; |
| 1433 | |
| 1434 | /* driver only loads ucode once setting the interface up. |
| 1435 | * the driver allows loading the ucode even if the radio |
| 1436 | * is killed. Hence update the killswitch state here. The |
| 1437 | * rfkill handler will care about restarting if needed. |
| 1438 | */ |
| 1439 | if (!test_bit(STATUS_ALIVE, &priv->status)) { |
| 1440 | if (hw_rf_kill) |
| 1441 | set_bit(STATUS_RF_KILL_HW, &priv->status); |
| 1442 | else |
| 1443 | clear_bit(STATUS_RF_KILL_HW, &priv->status); |
Johannes Berg | a60e77e | 2009-06-04 18:26:06 +0200 | [diff] [blame] | 1444 | wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1445 | } |
| 1446 | |
| 1447 | handled |= CSR_INT_BIT_RF_KILL; |
| 1448 | } |
| 1449 | |
| 1450 | /* Chip got too hot and stopped itself */ |
| 1451 | if (inta & CSR_INT_BIT_CT_KILL) { |
| 1452 | IWL_ERR(priv, "Microcode CT kill error detected.\n"); |
| 1453 | priv->isr_stats.ctkill++; |
| 1454 | handled |= CSR_INT_BIT_CT_KILL; |
| 1455 | } |
| 1456 | |
| 1457 | /* Error detected by uCode */ |
| 1458 | if (inta & CSR_INT_BIT_SW_ERR) { |
| 1459 | IWL_ERR(priv, "Microcode SW error detected. " |
| 1460 | " Restarting 0x%X.\n", inta); |
| 1461 | priv->isr_stats.sw++; |
| 1462 | priv->isr_stats.sw_err = inta; |
| 1463 | iwl_irq_handle_error(priv); |
| 1464 | handled |= CSR_INT_BIT_SW_ERR; |
| 1465 | } |
| 1466 | |
| 1467 | /* uCode wakes up after power-down sleep */ |
| 1468 | if (inta & CSR_INT_BIT_WAKEUP) { |
| 1469 | IWL_DEBUG_ISR(priv, "Wakeup interrupt\n"); |
| 1470 | iwl_rx_queue_update_write_ptr(priv, &priv->rxq); |
Ben Cahill | 8756990 | 2009-11-06 14:53:01 -0800 | [diff] [blame] | 1471 | for (i = 0; i < priv->hw_params.max_txq_num; i++) |
| 1472 | iwl_txq_update_write_ptr(priv, &priv->txq[i]); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1473 | |
| 1474 | priv->isr_stats.wakeup++; |
| 1475 | |
| 1476 | handled |= CSR_INT_BIT_WAKEUP; |
| 1477 | } |
| 1478 | |
| 1479 | /* All uCode command responses, including Tx command responses, |
| 1480 | * Rx "responses" (frame-received notification), and other |
| 1481 | * notifications from uCode come through here*/ |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 1482 | if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX | |
| 1483 | CSR_INT_BIT_RX_PERIODIC)) { |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1484 | IWL_DEBUG_ISR(priv, "Rx interrupt\n"); |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 1485 | if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) { |
| 1486 | handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX); |
| 1487 | iwl_write32(priv, CSR_FH_INT_STATUS, |
| 1488 | CSR49_FH_INT_RX_MASK); |
| 1489 | } |
| 1490 | if (inta & CSR_INT_BIT_RX_PERIODIC) { |
| 1491 | handled |= CSR_INT_BIT_RX_PERIODIC; |
| 1492 | iwl_write32(priv, CSR_INT, CSR_INT_BIT_RX_PERIODIC); |
| 1493 | } |
| 1494 | /* Sending RX interrupt require many steps to be done in the |
| 1495 | * the device: |
| 1496 | * 1- write interrupt to current index in ICT table. |
| 1497 | * 2- dma RX frame. |
| 1498 | * 3- update RX shared data to indicate last write index. |
| 1499 | * 4- send interrupt. |
| 1500 | * This could lead to RX race, driver could receive RX interrupt |
Ben Cahill | 74ba67e | 2009-11-20 12:04:53 -0800 | [diff] [blame] | 1501 | * but the shared data changes does not reflect this; |
| 1502 | * periodic interrupt will detect any dangling Rx activity. |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 1503 | */ |
Ben Cahill | 74ba67e | 2009-11-20 12:04:53 -0800 | [diff] [blame] | 1504 | |
| 1505 | /* Disable periodic interrupt; we use it as just a one-shot. */ |
| 1506 | iwl_write8(priv, CSR_INT_PERIODIC_REG, |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 1507 | CSR_INT_PERIODIC_DIS); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1508 | iwl_rx_handle(priv); |
Ben Cahill | 74ba67e | 2009-11-20 12:04:53 -0800 | [diff] [blame] | 1509 | |
| 1510 | /* |
| 1511 | * Enable periodic interrupt in 8 msec only if we received |
| 1512 | * real RX interrupt (instead of just periodic int), to catch |
| 1513 | * any dangling Rx interrupt. If it was just the periodic |
| 1514 | * interrupt, there was no dangling Rx activity, and no need |
| 1515 | * to extend the periodic interrupt; one-shot is enough. |
| 1516 | */ |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 1517 | if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) |
Ben Cahill | 74ba67e | 2009-11-20 12:04:53 -0800 | [diff] [blame] | 1518 | iwl_write8(priv, CSR_INT_PERIODIC_REG, |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 1519 | CSR_INT_PERIODIC_ENA); |
| 1520 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1521 | priv->isr_stats.rx++; |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1522 | } |
| 1523 | |
Ben Cahill | c72cd19 | 2009-10-30 14:36:08 -0700 | [diff] [blame] | 1524 | /* This "Tx" DMA channel is used only for loading uCode */ |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1525 | if (inta & CSR_INT_BIT_FH_TX) { |
| 1526 | iwl_write32(priv, CSR_FH_INT_STATUS, CSR49_FH_INT_TX_MASK); |
Ben Cahill | c72cd19 | 2009-10-30 14:36:08 -0700 | [diff] [blame] | 1527 | IWL_DEBUG_ISR(priv, "uCode load interrupt\n"); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1528 | priv->isr_stats.tx++; |
| 1529 | handled |= CSR_INT_BIT_FH_TX; |
Ben Cahill | c72cd19 | 2009-10-30 14:36:08 -0700 | [diff] [blame] | 1530 | /* Wake up uCode load routine, now that load is complete */ |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1531 | priv->ucode_write_complete = 1; |
| 1532 | wake_up_interruptible(&priv->wait_command_queue); |
| 1533 | } |
| 1534 | |
| 1535 | if (inta & ~handled) { |
| 1536 | IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled); |
| 1537 | priv->isr_stats.unhandled++; |
| 1538 | } |
| 1539 | |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 1540 | if (inta & ~(priv->inta_mask)) { |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1541 | IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n", |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 1542 | inta & ~priv->inta_mask); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1543 | } |
| 1544 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1545 | /* Re-enable all interrupts */ |
| 1546 | /* only Re-enable if diabled by irq */ |
| 1547 | if (test_bit(STATUS_INT_ENABLED, &priv->status)) |
| 1548 | iwl_enable_interrupts(priv); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1549 | } |
| 1550 | |
Wey-Yi Guy | 872c8dd | 2010-03-16 10:46:31 -0700 | [diff] [blame] | 1551 | /* the threshold ratio of actual_ack_cnt to expected_ack_cnt in percent */ |
| 1552 | #define ACK_CNT_RATIO (50) |
| 1553 | #define BA_TIMEOUT_CNT (5) |
| 1554 | #define BA_TIMEOUT_MAX (16) |
| 1555 | |
| 1556 | /** |
| 1557 | * iwl_good_ack_health - checks for ACK count ratios, BA timeout retries. |
| 1558 | * |
| 1559 | * When the ACK count ratio is 0 and aggregated BA timeout retries exceeding |
| 1560 | * the BA_TIMEOUT_MAX, reload firmware and bring system back to normal |
| 1561 | * operation state. |
| 1562 | */ |
| 1563 | bool iwl_good_ack_health(struct iwl_priv *priv, |
| 1564 | struct iwl_rx_packet *pkt) |
| 1565 | { |
| 1566 | bool rc = true; |
| 1567 | int actual_ack_cnt_delta, expected_ack_cnt_delta; |
| 1568 | int ba_timeout_delta; |
| 1569 | |
| 1570 | actual_ack_cnt_delta = |
| 1571 | le32_to_cpu(pkt->u.stats.tx.actual_ack_cnt) - |
Wey-Yi Guy | f3aebee | 2010-06-14 17:09:54 -0700 | [diff] [blame] | 1572 | le32_to_cpu(priv->_agn.statistics.tx.actual_ack_cnt); |
Wey-Yi Guy | 872c8dd | 2010-03-16 10:46:31 -0700 | [diff] [blame] | 1573 | expected_ack_cnt_delta = |
| 1574 | le32_to_cpu(pkt->u.stats.tx.expected_ack_cnt) - |
Wey-Yi Guy | f3aebee | 2010-06-14 17:09:54 -0700 | [diff] [blame] | 1575 | le32_to_cpu(priv->_agn.statistics.tx.expected_ack_cnt); |
Wey-Yi Guy | 872c8dd | 2010-03-16 10:46:31 -0700 | [diff] [blame] | 1576 | ba_timeout_delta = |
| 1577 | le32_to_cpu(pkt->u.stats.tx.agg.ba_timeout) - |
Wey-Yi Guy | f3aebee | 2010-06-14 17:09:54 -0700 | [diff] [blame] | 1578 | le32_to_cpu(priv->_agn.statistics.tx.agg.ba_timeout); |
Wey-Yi Guy | 872c8dd | 2010-03-16 10:46:31 -0700 | [diff] [blame] | 1579 | if ((priv->_agn.agg_tids_count > 0) && |
| 1580 | (expected_ack_cnt_delta > 0) && |
| 1581 | (((actual_ack_cnt_delta * 100) / expected_ack_cnt_delta) |
| 1582 | < ACK_CNT_RATIO) && |
| 1583 | (ba_timeout_delta > BA_TIMEOUT_CNT)) { |
| 1584 | IWL_DEBUG_RADIO(priv, "actual_ack_cnt delta = %d," |
| 1585 | " expected_ack_cnt = %d\n", |
| 1586 | actual_ack_cnt_delta, expected_ack_cnt_delta); |
| 1587 | |
Johannes Berg | d73e492 | 2010-05-06 12:18:41 -0700 | [diff] [blame] | 1588 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
| 1589 | /* |
| 1590 | * This is ifdef'ed on DEBUGFS because otherwise the |
| 1591 | * statistics aren't available. If DEBUGFS is set but |
| 1592 | * DEBUG is not, these will just compile out. |
| 1593 | */ |
Wey-Yi Guy | 872c8dd | 2010-03-16 10:46:31 -0700 | [diff] [blame] | 1594 | IWL_DEBUG_RADIO(priv, "rx_detected_cnt delta = %d\n", |
Wey-Yi Guy | f3aebee | 2010-06-14 17:09:54 -0700 | [diff] [blame] | 1595 | priv->_agn.delta_statistics.tx.rx_detected_cnt); |
Wey-Yi Guy | 872c8dd | 2010-03-16 10:46:31 -0700 | [diff] [blame] | 1596 | IWL_DEBUG_RADIO(priv, |
| 1597 | "ack_or_ba_timeout_collision delta = %d\n", |
Wey-Yi Guy | f3aebee | 2010-06-14 17:09:54 -0700 | [diff] [blame] | 1598 | priv->_agn.delta_statistics.tx. |
Wey-Yi Guy | 872c8dd | 2010-03-16 10:46:31 -0700 | [diff] [blame] | 1599 | ack_or_ba_timeout_collision); |
| 1600 | #endif |
| 1601 | IWL_DEBUG_RADIO(priv, "agg ba_timeout delta = %d\n", |
| 1602 | ba_timeout_delta); |
| 1603 | if (!actual_ack_cnt_delta && |
| 1604 | (ba_timeout_delta >= BA_TIMEOUT_MAX)) |
| 1605 | rc = false; |
| 1606 | } |
| 1607 | return rc; |
| 1608 | } |
| 1609 | |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1610 | |
Emmanuel Grumbach | 7d47618 | 2010-05-23 00:14:08 -0700 | [diff] [blame] | 1611 | /***************************************************************************** |
| 1612 | * |
| 1613 | * sysfs attributes |
| 1614 | * |
| 1615 | *****************************************************************************/ |
| 1616 | |
| 1617 | #ifdef CONFIG_IWLWIFI_DEBUG |
| 1618 | |
| 1619 | /* |
| 1620 | * The following adds a new attribute to the sysfs representation |
| 1621 | * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/) |
| 1622 | * used for controlling the debug level. |
| 1623 | * |
| 1624 | * See the level definitions in iwl for details. |
| 1625 | * |
| 1626 | * The debug_level being managed using sysfs below is a per device debug |
| 1627 | * level that is used instead of the global debug level if it (the per |
| 1628 | * device debug level) is set. |
| 1629 | */ |
| 1630 | static ssize_t show_debug_level(struct device *d, |
| 1631 | struct device_attribute *attr, char *buf) |
| 1632 | { |
| 1633 | struct iwl_priv *priv = dev_get_drvdata(d); |
| 1634 | return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv)); |
| 1635 | } |
| 1636 | static ssize_t store_debug_level(struct device *d, |
| 1637 | struct device_attribute *attr, |
| 1638 | const char *buf, size_t count) |
| 1639 | { |
| 1640 | struct iwl_priv *priv = dev_get_drvdata(d); |
| 1641 | unsigned long val; |
| 1642 | int ret; |
| 1643 | |
| 1644 | ret = strict_strtoul(buf, 0, &val); |
| 1645 | if (ret) |
| 1646 | IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf); |
| 1647 | else { |
| 1648 | priv->debug_level = val; |
| 1649 | if (iwl_alloc_traffic_mem(priv)) |
| 1650 | IWL_ERR(priv, |
| 1651 | "Not enough memory to generate traffic log\n"); |
| 1652 | } |
| 1653 | return strnlen(buf, count); |
| 1654 | } |
| 1655 | |
| 1656 | static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO, |
| 1657 | show_debug_level, store_debug_level); |
| 1658 | |
| 1659 | |
| 1660 | #endif /* CONFIG_IWLWIFI_DEBUG */ |
| 1661 | |
| 1662 | |
| 1663 | static ssize_t show_temperature(struct device *d, |
| 1664 | struct device_attribute *attr, char *buf) |
| 1665 | { |
| 1666 | struct iwl_priv *priv = dev_get_drvdata(d); |
| 1667 | |
| 1668 | if (!iwl_is_alive(priv)) |
| 1669 | return -EAGAIN; |
| 1670 | |
| 1671 | return sprintf(buf, "%d\n", priv->temperature); |
| 1672 | } |
| 1673 | |
| 1674 | static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL); |
| 1675 | |
| 1676 | static ssize_t show_tx_power(struct device *d, |
| 1677 | struct device_attribute *attr, char *buf) |
| 1678 | { |
| 1679 | struct iwl_priv *priv = dev_get_drvdata(d); |
| 1680 | |
| 1681 | if (!iwl_is_ready_rf(priv)) |
| 1682 | return sprintf(buf, "off\n"); |
| 1683 | else |
| 1684 | return sprintf(buf, "%d\n", priv->tx_power_user_lmt); |
| 1685 | } |
| 1686 | |
| 1687 | static ssize_t store_tx_power(struct device *d, |
| 1688 | struct device_attribute *attr, |
| 1689 | const char *buf, size_t count) |
| 1690 | { |
| 1691 | struct iwl_priv *priv = dev_get_drvdata(d); |
| 1692 | unsigned long val; |
| 1693 | int ret; |
| 1694 | |
| 1695 | ret = strict_strtoul(buf, 10, &val); |
| 1696 | if (ret) |
| 1697 | IWL_INFO(priv, "%s is not in decimal form.\n", buf); |
| 1698 | else { |
| 1699 | ret = iwl_set_tx_power(priv, val, false); |
| 1700 | if (ret) |
| 1701 | IWL_ERR(priv, "failed setting tx power (0x%d).\n", |
| 1702 | ret); |
| 1703 | else |
| 1704 | ret = count; |
| 1705 | } |
| 1706 | return ret; |
| 1707 | } |
| 1708 | |
| 1709 | static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power); |
| 1710 | |
Emmanuel Grumbach | 7d47618 | 2010-05-23 00:14:08 -0700 | [diff] [blame] | 1711 | static struct attribute *iwl_sysfs_entries[] = { |
| 1712 | &dev_attr_temperature.attr, |
| 1713 | &dev_attr_tx_power.attr, |
Emmanuel Grumbach | 7d47618 | 2010-05-23 00:14:08 -0700 | [diff] [blame] | 1714 | #ifdef CONFIG_IWLWIFI_DEBUG |
| 1715 | &dev_attr_debug_level.attr, |
| 1716 | #endif |
| 1717 | NULL |
| 1718 | }; |
| 1719 | |
| 1720 | static struct attribute_group iwl_attribute_group = { |
| 1721 | .name = NULL, /* put in device directory */ |
| 1722 | .attrs = iwl_sysfs_entries, |
| 1723 | }; |
| 1724 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1725 | /****************************************************************************** |
| 1726 | * |
| 1727 | * uCode download functions |
| 1728 | * |
| 1729 | ******************************************************************************/ |
| 1730 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 1731 | static void iwl_dealloc_ucode_pci(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1732 | { |
Tomas Winkler | 98c9221 | 2008-01-14 17:46:20 -0800 | [diff] [blame] | 1733 | iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code); |
| 1734 | iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data); |
| 1735 | iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup); |
| 1736 | iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init); |
| 1737 | iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data); |
| 1738 | iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1739 | } |
| 1740 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 1741 | static void iwl_nic_start(struct iwl_priv *priv) |
Ron Rindjunsky | edcdf8b | 2008-05-15 13:53:55 +0800 | [diff] [blame] | 1742 | { |
| 1743 | /* Remove all resets to allow NIC to operate */ |
| 1744 | iwl_write32(priv, CSR_RESET, 0); |
| 1745 | } |
| 1746 | |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1747 | struct iwlagn_ucode_capabilities { |
| 1748 | u32 max_probe_length; |
Wey-Yi Guy | 6a822d0 | 2010-07-13 17:13:15 -0700 | [diff] [blame] | 1749 | u32 standard_phy_calibration_size; |
Johannes Berg | ece9c4e | 2010-08-23 10:46:49 +0200 | [diff] [blame] | 1750 | bool pan; |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1751 | }; |
Ron Rindjunsky | edcdf8b | 2008-05-15 13:53:55 +0800 | [diff] [blame] | 1752 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1753 | static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1754 | static int iwl_mac_setup_register(struct iwl_priv *priv, |
| 1755 | struct iwlagn_ucode_capabilities *capa); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1756 | |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1757 | #define UCODE_EXPERIMENTAL_INDEX 100 |
| 1758 | #define UCODE_EXPERIMENTAL_TAG "exp" |
| 1759 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1760 | static int __must_check iwl_request_firmware(struct iwl_priv *priv, bool first) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1761 | { |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 1762 | const char *name_pre = priv->cfg->fw_name_pre; |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1763 | char tag[8]; |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1764 | |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1765 | if (first) { |
| 1766 | #ifdef CONFIG_IWLWIFI_DEBUG_EXPERIMENTAL_UCODE |
| 1767 | priv->fw_index = UCODE_EXPERIMENTAL_INDEX; |
| 1768 | strcpy(tag, UCODE_EXPERIMENTAL_TAG); |
| 1769 | } else if (priv->fw_index == UCODE_EXPERIMENTAL_INDEX) { |
| 1770 | #endif |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1771 | priv->fw_index = priv->cfg->ucode_api_max; |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1772 | sprintf(tag, "%d", priv->fw_index); |
| 1773 | } else { |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1774 | priv->fw_index--; |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1775 | sprintf(tag, "%d", priv->fw_index); |
| 1776 | } |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1777 | |
| 1778 | if (priv->fw_index < priv->cfg->ucode_api_min) { |
| 1779 | IWL_ERR(priv, "no suitable firmware found!\n"); |
| 1780 | return -ENOENT; |
| 1781 | } |
| 1782 | |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1783 | sprintf(priv->firmware_name, "%s%s%s", name_pre, tag, ".ucode"); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1784 | |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1785 | IWL_DEBUG_INFO(priv, "attempting to load firmware %s'%s'\n", |
| 1786 | (priv->fw_index == UCODE_EXPERIMENTAL_INDEX) |
| 1787 | ? "EXPERIMENTAL " : "", |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1788 | priv->firmware_name); |
| 1789 | |
| 1790 | return request_firmware_nowait(THIS_MODULE, 1, priv->firmware_name, |
| 1791 | &priv->pci_dev->dev, GFP_KERNEL, priv, |
| 1792 | iwl_ucode_callback); |
| 1793 | } |
| 1794 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1795 | struct iwlagn_firmware_pieces { |
| 1796 | const void *inst, *data, *init, *init_data, *boot; |
| 1797 | size_t inst_size, data_size, init_size, init_data_size, boot_size; |
| 1798 | |
| 1799 | u32 build; |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1800 | |
| 1801 | u32 init_evtlog_ptr, init_evtlog_size, init_errlog_ptr; |
| 1802 | u32 inst_evtlog_ptr, inst_evtlog_size, inst_errlog_ptr; |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1803 | }; |
| 1804 | |
| 1805 | static int iwlagn_load_legacy_firmware(struct iwl_priv *priv, |
| 1806 | const struct firmware *ucode_raw, |
| 1807 | struct iwlagn_firmware_pieces *pieces) |
| 1808 | { |
| 1809 | struct iwl_ucode_header *ucode = (void *)ucode_raw->data; |
| 1810 | u32 api_ver, hdr_size; |
| 1811 | const u8 *src; |
| 1812 | |
| 1813 | priv->ucode_ver = le32_to_cpu(ucode->ver); |
| 1814 | api_ver = IWL_UCODE_API(priv->ucode_ver); |
| 1815 | |
| 1816 | switch (api_ver) { |
| 1817 | default: |
| 1818 | /* |
| 1819 | * 4965 doesn't revision the firmware file format |
| 1820 | * along with the API version, it always uses v1 |
| 1821 | * file format. |
| 1822 | */ |
| 1823 | if ((priv->hw_rev & CSR_HW_REV_TYPE_MSK) != |
| 1824 | CSR_HW_REV_TYPE_4965) { |
| 1825 | hdr_size = 28; |
| 1826 | if (ucode_raw->size < hdr_size) { |
| 1827 | IWL_ERR(priv, "File size too small!\n"); |
| 1828 | return -EINVAL; |
| 1829 | } |
| 1830 | pieces->build = le32_to_cpu(ucode->u.v2.build); |
| 1831 | pieces->inst_size = le32_to_cpu(ucode->u.v2.inst_size); |
| 1832 | pieces->data_size = le32_to_cpu(ucode->u.v2.data_size); |
| 1833 | pieces->init_size = le32_to_cpu(ucode->u.v2.init_size); |
| 1834 | pieces->init_data_size = le32_to_cpu(ucode->u.v2.init_data_size); |
| 1835 | pieces->boot_size = le32_to_cpu(ucode->u.v2.boot_size); |
| 1836 | src = ucode->u.v2.data; |
| 1837 | break; |
| 1838 | } |
| 1839 | /* fall through for 4965 */ |
| 1840 | case 0: |
| 1841 | case 1: |
| 1842 | case 2: |
| 1843 | hdr_size = 24; |
| 1844 | if (ucode_raw->size < hdr_size) { |
| 1845 | IWL_ERR(priv, "File size too small!\n"); |
| 1846 | return -EINVAL; |
| 1847 | } |
| 1848 | pieces->build = 0; |
| 1849 | pieces->inst_size = le32_to_cpu(ucode->u.v1.inst_size); |
| 1850 | pieces->data_size = le32_to_cpu(ucode->u.v1.data_size); |
| 1851 | pieces->init_size = le32_to_cpu(ucode->u.v1.init_size); |
| 1852 | pieces->init_data_size = le32_to_cpu(ucode->u.v1.init_data_size); |
| 1853 | pieces->boot_size = le32_to_cpu(ucode->u.v1.boot_size); |
| 1854 | src = ucode->u.v1.data; |
| 1855 | break; |
| 1856 | } |
| 1857 | |
| 1858 | /* Verify size of file vs. image size info in file's header */ |
| 1859 | if (ucode_raw->size != hdr_size + pieces->inst_size + |
| 1860 | pieces->data_size + pieces->init_size + |
| 1861 | pieces->init_data_size + pieces->boot_size) { |
| 1862 | |
| 1863 | IWL_ERR(priv, |
| 1864 | "uCode file size %d does not match expected size\n", |
| 1865 | (int)ucode_raw->size); |
| 1866 | return -EINVAL; |
| 1867 | } |
| 1868 | |
| 1869 | pieces->inst = src; |
| 1870 | src += pieces->inst_size; |
| 1871 | pieces->data = src; |
| 1872 | src += pieces->data_size; |
| 1873 | pieces->init = src; |
| 1874 | src += pieces->init_size; |
| 1875 | pieces->init_data = src; |
| 1876 | src += pieces->init_data_size; |
| 1877 | pieces->boot = src; |
| 1878 | src += pieces->boot_size; |
| 1879 | |
| 1880 | return 0; |
| 1881 | } |
| 1882 | |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1883 | static int iwlagn_wanted_ucode_alternative = 1; |
| 1884 | |
| 1885 | static int iwlagn_load_firmware(struct iwl_priv *priv, |
| 1886 | const struct firmware *ucode_raw, |
| 1887 | struct iwlagn_firmware_pieces *pieces, |
| 1888 | struct iwlagn_ucode_capabilities *capa) |
| 1889 | { |
| 1890 | struct iwl_tlv_ucode_header *ucode = (void *)ucode_raw->data; |
| 1891 | struct iwl_ucode_tlv *tlv; |
| 1892 | size_t len = ucode_raw->size; |
| 1893 | const u8 *data; |
| 1894 | int wanted_alternative = iwlagn_wanted_ucode_alternative, tmp; |
| 1895 | u64 alternatives; |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1896 | u32 tlv_len; |
| 1897 | enum iwl_ucode_tlv_type tlv_type; |
| 1898 | const u8 *tlv_data; |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1899 | |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1900 | if (len < sizeof(*ucode)) { |
| 1901 | IWL_ERR(priv, "uCode has invalid length: %zd\n", len); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1902 | return -EINVAL; |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1903 | } |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1904 | |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1905 | if (ucode->magic != cpu_to_le32(IWL_TLV_UCODE_MAGIC)) { |
| 1906 | IWL_ERR(priv, "invalid uCode magic: 0X%x\n", |
| 1907 | le32_to_cpu(ucode->magic)); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1908 | return -EINVAL; |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1909 | } |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1910 | |
| 1911 | /* |
| 1912 | * Check which alternatives are present, and "downgrade" |
| 1913 | * when the chosen alternative is not present, warning |
| 1914 | * the user when that happens. Some files may not have |
| 1915 | * any alternatives, so don't warn in that case. |
| 1916 | */ |
| 1917 | alternatives = le64_to_cpu(ucode->alternatives); |
| 1918 | tmp = wanted_alternative; |
| 1919 | if (wanted_alternative > 63) |
| 1920 | wanted_alternative = 63; |
| 1921 | while (wanted_alternative && !(alternatives & BIT(wanted_alternative))) |
| 1922 | wanted_alternative--; |
| 1923 | if (wanted_alternative && wanted_alternative != tmp) |
| 1924 | IWL_WARN(priv, |
| 1925 | "uCode alternative %d not available, choosing %d\n", |
| 1926 | tmp, wanted_alternative); |
| 1927 | |
| 1928 | priv->ucode_ver = le32_to_cpu(ucode->ver); |
| 1929 | pieces->build = le32_to_cpu(ucode->build); |
| 1930 | data = ucode->data; |
| 1931 | |
| 1932 | len -= sizeof(*ucode); |
| 1933 | |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 1934 | while (len >= sizeof(*tlv)) { |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1935 | u16 tlv_alt; |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1936 | |
| 1937 | len -= sizeof(*tlv); |
| 1938 | tlv = (void *)data; |
| 1939 | |
| 1940 | tlv_len = le32_to_cpu(tlv->length); |
| 1941 | tlv_type = le16_to_cpu(tlv->type); |
| 1942 | tlv_alt = le16_to_cpu(tlv->alternative); |
| 1943 | tlv_data = tlv->data; |
| 1944 | |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1945 | if (len < tlv_len) { |
| 1946 | IWL_ERR(priv, "invalid TLV len: %zd/%u\n", |
| 1947 | len, tlv_len); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1948 | return -EINVAL; |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1949 | } |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1950 | len -= ALIGN(tlv_len, 4); |
| 1951 | data += sizeof(*tlv) + ALIGN(tlv_len, 4); |
| 1952 | |
| 1953 | /* |
| 1954 | * Alternative 0 is always valid. |
| 1955 | * |
| 1956 | * Skip alternative TLVs that are not selected. |
| 1957 | */ |
| 1958 | if (tlv_alt != 0 && tlv_alt != wanted_alternative) |
| 1959 | continue; |
| 1960 | |
| 1961 | switch (tlv_type) { |
| 1962 | case IWL_UCODE_TLV_INST: |
| 1963 | pieces->inst = tlv_data; |
| 1964 | pieces->inst_size = tlv_len; |
| 1965 | break; |
| 1966 | case IWL_UCODE_TLV_DATA: |
| 1967 | pieces->data = tlv_data; |
| 1968 | pieces->data_size = tlv_len; |
| 1969 | break; |
| 1970 | case IWL_UCODE_TLV_INIT: |
| 1971 | pieces->init = tlv_data; |
| 1972 | pieces->init_size = tlv_len; |
| 1973 | break; |
| 1974 | case IWL_UCODE_TLV_INIT_DATA: |
| 1975 | pieces->init_data = tlv_data; |
| 1976 | pieces->init_data_size = tlv_len; |
| 1977 | break; |
| 1978 | case IWL_UCODE_TLV_BOOT: |
| 1979 | pieces->boot = tlv_data; |
| 1980 | pieces->boot_size = tlv_len; |
| 1981 | break; |
| 1982 | case IWL_UCODE_TLV_PROBE_MAX_LEN: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 1983 | if (tlv_len != sizeof(u32)) |
| 1984 | goto invalid_tlv_len; |
| 1985 | capa->max_probe_length = |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1986 | le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1987 | break; |
Johannes Berg | ece9c4e | 2010-08-23 10:46:49 +0200 | [diff] [blame] | 1988 | case IWL_UCODE_TLV_PAN: |
| 1989 | if (tlv_len) |
| 1990 | goto invalid_tlv_len; |
| 1991 | capa->pan = true; |
| 1992 | break; |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1993 | case IWL_UCODE_TLV_INIT_EVTLOG_PTR: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 1994 | if (tlv_len != sizeof(u32)) |
| 1995 | goto invalid_tlv_len; |
| 1996 | pieces->init_evtlog_ptr = |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1997 | le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1998 | break; |
| 1999 | case IWL_UCODE_TLV_INIT_EVTLOG_SIZE: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 2000 | if (tlv_len != sizeof(u32)) |
| 2001 | goto invalid_tlv_len; |
| 2002 | pieces->init_evtlog_size = |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 2003 | le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2004 | break; |
| 2005 | case IWL_UCODE_TLV_INIT_ERRLOG_PTR: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 2006 | if (tlv_len != sizeof(u32)) |
| 2007 | goto invalid_tlv_len; |
| 2008 | pieces->init_errlog_ptr = |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 2009 | le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2010 | break; |
| 2011 | case IWL_UCODE_TLV_RUNT_EVTLOG_PTR: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 2012 | if (tlv_len != sizeof(u32)) |
| 2013 | goto invalid_tlv_len; |
| 2014 | pieces->inst_evtlog_ptr = |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 2015 | le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2016 | break; |
| 2017 | case IWL_UCODE_TLV_RUNT_EVTLOG_SIZE: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 2018 | if (tlv_len != sizeof(u32)) |
| 2019 | goto invalid_tlv_len; |
| 2020 | pieces->inst_evtlog_size = |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 2021 | le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2022 | break; |
| 2023 | case IWL_UCODE_TLV_RUNT_ERRLOG_PTR: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 2024 | if (tlv_len != sizeof(u32)) |
| 2025 | goto invalid_tlv_len; |
| 2026 | pieces->inst_errlog_ptr = |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 2027 | le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2028 | break; |
Wey-Yi Guy | c8312fa | 2010-06-28 13:05:17 -0700 | [diff] [blame] | 2029 | case IWL_UCODE_TLV_ENHANCE_SENS_TBL: |
| 2030 | if (tlv_len) |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 2031 | goto invalid_tlv_len; |
| 2032 | priv->enhance_sensitivity_table = true; |
Wey-Yi Guy | c8312fa | 2010-06-28 13:05:17 -0700 | [diff] [blame] | 2033 | break; |
Wey-Yi Guy | 6a822d0 | 2010-07-13 17:13:15 -0700 | [diff] [blame] | 2034 | case IWL_UCODE_TLV_PHY_CALIBRATION_SIZE: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 2035 | if (tlv_len != sizeof(u32)) |
| 2036 | goto invalid_tlv_len; |
| 2037 | capa->standard_phy_calibration_size = |
Wey-Yi Guy | 6a822d0 | 2010-07-13 17:13:15 -0700 | [diff] [blame] | 2038 | le32_to_cpup((__le32 *)tlv_data); |
| 2039 | break; |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 2040 | default: |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 2041 | IWL_WARN(priv, "unknown TLV: %d\n", tlv_type); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 2042 | break; |
| 2043 | } |
| 2044 | } |
| 2045 | |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 2046 | if (len) { |
| 2047 | IWL_ERR(priv, "invalid TLV after parsing: %zd\n", len); |
| 2048 | iwl_print_hex_dump(priv, IWL_DL_FW, (u8 *)data, len); |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 2049 | return -EINVAL; |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 2050 | } |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 2051 | |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 2052 | return 0; |
| 2053 | |
| 2054 | invalid_tlv_len: |
| 2055 | IWL_ERR(priv, "TLV %d has invalid size: %u\n", tlv_type, tlv_len); |
| 2056 | iwl_print_hex_dump(priv, IWL_DL_FW, tlv_data, tlv_len); |
| 2057 | |
| 2058 | return -EINVAL; |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 2059 | } |
| 2060 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2061 | /** |
| 2062 | * iwl_ucode_callback - callback when firmware was loaded |
| 2063 | * |
| 2064 | * If loaded successfully, copies the firmware into buffers |
| 2065 | * for the card to fetch (via DMA). |
| 2066 | */ |
| 2067 | static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context) |
| 2068 | { |
| 2069 | struct iwl_priv *priv = context; |
| 2070 | struct iwl_ucode_header *ucode; |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2071 | int err; |
| 2072 | struct iwlagn_firmware_pieces pieces; |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 2073 | const unsigned int api_max = priv->cfg->ucode_api_max; |
| 2074 | const unsigned int api_min = priv->cfg->ucode_api_min; |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2075 | u32 api_ver; |
Johannes Berg | 3e4de76 | 2010-04-28 12:09:12 -0700 | [diff] [blame] | 2076 | char buildstr[25]; |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2077 | u32 build; |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 2078 | struct iwlagn_ucode_capabilities ucode_capa = { |
| 2079 | .max_probe_length = 200, |
Wey-Yi Guy | 6a822d0 | 2010-07-13 17:13:15 -0700 | [diff] [blame] | 2080 | .standard_phy_calibration_size = |
| 2081 | IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE, |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 2082 | }; |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2083 | |
| 2084 | memset(&pieces, 0, sizeof(pieces)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2085 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2086 | if (!ucode_raw) { |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 2087 | if (priv->fw_index <= priv->cfg->ucode_api_max) |
| 2088 | IWL_ERR(priv, |
| 2089 | "request for firmware file '%s' failed.\n", |
| 2090 | priv->firmware_name); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2091 | goto try_again; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2092 | } |
| 2093 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2094 | IWL_DEBUG_INFO(priv, "Loaded firmware file '%s' (%zd bytes).\n", |
| 2095 | priv->firmware_name, ucode_raw->size); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2096 | |
Johannes Berg | 22adba2 | 2010-04-28 12:09:14 -0700 | [diff] [blame] | 2097 | /* Make sure that we got at least the API version number */ |
| 2098 | if (ucode_raw->size < 4) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 2099 | IWL_ERR(priv, "File size way too small!\n"); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2100 | goto try_again; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2101 | } |
| 2102 | |
| 2103 | /* Data from ucode file: header followed by uCode images */ |
Jay Sternberg | cc0f555 | 2009-07-17 09:30:16 -0700 | [diff] [blame] | 2104 | ucode = (struct iwl_ucode_header *)ucode_raw->data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2105 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2106 | if (ucode->ver) |
| 2107 | err = iwlagn_load_legacy_firmware(priv, ucode_raw, &pieces); |
| 2108 | else |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 2109 | err = iwlagn_load_firmware(priv, ucode_raw, &pieces, |
| 2110 | &ucode_capa); |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2111 | |
| 2112 | if (err) |
| 2113 | goto try_again; |
| 2114 | |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 2115 | api_ver = IWL_UCODE_API(priv->ucode_ver); |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2116 | build = pieces.build; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2117 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2118 | /* |
| 2119 | * api_ver should match the api version forming part of the |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 2120 | * firmware filename ... but we don't check for that and only rely |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2121 | * on the API version read from firmware header from here on forward |
| 2122 | */ |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 2123 | if (api_ver < api_min || api_ver > api_max) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 2124 | IWL_ERR(priv, "Driver unable to support your firmware API. " |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 2125 | "Driver supports v%u, firmware is v%u.\n", |
| 2126 | api_max, api_ver); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2127 | goto try_again; |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 2128 | } |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2129 | |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 2130 | if (api_ver != api_max) |
Tomas Winkler | 978785a | 2008-12-19 10:37:31 +0800 | [diff] [blame] | 2131 | IWL_ERR(priv, "Firmware has old API version. Expected v%u, " |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 2132 | "got v%u. New firmware can be obtained " |
| 2133 | "from http://www.intellinuxwireless.org.\n", |
| 2134 | api_max, api_ver); |
| 2135 | |
Johannes Berg | 3e4de76 | 2010-04-28 12:09:12 -0700 | [diff] [blame] | 2136 | if (build) |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 2137 | sprintf(buildstr, " build %u%s", build, |
| 2138 | (priv->fw_index == UCODE_EXPERIMENTAL_INDEX) |
| 2139 | ? " (EXP)" : ""); |
Johannes Berg | 3e4de76 | 2010-04-28 12:09:12 -0700 | [diff] [blame] | 2140 | else |
| 2141 | buildstr[0] = '\0'; |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 2142 | |
Johannes Berg | 3e4de76 | 2010-04-28 12:09:12 -0700 | [diff] [blame] | 2143 | IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u%s\n", |
Reinette Chatre | 5ebeb5a | 2009-10-30 14:36:04 -0700 | [diff] [blame] | 2144 | IWL_UCODE_MAJOR(priv->ucode_ver), |
| 2145 | IWL_UCODE_MINOR(priv->ucode_ver), |
| 2146 | IWL_UCODE_API(priv->ucode_ver), |
Johannes Berg | 3e4de76 | 2010-04-28 12:09:12 -0700 | [diff] [blame] | 2147 | IWL_UCODE_SERIAL(priv->ucode_ver), |
| 2148 | buildstr); |
Reinette Chatre | 5ebeb5a | 2009-10-30 14:36:04 -0700 | [diff] [blame] | 2149 | |
Johannes Berg | 3e4de76 | 2010-04-28 12:09:12 -0700 | [diff] [blame] | 2150 | snprintf(priv->hw->wiphy->fw_version, |
| 2151 | sizeof(priv->hw->wiphy->fw_version), |
| 2152 | "%u.%u.%u.%u%s", |
| 2153 | IWL_UCODE_MAJOR(priv->ucode_ver), |
| 2154 | IWL_UCODE_MINOR(priv->ucode_ver), |
| 2155 | IWL_UCODE_API(priv->ucode_ver), |
| 2156 | IWL_UCODE_SERIAL(priv->ucode_ver), |
| 2157 | buildstr); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2158 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2159 | /* |
| 2160 | * For any of the failures below (before allocating pci memory) |
| 2161 | * we will try to load a version with a smaller API -- maybe the |
| 2162 | * user just got a corrupted version of the latest API. |
| 2163 | */ |
| 2164 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2165 | IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n", |
| 2166 | priv->ucode_ver); |
| 2167 | IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %Zd\n", |
| 2168 | pieces.inst_size); |
| 2169 | IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %Zd\n", |
| 2170 | pieces.data_size); |
| 2171 | IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %Zd\n", |
| 2172 | pieces.init_size); |
| 2173 | IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %Zd\n", |
| 2174 | pieces.init_data_size); |
| 2175 | IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %Zd\n", |
| 2176 | pieces.boot_size); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2177 | |
| 2178 | /* Verify that uCode images will fit in card's SRAM */ |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2179 | if (pieces.inst_size > priv->hw_params.max_inst_size) { |
| 2180 | IWL_ERR(priv, "uCode instr len %Zd too large to fit in\n", |
| 2181 | pieces.inst_size); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2182 | goto try_again; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2183 | } |
| 2184 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2185 | if (pieces.data_size > priv->hw_params.max_data_size) { |
| 2186 | IWL_ERR(priv, "uCode data len %Zd too large to fit in\n", |
| 2187 | pieces.data_size); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2188 | goto try_again; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2189 | } |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2190 | |
| 2191 | if (pieces.init_size > priv->hw_params.max_inst_size) { |
| 2192 | IWL_ERR(priv, "uCode init instr len %Zd too large to fit in\n", |
| 2193 | pieces.init_size); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2194 | goto try_again; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2195 | } |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2196 | |
| 2197 | if (pieces.init_data_size > priv->hw_params.max_data_size) { |
| 2198 | IWL_ERR(priv, "uCode init data len %Zd too large to fit in\n", |
| 2199 | pieces.init_data_size); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2200 | goto try_again; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2201 | } |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2202 | |
| 2203 | if (pieces.boot_size > priv->hw_params.max_bsm_size) { |
| 2204 | IWL_ERR(priv, "uCode boot instr len %Zd too large to fit in\n", |
| 2205 | pieces.boot_size); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2206 | goto try_again; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2207 | } |
| 2208 | |
| 2209 | /* Allocate ucode buffers for card's bus-master loading ... */ |
| 2210 | |
| 2211 | /* Runtime instructions and 2 copies of data: |
| 2212 | * 1) unmodified from disk |
| 2213 | * 2) backup cache for save/restore during power-downs */ |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2214 | priv->ucode_code.len = pieces.inst_size; |
Tomas Winkler | 98c9221 | 2008-01-14 17:46:20 -0800 | [diff] [blame] | 2215 | iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2216 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2217 | priv->ucode_data.len = pieces.data_size; |
Tomas Winkler | 98c9221 | 2008-01-14 17:46:20 -0800 | [diff] [blame] | 2218 | iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2219 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2220 | priv->ucode_data_backup.len = pieces.data_size; |
Tomas Winkler | 98c9221 | 2008-01-14 17:46:20 -0800 | [diff] [blame] | 2221 | iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2222 | |
Zhu, Yi | 1f304e4 | 2009-01-23 13:45:22 -0800 | [diff] [blame] | 2223 | if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr || |
| 2224 | !priv->ucode_data_backup.v_addr) |
| 2225 | goto err_pci_alloc; |
| 2226 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2227 | /* Initialization instructions and data */ |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2228 | if (pieces.init_size && pieces.init_data_size) { |
| 2229 | priv->ucode_init.len = pieces.init_size; |
Tomas Winkler | 98c9221 | 2008-01-14 17:46:20 -0800 | [diff] [blame] | 2230 | iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2231 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2232 | priv->ucode_init_data.len = pieces.init_data_size; |
Tomas Winkler | 98c9221 | 2008-01-14 17:46:20 -0800 | [diff] [blame] | 2233 | iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data); |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 2234 | |
| 2235 | if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr) |
| 2236 | goto err_pci_alloc; |
| 2237 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2238 | |
| 2239 | /* Bootstrap (instructions only, no data) */ |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2240 | if (pieces.boot_size) { |
| 2241 | priv->ucode_boot.len = pieces.boot_size; |
Tomas Winkler | 98c9221 | 2008-01-14 17:46:20 -0800 | [diff] [blame] | 2242 | iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2243 | |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 2244 | if (!priv->ucode_boot.v_addr) |
| 2245 | goto err_pci_alloc; |
| 2246 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2247 | |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2248 | /* Now that we can no longer fail, copy information */ |
| 2249 | |
| 2250 | /* |
| 2251 | * The (size - 16) / 12 formula is based on the information recorded |
| 2252 | * for each event, which is of mode 1 (including timestamp) for all |
| 2253 | * new microcodes that include this information. |
| 2254 | */ |
| 2255 | priv->_agn.init_evtlog_ptr = pieces.init_evtlog_ptr; |
| 2256 | if (pieces.init_evtlog_size) |
| 2257 | priv->_agn.init_evtlog_size = (pieces.init_evtlog_size - 16)/12; |
| 2258 | else |
| 2259 | priv->_agn.init_evtlog_size = priv->cfg->max_event_log_size; |
| 2260 | priv->_agn.init_errlog_ptr = pieces.init_errlog_ptr; |
| 2261 | priv->_agn.inst_evtlog_ptr = pieces.inst_evtlog_ptr; |
| 2262 | if (pieces.inst_evtlog_size) |
| 2263 | priv->_agn.inst_evtlog_size = (pieces.inst_evtlog_size - 16)/12; |
| 2264 | else |
| 2265 | priv->_agn.inst_evtlog_size = priv->cfg->max_event_log_size; |
| 2266 | priv->_agn.inst_errlog_ptr = pieces.inst_errlog_ptr; |
| 2267 | |
Johannes Berg | ece9c4e | 2010-08-23 10:46:49 +0200 | [diff] [blame] | 2268 | if (ucode_capa.pan) { |
| 2269 | priv->valid_contexts |= BIT(IWL_RXON_CTX_PAN); |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 2270 | priv->sta_key_max_num = STA_KEY_MAX_NUM_PAN; |
Johannes Berg | ece9c4e | 2010-08-23 10:46:49 +0200 | [diff] [blame] | 2271 | } else |
| 2272 | priv->sta_key_max_num = STA_KEY_MAX_NUM; |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 2273 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2274 | /* Copy images into buffers for card's bus-master reads ... */ |
| 2275 | |
| 2276 | /* Runtime instructions (first block of data in file) */ |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2277 | IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode instr len %Zd\n", |
| 2278 | pieces.inst_size); |
| 2279 | memcpy(priv->ucode_code.v_addr, pieces.inst, pieces.inst_size); |
Jay Sternberg | cc0f555 | 2009-07-17 09:30:16 -0700 | [diff] [blame] | 2280 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2281 | IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n", |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2282 | priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr); |
| 2283 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2284 | /* |
| 2285 | * Runtime data |
| 2286 | * NOTE: Copy into backup buffer will be done in iwl_up() |
| 2287 | */ |
| 2288 | IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode data len %Zd\n", |
| 2289 | pieces.data_size); |
| 2290 | memcpy(priv->ucode_data.v_addr, pieces.data, pieces.data_size); |
| 2291 | memcpy(priv->ucode_data_backup.v_addr, pieces.data, pieces.data_size); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2292 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2293 | /* Initialization instructions */ |
| 2294 | if (pieces.init_size) { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2295 | IWL_DEBUG_INFO(priv, "Copying (but not loading) init instr len %Zd\n", |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2296 | pieces.init_size); |
| 2297 | memcpy(priv->ucode_init.v_addr, pieces.init, pieces.init_size); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2298 | } |
| 2299 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2300 | /* Initialization data */ |
| 2301 | if (pieces.init_data_size) { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2302 | IWL_DEBUG_INFO(priv, "Copying (but not loading) init data len %Zd\n", |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2303 | pieces.init_data_size); |
| 2304 | memcpy(priv->ucode_init_data.v_addr, pieces.init_data, |
| 2305 | pieces.init_data_size); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2306 | } |
| 2307 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2308 | /* Bootstrap instructions */ |
| 2309 | IWL_DEBUG_INFO(priv, "Copying (but not loading) boot instr len %Zd\n", |
| 2310 | pieces.boot_size); |
| 2311 | memcpy(priv->ucode_boot.v_addr, pieces.boot, pieces.boot_size); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2312 | |
Wey-Yi Guy | 6a822d0 | 2010-07-13 17:13:15 -0700 | [diff] [blame] | 2313 | /* |
| 2314 | * figure out the offset of chain noise reset and gain commands |
| 2315 | * base on the size of standard phy calibration commands table size |
| 2316 | */ |
| 2317 | if (ucode_capa.standard_phy_calibration_size > |
| 2318 | IWL_MAX_PHY_CALIBRATE_TBL_SIZE) |
| 2319 | ucode_capa.standard_phy_calibration_size = |
| 2320 | IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE; |
| 2321 | |
| 2322 | priv->_agn.phy_calib_chain_noise_reset_cmd = |
| 2323 | ucode_capa.standard_phy_calibration_size; |
| 2324 | priv->_agn.phy_calib_chain_noise_gain_cmd = |
| 2325 | ucode_capa.standard_phy_calibration_size + 1; |
| 2326 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2327 | /************************************************** |
| 2328 | * This is still part of probe() in a sense... |
| 2329 | * |
| 2330 | * 9. Setup and register with mac80211 and debugfs |
| 2331 | **************************************************/ |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 2332 | err = iwl_mac_setup_register(priv, &ucode_capa); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2333 | if (err) |
| 2334 | goto out_unbind; |
| 2335 | |
| 2336 | err = iwl_dbgfs_register(priv, DRV_NAME); |
| 2337 | if (err) |
| 2338 | IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err); |
| 2339 | |
Emmanuel Grumbach | 7d47618 | 2010-05-23 00:14:08 -0700 | [diff] [blame] | 2340 | err = sysfs_create_group(&priv->pci_dev->dev.kobj, |
| 2341 | &iwl_attribute_group); |
| 2342 | if (err) { |
| 2343 | IWL_ERR(priv, "failed to create sysfs device attributes\n"); |
| 2344 | goto out_unbind; |
| 2345 | } |
| 2346 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2347 | /* We have our copies now, allow OS release its copies */ |
| 2348 | release_firmware(ucode_raw); |
Reinette Chatre | a15707d | 2010-05-10 15:08:11 -0700 | [diff] [blame] | 2349 | complete(&priv->_agn.firmware_loading_complete); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2350 | return; |
| 2351 | |
| 2352 | try_again: |
| 2353 | /* try next, if any */ |
| 2354 | if (iwl_request_firmware(priv, false)) |
| 2355 | goto out_unbind; |
| 2356 | release_firmware(ucode_raw); |
| 2357 | return; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2358 | |
| 2359 | err_pci_alloc: |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 2360 | IWL_ERR(priv, "failed to allocate pci memory\n"); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2361 | iwl_dealloc_ucode_pci(priv); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2362 | out_unbind: |
Reinette Chatre | a15707d | 2010-05-10 15:08:11 -0700 | [diff] [blame] | 2363 | complete(&priv->_agn.firmware_loading_complete); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2364 | device_release_driver(&priv->pci_dev->dev); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2365 | release_firmware(ucode_raw); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2366 | } |
| 2367 | |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2368 | static const char *desc_lookup_text[] = { |
| 2369 | "OK", |
| 2370 | "FAIL", |
| 2371 | "BAD_PARAM", |
| 2372 | "BAD_CHECKSUM", |
| 2373 | "NMI_INTERRUPT_WDG", |
| 2374 | "SYSASSERT", |
| 2375 | "FATAL_ERROR", |
| 2376 | "BAD_COMMAND", |
| 2377 | "HW_ERROR_TUNE_LOCK", |
| 2378 | "HW_ERROR_TEMPERATURE", |
| 2379 | "ILLEGAL_CHAN_FREQ", |
| 2380 | "VCC_NOT_STABLE", |
| 2381 | "FH_ERROR", |
| 2382 | "NMI_INTERRUPT_HOST", |
| 2383 | "NMI_INTERRUPT_ACTION_PT", |
| 2384 | "NMI_INTERRUPT_UNKNOWN", |
| 2385 | "UCODE_VERSION_MISMATCH", |
| 2386 | "HW_ERROR_ABS_LOCK", |
| 2387 | "HW_ERROR_CAL_LOCK_FAIL", |
| 2388 | "NMI_INTERRUPT_INST_ACTION_PT", |
| 2389 | "NMI_INTERRUPT_DATA_ACTION_PT", |
| 2390 | "NMI_TRM_HW_ER", |
| 2391 | "NMI_INTERRUPT_TRM", |
| 2392 | "NMI_INTERRUPT_BREAK_POINT" |
| 2393 | "DEBUG_0", |
| 2394 | "DEBUG_1", |
| 2395 | "DEBUG_2", |
| 2396 | "DEBUG_3", |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2397 | }; |
| 2398 | |
Jay Sternberg | 4b58645 | 2010-07-02 15:49:10 -0700 | [diff] [blame] | 2399 | static struct { char *name; u8 num; } advanced_lookup[] = { |
| 2400 | { "NMI_INTERRUPT_WDG", 0x34 }, |
| 2401 | { "SYSASSERT", 0x35 }, |
| 2402 | { "UCODE_VERSION_MISMATCH", 0x37 }, |
| 2403 | { "BAD_COMMAND", 0x38 }, |
| 2404 | { "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C }, |
| 2405 | { "FATAL_ERROR", 0x3D }, |
| 2406 | { "NMI_TRM_HW_ERR", 0x46 }, |
| 2407 | { "NMI_INTERRUPT_TRM", 0x4C }, |
| 2408 | { "NMI_INTERRUPT_BREAK_POINT", 0x54 }, |
| 2409 | { "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C }, |
| 2410 | { "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64 }, |
| 2411 | { "NMI_INTERRUPT_HOST", 0x66 }, |
| 2412 | { "NMI_INTERRUPT_ACTION_PT", 0x7C }, |
| 2413 | { "NMI_INTERRUPT_UNKNOWN", 0x84 }, |
| 2414 | { "NMI_INTERRUPT_INST_ACTION_PT", 0x86 }, |
| 2415 | { "ADVANCED_SYSASSERT", 0 }, |
| 2416 | }; |
| 2417 | |
| 2418 | static const char *desc_lookup(u32 num) |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2419 | { |
Jay Sternberg | 4b58645 | 2010-07-02 15:49:10 -0700 | [diff] [blame] | 2420 | int i; |
| 2421 | int max = ARRAY_SIZE(desc_lookup_text); |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2422 | |
Jay Sternberg | 4b58645 | 2010-07-02 15:49:10 -0700 | [diff] [blame] | 2423 | if (num < max) |
| 2424 | return desc_lookup_text[num]; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2425 | |
Jay Sternberg | 4b58645 | 2010-07-02 15:49:10 -0700 | [diff] [blame] | 2426 | max = ARRAY_SIZE(advanced_lookup) - 1; |
| 2427 | for (i = 0; i < max; i++) { |
| 2428 | if (advanced_lookup[i].num == num) |
| 2429 | break;; |
| 2430 | } |
| 2431 | return advanced_lookup[i].name; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2432 | } |
| 2433 | |
| 2434 | #define ERROR_START_OFFSET (1 * sizeof(u32)) |
| 2435 | #define ERROR_ELEM_SIZE (7 * sizeof(u32)) |
| 2436 | |
| 2437 | void iwl_dump_nic_error_log(struct iwl_priv *priv) |
| 2438 | { |
| 2439 | u32 data2, line; |
| 2440 | u32 desc, time, count, base, data1; |
| 2441 | u32 blink1, blink2, ilink1, ilink2; |
Wey-Yi Guy | 461ef38 | 2010-03-30 17:57:53 -0700 | [diff] [blame] | 2442 | u32 pc, hcmd; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2443 | |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2444 | if (priv->ucode_type == UCODE_INIT) { |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2445 | base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr); |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2446 | if (!base) |
| 2447 | base = priv->_agn.init_errlog_ptr; |
| 2448 | } else { |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2449 | base = le32_to_cpu(priv->card_alive.error_event_table_ptr); |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2450 | if (!base) |
| 2451 | base = priv->_agn.inst_errlog_ptr; |
| 2452 | } |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2453 | |
| 2454 | if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) { |
Wey-Yi Guy | 212fb57 | 2009-12-02 12:53:00 -0800 | [diff] [blame] | 2455 | IWL_ERR(priv, |
| 2456 | "Not valid error log pointer 0x%08X for %s uCode\n", |
| 2457 | base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT"); |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2458 | return; |
| 2459 | } |
| 2460 | |
| 2461 | count = iwl_read_targ_mem(priv, base); |
| 2462 | |
| 2463 | if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) { |
| 2464 | IWL_ERR(priv, "Start IWL Error Log Dump:\n"); |
| 2465 | IWL_ERR(priv, "Status: 0x%08lX, count: %d\n", |
| 2466 | priv->status, count); |
| 2467 | } |
| 2468 | |
| 2469 | desc = iwl_read_targ_mem(priv, base + 1 * sizeof(u32)); |
Wey-Yi Guy | 461ef38 | 2010-03-30 17:57:53 -0700 | [diff] [blame] | 2470 | pc = iwl_read_targ_mem(priv, base + 2 * sizeof(u32)); |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2471 | blink1 = iwl_read_targ_mem(priv, base + 3 * sizeof(u32)); |
| 2472 | blink2 = iwl_read_targ_mem(priv, base + 4 * sizeof(u32)); |
| 2473 | ilink1 = iwl_read_targ_mem(priv, base + 5 * sizeof(u32)); |
| 2474 | ilink2 = iwl_read_targ_mem(priv, base + 6 * sizeof(u32)); |
| 2475 | data1 = iwl_read_targ_mem(priv, base + 7 * sizeof(u32)); |
| 2476 | data2 = iwl_read_targ_mem(priv, base + 8 * sizeof(u32)); |
| 2477 | line = iwl_read_targ_mem(priv, base + 9 * sizeof(u32)); |
| 2478 | time = iwl_read_targ_mem(priv, base + 11 * sizeof(u32)); |
Wey-Yi Guy | 461ef38 | 2010-03-30 17:57:53 -0700 | [diff] [blame] | 2479 | hcmd = iwl_read_targ_mem(priv, base + 22 * sizeof(u32)); |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2480 | |
Johannes Berg | be1a71a | 2009-10-02 13:44:02 -0700 | [diff] [blame] | 2481 | trace_iwlwifi_dev_ucode_error(priv, desc, time, data1, data2, line, |
| 2482 | blink1, blink2, ilink1, ilink2); |
| 2483 | |
Jay Sternberg | 8756371 | 2010-06-14 14:40:40 -0700 | [diff] [blame] | 2484 | IWL_ERR(priv, "Desc Time " |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2485 | "data1 data2 line\n"); |
Jay Sternberg | 8756371 | 2010-06-14 14:40:40 -0700 | [diff] [blame] | 2486 | IWL_ERR(priv, "%-28s (0x%04X) %010u 0x%08X 0x%08X %u\n", |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2487 | desc_lookup(desc), desc, time, data1, data2, line); |
Wey-Yi Guy | 461ef38 | 2010-03-30 17:57:53 -0700 | [diff] [blame] | 2488 | IWL_ERR(priv, "pc blink1 blink2 ilink1 ilink2 hcmd\n"); |
| 2489 | IWL_ERR(priv, "0x%05X 0x%05X 0x%05X 0x%05X 0x%05X 0x%05X\n", |
| 2490 | pc, blink1, blink2, ilink1, ilink2, hcmd); |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2491 | } |
| 2492 | |
| 2493 | #define EVENT_START_OFFSET (4 * sizeof(u32)) |
| 2494 | |
| 2495 | /** |
| 2496 | * iwl_print_event_log - Dump error event log to syslog |
| 2497 | * |
| 2498 | */ |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2499 | static int iwl_print_event_log(struct iwl_priv *priv, u32 start_idx, |
| 2500 | u32 num_events, u32 mode, |
| 2501 | int pos, char **buf, size_t bufsz) |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2502 | { |
| 2503 | u32 i; |
| 2504 | u32 base; /* SRAM byte address of event log header */ |
| 2505 | u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */ |
| 2506 | u32 ptr; /* SRAM byte address of log data */ |
| 2507 | u32 ev, time, data; /* event log data */ |
Ben Cahill | e585447 | 2009-11-06 14:52:58 -0800 | [diff] [blame] | 2508 | unsigned long reg_flags; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2509 | |
| 2510 | if (num_events == 0) |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2511 | return pos; |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2512 | |
| 2513 | if (priv->ucode_type == UCODE_INIT) { |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2514 | base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr); |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2515 | if (!base) |
| 2516 | base = priv->_agn.init_evtlog_ptr; |
| 2517 | } else { |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2518 | base = le32_to_cpu(priv->card_alive.log_event_table_ptr); |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2519 | if (!base) |
| 2520 | base = priv->_agn.inst_evtlog_ptr; |
| 2521 | } |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2522 | |
| 2523 | if (mode == 0) |
| 2524 | event_size = 2 * sizeof(u32); |
| 2525 | else |
| 2526 | event_size = 3 * sizeof(u32); |
| 2527 | |
| 2528 | ptr = base + EVENT_START_OFFSET + (start_idx * event_size); |
| 2529 | |
Ben Cahill | e585447 | 2009-11-06 14:52:58 -0800 | [diff] [blame] | 2530 | /* Make sure device is powered up for SRAM reads */ |
| 2531 | spin_lock_irqsave(&priv->reg_lock, reg_flags); |
| 2532 | iwl_grab_nic_access(priv); |
| 2533 | |
| 2534 | /* Set starting address; reads will auto-increment */ |
| 2535 | _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr); |
| 2536 | rmb(); |
| 2537 | |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2538 | /* "time" is actually "data" for mode 0 (no timestamp). |
| 2539 | * place event id # at far right for easier visual parsing. */ |
| 2540 | for (i = 0; i < num_events; i++) { |
Ben Cahill | e585447 | 2009-11-06 14:52:58 -0800 | [diff] [blame] | 2541 | ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT); |
| 2542 | time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT); |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2543 | if (mode == 0) { |
| 2544 | /* data, ev */ |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2545 | if (bufsz) { |
| 2546 | pos += scnprintf(*buf + pos, bufsz - pos, |
| 2547 | "EVT_LOG:0x%08x:%04u\n", |
| 2548 | time, ev); |
| 2549 | } else { |
| 2550 | trace_iwlwifi_dev_ucode_event(priv, 0, |
| 2551 | time, ev); |
| 2552 | IWL_ERR(priv, "EVT_LOG:0x%08x:%04u\n", |
| 2553 | time, ev); |
| 2554 | } |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2555 | } else { |
Ben Cahill | e585447 | 2009-11-06 14:52:58 -0800 | [diff] [blame] | 2556 | data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT); |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2557 | if (bufsz) { |
| 2558 | pos += scnprintf(*buf + pos, bufsz - pos, |
| 2559 | "EVT_LOGT:%010u:0x%08x:%04u\n", |
| 2560 | time, data, ev); |
| 2561 | } else { |
| 2562 | IWL_ERR(priv, "EVT_LOGT:%010u:0x%08x:%04u\n", |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2563 | time, data, ev); |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2564 | trace_iwlwifi_dev_ucode_event(priv, time, |
| 2565 | data, ev); |
| 2566 | } |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2567 | } |
| 2568 | } |
Ben Cahill | e585447 | 2009-11-06 14:52:58 -0800 | [diff] [blame] | 2569 | |
| 2570 | /* Allow device to power down */ |
| 2571 | iwl_release_nic_access(priv); |
| 2572 | spin_unlock_irqrestore(&priv->reg_lock, reg_flags); |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2573 | return pos; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2574 | } |
| 2575 | |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2576 | /** |
| 2577 | * iwl_print_last_event_logs - Dump the newest # of event log to syslog |
| 2578 | */ |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2579 | static int iwl_print_last_event_logs(struct iwl_priv *priv, u32 capacity, |
| 2580 | u32 num_wraps, u32 next_entry, |
| 2581 | u32 size, u32 mode, |
| 2582 | int pos, char **buf, size_t bufsz) |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2583 | { |
| 2584 | /* |
| 2585 | * display the newest DEFAULT_LOG_ENTRIES entries |
| 2586 | * i.e the entries just before the next ont that uCode would fill. |
| 2587 | */ |
| 2588 | if (num_wraps) { |
| 2589 | if (next_entry < size) { |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2590 | pos = iwl_print_event_log(priv, |
| 2591 | capacity - (size - next_entry), |
| 2592 | size - next_entry, mode, |
| 2593 | pos, buf, bufsz); |
| 2594 | pos = iwl_print_event_log(priv, 0, |
| 2595 | next_entry, mode, |
| 2596 | pos, buf, bufsz); |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2597 | } else |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2598 | pos = iwl_print_event_log(priv, next_entry - size, |
| 2599 | size, mode, pos, buf, bufsz); |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2600 | } else { |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2601 | if (next_entry < size) { |
| 2602 | pos = iwl_print_event_log(priv, 0, next_entry, |
| 2603 | mode, pos, buf, bufsz); |
| 2604 | } else { |
| 2605 | pos = iwl_print_event_log(priv, next_entry - size, |
| 2606 | size, mode, pos, buf, bufsz); |
| 2607 | } |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2608 | } |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2609 | return pos; |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2610 | } |
| 2611 | |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2612 | #define DEFAULT_DUMP_EVENT_LOG_ENTRIES (20) |
| 2613 | |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2614 | int iwl_dump_nic_event_log(struct iwl_priv *priv, bool full_log, |
| 2615 | char **buf, bool display) |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2616 | { |
| 2617 | u32 base; /* SRAM byte address of event log header */ |
| 2618 | u32 capacity; /* event log capacity in # entries */ |
| 2619 | u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */ |
| 2620 | u32 num_wraps; /* # times uCode wrapped to top of log */ |
| 2621 | u32 next_entry; /* index of next entry to be written by uCode */ |
| 2622 | u32 size; /* # entries that we'll print */ |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2623 | u32 logsize; |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2624 | int pos = 0; |
| 2625 | size_t bufsz = 0; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2626 | |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2627 | if (priv->ucode_type == UCODE_INIT) { |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2628 | base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr); |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2629 | logsize = priv->_agn.init_evtlog_size; |
| 2630 | if (!base) |
| 2631 | base = priv->_agn.init_evtlog_ptr; |
| 2632 | } else { |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2633 | base = le32_to_cpu(priv->card_alive.log_event_table_ptr); |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2634 | logsize = priv->_agn.inst_evtlog_size; |
| 2635 | if (!base) |
| 2636 | base = priv->_agn.inst_evtlog_ptr; |
| 2637 | } |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2638 | |
| 2639 | if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) { |
Wey-Yi Guy | 212fb57 | 2009-12-02 12:53:00 -0800 | [diff] [blame] | 2640 | IWL_ERR(priv, |
| 2641 | "Invalid event log pointer 0x%08X for %s uCode\n", |
| 2642 | base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT"); |
Wey-Yi Guy | 937c397 | 2010-01-15 13:43:36 -0800 | [diff] [blame] | 2643 | return -EINVAL; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2644 | } |
| 2645 | |
| 2646 | /* event log header */ |
| 2647 | capacity = iwl_read_targ_mem(priv, base); |
| 2648 | mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32))); |
| 2649 | num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32))); |
| 2650 | next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32))); |
| 2651 | |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2652 | if (capacity > logsize) { |
Ben Cahill | 84c4069 | 2009-11-06 14:52:57 -0800 | [diff] [blame] | 2653 | IWL_ERR(priv, "Log capacity %d is bogus, limit to %d entries\n", |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2654 | capacity, logsize); |
| 2655 | capacity = logsize; |
Ben Cahill | 84c4069 | 2009-11-06 14:52:57 -0800 | [diff] [blame] | 2656 | } |
| 2657 | |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2658 | if (next_entry > logsize) { |
Ben Cahill | 84c4069 | 2009-11-06 14:52:57 -0800 | [diff] [blame] | 2659 | IWL_ERR(priv, "Log write index %d is bogus, limit to %d\n", |
Johannes Berg | b2e640d | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2660 | next_entry, logsize); |
| 2661 | next_entry = logsize; |
Ben Cahill | 84c4069 | 2009-11-06 14:52:57 -0800 | [diff] [blame] | 2662 | } |
| 2663 | |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2664 | size = num_wraps ? capacity : next_entry; |
| 2665 | |
| 2666 | /* bail out if nothing in log */ |
| 2667 | if (size == 0) { |
| 2668 | IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n"); |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2669 | return pos; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2670 | } |
| 2671 | |
Wey-Yi Guy | f37837c | 2010-08-23 07:57:12 -0700 | [diff] [blame] | 2672 | /* enable/disable bt channel announcement */ |
| 2673 | priv->bt_ch_announce = iwlagn_bt_ch_announce; |
| 2674 | |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2675 | #ifdef CONFIG_IWLWIFI_DEBUG |
Wey-Yi Guy | 521d9bc | 2009-12-10 14:37:23 -0800 | [diff] [blame] | 2676 | if (!(iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) && !full_log) |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2677 | size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES) |
| 2678 | ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size; |
| 2679 | #else |
| 2680 | size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES) |
| 2681 | ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2682 | #endif |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2683 | IWL_ERR(priv, "Start IWL Event Log Dump: display last %u entries\n", |
| 2684 | size); |
| 2685 | |
| 2686 | #ifdef CONFIG_IWLWIFI_DEBUG |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2687 | if (display) { |
| 2688 | if (full_log) |
| 2689 | bufsz = capacity * 48; |
| 2690 | else |
| 2691 | bufsz = size * 48; |
| 2692 | *buf = kmalloc(bufsz, GFP_KERNEL); |
| 2693 | if (!*buf) |
Wey-Yi Guy | 937c397 | 2010-01-15 13:43:36 -0800 | [diff] [blame] | 2694 | return -ENOMEM; |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2695 | } |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2696 | if ((iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) || full_log) { |
| 2697 | /* |
| 2698 | * if uCode has wrapped back to top of log, |
| 2699 | * start at the oldest entry, |
| 2700 | * i.e the next one that uCode would fill. |
| 2701 | */ |
| 2702 | if (num_wraps) |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2703 | pos = iwl_print_event_log(priv, next_entry, |
| 2704 | capacity - next_entry, mode, |
| 2705 | pos, buf, bufsz); |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2706 | /* (then/else) start at top of log */ |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2707 | pos = iwl_print_event_log(priv, 0, |
| 2708 | next_entry, mode, pos, buf, bufsz); |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2709 | } else |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2710 | pos = iwl_print_last_event_logs(priv, capacity, num_wraps, |
| 2711 | next_entry, size, mode, |
| 2712 | pos, buf, bufsz); |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2713 | #else |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2714 | pos = iwl_print_last_event_logs(priv, capacity, num_wraps, |
| 2715 | next_entry, size, mode, |
| 2716 | pos, buf, bufsz); |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2717 | #endif |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2718 | return pos; |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2719 | } |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2720 | |
Wey-Yi Guy | 0975cc8 | 2010-07-31 08:34:07 -0700 | [diff] [blame] | 2721 | static void iwl_rf_kill_ct_config(struct iwl_priv *priv) |
| 2722 | { |
| 2723 | struct iwl_ct_kill_config cmd; |
| 2724 | struct iwl_ct_kill_throttling_config adv_cmd; |
| 2725 | unsigned long flags; |
| 2726 | int ret = 0; |
| 2727 | |
| 2728 | spin_lock_irqsave(&priv->lock, flags); |
| 2729 | iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, |
| 2730 | CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT); |
| 2731 | spin_unlock_irqrestore(&priv->lock, flags); |
| 2732 | priv->thermal_throttle.ct_kill_toggle = false; |
| 2733 | |
| 2734 | if (priv->cfg->support_ct_kill_exit) { |
| 2735 | adv_cmd.critical_temperature_enter = |
| 2736 | cpu_to_le32(priv->hw_params.ct_kill_threshold); |
| 2737 | adv_cmd.critical_temperature_exit = |
| 2738 | cpu_to_le32(priv->hw_params.ct_kill_exit_threshold); |
| 2739 | |
| 2740 | ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD, |
| 2741 | sizeof(adv_cmd), &adv_cmd); |
| 2742 | if (ret) |
| 2743 | IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n"); |
| 2744 | else |
| 2745 | IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD " |
| 2746 | "succeeded, " |
| 2747 | "critical temperature enter is %d," |
| 2748 | "exit is %d\n", |
| 2749 | priv->hw_params.ct_kill_threshold, |
| 2750 | priv->hw_params.ct_kill_exit_threshold); |
| 2751 | } else { |
| 2752 | cmd.critical_temperature_R = |
| 2753 | cpu_to_le32(priv->hw_params.ct_kill_threshold); |
| 2754 | |
| 2755 | ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD, |
| 2756 | sizeof(cmd), &cmd); |
| 2757 | if (ret) |
| 2758 | IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n"); |
| 2759 | else |
| 2760 | IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD " |
| 2761 | "succeeded, " |
| 2762 | "critical temperature is %d\n", |
| 2763 | priv->hw_params.ct_kill_threshold); |
| 2764 | } |
| 2765 | } |
| 2766 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2767 | /** |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 2768 | * iwl_alive_start - called after REPLY_ALIVE notification received |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2769 | * from protocol/runtime uCode (initialization uCode's |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 2770 | * Alive gets handled by iwl_init_alive_start()). |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2771 | */ |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 2772 | static void iwl_alive_start(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2773 | { |
Tomas Winkler | 57aab75 | 2008-04-14 21:16:03 -0700 | [diff] [blame] | 2774 | int ret = 0; |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 2775 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2776 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2777 | IWL_DEBUG_INFO(priv, "Runtime Alive received.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2778 | |
| 2779 | if (priv->card_alive.is_valid != UCODE_VALID_OK) { |
| 2780 | /* We had an error bringing up the hardware, so take it |
| 2781 | * all the way back down so we can try again */ |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2782 | IWL_DEBUG_INFO(priv, "Alive failed.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2783 | goto restart; |
| 2784 | } |
| 2785 | |
| 2786 | /* Initialize uCode has loaded Runtime uCode ... verify inst image. |
| 2787 | * This is a paranoid check, because we would not have gotten the |
| 2788 | * "runtime" alive if code weren't properly loaded. */ |
Emmanuel Grumbach | b0692f2 | 2008-04-24 11:55:18 -0700 | [diff] [blame] | 2789 | if (iwl_verify_ucode(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2790 | /* Runtime instruction load was bad; |
| 2791 | * take it all the way back down so we can try again */ |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2792 | IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2793 | goto restart; |
| 2794 | } |
| 2795 | |
Tomas Winkler | 57aab75 | 2008-04-14 21:16:03 -0700 | [diff] [blame] | 2796 | ret = priv->cfg->ops->lib->alive_notify(priv); |
| 2797 | if (ret) { |
Winkler, Tomas | 39aadf8 | 2008-12-19 10:37:32 +0800 | [diff] [blame] | 2798 | IWL_WARN(priv, |
| 2799 | "Could not complete ALIVE transition [ntf]: %d\n", ret); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2800 | goto restart; |
| 2801 | } |
| 2802 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2803 | /* After the ALIVE response, we can send host commands to the uCode */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2804 | set_bit(STATUS_ALIVE, &priv->status); |
| 2805 | |
Wey-Yi Guy | b74e31a | 2010-03-01 17:23:50 -0800 | [diff] [blame] | 2806 | if (priv->cfg->ops->lib->recover_from_tx_stall) { |
| 2807 | /* Enable timer to monitor the driver queues */ |
| 2808 | mod_timer(&priv->monitor_recover, |
| 2809 | jiffies + |
| 2810 | msecs_to_jiffies(priv->cfg->monitor_recover_period)); |
| 2811 | } |
| 2812 | |
Tomas Winkler | fee1247 | 2008-04-03 16:05:21 -0700 | [diff] [blame] | 2813 | if (iwl_is_rfkill(priv)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2814 | return; |
| 2815 | |
Wey-Yi Guy | f7322f8 | 2010-08-23 15:24:49 -0700 | [diff] [blame] | 2816 | if (priv->cfg->advanced_bt_coexist) { |
| 2817 | /* Configure Bluetooth device coexistence support */ |
| 2818 | priv->bt_valid = IWLAGN_BT_ALL_VALID_MSK; |
| 2819 | priv->kill_ack_mask = IWLAGN_BT_KILL_ACK_MASK_DEFAULT; |
| 2820 | priv->kill_cts_mask = IWLAGN_BT_KILL_CTS_MASK_DEFAULT; |
| 2821 | priv->cfg->ops->hcmd->send_bt_config(priv); |
| 2822 | priv->bt_valid = IWLAGN_BT_VALID_ENABLE_FLAGS; |
| 2823 | if (bt_coex_active && priv->iw_mode != NL80211_IFTYPE_ADHOC) |
| 2824 | iwlagn_send_prio_tbl(priv); |
| 2825 | |
| 2826 | /* FIXME: w/a to force change uCode BT state machine */ |
| 2827 | iwlagn_send_bt_env(priv, IWL_BT_COEX_ENV_OPEN, |
| 2828 | BT_COEX_PRIO_TBL_EVT_INIT_CALIB2); |
| 2829 | iwlagn_send_bt_env(priv, IWL_BT_COEX_ENV_CLOSE, |
| 2830 | BT_COEX_PRIO_TBL_EVT_INIT_CALIB2); |
| 2831 | } |
Johannes Berg | 36d6825 | 2008-05-15 12:55:26 +0200 | [diff] [blame] | 2832 | ieee80211_wake_queues(priv->hw); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2833 | |
Johannes Berg | 470ab2d | 2010-01-21 11:23:30 -0800 | [diff] [blame] | 2834 | priv->active_rate = IWL_RATES_MASK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2835 | |
Wey-Yi Guy | 2f748de | 2009-09-17 10:43:51 -0700 | [diff] [blame] | 2836 | /* Configure Tx antenna selection based on H/W config */ |
| 2837 | if (priv->cfg->ops->hcmd->set_tx_ant) |
| 2838 | priv->cfg->ops->hcmd->set_tx_ant(priv, priv->cfg->valid_tx_ant); |
| 2839 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 2840 | if (iwl_is_associated_ctx(ctx)) { |
Gregory Greenman | c1adf9f | 2008-05-15 13:53:59 +0800 | [diff] [blame] | 2841 | struct iwl_rxon_cmd *active_rxon = |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 2842 | (struct iwl_rxon_cmd *)&ctx->active; |
Mohamed Abbas | 019fb97 | 2009-03-17 21:59:18 -0700 | [diff] [blame] | 2843 | /* apply any changes in staging */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 2844 | ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2845 | active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
| 2846 | } else { |
Johannes Berg | d0fe478 | 2010-08-23 10:46:58 +0200 | [diff] [blame] | 2847 | struct iwl_rxon_context *tmp; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2848 | /* Initialize our rx_config data */ |
Johannes Berg | d0fe478 | 2010-08-23 10:46:58 +0200 | [diff] [blame] | 2849 | for_each_context(priv, tmp) |
| 2850 | iwl_connection_init_rx_config(priv, tmp); |
Abhijeet Kolekar | 4582353 | 2009-04-08 11:26:44 -0700 | [diff] [blame] | 2851 | |
| 2852 | if (priv->cfg->ops->hcmd->set_rxon_chain) |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 2853 | priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2854 | } |
| 2855 | |
Wey-Yi Guy | aeb4a2e | 2010-08-23 07:57:05 -0700 | [diff] [blame] | 2856 | if (!priv->cfg->advanced_bt_coexist) { |
| 2857 | /* Configure Bluetooth device coexistence support */ |
| 2858 | priv->cfg->ops->hcmd->send_bt_config(priv); |
| 2859 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2860 | |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 2861 | iwl_reset_run_time_calib(priv); |
| 2862 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2863 | /* Configure the adapter for unassociated operation */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 2864 | iwlcore_commit_rxon(priv, ctx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2865 | |
| 2866 | /* At this point, the NIC is initialized and operational */ |
Emmanuel Grumbach | 47f4a58 | 2008-06-12 09:47:13 +0800 | [diff] [blame] | 2867 | iwl_rf_kill_ct_config(priv); |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 2868 | |
Johannes Berg | e932a60 | 2009-10-02 13:44:03 -0700 | [diff] [blame] | 2869 | iwl_leds_init(priv); |
Reinette Chatre | fe00b5a | 2008-04-03 16:05:23 -0700 | [diff] [blame] | 2870 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2871 | IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n"); |
Rick Farrington | a9f4678 | 2008-03-18 14:57:49 -0700 | [diff] [blame] | 2872 | set_bit(STATUS_READY, &priv->status); |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 2873 | wake_up_interruptible(&priv->wait_command_queue); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2874 | |
Johannes Berg | e312c24 | 2009-08-07 15:41:51 -0700 | [diff] [blame] | 2875 | iwl_power_update_mode(priv, true); |
Reinette Chatre | 7e24619 | 2010-02-18 22:58:32 -0800 | [diff] [blame] | 2876 | IWL_DEBUG_INFO(priv, "Updated power mode\n"); |
| 2877 | |
Assaf Krauss | c46fbef | 2008-06-12 09:47:05 +0800 | [diff] [blame] | 2878 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2879 | return; |
| 2880 | |
| 2881 | restart: |
| 2882 | queue_work(priv->workqueue, &priv->restart); |
| 2883 | } |
| 2884 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 2885 | static void iwl_cancel_deferred_work(struct iwl_priv *priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2886 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2887 | static void __iwl_down(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2888 | { |
| 2889 | unsigned long flags; |
| 2890 | int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2891 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2892 | IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2893 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2894 | if (!exit_pending) |
| 2895 | set_bit(STATUS_EXIT_PENDING, &priv->status); |
| 2896 | |
Stanislaw Gruszka | b62177a | 2010-08-20 15:23:47 +0200 | [diff] [blame] | 2897 | /* Stop TX queues watchdog. We need to have STATUS_EXIT_PENDING bit set |
| 2898 | * to prevent rearm timer */ |
| 2899 | if (priv->cfg->ops->lib->recover_from_tx_stall) |
| 2900 | del_timer_sync(&priv->monitor_recover); |
| 2901 | |
Johannes Berg | dcef732 | 2010-08-27 08:55:52 -0700 | [diff] [blame] | 2902 | iwl_clear_ucode_stations(priv, NULL); |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 2903 | iwl_dealloc_bcast_stations(priv); |
Johannes Berg | db125c7 | 2010-05-07 01:49:15 -0700 | [diff] [blame] | 2904 | iwl_clear_driver_stations(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2905 | |
Johannes Berg | a117413 | 2010-08-23 07:56:59 -0700 | [diff] [blame] | 2906 | /* reset BT coex data */ |
Wey-Yi Guy | da5dbb9 | 2010-08-23 07:57:13 -0700 | [diff] [blame] | 2907 | priv->bt_status = 0; |
Wey-Yi Guy | a4b96cc | 2010-08-23 07:57:08 -0700 | [diff] [blame] | 2908 | priv->bt_traffic_load = priv->cfg->bt_init_traffic_load; |
Johannes Berg | a117413 | 2010-08-23 07:56:59 -0700 | [diff] [blame] | 2909 | priv->bt_sco_active = false; |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 2910 | priv->bt_full_concurrent = false; |
| 2911 | priv->bt_ci_compliance = 0; |
Johannes Berg | a117413 | 2010-08-23 07:56:59 -0700 | [diff] [blame] | 2912 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2913 | /* Unblock any waiting calls */ |
| 2914 | wake_up_interruptible_all(&priv->wait_command_queue); |
| 2915 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2916 | /* Wipe out the EXIT_PENDING status bit if we are not actually |
| 2917 | * exiting the module */ |
| 2918 | if (!exit_pending) |
| 2919 | clear_bit(STATUS_EXIT_PENDING, &priv->status); |
| 2920 | |
| 2921 | /* stop and reset the on-board processor */ |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 2922 | iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2923 | |
| 2924 | /* tell the device to stop sending interrupts */ |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 2925 | spin_lock_irqsave(&priv->lock, flags); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2926 | iwl_disable_interrupts(priv); |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 2927 | spin_unlock_irqrestore(&priv->lock, flags); |
| 2928 | iwl_synchronize_irq(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2929 | |
| 2930 | if (priv->mac80211_registered) |
| 2931 | ieee80211_stop_queues(priv->hw); |
| 2932 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2933 | /* If we have not previously called iwl_init() then |
Johannes Berg | a60e77e | 2009-06-04 18:26:06 +0200 | [diff] [blame] | 2934 | * clear all bits but the RF Kill bit and return */ |
Tomas Winkler | fee1247 | 2008-04-03 16:05:21 -0700 | [diff] [blame] | 2935 | if (!iwl_is_init(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2936 | priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) << |
| 2937 | STATUS_RF_KILL_HW | |
Reinette Chatre | 9788864 | 2008-02-06 11:20:38 -0800 | [diff] [blame] | 2938 | test_bit(STATUS_GEO_CONFIGURED, &priv->status) << |
| 2939 | STATUS_GEO_CONFIGURED | |
Mohamed Abbas | 052ec3f | 2008-06-30 17:23:15 +0800 | [diff] [blame] | 2940 | test_bit(STATUS_EXIT_PENDING, &priv->status) << |
| 2941 | STATUS_EXIT_PENDING; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2942 | goto exit; |
| 2943 | } |
| 2944 | |
Wey-Yi Guy | 6da3a13 | 2009-03-26 10:14:08 -0700 | [diff] [blame] | 2945 | /* ...otherwise clear out all the status bits but the RF Kill |
Johannes Berg | a60e77e | 2009-06-04 18:26:06 +0200 | [diff] [blame] | 2946 | * bit and continue taking the NIC down. */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2947 | priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) << |
| 2948 | STATUS_RF_KILL_HW | |
Reinette Chatre | 9788864 | 2008-02-06 11:20:38 -0800 | [diff] [blame] | 2949 | test_bit(STATUS_GEO_CONFIGURED, &priv->status) << |
| 2950 | STATUS_GEO_CONFIGURED | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2951 | test_bit(STATUS_FW_ERROR, &priv->status) << |
Mohamed Abbas | 052ec3f | 2008-06-30 17:23:15 +0800 | [diff] [blame] | 2952 | STATUS_FW_ERROR | |
| 2953 | test_bit(STATUS_EXIT_PENDING, &priv->status) << |
| 2954 | STATUS_EXIT_PENDING; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2955 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 2956 | /* device going down, Stop using ICT table */ |
| 2957 | iwl_disable_ict(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2958 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 2959 | iwlagn_txq_ctx_stop(priv); |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 2960 | iwlagn_rxq_stop(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2961 | |
Ben Cahill | 309e731 | 2009-11-06 14:53:03 -0800 | [diff] [blame] | 2962 | /* Power-down device's busmaster DMA clocks */ |
| 2963 | iwl_write_prph(priv, APMG_CLK_DIS_REG, APMG_CLK_VAL_DMA_CLK_RQT); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2964 | udelay(5); |
| 2965 | |
Ben Cahill | 309e731 | 2009-11-06 14:53:03 -0800 | [diff] [blame] | 2966 | /* Make sure (redundant) we've released our request to stay awake */ |
| 2967 | iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ); |
| 2968 | |
Ben Cahill | 4d2ccdb | 2009-10-09 13:20:20 -0700 | [diff] [blame] | 2969 | /* Stop the device, and put it in low power state */ |
| 2970 | priv->cfg->ops->lib->apm_ops.stop(priv); |
| 2971 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2972 | exit: |
Tomas Winkler | 885ba20 | 2008-05-29 16:34:55 +0800 | [diff] [blame] | 2973 | memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2974 | |
| 2975 | if (priv->ibss_beacon) |
| 2976 | dev_kfree_skb(priv->ibss_beacon); |
| 2977 | priv->ibss_beacon = NULL; |
| 2978 | |
| 2979 | /* clear out any free frames */ |
Tomas Winkler | fcab423 | 2008-05-15 13:54:01 +0800 | [diff] [blame] | 2980 | iwl_clear_free_frames(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2981 | } |
| 2982 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2983 | static void iwl_down(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2984 | { |
| 2985 | mutex_lock(&priv->mutex); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2986 | __iwl_down(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2987 | mutex_unlock(&priv->mutex); |
Zhu Yi | b24d22b | 2007-12-19 13:59:52 +0800 | [diff] [blame] | 2988 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 2989 | iwl_cancel_deferred_work(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2990 | } |
| 2991 | |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 2992 | #define HW_READY_TIMEOUT (50) |
| 2993 | |
| 2994 | static int iwl_set_hw_ready(struct iwl_priv *priv) |
| 2995 | { |
| 2996 | int ret = 0; |
| 2997 | |
| 2998 | iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 2999 | CSR_HW_IF_CONFIG_REG_BIT_NIC_READY); |
| 3000 | |
| 3001 | /* See if we got it */ |
| 3002 | ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 3003 | CSR_HW_IF_CONFIG_REG_BIT_NIC_READY, |
| 3004 | CSR_HW_IF_CONFIG_REG_BIT_NIC_READY, |
| 3005 | HW_READY_TIMEOUT); |
| 3006 | if (ret != -ETIMEDOUT) |
| 3007 | priv->hw_ready = true; |
| 3008 | else |
| 3009 | priv->hw_ready = false; |
| 3010 | |
| 3011 | IWL_DEBUG_INFO(priv, "hardware %s\n", |
| 3012 | (priv->hw_ready == 1) ? "ready" : "not ready"); |
| 3013 | return ret; |
| 3014 | } |
| 3015 | |
| 3016 | static int iwl_prepare_card_hw(struct iwl_priv *priv) |
| 3017 | { |
| 3018 | int ret = 0; |
| 3019 | |
Frans Pop | 91dd6c2 | 2010-03-24 14:19:58 -0700 | [diff] [blame] | 3020 | IWL_DEBUG_INFO(priv, "iwl_prepare_card_hw enter\n"); |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 3021 | |
Mohamed Abbas | 3354a0f | 2009-06-19 13:52:41 -0700 | [diff] [blame] | 3022 | ret = iwl_set_hw_ready(priv); |
| 3023 | if (priv->hw_ready) |
| 3024 | return ret; |
| 3025 | |
| 3026 | /* If HW is not ready, prepare the conditions to check again */ |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 3027 | iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 3028 | CSR_HW_IF_CONFIG_REG_PREPARE); |
| 3029 | |
| 3030 | ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 3031 | ~CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, |
| 3032 | CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, 150000); |
| 3033 | |
Mohamed Abbas | 3354a0f | 2009-06-19 13:52:41 -0700 | [diff] [blame] | 3034 | /* HW should be ready by now, check again. */ |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 3035 | if (ret != -ETIMEDOUT) |
| 3036 | iwl_set_hw_ready(priv); |
| 3037 | |
| 3038 | return ret; |
| 3039 | } |
| 3040 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3041 | #define MAX_HW_RESTARTS 5 |
| 3042 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3043 | static int __iwl_up(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3044 | { |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 3045 | struct iwl_rxon_context *ctx; |
Tomas Winkler | 57aab75 | 2008-04-14 21:16:03 -0700 | [diff] [blame] | 3046 | int i; |
| 3047 | int ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3048 | |
| 3049 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) { |
Winkler, Tomas | 39aadf8 | 2008-12-19 10:37:32 +0800 | [diff] [blame] | 3050 | IWL_WARN(priv, "Exit pending; will not bring the NIC up\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3051 | return -EIO; |
| 3052 | } |
| 3053 | |
Reinette Chatre | e903fbd | 2008-01-30 22:05:15 -0800 | [diff] [blame] | 3054 | if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 3055 | IWL_ERR(priv, "ucode not available for device bringup\n"); |
Reinette Chatre | e903fbd | 2008-01-30 22:05:15 -0800 | [diff] [blame] | 3056 | return -EIO; |
| 3057 | } |
| 3058 | |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 3059 | for_each_context(priv, ctx) { |
| 3060 | ret = iwl_alloc_bcast_station(priv, ctx, true); |
| 3061 | if (ret) { |
| 3062 | iwl_dealloc_bcast_stations(priv); |
| 3063 | return ret; |
| 3064 | } |
| 3065 | } |
Johannes Berg | 2c810cc | 2010-04-29 00:53:29 -0700 | [diff] [blame] | 3066 | |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 3067 | iwl_prepare_card_hw(priv); |
| 3068 | |
| 3069 | if (!priv->hw_ready) { |
| 3070 | IWL_WARN(priv, "Exit HW not ready\n"); |
| 3071 | return -EIO; |
| 3072 | } |
| 3073 | |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 3074 | /* If platform's RF_KILL switch is NOT set to KILL */ |
Tomas Winkler | c1842d6 | 2008-08-04 16:00:43 +0800 | [diff] [blame] | 3075 | if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW) |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 3076 | clear_bit(STATUS_RF_KILL_HW, &priv->status); |
Emmanuel Grumbach | 3bff19c | 2008-06-30 17:23:19 +0800 | [diff] [blame] | 3077 | else |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 3078 | set_bit(STATUS_RF_KILL_HW, &priv->status); |
Emmanuel Grumbach | 3bff19c | 2008-06-30 17:23:19 +0800 | [diff] [blame] | 3079 | |
Tomas Winkler | c1842d6 | 2008-08-04 16:00:43 +0800 | [diff] [blame] | 3080 | if (iwl_is_rfkill(priv)) { |
Johannes Berg | a60e77e | 2009-06-04 18:26:06 +0200 | [diff] [blame] | 3081 | wiphy_rfkill_set_hw_state(priv->hw->wiphy, true); |
| 3082 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3083 | iwl_enable_interrupts(priv); |
Johannes Berg | a60e77e | 2009-06-04 18:26:06 +0200 | [diff] [blame] | 3084 | IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n"); |
Tomas Winkler | c1842d6 | 2008-08-04 16:00:43 +0800 | [diff] [blame] | 3085 | return 0; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3086 | } |
| 3087 | |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 3088 | iwl_write32(priv, CSR_INT, 0xFFFFFFFF); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3089 | |
Johannes Berg | 13bb948 | 2010-08-23 10:46:33 +0200 | [diff] [blame] | 3090 | /* must be initialised before iwl_hw_nic_init */ |
Johannes Berg | 751ca30 | 2010-08-23 10:46:34 +0200 | [diff] [blame] | 3091 | if (priv->valid_contexts != BIT(IWL_RXON_CTX_BSS)) |
| 3092 | priv->cmd_queue = IWL_IPAN_CMD_QUEUE_NUM; |
| 3093 | else |
| 3094 | priv->cmd_queue = IWL_DEFAULT_CMD_QUEUE_NUM; |
Johannes Berg | 13bb948 | 2010-08-23 10:46:33 +0200 | [diff] [blame] | 3095 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 3096 | ret = iwlagn_hw_nic_init(priv); |
Tomas Winkler | 57aab75 | 2008-04-14 21:16:03 -0700 | [diff] [blame] | 3097 | if (ret) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 3098 | IWL_ERR(priv, "Unable to init nic\n"); |
Tomas Winkler | 57aab75 | 2008-04-14 21:16:03 -0700 | [diff] [blame] | 3099 | return ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3100 | } |
| 3101 | |
| 3102 | /* make sure rfkill handshake bits are cleared */ |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 3103 | iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL); |
| 3104 | iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3105 | CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED); |
| 3106 | |
| 3107 | /* clear (again), then enable host interrupts */ |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 3108 | iwl_write32(priv, CSR_INT, 0xFFFFFFFF); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3109 | iwl_enable_interrupts(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3110 | |
| 3111 | /* really make sure rfkill handshake bits are cleared */ |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 3112 | iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL); |
| 3113 | iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3114 | |
| 3115 | /* Copy original ucode data image from disk into backup cache. |
| 3116 | * This will be used to initialize the on-board processor's |
| 3117 | * data SRAM for a clean start when the runtime program first loads. */ |
| 3118 | memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr, |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 3119 | priv->ucode_data.len); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3120 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3121 | for (i = 0; i < MAX_HW_RESTARTS; i++) { |
| 3122 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3123 | /* load bootstrap state machine, |
| 3124 | * load bootstrap program into processor's memory, |
| 3125 | * prepare to load the "initialize" uCode */ |
Tomas Winkler | 57aab75 | 2008-04-14 21:16:03 -0700 | [diff] [blame] | 3126 | ret = priv->cfg->ops->lib->load_ucode(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3127 | |
Tomas Winkler | 57aab75 | 2008-04-14 21:16:03 -0700 | [diff] [blame] | 3128 | if (ret) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 3129 | IWL_ERR(priv, "Unable to set up bootstrap uCode: %d\n", |
| 3130 | ret); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3131 | continue; |
| 3132 | } |
| 3133 | |
| 3134 | /* start card; "initialize" will load runtime ucode */ |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3135 | iwl_nic_start(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3136 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3137 | IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3138 | |
| 3139 | return 0; |
| 3140 | } |
| 3141 | |
| 3142 | set_bit(STATUS_EXIT_PENDING, &priv->status); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3143 | __iwl_down(priv); |
Mohamed Abbas | 64e72c3e | 2008-06-12 09:47:03 +0800 | [diff] [blame] | 3144 | clear_bit(STATUS_EXIT_PENDING, &priv->status); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3145 | |
| 3146 | /* tried to restart and config the device for as long as our |
| 3147 | * patience could withstand */ |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 3148 | IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3149 | return -EIO; |
| 3150 | } |
| 3151 | |
| 3152 | |
| 3153 | /***************************************************************************** |
| 3154 | * |
| 3155 | * Workqueue callbacks |
| 3156 | * |
| 3157 | *****************************************************************************/ |
| 3158 | |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 3159 | static void iwl_bg_init_alive_start(struct work_struct *data) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3160 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 3161 | struct iwl_priv *priv = |
| 3162 | container_of(data, struct iwl_priv, init_alive_start.work); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3163 | |
| 3164 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 3165 | return; |
| 3166 | |
| 3167 | mutex_lock(&priv->mutex); |
Emmanuel Grumbach | f3ccc08 | 2008-05-05 10:22:45 +0800 | [diff] [blame] | 3168 | priv->cfg->ops->lib->init_alive_start(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3169 | mutex_unlock(&priv->mutex); |
| 3170 | } |
| 3171 | |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 3172 | static void iwl_bg_alive_start(struct work_struct *data) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3173 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 3174 | struct iwl_priv *priv = |
| 3175 | container_of(data, struct iwl_priv, alive_start.work); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3176 | |
| 3177 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 3178 | return; |
| 3179 | |
Mohamed Abbas | 258c44a | 2009-06-03 11:44:10 -0700 | [diff] [blame] | 3180 | /* enable dram interrupt */ |
| 3181 | iwl_reset_ict(priv); |
| 3182 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3183 | mutex_lock(&priv->mutex); |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 3184 | iwl_alive_start(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3185 | mutex_unlock(&priv->mutex); |
| 3186 | } |
| 3187 | |
Emmanuel Grumbach | 16e727e | 2008-06-12 09:46:52 +0800 | [diff] [blame] | 3188 | static void iwl_bg_run_time_calib_work(struct work_struct *work) |
| 3189 | { |
| 3190 | struct iwl_priv *priv = container_of(work, struct iwl_priv, |
| 3191 | run_time_calib_work); |
| 3192 | |
| 3193 | mutex_lock(&priv->mutex); |
| 3194 | |
| 3195 | if (test_bit(STATUS_EXIT_PENDING, &priv->status) || |
| 3196 | test_bit(STATUS_SCANNING, &priv->status)) { |
| 3197 | mutex_unlock(&priv->mutex); |
| 3198 | return; |
| 3199 | } |
| 3200 | |
| 3201 | if (priv->start_calib) { |
Wey-Yi Guy | 7980fba | 2010-07-14 08:08:57 -0700 | [diff] [blame] | 3202 | if (priv->cfg->bt_statistics) { |
| 3203 | iwl_chain_noise_calibration(priv, |
| 3204 | (void *)&priv->_agn.statistics_bt); |
| 3205 | iwl_sensitivity_calibration(priv, |
| 3206 | (void *)&priv->_agn.statistics_bt); |
| 3207 | } else { |
| 3208 | iwl_chain_noise_calibration(priv, |
| 3209 | (void *)&priv->_agn.statistics); |
| 3210 | iwl_sensitivity_calibration(priv, |
| 3211 | (void *)&priv->_agn.statistics); |
| 3212 | } |
Emmanuel Grumbach | 16e727e | 2008-06-12 09:46:52 +0800 | [diff] [blame] | 3213 | } |
| 3214 | |
| 3215 | mutex_unlock(&priv->mutex); |
Emmanuel Grumbach | 16e727e | 2008-06-12 09:46:52 +0800 | [diff] [blame] | 3216 | } |
| 3217 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3218 | static void iwl_bg_restart(struct work_struct *data) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3219 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 3220 | struct iwl_priv *priv = container_of(data, struct iwl_priv, restart); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3221 | |
| 3222 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 3223 | return; |
| 3224 | |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 3225 | if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) { |
Johannes Berg | 8bd413e | 2010-08-23 10:46:40 +0200 | [diff] [blame] | 3226 | struct iwl_rxon_context *ctx; |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 3227 | bool bt_sco, bt_full_concurrent; |
| 3228 | u8 bt_ci_compliance; |
Johannes Berg | 511b082 | 2010-08-23 07:57:01 -0700 | [diff] [blame] | 3229 | u8 bt_load; |
Wey-Yi Guy | da5dbb9 | 2010-08-23 07:57:13 -0700 | [diff] [blame] | 3230 | u8 bt_status; |
Johannes Berg | 511b082 | 2010-08-23 07:57:01 -0700 | [diff] [blame] | 3231 | |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 3232 | mutex_lock(&priv->mutex); |
Johannes Berg | 8bd413e | 2010-08-23 10:46:40 +0200 | [diff] [blame] | 3233 | for_each_context(priv, ctx) |
| 3234 | ctx->vif = NULL; |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 3235 | priv->is_open = 0; |
Johannes Berg | 511b082 | 2010-08-23 07:57:01 -0700 | [diff] [blame] | 3236 | |
| 3237 | /* |
| 3238 | * __iwl_down() will clear the BT status variables, |
| 3239 | * which is correct, but when we restart we really |
| 3240 | * want to keep them so restore them afterwards. |
| 3241 | * |
| 3242 | * The restart process will later pick them up and |
| 3243 | * re-configure the hw when we reconfigure the BT |
| 3244 | * command. |
| 3245 | */ |
| 3246 | bt_sco = priv->bt_sco_active; |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 3247 | bt_full_concurrent = priv->bt_full_concurrent; |
| 3248 | bt_ci_compliance = priv->bt_ci_compliance; |
Johannes Berg | 511b082 | 2010-08-23 07:57:01 -0700 | [diff] [blame] | 3249 | bt_load = priv->bt_traffic_load; |
Wey-Yi Guy | da5dbb9 | 2010-08-23 07:57:13 -0700 | [diff] [blame] | 3250 | bt_status = priv->bt_status; |
Johannes Berg | 511b082 | 2010-08-23 07:57:01 -0700 | [diff] [blame] | 3251 | |
Johannes Berg | a117413 | 2010-08-23 07:56:59 -0700 | [diff] [blame] | 3252 | __iwl_down(priv); |
Johannes Berg | 511b082 | 2010-08-23 07:57:01 -0700 | [diff] [blame] | 3253 | |
| 3254 | priv->bt_sco_active = bt_sco; |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 3255 | priv->bt_full_concurrent = bt_full_concurrent; |
| 3256 | priv->bt_ci_compliance = bt_ci_compliance; |
Johannes Berg | 511b082 | 2010-08-23 07:57:01 -0700 | [diff] [blame] | 3257 | priv->bt_traffic_load = bt_load; |
Wey-Yi Guy | da5dbb9 | 2010-08-23 07:57:13 -0700 | [diff] [blame] | 3258 | priv->bt_status = bt_status; |
Johannes Berg | 511b082 | 2010-08-23 07:57:01 -0700 | [diff] [blame] | 3259 | |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 3260 | mutex_unlock(&priv->mutex); |
Johannes Berg | a117413 | 2010-08-23 07:56:59 -0700 | [diff] [blame] | 3261 | iwl_cancel_deferred_work(priv); |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 3262 | ieee80211_restart_hw(priv->hw); |
| 3263 | } else { |
| 3264 | iwl_down(priv); |
Johannes Berg | 8067651 | 2010-01-21 06:07:17 -0800 | [diff] [blame] | 3265 | |
| 3266 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 3267 | return; |
| 3268 | |
| 3269 | mutex_lock(&priv->mutex); |
| 3270 | __iwl_up(priv); |
| 3271 | mutex_unlock(&priv->mutex); |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 3272 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3273 | } |
| 3274 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3275 | static void iwl_bg_rx_replenish(struct work_struct *data) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3276 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 3277 | struct iwl_priv *priv = |
| 3278 | container_of(data, struct iwl_priv, rx_replenish); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3279 | |
| 3280 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 3281 | return; |
| 3282 | |
| 3283 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 3284 | iwlagn_rx_replenish(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3285 | mutex_unlock(&priv->mutex); |
| 3286 | } |
| 3287 | |
Mohamed Abbas | 7878a5a | 2007-11-29 11:10:13 +0800 | [diff] [blame] | 3288 | #define IWL_DELAY_NEXT_SCAN (HZ*2) |
| 3289 | |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 3290 | void iwl_post_associate(struct iwl_priv *priv, struct ieee80211_vif *vif) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3291 | { |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3292 | struct iwl_rxon_context *ctx; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3293 | struct ieee80211_conf *conf = NULL; |
Tomas Winkler | 857485c | 2008-03-21 13:53:44 -0700 | [diff] [blame] | 3294 | int ret = 0; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3295 | |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 3296 | if (!vif || !priv->is_open) |
| 3297 | return; |
| 3298 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3299 | ctx = iwl_rxon_ctx_from_vif(vif); |
| 3300 | |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 3301 | if (vif->type == NL80211_IFTYPE_AP) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 3302 | IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3303 | return; |
| 3304 | } |
| 3305 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3306 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 3307 | return; |
| 3308 | |
Tomas Winkler | 2a421b9 | 2008-06-12 09:47:10 +0800 | [diff] [blame] | 3309 | iwl_scan_cancel_timeout(priv, 200); |
mabbas | 052c4b9 | 2007-10-25 17:15:43 +0800 | [diff] [blame] | 3310 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3311 | conf = ieee80211_get_hw_conf(priv->hw); |
| 3312 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3313 | ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
| 3314 | iwlcore_commit_rxon(priv, ctx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3315 | |
Johannes Berg | 47313e3 | 2010-08-23 10:46:55 +0200 | [diff] [blame] | 3316 | ret = iwl_send_rxon_timing(priv, ctx); |
Tomas Winkler | 857485c | 2008-03-21 13:53:44 -0700 | [diff] [blame] | 3317 | if (ret) |
Johannes Berg | 8f2d3d2 | 2010-08-23 10:46:37 +0200 | [diff] [blame] | 3318 | IWL_WARN(priv, "RXON timing - " |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3319 | "Attempting to continue.\n"); |
| 3320 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3321 | ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3322 | |
Emmanuel Grumbach | 42eb7c6 | 2008-09-17 10:10:05 +0800 | [diff] [blame] | 3323 | iwl_set_rxon_ht(priv, &priv->current_ht_config); |
Ron Rindjunsky | 4f85f5b | 2008-06-09 22:54:35 +0300 | [diff] [blame] | 3324 | |
Abhijeet Kolekar | 4582353 | 2009-04-08 11:26:44 -0700 | [diff] [blame] | 3325 | if (priv->cfg->ops->hcmd->set_rxon_chain) |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3326 | priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx); |
Abhijeet Kolekar | 4582353 | 2009-04-08 11:26:44 -0700 | [diff] [blame] | 3327 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3328 | ctx->staging.assoc_id = cpu_to_le16(vif->bss_conf.aid); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3329 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3330 | IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n", |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 3331 | vif->bss_conf.aid, vif->bss_conf.beacon_int); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3332 | |
Johannes Berg | c213d74 | 2010-05-06 12:21:40 -0700 | [diff] [blame] | 3333 | if (vif->bss_conf.use_short_preamble) |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3334 | ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3335 | else |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3336 | ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3337 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3338 | if (ctx->staging.flags & RXON_FLG_BAND_24G_MSK) { |
Johannes Berg | c213d74 | 2010-05-06 12:21:40 -0700 | [diff] [blame] | 3339 | if (vif->bss_conf.use_short_slot) |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3340 | ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3341 | else |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3342 | ctx->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3343 | } |
| 3344 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3345 | iwlcore_commit_rxon(priv, ctx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3346 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3347 | IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n", |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3348 | vif->bss_conf.aid, ctx->active.bssid_addr); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3349 | |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 3350 | switch (vif->type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 3351 | case NL80211_IFTYPE_STATION: |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3352 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 3353 | case NL80211_IFTYPE_ADHOC: |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3354 | iwl_send_beacon_cmd(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3355 | break; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3356 | default: |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 3357 | IWL_ERR(priv, "%s Should not be called in %d mode\n", |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 3358 | __func__, vif->type); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3359 | break; |
| 3360 | } |
| 3361 | |
Grumbach, Emmanuel | 0481644 | 2008-09-03 11:26:53 +0800 | [diff] [blame] | 3362 | /* the chain noise calibration will enabled PM upon completion |
| 3363 | * If chain noise has already been run, then we need to enable |
| 3364 | * power management here */ |
| 3365 | if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE) |
Johannes Berg | e312c24 | 2009-08-07 15:41:51 -0700 | [diff] [blame] | 3366 | iwl_power_update_mode(priv, false); |
Emmanuel Grumbach | c90a74ba | 2008-09-03 11:26:50 +0800 | [diff] [blame] | 3367 | |
| 3368 | /* Enable Rx differential gain and sensitivity calibrations */ |
| 3369 | iwl_chain_noise_reset(priv); |
| 3370 | priv->start_calib = 1; |
| 3371 | |
Reinette Chatre | 508e32e | 2008-04-14 21:16:13 -0700 | [diff] [blame] | 3372 | } |
| 3373 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3374 | /***************************************************************************** |
| 3375 | * |
| 3376 | * mac80211 entry point functions |
| 3377 | * |
| 3378 | *****************************************************************************/ |
| 3379 | |
Emmanuel Grumbach | 154b25c | 2008-06-30 17:23:24 +0800 | [diff] [blame] | 3380 | #define UCODE_READY_TIMEOUT (4 * HZ) |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 3381 | |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 3382 | /* |
| 3383 | * Not a mac80211 entry point function, but it fits in with all the |
| 3384 | * other mac80211 functions grouped here. |
| 3385 | */ |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 3386 | static int iwl_mac_setup_register(struct iwl_priv *priv, |
| 3387 | struct iwlagn_ucode_capabilities *capa) |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 3388 | { |
| 3389 | int ret; |
| 3390 | struct ieee80211_hw *hw = priv->hw; |
Johannes Berg | d0fe478 | 2010-08-23 10:46:58 +0200 | [diff] [blame] | 3391 | struct iwl_rxon_context *ctx; |
| 3392 | |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 3393 | hw->rate_control_algorithm = "iwl-agn-rs"; |
| 3394 | |
| 3395 | /* Tell mac80211 our characteristics */ |
| 3396 | hw->flags = IEEE80211_HW_SIGNAL_DBM | |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 3397 | IEEE80211_HW_AMPDU_AGGREGATION | |
Johannes Berg | 2491fa4 | 2010-08-23 10:46:52 +0200 | [diff] [blame] | 3398 | IEEE80211_HW_NEED_DTIM_PERIOD | |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 3399 | IEEE80211_HW_SPECTRUM_MGMT; |
| 3400 | |
| 3401 | if (!priv->cfg->broken_powersave) |
| 3402 | hw->flags |= IEEE80211_HW_SUPPORTS_PS | |
| 3403 | IEEE80211_HW_SUPPORTS_DYNAMIC_PS; |
| 3404 | |
Johannes Berg | ba37a3d | 2009-12-10 14:37:27 -0800 | [diff] [blame] | 3405 | if (priv->cfg->sku & IWL_SKU_N) |
| 3406 | hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS | |
| 3407 | IEEE80211_HW_SUPPORTS_STATIC_SMPS; |
| 3408 | |
Reinette Chatre | 8d9698b | 2009-10-16 14:25:55 -0700 | [diff] [blame] | 3409 | hw->sta_data_size = sizeof(struct iwl_station_priv); |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 3410 | hw->vif_data_size = sizeof(struct iwl_vif_priv); |
| 3411 | |
Johannes Berg | d0fe478 | 2010-08-23 10:46:58 +0200 | [diff] [blame] | 3412 | for_each_context(priv, ctx) { |
| 3413 | hw->wiphy->interface_modes |= ctx->interface_modes; |
| 3414 | hw->wiphy->interface_modes |= ctx->exclusive_interface_modes; |
| 3415 | } |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 3416 | |
Reinette Chatre | f6c8f15 | 2010-03-12 11:13:26 -0800 | [diff] [blame] | 3417 | hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY | |
Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 3418 | WIPHY_FLAG_DISABLE_BEACON_HINTS; |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 3419 | |
| 3420 | /* |
| 3421 | * For now, disable PS by default because it affects |
| 3422 | * RX performance significantly. |
| 3423 | */ |
Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 3424 | hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT; |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 3425 | |
Reinette Chatre | 1382c71 | 2010-02-25 10:02:19 -0800 | [diff] [blame] | 3426 | hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX; |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 3427 | /* we create the 802.11 header and a zero-length SSID element */ |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 3428 | hw->wiphy->max_scan_ie_len = capa->max_probe_length - 24 - 2; |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 3429 | |
| 3430 | /* Default value; 4 EDCA QOS priorities */ |
| 3431 | hw->queues = 4; |
| 3432 | |
| 3433 | hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL; |
| 3434 | |
| 3435 | if (priv->bands[IEEE80211_BAND_2GHZ].n_channels) |
| 3436 | priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] = |
| 3437 | &priv->bands[IEEE80211_BAND_2GHZ]; |
| 3438 | if (priv->bands[IEEE80211_BAND_5GHZ].n_channels) |
| 3439 | priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] = |
| 3440 | &priv->bands[IEEE80211_BAND_5GHZ]; |
| 3441 | |
| 3442 | ret = ieee80211_register_hw(priv->hw); |
| 3443 | if (ret) { |
| 3444 | IWL_ERR(priv, "Failed to register hw (error %d)\n", ret); |
| 3445 | return ret; |
| 3446 | } |
| 3447 | priv->mac80211_registered = 1; |
| 3448 | |
| 3449 | return 0; |
| 3450 | } |
| 3451 | |
| 3452 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3453 | static int iwl_mac_start(struct ieee80211_hw *hw) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3454 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 3455 | struct iwl_priv *priv = hw->priv; |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 3456 | int ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3457 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3458 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3459 | |
| 3460 | /* we should be verifying the device is ready to be opened */ |
| 3461 | mutex_lock(&priv->mutex); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3462 | ret = __iwl_up(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3463 | mutex_unlock(&priv->mutex); |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 3464 | |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 3465 | if (ret) |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 3466 | return ret; |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 3467 | |
Tomas Winkler | c1842d6 | 2008-08-04 16:00:43 +0800 | [diff] [blame] | 3468 | if (iwl_is_rfkill(priv)) |
| 3469 | goto out; |
| 3470 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3471 | IWL_DEBUG_INFO(priv, "Start UP work done.\n"); |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 3472 | |
Ron Rindjunsky | fe9b6b7 | 2008-05-29 16:35:06 +0800 | [diff] [blame] | 3473 | /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 3474 | * mac80211 will not be run successfully. */ |
Emmanuel Grumbach | 154b25c | 2008-06-30 17:23:24 +0800 | [diff] [blame] | 3475 | ret = wait_event_interruptible_timeout(priv->wait_command_queue, |
| 3476 | test_bit(STATUS_READY, &priv->status), |
| 3477 | UCODE_READY_TIMEOUT); |
| 3478 | if (!ret) { |
| 3479 | if (!test_bit(STATUS_READY, &priv->status)) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 3480 | IWL_ERR(priv, "START_ALIVE timeout after %dms.\n", |
Emmanuel Grumbach | 154b25c | 2008-06-30 17:23:24 +0800 | [diff] [blame] | 3481 | jiffies_to_msecs(UCODE_READY_TIMEOUT)); |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 3482 | return -ETIMEDOUT; |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 3483 | } |
Ron Rindjunsky | fe9b6b7 | 2008-05-29 16:35:06 +0800 | [diff] [blame] | 3484 | } |
Tomas Winkler | 0a078ff | 2008-06-30 17:23:26 +0800 | [diff] [blame] | 3485 | |
Johannes Berg | e932a60 | 2009-10-02 13:44:03 -0700 | [diff] [blame] | 3486 | iwl_led_start(priv); |
| 3487 | |
Tomas Winkler | c1842d6 | 2008-08-04 16:00:43 +0800 | [diff] [blame] | 3488 | out: |
Tomas Winkler | 0a078ff | 2008-06-30 17:23:26 +0800 | [diff] [blame] | 3489 | priv->is_open = 1; |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3490 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3491 | return 0; |
| 3492 | } |
| 3493 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3494 | static void iwl_mac_stop(struct ieee80211_hw *hw) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3495 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 3496 | struct iwl_priv *priv = hw->priv; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3497 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3498 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
Mohamed Abbas | 948c171 | 2007-10-25 17:15:45 +0800 | [diff] [blame] | 3499 | |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 3500 | if (!priv->is_open) |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 3501 | return; |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 3502 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3503 | priv->is_open = 0; |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 3504 | |
Wey-Yi Guy | 5bddf54 | 2009-08-21 13:34:25 -0700 | [diff] [blame] | 3505 | if (iwl_is_ready_rf(priv) || test_bit(STATUS_SCAN_HW, &priv->status)) { |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 3506 | /* stop mac, cancel any scan request and clear |
| 3507 | * RXON_FILTER_ASSOC_MSK BIT |
| 3508 | */ |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 3509 | mutex_lock(&priv->mutex); |
Tomas Winkler | 2a421b9 | 2008-06-12 09:47:10 +0800 | [diff] [blame] | 3510 | iwl_scan_cancel_timeout(priv, 100); |
Mohamed Abbas | fde3571 | 2007-11-29 11:10:15 +0800 | [diff] [blame] | 3511 | mutex_unlock(&priv->mutex); |
Mohamed Abbas | fde3571 | 2007-11-29 11:10:15 +0800 | [diff] [blame] | 3512 | } |
| 3513 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3514 | iwl_down(priv); |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 3515 | |
| 3516 | flush_workqueue(priv->workqueue); |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 3517 | |
| 3518 | /* enable interrupts again in order to receive rfkill changes */ |
| 3519 | iwl_write32(priv, CSR_INT, 0xFFFFFFFF); |
| 3520 | iwl_enable_interrupts(priv); |
Mohamed Abbas | 948c171 | 2007-10-25 17:15:45 +0800 | [diff] [blame] | 3521 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3522 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3523 | } |
| 3524 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3525 | static int iwl_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3526 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 3527 | struct iwl_priv *priv = hw->priv; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3528 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3529 | IWL_DEBUG_MACDUMP(priv, "enter\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3530 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3531 | IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len, |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 3532 | ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3533 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 3534 | if (iwlagn_tx_skb(priv, skb)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3535 | dev_kfree_skb_any(skb); |
| 3536 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3537 | IWL_DEBUG_MACDUMP(priv, "leave\n"); |
Reinette Chatre | 637f883 | 2009-01-19 15:30:32 -0800 | [diff] [blame] | 3538 | return NETDEV_TX_OK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3539 | } |
| 3540 | |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 3541 | void iwl_config_ap(struct iwl_priv *priv, struct ieee80211_vif *vif) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3542 | { |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3543 | struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif); |
Tomas Winkler | 857485c | 2008-03-21 13:53:44 -0700 | [diff] [blame] | 3544 | int ret = 0; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3545 | |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 3546 | lockdep_assert_held(&priv->mutex); |
| 3547 | |
Maarten Lankhorst | d986bcd | 2008-01-23 10:15:16 -0800 | [diff] [blame] | 3548 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3549 | return; |
| 3550 | |
| 3551 | /* The following should be done only at AP bring up */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3552 | if (!iwl_is_associated_ctx(ctx)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3553 | |
| 3554 | /* RXON - unassoc (to set timing command) */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3555 | ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
| 3556 | iwlcore_commit_rxon(priv, ctx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3557 | |
| 3558 | /* RXON Timing */ |
Johannes Berg | 47313e3 | 2010-08-23 10:46:55 +0200 | [diff] [blame] | 3559 | ret = iwl_send_rxon_timing(priv, ctx); |
Tomas Winkler | 857485c | 2008-03-21 13:53:44 -0700 | [diff] [blame] | 3560 | if (ret) |
Johannes Berg | 8f2d3d2 | 2010-08-23 10:46:37 +0200 | [diff] [blame] | 3561 | IWL_WARN(priv, "RXON timing failed - " |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3562 | "Attempting to continue.\n"); |
| 3563 | |
Daniel C Halperin | f513dff | 2009-11-13 11:56:34 -0800 | [diff] [blame] | 3564 | /* AP has all antennas */ |
| 3565 | priv->chain_noise_data.active_chains = |
| 3566 | priv->hw_params.valid_rx_ant; |
| 3567 | iwl_set_rxon_ht(priv, &priv->current_ht_config); |
Abhijeet Kolekar | 4582353 | 2009-04-08 11:26:44 -0700 | [diff] [blame] | 3568 | if (priv->cfg->ops->hcmd->set_rxon_chain) |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3569 | priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3570 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3571 | ctx->staging.assoc_id = 0; |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 3572 | |
Johannes Berg | c213d74 | 2010-05-06 12:21:40 -0700 | [diff] [blame] | 3573 | if (vif->bss_conf.use_short_preamble) |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3574 | ctx->staging.flags |= |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3575 | RXON_FLG_SHORT_PREAMBLE_MSK; |
| 3576 | else |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3577 | ctx->staging.flags &= |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3578 | ~RXON_FLG_SHORT_PREAMBLE_MSK; |
| 3579 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3580 | if (ctx->staging.flags & RXON_FLG_BAND_24G_MSK) { |
Johannes Berg | c213d74 | 2010-05-06 12:21:40 -0700 | [diff] [blame] | 3581 | if (vif->bss_conf.use_short_slot) |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3582 | ctx->staging.flags |= |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3583 | RXON_FLG_SHORT_SLOT_MSK; |
| 3584 | else |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3585 | ctx->staging.flags &= |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3586 | ~RXON_FLG_SHORT_SLOT_MSK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3587 | } |
Johannes Berg | 08abc53 | 2010-08-23 10:46:53 +0200 | [diff] [blame] | 3588 | /* need to send beacon cmd before committing assoc RXON! */ |
| 3589 | iwl_send_beacon_cmd(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3590 | /* restore RXON assoc */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3591 | ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK; |
| 3592 | iwlcore_commit_rxon(priv, ctx); |
Zhu Yi | e1493de | 2007-09-27 11:27:32 +0800 | [diff] [blame] | 3593 | } |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3594 | iwl_send_beacon_cmd(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3595 | |
| 3596 | /* FIXME - we need to add code here to detect a totally new |
| 3597 | * configuration, reset the AP, unassoc, rxon timing, assoc, |
| 3598 | * clear sta table, add BCAST sta... */ |
| 3599 | } |
| 3600 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3601 | static void iwl_mac_update_tkip_key(struct ieee80211_hw *hw, |
Johannes Berg | b3fbdcf | 2010-01-21 11:40:47 +0100 | [diff] [blame] | 3602 | struct ieee80211_vif *vif, |
| 3603 | struct ieee80211_key_conf *keyconf, |
| 3604 | struct ieee80211_sta *sta, |
| 3605 | u32 iv32, u16 *phase1key) |
Emmanuel Grumbach | ab885f8 | 2008-03-20 15:06:43 +0200 | [diff] [blame] | 3606 | { |
Emmanuel Grumbach | ab885f8 | 2008-03-20 15:06:43 +0200 | [diff] [blame] | 3607 | |
Tomas Winkler | 9f58671 | 2008-11-12 13:14:05 -0800 | [diff] [blame] | 3608 | struct iwl_priv *priv = hw->priv; |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 3609 | struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv; |
| 3610 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3611 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
Emmanuel Grumbach | ab885f8 | 2008-03-20 15:06:43 +0200 | [diff] [blame] | 3612 | |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 3613 | iwl_update_tkip_key(priv, vif_priv->ctx, keyconf, sta, |
Johannes Berg | b3fbdcf | 2010-01-21 11:40:47 +0100 | [diff] [blame] | 3614 | iv32, phase1key); |
Emmanuel Grumbach | ab885f8 | 2008-03-20 15:06:43 +0200 | [diff] [blame] | 3615 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3616 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
Emmanuel Grumbach | ab885f8 | 2008-03-20 15:06:43 +0200 | [diff] [blame] | 3617 | } |
| 3618 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3619 | static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, |
Johannes Berg | dc822b5 | 2008-12-29 12:55:09 +0100 | [diff] [blame] | 3620 | struct ieee80211_vif *vif, |
| 3621 | struct ieee80211_sta *sta, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3622 | struct ieee80211_key_conf *key) |
| 3623 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 3624 | struct iwl_priv *priv = hw->priv; |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 3625 | struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv; |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 3626 | struct iwl_rxon_context *ctx = vif_priv->ctx; |
Winkler, Tomas | 4298679 | 2009-01-19 15:30:22 -0800 | [diff] [blame] | 3627 | int ret; |
| 3628 | u8 sta_id; |
| 3629 | bool is_default_wep_key = false; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3630 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3631 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3632 | |
Tomas Winkler | 90e8e42 | 2009-06-19 13:52:42 -0700 | [diff] [blame] | 3633 | if (priv->cfg->mod_params->sw_crypto) { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3634 | IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3635 | return -EOPNOTSUPP; |
| 3636 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3637 | |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 3638 | sta_id = iwl_sta_id_or_broadcast(priv, vif_priv->ctx, sta); |
Johannes Berg | 0af8bca | 2010-04-30 14:08:00 -0700 | [diff] [blame] | 3639 | if (sta_id == IWL_INVALID_STATION) |
| 3640 | return -EINVAL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3641 | |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 3642 | mutex_lock(&priv->mutex); |
Tomas Winkler | 2a421b9 | 2008-06-12 09:47:10 +0800 | [diff] [blame] | 3643 | iwl_scan_cancel_timeout(priv, 100); |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 3644 | |
Johannes Berg | a90178fa | 2010-03-30 02:44:16 -0700 | [diff] [blame] | 3645 | /* |
| 3646 | * If we are getting WEP group key and we didn't receive any key mapping |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 3647 | * so far, we are in legacy wep mode (group key only), otherwise we are |
| 3648 | * in 1X mode. |
Johannes Berg | a90178fa | 2010-03-30 02:44:16 -0700 | [diff] [blame] | 3649 | * In legacy wep mode, we use another host command to the uCode. |
| 3650 | */ |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 3651 | if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 || |
| 3652 | key->cipher == WLAN_CIPHER_SUITE_WEP104) && |
Johannes Berg | 54c8067 | 2010-08-18 09:35:21 -0700 | [diff] [blame] | 3653 | !sta) { |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 3654 | if (cmd == SET_KEY) |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 3655 | is_default_wep_key = !ctx->key_mapping_keys; |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 3656 | else |
Emmanuel Grumbach | ccc038a | 2008-05-15 13:54:09 +0800 | [diff] [blame] | 3657 | is_default_wep_key = |
| 3658 | (key->hw_key_idx == HW_KEY_DEFAULT); |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 3659 | } |
mabbas | 052c4b9 | 2007-10-25 17:15:43 +0800 | [diff] [blame] | 3660 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3661 | switch (cmd) { |
Emmanuel Grumbach | deb09c4 | 2008-03-19 16:41:41 -0700 | [diff] [blame] | 3662 | case SET_KEY: |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 3663 | if (is_default_wep_key) |
Johannes Berg | 2995baf | 2010-08-23 10:46:42 +0200 | [diff] [blame] | 3664 | ret = iwl_set_default_wep_key(priv, vif_priv->ctx, key); |
Emmanuel Grumbach | deb09c4 | 2008-03-19 16:41:41 -0700 | [diff] [blame] | 3665 | else |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 3666 | ret = iwl_set_dynamic_key(priv, vif_priv->ctx, |
| 3667 | key, sta_id); |
Emmanuel Grumbach | deb09c4 | 2008-03-19 16:41:41 -0700 | [diff] [blame] | 3668 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3669 | IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3670 | break; |
| 3671 | case DISABLE_KEY: |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 3672 | if (is_default_wep_key) |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 3673 | ret = iwl_remove_default_wep_key(priv, ctx, key); |
Emmanuel Grumbach | deb09c4 | 2008-03-19 16:41:41 -0700 | [diff] [blame] | 3674 | else |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 3675 | ret = iwl_remove_dynamic_key(priv, ctx, key, sta_id); |
Emmanuel Grumbach | deb09c4 | 2008-03-19 16:41:41 -0700 | [diff] [blame] | 3676 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3677 | IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3678 | break; |
| 3679 | default: |
Emmanuel Grumbach | deb09c4 | 2008-03-19 16:41:41 -0700 | [diff] [blame] | 3680 | ret = -EINVAL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3681 | } |
| 3682 | |
Johannes Berg | 72e15d7 | 2010-02-19 11:42:32 -0800 | [diff] [blame] | 3683 | mutex_unlock(&priv->mutex); |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3684 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3685 | |
Emmanuel Grumbach | deb09c4 | 2008-03-19 16:41:41 -0700 | [diff] [blame] | 3686 | return ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3687 | } |
| 3688 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3689 | static int iwl_mac_ampdu_action(struct ieee80211_hw *hw, |
Johannes Berg | c951ad3 | 2009-11-16 12:00:38 +0100 | [diff] [blame] | 3690 | struct ieee80211_vif *vif, |
Johannes Berg | 832f47e | 2010-04-29 04:43:07 -0700 | [diff] [blame] | 3691 | enum ieee80211_ampdu_mlme_action action, |
| 3692 | struct ieee80211_sta *sta, u16 tid, u16 *ssn) |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 3693 | { |
| 3694 | struct iwl_priv *priv = hw->priv; |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 3695 | int ret = -EINVAL; |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 3696 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3697 | IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n", |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 3698 | sta->addr, tid); |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 3699 | |
| 3700 | if (!(priv->cfg->sku & IWL_SKU_N)) |
| 3701 | return -EACCES; |
| 3702 | |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 3703 | mutex_lock(&priv->mutex); |
| 3704 | |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 3705 | switch (action) { |
| 3706 | case IEEE80211_AMPDU_RX_START: |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3707 | IWL_DEBUG_HT(priv, "start Rx\n"); |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 3708 | ret = iwl_sta_rx_agg_start(priv, sta, tid, *ssn); |
| 3709 | break; |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 3710 | case IEEE80211_AMPDU_RX_STOP: |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3711 | IWL_DEBUG_HT(priv, "stop Rx\n"); |
Johannes Berg | 619753f | 2010-04-30 11:30:46 -0700 | [diff] [blame] | 3712 | ret = iwl_sta_rx_agg_stop(priv, sta, tid); |
Wey-Yi Guy | 5c2207c | 2009-03-17 21:51:43 -0700 | [diff] [blame] | 3713 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 3714 | ret = 0; |
| 3715 | break; |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 3716 | case IEEE80211_AMPDU_TX_START: |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3717 | IWL_DEBUG_HT(priv, "start Tx\n"); |
Johannes Berg | 619753f | 2010-04-30 11:30:46 -0700 | [diff] [blame] | 3718 | ret = iwlagn_tx_agg_start(priv, vif, sta, tid, ssn); |
Wey-Yi Guy | d5a0ffa | 2010-03-04 13:38:59 -0800 | [diff] [blame] | 3719 | if (ret == 0) { |
| 3720 | priv->_agn.agg_tids_count++; |
| 3721 | IWL_DEBUG_HT(priv, "priv->_agn.agg_tids_count = %u\n", |
| 3722 | priv->_agn.agg_tids_count); |
| 3723 | } |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 3724 | break; |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 3725 | case IEEE80211_AMPDU_TX_STOP: |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3726 | IWL_DEBUG_HT(priv, "stop Tx\n"); |
Johannes Berg | 619753f | 2010-04-30 11:30:46 -0700 | [diff] [blame] | 3727 | ret = iwlagn_tx_agg_stop(priv, vif, sta, tid); |
Wey-Yi Guy | d5a0ffa | 2010-03-04 13:38:59 -0800 | [diff] [blame] | 3728 | if ((ret == 0) && (priv->_agn.agg_tids_count > 0)) { |
| 3729 | priv->_agn.agg_tids_count--; |
| 3730 | IWL_DEBUG_HT(priv, "priv->_agn.agg_tids_count = %u\n", |
| 3731 | priv->_agn.agg_tids_count); |
| 3732 | } |
Wey-Yi Guy | 5c2207c | 2009-03-17 21:51:43 -0700 | [diff] [blame] | 3733 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 3734 | ret = 0; |
Johannes Berg | 94597ab | 2010-08-09 10:57:02 -0700 | [diff] [blame] | 3735 | if (priv->cfg->use_rts_for_aggregation) { |
| 3736 | struct iwl_station_priv *sta_priv = |
| 3737 | (void *) sta->drv_priv; |
| 3738 | /* |
| 3739 | * switch off RTS/CTS if it was previously enabled |
| 3740 | */ |
| 3741 | |
| 3742 | sta_priv->lq_sta.lq.general_params.flags &= |
| 3743 | ~LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK; |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 3744 | iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif), |
| 3745 | &sta_priv->lq_sta.lq, CMD_ASYNC, false); |
Johannes Berg | 94597ab | 2010-08-09 10:57:02 -0700 | [diff] [blame] | 3746 | } |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 3747 | break; |
Wey-Yi Guy | f052797 | 2010-01-08 10:04:41 -0800 | [diff] [blame] | 3748 | case IEEE80211_AMPDU_TX_OPERATIONAL: |
Johannes Berg | 94597ab | 2010-08-09 10:57:02 -0700 | [diff] [blame] | 3749 | if (priv->cfg->use_rts_for_aggregation) { |
| 3750 | struct iwl_station_priv *sta_priv = |
| 3751 | (void *) sta->drv_priv; |
| 3752 | |
Wey-Yi Guy | cfecc6b | 2010-06-18 11:33:15 -0700 | [diff] [blame] | 3753 | /* |
| 3754 | * switch to RTS/CTS if it is the prefer protection |
| 3755 | * method for HT traffic |
| 3756 | */ |
Johannes Berg | 94597ab | 2010-08-09 10:57:02 -0700 | [diff] [blame] | 3757 | |
| 3758 | sta_priv->lq_sta.lq.general_params.flags |= |
| 3759 | LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK; |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 3760 | iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif), |
| 3761 | &sta_priv->lq_sta.lq, CMD_ASYNC, false); |
Wey-Yi Guy | cfecc6b | 2010-06-18 11:33:15 -0700 | [diff] [blame] | 3762 | } |
| 3763 | ret = 0; |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 3764 | break; |
| 3765 | } |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 3766 | mutex_unlock(&priv->mutex); |
| 3767 | |
| 3768 | return ret; |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 3769 | } |
Tomas Winkler | 9f58671 | 2008-11-12 13:14:05 -0800 | [diff] [blame] | 3770 | |
Johannes Berg | 6ab10ff | 2009-11-13 11:56:37 -0800 | [diff] [blame] | 3771 | static void iwl_mac_sta_notify(struct ieee80211_hw *hw, |
| 3772 | struct ieee80211_vif *vif, |
| 3773 | enum sta_notify_cmd cmd, |
| 3774 | struct ieee80211_sta *sta) |
| 3775 | { |
| 3776 | struct iwl_priv *priv = hw->priv; |
| 3777 | struct iwl_station_priv *sta_priv = (void *)sta->drv_priv; |
| 3778 | int sta_id; |
| 3779 | |
Johannes Berg | 6ab10ff | 2009-11-13 11:56:37 -0800 | [diff] [blame] | 3780 | switch (cmd) { |
Johannes Berg | 6ab10ff | 2009-11-13 11:56:37 -0800 | [diff] [blame] | 3781 | case STA_NOTIFY_SLEEP: |
| 3782 | WARN_ON(!sta_priv->client); |
| 3783 | sta_priv->asleep = true; |
| 3784 | if (atomic_read(&sta_priv->pending_frames) > 0) |
| 3785 | ieee80211_sta_block_awake(hw, sta, true); |
| 3786 | break; |
| 3787 | case STA_NOTIFY_AWAKE: |
| 3788 | WARN_ON(!sta_priv->client); |
Daniel Halperin | 49dcc81 | 2010-01-19 10:22:19 -0800 | [diff] [blame] | 3789 | if (!sta_priv->asleep) |
| 3790 | break; |
Johannes Berg | 6ab10ff | 2009-11-13 11:56:37 -0800 | [diff] [blame] | 3791 | sta_priv->asleep = false; |
Johannes Berg | 2a87c26 | 2010-04-30 11:30:45 -0700 | [diff] [blame] | 3792 | sta_id = iwl_sta_id(sta); |
Johannes Berg | 6ab10ff | 2009-11-13 11:56:37 -0800 | [diff] [blame] | 3793 | if (sta_id != IWL_INVALID_STATION) |
| 3794 | iwl_sta_modify_ps_wake(priv, sta_id); |
| 3795 | break; |
| 3796 | default: |
| 3797 | break; |
| 3798 | } |
| 3799 | } |
| 3800 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3801 | static int iwlagn_mac_sta_add(struct ieee80211_hw *hw, |
| 3802 | struct ieee80211_vif *vif, |
| 3803 | struct ieee80211_sta *sta) |
| 3804 | { |
| 3805 | struct iwl_priv *priv = hw->priv; |
| 3806 | struct iwl_station_priv *sta_priv = (void *)sta->drv_priv; |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 3807 | struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv; |
Johannes Berg | eafdfbd3 | 2010-04-29 04:43:04 -0700 | [diff] [blame] | 3808 | bool is_ap = vif->type == NL80211_IFTYPE_STATION; |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3809 | int ret; |
| 3810 | u8 sta_id; |
| 3811 | |
| 3812 | IWL_DEBUG_INFO(priv, "received request to add station %pM\n", |
| 3813 | sta->addr); |
Reinette Chatre | da5ae1c | 2010-05-28 09:28:39 -0700 | [diff] [blame] | 3814 | mutex_lock(&priv->mutex); |
| 3815 | IWL_DEBUG_INFO(priv, "proceeding to add station %pM\n", |
| 3816 | sta->addr); |
| 3817 | sta_priv->common.sta_id = IWL_INVALID_STATION; |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3818 | |
| 3819 | atomic_set(&sta_priv->pending_frames, 0); |
| 3820 | if (vif->type == NL80211_IFTYPE_AP) |
| 3821 | sta_priv->client = true; |
| 3822 | |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 3823 | ret = iwl_add_station_common(priv, vif_priv->ctx, sta->addr, |
Johannes Berg | 238d781 | 2010-08-23 10:46:45 +0200 | [diff] [blame] | 3824 | is_ap, sta, &sta_id); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3825 | if (ret) { |
| 3826 | IWL_ERR(priv, "Unable to add station %pM (%d)\n", |
| 3827 | sta->addr, ret); |
| 3828 | /* Should we return success if return code is EEXIST ? */ |
Reinette Chatre | da5ae1c | 2010-05-28 09:28:39 -0700 | [diff] [blame] | 3829 | mutex_unlock(&priv->mutex); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3830 | return ret; |
| 3831 | } |
| 3832 | |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 3833 | sta_priv->common.sta_id = sta_id; |
| 3834 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3835 | /* Initialize rate scaling */ |
Frans Pop | 91dd6c2 | 2010-03-24 14:19:58 -0700 | [diff] [blame] | 3836 | IWL_DEBUG_INFO(priv, "Initializing rate scaling for station %pM\n", |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3837 | sta->addr); |
| 3838 | iwl_rs_rate_init(priv, sta, sta_id); |
Reinette Chatre | da5ae1c | 2010-05-28 09:28:39 -0700 | [diff] [blame] | 3839 | mutex_unlock(&priv->mutex); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3840 | |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 3841 | return 0; |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3842 | } |
| 3843 | |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3844 | static void iwl_mac_channel_switch(struct ieee80211_hw *hw, |
| 3845 | struct ieee80211_channel_switch *ch_switch) |
| 3846 | { |
| 3847 | struct iwl_priv *priv = hw->priv; |
| 3848 | const struct iwl_channel_info *ch_info; |
| 3849 | struct ieee80211_conf *conf = &hw->conf; |
Shanyu Zhao | aa2dc6b | 2010-07-28 13:40:39 -0700 | [diff] [blame] | 3850 | struct ieee80211_channel *channel = ch_switch->channel; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3851 | struct iwl_ht_config *ht_conf = &priv->current_ht_config; |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3852 | /* |
| 3853 | * MULTI-FIXME |
| 3854 | * When we add support for multiple interfaces, we need to |
| 3855 | * revisit this. The channel switch command in the device |
| 3856 | * only affects the BSS context, but what does that really |
| 3857 | * mean? And what if we get a CSA on the second interface? |
| 3858 | * This needs a lot of work. |
| 3859 | */ |
| 3860 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3861 | u16 ch; |
| 3862 | unsigned long flags = 0; |
| 3863 | |
| 3864 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
| 3865 | |
| 3866 | if (iwl_is_rfkill(priv)) |
| 3867 | goto out_exit; |
| 3868 | |
| 3869 | if (test_bit(STATUS_EXIT_PENDING, &priv->status) || |
| 3870 | test_bit(STATUS_SCANNING, &priv->status)) |
| 3871 | goto out_exit; |
| 3872 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3873 | if (!iwl_is_associated_ctx(ctx)) |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3874 | goto out_exit; |
| 3875 | |
| 3876 | /* channel switch in progress */ |
| 3877 | if (priv->switch_rxon.switch_in_progress == true) |
| 3878 | goto out_exit; |
| 3879 | |
| 3880 | mutex_lock(&priv->mutex); |
| 3881 | if (priv->cfg->ops->lib->set_channel_switch) { |
| 3882 | |
Shanyu Zhao | aa2dc6b | 2010-07-28 13:40:39 -0700 | [diff] [blame] | 3883 | ch = channel->hw_value; |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3884 | if (le16_to_cpu(ctx->active.channel) != ch) { |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3885 | ch_info = iwl_get_channel_info(priv, |
Shanyu Zhao | aa2dc6b | 2010-07-28 13:40:39 -0700 | [diff] [blame] | 3886 | channel->band, |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3887 | ch); |
| 3888 | if (!is_channel_valid(ch_info)) { |
| 3889 | IWL_DEBUG_MAC80211(priv, "invalid channel\n"); |
| 3890 | goto out; |
| 3891 | } |
| 3892 | spin_lock_irqsave(&priv->lock, flags); |
| 3893 | |
| 3894 | priv->current_ht_config.smps = conf->smps_mode; |
| 3895 | |
| 3896 | /* Configure HT40 channels */ |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 3897 | ctx->ht.enabled = conf_is_ht(conf); |
| 3898 | if (ctx->ht.enabled) { |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3899 | if (conf_is_ht40_minus(conf)) { |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 3900 | ctx->ht.extension_chan_offset = |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3901 | IEEE80211_HT_PARAM_CHA_SEC_BELOW; |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 3902 | ctx->ht.is_40mhz = true; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3903 | } else if (conf_is_ht40_plus(conf)) { |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 3904 | ctx->ht.extension_chan_offset = |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3905 | IEEE80211_HT_PARAM_CHA_SEC_ABOVE; |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 3906 | ctx->ht.is_40mhz = true; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3907 | } else { |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 3908 | ctx->ht.extension_chan_offset = |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3909 | IEEE80211_HT_PARAM_CHA_SEC_NONE; |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 3910 | ctx->ht.is_40mhz = false; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3911 | } |
| 3912 | } else |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 3913 | ctx->ht.is_40mhz = false; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3914 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3915 | if ((le16_to_cpu(ctx->staging.channel) != ch)) |
| 3916 | ctx->staging.flags = 0; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3917 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3918 | iwl_set_rxon_channel(priv, channel, ctx); |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3919 | iwl_set_rxon_ht(priv, ht_conf); |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3920 | iwl_set_flags_for_band(priv, ctx, channel->band, |
Johannes Berg | 8bd413e | 2010-08-23 10:46:40 +0200 | [diff] [blame] | 3921 | ctx->vif); |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3922 | spin_unlock_irqrestore(&priv->lock, flags); |
| 3923 | |
| 3924 | iwl_set_rate(priv); |
| 3925 | /* |
| 3926 | * at this point, staging_rxon has the |
| 3927 | * configuration for channel switch |
| 3928 | */ |
| 3929 | if (priv->cfg->ops->lib->set_channel_switch(priv, |
| 3930 | ch_switch)) |
| 3931 | priv->switch_rxon.switch_in_progress = false; |
| 3932 | } |
| 3933 | } |
| 3934 | out: |
| 3935 | mutex_unlock(&priv->mutex); |
| 3936 | out_exit: |
| 3937 | if (!priv->switch_rxon.switch_in_progress) |
Johannes Berg | 8bd413e | 2010-08-23 10:46:40 +0200 | [diff] [blame] | 3938 | ieee80211_chswitch_done(ctx->vif, false); |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3939 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 3940 | } |
| 3941 | |
Johannes Berg | 8b8ab9d | 2010-08-17 11:24:01 +0200 | [diff] [blame] | 3942 | static void iwlagn_configure_filter(struct ieee80211_hw *hw, |
| 3943 | unsigned int changed_flags, |
| 3944 | unsigned int *total_flags, |
| 3945 | u64 multicast) |
| 3946 | { |
| 3947 | struct iwl_priv *priv = hw->priv; |
| 3948 | __le32 filter_or = 0, filter_nand = 0; |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3949 | struct iwl_rxon_context *ctx; |
Johannes Berg | 8b8ab9d | 2010-08-17 11:24:01 +0200 | [diff] [blame] | 3950 | |
| 3951 | #define CHK(test, flag) do { \ |
| 3952 | if (*total_flags & (test)) \ |
| 3953 | filter_or |= (flag); \ |
| 3954 | else \ |
| 3955 | filter_nand |= (flag); \ |
| 3956 | } while (0) |
| 3957 | |
| 3958 | IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n", |
| 3959 | changed_flags, *total_flags); |
| 3960 | |
| 3961 | CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK); |
| 3962 | CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK); |
| 3963 | CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK); |
| 3964 | |
| 3965 | #undef CHK |
| 3966 | |
| 3967 | mutex_lock(&priv->mutex); |
| 3968 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3969 | for_each_context(priv, ctx) { |
| 3970 | ctx->staging.filter_flags &= ~filter_nand; |
| 3971 | ctx->staging.filter_flags |= filter_or; |
| 3972 | iwlcore_commit_rxon(priv, ctx); |
| 3973 | } |
Johannes Berg | 8b8ab9d | 2010-08-17 11:24:01 +0200 | [diff] [blame] | 3974 | |
| 3975 | mutex_unlock(&priv->mutex); |
| 3976 | |
| 3977 | /* |
| 3978 | * Receiving all multicast frames is always enabled by the |
| 3979 | * default flags setup in iwl_connection_init_rx_config() |
| 3980 | * since we currently do not support programming multicast |
| 3981 | * filters into the device. |
| 3982 | */ |
| 3983 | *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS | |
| 3984 | FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL; |
| 3985 | } |
| 3986 | |
Wey-Yi Guy | 716c74b | 2010-06-24 13:22:36 -0700 | [diff] [blame] | 3987 | static void iwl_mac_flush(struct ieee80211_hw *hw, bool drop) |
| 3988 | { |
| 3989 | struct iwl_priv *priv = hw->priv; |
| 3990 | |
| 3991 | mutex_lock(&priv->mutex); |
| 3992 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
| 3993 | |
| 3994 | /* do not support "flush" */ |
| 3995 | if (!priv->cfg->ops->lib->txfifo_flush) |
| 3996 | goto done; |
| 3997 | |
| 3998 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) { |
| 3999 | IWL_DEBUG_TX(priv, "Aborting flush due to device shutdown\n"); |
| 4000 | goto done; |
| 4001 | } |
| 4002 | if (iwl_is_rfkill(priv)) { |
| 4003 | IWL_DEBUG_TX(priv, "Aborting flush due to RF Kill\n"); |
| 4004 | goto done; |
| 4005 | } |
| 4006 | |
| 4007 | /* |
| 4008 | * mac80211 will not push any more frames for transmit |
| 4009 | * until the flush is completed |
| 4010 | */ |
| 4011 | if (drop) { |
| 4012 | IWL_DEBUG_MAC80211(priv, "send flush command\n"); |
| 4013 | if (priv->cfg->ops->lib->txfifo_flush(priv, IWL_DROP_ALL)) { |
| 4014 | IWL_ERR(priv, "flush request fail\n"); |
| 4015 | goto done; |
| 4016 | } |
| 4017 | } |
| 4018 | IWL_DEBUG_MAC80211(priv, "wait transmit/flush all frames\n"); |
| 4019 | iwlagn_wait_tx_queue_empty(priv); |
| 4020 | done: |
| 4021 | mutex_unlock(&priv->mutex); |
| 4022 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 4023 | } |
| 4024 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4025 | /***************************************************************************** |
| 4026 | * |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4027 | * driver setup and teardown |
| 4028 | * |
| 4029 | *****************************************************************************/ |
| 4030 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 4031 | static void iwl_setup_deferred_work(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4032 | { |
Reinette Chatre | d21050c | 2009-02-13 11:51:18 -0800 | [diff] [blame] | 4033 | priv->workqueue = create_singlethread_workqueue(DRV_NAME); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4034 | |
| 4035 | init_waitqueue_head(&priv->wait_command_queue); |
| 4036 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4037 | INIT_WORK(&priv->restart, iwl_bg_restart); |
| 4038 | INIT_WORK(&priv->rx_replenish, iwl_bg_rx_replenish); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4039 | INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update); |
Emmanuel Grumbach | 16e727e | 2008-06-12 09:46:52 +0800 | [diff] [blame] | 4040 | INIT_WORK(&priv->run_time_calib_work, iwl_bg_run_time_calib_work); |
Wey-Yi Guy | 6555063 | 2010-06-24 13:18:35 -0700 | [diff] [blame] | 4041 | INIT_WORK(&priv->tx_flush, iwl_bg_tx_flush); |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 4042 | INIT_WORK(&priv->bt_full_concurrency, iwl_bg_bt_full_concurrency); |
Wey-Yi Guy | fbba941 | 2010-08-23 07:57:10 -0700 | [diff] [blame] | 4043 | INIT_WORK(&priv->bt_runtime_config, iwl_bg_bt_runtime_config); |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 4044 | INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start); |
| 4045 | INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start); |
Tomas Winkler | 2a421b9 | 2008-06-12 09:47:10 +0800 | [diff] [blame] | 4046 | |
Tomas Winkler | 2a421b9 | 2008-06-12 09:47:10 +0800 | [diff] [blame] | 4047 | iwl_setup_scan_deferred_work(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4048 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 4049 | if (priv->cfg->ops->lib->setup_deferred_work) |
| 4050 | priv->cfg->ops->lib->setup_deferred_work(priv); |
| 4051 | |
| 4052 | init_timer(&priv->statistics_periodic); |
| 4053 | priv->statistics_periodic.data = (unsigned long)priv; |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4054 | priv->statistics_periodic.function = iwl_bg_statistics_periodic; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4055 | |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 4056 | init_timer(&priv->ucode_trace); |
| 4057 | priv->ucode_trace.data = (unsigned long)priv; |
| 4058 | priv->ucode_trace.function = iwl_bg_ucode_trace; |
| 4059 | |
Wey-Yi Guy | b74e31a | 2010-03-01 17:23:50 -0800 | [diff] [blame] | 4060 | if (priv->cfg->ops->lib->recover_from_tx_stall) { |
| 4061 | init_timer(&priv->monitor_recover); |
| 4062 | priv->monitor_recover.data = (unsigned long)priv; |
| 4063 | priv->monitor_recover.function = |
| 4064 | priv->cfg->ops->lib->recover_from_tx_stall; |
| 4065 | } |
| 4066 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 4067 | if (!priv->cfg->use_isr_legacy) |
| 4068 | tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long)) |
| 4069 | iwl_irq_tasklet, (unsigned long)priv); |
| 4070 | else |
| 4071 | tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long)) |
| 4072 | iwl_irq_tasklet_legacy, (unsigned long)priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4073 | } |
| 4074 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 4075 | static void iwl_cancel_deferred_work(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4076 | { |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 4077 | if (priv->cfg->ops->lib->cancel_deferred_work) |
| 4078 | priv->cfg->ops->lib->cancel_deferred_work(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4079 | |
Joonwoo Park | 3ae6a05 | 2007-11-29 10:43:16 +0900 | [diff] [blame] | 4080 | cancel_delayed_work_sync(&priv->init_alive_start); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4081 | cancel_delayed_work(&priv->scan_check); |
Johannes Berg | 88be026 | 2010-04-07 00:21:36 -0700 | [diff] [blame] | 4082 | cancel_work_sync(&priv->start_internal_scan); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4083 | cancel_delayed_work(&priv->alive_start); |
Wey-Yi Guy | 815e629 | 2010-06-03 10:14:01 -0700 | [diff] [blame] | 4084 | cancel_work_sync(&priv->run_time_calib_work); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4085 | cancel_work_sync(&priv->beacon_update); |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 4086 | cancel_work_sync(&priv->bt_full_concurrency); |
Wey-Yi Guy | fbba941 | 2010-08-23 07:57:10 -0700 | [diff] [blame] | 4087 | cancel_work_sync(&priv->bt_runtime_config); |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 4088 | del_timer_sync(&priv->statistics_periodic); |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 4089 | del_timer_sync(&priv->ucode_trace); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4090 | } |
| 4091 | |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 4092 | static void iwl_init_hw_rates(struct iwl_priv *priv, |
| 4093 | struct ieee80211_rate *rates) |
| 4094 | { |
| 4095 | int i; |
| 4096 | |
| 4097 | for (i = 0; i < IWL_RATE_COUNT_LEGACY; i++) { |
| 4098 | rates[i].bitrate = iwl_rates[i].ieee * 5; |
| 4099 | rates[i].hw_value = i; /* Rate scaling will work on indexes */ |
| 4100 | rates[i].hw_value_short = i; |
| 4101 | rates[i].flags = 0; |
| 4102 | if ((i >= IWL_FIRST_CCK_RATE) && (i <= IWL_LAST_CCK_RATE)) { |
| 4103 | /* |
| 4104 | * If CCK != 1M then set short preamble rate flag. |
| 4105 | */ |
| 4106 | rates[i].flags |= |
| 4107 | (iwl_rates[i].plcp == IWL_RATE_1M_PLCP) ? |
| 4108 | 0 : IEEE80211_RATE_SHORT_PREAMBLE; |
| 4109 | } |
| 4110 | } |
| 4111 | } |
| 4112 | |
| 4113 | static int iwl_init_drv(struct iwl_priv *priv) |
| 4114 | { |
| 4115 | int ret; |
| 4116 | |
| 4117 | priv->ibss_beacon = NULL; |
| 4118 | |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 4119 | spin_lock_init(&priv->sta_lock); |
| 4120 | spin_lock_init(&priv->hcmd_lock); |
| 4121 | |
| 4122 | INIT_LIST_HEAD(&priv->free_frames); |
| 4123 | |
| 4124 | mutex_init(&priv->mutex); |
Reinette Chatre | d2dfe6d | 2010-02-18 22:03:04 -0800 | [diff] [blame] | 4125 | mutex_init(&priv->sync_cmd_mutex); |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 4126 | |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 4127 | priv->ieee_channels = NULL; |
| 4128 | priv->ieee_rates = NULL; |
| 4129 | priv->band = IEEE80211_BAND_2GHZ; |
| 4130 | |
| 4131 | priv->iw_mode = NL80211_IFTYPE_STATION; |
Johannes Berg | ba37a3d | 2009-12-10 14:37:27 -0800 | [diff] [blame] | 4132 | priv->current_ht_config.smps = IEEE80211_SMPS_STATIC; |
Wey-Yi Guy | a13d276 | 2010-01-22 14:22:42 -0800 | [diff] [blame] | 4133 | priv->missed_beacon_threshold = IWL_MISSED_BEACON_THRESHOLD_DEF; |
Wey-Yi Guy | d5a0ffa | 2010-03-04 13:38:59 -0800 | [diff] [blame] | 4134 | priv->_agn.agg_tids_count = 0; |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 4135 | |
Wey-Yi Guy | 8a472da | 2010-02-18 22:03:06 -0800 | [diff] [blame] | 4136 | /* initialize force reset */ |
| 4137 | priv->force_reset[IWL_RF_RESET].reset_duration = |
| 4138 | IWL_DELAY_NEXT_FORCE_RF_RESET; |
| 4139 | priv->force_reset[IWL_FW_RESET].reset_duration = |
| 4140 | IWL_DELAY_NEXT_FORCE_FW_RELOAD; |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 4141 | |
| 4142 | /* Choose which receivers/antennas to use */ |
| 4143 | if (priv->cfg->ops->hcmd->set_rxon_chain) |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 4144 | priv->cfg->ops->hcmd->set_rxon_chain(priv, |
| 4145 | &priv->contexts[IWL_RXON_CTX_BSS]); |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 4146 | |
| 4147 | iwl_init_scan_params(priv); |
| 4148 | |
Wey-Yi Guy | 22bf59a | 2010-08-23 07:57:11 -0700 | [diff] [blame] | 4149 | /* init bt coex */ |
| 4150 | if (priv->cfg->advanced_bt_coexist) { |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 4151 | priv->kill_ack_mask = IWLAGN_BT_KILL_ACK_MASK_DEFAULT; |
| 4152 | priv->kill_cts_mask = IWLAGN_BT_KILL_CTS_MASK_DEFAULT; |
| 4153 | priv->bt_valid = IWLAGN_BT_ALL_VALID_MSK; |
Wey-Yi Guy | 22bf59a | 2010-08-23 07:57:11 -0700 | [diff] [blame] | 4154 | priv->bt_on_thresh = BT_ON_THRESHOLD_DEF; |
| 4155 | priv->bt_duration = BT_DURATION_LIMIT_DEF; |
| 4156 | priv->dynamic_frag_thresh = BT_FRAG_THRESHOLD_DEF; |
| 4157 | priv->dynamic_agg_thresh = BT_AGG_THRESHOLD_DEF; |
| 4158 | } |
| 4159 | |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 4160 | /* Set the tx_power_user_lmt to the lowest power level |
| 4161 | * this value will get overwritten by channel max power avg |
| 4162 | * from eeprom */ |
Wey-Yi Guy | b744cb7 | 2010-03-23 11:37:59 -0700 | [diff] [blame] | 4163 | priv->tx_power_user_lmt = IWLAGN_TX_POWER_TARGET_POWER_MIN; |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 4164 | |
| 4165 | ret = iwl_init_channel_map(priv); |
| 4166 | if (ret) { |
| 4167 | IWL_ERR(priv, "initializing regulatory failed: %d\n", ret); |
| 4168 | goto err; |
| 4169 | } |
| 4170 | |
| 4171 | ret = iwlcore_init_geos(priv); |
| 4172 | if (ret) { |
| 4173 | IWL_ERR(priv, "initializing geos failed: %d\n", ret); |
| 4174 | goto err_free_channel_map; |
| 4175 | } |
| 4176 | iwl_init_hw_rates(priv, priv->ieee_rates); |
| 4177 | |
| 4178 | return 0; |
| 4179 | |
| 4180 | err_free_channel_map: |
| 4181 | iwl_free_channel_map(priv); |
| 4182 | err: |
| 4183 | return ret; |
| 4184 | } |
| 4185 | |
| 4186 | static void iwl_uninit_drv(struct iwl_priv *priv) |
| 4187 | { |
| 4188 | iwl_calib_free_results(priv); |
| 4189 | iwlcore_free_geos(priv); |
| 4190 | iwl_free_channel_map(priv); |
Johannes Berg | 811ecc9 | 2010-04-06 04:12:41 -0700 | [diff] [blame] | 4191 | kfree(priv->scan_cmd); |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 4192 | } |
| 4193 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4194 | static struct ieee80211_ops iwl_hw_ops = { |
| 4195 | .tx = iwl_mac_tx, |
| 4196 | .start = iwl_mac_start, |
| 4197 | .stop = iwl_mac_stop, |
| 4198 | .add_interface = iwl_mac_add_interface, |
| 4199 | .remove_interface = iwl_mac_remove_interface, |
| 4200 | .config = iwl_mac_config, |
Johannes Berg | 8b8ab9d | 2010-08-17 11:24:01 +0200 | [diff] [blame] | 4201 | .configure_filter = iwlagn_configure_filter, |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4202 | .set_key = iwl_mac_set_key, |
| 4203 | .update_tkip_key = iwl_mac_update_tkip_key, |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4204 | .conf_tx = iwl_mac_conf_tx, |
| 4205 | .reset_tsf = iwl_mac_reset_tsf, |
| 4206 | .bss_info_changed = iwl_bss_info_changed, |
| 4207 | .ampdu_action = iwl_mac_ampdu_action, |
Johannes Berg | 6ab10ff | 2009-11-13 11:56:37 -0800 | [diff] [blame] | 4208 | .hw_scan = iwl_mac_hw_scan, |
| 4209 | .sta_notify = iwl_mac_sta_notify, |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 4210 | .sta_add = iwlagn_mac_sta_add, |
| 4211 | .sta_remove = iwl_mac_sta_remove, |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 4212 | .channel_switch = iwl_mac_channel_switch, |
Wey-Yi Guy | 716c74b | 2010-06-24 13:22:36 -0700 | [diff] [blame] | 4213 | .flush = iwl_mac_flush, |
Johannes Berg | a85d7cc | 2010-07-31 08:34:10 -0700 | [diff] [blame] | 4214 | .tx_last_beacon = iwl_mac_tx_last_beacon, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4215 | }; |
| 4216 | |
Wey-Yi Guy | 3867fe0 | 2010-07-31 08:34:05 -0700 | [diff] [blame] | 4217 | static void iwl_hw_detect(struct iwl_priv *priv) |
| 4218 | { |
| 4219 | priv->hw_rev = _iwl_read32(priv, CSR_HW_REV); |
| 4220 | priv->hw_wa_rev = _iwl_read32(priv, CSR_HW_REV_WA_REG); |
| 4221 | pci_read_config_byte(priv->pci_dev, PCI_REVISION_ID, &priv->rev_id); |
Wey-Yi Guy | 49ded76 | 2010-07-31 08:34:06 -0700 | [diff] [blame] | 4222 | IWL_DEBUG_INFO(priv, "HW Revision ID = 0x%X\n", priv->rev_id); |
Wey-Yi Guy | 3867fe0 | 2010-07-31 08:34:05 -0700 | [diff] [blame] | 4223 | } |
| 4224 | |
Wey-Yi Guy | 07d4f1a | 2010-07-31 08:34:08 -0700 | [diff] [blame] | 4225 | static int iwl_set_hw_params(struct iwl_priv *priv) |
| 4226 | { |
| 4227 | priv->hw_params.max_rxq_size = RX_QUEUE_SIZE; |
| 4228 | priv->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG; |
| 4229 | if (priv->cfg->mod_params->amsdu_size_8K) |
| 4230 | priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_8K); |
| 4231 | else |
| 4232 | priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_4K); |
| 4233 | |
| 4234 | priv->hw_params.max_beacon_itrvl = IWL_MAX_UCODE_BEACON_INTERVAL; |
| 4235 | |
| 4236 | if (priv->cfg->mod_params->disable_11n) |
| 4237 | priv->cfg->sku &= ~IWL_SKU_N; |
| 4238 | |
| 4239 | /* Device-specific setup */ |
| 4240 | return priv->cfg->ops->lib->set_hw_params(priv); |
| 4241 | } |
| 4242 | |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 4243 | static const u8 iwlagn_bss_ac_to_fifo[] = { |
| 4244 | IWL_TX_FIFO_VO, |
| 4245 | IWL_TX_FIFO_VI, |
| 4246 | IWL_TX_FIFO_BE, |
| 4247 | IWL_TX_FIFO_BK, |
| 4248 | }; |
| 4249 | |
| 4250 | static const u8 iwlagn_bss_ac_to_queue[] = { |
| 4251 | 0, 1, 2, 3, |
| 4252 | }; |
| 4253 | |
| 4254 | static const u8 iwlagn_pan_ac_to_fifo[] = { |
| 4255 | IWL_TX_FIFO_VO_IPAN, |
| 4256 | IWL_TX_FIFO_VI_IPAN, |
| 4257 | IWL_TX_FIFO_BE_IPAN, |
| 4258 | IWL_TX_FIFO_BK_IPAN, |
| 4259 | }; |
| 4260 | |
| 4261 | static const u8 iwlagn_pan_ac_to_queue[] = { |
| 4262 | 7, 6, 5, 4, |
| 4263 | }; |
| 4264 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4265 | static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4266 | { |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 4267 | int err = 0, i; |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 4268 | struct iwl_priv *priv; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4269 | struct ieee80211_hw *hw; |
Tomas Winkler | 82b9a12 | 2008-03-04 18:09:30 -0800 | [diff] [blame] | 4270 | struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data); |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 4271 | unsigned long flags; |
Wey-Yi Guy | c6fa17e | 2010-07-15 05:58:30 -0700 | [diff] [blame] | 4272 | u16 pci_cmd, num_mac; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4273 | |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4274 | /************************ |
| 4275 | * 1. Allocating HW data |
| 4276 | ************************/ |
| 4277 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 4278 | /* Disabling hardware scan means that mac80211 will perform scans |
| 4279 | * "the hard way", rather than using device's scan. */ |
Assaf Krauss | 1ea8739 | 2008-03-18 14:57:50 -0700 | [diff] [blame] | 4280 | if (cfg->mod_params->disable_hw_scan) { |
Reinette Chatre | a562a9d | 2009-07-17 09:30:24 -0700 | [diff] [blame] | 4281 | if (iwl_debug_level & IWL_DL_INFO) |
Ester Kummer | bf403db | 2008-05-05 10:22:40 +0800 | [diff] [blame] | 4282 | dev_printk(KERN_DEBUG, &(pdev->dev), |
| 4283 | "Disabling hw_scan\n"); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4284 | iwl_hw_ops.hw_scan = NULL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4285 | } |
| 4286 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4287 | hw = iwl_alloc_all(cfg, &iwl_hw_ops); |
Assaf Krauss | 1d0a082 | 2008-03-14 10:38:48 -0700 | [diff] [blame] | 4288 | if (!hw) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4289 | err = -ENOMEM; |
| 4290 | goto out; |
| 4291 | } |
Assaf Krauss | 1d0a082 | 2008-03-14 10:38:48 -0700 | [diff] [blame] | 4292 | priv = hw->priv; |
| 4293 | /* At this point both hw and priv are allocated. */ |
| 4294 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 4295 | /* |
| 4296 | * The default context is always valid, |
| 4297 | * more may be discovered when firmware |
| 4298 | * is loaded. |
| 4299 | */ |
| 4300 | priv->valid_contexts = BIT(IWL_RXON_CTX_BSS); |
| 4301 | |
| 4302 | for (i = 0; i < NUM_IWL_RXON_CTX; i++) |
| 4303 | priv->contexts[i].ctxid = i; |
| 4304 | |
Johannes Berg | 8f2d3d2 | 2010-08-23 10:46:37 +0200 | [diff] [blame] | 4305 | priv->contexts[IWL_RXON_CTX_BSS].rxon_cmd = REPLY_RXON; |
| 4306 | priv->contexts[IWL_RXON_CTX_BSS].rxon_timing_cmd = REPLY_RXON_TIMING; |
| 4307 | priv->contexts[IWL_RXON_CTX_BSS].rxon_assoc_cmd = REPLY_RXON_ASSOC; |
Johannes Berg | 8dfdb9d | 2010-08-23 10:46:38 +0200 | [diff] [blame] | 4308 | priv->contexts[IWL_RXON_CTX_BSS].qos_cmd = REPLY_QOS_PARAM; |
Johannes Berg | 2995baf | 2010-08-23 10:46:42 +0200 | [diff] [blame] | 4309 | priv->contexts[IWL_RXON_CTX_BSS].ap_sta_id = IWL_AP_ID; |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 4310 | priv->contexts[IWL_RXON_CTX_BSS].wep_key_cmd = REPLY_WEPKEY; |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 4311 | priv->contexts[IWL_RXON_CTX_BSS].ac_to_fifo = iwlagn_bss_ac_to_fifo; |
| 4312 | priv->contexts[IWL_RXON_CTX_BSS].ac_to_queue = iwlagn_bss_ac_to_queue; |
Johannes Berg | d0fe478 | 2010-08-23 10:46:58 +0200 | [diff] [blame] | 4313 | priv->contexts[IWL_RXON_CTX_BSS].exclusive_interface_modes = |
| 4314 | BIT(NL80211_IFTYPE_ADHOC); |
| 4315 | priv->contexts[IWL_RXON_CTX_BSS].interface_modes = |
| 4316 | BIT(NL80211_IFTYPE_STATION); |
| 4317 | priv->contexts[IWL_RXON_CTX_BSS].ibss_devtype = RXON_DEV_TYPE_IBSS; |
| 4318 | priv->contexts[IWL_RXON_CTX_BSS].station_devtype = RXON_DEV_TYPE_ESS; |
| 4319 | priv->contexts[IWL_RXON_CTX_BSS].unused_devtype = RXON_DEV_TYPE_ESS; |
Johannes Berg | ece9c4e | 2010-08-23 10:46:49 +0200 | [diff] [blame] | 4320 | |
| 4321 | priv->contexts[IWL_RXON_CTX_PAN].rxon_cmd = REPLY_WIPAN_RXON; |
| 4322 | priv->contexts[IWL_RXON_CTX_PAN].rxon_timing_cmd = REPLY_WIPAN_RXON_TIMING; |
| 4323 | priv->contexts[IWL_RXON_CTX_PAN].rxon_assoc_cmd = REPLY_WIPAN_RXON_ASSOC; |
| 4324 | priv->contexts[IWL_RXON_CTX_PAN].qos_cmd = REPLY_WIPAN_QOS_PARAM; |
| 4325 | priv->contexts[IWL_RXON_CTX_PAN].ap_sta_id = IWL_AP_ID_PAN; |
| 4326 | priv->contexts[IWL_RXON_CTX_PAN].wep_key_cmd = REPLY_WIPAN_WEPKEY; |
| 4327 | priv->contexts[IWL_RXON_CTX_PAN].bcast_sta_id = IWLAGN_PAN_BCAST_ID; |
| 4328 | priv->contexts[IWL_RXON_CTX_PAN].station_flags = STA_FLG_PAN_STATION; |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 4329 | priv->contexts[IWL_RXON_CTX_PAN].ac_to_fifo = iwlagn_pan_ac_to_fifo; |
| 4330 | priv->contexts[IWL_RXON_CTX_PAN].ac_to_queue = iwlagn_pan_ac_to_queue; |
| 4331 | priv->contexts[IWL_RXON_CTX_PAN].mcast_queue = IWL_IPAN_MCAST_QUEUE; |
Johannes Berg | d0fe478 | 2010-08-23 10:46:58 +0200 | [diff] [blame] | 4332 | priv->contexts[IWL_RXON_CTX_PAN].interface_modes = |
| 4333 | BIT(NL80211_IFTYPE_STATION) | BIT(NL80211_IFTYPE_AP); |
| 4334 | priv->contexts[IWL_RXON_CTX_PAN].ap_devtype = RXON_DEV_TYPE_CP; |
| 4335 | priv->contexts[IWL_RXON_CTX_PAN].station_devtype = RXON_DEV_TYPE_2STA; |
| 4336 | priv->contexts[IWL_RXON_CTX_PAN].unused_devtype = RXON_DEV_TYPE_P2P; |
Johannes Berg | ece9c4e | 2010-08-23 10:46:49 +0200 | [diff] [blame] | 4337 | |
| 4338 | BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2); |
Johannes Berg | 8f2d3d2 | 2010-08-23 10:46:37 +0200 | [diff] [blame] | 4339 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4340 | SET_IEEE80211_DEV(hw, &pdev->dev); |
| 4341 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 4342 | IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n"); |
Tomas Winkler | 82b9a12 | 2008-03-04 18:09:30 -0800 | [diff] [blame] | 4343 | priv->cfg = cfg; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4344 | priv->pci_dev = pdev; |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 4345 | priv->inta_mask = CSR_INI_SET_MASK; |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4346 | |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 4347 | /* is antenna coupling more than 35dB ? */ |
| 4348 | priv->bt_ant_couple_ok = |
| 4349 | (iwlagn_ant_coupling > IWL_BT_ANTENNA_COUPLING_THRESHOLD) ? |
| 4350 | true : false; |
| 4351 | |
Wey-Yi Guy | f37837c | 2010-08-23 07:57:12 -0700 | [diff] [blame] | 4352 | /* enable/disable bt channel announcement */ |
| 4353 | priv->bt_ch_announce = iwlagn_bt_ch_announce; |
| 4354 | |
Wey-Yi Guy | 20594eb | 2009-08-07 15:41:39 -0700 | [diff] [blame] | 4355 | if (iwl_alloc_traffic_mem(priv)) |
| 4356 | IWL_ERR(priv, "Not enough memory to generate traffic log\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4357 | |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4358 | /************************** |
| 4359 | * 2. Initializing PCI bus |
| 4360 | **************************/ |
John W. Linville | 1a7123c | 2010-08-05 14:39:31 -0400 | [diff] [blame] | 4361 | pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 | |
| 4362 | PCIE_LINK_STATE_CLKPM); |
| 4363 | |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4364 | if (pci_enable_device(pdev)) { |
| 4365 | err = -ENODEV; |
| 4366 | goto out_ieee80211_free_hw; |
| 4367 | } |
| 4368 | |
| 4369 | pci_set_master(pdev); |
| 4370 | |
Winkler, Tomas | 093d874c | 2008-09-26 15:09:34 +0800 | [diff] [blame] | 4371 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36)); |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4372 | if (!err) |
Winkler, Tomas | 093d874c | 2008-09-26 15:09:34 +0800 | [diff] [blame] | 4373 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36)); |
Ron Rindjunsky | cc2a8ea | 2008-04-21 15:41:59 -0700 | [diff] [blame] | 4374 | if (err) { |
Winkler, Tomas | 093d874c | 2008-09-26 15:09:34 +0800 | [diff] [blame] | 4375 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
Ron Rindjunsky | cc2a8ea | 2008-04-21 15:41:59 -0700 | [diff] [blame] | 4376 | if (!err) |
Winkler, Tomas | 093d874c | 2008-09-26 15:09:34 +0800 | [diff] [blame] | 4377 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
Ron Rindjunsky | cc2a8ea | 2008-04-21 15:41:59 -0700 | [diff] [blame] | 4378 | /* both attempts failed: */ |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4379 | if (err) { |
Tomas Winkler | 978785a | 2008-12-19 10:37:31 +0800 | [diff] [blame] | 4380 | IWL_WARN(priv, "No suitable DMA available.\n"); |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4381 | goto out_pci_disable_device; |
Ron Rindjunsky | cc2a8ea | 2008-04-21 15:41:59 -0700 | [diff] [blame] | 4382 | } |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4383 | } |
| 4384 | |
| 4385 | err = pci_request_regions(pdev, DRV_NAME); |
| 4386 | if (err) |
| 4387 | goto out_pci_disable_device; |
| 4388 | |
| 4389 | pci_set_drvdata(pdev, priv); |
| 4390 | |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4391 | |
| 4392 | /*********************** |
| 4393 | * 3. Read REV register |
| 4394 | ***********************/ |
| 4395 | priv->hw_base = pci_iomap(pdev, 0, 0); |
| 4396 | if (!priv->hw_base) { |
| 4397 | err = -ENODEV; |
| 4398 | goto out_pci_release_regions; |
| 4399 | } |
| 4400 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 4401 | IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n", |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4402 | (unsigned long long) pci_resource_len(pdev, 0)); |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 4403 | IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base); |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4404 | |
Reinette Chatre | 731a29b | 2009-12-14 14:12:11 -0800 | [diff] [blame] | 4405 | /* these spin locks will be used in apm_ops.init and EEPROM access |
Mohamed Abbas | a8b50a0 | 2009-05-22 11:01:47 -0700 | [diff] [blame] | 4406 | * we should init now |
| 4407 | */ |
| 4408 | spin_lock_init(&priv->reg_lock); |
Reinette Chatre | 731a29b | 2009-12-14 14:12:11 -0800 | [diff] [blame] | 4409 | spin_lock_init(&priv->lock); |
Reinette Chatre | 4843b5a | 2010-02-03 09:38:59 -0800 | [diff] [blame] | 4410 | |
| 4411 | /* |
| 4412 | * stop and reset the on-board processor just in case it is in a |
| 4413 | * strange state ... like being left stranded by a primary kernel |
| 4414 | * and this is now the kdump kernel trying to start up |
| 4415 | */ |
| 4416 | iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET); |
| 4417 | |
Tomas Winkler | b661c81 | 2008-04-23 17:14:54 -0700 | [diff] [blame] | 4418 | iwl_hw_detect(priv); |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 4419 | IWL_INFO(priv, "Detected %s, REV=0x%X\n", |
Tomas Winkler | b661c81 | 2008-04-23 17:14:54 -0700 | [diff] [blame] | 4420 | priv->cfg->name, priv->hw_rev); |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4421 | |
Tomas Winkler | e7b6358 | 2008-09-03 11:26:49 +0800 | [diff] [blame] | 4422 | /* We disable the RETRY_TIMEOUT register (0x41) to keep |
| 4423 | * PCI Tx retries from interfering with C3 CPU state */ |
| 4424 | pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00); |
| 4425 | |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 4426 | iwl_prepare_card_hw(priv); |
| 4427 | if (!priv->hw_ready) { |
| 4428 | IWL_WARN(priv, "Failed, HW not ready\n"); |
| 4429 | goto out_iounmap; |
| 4430 | } |
| 4431 | |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4432 | /***************** |
| 4433 | * 4. Read EEPROM |
| 4434 | *****************/ |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4435 | /* Read the EEPROM */ |
| 4436 | err = iwl_eeprom_init(priv); |
| 4437 | if (err) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 4438 | IWL_ERR(priv, "Unable to init EEPROM\n"); |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4439 | goto out_iounmap; |
| 4440 | } |
Tomas Winkler | 8614f36 | 2008-04-23 17:14:55 -0700 | [diff] [blame] | 4441 | err = iwl_eeprom_check_version(priv); |
| 4442 | if (err) |
Reinette Chatre | c8f1613 | 2009-02-27 16:21:22 -0800 | [diff] [blame] | 4443 | goto out_free_eeprom; |
Tomas Winkler | 8614f36 | 2008-04-23 17:14:55 -0700 | [diff] [blame] | 4444 | |
Ron Rindjunsky | 0288301 | 2008-05-15 13:53:53 +0800 | [diff] [blame] | 4445 | /* extract MAC Address */ |
Wey-Yi Guy | c6fa17e | 2010-07-15 05:58:30 -0700 | [diff] [blame] | 4446 | iwl_eeprom_get_mac(priv, priv->addresses[0].addr); |
| 4447 | IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->addresses[0].addr); |
| 4448 | priv->hw->wiphy->addresses = priv->addresses; |
| 4449 | priv->hw->wiphy->n_addresses = 1; |
| 4450 | num_mac = iwl_eeprom_query16(priv, EEPROM_NUM_MAC_ADDRESS); |
| 4451 | if (num_mac > 1) { |
| 4452 | memcpy(priv->addresses[1].addr, priv->addresses[0].addr, |
| 4453 | ETH_ALEN); |
| 4454 | priv->addresses[1].addr[5]++; |
| 4455 | priv->hw->wiphy->n_addresses++; |
| 4456 | } |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4457 | |
| 4458 | /************************ |
| 4459 | * 5. Setup HW constants |
| 4460 | ************************/ |
Ron Rindjunsky | da154e30 | 2008-06-30 17:23:20 +0800 | [diff] [blame] | 4461 | if (iwl_set_hw_params(priv)) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 4462 | IWL_ERR(priv, "failed to set hw parameters\n"); |
Tomas Winkler | 073d3f5 | 2008-04-21 15:41:52 -0700 | [diff] [blame] | 4463 | goto out_free_eeprom; |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4464 | } |
| 4465 | |
| 4466 | /******************* |
Tomas Winkler | 6ba8795 | 2008-05-15 13:54:17 +0800 | [diff] [blame] | 4467 | * 6. Setup priv |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4468 | *******************/ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4469 | |
Tomas Winkler | 6ba8795 | 2008-05-15 13:54:17 +0800 | [diff] [blame] | 4470 | err = iwl_init_drv(priv); |
Assaf Krauss | bf85ea4 | 2008-03-14 10:38:49 -0700 | [diff] [blame] | 4471 | if (err) |
Ron Rindjunsky | 399f490 | 2008-04-23 17:14:56 -0700 | [diff] [blame] | 4472 | goto out_free_eeprom; |
Assaf Krauss | bf85ea4 | 2008-03-14 10:38:49 -0700 | [diff] [blame] | 4473 | /* At this point both hw and priv are initialized. */ |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4474 | |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4475 | /******************** |
Abhijeet Kolekar | 09f9bf7 | 2009-04-20 14:37:03 -0700 | [diff] [blame] | 4476 | * 7. Setup services |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4477 | ********************/ |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 4478 | spin_lock_irqsave(&priv->lock, flags); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4479 | iwl_disable_interrupts(priv); |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 4480 | spin_unlock_irqrestore(&priv->lock, flags); |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4481 | |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 4482 | pci_enable_msi(priv->pci_dev); |
| 4483 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 4484 | iwl_alloc_isr_ict(priv); |
| 4485 | err = request_irq(priv->pci_dev->irq, priv->cfg->ops->lib->isr, |
| 4486 | IRQF_SHARED, DRV_NAME, priv); |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 4487 | if (err) { |
| 4488 | IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq); |
| 4489 | goto out_disable_msi; |
| 4490 | } |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4491 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 4492 | iwl_setup_deferred_work(priv); |
Emmanuel Grumbach | 653fa4a | 2008-06-30 17:23:11 +0800 | [diff] [blame] | 4493 | iwl_setup_rx_handlers(priv); |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4494 | |
Johannes Berg | 158bea0 | 2010-01-22 14:22:53 -0800 | [diff] [blame] | 4495 | /********************************************* |
| 4496 | * 8. Enable interrupts and read RFKILL state |
| 4497 | *********************************************/ |
Tomas Winkler | 6ba8795 | 2008-05-15 13:54:17 +0800 | [diff] [blame] | 4498 | |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 4499 | /* enable interrupts if needed: hw bug w/a */ |
| 4500 | pci_read_config_word(priv->pci_dev, PCI_COMMAND, &pci_cmd); |
| 4501 | if (pci_cmd & PCI_COMMAND_INTX_DISABLE) { |
| 4502 | pci_cmd &= ~PCI_COMMAND_INTX_DISABLE; |
| 4503 | pci_write_config_word(priv->pci_dev, PCI_COMMAND, pci_cmd); |
| 4504 | } |
| 4505 | |
| 4506 | iwl_enable_interrupts(priv); |
| 4507 | |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 4508 | /* If platform's RF_KILL switch is NOT set to KILL */ |
| 4509 | if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW) |
| 4510 | clear_bit(STATUS_RF_KILL_HW, &priv->status); |
| 4511 | else |
| 4512 | set_bit(STATUS_RF_KILL_HW, &priv->status); |
Tomas Winkler | 6ba8795 | 2008-05-15 13:54:17 +0800 | [diff] [blame] | 4513 | |
Johannes Berg | a60e77e | 2009-06-04 18:26:06 +0200 | [diff] [blame] | 4514 | wiphy_rfkill_set_hw_state(priv->hw->wiphy, |
| 4515 | test_bit(STATUS_RF_KILL_HW, &priv->status)); |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 4516 | |
Emmanuel Grumbach | 58d0f36 | 2008-06-12 09:47:19 +0800 | [diff] [blame] | 4517 | iwl_power_initialize(priv); |
Wey-Yi Guy | 39b73fb1 | 2009-07-24 11:13:02 -0700 | [diff] [blame] | 4518 | iwl_tt_initialize(priv); |
Johannes Berg | 158bea0 | 2010-01-22 14:22:53 -0800 | [diff] [blame] | 4519 | |
Reinette Chatre | a15707d | 2010-05-10 15:08:11 -0700 | [diff] [blame] | 4520 | init_completion(&priv->_agn.firmware_loading_complete); |
Johannes Berg | 562db53 | 2010-04-29 07:41:53 -0700 | [diff] [blame] | 4521 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 4522 | err = iwl_request_firmware(priv, true); |
Johannes Berg | 158bea0 | 2010-01-22 14:22:53 -0800 | [diff] [blame] | 4523 | if (err) |
Emmanuel Grumbach | 7d47618 | 2010-05-23 00:14:08 -0700 | [diff] [blame] | 4524 | goto out_destroy_workqueue; |
Johannes Berg | 158bea0 | 2010-01-22 14:22:53 -0800 | [diff] [blame] | 4525 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4526 | return 0; |
| 4527 | |
Emmanuel Grumbach | 7d47618 | 2010-05-23 00:14:08 -0700 | [diff] [blame] | 4528 | out_destroy_workqueue: |
Reinette Chatre | c8f1613 | 2009-02-27 16:21:22 -0800 | [diff] [blame] | 4529 | destroy_workqueue(priv->workqueue); |
| 4530 | priv->workqueue = NULL; |
Helmut Schaa | 795cc0a | 2009-02-12 18:51:03 +0100 | [diff] [blame] | 4531 | free_irq(priv->pci_dev->irq, priv); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 4532 | iwl_free_isr_ict(priv); |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 4533 | out_disable_msi: |
| 4534 | pci_disable_msi(priv->pci_dev); |
Tomas Winkler | 6ba8795 | 2008-05-15 13:54:17 +0800 | [diff] [blame] | 4535 | iwl_uninit_drv(priv); |
Tomas Winkler | 073d3f5 | 2008-04-21 15:41:52 -0700 | [diff] [blame] | 4536 | out_free_eeprom: |
| 4537 | iwl_eeprom_free(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4538 | out_iounmap: |
| 4539 | pci_iounmap(pdev, priv->hw_base); |
| 4540 | out_pci_release_regions: |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4541 | pci_set_drvdata(pdev, NULL); |
Reinette Chatre | 623d563 | 2009-03-03 11:37:04 -0800 | [diff] [blame] | 4542 | pci_release_regions(pdev); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4543 | out_pci_disable_device: |
| 4544 | pci_disable_device(pdev); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4545 | out_ieee80211_free_hw: |
Wey-Yi Guy | 20594eb | 2009-08-07 15:41:39 -0700 | [diff] [blame] | 4546 | iwl_free_traffic_mem(priv); |
Wey-Yi Guy | d7c76f4 | 2009-10-09 13:20:17 -0700 | [diff] [blame] | 4547 | ieee80211_free_hw(priv->hw); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4548 | out: |
| 4549 | return err; |
| 4550 | } |
| 4551 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4552 | static void __devexit iwl_pci_remove(struct pci_dev *pdev) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4553 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 4554 | struct iwl_priv *priv = pci_get_drvdata(pdev); |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 4555 | unsigned long flags; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4556 | |
| 4557 | if (!priv) |
| 4558 | return; |
| 4559 | |
Reinette Chatre | a15707d | 2010-05-10 15:08:11 -0700 | [diff] [blame] | 4560 | wait_for_completion(&priv->_agn.firmware_loading_complete); |
Johannes Berg | 562db53 | 2010-04-29 07:41:53 -0700 | [diff] [blame] | 4561 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 4562 | IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4563 | |
Emmanuel Grumbach | 6724962 | 2008-05-29 16:35:26 +0800 | [diff] [blame] | 4564 | iwl_dbgfs_unregister(priv); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4565 | sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group); |
Emmanuel Grumbach | 6724962 | 2008-05-29 16:35:26 +0800 | [diff] [blame] | 4566 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4567 | /* ieee80211_unregister_hw call wil cause iwl_mac_stop to |
| 4568 | * to be called and iwl_down since we are removing the device |
Gregory Greenman | 0b124c3 | 2008-09-03 11:18:50 +0800 | [diff] [blame] | 4569 | * we need to set STATUS_EXIT_PENDING bit. |
| 4570 | */ |
| 4571 | set_bit(STATUS_EXIT_PENDING, &priv->status); |
Ron Rindjunsky | c4f5523 | 2008-03-28 16:21:10 -0700 | [diff] [blame] | 4572 | if (priv->mac80211_registered) { |
| 4573 | ieee80211_unregister_hw(priv->hw); |
| 4574 | priv->mac80211_registered = 0; |
Gregory Greenman | 0b124c3 | 2008-09-03 11:18:50 +0800 | [diff] [blame] | 4575 | } else { |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4576 | iwl_down(priv); |
Ron Rindjunsky | c4f5523 | 2008-03-28 16:21:10 -0700 | [diff] [blame] | 4577 | } |
| 4578 | |
Ben Cahill | c166b25 | 2009-10-23 13:42:35 -0700 | [diff] [blame] | 4579 | /* |
| 4580 | * Make sure device is reset to low power before unloading driver. |
| 4581 | * This may be redundant with iwl_down(), but there are paths to |
| 4582 | * run iwl_down() without calling apm_ops.stop(), and there are |
| 4583 | * paths to avoid running iwl_down() at all before leaving driver. |
| 4584 | * This (inexpensive) call *makes sure* device is reset. |
| 4585 | */ |
| 4586 | priv->cfg->ops->lib->apm_ops.stop(priv); |
| 4587 | |
Wey-Yi Guy | 39b73fb1 | 2009-07-24 11:13:02 -0700 | [diff] [blame] | 4588 | iwl_tt_exit(priv); |
| 4589 | |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 4590 | /* make sure we flush any pending irq or |
| 4591 | * tasklet for the driver |
| 4592 | */ |
| 4593 | spin_lock_irqsave(&priv->lock, flags); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4594 | iwl_disable_interrupts(priv); |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 4595 | spin_unlock_irqrestore(&priv->lock, flags); |
| 4596 | |
| 4597 | iwl_synchronize_irq(priv); |
| 4598 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4599 | iwl_dealloc_ucode_pci(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4600 | |
| 4601 | if (priv->rxq.bd) |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 4602 | iwlagn_rx_queue_free(priv, &priv->rxq); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 4603 | iwlagn_hw_txq_ctx_free(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4604 | |
Tomas Winkler | 073d3f5 | 2008-04-21 15:41:52 -0700 | [diff] [blame] | 4605 | iwl_eeprom_free(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4606 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4607 | |
Mohamed Abbas | 948c171 | 2007-10-25 17:15:45 +0800 | [diff] [blame] | 4608 | /*netif_stop_queue(dev); */ |
| 4609 | flush_workqueue(priv->workqueue); |
| 4610 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4611 | /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4612 | * priv->workqueue... so we can't take down the workqueue |
| 4613 | * until now... */ |
| 4614 | destroy_workqueue(priv->workqueue); |
| 4615 | priv->workqueue = NULL; |
Wey-Yi Guy | 20594eb | 2009-08-07 15:41:39 -0700 | [diff] [blame] | 4616 | iwl_free_traffic_mem(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4617 | |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 4618 | free_irq(priv->pci_dev->irq, priv); |
| 4619 | pci_disable_msi(priv->pci_dev); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4620 | pci_iounmap(pdev, priv->hw_base); |
| 4621 | pci_release_regions(pdev); |
| 4622 | pci_disable_device(pdev); |
| 4623 | pci_set_drvdata(pdev, NULL); |
| 4624 | |
Tomas Winkler | 6ba8795 | 2008-05-15 13:54:17 +0800 | [diff] [blame] | 4625 | iwl_uninit_drv(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4626 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 4627 | iwl_free_isr_ict(priv); |
| 4628 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4629 | if (priv->ibss_beacon) |
| 4630 | dev_kfree_skb(priv->ibss_beacon); |
| 4631 | |
| 4632 | ieee80211_free_hw(priv->hw); |
| 4633 | } |
| 4634 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4635 | |
| 4636 | /***************************************************************************** |
| 4637 | * |
| 4638 | * driver and module entry point |
| 4639 | * |
| 4640 | *****************************************************************************/ |
| 4641 | |
Ron Rindjunsky | fed9017 | 2008-04-15 16:01:41 -0700 | [diff] [blame] | 4642 | /* Hardware specific file defines the PCI IDs table for that hardware module */ |
Alexey Dobriyan | a3aa188 | 2010-01-07 11:58:11 +0000 | [diff] [blame] | 4643 | static DEFINE_PCI_DEVICE_TABLE(iwl_hw_card_ids) = { |
Tomas Winkler | 4fc22b2 | 2008-07-21 18:54:42 +0300 | [diff] [blame] | 4644 | #ifdef CONFIG_IWL4965 |
Ron Rindjunsky | fed9017 | 2008-04-15 16:01:41 -0700 | [diff] [blame] | 4645 | {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)}, |
| 4646 | {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)}, |
Tomas Winkler | 4fc22b2 | 2008-07-21 18:54:42 +0300 | [diff] [blame] | 4647 | #endif /* CONFIG_IWL4965 */ |
Tomas Winkler | 5a6a256 | 2008-04-24 11:55:23 -0700 | [diff] [blame] | 4648 | #ifdef CONFIG_IWL5000 |
Wey-Yi Guy | ac59257 | 2009-11-20 12:05:03 -0800 | [diff] [blame] | 4649 | /* 5100 Series WiFi */ |
| 4650 | {IWL_PCI_DEVICE(0x4232, 0x1201, iwl5100_agn_cfg)}, /* Mini Card */ |
| 4651 | {IWL_PCI_DEVICE(0x4232, 0x1301, iwl5100_agn_cfg)}, /* Half Mini Card */ |
| 4652 | {IWL_PCI_DEVICE(0x4232, 0x1204, iwl5100_agn_cfg)}, /* Mini Card */ |
| 4653 | {IWL_PCI_DEVICE(0x4232, 0x1304, iwl5100_agn_cfg)}, /* Half Mini Card */ |
| 4654 | {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bgn_cfg)}, /* Mini Card */ |
| 4655 | {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bgn_cfg)}, /* Half Mini Card */ |
| 4656 | {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)}, /* Mini Card */ |
| 4657 | {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)}, /* Half Mini Card */ |
| 4658 | {IWL_PCI_DEVICE(0x4232, 0x1221, iwl5100_agn_cfg)}, /* Mini Card */ |
| 4659 | {IWL_PCI_DEVICE(0x4232, 0x1321, iwl5100_agn_cfg)}, /* Half Mini Card */ |
| 4660 | {IWL_PCI_DEVICE(0x4232, 0x1224, iwl5100_agn_cfg)}, /* Mini Card */ |
| 4661 | {IWL_PCI_DEVICE(0x4232, 0x1324, iwl5100_agn_cfg)}, /* Half Mini Card */ |
| 4662 | {IWL_PCI_DEVICE(0x4232, 0x1225, iwl5100_bgn_cfg)}, /* Mini Card */ |
| 4663 | {IWL_PCI_DEVICE(0x4232, 0x1325, iwl5100_bgn_cfg)}, /* Half Mini Card */ |
| 4664 | {IWL_PCI_DEVICE(0x4232, 0x1226, iwl5100_abg_cfg)}, /* Mini Card */ |
| 4665 | {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)}, /* Half Mini Card */ |
| 4666 | {IWL_PCI_DEVICE(0x4237, 0x1211, iwl5100_agn_cfg)}, /* Mini Card */ |
| 4667 | {IWL_PCI_DEVICE(0x4237, 0x1311, iwl5100_agn_cfg)}, /* Half Mini Card */ |
| 4668 | {IWL_PCI_DEVICE(0x4237, 0x1214, iwl5100_agn_cfg)}, /* Mini Card */ |
| 4669 | {IWL_PCI_DEVICE(0x4237, 0x1314, iwl5100_agn_cfg)}, /* Half Mini Card */ |
| 4670 | {IWL_PCI_DEVICE(0x4237, 0x1215, iwl5100_bgn_cfg)}, /* Mini Card */ |
| 4671 | {IWL_PCI_DEVICE(0x4237, 0x1315, iwl5100_bgn_cfg)}, /* Half Mini Card */ |
| 4672 | {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)}, /* Mini Card */ |
| 4673 | {IWL_PCI_DEVICE(0x4237, 0x1316, iwl5100_abg_cfg)}, /* Half Mini Card */ |
| 4674 | |
| 4675 | /* 5300 Series WiFi */ |
| 4676 | {IWL_PCI_DEVICE(0x4235, 0x1021, iwl5300_agn_cfg)}, /* Mini Card */ |
| 4677 | {IWL_PCI_DEVICE(0x4235, 0x1121, iwl5300_agn_cfg)}, /* Half Mini Card */ |
| 4678 | {IWL_PCI_DEVICE(0x4235, 0x1024, iwl5300_agn_cfg)}, /* Mini Card */ |
| 4679 | {IWL_PCI_DEVICE(0x4235, 0x1124, iwl5300_agn_cfg)}, /* Half Mini Card */ |
| 4680 | {IWL_PCI_DEVICE(0x4235, 0x1001, iwl5300_agn_cfg)}, /* Mini Card */ |
| 4681 | {IWL_PCI_DEVICE(0x4235, 0x1101, iwl5300_agn_cfg)}, /* Half Mini Card */ |
| 4682 | {IWL_PCI_DEVICE(0x4235, 0x1004, iwl5300_agn_cfg)}, /* Mini Card */ |
| 4683 | {IWL_PCI_DEVICE(0x4235, 0x1104, iwl5300_agn_cfg)}, /* Half Mini Card */ |
| 4684 | {IWL_PCI_DEVICE(0x4236, 0x1011, iwl5300_agn_cfg)}, /* Mini Card */ |
| 4685 | {IWL_PCI_DEVICE(0x4236, 0x1111, iwl5300_agn_cfg)}, /* Half Mini Card */ |
| 4686 | {IWL_PCI_DEVICE(0x4236, 0x1014, iwl5300_agn_cfg)}, /* Mini Card */ |
| 4687 | {IWL_PCI_DEVICE(0x4236, 0x1114, iwl5300_agn_cfg)}, /* Half Mini Card */ |
| 4688 | |
| 4689 | /* 5350 Series WiFi/WiMax */ |
| 4690 | {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)}, /* Mini Card */ |
| 4691 | {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)}, /* Mini Card */ |
| 4692 | {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)}, /* Mini Card */ |
| 4693 | |
| 4694 | /* 5150 Series Wifi/WiMax */ |
| 4695 | {IWL_PCI_DEVICE(0x423C, 0x1201, iwl5150_agn_cfg)}, /* Mini Card */ |
| 4696 | {IWL_PCI_DEVICE(0x423C, 0x1301, iwl5150_agn_cfg)}, /* Half Mini Card */ |
| 4697 | {IWL_PCI_DEVICE(0x423C, 0x1206, iwl5150_abg_cfg)}, /* Mini Card */ |
| 4698 | {IWL_PCI_DEVICE(0x423C, 0x1306, iwl5150_abg_cfg)}, /* Half Mini Card */ |
| 4699 | {IWL_PCI_DEVICE(0x423C, 0x1221, iwl5150_agn_cfg)}, /* Mini Card */ |
| 4700 | {IWL_PCI_DEVICE(0x423C, 0x1321, iwl5150_agn_cfg)}, /* Half Mini Card */ |
| 4701 | |
| 4702 | {IWL_PCI_DEVICE(0x423D, 0x1211, iwl5150_agn_cfg)}, /* Mini Card */ |
| 4703 | {IWL_PCI_DEVICE(0x423D, 0x1311, iwl5150_agn_cfg)}, /* Half Mini Card */ |
| 4704 | {IWL_PCI_DEVICE(0x423D, 0x1216, iwl5150_abg_cfg)}, /* Mini Card */ |
| 4705 | {IWL_PCI_DEVICE(0x423D, 0x1316, iwl5150_abg_cfg)}, /* Half Mini Card */ |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 4706 | |
| 4707 | /* 6x00 Series */ |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 4708 | {IWL_PCI_DEVICE(0x422B, 0x1101, iwl6000_3agn_cfg)}, |
| 4709 | {IWL_PCI_DEVICE(0x422B, 0x1121, iwl6000_3agn_cfg)}, |
| 4710 | {IWL_PCI_DEVICE(0x422C, 0x1301, iwl6000i_2agn_cfg)}, |
| 4711 | {IWL_PCI_DEVICE(0x422C, 0x1306, iwl6000i_2abg_cfg)}, |
| 4712 | {IWL_PCI_DEVICE(0x422C, 0x1307, iwl6000i_2bg_cfg)}, |
| 4713 | {IWL_PCI_DEVICE(0x422C, 0x1321, iwl6000i_2agn_cfg)}, |
| 4714 | {IWL_PCI_DEVICE(0x422C, 0x1326, iwl6000i_2abg_cfg)}, |
| 4715 | {IWL_PCI_DEVICE(0x4238, 0x1111, iwl6000_3agn_cfg)}, |
| 4716 | {IWL_PCI_DEVICE(0x4239, 0x1311, iwl6000i_2agn_cfg)}, |
| 4717 | {IWL_PCI_DEVICE(0x4239, 0x1316, iwl6000i_2abg_cfg)}, |
Shanyu Zhao | 4b3e806 | 2010-04-07 18:06:36 -0700 | [diff] [blame] | 4718 | |
Shanyu Zhao | 95b1301 | 2010-04-21 11:46:33 -0700 | [diff] [blame] | 4719 | /* 6x00 Series Gen2a */ |
| 4720 | {IWL_PCI_DEVICE(0x0082, 0x1201, iwl6000g2a_2agn_cfg)}, |
| 4721 | {IWL_PCI_DEVICE(0x0085, 0x1211, iwl6000g2a_2agn_cfg)}, |
| 4722 | {IWL_PCI_DEVICE(0x0082, 0x1221, iwl6000g2a_2agn_cfg)}, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 4723 | {IWL_PCI_DEVICE(0x0082, 0x1206, iwl6000g2a_2abg_cfg)}, |
| 4724 | {IWL_PCI_DEVICE(0x0085, 0x1216, iwl6000g2a_2abg_cfg)}, |
| 4725 | {IWL_PCI_DEVICE(0x0082, 0x1226, iwl6000g2a_2abg_cfg)}, |
| 4726 | {IWL_PCI_DEVICE(0x0082, 0x1207, iwl6000g2a_2bg_cfg)}, |
Shanyu Zhao | 9f6e1ba | 2010-05-11 15:21:54 -0700 | [diff] [blame] | 4727 | {IWL_PCI_DEVICE(0x0082, 0x1301, iwl6000g2a_2agn_cfg)}, |
| 4728 | {IWL_PCI_DEVICE(0x0082, 0x1306, iwl6000g2a_2abg_cfg)}, |
| 4729 | {IWL_PCI_DEVICE(0x0082, 0x1307, iwl6000g2a_2bg_cfg)}, |
| 4730 | {IWL_PCI_DEVICE(0x0082, 0x1321, iwl6000g2a_2agn_cfg)}, |
| 4731 | {IWL_PCI_DEVICE(0x0082, 0x1326, iwl6000g2a_2abg_cfg)}, |
| 4732 | {IWL_PCI_DEVICE(0x0085, 0x1311, iwl6000g2a_2agn_cfg)}, |
| 4733 | {IWL_PCI_DEVICE(0x0085, 0x1316, iwl6000g2a_2abg_cfg)}, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 4734 | |
| 4735 | /* 6x00 Series Gen2b */ |
| 4736 | {IWL_PCI_DEVICE(0x008F, 0x5105, iwl6000g2b_bgn_cfg)}, |
| 4737 | {IWL_PCI_DEVICE(0x0090, 0x5115, iwl6000g2b_bgn_cfg)}, |
| 4738 | {IWL_PCI_DEVICE(0x008F, 0x5125, iwl6000g2b_bgn_cfg)}, |
| 4739 | {IWL_PCI_DEVICE(0x008F, 0x5107, iwl6000g2b_bg_cfg)}, |
| 4740 | {IWL_PCI_DEVICE(0x008F, 0x5201, iwl6000g2b_2agn_cfg)}, |
| 4741 | {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6000g2b_2agn_cfg)}, |
| 4742 | {IWL_PCI_DEVICE(0x008F, 0x5221, iwl6000g2b_2agn_cfg)}, |
| 4743 | {IWL_PCI_DEVICE(0x008F, 0x5206, iwl6000g2b_2abg_cfg)}, |
| 4744 | {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6000g2b_2abg_cfg)}, |
| 4745 | {IWL_PCI_DEVICE(0x008F, 0x5226, iwl6000g2b_2abg_cfg)}, |
| 4746 | {IWL_PCI_DEVICE(0x008F, 0x5207, iwl6000g2b_2bg_cfg)}, |
Shanyu Zhao | 9f6e1ba | 2010-05-11 15:21:54 -0700 | [diff] [blame] | 4747 | {IWL_PCI_DEVICE(0x008A, 0x5301, iwl6000g2b_bgn_cfg)}, |
| 4748 | {IWL_PCI_DEVICE(0x008A, 0x5305, iwl6000g2b_bgn_cfg)}, |
| 4749 | {IWL_PCI_DEVICE(0x008A, 0x5307, iwl6000g2b_bg_cfg)}, |
| 4750 | {IWL_PCI_DEVICE(0x008A, 0x5321, iwl6000g2b_bgn_cfg)}, |
| 4751 | {IWL_PCI_DEVICE(0x008A, 0x5325, iwl6000g2b_bgn_cfg)}, |
| 4752 | {IWL_PCI_DEVICE(0x008B, 0x5311, iwl6000g2b_bgn_cfg)}, |
| 4753 | {IWL_PCI_DEVICE(0x008B, 0x5315, iwl6000g2b_bgn_cfg)}, |
| 4754 | {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6000g2b_2agn_cfg)}, |
| 4755 | {IWL_PCI_DEVICE(0x0090, 0x5215, iwl6000g2b_2bgn_cfg)}, |
| 4756 | {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6000g2b_2abg_cfg)}, |
| 4757 | {IWL_PCI_DEVICE(0x0091, 0x5201, iwl6000g2b_2agn_cfg)}, |
| 4758 | {IWL_PCI_DEVICE(0x0091, 0x5205, iwl6000g2b_2bgn_cfg)}, |
| 4759 | {IWL_PCI_DEVICE(0x0091, 0x5206, iwl6000g2b_2abg_cfg)}, |
| 4760 | {IWL_PCI_DEVICE(0x0091, 0x5207, iwl6000g2b_2bg_cfg)}, |
| 4761 | {IWL_PCI_DEVICE(0x0091, 0x5221, iwl6000g2b_2agn_cfg)}, |
| 4762 | {IWL_PCI_DEVICE(0x0091, 0x5225, iwl6000g2b_2bgn_cfg)}, |
| 4763 | {IWL_PCI_DEVICE(0x0091, 0x5226, iwl6000g2b_2abg_cfg)}, |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 4764 | |
| 4765 | /* 6x50 WiFi/WiMax Series */ |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 4766 | {IWL_PCI_DEVICE(0x0087, 0x1301, iwl6050_2agn_cfg)}, |
| 4767 | {IWL_PCI_DEVICE(0x0087, 0x1306, iwl6050_2abg_cfg)}, |
| 4768 | {IWL_PCI_DEVICE(0x0087, 0x1321, iwl6050_2agn_cfg)}, |
| 4769 | {IWL_PCI_DEVICE(0x0087, 0x1326, iwl6050_2abg_cfg)}, |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 4770 | {IWL_PCI_DEVICE(0x0089, 0x1311, iwl6050_2agn_cfg)}, |
| 4771 | {IWL_PCI_DEVICE(0x0089, 0x1316, iwl6050_2abg_cfg)}, |
| 4772 | |
Shanyu Zhao | 0326433 | 2010-06-29 17:27:27 -0700 | [diff] [blame] | 4773 | /* 6x50 WiFi/WiMax Series Gen2 */ |
| 4774 | {IWL_PCI_DEVICE(0x0885, 0x1305, iwl6050g2_bgn_cfg)}, |
| 4775 | {IWL_PCI_DEVICE(0x0885, 0x1306, iwl6050g2_bgn_cfg)}, |
| 4776 | {IWL_PCI_DEVICE(0x0885, 0x1325, iwl6050g2_bgn_cfg)}, |
| 4777 | {IWL_PCI_DEVICE(0x0885, 0x1326, iwl6050g2_bgn_cfg)}, |
| 4778 | {IWL_PCI_DEVICE(0x0886, 0x1315, iwl6050g2_bgn_cfg)}, |
| 4779 | {IWL_PCI_DEVICE(0x0886, 0x1316, iwl6050g2_bgn_cfg)}, |
| 4780 | |
Jay Sternberg | 77dcb6a | 2009-03-06 13:52:55 -0800 | [diff] [blame] | 4781 | /* 1000 Series WiFi */ |
Wey-Yi Guy | 4bd0914f | 2009-09-17 10:43:52 -0700 | [diff] [blame] | 4782 | {IWL_PCI_DEVICE(0x0083, 0x1205, iwl1000_bgn_cfg)}, |
| 4783 | {IWL_PCI_DEVICE(0x0083, 0x1305, iwl1000_bgn_cfg)}, |
| 4784 | {IWL_PCI_DEVICE(0x0083, 0x1225, iwl1000_bgn_cfg)}, |
| 4785 | {IWL_PCI_DEVICE(0x0083, 0x1325, iwl1000_bgn_cfg)}, |
| 4786 | {IWL_PCI_DEVICE(0x0084, 0x1215, iwl1000_bgn_cfg)}, |
| 4787 | {IWL_PCI_DEVICE(0x0084, 0x1315, iwl1000_bgn_cfg)}, |
| 4788 | {IWL_PCI_DEVICE(0x0083, 0x1206, iwl1000_bg_cfg)}, |
| 4789 | {IWL_PCI_DEVICE(0x0083, 0x1306, iwl1000_bg_cfg)}, |
| 4790 | {IWL_PCI_DEVICE(0x0083, 0x1226, iwl1000_bg_cfg)}, |
| 4791 | {IWL_PCI_DEVICE(0x0083, 0x1326, iwl1000_bg_cfg)}, |
| 4792 | {IWL_PCI_DEVICE(0x0084, 0x1216, iwl1000_bg_cfg)}, |
| 4793 | {IWL_PCI_DEVICE(0x0084, 0x1316, iwl1000_bg_cfg)}, |
Tomas Winkler | 5a6a256 | 2008-04-24 11:55:23 -0700 | [diff] [blame] | 4794 | #endif /* CONFIG_IWL5000 */ |
Tomas Winkler | 7100e92 | 2008-12-01 16:32:18 -0800 | [diff] [blame] | 4795 | |
Ron Rindjunsky | fed9017 | 2008-04-15 16:01:41 -0700 | [diff] [blame] | 4796 | {0} |
| 4797 | }; |
| 4798 | MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids); |
| 4799 | |
| 4800 | static struct pci_driver iwl_driver = { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4801 | .name = DRV_NAME, |
Ron Rindjunsky | fed9017 | 2008-04-15 16:01:41 -0700 | [diff] [blame] | 4802 | .id_table = iwl_hw_card_ids, |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4803 | .probe = iwl_pci_probe, |
| 4804 | .remove = __devexit_p(iwl_pci_remove), |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4805 | #ifdef CONFIG_PM |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4806 | .suspend = iwl_pci_suspend, |
| 4807 | .resume = iwl_pci_resume, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4808 | #endif |
| 4809 | }; |
| 4810 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4811 | static int __init iwl_init(void) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4812 | { |
| 4813 | |
| 4814 | int ret; |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 4815 | pr_info(DRV_DESCRIPTION ", " DRV_VERSION "\n"); |
| 4816 | pr_info(DRV_COPYRIGHT "\n"); |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 4817 | |
Tomas Winkler | e227cea | 2008-07-18 13:53:05 +0800 | [diff] [blame] | 4818 | ret = iwlagn_rate_control_register(); |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 4819 | if (ret) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 4820 | pr_err("Unable to register rate control algorithm: %d\n", ret); |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 4821 | return ret; |
| 4822 | } |
| 4823 | |
Ron Rindjunsky | fed9017 | 2008-04-15 16:01:41 -0700 | [diff] [blame] | 4824 | ret = pci_register_driver(&iwl_driver); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4825 | if (ret) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 4826 | pr_err("Unable to initialize PCI module\n"); |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 4827 | goto error_register; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4828 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4829 | |
| 4830 | return ret; |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 4831 | |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 4832 | error_register: |
Tomas Winkler | e227cea | 2008-07-18 13:53:05 +0800 | [diff] [blame] | 4833 | iwlagn_rate_control_unregister(); |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 4834 | return ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4835 | } |
| 4836 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4837 | static void __exit iwl_exit(void) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4838 | { |
Ron Rindjunsky | fed9017 | 2008-04-15 16:01:41 -0700 | [diff] [blame] | 4839 | pci_unregister_driver(&iwl_driver); |
Tomas Winkler | e227cea | 2008-07-18 13:53:05 +0800 | [diff] [blame] | 4840 | iwlagn_rate_control_unregister(); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4841 | } |
| 4842 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4843 | module_exit(iwl_exit); |
| 4844 | module_init(iwl_init); |
Reinette Chatre | a562a9d | 2009-07-17 09:30:24 -0700 | [diff] [blame] | 4845 | |
| 4846 | #ifdef CONFIG_IWLWIFI_DEBUG |
Wey-Yi Guy | 4e30cb6 | 2009-09-17 10:43:47 -0700 | [diff] [blame] | 4847 | module_param_named(debug50, iwl_debug_level, uint, S_IRUGO); |
Reinette Chatre | a562a9d | 2009-07-17 09:30:24 -0700 | [diff] [blame] | 4848 | MODULE_PARM_DESC(debug50, "50XX debug output mask (deprecated)"); |
Wey-Yi Guy | 4e30cb6 | 2009-09-17 10:43:47 -0700 | [diff] [blame] | 4849 | module_param_named(debug, iwl_debug_level, uint, S_IRUGO | S_IWUSR); |
Reinette Chatre | a562a9d | 2009-07-17 09:30:24 -0700 | [diff] [blame] | 4850 | MODULE_PARM_DESC(debug, "debug output mask"); |
| 4851 | #endif |
| 4852 | |
Wey-Yi Guy | 2b068618 | 2010-03-22 09:17:39 -0700 | [diff] [blame] | 4853 | module_param_named(swcrypto50, iwlagn_mod_params.sw_crypto, bool, S_IRUGO); |
| 4854 | MODULE_PARM_DESC(swcrypto50, |
| 4855 | "using crypto in software (default 0 [hardware]) (deprecated)"); |
| 4856 | module_param_named(swcrypto, iwlagn_mod_params.sw_crypto, int, S_IRUGO); |
| 4857 | MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])"); |
| 4858 | module_param_named(queues_num50, |
| 4859 | iwlagn_mod_params.num_of_queues, int, S_IRUGO); |
| 4860 | MODULE_PARM_DESC(queues_num50, |
| 4861 | "number of hw queues in 50xx series (deprecated)"); |
| 4862 | module_param_named(queues_num, iwlagn_mod_params.num_of_queues, int, S_IRUGO); |
| 4863 | MODULE_PARM_DESC(queues_num, "number of hw queues."); |
| 4864 | module_param_named(11n_disable50, iwlagn_mod_params.disable_11n, int, S_IRUGO); |
| 4865 | MODULE_PARM_DESC(11n_disable50, "disable 50XX 11n functionality (deprecated)"); |
| 4866 | module_param_named(11n_disable, iwlagn_mod_params.disable_11n, int, S_IRUGO); |
| 4867 | MODULE_PARM_DESC(11n_disable, "disable 11n functionality"); |
| 4868 | module_param_named(amsdu_size_8K50, iwlagn_mod_params.amsdu_size_8K, |
| 4869 | int, S_IRUGO); |
| 4870 | MODULE_PARM_DESC(amsdu_size_8K50, |
| 4871 | "enable 8K amsdu size in 50XX series (deprecated)"); |
| 4872 | module_param_named(amsdu_size_8K, iwlagn_mod_params.amsdu_size_8K, |
| 4873 | int, S_IRUGO); |
| 4874 | MODULE_PARM_DESC(amsdu_size_8K, "enable 8K amsdu size"); |
| 4875 | module_param_named(fw_restart50, iwlagn_mod_params.restart_fw, int, S_IRUGO); |
| 4876 | MODULE_PARM_DESC(fw_restart50, |
| 4877 | "restart firmware in case of error (deprecated)"); |
| 4878 | module_param_named(fw_restart, iwlagn_mod_params.restart_fw, int, S_IRUGO); |
| 4879 | MODULE_PARM_DESC(fw_restart, "restart firmware in case of error"); |
| 4880 | module_param_named( |
| 4881 | disable_hw_scan, iwlagn_mod_params.disable_hw_scan, int, S_IRUGO); |
| 4882 | MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)"); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 4883 | |
| 4884 | module_param_named(ucode_alternative, iwlagn_wanted_ucode_alternative, int, |
| 4885 | S_IRUGO); |
| 4886 | MODULE_PARM_DESC(ucode_alternative, |
| 4887 | "specify ucode alternative to use from ucode file"); |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 4888 | |
| 4889 | module_param_named(antenna_coupling, iwlagn_ant_coupling, int, S_IRUGO); |
| 4890 | MODULE_PARM_DESC(antenna_coupling, |
| 4891 | "specify antenna coupling in dB (defualt: 0 dB)"); |
Wey-Yi Guy | f37837c | 2010-08-23 07:57:12 -0700 | [diff] [blame] | 4892 | |
| 4893 | module_param_named(bt_ch_announce, iwlagn_bt_ch_announce, bool, S_IRUGO); |
| 4894 | MODULE_PARM_DESC(bt_ch_announce, |
| 4895 | "Enable BT channel announcement mode (default: enable)"); |