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); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 108 | |
Tomas Winkler | fee1247 | 2008-04-03 16:05:21 -0700 | [diff] [blame] | 109 | if (!iwl_is_alive(priv)) |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 110 | return -EBUSY; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 111 | |
| 112 | /* always get timestamp with Rx frame */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 113 | ctx->staging.flags |= RXON_FLG_TSF2HOST_MSK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 114 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 115 | ret = iwl_check_rxon_cmd(priv, ctx); |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 116 | if (ret) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 117 | IWL_ERR(priv, "Invalid RXON configuration. Not committing.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 118 | return -EINVAL; |
| 119 | } |
| 120 | |
Wey-Yi Guy | 0924e519 | 2009-11-06 14:52:54 -0800 | [diff] [blame] | 121 | /* |
| 122 | * receive commit_rxon request |
| 123 | * abort any previous channel switch if still in process |
| 124 | */ |
| 125 | if (priv->switch_rxon.switch_in_progress && |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 126 | (priv->switch_rxon.channel != ctx->staging.channel)) { |
Wey-Yi Guy | 0924e519 | 2009-11-06 14:52:54 -0800 | [diff] [blame] | 127 | IWL_DEBUG_11H(priv, "abort channel switch on %d\n", |
| 128 | le16_to_cpu(priv->switch_rxon.channel)); |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 129 | iwl_chswitch_done(priv, false); |
Wey-Yi Guy | 0924e519 | 2009-11-06 14:52:54 -0800 | [diff] [blame] | 130 | } |
| 131 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 132 | /* 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] | 133 | * iwl_rxon_assoc_cmd which is used to reconfigure filter |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 134 | * and other flags for the current radio configuration. */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 135 | if (!iwl_full_rxon_required(priv, ctx)) { |
| 136 | ret = iwl_send_rxon_assoc(priv, ctx); |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 137 | if (ret) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 138 | IWL_ERR(priv, "Error setting RXON_ASSOC (%d)\n", ret); |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 139 | return ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 140 | } |
| 141 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 142 | memcpy(active_rxon, &ctx->staging, sizeof(*active_rxon)); |
| 143 | iwl_print_rx_config_cmd(priv, ctx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 144 | return 0; |
| 145 | } |
| 146 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 147 | /* If we are currently associated and the new config requires |
| 148 | * an RXON_ASSOC and the new config wants the associated mask enabled, |
| 149 | * we must clear the associated from the active configuration |
| 150 | * before we apply the new config */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 151 | if (iwl_is_associated_ctx(ctx) && new_assoc) { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 152 | IWL_DEBUG_INFO(priv, "Toggling associated bit on current RXON\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 153 | active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
| 154 | |
Johannes Berg | 8f2d3d2 | 2010-08-23 10:46:37 +0200 | [diff] [blame] | 155 | ret = iwl_send_cmd_pdu(priv, ctx->rxon_cmd, |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 156 | sizeof(struct iwl_rxon_cmd), |
| 157 | active_rxon); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 158 | |
| 159 | /* If the mask clearing failed then we set |
| 160 | * active_rxon back to what it was previously */ |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 161 | if (ret) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 162 | active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK; |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 163 | IWL_ERR(priv, "Error clearing ASSOC_MSK (%d)\n", ret); |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 164 | return ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 165 | } |
Johannes Berg | dcef732 | 2010-08-27 08:55:52 -0700 | [diff] [blame] | 166 | iwl_clear_ucode_stations(priv, ctx); |
| 167 | iwl_restore_stations(priv, ctx); |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 168 | ret = iwl_restore_default_wep_keys(priv, ctx); |
Johannes Berg | 335348b | 2010-03-30 10:11:46 -0700 | [diff] [blame] | 169 | if (ret) { |
| 170 | IWL_ERR(priv, "Failed to restore WEP keys (%d)\n", ret); |
| 171 | return ret; |
| 172 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 173 | } |
| 174 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 175 | IWL_DEBUG_INFO(priv, "Sending RXON\n" |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 176 | "* with%s RXON_FILTER_ASSOC_MSK\n" |
| 177 | "* channel = %d\n" |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 178 | "* bssid = %pM\n", |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 179 | (new_assoc ? "" : "out"), |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 180 | le16_to_cpu(ctx->staging.channel), |
| 181 | ctx->staging.bssid_addr); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 182 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 183 | iwl_set_rxon_hwcrypto(priv, ctx, !priv->cfg->mod_params->sw_crypto); |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 184 | |
Johannes Berg | 2491fa4 | 2010-08-23 10:46:52 +0200 | [diff] [blame^] | 185 | if (new_assoc) { |
| 186 | if (WARN_ON(!ctx->vif)) |
| 187 | return -EINVAL; |
| 188 | /* |
| 189 | * First of all, before setting associated, we need to |
| 190 | * send RXON timing so the device knows about the DTIM |
| 191 | * period and other timing values |
| 192 | */ |
| 193 | ret = iwl_send_rxon_timing(priv, ctx->vif); |
| 194 | if (ret) { |
| 195 | IWL_ERR(priv, "Error setting RXON timing!\n"); |
| 196 | return ret; |
| 197 | } |
| 198 | } |
| 199 | |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 200 | /* Apply the new configuration |
Reinette Chatre | 7e24619 | 2010-02-18 22:58:32 -0800 | [diff] [blame] | 201 | * RXON unassoc clears the station table in uCode so restoration of |
| 202 | * stations is needed after it (the RXON command) completes |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 203 | */ |
| 204 | if (!new_assoc) { |
Johannes Berg | 8f2d3d2 | 2010-08-23 10:46:37 +0200 | [diff] [blame] | 205 | ret = iwl_send_cmd_pdu(priv, ctx->rxon_cmd, |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 206 | sizeof(struct iwl_rxon_cmd), &ctx->staging); |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 207 | if (ret) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 208 | IWL_ERR(priv, "Error setting new RXON (%d)\n", ret); |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 209 | return ret; |
| 210 | } |
Frans Pop | 91dd6c2 | 2010-03-24 14:19:58 -0700 | [diff] [blame] | 211 | IWL_DEBUG_INFO(priv, "Return from !new_assoc RXON.\n"); |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 212 | memcpy(active_rxon, &ctx->staging, sizeof(*active_rxon)); |
Johannes Berg | dcef732 | 2010-08-27 08:55:52 -0700 | [diff] [blame] | 213 | iwl_clear_ucode_stations(priv, ctx); |
| 214 | iwl_restore_stations(priv, ctx); |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 215 | ret = iwl_restore_default_wep_keys(priv, ctx); |
Johannes Berg | 335348b | 2010-03-30 10:11:46 -0700 | [diff] [blame] | 216 | if (ret) { |
| 217 | IWL_ERR(priv, "Failed to restore WEP keys (%d)\n", ret); |
| 218 | return ret; |
| 219 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 220 | } |
| 221 | |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 222 | priv->start_calib = 0; |
Tomas Winkler | 9185159 | 2008-06-30 17:23:14 +0800 | [diff] [blame] | 223 | if (new_assoc) { |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 224 | /* Apply the new configuration |
| 225 | * RXON assoc doesn't clear the station table in uCode, |
| 226 | */ |
Johannes Berg | 8f2d3d2 | 2010-08-23 10:46:37 +0200 | [diff] [blame] | 227 | ret = iwl_send_cmd_pdu(priv, ctx->rxon_cmd, |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 228 | sizeof(struct iwl_rxon_cmd), &ctx->staging); |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 229 | if (ret) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 230 | IWL_ERR(priv, "Error setting new RXON (%d)\n", ret); |
Emmanuel Grumbach | 43d59b3 | 2008-06-30 17:23:06 +0800 | [diff] [blame] | 231 | return ret; |
| 232 | } |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 233 | memcpy(active_rxon, &ctx->staging, sizeof(*active_rxon)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 234 | } |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 235 | iwl_print_rx_config_cmd(priv, ctx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 236 | |
Zhu Yi | 36da7d7 | 2008-07-11 11:53:40 +0800 | [diff] [blame] | 237 | iwl_init_sensitivity(priv); |
| 238 | |
| 239 | /* If we issue a new RXON command which required a tune then we must |
| 240 | * send a new TXPOWER command or we won't be able to Tx any frames */ |
| 241 | ret = iwl_set_tx_power(priv, priv->tx_power_user_lmt, true); |
| 242 | if (ret) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 243 | IWL_ERR(priv, "Error sending TX power (%d)\n", ret); |
Zhu Yi | 36da7d7 | 2008-07-11 11:53:40 +0800 | [diff] [blame] | 244 | return ret; |
| 245 | } |
| 246 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 247 | return 0; |
| 248 | } |
| 249 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 250 | void iwl_update_chain_flags(struct iwl_priv *priv) |
Mohamed Abbas | 5da4b55 | 2008-04-21 15:41:51 -0700 | [diff] [blame] | 251 | { |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 252 | struct iwl_rxon_context *ctx; |
Mohamed Abbas | 5da4b55 | 2008-04-21 15:41:51 -0700 | [diff] [blame] | 253 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 254 | if (priv->cfg->ops->hcmd->set_rxon_chain) { |
| 255 | for_each_context(priv, ctx) { |
| 256 | priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx); |
| 257 | iwlcore_commit_rxon(priv, ctx); |
| 258 | } |
| 259 | } |
Mohamed Abbas | 5da4b55 | 2008-04-21 15:41:51 -0700 | [diff] [blame] | 260 | } |
| 261 | |
Tomas Winkler | fcab423 | 2008-05-15 13:54:01 +0800 | [diff] [blame] | 262 | static void iwl_clear_free_frames(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 263 | { |
| 264 | struct list_head *element; |
| 265 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 266 | 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] | 267 | priv->frames_count); |
| 268 | |
| 269 | while (!list_empty(&priv->free_frames)) { |
| 270 | element = priv->free_frames.next; |
| 271 | list_del(element); |
Tomas Winkler | fcab423 | 2008-05-15 13:54:01 +0800 | [diff] [blame] | 272 | kfree(list_entry(element, struct iwl_frame, list)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 273 | priv->frames_count--; |
| 274 | } |
| 275 | |
| 276 | if (priv->frames_count) { |
Winkler, Tomas | 39aadf8 | 2008-12-19 10:37:32 +0800 | [diff] [blame] | 277 | 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] | 278 | priv->frames_count); |
| 279 | priv->frames_count = 0; |
| 280 | } |
| 281 | } |
| 282 | |
Tomas Winkler | fcab423 | 2008-05-15 13:54:01 +0800 | [diff] [blame] | 283 | static struct iwl_frame *iwl_get_free_frame(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 284 | { |
Tomas Winkler | fcab423 | 2008-05-15 13:54:01 +0800 | [diff] [blame] | 285 | struct iwl_frame *frame; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 286 | struct list_head *element; |
| 287 | if (list_empty(&priv->free_frames)) { |
| 288 | frame = kzalloc(sizeof(*frame), GFP_KERNEL); |
| 289 | if (!frame) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 290 | IWL_ERR(priv, "Could not allocate frame!\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 291 | return NULL; |
| 292 | } |
| 293 | |
| 294 | priv->frames_count++; |
| 295 | return frame; |
| 296 | } |
| 297 | |
| 298 | element = priv->free_frames.next; |
| 299 | list_del(element); |
Tomas Winkler | fcab423 | 2008-05-15 13:54:01 +0800 | [diff] [blame] | 300 | return list_entry(element, struct iwl_frame, list); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 301 | } |
| 302 | |
Tomas Winkler | fcab423 | 2008-05-15 13:54:01 +0800 | [diff] [blame] | 303 | 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] | 304 | { |
| 305 | memset(frame, 0, sizeof(*frame)); |
| 306 | list_add(&frame->list, &priv->free_frames); |
| 307 | } |
| 308 | |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 309 | static u32 iwl_fill_beacon_frame(struct iwl_priv *priv, |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 310 | struct ieee80211_hdr *hdr, |
Rami Rosen | 73ec1cc | 2008-12-16 09:37:07 +0200 | [diff] [blame] | 311 | int left) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 312 | { |
Johannes Berg | 6abbe55 | 2010-07-15 05:59:07 -0700 | [diff] [blame] | 313 | if (!priv->ibss_beacon) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 314 | return 0; |
| 315 | |
| 316 | if (priv->ibss_beacon->len > left) |
| 317 | return 0; |
| 318 | |
| 319 | memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len); |
| 320 | |
| 321 | return priv->ibss_beacon->len; |
| 322 | } |
| 323 | |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 324 | /* Parse the beacon frame to find the TIM element and set tim_idx & tim_size */ |
| 325 | static void iwl_set_beacon_tim(struct iwl_priv *priv, |
| 326 | struct iwl_tx_beacon_cmd *tx_beacon_cmd, |
| 327 | u8 *beacon, u32 frame_size) |
| 328 | { |
| 329 | u16 tim_idx; |
| 330 | struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon; |
| 331 | |
| 332 | /* |
| 333 | * The index is relative to frame start but we start looking at the |
| 334 | * variable-length part of the beacon. |
| 335 | */ |
| 336 | tim_idx = mgmt->u.beacon.variable - beacon; |
| 337 | |
| 338 | /* Parse variable-length elements of beacon to find WLAN_EID_TIM */ |
| 339 | while ((tim_idx < (frame_size - 2)) && |
| 340 | (beacon[tim_idx] != WLAN_EID_TIM)) |
| 341 | tim_idx += beacon[tim_idx+1] + 2; |
| 342 | |
| 343 | /* If TIM field was found, set variables */ |
| 344 | if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) { |
| 345 | tx_beacon_cmd->tim_idx = cpu_to_le16(tim_idx); |
| 346 | tx_beacon_cmd->tim_size = beacon[tim_idx+1]; |
| 347 | } else |
| 348 | IWL_WARN(priv, "Unable to find TIM Element in beacon\n"); |
| 349 | } |
| 350 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 351 | 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] | 352 | struct iwl_frame *frame) |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 353 | { |
| 354 | struct iwl_tx_beacon_cmd *tx_beacon_cmd; |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 355 | u32 frame_size; |
| 356 | u32 rate_flags; |
| 357 | u32 rate; |
| 358 | /* |
| 359 | * We have to set up the TX command, the TX Beacon command, and the |
| 360 | * beacon contents. |
| 361 | */ |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 362 | |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 363 | lockdep_assert_held(&priv->mutex); |
| 364 | |
| 365 | if (!priv->beacon_ctx) { |
| 366 | IWL_ERR(priv, "trying to build beacon w/o beacon context!\n"); |
| 367 | return -EINVAL; |
| 368 | } |
| 369 | |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 370 | /* Initialize memory */ |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 371 | tx_beacon_cmd = &frame->u.beacon; |
| 372 | memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd)); |
| 373 | |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 374 | /* Set up TX beacon contents */ |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 375 | frame_size = iwl_fill_beacon_frame(priv, tx_beacon_cmd->frame, |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 376 | sizeof(frame->u) - sizeof(*tx_beacon_cmd)); |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 377 | if (WARN_ON_ONCE(frame_size > MAX_MPDU_SIZE)) |
| 378 | return 0; |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 379 | |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 380 | /* Set up TX command fields */ |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 381 | tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size); |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 382 | 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] | 383 | 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] | 384 | 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] | 385 | TX_CMD_FLG_TSF_MSK | TX_CMD_FLG_STA_RATE_MSK; |
| 386 | |
| 387 | /* Set up TX beacon command fields */ |
| 388 | iwl_set_beacon_tim(priv, tx_beacon_cmd, (u8 *)tx_beacon_cmd->frame, |
| 389 | frame_size); |
| 390 | |
| 391 | /* Set up packet rate and flags */ |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 392 | rate = iwl_rate_get_lowest_plcp(priv, priv->beacon_ctx); |
Johannes Berg | 0e1654f | 2010-05-18 02:48:36 -0700 | [diff] [blame] | 393 | priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant, |
| 394 | priv->hw_params.valid_tx_ant); |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 395 | rate_flags = iwl_ant_idx_to_flags(priv->mgmt_tx_ant); |
| 396 | if ((rate >= IWL_FIRST_CCK_RATE) && (rate <= IWL_LAST_CCK_RATE)) |
| 397 | rate_flags |= RATE_MCS_CCK_MSK; |
| 398 | tx_beacon_cmd->tx.rate_n_flags = iwl_hw_set_rate_n_flags(rate, |
| 399 | rate_flags); |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 400 | |
| 401 | return sizeof(*tx_beacon_cmd) + frame_size; |
| 402 | } |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 403 | static int iwl_send_beacon_cmd(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 404 | { |
Tomas Winkler | fcab423 | 2008-05-15 13:54:01 +0800 | [diff] [blame] | 405 | struct iwl_frame *frame; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 406 | unsigned int frame_size; |
| 407 | int rc; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 408 | |
Tomas Winkler | fcab423 | 2008-05-15 13:54:01 +0800 | [diff] [blame] | 409 | frame = iwl_get_free_frame(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 410 | if (!frame) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 411 | IWL_ERR(priv, "Could not obtain free frame buffer for beacon " |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 412 | "command.\n"); |
| 413 | return -ENOMEM; |
| 414 | } |
| 415 | |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 416 | frame_size = iwl_hw_get_beacon_cmd(priv, frame); |
| 417 | if (!frame_size) { |
| 418 | IWL_ERR(priv, "Error configuring the beacon command\n"); |
| 419 | iwl_free_frame(priv, frame); |
| 420 | return -EINVAL; |
| 421 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 422 | |
Tomas Winkler | 857485c | 2008-03-21 13:53:44 -0700 | [diff] [blame] | 423 | rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 424 | &frame->u.cmd[0]); |
| 425 | |
Tomas Winkler | fcab423 | 2008-05-15 13:54:01 +0800 | [diff] [blame] | 426 | iwl_free_frame(priv, frame); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 427 | |
| 428 | return rc; |
| 429 | } |
| 430 | |
Samuel Ortiz | 7aaa1d7 | 2009-01-19 15:30:26 -0800 | [diff] [blame] | 431 | static inline dma_addr_t iwl_tfd_tb_get_addr(struct iwl_tfd *tfd, u8 idx) |
| 432 | { |
| 433 | struct iwl_tfd_tb *tb = &tfd->tbs[idx]; |
| 434 | |
| 435 | dma_addr_t addr = get_unaligned_le32(&tb->lo); |
| 436 | if (sizeof(dma_addr_t) > sizeof(u32)) |
| 437 | addr |= |
| 438 | ((dma_addr_t)(le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << 16; |
| 439 | |
| 440 | return addr; |
| 441 | } |
| 442 | |
| 443 | static inline u16 iwl_tfd_tb_get_len(struct iwl_tfd *tfd, u8 idx) |
| 444 | { |
| 445 | struct iwl_tfd_tb *tb = &tfd->tbs[idx]; |
| 446 | |
| 447 | return le16_to_cpu(tb->hi_n_len) >> 4; |
| 448 | } |
| 449 | |
| 450 | static inline void iwl_tfd_set_tb(struct iwl_tfd *tfd, u8 idx, |
| 451 | dma_addr_t addr, u16 len) |
| 452 | { |
| 453 | struct iwl_tfd_tb *tb = &tfd->tbs[idx]; |
| 454 | u16 hi_n_len = len << 4; |
| 455 | |
| 456 | put_unaligned_le32(addr, &tb->lo); |
| 457 | if (sizeof(dma_addr_t) > sizeof(u32)) |
| 458 | hi_n_len |= ((addr >> 16) >> 16) & 0xF; |
| 459 | |
| 460 | tb->hi_n_len = cpu_to_le16(hi_n_len); |
| 461 | |
| 462 | tfd->num_tbs = idx + 1; |
| 463 | } |
| 464 | |
| 465 | static inline u8 iwl_tfd_get_num_tbs(struct iwl_tfd *tfd) |
| 466 | { |
| 467 | return tfd->num_tbs & 0x1f; |
| 468 | } |
| 469 | |
| 470 | /** |
| 471 | * iwl_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr] |
| 472 | * @priv - driver private data |
| 473 | * @txq - tx queue |
| 474 | * |
| 475 | * Does NOT advance any TFD circular buffer read/write indexes |
| 476 | * Does NOT free the TFD itself (which is within circular buffer) |
| 477 | */ |
| 478 | void iwl_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq) |
| 479 | { |
Samuel Ortiz | 59606ff | 2009-01-23 13:45:13 -0800 | [diff] [blame] | 480 | struct iwl_tfd *tfd_tmp = (struct iwl_tfd *)txq->tfds; |
Samuel Ortiz | 7aaa1d7 | 2009-01-19 15:30:26 -0800 | [diff] [blame] | 481 | struct iwl_tfd *tfd; |
| 482 | struct pci_dev *dev = priv->pci_dev; |
| 483 | int index = txq->q.read_ptr; |
| 484 | int i; |
| 485 | int num_tbs; |
| 486 | |
| 487 | tfd = &tfd_tmp[index]; |
| 488 | |
| 489 | /* Sanity check on number of chunks */ |
| 490 | num_tbs = iwl_tfd_get_num_tbs(tfd); |
| 491 | |
| 492 | if (num_tbs >= IWL_NUM_OF_TBS) { |
| 493 | IWL_ERR(priv, "Too many chunks: %i\n", num_tbs); |
| 494 | /* @todo issue fatal error, it is quite serious situation */ |
| 495 | return; |
| 496 | } |
| 497 | |
| 498 | /* Unmap tx_cmd */ |
| 499 | if (num_tbs) |
| 500 | pci_unmap_single(dev, |
FUJITA Tomonori | 2e72444 | 2010-06-03 14:19:20 +0900 | [diff] [blame] | 501 | dma_unmap_addr(&txq->meta[index], mapping), |
| 502 | dma_unmap_len(&txq->meta[index], len), |
Fenghua Yu | 96891ce | 2009-02-18 15:54:33 -0800 | [diff] [blame] | 503 | PCI_DMA_BIDIRECTIONAL); |
Samuel Ortiz | 7aaa1d7 | 2009-01-19 15:30:26 -0800 | [diff] [blame] | 504 | |
| 505 | /* Unmap chunks, if any. */ |
Johannes Berg | ff0d91c | 2010-05-17 02:37:34 -0700 | [diff] [blame] | 506 | for (i = 1; i < num_tbs; i++) |
Samuel Ortiz | 7aaa1d7 | 2009-01-19 15:30:26 -0800 | [diff] [blame] | 507 | pci_unmap_single(dev, iwl_tfd_tb_get_addr(tfd, i), |
| 508 | iwl_tfd_tb_get_len(tfd, i), PCI_DMA_TODEVICE); |
| 509 | |
Johannes Berg | ff0d91c | 2010-05-17 02:37:34 -0700 | [diff] [blame] | 510 | /* free SKB */ |
| 511 | if (txq->txb) { |
| 512 | struct sk_buff *skb; |
Johannes Berg | 6f80240 | 2010-05-17 02:37:32 -0700 | [diff] [blame] | 513 | |
Johannes Berg | ff0d91c | 2010-05-17 02:37:34 -0700 | [diff] [blame] | 514 | skb = txq->txb[txq->q.read_ptr].skb; |
Johannes Berg | 6f80240 | 2010-05-17 02:37:32 -0700 | [diff] [blame] | 515 | |
Johannes Berg | ff0d91c | 2010-05-17 02:37:34 -0700 | [diff] [blame] | 516 | /* can be called from irqs-disabled context */ |
| 517 | if (skb) { |
| 518 | dev_kfree_skb_any(skb); |
| 519 | txq->txb[txq->q.read_ptr].skb = NULL; |
Samuel Ortiz | 7aaa1d7 | 2009-01-19 15:30:26 -0800 | [diff] [blame] | 520 | } |
| 521 | } |
| 522 | } |
| 523 | |
| 524 | int iwl_hw_txq_attach_buf_to_tfd(struct iwl_priv *priv, |
| 525 | struct iwl_tx_queue *txq, |
| 526 | dma_addr_t addr, u16 len, |
| 527 | u8 reset, u8 pad) |
| 528 | { |
| 529 | struct iwl_queue *q; |
Samuel Ortiz | 59606ff | 2009-01-23 13:45:13 -0800 | [diff] [blame] | 530 | struct iwl_tfd *tfd, *tfd_tmp; |
Samuel Ortiz | 7aaa1d7 | 2009-01-19 15:30:26 -0800 | [diff] [blame] | 531 | u32 num_tbs; |
| 532 | |
| 533 | q = &txq->q; |
Samuel Ortiz | 59606ff | 2009-01-23 13:45:13 -0800 | [diff] [blame] | 534 | tfd_tmp = (struct iwl_tfd *)txq->tfds; |
| 535 | tfd = &tfd_tmp[q->write_ptr]; |
Samuel Ortiz | 7aaa1d7 | 2009-01-19 15:30:26 -0800 | [diff] [blame] | 536 | |
| 537 | if (reset) |
| 538 | memset(tfd, 0, sizeof(*tfd)); |
| 539 | |
| 540 | num_tbs = iwl_tfd_get_num_tbs(tfd); |
| 541 | |
| 542 | /* Each TFD can point to a maximum 20 Tx buffers */ |
| 543 | if (num_tbs >= IWL_NUM_OF_TBS) { |
| 544 | IWL_ERR(priv, "Error can not send more than %d chunks\n", |
| 545 | IWL_NUM_OF_TBS); |
| 546 | return -EINVAL; |
| 547 | } |
| 548 | |
| 549 | BUG_ON(addr & ~DMA_BIT_MASK(36)); |
| 550 | if (unlikely(addr & ~IWL_TX_DMA_MASK)) |
| 551 | IWL_ERR(priv, "Unaligned address = %llx\n", |
| 552 | (unsigned long long)addr); |
| 553 | |
| 554 | iwl_tfd_set_tb(tfd, num_tbs, addr, len); |
| 555 | |
| 556 | return 0; |
| 557 | } |
| 558 | |
Samuel Ortiz | a8e74e27 | 2009-01-23 13:45:14 -0800 | [diff] [blame] | 559 | /* |
| 560 | * Tell nic where to find circular buffer of Tx Frame Descriptors for |
| 561 | * given Tx queue, and enable the DMA channel used for that queue. |
| 562 | * |
| 563 | * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA |
| 564 | * channels supported in hardware. |
| 565 | */ |
| 566 | int iwl_hw_tx_queue_init(struct iwl_priv *priv, |
| 567 | struct iwl_tx_queue *txq) |
| 568 | { |
Samuel Ortiz | a8e74e27 | 2009-01-23 13:45:14 -0800 | [diff] [blame] | 569 | int txq_id = txq->q.id; |
| 570 | |
Samuel Ortiz | a8e74e27 | 2009-01-23 13:45:14 -0800 | [diff] [blame] | 571 | /* Circular buffer (TFD queue in DRAM) physical base address */ |
| 572 | iwl_write_direct32(priv, FH_MEM_CBBC_QUEUE(txq_id), |
| 573 | txq->q.dma_addr >> 8); |
| 574 | |
Samuel Ortiz | a8e74e27 | 2009-01-23 13:45:14 -0800 | [diff] [blame] | 575 | return 0; |
| 576 | } |
| 577 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 578 | /****************************************************************************** |
| 579 | * |
| 580 | * Generic RX handler implementations |
| 581 | * |
| 582 | ******************************************************************************/ |
Tomas Winkler | 885ba20 | 2008-05-29 16:34:55 +0800 | [diff] [blame] | 583 | static void iwl_rx_reply_alive(struct iwl_priv *priv, |
| 584 | struct iwl_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 585 | { |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 586 | struct iwl_rx_packet *pkt = rxb_addr(rxb); |
Tomas Winkler | 885ba20 | 2008-05-29 16:34:55 +0800 | [diff] [blame] | 587 | struct iwl_alive_resp *palive; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 588 | struct delayed_work *pwork; |
| 589 | |
| 590 | palive = &pkt->u.alive_frame; |
| 591 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 592 | IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision " |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 593 | "0x%01X 0x%01X\n", |
| 594 | palive->is_valid, palive->ver_type, |
| 595 | palive->ver_subtype); |
| 596 | |
| 597 | if (palive->ver_subtype == INITIALIZE_SUBTYPE) { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 598 | IWL_DEBUG_INFO(priv, "Initialization Alive received.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 599 | memcpy(&priv->card_alive_init, |
| 600 | &pkt->u.alive_frame, |
Tomas Winkler | 885ba20 | 2008-05-29 16:34:55 +0800 | [diff] [blame] | 601 | sizeof(struct iwl_init_alive_resp)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 602 | pwork = &priv->init_alive_start; |
| 603 | } else { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 604 | IWL_DEBUG_INFO(priv, "Runtime Alive received.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 605 | memcpy(&priv->card_alive, &pkt->u.alive_frame, |
Tomas Winkler | 885ba20 | 2008-05-29 16:34:55 +0800 | [diff] [blame] | 606 | sizeof(struct iwl_alive_resp)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 607 | pwork = &priv->alive_start; |
| 608 | } |
| 609 | |
| 610 | /* We delay the ALIVE response by 5ms to |
| 611 | * give the HW RF Kill time to activate... */ |
| 612 | if (palive->is_valid == UCODE_VALID_OK) |
| 613 | queue_delayed_work(priv->workqueue, pwork, |
| 614 | msecs_to_jiffies(5)); |
| 615 | else |
Winkler, Tomas | 39aadf8 | 2008-12-19 10:37:32 +0800 | [diff] [blame] | 616 | IWL_WARN(priv, "uCode did not respond OK.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 617 | } |
| 618 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 619 | static void iwl_bg_beacon_update(struct work_struct *work) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 620 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 621 | struct iwl_priv *priv = |
| 622 | container_of(work, struct iwl_priv, beacon_update); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 623 | struct sk_buff *beacon; |
| 624 | |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 625 | mutex_lock(&priv->mutex); |
| 626 | if (!priv->beacon_ctx) { |
| 627 | IWL_ERR(priv, "updating beacon w/o beacon context!\n"); |
| 628 | goto out; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 629 | } |
| 630 | |
Johannes Berg | 60744f6 | 2010-08-23 10:46:50 +0200 | [diff] [blame] | 631 | if (priv->beacon_ctx->vif->type != NL80211_IFTYPE_AP) { |
| 632 | /* |
| 633 | * The ucode will send beacon notifications even in |
| 634 | * IBSS mode, but we don't want to process them. But |
| 635 | * we need to defer the type check to here due to |
| 636 | * requiring locking around the beacon_ctx access. |
| 637 | */ |
| 638 | goto out; |
| 639 | } |
| 640 | |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 641 | /* Pull updated AP beacon from mac80211. will fail if not in AP mode */ |
| 642 | beacon = ieee80211_beacon_get(priv->hw, priv->beacon_ctx->vif); |
| 643 | if (!beacon) { |
| 644 | IWL_ERR(priv, "update beacon failed\n"); |
| 645 | goto out; |
| 646 | } |
| 647 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 648 | /* new beacon skb is allocated every time; dispose previous.*/ |
| 649 | if (priv->ibss_beacon) |
| 650 | dev_kfree_skb(priv->ibss_beacon); |
| 651 | |
| 652 | priv->ibss_beacon = beacon; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 653 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 654 | iwl_send_beacon_cmd(priv); |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 655 | out: |
| 656 | mutex_unlock(&priv->mutex); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 657 | } |
| 658 | |
Wey-Yi Guy | fbba941 | 2010-08-23 07:57:10 -0700 | [diff] [blame] | 659 | static void iwl_bg_bt_runtime_config(struct work_struct *work) |
| 660 | { |
| 661 | struct iwl_priv *priv = |
| 662 | container_of(work, struct iwl_priv, bt_runtime_config); |
| 663 | |
| 664 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 665 | return; |
| 666 | |
| 667 | /* dont send host command if rf-kill is on */ |
| 668 | if (!iwl_is_ready_rf(priv)) |
| 669 | return; |
| 670 | priv->cfg->ops->hcmd->send_bt_config(priv); |
| 671 | } |
| 672 | |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 673 | static void iwl_bg_bt_full_concurrency(struct work_struct *work) |
| 674 | { |
| 675 | struct iwl_priv *priv = |
| 676 | container_of(work, struct iwl_priv, bt_full_concurrency); |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 677 | struct iwl_rxon_context *ctx; |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 678 | |
| 679 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 680 | return; |
| 681 | |
| 682 | /* dont send host command if rf-kill is on */ |
| 683 | if (!iwl_is_ready_rf(priv)) |
| 684 | return; |
| 685 | |
| 686 | IWL_DEBUG_INFO(priv, "BT coex in %s mode\n", |
| 687 | priv->bt_full_concurrent ? |
| 688 | "full concurrency" : "3-wire"); |
| 689 | |
| 690 | /* |
| 691 | * LQ & RXON updated cmds must be sent before BT Config cmd |
| 692 | * to avoid 3-wire collisions |
| 693 | */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 694 | mutex_lock(&priv->mutex); |
| 695 | for_each_context(priv, ctx) { |
| 696 | if (priv->cfg->ops->hcmd->set_rxon_chain) |
| 697 | priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx); |
| 698 | iwlcore_commit_rxon(priv, ctx); |
| 699 | } |
| 700 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 701 | |
| 702 | priv->cfg->ops->hcmd->send_bt_config(priv); |
| 703 | } |
| 704 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 705 | /** |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 706 | * iwl_bg_statistics_periodic - Timer callback to queue statistics |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 707 | * |
| 708 | * This callback is provided in order to send a statistics request. |
| 709 | * |
| 710 | * This timer function is continually reset to execute within |
| 711 | * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION |
| 712 | * was received. We need to ensure we receive the statistics in order |
| 713 | * to update the temperature used for calibrating the TXPOWER. |
| 714 | */ |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 715 | static void iwl_bg_statistics_periodic(unsigned long data) |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 716 | { |
| 717 | struct iwl_priv *priv = (struct iwl_priv *)data; |
| 718 | |
| 719 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 720 | return; |
| 721 | |
Mohamed Abbas | 61780ee | 2008-10-29 14:05:49 -0700 | [diff] [blame] | 722 | /* dont send host command if rf-kill is on */ |
| 723 | if (!iwl_is_ready_rf(priv)) |
| 724 | return; |
| 725 | |
Wey-Yi Guy | ef8d552 | 2009-11-13 11:56:28 -0800 | [diff] [blame] | 726 | iwl_send_statistics_request(priv, CMD_ASYNC, false); |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 727 | } |
| 728 | |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 729 | |
| 730 | static void iwl_print_cont_event_trace(struct iwl_priv *priv, u32 base, |
| 731 | u32 start_idx, u32 num_events, |
| 732 | u32 mode) |
| 733 | { |
| 734 | u32 i; |
| 735 | u32 ptr; /* SRAM byte address of log data */ |
| 736 | u32 ev, time, data; /* event log data */ |
| 737 | unsigned long reg_flags; |
| 738 | |
| 739 | if (mode == 0) |
| 740 | ptr = base + (4 * sizeof(u32)) + (start_idx * 2 * sizeof(u32)); |
| 741 | else |
| 742 | ptr = base + (4 * sizeof(u32)) + (start_idx * 3 * sizeof(u32)); |
| 743 | |
| 744 | /* Make sure device is powered up for SRAM reads */ |
| 745 | spin_lock_irqsave(&priv->reg_lock, reg_flags); |
| 746 | if (iwl_grab_nic_access(priv)) { |
| 747 | spin_unlock_irqrestore(&priv->reg_lock, reg_flags); |
| 748 | return; |
| 749 | } |
| 750 | |
| 751 | /* Set starting address; reads will auto-increment */ |
| 752 | _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr); |
| 753 | rmb(); |
| 754 | |
| 755 | /* |
| 756 | * "time" is actually "data" for mode 0 (no timestamp). |
| 757 | * place event id # at far right for easier visual parsing. |
| 758 | */ |
| 759 | for (i = 0; i < num_events; i++) { |
| 760 | ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT); |
| 761 | time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT); |
| 762 | if (mode == 0) { |
| 763 | trace_iwlwifi_dev_ucode_cont_event(priv, |
| 764 | 0, time, ev); |
| 765 | } else { |
| 766 | data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT); |
| 767 | trace_iwlwifi_dev_ucode_cont_event(priv, |
| 768 | time, data, ev); |
| 769 | } |
| 770 | } |
| 771 | /* Allow device to power down */ |
| 772 | iwl_release_nic_access(priv); |
| 773 | spin_unlock_irqrestore(&priv->reg_lock, reg_flags); |
| 774 | } |
| 775 | |
Johannes Berg | 875295f | 2010-01-22 14:22:55 -0800 | [diff] [blame] | 776 | static void iwl_continuous_event_trace(struct iwl_priv *priv) |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 777 | { |
| 778 | u32 capacity; /* event log capacity in # entries */ |
| 779 | u32 base; /* SRAM byte address of event log header */ |
| 780 | u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */ |
| 781 | u32 num_wraps; /* # times uCode wrapped to top of log */ |
| 782 | u32 next_entry; /* index of next entry to be written by uCode */ |
| 783 | |
| 784 | if (priv->ucode_type == UCODE_INIT) |
| 785 | base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr); |
| 786 | else |
| 787 | base = le32_to_cpu(priv->card_alive.log_event_table_ptr); |
| 788 | if (priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) { |
| 789 | capacity = iwl_read_targ_mem(priv, base); |
| 790 | num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32))); |
| 791 | mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32))); |
| 792 | next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32))); |
| 793 | } else |
| 794 | return; |
| 795 | |
| 796 | if (num_wraps == priv->event_log.num_wraps) { |
| 797 | iwl_print_cont_event_trace(priv, |
| 798 | base, priv->event_log.next_entry, |
| 799 | next_entry - priv->event_log.next_entry, |
| 800 | mode); |
| 801 | priv->event_log.non_wraps_count++; |
| 802 | } else { |
| 803 | if ((num_wraps - priv->event_log.num_wraps) > 1) |
| 804 | priv->event_log.wraps_more_count++; |
| 805 | else |
| 806 | priv->event_log.wraps_once_count++; |
| 807 | trace_iwlwifi_dev_ucode_wrap_event(priv, |
| 808 | num_wraps - priv->event_log.num_wraps, |
| 809 | next_entry, priv->event_log.next_entry); |
| 810 | if (next_entry < priv->event_log.next_entry) { |
| 811 | iwl_print_cont_event_trace(priv, base, |
| 812 | priv->event_log.next_entry, |
| 813 | capacity - priv->event_log.next_entry, |
| 814 | mode); |
| 815 | |
| 816 | iwl_print_cont_event_trace(priv, base, 0, |
| 817 | next_entry, mode); |
| 818 | } else { |
| 819 | iwl_print_cont_event_trace(priv, base, |
| 820 | next_entry, capacity - next_entry, |
| 821 | mode); |
| 822 | |
| 823 | iwl_print_cont_event_trace(priv, base, 0, |
| 824 | next_entry, mode); |
| 825 | } |
| 826 | } |
| 827 | priv->event_log.num_wraps = num_wraps; |
| 828 | priv->event_log.next_entry = next_entry; |
| 829 | } |
| 830 | |
| 831 | /** |
| 832 | * iwl_bg_ucode_trace - Timer callback to log ucode event |
| 833 | * |
| 834 | * The timer is continually set to execute every |
| 835 | * UCODE_TRACE_PERIOD milliseconds after the last timer expired |
| 836 | * this function is to perform continuous uCode event logging operation |
| 837 | * if enabled |
| 838 | */ |
| 839 | static void iwl_bg_ucode_trace(unsigned long data) |
| 840 | { |
| 841 | struct iwl_priv *priv = (struct iwl_priv *)data; |
| 842 | |
| 843 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 844 | return; |
| 845 | |
| 846 | if (priv->event_log.ucode_trace) { |
| 847 | iwl_continuous_event_trace(priv); |
| 848 | /* Reschedule the timer to occur in UCODE_TRACE_PERIOD */ |
| 849 | mod_timer(&priv->ucode_trace, |
| 850 | jiffies + msecs_to_jiffies(UCODE_TRACE_PERIOD)); |
| 851 | } |
| 852 | } |
| 853 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 854 | static void iwl_rx_beacon_notif(struct iwl_priv *priv, |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 855 | struct iwl_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 856 | { |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 857 | struct iwl_rx_packet *pkt = rxb_addr(rxb); |
Tomas Winkler | 2aa6ab8 | 2008-12-11 10:33:40 -0800 | [diff] [blame] | 858 | struct iwl4965_beacon_notif *beacon = |
| 859 | (struct iwl4965_beacon_notif *)pkt->u.raw; |
Johannes Berg | a85d7cc | 2010-07-31 08:34:10 -0700 | [diff] [blame] | 860 | #ifdef CONFIG_IWLWIFI_DEBUG |
Tomas Winkler | e7d326ac | 2008-06-12 09:47:11 +0800 | [diff] [blame] | 861 | 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] | 862 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 863 | IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d " |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 864 | "tsf %d %d rate %d\n", |
Tomas Winkler | 25a6572 | 2008-06-12 09:47:07 +0800 | [diff] [blame] | 865 | le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 866 | beacon->beacon_notify_hdr.failure_frame, |
| 867 | le32_to_cpu(beacon->ibss_mgr_status), |
| 868 | le32_to_cpu(beacon->high_tsf), |
| 869 | le32_to_cpu(beacon->low_tsf), rate); |
| 870 | #endif |
| 871 | |
Johannes Berg | a85d7cc | 2010-07-31 08:34:10 -0700 | [diff] [blame] | 872 | priv->ibss_manager = le32_to_cpu(beacon->ibss_mgr_status); |
| 873 | |
Johannes Berg | 60744f6 | 2010-08-23 10:46:50 +0200 | [diff] [blame] | 874 | if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 875 | queue_work(priv->workqueue, &priv->beacon_update); |
| 876 | } |
| 877 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 878 | /* Handle notification from uCode that card's power state is changing |
| 879 | * due to software, hardware, or critical temperature RFKILL */ |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 880 | static void iwl_rx_card_state_notif(struct iwl_priv *priv, |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 881 | struct iwl_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 882 | { |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 883 | struct iwl_rx_packet *pkt = rxb_addr(rxb); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 884 | u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags); |
| 885 | unsigned long status = priv->status; |
| 886 | |
Wey-Yi Guy | 3a41bbd | 2009-12-10 14:37:24 -0800 | [diff] [blame] | 887 | 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] | 888 | (flags & HW_CARD_DISABLED) ? "Kill" : "On", |
Wey-Yi Guy | 3a41bbd | 2009-12-10 14:37:24 -0800 | [diff] [blame] | 889 | (flags & SW_CARD_DISABLED) ? "Kill" : "On", |
| 890 | (flags & CT_CARD_DISABLED) ? |
| 891 | "Reached" : "Not reached"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 892 | |
| 893 | if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED | |
Wey-Yi Guy | 3a41bbd | 2009-12-10 14:37:24 -0800 | [diff] [blame] | 894 | CT_CARD_DISABLED)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 895 | |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 896 | iwl_write32(priv, CSR_UCODE_DRV_GP1_SET, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 897 | CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED); |
| 898 | |
Mohamed Abbas | a8b50a0 | 2009-05-22 11:01:47 -0700 | [diff] [blame] | 899 | iwl_write_direct32(priv, HBUS_TARG_MBX_C, |
| 900 | HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 901 | |
| 902 | if (!(flags & RXON_CARD_DISABLED)) { |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 903 | iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 904 | CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED); |
Mohamed Abbas | a8b50a0 | 2009-05-22 11:01:47 -0700 | [diff] [blame] | 905 | iwl_write_direct32(priv, HBUS_TARG_MBX_C, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 906 | HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 907 | } |
Wey-Yi Guy | 3a41bbd | 2009-12-10 14:37:24 -0800 | [diff] [blame] | 908 | if (flags & CT_CARD_DISABLED) |
Wey-Yi Guy | 39b73fb1 | 2009-07-24 11:13:02 -0700 | [diff] [blame] | 909 | iwl_tt_enter_ct_kill(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 910 | } |
Wey-Yi Guy | 3a41bbd | 2009-12-10 14:37:24 -0800 | [diff] [blame] | 911 | if (!(flags & CT_CARD_DISABLED)) |
Wey-Yi Guy | 39b73fb1 | 2009-07-24 11:13:02 -0700 | [diff] [blame] | 912 | iwl_tt_exit_ct_kill(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 913 | |
| 914 | if (flags & HW_CARD_DISABLED) |
| 915 | set_bit(STATUS_RF_KILL_HW, &priv->status); |
| 916 | else |
| 917 | clear_bit(STATUS_RF_KILL_HW, &priv->status); |
| 918 | |
| 919 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 920 | if (!(flags & RXON_CARD_DISABLED)) |
Tomas Winkler | 2a421b9 | 2008-06-12 09:47:10 +0800 | [diff] [blame] | 921 | iwl_scan_cancel(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 922 | |
| 923 | if ((test_bit(STATUS_RF_KILL_HW, &status) != |
Johannes Berg | a60e77e | 2009-06-04 18:26:06 +0200 | [diff] [blame] | 924 | test_bit(STATUS_RF_KILL_HW, &priv->status))) |
| 925 | wiphy_rfkill_set_hw_state(priv->hw->wiphy, |
| 926 | test_bit(STATUS_RF_KILL_HW, &priv->status)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 927 | else |
| 928 | wake_up_interruptible(&priv->wait_command_queue); |
| 929 | } |
| 930 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 931 | 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] | 932 | { |
Tomas Winkler | e2e3c57 | 2008-07-18 13:53:04 +0800 | [diff] [blame] | 933 | if (src == IWL_PWR_SRC_VAUX) { |
Tomas Winkler | 3fdb68d | 2009-02-10 15:19:02 -0800 | [diff] [blame] | 934 | if (pci_pme_capable(priv->pci_dev, PCI_D3cold)) |
Tomas Winkler | e2e3c57 | 2008-07-18 13:53:04 +0800 | [diff] [blame] | 935 | iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG, |
| 936 | APMG_PS_CTRL_VAL_PWR_SRC_VAUX, |
| 937 | ~APMG_PS_CTRL_MSK_PWR_SRC); |
| 938 | } else { |
| 939 | iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG, |
| 940 | APMG_PS_CTRL_VAL_PWR_SRC_VMAIN, |
| 941 | ~APMG_PS_CTRL_MSK_PWR_SRC); |
| 942 | } |
| 943 | |
Mohamed Abbas | a8b50a0 | 2009-05-22 11:01:47 -0700 | [diff] [blame] | 944 | return 0; |
Tomas Winkler | e2e3c57 | 2008-07-18 13:53:04 +0800 | [diff] [blame] | 945 | } |
| 946 | |
Wey-Yi Guy | 6555063 | 2010-06-24 13:18:35 -0700 | [diff] [blame] | 947 | static void iwl_bg_tx_flush(struct work_struct *work) |
| 948 | { |
| 949 | struct iwl_priv *priv = |
| 950 | container_of(work, struct iwl_priv, tx_flush); |
| 951 | |
| 952 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 953 | return; |
| 954 | |
| 955 | /* do nothing if rf-kill is on */ |
| 956 | if (!iwl_is_ready_rf(priv)) |
| 957 | return; |
| 958 | |
| 959 | if (priv->cfg->ops->lib->txfifo_flush) { |
| 960 | IWL_DEBUG_INFO(priv, "device request: flush all tx frames\n"); |
| 961 | iwlagn_dev_txfifo_flush(priv, IWL_DROP_ALL); |
| 962 | } |
| 963 | } |
| 964 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 965 | /** |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 966 | * iwl_setup_rx_handlers - Initialize Rx handler callbacks |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 967 | * |
| 968 | * Setup the RX handlers for each of the reply types sent from the uCode |
| 969 | * to the host. |
| 970 | * |
| 971 | * This function chains into the hardware specific files for them to setup |
| 972 | * any hardware specific handlers as well. |
| 973 | */ |
Emmanuel Grumbach | 653fa4a | 2008-06-30 17:23:11 +0800 | [diff] [blame] | 974 | static void iwl_setup_rx_handlers(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 975 | { |
Tomas Winkler | 885ba20 | 2008-05-29 16:34:55 +0800 | [diff] [blame] | 976 | priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive; |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 977 | priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error; |
| 978 | priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa; |
Reinette Chatre | 81963d6 | 2010-01-22 14:22:57 -0800 | [diff] [blame] | 979 | priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] = |
| 980 | iwl_rx_spectrum_measure_notif; |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 981 | priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 982 | priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] = |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 983 | iwl_rx_pm_debug_statistics_notif; |
| 984 | priv->rx_handlers[BEACON_NOTIFICATION] = iwl_rx_beacon_notif; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 985 | |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 986 | /* |
| 987 | * The same handler is used for both the REPLY to a discrete |
| 988 | * statistics request from the host as well as for the periodic |
| 989 | * statistics notifications (after received beacons) from the uCode. |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 990 | */ |
Wey-Yi Guy | ef8d552 | 2009-11-13 11:56:28 -0800 | [diff] [blame] | 991 | priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl_reply_statistics; |
Emmanuel Grumbach | 8f91aec | 2008-06-30 17:23:07 +0800 | [diff] [blame] | 992 | priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl_rx_statistics; |
Tomas Winkler | 2a421b9 | 2008-06-12 09:47:10 +0800 | [diff] [blame] | 993 | |
| 994 | iwl_setup_rx_scan_handlers(priv); |
| 995 | |
Ron Rindjunsky | 37a4421 | 2008-05-29 16:35:18 +0800 | [diff] [blame] | 996 | /* status change handler */ |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 997 | priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl_rx_card_state_notif; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 998 | |
Tomas Winkler | c135475 | 2008-05-29 16:35:04 +0800 | [diff] [blame] | 999 | priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] = |
| 1000 | iwl_rx_missed_beacon_notif; |
Ron Rindjunsky | 37a4421 | 2008-05-29 16:35:18 +0800 | [diff] [blame] | 1001 | /* Rx handlers */ |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 1002 | priv->rx_handlers[REPLY_RX_PHY_CMD] = iwlagn_rx_reply_rx_phy; |
| 1003 | priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwlagn_rx_reply_rx; |
Emmanuel Grumbach | 653fa4a | 2008-06-30 17:23:11 +0800 | [diff] [blame] | 1004 | /* block ack */ |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1005 | priv->rx_handlers[REPLY_COMPRESSED_BA] = iwlagn_rx_reply_compressed_ba; |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 1006 | /* Set up hardware specific Rx handlers */ |
Emmanuel Grumbach | d4789ef | 2008-04-24 11:55:20 -0700 | [diff] [blame] | 1007 | priv->cfg->ops->lib->rx_handler_setup(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1008 | } |
| 1009 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1010 | /** |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 1011 | * iwl_rx_handle - Main entry function for receiving responses from uCode |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1012 | * |
| 1013 | * Uses the priv->rx_handlers callback function array to invoke |
| 1014 | * the appropriate handlers, including command responses, |
| 1015 | * frame-received notifications, and other notifications. |
| 1016 | */ |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 1017 | void iwl_rx_handle(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1018 | { |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 1019 | struct iwl_rx_mem_buffer *rxb; |
Tomas Winkler | db11d63 | 2008-05-05 10:22:33 +0800 | [diff] [blame] | 1020 | struct iwl_rx_packet *pkt; |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 1021 | struct iwl_rx_queue *rxq = &priv->rxq; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1022 | u32 r, i; |
| 1023 | int reclaim; |
| 1024 | unsigned long flags; |
Mohamed Abbas | 5c0eef9 | 2007-11-29 11:10:14 +0800 | [diff] [blame] | 1025 | u8 fill_rx = 0; |
Mohamed Abbas | d68ab68 | 2008-02-07 13:16:33 -0800 | [diff] [blame] | 1026 | u32 count = 8; |
Mohamed Abbas | 4752c93 | 2009-05-22 11:01:51 -0700 | [diff] [blame] | 1027 | int total_empty; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1028 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 1029 | /* uCode's read index (stored in shared DRAM) indicates the last Rx |
| 1030 | * buffer that the driver may process (last buffer filled by ucode). */ |
Winkler, Tomas | 8d86422 | 2008-11-07 09:58:39 -0800 | [diff] [blame] | 1031 | r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1032 | i = rxq->read; |
| 1033 | |
| 1034 | /* Rx interrupt, but nothing sent from uCode */ |
| 1035 | if (i == r) |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 1036 | IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1037 | |
Mohamed Abbas | 4752c93 | 2009-05-22 11:01:51 -0700 | [diff] [blame] | 1038 | /* calculate total frames need to be restock after handling RX */ |
Zhu Yi | 7300515 | 2009-10-23 13:42:32 -0700 | [diff] [blame] | 1039 | total_empty = r - rxq->write_actual; |
Mohamed Abbas | 4752c93 | 2009-05-22 11:01:51 -0700 | [diff] [blame] | 1040 | if (total_empty < 0) |
| 1041 | total_empty += RX_QUEUE_SIZE; |
| 1042 | |
| 1043 | if (total_empty > (RX_QUEUE_SIZE / 2)) |
Mohamed Abbas | 5c0eef9 | 2007-11-29 11:10:14 +0800 | [diff] [blame] | 1044 | fill_rx = 1; |
| 1045 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1046 | while (i != r) { |
Johannes Berg | f4989d9 | 2010-05-28 04:08:30 -0700 | [diff] [blame] | 1047 | int len; |
| 1048 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1049 | rxb = rxq->queue[i]; |
| 1050 | |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 1051 | /* 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] | 1052 | * then a bug has been introduced in the queue refilling |
| 1053 | * routines -- catch it here */ |
| 1054 | BUG_ON(rxb == NULL); |
| 1055 | |
| 1056 | rxq->queue[i] = NULL; |
| 1057 | |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 1058 | pci_unmap_page(priv->pci_dev, rxb->page_dma, |
| 1059 | PAGE_SIZE << priv->hw_params.rx_page_order, |
| 1060 | PCI_DMA_FROMDEVICE); |
| 1061 | pkt = rxb_addr(rxb); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1062 | |
Johannes Berg | f4989d9 | 2010-05-28 04:08:30 -0700 | [diff] [blame] | 1063 | len = le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK; |
| 1064 | len += sizeof(u32); /* account for status word */ |
| 1065 | trace_iwlwifi_dev_rx(priv, pkt, len); |
Johannes Berg | be1a71a | 2009-10-02 13:44:02 -0700 | [diff] [blame] | 1066 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1067 | /* Reclaim a command buffer only if this packet is a response |
| 1068 | * to a (driver-originated) command. |
| 1069 | * If the packet (e.g. Rx frame) originated from uCode, |
| 1070 | * there is no command buffer to reclaim. |
| 1071 | * Ucode should set SEQ_RX_FRAME bit if ucode-originated, |
| 1072 | * but apparently a few don't get set; catch them here. */ |
| 1073 | reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) && |
| 1074 | (pkt->hdr.cmd != REPLY_RX_PHY_CMD) && |
Tomas Winkler | 857485c | 2008-03-21 13:53:44 -0700 | [diff] [blame] | 1075 | (pkt->hdr.cmd != REPLY_RX) && |
Daniel Halperin | 7dddaf1 | 2008-10-23 23:48:58 -0700 | [diff] [blame] | 1076 | (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) && |
Zhu Yi | cfe0170 | 2007-09-27 11:27:31 +0800 | [diff] [blame] | 1077 | (pkt->hdr.cmd != REPLY_COMPRESSED_BA) && |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1078 | (pkt->hdr.cmd != STATISTICS_NOTIFICATION) && |
| 1079 | (pkt->hdr.cmd != REPLY_TX); |
| 1080 | |
| 1081 | /* Based on type of command response or notification, |
| 1082 | * handle those that need handling via function in |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 1083 | * rx_handlers table. See iwl_setup_rx_handlers() */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1084 | if (priv->rx_handlers[pkt->hdr.cmd]) { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 1085 | 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] | 1086 | i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd); |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1087 | priv->isr_stats.rx_handlers[pkt->hdr.cmd]++; |
Zhu Yi | 29b1b26 | 2009-10-23 13:42:25 -0700 | [diff] [blame] | 1088 | priv->rx_handlers[pkt->hdr.cmd] (priv, rxb); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1089 | } else { |
| 1090 | /* No handling needed */ |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 1091 | IWL_DEBUG_RX(priv, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1092 | "r %d i %d No handler needed for %s, 0x%02x\n", |
| 1093 | r, i, get_cmd_string(pkt->hdr.cmd), |
| 1094 | pkt->hdr.cmd); |
| 1095 | } |
| 1096 | |
Zhu Yi | 29b1b26 | 2009-10-23 13:42:25 -0700 | [diff] [blame] | 1097 | /* |
| 1098 | * XXX: After here, we should always check rxb->page |
| 1099 | * against NULL before touching it or its virtual |
| 1100 | * memory (pkt). Because some rx_handler might have |
| 1101 | * already taken or freed the pages. |
| 1102 | */ |
| 1103 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1104 | if (reclaim) { |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 1105 | /* Invoke any callbacks, transfer the buffer to caller, |
| 1106 | * and fire off the (possibly) blocking iwl_send_cmd() |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1107 | * as we reclaim the driver command queue */ |
Zhu Yi | 29b1b26 | 2009-10-23 13:42:25 -0700 | [diff] [blame] | 1108 | if (rxb->page) |
Tomas Winkler | 17b8892 | 2008-05-29 16:35:12 +0800 | [diff] [blame] | 1109 | iwl_tx_cmd_complete(priv, rxb); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1110 | else |
Winkler, Tomas | 39aadf8 | 2008-12-19 10:37:32 +0800 | [diff] [blame] | 1111 | IWL_WARN(priv, "Claim null rxb?\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1112 | } |
| 1113 | |
Zhu Yi | 7300515 | 2009-10-23 13:42:32 -0700 | [diff] [blame] | 1114 | /* Reuse the page if possible. For notification packets and |
| 1115 | * SKBs that fail to Rx correctly, add them back into the |
| 1116 | * rx_free list for reuse later. */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1117 | spin_lock_irqsave(&rxq->lock, flags); |
Zhu Yi | 7300515 | 2009-10-23 13:42:32 -0700 | [diff] [blame] | 1118 | if (rxb->page != NULL) { |
| 1119 | rxb->page_dma = pci_map_page(priv->pci_dev, rxb->page, |
| 1120 | 0, PAGE_SIZE << priv->hw_params.rx_page_order, |
| 1121 | PCI_DMA_FROMDEVICE); |
| 1122 | list_add_tail(&rxb->list, &rxq->rx_free); |
| 1123 | rxq->free_count++; |
| 1124 | } else |
| 1125 | list_add_tail(&rxb->list, &rxq->rx_used); |
| 1126 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1127 | spin_unlock_irqrestore(&rxq->lock, flags); |
Zhu Yi | 7300515 | 2009-10-23 13:42:32 -0700 | [diff] [blame] | 1128 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1129 | i = (i + 1) & RX_QUEUE_MASK; |
Mohamed Abbas | 5c0eef9 | 2007-11-29 11:10:14 +0800 | [diff] [blame] | 1130 | /* If there are a lot of unused frames, |
| 1131 | * restock the Rx queue so ucode wont assert. */ |
| 1132 | if (fill_rx) { |
| 1133 | count++; |
| 1134 | if (count >= 8) { |
Zhu Yi | 7300515 | 2009-10-23 13:42:32 -0700 | [diff] [blame] | 1135 | rxq->read = i; |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 1136 | iwlagn_rx_replenish_now(priv); |
Mohamed Abbas | 5c0eef9 | 2007-11-29 11:10:14 +0800 | [diff] [blame] | 1137 | count = 0; |
| 1138 | } |
| 1139 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1140 | } |
| 1141 | |
| 1142 | /* Backtrack one entry */ |
Zhu Yi | 7300515 | 2009-10-23 13:42:32 -0700 | [diff] [blame] | 1143 | rxq->read = i; |
Mohamed Abbas | 4752c93 | 2009-05-22 11:01:51 -0700 | [diff] [blame] | 1144 | if (fill_rx) |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 1145 | iwlagn_rx_replenish_now(priv); |
Mohamed Abbas | 4752c93 | 2009-05-22 11:01:51 -0700 | [diff] [blame] | 1146 | else |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 1147 | iwlagn_rx_queue_restock(priv); |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 1148 | } |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 1149 | |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 1150 | /* call this function to flush any scheduled tasklet */ |
| 1151 | static inline void iwl_synchronize_irq(struct iwl_priv *priv) |
| 1152 | { |
Tomas Winkler | a96a27f | 2008-10-23 23:48:56 -0700 | [diff] [blame] | 1153 | /* wait to make sure we flush pending tasklet*/ |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 1154 | synchronize_irq(priv->pci_dev->irq); |
| 1155 | tasklet_kill(&priv->irq_tasklet); |
| 1156 | } |
| 1157 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1158 | static void iwl_irq_tasklet_legacy(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1159 | { |
| 1160 | u32 inta, handled = 0; |
| 1161 | u32 inta_fh; |
| 1162 | unsigned long flags; |
Ben Cahill | c2e61da | 2009-10-30 14:36:09 -0700 | [diff] [blame] | 1163 | u32 i; |
Tomas Winkler | 0a6857e | 2008-03-12 16:58:49 -0700 | [diff] [blame] | 1164 | #ifdef CONFIG_IWLWIFI_DEBUG |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1165 | u32 inta_mask; |
| 1166 | #endif |
| 1167 | |
| 1168 | spin_lock_irqsave(&priv->lock, flags); |
| 1169 | |
| 1170 | /* Ack/clear/reset pending uCode interrupts. |
| 1171 | * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS, |
| 1172 | * and will clear only when CSR_FH_INT_STATUS gets cleared. */ |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 1173 | inta = iwl_read32(priv, CSR_INT); |
| 1174 | iwl_write32(priv, CSR_INT, inta); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1175 | |
| 1176 | /* Ack/clear/reset pending flow-handler (DMA) interrupts. |
| 1177 | * Any new interrupts that happen after this, either while we're |
| 1178 | * in this tasklet, or later, will show up in next ISR/tasklet. */ |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 1179 | inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS); |
| 1180 | iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1181 | |
Tomas Winkler | 0a6857e | 2008-03-12 16:58:49 -0700 | [diff] [blame] | 1182 | #ifdef CONFIG_IWLWIFI_DEBUG |
Reinette Chatre | 3d816c7 | 2009-08-07 15:41:37 -0700 | [diff] [blame] | 1183 | if (iwl_get_debug_level(priv) & IWL_DL_ISR) { |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 1184 | /* just for debug */ |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 1185 | inta_mask = iwl_read32(priv, CSR_INT_MASK); |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 1186 | 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] | 1187 | inta, inta_mask, inta_fh); |
| 1188 | } |
| 1189 | #endif |
| 1190 | |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 1191 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1192 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1193 | /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not |
| 1194 | * atomic, make sure that inta covers all the interrupts that |
| 1195 | * we've discovered, even if FH interrupt came in just after |
| 1196 | * reading CSR_INT. */ |
Tomas Winkler | 6f83eaa | 2008-03-04 18:09:28 -0800 | [diff] [blame] | 1197 | if (inta_fh & CSR49_FH_INT_RX_MASK) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1198 | inta |= CSR_INT_BIT_FH_RX; |
Tomas Winkler | 6f83eaa | 2008-03-04 18:09:28 -0800 | [diff] [blame] | 1199 | if (inta_fh & CSR49_FH_INT_TX_MASK) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1200 | inta |= CSR_INT_BIT_FH_TX; |
| 1201 | |
| 1202 | /* Now service all interrupt bits discovered above. */ |
| 1203 | if (inta & CSR_INT_BIT_HW_ERR) { |
Reinette Chatre | 58dba72 | 2009-07-17 09:30:25 -0700 | [diff] [blame] | 1204 | IWL_ERR(priv, "Hardware error detected. Restarting.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1205 | |
| 1206 | /* Tell the device to stop sending interrupts */ |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 1207 | iwl_disable_interrupts(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1208 | |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1209 | priv->isr_stats.hw++; |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 1210 | iwl_irq_handle_error(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1211 | |
| 1212 | handled |= CSR_INT_BIT_HW_ERR; |
| 1213 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1214 | return; |
| 1215 | } |
| 1216 | |
Tomas Winkler | 0a6857e | 2008-03-12 16:58:49 -0700 | [diff] [blame] | 1217 | #ifdef CONFIG_IWLWIFI_DEBUG |
Reinette Chatre | 3d816c7 | 2009-08-07 15:41:37 -0700 | [diff] [blame] | 1218 | if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1219 | /* 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] | 1220 | if (inta & CSR_INT_BIT_SCD) { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 1221 | IWL_DEBUG_ISR(priv, "Scheduler finished to transmit " |
Joonwoo Park | 25c03d8 | 2008-01-23 10:15:20 -0800 | [diff] [blame] | 1222 | "the frame/frames.\n"); |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1223 | priv->isr_stats.sch++; |
| 1224 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1225 | |
| 1226 | /* Alive notification via Rx interrupt will do the real work */ |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1227 | if (inta & CSR_INT_BIT_ALIVE) { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 1228 | IWL_DEBUG_ISR(priv, "Alive interrupt\n"); |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1229 | priv->isr_stats.alive++; |
| 1230 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1231 | } |
| 1232 | #endif |
| 1233 | /* Safely ignore these bits for debug checks below */ |
Joonwoo Park | 25c03d8 | 2008-01-23 10:15:20 -0800 | [diff] [blame] | 1234 | inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1235 | |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 1236 | /* HW RF KILL switch toggled */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1237 | if (inta & CSR_INT_BIT_RF_KILL) { |
| 1238 | int hw_rf_kill = 0; |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 1239 | if (!(iwl_read32(priv, CSR_GP_CNTRL) & |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1240 | CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)) |
| 1241 | hw_rf_kill = 1; |
| 1242 | |
Reinette Chatre | 4c423a2 | 2009-07-17 09:30:26 -0700 | [diff] [blame] | 1243 | IWL_WARN(priv, "RF_KILL bit toggled to %s.\n", |
Abhijeet Kolekar | c305606 | 2008-11-12 13:14:08 -0800 | [diff] [blame] | 1244 | hw_rf_kill ? "disable radio" : "enable radio"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1245 | |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1246 | priv->isr_stats.rfkill++; |
| 1247 | |
Emmanuel Grumbach | a9efa65 | 2008-06-30 17:23:25 +0800 | [diff] [blame] | 1248 | /* driver only loads ucode once setting the interface up. |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 1249 | * the driver allows loading the ucode even if the radio |
| 1250 | * is killed. Hence update the killswitch state here. The |
| 1251 | * rfkill handler will care about restarting if needed. |
Emmanuel Grumbach | a9efa65 | 2008-06-30 17:23:25 +0800 | [diff] [blame] | 1252 | */ |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 1253 | if (!test_bit(STATUS_ALIVE, &priv->status)) { |
| 1254 | if (hw_rf_kill) |
| 1255 | set_bit(STATUS_RF_KILL_HW, &priv->status); |
| 1256 | else |
| 1257 | clear_bit(STATUS_RF_KILL_HW, &priv->status); |
Johannes Berg | a60e77e | 2009-06-04 18:26:06 +0200 | [diff] [blame] | 1258 | wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill); |
Mohamed Abbas | edb3422 | 2008-12-11 10:33:37 -0800 | [diff] [blame] | 1259 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1260 | |
| 1261 | handled |= CSR_INT_BIT_RF_KILL; |
| 1262 | } |
| 1263 | |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 1264 | /* Chip got too hot and stopped itself */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1265 | if (inta & CSR_INT_BIT_CT_KILL) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 1266 | IWL_ERR(priv, "Microcode CT kill error detected.\n"); |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1267 | priv->isr_stats.ctkill++; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1268 | handled |= CSR_INT_BIT_CT_KILL; |
| 1269 | } |
| 1270 | |
| 1271 | /* Error detected by uCode */ |
| 1272 | if (inta & CSR_INT_BIT_SW_ERR) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 1273 | IWL_ERR(priv, "Microcode SW error detected. " |
| 1274 | " Restarting 0x%X.\n", inta); |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1275 | priv->isr_stats.sw++; |
| 1276 | priv->isr_stats.sw_err = inta; |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 1277 | iwl_irq_handle_error(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1278 | handled |= CSR_INT_BIT_SW_ERR; |
| 1279 | } |
| 1280 | |
Ben Cahill | c2e61da | 2009-10-30 14:36:09 -0700 | [diff] [blame] | 1281 | /* |
| 1282 | * uCode wakes up after power-down sleep. |
| 1283 | * Tell device about any new tx or host commands enqueued, |
| 1284 | * and about any Rx buffers made available while asleep. |
| 1285 | */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1286 | if (inta & CSR_INT_BIT_WAKEUP) { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 1287 | IWL_DEBUG_ISR(priv, "Wakeup interrupt\n"); |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 1288 | iwl_rx_queue_update_write_ptr(priv, &priv->rxq); |
Ben Cahill | c2e61da | 2009-10-30 14:36:09 -0700 | [diff] [blame] | 1289 | for (i = 0; i < priv->hw_params.max_txq_num; i++) |
| 1290 | iwl_txq_update_write_ptr(priv, &priv->txq[i]); |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1291 | priv->isr_stats.wakeup++; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1292 | handled |= CSR_INT_BIT_WAKEUP; |
| 1293 | } |
| 1294 | |
| 1295 | /* All uCode command responses, including Tx command responses, |
| 1296 | * Rx "responses" (frame-received notification), and other |
| 1297 | * notifications from uCode come through here*/ |
| 1298 | if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) { |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 1299 | iwl_rx_handle(priv); |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1300 | priv->isr_stats.rx++; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1301 | handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX); |
| 1302 | } |
| 1303 | |
Ben Cahill | c72cd19 | 2009-10-30 14:36:08 -0700 | [diff] [blame] | 1304 | /* This "Tx" DMA channel is used only for loading uCode */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1305 | if (inta & CSR_INT_BIT_FH_TX) { |
Ben Cahill | c72cd19 | 2009-10-30 14:36:08 -0700 | [diff] [blame] | 1306 | IWL_DEBUG_ISR(priv, "uCode load interrupt\n"); |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1307 | priv->isr_stats.tx++; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1308 | handled |= CSR_INT_BIT_FH_TX; |
Ben Cahill | c72cd19 | 2009-10-30 14:36:08 -0700 | [diff] [blame] | 1309 | /* Wake up uCode load routine, now that load is complete */ |
Ron Rindjunsky | dbb983b | 2008-05-15 13:54:12 +0800 | [diff] [blame] | 1310 | priv->ucode_write_complete = 1; |
| 1311 | wake_up_interruptible(&priv->wait_command_queue); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1312 | } |
| 1313 | |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1314 | if (inta & ~handled) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 1315 | IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled); |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1316 | priv->isr_stats.unhandled++; |
| 1317 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1318 | |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 1319 | if (inta & ~(priv->inta_mask)) { |
Winkler, Tomas | 39aadf8 | 2008-12-19 10:37:32 +0800 | [diff] [blame] | 1320 | IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n", |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 1321 | inta & ~priv->inta_mask); |
Winkler, Tomas | 39aadf8 | 2008-12-19 10:37:32 +0800 | [diff] [blame] | 1322 | IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1323 | } |
| 1324 | |
| 1325 | /* Re-enable all interrupts */ |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 1326 | /* only Re-enable if diabled by irq */ |
| 1327 | if (test_bit(STATUS_INT_ENABLED, &priv->status)) |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 1328 | iwl_enable_interrupts(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1329 | |
Tomas Winkler | 0a6857e | 2008-03-12 16:58:49 -0700 | [diff] [blame] | 1330 | #ifdef CONFIG_IWLWIFI_DEBUG |
Reinette Chatre | 3d816c7 | 2009-08-07 15:41:37 -0700 | [diff] [blame] | 1331 | if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) { |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 1332 | inta = iwl_read32(priv, CSR_INT); |
| 1333 | inta_mask = iwl_read32(priv, CSR_INT_MASK); |
| 1334 | inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS); |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 1335 | 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] | 1336 | "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags); |
| 1337 | } |
| 1338 | #endif |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1339 | } |
| 1340 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1341 | /* tasklet for iwlagn interrupt */ |
| 1342 | static void iwl_irq_tasklet(struct iwl_priv *priv) |
| 1343 | { |
| 1344 | u32 inta = 0; |
| 1345 | u32 handled = 0; |
| 1346 | unsigned long flags; |
Ben Cahill | 8756990 | 2009-11-06 14:53:01 -0800 | [diff] [blame] | 1347 | u32 i; |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1348 | #ifdef CONFIG_IWLWIFI_DEBUG |
| 1349 | u32 inta_mask; |
| 1350 | #endif |
| 1351 | |
| 1352 | spin_lock_irqsave(&priv->lock, flags); |
| 1353 | |
| 1354 | /* Ack/clear/reset pending uCode interrupts. |
| 1355 | * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS, |
| 1356 | */ |
Shanyu Zhao | 48a6be6 | 2010-03-16 10:22:26 -0700 | [diff] [blame] | 1357 | /* There is a hardware bug in the interrupt mask function that some |
| 1358 | * interrupts (i.e. CSR_INT_BIT_SCD) can still be generated even if |
| 1359 | * they are disabled in the CSR_INT_MASK register. Furthermore the |
| 1360 | * ICT interrupt handling mechanism has another bug that might cause |
| 1361 | * these unmasked interrupts fail to be detected. We workaround the |
| 1362 | * hardware bugs here by ACKing all the possible interrupts so that |
| 1363 | * interrupt coalescing can still be achieved. |
| 1364 | */ |
David S. Miller | 4a35ecf | 2010-04-06 23:53:30 -0700 | [diff] [blame] | 1365 | iwl_write32(priv, CSR_INT, priv->_agn.inta | ~priv->inta_mask); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1366 | |
Johannes Berg | a4c8b2a | 2010-01-21 06:25:54 -0800 | [diff] [blame] | 1367 | inta = priv->_agn.inta; |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1368 | |
| 1369 | #ifdef CONFIG_IWLWIFI_DEBUG |
Reinette Chatre | 3d816c7 | 2009-08-07 15:41:37 -0700 | [diff] [blame] | 1370 | if (iwl_get_debug_level(priv) & IWL_DL_ISR) { |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1371 | /* just for debug */ |
| 1372 | inta_mask = iwl_read32(priv, CSR_INT_MASK); |
| 1373 | IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x\n ", |
| 1374 | inta, inta_mask); |
| 1375 | } |
| 1376 | #endif |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 1377 | |
| 1378 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1379 | |
Johannes Berg | a4c8b2a | 2010-01-21 06:25:54 -0800 | [diff] [blame] | 1380 | /* saved interrupt in inta variable now we can reset priv->_agn.inta */ |
| 1381 | priv->_agn.inta = 0; |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1382 | |
| 1383 | /* Now service all interrupt bits discovered above. */ |
| 1384 | if (inta & CSR_INT_BIT_HW_ERR) { |
Reinette Chatre | 58dba72 | 2009-07-17 09:30:25 -0700 | [diff] [blame] | 1385 | IWL_ERR(priv, "Hardware error detected. Restarting.\n"); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1386 | |
| 1387 | /* Tell the device to stop sending interrupts */ |
| 1388 | iwl_disable_interrupts(priv); |
| 1389 | |
| 1390 | priv->isr_stats.hw++; |
| 1391 | iwl_irq_handle_error(priv); |
| 1392 | |
| 1393 | handled |= CSR_INT_BIT_HW_ERR; |
| 1394 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1395 | return; |
| 1396 | } |
| 1397 | |
| 1398 | #ifdef CONFIG_IWLWIFI_DEBUG |
Reinette Chatre | 3d816c7 | 2009-08-07 15:41:37 -0700 | [diff] [blame] | 1399 | if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) { |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1400 | /* NIC fires this, but we don't use it, redundant with WAKEUP */ |
| 1401 | if (inta & CSR_INT_BIT_SCD) { |
| 1402 | IWL_DEBUG_ISR(priv, "Scheduler finished to transmit " |
| 1403 | "the frame/frames.\n"); |
| 1404 | priv->isr_stats.sch++; |
| 1405 | } |
| 1406 | |
| 1407 | /* Alive notification via Rx interrupt will do the real work */ |
| 1408 | if (inta & CSR_INT_BIT_ALIVE) { |
| 1409 | IWL_DEBUG_ISR(priv, "Alive interrupt\n"); |
| 1410 | priv->isr_stats.alive++; |
| 1411 | } |
| 1412 | } |
| 1413 | #endif |
| 1414 | /* Safely ignore these bits for debug checks below */ |
| 1415 | inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE); |
| 1416 | |
| 1417 | /* HW RF KILL switch toggled */ |
| 1418 | if (inta & CSR_INT_BIT_RF_KILL) { |
| 1419 | int hw_rf_kill = 0; |
| 1420 | if (!(iwl_read32(priv, CSR_GP_CNTRL) & |
| 1421 | CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)) |
| 1422 | hw_rf_kill = 1; |
| 1423 | |
Reinette Chatre | 4c423a2 | 2009-07-17 09:30:26 -0700 | [diff] [blame] | 1424 | IWL_WARN(priv, "RF_KILL bit toggled to %s.\n", |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1425 | hw_rf_kill ? "disable radio" : "enable radio"); |
| 1426 | |
| 1427 | priv->isr_stats.rfkill++; |
| 1428 | |
| 1429 | /* driver only loads ucode once setting the interface up. |
| 1430 | * the driver allows loading the ucode even if the radio |
| 1431 | * is killed. Hence update the killswitch state here. The |
| 1432 | * rfkill handler will care about restarting if needed. |
| 1433 | */ |
| 1434 | if (!test_bit(STATUS_ALIVE, &priv->status)) { |
| 1435 | if (hw_rf_kill) |
| 1436 | set_bit(STATUS_RF_KILL_HW, &priv->status); |
| 1437 | else |
| 1438 | clear_bit(STATUS_RF_KILL_HW, &priv->status); |
Johannes Berg | a60e77e | 2009-06-04 18:26:06 +0200 | [diff] [blame] | 1439 | wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1440 | } |
| 1441 | |
| 1442 | handled |= CSR_INT_BIT_RF_KILL; |
| 1443 | } |
| 1444 | |
| 1445 | /* Chip got too hot and stopped itself */ |
| 1446 | if (inta & CSR_INT_BIT_CT_KILL) { |
| 1447 | IWL_ERR(priv, "Microcode CT kill error detected.\n"); |
| 1448 | priv->isr_stats.ctkill++; |
| 1449 | handled |= CSR_INT_BIT_CT_KILL; |
| 1450 | } |
| 1451 | |
| 1452 | /* Error detected by uCode */ |
| 1453 | if (inta & CSR_INT_BIT_SW_ERR) { |
| 1454 | IWL_ERR(priv, "Microcode SW error detected. " |
| 1455 | " Restarting 0x%X.\n", inta); |
| 1456 | priv->isr_stats.sw++; |
| 1457 | priv->isr_stats.sw_err = inta; |
| 1458 | iwl_irq_handle_error(priv); |
| 1459 | handled |= CSR_INT_BIT_SW_ERR; |
| 1460 | } |
| 1461 | |
| 1462 | /* uCode wakes up after power-down sleep */ |
| 1463 | if (inta & CSR_INT_BIT_WAKEUP) { |
| 1464 | IWL_DEBUG_ISR(priv, "Wakeup interrupt\n"); |
| 1465 | iwl_rx_queue_update_write_ptr(priv, &priv->rxq); |
Ben Cahill | 8756990 | 2009-11-06 14:53:01 -0800 | [diff] [blame] | 1466 | for (i = 0; i < priv->hw_params.max_txq_num; i++) |
| 1467 | iwl_txq_update_write_ptr(priv, &priv->txq[i]); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1468 | |
| 1469 | priv->isr_stats.wakeup++; |
| 1470 | |
| 1471 | handled |= CSR_INT_BIT_WAKEUP; |
| 1472 | } |
| 1473 | |
| 1474 | /* All uCode command responses, including Tx command responses, |
| 1475 | * Rx "responses" (frame-received notification), and other |
| 1476 | * notifications from uCode come through here*/ |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 1477 | if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX | |
| 1478 | CSR_INT_BIT_RX_PERIODIC)) { |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1479 | IWL_DEBUG_ISR(priv, "Rx interrupt\n"); |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 1480 | if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) { |
| 1481 | handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX); |
| 1482 | iwl_write32(priv, CSR_FH_INT_STATUS, |
| 1483 | CSR49_FH_INT_RX_MASK); |
| 1484 | } |
| 1485 | if (inta & CSR_INT_BIT_RX_PERIODIC) { |
| 1486 | handled |= CSR_INT_BIT_RX_PERIODIC; |
| 1487 | iwl_write32(priv, CSR_INT, CSR_INT_BIT_RX_PERIODIC); |
| 1488 | } |
| 1489 | /* Sending RX interrupt require many steps to be done in the |
| 1490 | * the device: |
| 1491 | * 1- write interrupt to current index in ICT table. |
| 1492 | * 2- dma RX frame. |
| 1493 | * 3- update RX shared data to indicate last write index. |
| 1494 | * 4- send interrupt. |
| 1495 | * This could lead to RX race, driver could receive RX interrupt |
Ben Cahill | 74ba67e | 2009-11-20 12:04:53 -0800 | [diff] [blame] | 1496 | * but the shared data changes does not reflect this; |
| 1497 | * periodic interrupt will detect any dangling Rx activity. |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 1498 | */ |
Ben Cahill | 74ba67e | 2009-11-20 12:04:53 -0800 | [diff] [blame] | 1499 | |
| 1500 | /* Disable periodic interrupt; we use it as just a one-shot. */ |
| 1501 | iwl_write8(priv, CSR_INT_PERIODIC_REG, |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 1502 | CSR_INT_PERIODIC_DIS); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1503 | iwl_rx_handle(priv); |
Ben Cahill | 74ba67e | 2009-11-20 12:04:53 -0800 | [diff] [blame] | 1504 | |
| 1505 | /* |
| 1506 | * Enable periodic interrupt in 8 msec only if we received |
| 1507 | * real RX interrupt (instead of just periodic int), to catch |
| 1508 | * any dangling Rx interrupt. If it was just the periodic |
| 1509 | * interrupt, there was no dangling Rx activity, and no need |
| 1510 | * to extend the periodic interrupt; one-shot is enough. |
| 1511 | */ |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 1512 | if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) |
Ben Cahill | 74ba67e | 2009-11-20 12:04:53 -0800 | [diff] [blame] | 1513 | iwl_write8(priv, CSR_INT_PERIODIC_REG, |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 1514 | CSR_INT_PERIODIC_ENA); |
| 1515 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1516 | priv->isr_stats.rx++; |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1517 | } |
| 1518 | |
Ben Cahill | c72cd19 | 2009-10-30 14:36:08 -0700 | [diff] [blame] | 1519 | /* This "Tx" DMA channel is used only for loading uCode */ |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1520 | if (inta & CSR_INT_BIT_FH_TX) { |
| 1521 | iwl_write32(priv, CSR_FH_INT_STATUS, CSR49_FH_INT_TX_MASK); |
Ben Cahill | c72cd19 | 2009-10-30 14:36:08 -0700 | [diff] [blame] | 1522 | IWL_DEBUG_ISR(priv, "uCode load interrupt\n"); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1523 | priv->isr_stats.tx++; |
| 1524 | handled |= CSR_INT_BIT_FH_TX; |
Ben Cahill | c72cd19 | 2009-10-30 14:36:08 -0700 | [diff] [blame] | 1525 | /* Wake up uCode load routine, now that load is complete */ |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1526 | priv->ucode_write_complete = 1; |
| 1527 | wake_up_interruptible(&priv->wait_command_queue); |
| 1528 | } |
| 1529 | |
| 1530 | if (inta & ~handled) { |
| 1531 | IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled); |
| 1532 | priv->isr_stats.unhandled++; |
| 1533 | } |
| 1534 | |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 1535 | if (inta & ~(priv->inta_mask)) { |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1536 | IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n", |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 1537 | inta & ~priv->inta_mask); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1538 | } |
| 1539 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1540 | /* Re-enable all interrupts */ |
| 1541 | /* only Re-enable if diabled by irq */ |
| 1542 | if (test_bit(STATUS_INT_ENABLED, &priv->status)) |
| 1543 | iwl_enable_interrupts(priv); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 1544 | } |
| 1545 | |
Wey-Yi Guy | 872c8dd | 2010-03-16 10:46:31 -0700 | [diff] [blame] | 1546 | /* the threshold ratio of actual_ack_cnt to expected_ack_cnt in percent */ |
| 1547 | #define ACK_CNT_RATIO (50) |
| 1548 | #define BA_TIMEOUT_CNT (5) |
| 1549 | #define BA_TIMEOUT_MAX (16) |
| 1550 | |
| 1551 | /** |
| 1552 | * iwl_good_ack_health - checks for ACK count ratios, BA timeout retries. |
| 1553 | * |
| 1554 | * When the ACK count ratio is 0 and aggregated BA timeout retries exceeding |
| 1555 | * the BA_TIMEOUT_MAX, reload firmware and bring system back to normal |
| 1556 | * operation state. |
| 1557 | */ |
| 1558 | bool iwl_good_ack_health(struct iwl_priv *priv, |
| 1559 | struct iwl_rx_packet *pkt) |
| 1560 | { |
| 1561 | bool rc = true; |
| 1562 | int actual_ack_cnt_delta, expected_ack_cnt_delta; |
| 1563 | int ba_timeout_delta; |
| 1564 | |
| 1565 | actual_ack_cnt_delta = |
| 1566 | le32_to_cpu(pkt->u.stats.tx.actual_ack_cnt) - |
Wey-Yi Guy | f3aebee | 2010-06-14 17:09:54 -0700 | [diff] [blame] | 1567 | le32_to_cpu(priv->_agn.statistics.tx.actual_ack_cnt); |
Wey-Yi Guy | 872c8dd | 2010-03-16 10:46:31 -0700 | [diff] [blame] | 1568 | expected_ack_cnt_delta = |
| 1569 | le32_to_cpu(pkt->u.stats.tx.expected_ack_cnt) - |
Wey-Yi Guy | f3aebee | 2010-06-14 17:09:54 -0700 | [diff] [blame] | 1570 | le32_to_cpu(priv->_agn.statistics.tx.expected_ack_cnt); |
Wey-Yi Guy | 872c8dd | 2010-03-16 10:46:31 -0700 | [diff] [blame] | 1571 | ba_timeout_delta = |
| 1572 | le32_to_cpu(pkt->u.stats.tx.agg.ba_timeout) - |
Wey-Yi Guy | f3aebee | 2010-06-14 17:09:54 -0700 | [diff] [blame] | 1573 | le32_to_cpu(priv->_agn.statistics.tx.agg.ba_timeout); |
Wey-Yi Guy | 872c8dd | 2010-03-16 10:46:31 -0700 | [diff] [blame] | 1574 | if ((priv->_agn.agg_tids_count > 0) && |
| 1575 | (expected_ack_cnt_delta > 0) && |
| 1576 | (((actual_ack_cnt_delta * 100) / expected_ack_cnt_delta) |
| 1577 | < ACK_CNT_RATIO) && |
| 1578 | (ba_timeout_delta > BA_TIMEOUT_CNT)) { |
| 1579 | IWL_DEBUG_RADIO(priv, "actual_ack_cnt delta = %d," |
| 1580 | " expected_ack_cnt = %d\n", |
| 1581 | actual_ack_cnt_delta, expected_ack_cnt_delta); |
| 1582 | |
Johannes Berg | d73e492 | 2010-05-06 12:18:41 -0700 | [diff] [blame] | 1583 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
| 1584 | /* |
| 1585 | * This is ifdef'ed on DEBUGFS because otherwise the |
| 1586 | * statistics aren't available. If DEBUGFS is set but |
| 1587 | * DEBUG is not, these will just compile out. |
| 1588 | */ |
Wey-Yi Guy | 872c8dd | 2010-03-16 10:46:31 -0700 | [diff] [blame] | 1589 | IWL_DEBUG_RADIO(priv, "rx_detected_cnt delta = %d\n", |
Wey-Yi Guy | f3aebee | 2010-06-14 17:09:54 -0700 | [diff] [blame] | 1590 | priv->_agn.delta_statistics.tx.rx_detected_cnt); |
Wey-Yi Guy | 872c8dd | 2010-03-16 10:46:31 -0700 | [diff] [blame] | 1591 | IWL_DEBUG_RADIO(priv, |
| 1592 | "ack_or_ba_timeout_collision delta = %d\n", |
Wey-Yi Guy | f3aebee | 2010-06-14 17:09:54 -0700 | [diff] [blame] | 1593 | priv->_agn.delta_statistics.tx. |
Wey-Yi Guy | 872c8dd | 2010-03-16 10:46:31 -0700 | [diff] [blame] | 1594 | ack_or_ba_timeout_collision); |
| 1595 | #endif |
| 1596 | IWL_DEBUG_RADIO(priv, "agg ba_timeout delta = %d\n", |
| 1597 | ba_timeout_delta); |
| 1598 | if (!actual_ack_cnt_delta && |
| 1599 | (ba_timeout_delta >= BA_TIMEOUT_MAX)) |
| 1600 | rc = false; |
| 1601 | } |
| 1602 | return rc; |
| 1603 | } |
| 1604 | |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 1605 | |
Emmanuel Grumbach | 7d47618 | 2010-05-23 00:14:08 -0700 | [diff] [blame] | 1606 | /***************************************************************************** |
| 1607 | * |
| 1608 | * sysfs attributes |
| 1609 | * |
| 1610 | *****************************************************************************/ |
| 1611 | |
| 1612 | #ifdef CONFIG_IWLWIFI_DEBUG |
| 1613 | |
| 1614 | /* |
| 1615 | * The following adds a new attribute to the sysfs representation |
| 1616 | * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/) |
| 1617 | * used for controlling the debug level. |
| 1618 | * |
| 1619 | * See the level definitions in iwl for details. |
| 1620 | * |
| 1621 | * The debug_level being managed using sysfs below is a per device debug |
| 1622 | * level that is used instead of the global debug level if it (the per |
| 1623 | * device debug level) is set. |
| 1624 | */ |
| 1625 | static ssize_t show_debug_level(struct device *d, |
| 1626 | struct device_attribute *attr, char *buf) |
| 1627 | { |
| 1628 | struct iwl_priv *priv = dev_get_drvdata(d); |
| 1629 | return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv)); |
| 1630 | } |
| 1631 | static ssize_t store_debug_level(struct device *d, |
| 1632 | struct device_attribute *attr, |
| 1633 | const char *buf, size_t count) |
| 1634 | { |
| 1635 | struct iwl_priv *priv = dev_get_drvdata(d); |
| 1636 | unsigned long val; |
| 1637 | int ret; |
| 1638 | |
| 1639 | ret = strict_strtoul(buf, 0, &val); |
| 1640 | if (ret) |
| 1641 | IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf); |
| 1642 | else { |
| 1643 | priv->debug_level = val; |
| 1644 | if (iwl_alloc_traffic_mem(priv)) |
| 1645 | IWL_ERR(priv, |
| 1646 | "Not enough memory to generate traffic log\n"); |
| 1647 | } |
| 1648 | return strnlen(buf, count); |
| 1649 | } |
| 1650 | |
| 1651 | static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO, |
| 1652 | show_debug_level, store_debug_level); |
| 1653 | |
| 1654 | |
| 1655 | #endif /* CONFIG_IWLWIFI_DEBUG */ |
| 1656 | |
| 1657 | |
| 1658 | static ssize_t show_temperature(struct device *d, |
| 1659 | struct device_attribute *attr, char *buf) |
| 1660 | { |
| 1661 | struct iwl_priv *priv = dev_get_drvdata(d); |
| 1662 | |
| 1663 | if (!iwl_is_alive(priv)) |
| 1664 | return -EAGAIN; |
| 1665 | |
| 1666 | return sprintf(buf, "%d\n", priv->temperature); |
| 1667 | } |
| 1668 | |
| 1669 | static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL); |
| 1670 | |
| 1671 | static ssize_t show_tx_power(struct device *d, |
| 1672 | struct device_attribute *attr, char *buf) |
| 1673 | { |
| 1674 | struct iwl_priv *priv = dev_get_drvdata(d); |
| 1675 | |
| 1676 | if (!iwl_is_ready_rf(priv)) |
| 1677 | return sprintf(buf, "off\n"); |
| 1678 | else |
| 1679 | return sprintf(buf, "%d\n", priv->tx_power_user_lmt); |
| 1680 | } |
| 1681 | |
| 1682 | static ssize_t store_tx_power(struct device *d, |
| 1683 | struct device_attribute *attr, |
| 1684 | const char *buf, size_t count) |
| 1685 | { |
| 1686 | struct iwl_priv *priv = dev_get_drvdata(d); |
| 1687 | unsigned long val; |
| 1688 | int ret; |
| 1689 | |
| 1690 | ret = strict_strtoul(buf, 10, &val); |
| 1691 | if (ret) |
| 1692 | IWL_INFO(priv, "%s is not in decimal form.\n", buf); |
| 1693 | else { |
| 1694 | ret = iwl_set_tx_power(priv, val, false); |
| 1695 | if (ret) |
| 1696 | IWL_ERR(priv, "failed setting tx power (0x%d).\n", |
| 1697 | ret); |
| 1698 | else |
| 1699 | ret = count; |
| 1700 | } |
| 1701 | return ret; |
| 1702 | } |
| 1703 | |
| 1704 | static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power); |
| 1705 | |
Emmanuel Grumbach | 7d47618 | 2010-05-23 00:14:08 -0700 | [diff] [blame] | 1706 | static struct attribute *iwl_sysfs_entries[] = { |
| 1707 | &dev_attr_temperature.attr, |
| 1708 | &dev_attr_tx_power.attr, |
Emmanuel Grumbach | 7d47618 | 2010-05-23 00:14:08 -0700 | [diff] [blame] | 1709 | #ifdef CONFIG_IWLWIFI_DEBUG |
| 1710 | &dev_attr_debug_level.attr, |
| 1711 | #endif |
| 1712 | NULL |
| 1713 | }; |
| 1714 | |
| 1715 | static struct attribute_group iwl_attribute_group = { |
| 1716 | .name = NULL, /* put in device directory */ |
| 1717 | .attrs = iwl_sysfs_entries, |
| 1718 | }; |
| 1719 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1720 | /****************************************************************************** |
| 1721 | * |
| 1722 | * uCode download functions |
| 1723 | * |
| 1724 | ******************************************************************************/ |
| 1725 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 1726 | static void iwl_dealloc_ucode_pci(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1727 | { |
Tomas Winkler | 98c9221 | 2008-01-14 17:46:20 -0800 | [diff] [blame] | 1728 | iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code); |
| 1729 | iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data); |
| 1730 | iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup); |
| 1731 | iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init); |
| 1732 | iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data); |
| 1733 | iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1734 | } |
| 1735 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 1736 | static void iwl_nic_start(struct iwl_priv *priv) |
Ron Rindjunsky | edcdf8b | 2008-05-15 13:53:55 +0800 | [diff] [blame] | 1737 | { |
| 1738 | /* Remove all resets to allow NIC to operate */ |
| 1739 | iwl_write32(priv, CSR_RESET, 0); |
| 1740 | } |
| 1741 | |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1742 | struct iwlagn_ucode_capabilities { |
| 1743 | u32 max_probe_length; |
Wey-Yi Guy | 6a822d0 | 2010-07-13 17:13:15 -0700 | [diff] [blame] | 1744 | u32 standard_phy_calibration_size; |
Johannes Berg | ece9c4e | 2010-08-23 10:46:49 +0200 | [diff] [blame] | 1745 | bool pan; |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1746 | }; |
Ron Rindjunsky | edcdf8b | 2008-05-15 13:53:55 +0800 | [diff] [blame] | 1747 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1748 | static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1749 | static int iwl_mac_setup_register(struct iwl_priv *priv, |
| 1750 | struct iwlagn_ucode_capabilities *capa); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1751 | |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1752 | #define UCODE_EXPERIMENTAL_INDEX 100 |
| 1753 | #define UCODE_EXPERIMENTAL_TAG "exp" |
| 1754 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1755 | 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] | 1756 | { |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 1757 | const char *name_pre = priv->cfg->fw_name_pre; |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1758 | char tag[8]; |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1759 | |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1760 | if (first) { |
| 1761 | #ifdef CONFIG_IWLWIFI_DEBUG_EXPERIMENTAL_UCODE |
| 1762 | priv->fw_index = UCODE_EXPERIMENTAL_INDEX; |
| 1763 | strcpy(tag, UCODE_EXPERIMENTAL_TAG); |
| 1764 | } else if (priv->fw_index == UCODE_EXPERIMENTAL_INDEX) { |
| 1765 | #endif |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1766 | priv->fw_index = priv->cfg->ucode_api_max; |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1767 | sprintf(tag, "%d", priv->fw_index); |
| 1768 | } else { |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1769 | priv->fw_index--; |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1770 | sprintf(tag, "%d", priv->fw_index); |
| 1771 | } |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1772 | |
| 1773 | if (priv->fw_index < priv->cfg->ucode_api_min) { |
| 1774 | IWL_ERR(priv, "no suitable firmware found!\n"); |
| 1775 | return -ENOENT; |
| 1776 | } |
| 1777 | |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1778 | sprintf(priv->firmware_name, "%s%s%s", name_pre, tag, ".ucode"); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1779 | |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1780 | IWL_DEBUG_INFO(priv, "attempting to load firmware %s'%s'\n", |
| 1781 | (priv->fw_index == UCODE_EXPERIMENTAL_INDEX) |
| 1782 | ? "EXPERIMENTAL " : "", |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1783 | priv->firmware_name); |
| 1784 | |
| 1785 | return request_firmware_nowait(THIS_MODULE, 1, priv->firmware_name, |
| 1786 | &priv->pci_dev->dev, GFP_KERNEL, priv, |
| 1787 | iwl_ucode_callback); |
| 1788 | } |
| 1789 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1790 | struct iwlagn_firmware_pieces { |
| 1791 | const void *inst, *data, *init, *init_data, *boot; |
| 1792 | size_t inst_size, data_size, init_size, init_data_size, boot_size; |
| 1793 | |
| 1794 | u32 build; |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1795 | |
| 1796 | u32 init_evtlog_ptr, init_evtlog_size, init_errlog_ptr; |
| 1797 | u32 inst_evtlog_ptr, inst_evtlog_size, inst_errlog_ptr; |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1798 | }; |
| 1799 | |
| 1800 | static int iwlagn_load_legacy_firmware(struct iwl_priv *priv, |
| 1801 | const struct firmware *ucode_raw, |
| 1802 | struct iwlagn_firmware_pieces *pieces) |
| 1803 | { |
| 1804 | struct iwl_ucode_header *ucode = (void *)ucode_raw->data; |
| 1805 | u32 api_ver, hdr_size; |
| 1806 | const u8 *src; |
| 1807 | |
| 1808 | priv->ucode_ver = le32_to_cpu(ucode->ver); |
| 1809 | api_ver = IWL_UCODE_API(priv->ucode_ver); |
| 1810 | |
| 1811 | switch (api_ver) { |
| 1812 | default: |
| 1813 | /* |
| 1814 | * 4965 doesn't revision the firmware file format |
| 1815 | * along with the API version, it always uses v1 |
| 1816 | * file format. |
| 1817 | */ |
| 1818 | if ((priv->hw_rev & CSR_HW_REV_TYPE_MSK) != |
| 1819 | CSR_HW_REV_TYPE_4965) { |
| 1820 | hdr_size = 28; |
| 1821 | if (ucode_raw->size < hdr_size) { |
| 1822 | IWL_ERR(priv, "File size too small!\n"); |
| 1823 | return -EINVAL; |
| 1824 | } |
| 1825 | pieces->build = le32_to_cpu(ucode->u.v2.build); |
| 1826 | pieces->inst_size = le32_to_cpu(ucode->u.v2.inst_size); |
| 1827 | pieces->data_size = le32_to_cpu(ucode->u.v2.data_size); |
| 1828 | pieces->init_size = le32_to_cpu(ucode->u.v2.init_size); |
| 1829 | pieces->init_data_size = le32_to_cpu(ucode->u.v2.init_data_size); |
| 1830 | pieces->boot_size = le32_to_cpu(ucode->u.v2.boot_size); |
| 1831 | src = ucode->u.v2.data; |
| 1832 | break; |
| 1833 | } |
| 1834 | /* fall through for 4965 */ |
| 1835 | case 0: |
| 1836 | case 1: |
| 1837 | case 2: |
| 1838 | hdr_size = 24; |
| 1839 | if (ucode_raw->size < hdr_size) { |
| 1840 | IWL_ERR(priv, "File size too small!\n"); |
| 1841 | return -EINVAL; |
| 1842 | } |
| 1843 | pieces->build = 0; |
| 1844 | pieces->inst_size = le32_to_cpu(ucode->u.v1.inst_size); |
| 1845 | pieces->data_size = le32_to_cpu(ucode->u.v1.data_size); |
| 1846 | pieces->init_size = le32_to_cpu(ucode->u.v1.init_size); |
| 1847 | pieces->init_data_size = le32_to_cpu(ucode->u.v1.init_data_size); |
| 1848 | pieces->boot_size = le32_to_cpu(ucode->u.v1.boot_size); |
| 1849 | src = ucode->u.v1.data; |
| 1850 | break; |
| 1851 | } |
| 1852 | |
| 1853 | /* Verify size of file vs. image size info in file's header */ |
| 1854 | if (ucode_raw->size != hdr_size + pieces->inst_size + |
| 1855 | pieces->data_size + pieces->init_size + |
| 1856 | pieces->init_data_size + pieces->boot_size) { |
| 1857 | |
| 1858 | IWL_ERR(priv, |
| 1859 | "uCode file size %d does not match expected size\n", |
| 1860 | (int)ucode_raw->size); |
| 1861 | return -EINVAL; |
| 1862 | } |
| 1863 | |
| 1864 | pieces->inst = src; |
| 1865 | src += pieces->inst_size; |
| 1866 | pieces->data = src; |
| 1867 | src += pieces->data_size; |
| 1868 | pieces->init = src; |
| 1869 | src += pieces->init_size; |
| 1870 | pieces->init_data = src; |
| 1871 | src += pieces->init_data_size; |
| 1872 | pieces->boot = src; |
| 1873 | src += pieces->boot_size; |
| 1874 | |
| 1875 | return 0; |
| 1876 | } |
| 1877 | |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1878 | static int iwlagn_wanted_ucode_alternative = 1; |
| 1879 | |
| 1880 | static int iwlagn_load_firmware(struct iwl_priv *priv, |
| 1881 | const struct firmware *ucode_raw, |
| 1882 | struct iwlagn_firmware_pieces *pieces, |
| 1883 | struct iwlagn_ucode_capabilities *capa) |
| 1884 | { |
| 1885 | struct iwl_tlv_ucode_header *ucode = (void *)ucode_raw->data; |
| 1886 | struct iwl_ucode_tlv *tlv; |
| 1887 | size_t len = ucode_raw->size; |
| 1888 | const u8 *data; |
| 1889 | int wanted_alternative = iwlagn_wanted_ucode_alternative, tmp; |
| 1890 | u64 alternatives; |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1891 | u32 tlv_len; |
| 1892 | enum iwl_ucode_tlv_type tlv_type; |
| 1893 | const u8 *tlv_data; |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1894 | |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1895 | if (len < sizeof(*ucode)) { |
| 1896 | IWL_ERR(priv, "uCode has invalid length: %zd\n", len); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1897 | return -EINVAL; |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1898 | } |
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 (ucode->magic != cpu_to_le32(IWL_TLV_UCODE_MAGIC)) { |
| 1901 | IWL_ERR(priv, "invalid uCode magic: 0X%x\n", |
| 1902 | le32_to_cpu(ucode->magic)); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1903 | return -EINVAL; |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1904 | } |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1905 | |
| 1906 | /* |
| 1907 | * Check which alternatives are present, and "downgrade" |
| 1908 | * when the chosen alternative is not present, warning |
| 1909 | * the user when that happens. Some files may not have |
| 1910 | * any alternatives, so don't warn in that case. |
| 1911 | */ |
| 1912 | alternatives = le64_to_cpu(ucode->alternatives); |
| 1913 | tmp = wanted_alternative; |
| 1914 | if (wanted_alternative > 63) |
| 1915 | wanted_alternative = 63; |
| 1916 | while (wanted_alternative && !(alternatives & BIT(wanted_alternative))) |
| 1917 | wanted_alternative--; |
| 1918 | if (wanted_alternative && wanted_alternative != tmp) |
| 1919 | IWL_WARN(priv, |
| 1920 | "uCode alternative %d not available, choosing %d\n", |
| 1921 | tmp, wanted_alternative); |
| 1922 | |
| 1923 | priv->ucode_ver = le32_to_cpu(ucode->ver); |
| 1924 | pieces->build = le32_to_cpu(ucode->build); |
| 1925 | data = ucode->data; |
| 1926 | |
| 1927 | len -= sizeof(*ucode); |
| 1928 | |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 1929 | while (len >= sizeof(*tlv)) { |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1930 | u16 tlv_alt; |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1931 | |
| 1932 | len -= sizeof(*tlv); |
| 1933 | tlv = (void *)data; |
| 1934 | |
| 1935 | tlv_len = le32_to_cpu(tlv->length); |
| 1936 | tlv_type = le16_to_cpu(tlv->type); |
| 1937 | tlv_alt = le16_to_cpu(tlv->alternative); |
| 1938 | tlv_data = tlv->data; |
| 1939 | |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1940 | if (len < tlv_len) { |
| 1941 | IWL_ERR(priv, "invalid TLV len: %zd/%u\n", |
| 1942 | len, tlv_len); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1943 | return -EINVAL; |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1944 | } |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1945 | len -= ALIGN(tlv_len, 4); |
| 1946 | data += sizeof(*tlv) + ALIGN(tlv_len, 4); |
| 1947 | |
| 1948 | /* |
| 1949 | * Alternative 0 is always valid. |
| 1950 | * |
| 1951 | * Skip alternative TLVs that are not selected. |
| 1952 | */ |
| 1953 | if (tlv_alt != 0 && tlv_alt != wanted_alternative) |
| 1954 | continue; |
| 1955 | |
| 1956 | switch (tlv_type) { |
| 1957 | case IWL_UCODE_TLV_INST: |
| 1958 | pieces->inst = tlv_data; |
| 1959 | pieces->inst_size = tlv_len; |
| 1960 | break; |
| 1961 | case IWL_UCODE_TLV_DATA: |
| 1962 | pieces->data = tlv_data; |
| 1963 | pieces->data_size = tlv_len; |
| 1964 | break; |
| 1965 | case IWL_UCODE_TLV_INIT: |
| 1966 | pieces->init = tlv_data; |
| 1967 | pieces->init_size = tlv_len; |
| 1968 | break; |
| 1969 | case IWL_UCODE_TLV_INIT_DATA: |
| 1970 | pieces->init_data = tlv_data; |
| 1971 | pieces->init_data_size = tlv_len; |
| 1972 | break; |
| 1973 | case IWL_UCODE_TLV_BOOT: |
| 1974 | pieces->boot = tlv_data; |
| 1975 | pieces->boot_size = tlv_len; |
| 1976 | break; |
| 1977 | case IWL_UCODE_TLV_PROBE_MAX_LEN: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 1978 | if (tlv_len != sizeof(u32)) |
| 1979 | goto invalid_tlv_len; |
| 1980 | capa->max_probe_length = |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1981 | le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1982 | break; |
Johannes Berg | ece9c4e | 2010-08-23 10:46:49 +0200 | [diff] [blame] | 1983 | case IWL_UCODE_TLV_PAN: |
| 1984 | if (tlv_len) |
| 1985 | goto invalid_tlv_len; |
| 1986 | capa->pan = true; |
| 1987 | break; |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1988 | case IWL_UCODE_TLV_INIT_EVTLOG_PTR: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 1989 | if (tlv_len != sizeof(u32)) |
| 1990 | goto invalid_tlv_len; |
| 1991 | pieces->init_evtlog_ptr = |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1992 | le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1993 | break; |
| 1994 | case IWL_UCODE_TLV_INIT_EVTLOG_SIZE: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 1995 | if (tlv_len != sizeof(u32)) |
| 1996 | goto invalid_tlv_len; |
| 1997 | pieces->init_evtlog_size = |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1998 | le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1999 | break; |
| 2000 | case IWL_UCODE_TLV_INIT_ERRLOG_PTR: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 2001 | if (tlv_len != sizeof(u32)) |
| 2002 | goto invalid_tlv_len; |
| 2003 | pieces->init_errlog_ptr = |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 2004 | le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2005 | break; |
| 2006 | case IWL_UCODE_TLV_RUNT_EVTLOG_PTR: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 2007 | if (tlv_len != sizeof(u32)) |
| 2008 | goto invalid_tlv_len; |
| 2009 | pieces->inst_evtlog_ptr = |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 2010 | le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2011 | break; |
| 2012 | case IWL_UCODE_TLV_RUNT_EVTLOG_SIZE: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 2013 | if (tlv_len != sizeof(u32)) |
| 2014 | goto invalid_tlv_len; |
| 2015 | pieces->inst_evtlog_size = |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 2016 | le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2017 | break; |
| 2018 | case IWL_UCODE_TLV_RUNT_ERRLOG_PTR: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 2019 | if (tlv_len != sizeof(u32)) |
| 2020 | goto invalid_tlv_len; |
| 2021 | pieces->inst_errlog_ptr = |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 2022 | le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2023 | break; |
Wey-Yi Guy | c8312fa | 2010-06-28 13:05:17 -0700 | [diff] [blame] | 2024 | case IWL_UCODE_TLV_ENHANCE_SENS_TBL: |
| 2025 | if (tlv_len) |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 2026 | goto invalid_tlv_len; |
| 2027 | priv->enhance_sensitivity_table = true; |
Wey-Yi Guy | c8312fa | 2010-06-28 13:05:17 -0700 | [diff] [blame] | 2028 | break; |
Wey-Yi Guy | 6a822d0 | 2010-07-13 17:13:15 -0700 | [diff] [blame] | 2029 | case IWL_UCODE_TLV_PHY_CALIBRATION_SIZE: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 2030 | if (tlv_len != sizeof(u32)) |
| 2031 | goto invalid_tlv_len; |
| 2032 | capa->standard_phy_calibration_size = |
Wey-Yi Guy | 6a822d0 | 2010-07-13 17:13:15 -0700 | [diff] [blame] | 2033 | le32_to_cpup((__le32 *)tlv_data); |
| 2034 | break; |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 2035 | default: |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 2036 | IWL_WARN(priv, "unknown TLV: %d\n", tlv_type); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 2037 | break; |
| 2038 | } |
| 2039 | } |
| 2040 | |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 2041 | if (len) { |
| 2042 | IWL_ERR(priv, "invalid TLV after parsing: %zd\n", len); |
| 2043 | iwl_print_hex_dump(priv, IWL_DL_FW, (u8 *)data, len); |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 2044 | return -EINVAL; |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 2045 | } |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 2046 | |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 2047 | return 0; |
| 2048 | |
| 2049 | invalid_tlv_len: |
| 2050 | IWL_ERR(priv, "TLV %d has invalid size: %u\n", tlv_type, tlv_len); |
| 2051 | iwl_print_hex_dump(priv, IWL_DL_FW, tlv_data, tlv_len); |
| 2052 | |
| 2053 | return -EINVAL; |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 2054 | } |
| 2055 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2056 | /** |
| 2057 | * iwl_ucode_callback - callback when firmware was loaded |
| 2058 | * |
| 2059 | * If loaded successfully, copies the firmware into buffers |
| 2060 | * for the card to fetch (via DMA). |
| 2061 | */ |
| 2062 | static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context) |
| 2063 | { |
| 2064 | struct iwl_priv *priv = context; |
| 2065 | struct iwl_ucode_header *ucode; |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2066 | int err; |
| 2067 | struct iwlagn_firmware_pieces pieces; |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 2068 | const unsigned int api_max = priv->cfg->ucode_api_max; |
| 2069 | const unsigned int api_min = priv->cfg->ucode_api_min; |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2070 | u32 api_ver; |
Johannes Berg | 3e4de76 | 2010-04-28 12:09:12 -0700 | [diff] [blame] | 2071 | char buildstr[25]; |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2072 | u32 build; |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 2073 | struct iwlagn_ucode_capabilities ucode_capa = { |
| 2074 | .max_probe_length = 200, |
Wey-Yi Guy | 6a822d0 | 2010-07-13 17:13:15 -0700 | [diff] [blame] | 2075 | .standard_phy_calibration_size = |
| 2076 | IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE, |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 2077 | }; |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2078 | |
| 2079 | memset(&pieces, 0, sizeof(pieces)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2080 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2081 | if (!ucode_raw) { |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 2082 | if (priv->fw_index <= priv->cfg->ucode_api_max) |
| 2083 | IWL_ERR(priv, |
| 2084 | "request for firmware file '%s' failed.\n", |
| 2085 | priv->firmware_name); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2086 | goto try_again; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2087 | } |
| 2088 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2089 | IWL_DEBUG_INFO(priv, "Loaded firmware file '%s' (%zd bytes).\n", |
| 2090 | priv->firmware_name, ucode_raw->size); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2091 | |
Johannes Berg | 22adba2 | 2010-04-28 12:09:14 -0700 | [diff] [blame] | 2092 | /* Make sure that we got at least the API version number */ |
| 2093 | if (ucode_raw->size < 4) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 2094 | IWL_ERR(priv, "File size way too small!\n"); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2095 | goto try_again; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2096 | } |
| 2097 | |
| 2098 | /* Data from ucode file: header followed by uCode images */ |
Jay Sternberg | cc0f555 | 2009-07-17 09:30:16 -0700 | [diff] [blame] | 2099 | ucode = (struct iwl_ucode_header *)ucode_raw->data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2100 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2101 | if (ucode->ver) |
| 2102 | err = iwlagn_load_legacy_firmware(priv, ucode_raw, &pieces); |
| 2103 | else |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 2104 | err = iwlagn_load_firmware(priv, ucode_raw, &pieces, |
| 2105 | &ucode_capa); |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2106 | |
| 2107 | if (err) |
| 2108 | goto try_again; |
| 2109 | |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 2110 | api_ver = IWL_UCODE_API(priv->ucode_ver); |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2111 | build = pieces.build; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2112 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2113 | /* |
| 2114 | * api_ver should match the api version forming part of the |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 2115 | * firmware filename ... but we don't check for that and only rely |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2116 | * on the API version read from firmware header from here on forward |
| 2117 | */ |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 2118 | if (api_ver < api_min || api_ver > api_max) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 2119 | IWL_ERR(priv, "Driver unable to support your firmware API. " |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 2120 | "Driver supports v%u, firmware is v%u.\n", |
| 2121 | api_max, api_ver); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2122 | goto try_again; |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 2123 | } |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2124 | |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 2125 | if (api_ver != api_max) |
Tomas Winkler | 978785a | 2008-12-19 10:37:31 +0800 | [diff] [blame] | 2126 | IWL_ERR(priv, "Firmware has old API version. Expected v%u, " |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 2127 | "got v%u. New firmware can be obtained " |
| 2128 | "from http://www.intellinuxwireless.org.\n", |
| 2129 | api_max, api_ver); |
| 2130 | |
Johannes Berg | 3e4de76 | 2010-04-28 12:09:12 -0700 | [diff] [blame] | 2131 | if (build) |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 2132 | sprintf(buildstr, " build %u%s", build, |
| 2133 | (priv->fw_index == UCODE_EXPERIMENTAL_INDEX) |
| 2134 | ? " (EXP)" : ""); |
Johannes Berg | 3e4de76 | 2010-04-28 12:09:12 -0700 | [diff] [blame] | 2135 | else |
| 2136 | buildstr[0] = '\0'; |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 2137 | |
Johannes Berg | 3e4de76 | 2010-04-28 12:09:12 -0700 | [diff] [blame] | 2138 | IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u%s\n", |
Reinette Chatre | 5ebeb5a | 2009-10-30 14:36:04 -0700 | [diff] [blame] | 2139 | IWL_UCODE_MAJOR(priv->ucode_ver), |
| 2140 | IWL_UCODE_MINOR(priv->ucode_ver), |
| 2141 | IWL_UCODE_API(priv->ucode_ver), |
Johannes Berg | 3e4de76 | 2010-04-28 12:09:12 -0700 | [diff] [blame] | 2142 | IWL_UCODE_SERIAL(priv->ucode_ver), |
| 2143 | buildstr); |
Reinette Chatre | 5ebeb5a | 2009-10-30 14:36:04 -0700 | [diff] [blame] | 2144 | |
Johannes Berg | 3e4de76 | 2010-04-28 12:09:12 -0700 | [diff] [blame] | 2145 | snprintf(priv->hw->wiphy->fw_version, |
| 2146 | sizeof(priv->hw->wiphy->fw_version), |
| 2147 | "%u.%u.%u.%u%s", |
| 2148 | IWL_UCODE_MAJOR(priv->ucode_ver), |
| 2149 | IWL_UCODE_MINOR(priv->ucode_ver), |
| 2150 | IWL_UCODE_API(priv->ucode_ver), |
| 2151 | IWL_UCODE_SERIAL(priv->ucode_ver), |
| 2152 | buildstr); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2153 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2154 | /* |
| 2155 | * For any of the failures below (before allocating pci memory) |
| 2156 | * we will try to load a version with a smaller API -- maybe the |
| 2157 | * user just got a corrupted version of the latest API. |
| 2158 | */ |
| 2159 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2160 | IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n", |
| 2161 | priv->ucode_ver); |
| 2162 | IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %Zd\n", |
| 2163 | pieces.inst_size); |
| 2164 | IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %Zd\n", |
| 2165 | pieces.data_size); |
| 2166 | IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %Zd\n", |
| 2167 | pieces.init_size); |
| 2168 | IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %Zd\n", |
| 2169 | pieces.init_data_size); |
| 2170 | IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %Zd\n", |
| 2171 | pieces.boot_size); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2172 | |
| 2173 | /* Verify that uCode images will fit in card's SRAM */ |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2174 | if (pieces.inst_size > priv->hw_params.max_inst_size) { |
| 2175 | IWL_ERR(priv, "uCode instr len %Zd too large to fit in\n", |
| 2176 | pieces.inst_size); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2177 | goto try_again; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2178 | } |
| 2179 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2180 | if (pieces.data_size > priv->hw_params.max_data_size) { |
| 2181 | IWL_ERR(priv, "uCode data len %Zd too large to fit in\n", |
| 2182 | pieces.data_size); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2183 | goto try_again; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2184 | } |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2185 | |
| 2186 | if (pieces.init_size > priv->hw_params.max_inst_size) { |
| 2187 | IWL_ERR(priv, "uCode init instr len %Zd too large to fit in\n", |
| 2188 | pieces.init_size); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2189 | goto try_again; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2190 | } |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2191 | |
| 2192 | if (pieces.init_data_size > priv->hw_params.max_data_size) { |
| 2193 | IWL_ERR(priv, "uCode init data len %Zd too large to fit in\n", |
| 2194 | pieces.init_data_size); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2195 | goto try_again; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2196 | } |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2197 | |
| 2198 | if (pieces.boot_size > priv->hw_params.max_bsm_size) { |
| 2199 | IWL_ERR(priv, "uCode boot instr len %Zd too large to fit in\n", |
| 2200 | pieces.boot_size); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2201 | goto try_again; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2202 | } |
| 2203 | |
| 2204 | /* Allocate ucode buffers for card's bus-master loading ... */ |
| 2205 | |
| 2206 | /* Runtime instructions and 2 copies of data: |
| 2207 | * 1) unmodified from disk |
| 2208 | * 2) backup cache for save/restore during power-downs */ |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2209 | priv->ucode_code.len = pieces.inst_size; |
Tomas Winkler | 98c9221 | 2008-01-14 17:46:20 -0800 | [diff] [blame] | 2210 | iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2211 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2212 | priv->ucode_data.len = pieces.data_size; |
Tomas Winkler | 98c9221 | 2008-01-14 17:46:20 -0800 | [diff] [blame] | 2213 | iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2214 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2215 | priv->ucode_data_backup.len = pieces.data_size; |
Tomas Winkler | 98c9221 | 2008-01-14 17:46:20 -0800 | [diff] [blame] | 2216 | iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2217 | |
Zhu, Yi | 1f304e4 | 2009-01-23 13:45:22 -0800 | [diff] [blame] | 2218 | if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr || |
| 2219 | !priv->ucode_data_backup.v_addr) |
| 2220 | goto err_pci_alloc; |
| 2221 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2222 | /* Initialization instructions and data */ |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2223 | if (pieces.init_size && pieces.init_data_size) { |
| 2224 | priv->ucode_init.len = pieces.init_size; |
Tomas Winkler | 98c9221 | 2008-01-14 17:46:20 -0800 | [diff] [blame] | 2225 | iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2226 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2227 | priv->ucode_init_data.len = pieces.init_data_size; |
Tomas Winkler | 98c9221 | 2008-01-14 17:46:20 -0800 | [diff] [blame] | 2228 | iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data); |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 2229 | |
| 2230 | if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr) |
| 2231 | goto err_pci_alloc; |
| 2232 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2233 | |
| 2234 | /* Bootstrap (instructions only, no data) */ |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2235 | if (pieces.boot_size) { |
| 2236 | priv->ucode_boot.len = pieces.boot_size; |
Tomas Winkler | 98c9221 | 2008-01-14 17:46:20 -0800 | [diff] [blame] | 2237 | iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2238 | |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 2239 | if (!priv->ucode_boot.v_addr) |
| 2240 | goto err_pci_alloc; |
| 2241 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2242 | |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2243 | /* Now that we can no longer fail, copy information */ |
| 2244 | |
| 2245 | /* |
| 2246 | * The (size - 16) / 12 formula is based on the information recorded |
| 2247 | * for each event, which is of mode 1 (including timestamp) for all |
| 2248 | * new microcodes that include this information. |
| 2249 | */ |
| 2250 | priv->_agn.init_evtlog_ptr = pieces.init_evtlog_ptr; |
| 2251 | if (pieces.init_evtlog_size) |
| 2252 | priv->_agn.init_evtlog_size = (pieces.init_evtlog_size - 16)/12; |
| 2253 | else |
| 2254 | priv->_agn.init_evtlog_size = priv->cfg->max_event_log_size; |
| 2255 | priv->_agn.init_errlog_ptr = pieces.init_errlog_ptr; |
| 2256 | priv->_agn.inst_evtlog_ptr = pieces.inst_evtlog_ptr; |
| 2257 | if (pieces.inst_evtlog_size) |
| 2258 | priv->_agn.inst_evtlog_size = (pieces.inst_evtlog_size - 16)/12; |
| 2259 | else |
| 2260 | priv->_agn.inst_evtlog_size = priv->cfg->max_event_log_size; |
| 2261 | priv->_agn.inst_errlog_ptr = pieces.inst_errlog_ptr; |
| 2262 | |
Johannes Berg | ece9c4e | 2010-08-23 10:46:49 +0200 | [diff] [blame] | 2263 | if (ucode_capa.pan) { |
| 2264 | priv->valid_contexts |= BIT(IWL_RXON_CTX_PAN); |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 2265 | priv->sta_key_max_num = STA_KEY_MAX_NUM_PAN; |
Johannes Berg | ece9c4e | 2010-08-23 10:46:49 +0200 | [diff] [blame] | 2266 | } else |
| 2267 | priv->sta_key_max_num = STA_KEY_MAX_NUM; |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 2268 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2269 | /* Copy images into buffers for card's bus-master reads ... */ |
| 2270 | |
| 2271 | /* Runtime instructions (first block of data in file) */ |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2272 | IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode instr len %Zd\n", |
| 2273 | pieces.inst_size); |
| 2274 | memcpy(priv->ucode_code.v_addr, pieces.inst, pieces.inst_size); |
Jay Sternberg | cc0f555 | 2009-07-17 09:30:16 -0700 | [diff] [blame] | 2275 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2276 | 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] | 2277 | priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr); |
| 2278 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2279 | /* |
| 2280 | * Runtime data |
| 2281 | * NOTE: Copy into backup buffer will be done in iwl_up() |
| 2282 | */ |
| 2283 | IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode data len %Zd\n", |
| 2284 | pieces.data_size); |
| 2285 | memcpy(priv->ucode_data.v_addr, pieces.data, pieces.data_size); |
| 2286 | memcpy(priv->ucode_data_backup.v_addr, pieces.data, pieces.data_size); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2287 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2288 | /* Initialization instructions */ |
| 2289 | if (pieces.init_size) { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2290 | 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] | 2291 | pieces.init_size); |
| 2292 | memcpy(priv->ucode_init.v_addr, pieces.init, pieces.init_size); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2293 | } |
| 2294 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2295 | /* Initialization data */ |
| 2296 | if (pieces.init_data_size) { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2297 | 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] | 2298 | pieces.init_data_size); |
| 2299 | memcpy(priv->ucode_init_data.v_addr, pieces.init_data, |
| 2300 | pieces.init_data_size); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2301 | } |
| 2302 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 2303 | /* Bootstrap instructions */ |
| 2304 | IWL_DEBUG_INFO(priv, "Copying (but not loading) boot instr len %Zd\n", |
| 2305 | pieces.boot_size); |
| 2306 | memcpy(priv->ucode_boot.v_addr, pieces.boot, pieces.boot_size); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2307 | |
Wey-Yi Guy | 6a822d0 | 2010-07-13 17:13:15 -0700 | [diff] [blame] | 2308 | /* |
| 2309 | * figure out the offset of chain noise reset and gain commands |
| 2310 | * base on the size of standard phy calibration commands table size |
| 2311 | */ |
| 2312 | if (ucode_capa.standard_phy_calibration_size > |
| 2313 | IWL_MAX_PHY_CALIBRATE_TBL_SIZE) |
| 2314 | ucode_capa.standard_phy_calibration_size = |
| 2315 | IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE; |
| 2316 | |
| 2317 | priv->_agn.phy_calib_chain_noise_reset_cmd = |
| 2318 | ucode_capa.standard_phy_calibration_size; |
| 2319 | priv->_agn.phy_calib_chain_noise_gain_cmd = |
| 2320 | ucode_capa.standard_phy_calibration_size + 1; |
| 2321 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2322 | /************************************************** |
| 2323 | * This is still part of probe() in a sense... |
| 2324 | * |
| 2325 | * 9. Setup and register with mac80211 and debugfs |
| 2326 | **************************************************/ |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 2327 | err = iwl_mac_setup_register(priv, &ucode_capa); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2328 | if (err) |
| 2329 | goto out_unbind; |
| 2330 | |
| 2331 | err = iwl_dbgfs_register(priv, DRV_NAME); |
| 2332 | if (err) |
| 2333 | IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err); |
| 2334 | |
Emmanuel Grumbach | 7d47618 | 2010-05-23 00:14:08 -0700 | [diff] [blame] | 2335 | err = sysfs_create_group(&priv->pci_dev->dev.kobj, |
| 2336 | &iwl_attribute_group); |
| 2337 | if (err) { |
| 2338 | IWL_ERR(priv, "failed to create sysfs device attributes\n"); |
| 2339 | goto out_unbind; |
| 2340 | } |
| 2341 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2342 | /* We have our copies now, allow OS release its copies */ |
| 2343 | release_firmware(ucode_raw); |
Reinette Chatre | a15707d | 2010-05-10 15:08:11 -0700 | [diff] [blame] | 2344 | complete(&priv->_agn.firmware_loading_complete); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2345 | return; |
| 2346 | |
| 2347 | try_again: |
| 2348 | /* try next, if any */ |
| 2349 | if (iwl_request_firmware(priv, false)) |
| 2350 | goto out_unbind; |
| 2351 | release_firmware(ucode_raw); |
| 2352 | return; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2353 | |
| 2354 | err_pci_alloc: |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 2355 | IWL_ERR(priv, "failed to allocate pci memory\n"); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2356 | iwl_dealloc_ucode_pci(priv); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2357 | out_unbind: |
Reinette Chatre | a15707d | 2010-05-10 15:08:11 -0700 | [diff] [blame] | 2358 | complete(&priv->_agn.firmware_loading_complete); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 2359 | device_release_driver(&priv->pci_dev->dev); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2360 | release_firmware(ucode_raw); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2361 | } |
| 2362 | |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2363 | static const char *desc_lookup_text[] = { |
| 2364 | "OK", |
| 2365 | "FAIL", |
| 2366 | "BAD_PARAM", |
| 2367 | "BAD_CHECKSUM", |
| 2368 | "NMI_INTERRUPT_WDG", |
| 2369 | "SYSASSERT", |
| 2370 | "FATAL_ERROR", |
| 2371 | "BAD_COMMAND", |
| 2372 | "HW_ERROR_TUNE_LOCK", |
| 2373 | "HW_ERROR_TEMPERATURE", |
| 2374 | "ILLEGAL_CHAN_FREQ", |
| 2375 | "VCC_NOT_STABLE", |
| 2376 | "FH_ERROR", |
| 2377 | "NMI_INTERRUPT_HOST", |
| 2378 | "NMI_INTERRUPT_ACTION_PT", |
| 2379 | "NMI_INTERRUPT_UNKNOWN", |
| 2380 | "UCODE_VERSION_MISMATCH", |
| 2381 | "HW_ERROR_ABS_LOCK", |
| 2382 | "HW_ERROR_CAL_LOCK_FAIL", |
| 2383 | "NMI_INTERRUPT_INST_ACTION_PT", |
| 2384 | "NMI_INTERRUPT_DATA_ACTION_PT", |
| 2385 | "NMI_TRM_HW_ER", |
| 2386 | "NMI_INTERRUPT_TRM", |
| 2387 | "NMI_INTERRUPT_BREAK_POINT" |
| 2388 | "DEBUG_0", |
| 2389 | "DEBUG_1", |
| 2390 | "DEBUG_2", |
| 2391 | "DEBUG_3", |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2392 | }; |
| 2393 | |
Jay Sternberg | 4b58645 | 2010-07-02 15:49:10 -0700 | [diff] [blame] | 2394 | static struct { char *name; u8 num; } advanced_lookup[] = { |
| 2395 | { "NMI_INTERRUPT_WDG", 0x34 }, |
| 2396 | { "SYSASSERT", 0x35 }, |
| 2397 | { "UCODE_VERSION_MISMATCH", 0x37 }, |
| 2398 | { "BAD_COMMAND", 0x38 }, |
| 2399 | { "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C }, |
| 2400 | { "FATAL_ERROR", 0x3D }, |
| 2401 | { "NMI_TRM_HW_ERR", 0x46 }, |
| 2402 | { "NMI_INTERRUPT_TRM", 0x4C }, |
| 2403 | { "NMI_INTERRUPT_BREAK_POINT", 0x54 }, |
| 2404 | { "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C }, |
| 2405 | { "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64 }, |
| 2406 | { "NMI_INTERRUPT_HOST", 0x66 }, |
| 2407 | { "NMI_INTERRUPT_ACTION_PT", 0x7C }, |
| 2408 | { "NMI_INTERRUPT_UNKNOWN", 0x84 }, |
| 2409 | { "NMI_INTERRUPT_INST_ACTION_PT", 0x86 }, |
| 2410 | { "ADVANCED_SYSASSERT", 0 }, |
| 2411 | }; |
| 2412 | |
| 2413 | static const char *desc_lookup(u32 num) |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2414 | { |
Jay Sternberg | 4b58645 | 2010-07-02 15:49:10 -0700 | [diff] [blame] | 2415 | int i; |
| 2416 | int max = ARRAY_SIZE(desc_lookup_text); |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2417 | |
Jay Sternberg | 4b58645 | 2010-07-02 15:49:10 -0700 | [diff] [blame] | 2418 | if (num < max) |
| 2419 | return desc_lookup_text[num]; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2420 | |
Jay Sternberg | 4b58645 | 2010-07-02 15:49:10 -0700 | [diff] [blame] | 2421 | max = ARRAY_SIZE(advanced_lookup) - 1; |
| 2422 | for (i = 0; i < max; i++) { |
| 2423 | if (advanced_lookup[i].num == num) |
| 2424 | break;; |
| 2425 | } |
| 2426 | return advanced_lookup[i].name; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2427 | } |
| 2428 | |
| 2429 | #define ERROR_START_OFFSET (1 * sizeof(u32)) |
| 2430 | #define ERROR_ELEM_SIZE (7 * sizeof(u32)) |
| 2431 | |
| 2432 | void iwl_dump_nic_error_log(struct iwl_priv *priv) |
| 2433 | { |
| 2434 | u32 data2, line; |
| 2435 | u32 desc, time, count, base, data1; |
| 2436 | u32 blink1, blink2, ilink1, ilink2; |
Wey-Yi Guy | 461ef38 | 2010-03-30 17:57:53 -0700 | [diff] [blame] | 2437 | u32 pc, hcmd; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2438 | |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2439 | if (priv->ucode_type == UCODE_INIT) { |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2440 | base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr); |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2441 | if (!base) |
| 2442 | base = priv->_agn.init_errlog_ptr; |
| 2443 | } else { |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2444 | base = le32_to_cpu(priv->card_alive.error_event_table_ptr); |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2445 | if (!base) |
| 2446 | base = priv->_agn.inst_errlog_ptr; |
| 2447 | } |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2448 | |
| 2449 | if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) { |
Wey-Yi Guy | 212fb57 | 2009-12-02 12:53:00 -0800 | [diff] [blame] | 2450 | IWL_ERR(priv, |
| 2451 | "Not valid error log pointer 0x%08X for %s uCode\n", |
| 2452 | base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT"); |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2453 | return; |
| 2454 | } |
| 2455 | |
| 2456 | count = iwl_read_targ_mem(priv, base); |
| 2457 | |
| 2458 | if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) { |
| 2459 | IWL_ERR(priv, "Start IWL Error Log Dump:\n"); |
| 2460 | IWL_ERR(priv, "Status: 0x%08lX, count: %d\n", |
| 2461 | priv->status, count); |
| 2462 | } |
| 2463 | |
| 2464 | desc = iwl_read_targ_mem(priv, base + 1 * sizeof(u32)); |
Wey-Yi Guy | 461ef38 | 2010-03-30 17:57:53 -0700 | [diff] [blame] | 2465 | pc = iwl_read_targ_mem(priv, base + 2 * sizeof(u32)); |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2466 | blink1 = iwl_read_targ_mem(priv, base + 3 * sizeof(u32)); |
| 2467 | blink2 = iwl_read_targ_mem(priv, base + 4 * sizeof(u32)); |
| 2468 | ilink1 = iwl_read_targ_mem(priv, base + 5 * sizeof(u32)); |
| 2469 | ilink2 = iwl_read_targ_mem(priv, base + 6 * sizeof(u32)); |
| 2470 | data1 = iwl_read_targ_mem(priv, base + 7 * sizeof(u32)); |
| 2471 | data2 = iwl_read_targ_mem(priv, base + 8 * sizeof(u32)); |
| 2472 | line = iwl_read_targ_mem(priv, base + 9 * sizeof(u32)); |
| 2473 | time = iwl_read_targ_mem(priv, base + 11 * sizeof(u32)); |
Wey-Yi Guy | 461ef38 | 2010-03-30 17:57:53 -0700 | [diff] [blame] | 2474 | hcmd = iwl_read_targ_mem(priv, base + 22 * sizeof(u32)); |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2475 | |
Johannes Berg | be1a71a | 2009-10-02 13:44:02 -0700 | [diff] [blame] | 2476 | trace_iwlwifi_dev_ucode_error(priv, desc, time, data1, data2, line, |
| 2477 | blink1, blink2, ilink1, ilink2); |
| 2478 | |
Jay Sternberg | 8756371 | 2010-06-14 14:40:40 -0700 | [diff] [blame] | 2479 | IWL_ERR(priv, "Desc Time " |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2480 | "data1 data2 line\n"); |
Jay Sternberg | 8756371 | 2010-06-14 14:40:40 -0700 | [diff] [blame] | 2481 | 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] | 2482 | desc_lookup(desc), desc, time, data1, data2, line); |
Wey-Yi Guy | 461ef38 | 2010-03-30 17:57:53 -0700 | [diff] [blame] | 2483 | IWL_ERR(priv, "pc blink1 blink2 ilink1 ilink2 hcmd\n"); |
| 2484 | IWL_ERR(priv, "0x%05X 0x%05X 0x%05X 0x%05X 0x%05X 0x%05X\n", |
| 2485 | pc, blink1, blink2, ilink1, ilink2, hcmd); |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2486 | } |
| 2487 | |
| 2488 | #define EVENT_START_OFFSET (4 * sizeof(u32)) |
| 2489 | |
| 2490 | /** |
| 2491 | * iwl_print_event_log - Dump error event log to syslog |
| 2492 | * |
| 2493 | */ |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2494 | static int iwl_print_event_log(struct iwl_priv *priv, u32 start_idx, |
| 2495 | u32 num_events, u32 mode, |
| 2496 | int pos, char **buf, size_t bufsz) |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2497 | { |
| 2498 | u32 i; |
| 2499 | u32 base; /* SRAM byte address of event log header */ |
| 2500 | u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */ |
| 2501 | u32 ptr; /* SRAM byte address of log data */ |
| 2502 | u32 ev, time, data; /* event log data */ |
Ben Cahill | e585447 | 2009-11-06 14:52:58 -0800 | [diff] [blame] | 2503 | unsigned long reg_flags; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2504 | |
| 2505 | if (num_events == 0) |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2506 | return pos; |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2507 | |
| 2508 | if (priv->ucode_type == UCODE_INIT) { |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2509 | base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr); |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2510 | if (!base) |
| 2511 | base = priv->_agn.init_evtlog_ptr; |
| 2512 | } else { |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2513 | base = le32_to_cpu(priv->card_alive.log_event_table_ptr); |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2514 | if (!base) |
| 2515 | base = priv->_agn.inst_evtlog_ptr; |
| 2516 | } |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2517 | |
| 2518 | if (mode == 0) |
| 2519 | event_size = 2 * sizeof(u32); |
| 2520 | else |
| 2521 | event_size = 3 * sizeof(u32); |
| 2522 | |
| 2523 | ptr = base + EVENT_START_OFFSET + (start_idx * event_size); |
| 2524 | |
Ben Cahill | e585447 | 2009-11-06 14:52:58 -0800 | [diff] [blame] | 2525 | /* Make sure device is powered up for SRAM reads */ |
| 2526 | spin_lock_irqsave(&priv->reg_lock, reg_flags); |
| 2527 | iwl_grab_nic_access(priv); |
| 2528 | |
| 2529 | /* Set starting address; reads will auto-increment */ |
| 2530 | _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr); |
| 2531 | rmb(); |
| 2532 | |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2533 | /* "time" is actually "data" for mode 0 (no timestamp). |
| 2534 | * place event id # at far right for easier visual parsing. */ |
| 2535 | for (i = 0; i < num_events; i++) { |
Ben Cahill | e585447 | 2009-11-06 14:52:58 -0800 | [diff] [blame] | 2536 | ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT); |
| 2537 | time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT); |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2538 | if (mode == 0) { |
| 2539 | /* data, ev */ |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2540 | if (bufsz) { |
| 2541 | pos += scnprintf(*buf + pos, bufsz - pos, |
| 2542 | "EVT_LOG:0x%08x:%04u\n", |
| 2543 | time, ev); |
| 2544 | } else { |
| 2545 | trace_iwlwifi_dev_ucode_event(priv, 0, |
| 2546 | time, ev); |
| 2547 | IWL_ERR(priv, "EVT_LOG:0x%08x:%04u\n", |
| 2548 | time, ev); |
| 2549 | } |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2550 | } else { |
Ben Cahill | e585447 | 2009-11-06 14:52:58 -0800 | [diff] [blame] | 2551 | data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT); |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2552 | if (bufsz) { |
| 2553 | pos += scnprintf(*buf + pos, bufsz - pos, |
| 2554 | "EVT_LOGT:%010u:0x%08x:%04u\n", |
| 2555 | time, data, ev); |
| 2556 | } else { |
| 2557 | IWL_ERR(priv, "EVT_LOGT:%010u:0x%08x:%04u\n", |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2558 | time, data, ev); |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2559 | trace_iwlwifi_dev_ucode_event(priv, time, |
| 2560 | data, ev); |
| 2561 | } |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2562 | } |
| 2563 | } |
Ben Cahill | e585447 | 2009-11-06 14:52:58 -0800 | [diff] [blame] | 2564 | |
| 2565 | /* Allow device to power down */ |
| 2566 | iwl_release_nic_access(priv); |
| 2567 | spin_unlock_irqrestore(&priv->reg_lock, reg_flags); |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2568 | return pos; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2569 | } |
| 2570 | |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2571 | /** |
| 2572 | * iwl_print_last_event_logs - Dump the newest # of event log to syslog |
| 2573 | */ |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2574 | static int iwl_print_last_event_logs(struct iwl_priv *priv, u32 capacity, |
| 2575 | u32 num_wraps, u32 next_entry, |
| 2576 | u32 size, u32 mode, |
| 2577 | int pos, char **buf, size_t bufsz) |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2578 | { |
| 2579 | /* |
| 2580 | * display the newest DEFAULT_LOG_ENTRIES entries |
| 2581 | * i.e the entries just before the next ont that uCode would fill. |
| 2582 | */ |
| 2583 | if (num_wraps) { |
| 2584 | if (next_entry < size) { |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2585 | pos = iwl_print_event_log(priv, |
| 2586 | capacity - (size - next_entry), |
| 2587 | size - next_entry, mode, |
| 2588 | pos, buf, bufsz); |
| 2589 | pos = iwl_print_event_log(priv, 0, |
| 2590 | next_entry, mode, |
| 2591 | pos, buf, bufsz); |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2592 | } else |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2593 | pos = iwl_print_event_log(priv, next_entry - size, |
| 2594 | size, mode, pos, buf, bufsz); |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2595 | } else { |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2596 | if (next_entry < size) { |
| 2597 | pos = iwl_print_event_log(priv, 0, next_entry, |
| 2598 | mode, pos, buf, bufsz); |
| 2599 | } else { |
| 2600 | pos = iwl_print_event_log(priv, next_entry - size, |
| 2601 | size, mode, pos, buf, bufsz); |
| 2602 | } |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2603 | } |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2604 | return pos; |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2605 | } |
| 2606 | |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2607 | #define DEFAULT_DUMP_EVENT_LOG_ENTRIES (20) |
| 2608 | |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2609 | int iwl_dump_nic_event_log(struct iwl_priv *priv, bool full_log, |
| 2610 | char **buf, bool display) |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2611 | { |
| 2612 | u32 base; /* SRAM byte address of event log header */ |
| 2613 | u32 capacity; /* event log capacity in # entries */ |
| 2614 | u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */ |
| 2615 | u32 num_wraps; /* # times uCode wrapped to top of log */ |
| 2616 | u32 next_entry; /* index of next entry to be written by uCode */ |
| 2617 | u32 size; /* # entries that we'll print */ |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2618 | u32 logsize; |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2619 | int pos = 0; |
| 2620 | size_t bufsz = 0; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2621 | |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2622 | if (priv->ucode_type == UCODE_INIT) { |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2623 | base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr); |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2624 | logsize = priv->_agn.init_evtlog_size; |
| 2625 | if (!base) |
| 2626 | base = priv->_agn.init_evtlog_ptr; |
| 2627 | } else { |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2628 | base = le32_to_cpu(priv->card_alive.log_event_table_ptr); |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2629 | logsize = priv->_agn.inst_evtlog_size; |
| 2630 | if (!base) |
| 2631 | base = priv->_agn.inst_evtlog_ptr; |
| 2632 | } |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2633 | |
| 2634 | if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) { |
Wey-Yi Guy | 212fb57 | 2009-12-02 12:53:00 -0800 | [diff] [blame] | 2635 | IWL_ERR(priv, |
| 2636 | "Invalid event log pointer 0x%08X for %s uCode\n", |
| 2637 | base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT"); |
Wey-Yi Guy | 937c397 | 2010-01-15 13:43:36 -0800 | [diff] [blame] | 2638 | return -EINVAL; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2639 | } |
| 2640 | |
| 2641 | /* event log header */ |
| 2642 | capacity = iwl_read_targ_mem(priv, base); |
| 2643 | mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32))); |
| 2644 | num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32))); |
| 2645 | next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32))); |
| 2646 | |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2647 | if (capacity > logsize) { |
Ben Cahill | 84c4069 | 2009-11-06 14:52:57 -0800 | [diff] [blame] | 2648 | IWL_ERR(priv, "Log capacity %d is bogus, limit to %d entries\n", |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2649 | capacity, logsize); |
| 2650 | capacity = logsize; |
Ben Cahill | 84c4069 | 2009-11-06 14:52:57 -0800 | [diff] [blame] | 2651 | } |
| 2652 | |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2653 | if (next_entry > logsize) { |
Ben Cahill | 84c4069 | 2009-11-06 14:52:57 -0800 | [diff] [blame] | 2654 | IWL_ERR(priv, "Log write index %d is bogus, limit to %d\n", |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 2655 | next_entry, logsize); |
| 2656 | next_entry = logsize; |
Ben Cahill | 84c4069 | 2009-11-06 14:52:57 -0800 | [diff] [blame] | 2657 | } |
| 2658 | |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2659 | size = num_wraps ? capacity : next_entry; |
| 2660 | |
| 2661 | /* bail out if nothing in log */ |
| 2662 | if (size == 0) { |
| 2663 | 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] | 2664 | return pos; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2665 | } |
| 2666 | |
Wey-Yi Guy | f37837c | 2010-08-23 07:57:12 -0700 | [diff] [blame] | 2667 | /* enable/disable bt channel announcement */ |
| 2668 | priv->bt_ch_announce = iwlagn_bt_ch_announce; |
| 2669 | |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2670 | #ifdef CONFIG_IWLWIFI_DEBUG |
Wey-Yi Guy | 521d9bc | 2009-12-10 14:37:23 -0800 | [diff] [blame] | 2671 | 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] | 2672 | size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES) |
| 2673 | ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size; |
| 2674 | #else |
| 2675 | size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES) |
| 2676 | ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2677 | #endif |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2678 | IWL_ERR(priv, "Start IWL Event Log Dump: display last %u entries\n", |
| 2679 | size); |
| 2680 | |
| 2681 | #ifdef CONFIG_IWLWIFI_DEBUG |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2682 | if (display) { |
| 2683 | if (full_log) |
| 2684 | bufsz = capacity * 48; |
| 2685 | else |
| 2686 | bufsz = size * 48; |
| 2687 | *buf = kmalloc(bufsz, GFP_KERNEL); |
| 2688 | if (!*buf) |
Wey-Yi Guy | 937c397 | 2010-01-15 13:43:36 -0800 | [diff] [blame] | 2689 | return -ENOMEM; |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2690 | } |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2691 | if ((iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) || full_log) { |
| 2692 | /* |
| 2693 | * if uCode has wrapped back to top of log, |
| 2694 | * start at the oldest entry, |
| 2695 | * i.e the next one that uCode would fill. |
| 2696 | */ |
| 2697 | if (num_wraps) |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2698 | pos = iwl_print_event_log(priv, next_entry, |
| 2699 | capacity - next_entry, mode, |
| 2700 | pos, buf, bufsz); |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2701 | /* (then/else) start at top of log */ |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2702 | pos = iwl_print_event_log(priv, 0, |
| 2703 | next_entry, mode, pos, buf, bufsz); |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2704 | } else |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2705 | pos = iwl_print_last_event_logs(priv, capacity, num_wraps, |
| 2706 | next_entry, size, mode, |
| 2707 | pos, buf, bufsz); |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2708 | #else |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2709 | pos = iwl_print_last_event_logs(priv, capacity, num_wraps, |
| 2710 | next_entry, size, mode, |
| 2711 | pos, buf, bufsz); |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2712 | #endif |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 2713 | return pos; |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 2714 | } |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 2715 | |
Wey-Yi Guy | 0975cc8 | 2010-07-31 08:34:07 -0700 | [diff] [blame] | 2716 | static void iwl_rf_kill_ct_config(struct iwl_priv *priv) |
| 2717 | { |
| 2718 | struct iwl_ct_kill_config cmd; |
| 2719 | struct iwl_ct_kill_throttling_config adv_cmd; |
| 2720 | unsigned long flags; |
| 2721 | int ret = 0; |
| 2722 | |
| 2723 | spin_lock_irqsave(&priv->lock, flags); |
| 2724 | iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, |
| 2725 | CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT); |
| 2726 | spin_unlock_irqrestore(&priv->lock, flags); |
| 2727 | priv->thermal_throttle.ct_kill_toggle = false; |
| 2728 | |
| 2729 | if (priv->cfg->support_ct_kill_exit) { |
| 2730 | adv_cmd.critical_temperature_enter = |
| 2731 | cpu_to_le32(priv->hw_params.ct_kill_threshold); |
| 2732 | adv_cmd.critical_temperature_exit = |
| 2733 | cpu_to_le32(priv->hw_params.ct_kill_exit_threshold); |
| 2734 | |
| 2735 | ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD, |
| 2736 | sizeof(adv_cmd), &adv_cmd); |
| 2737 | if (ret) |
| 2738 | IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n"); |
| 2739 | else |
| 2740 | IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD " |
| 2741 | "succeeded, " |
| 2742 | "critical temperature enter is %d," |
| 2743 | "exit is %d\n", |
| 2744 | priv->hw_params.ct_kill_threshold, |
| 2745 | priv->hw_params.ct_kill_exit_threshold); |
| 2746 | } else { |
| 2747 | cmd.critical_temperature_R = |
| 2748 | cpu_to_le32(priv->hw_params.ct_kill_threshold); |
| 2749 | |
| 2750 | ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD, |
| 2751 | sizeof(cmd), &cmd); |
| 2752 | if (ret) |
| 2753 | IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n"); |
| 2754 | else |
| 2755 | IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD " |
| 2756 | "succeeded, " |
| 2757 | "critical temperature is %d\n", |
| 2758 | priv->hw_params.ct_kill_threshold); |
| 2759 | } |
| 2760 | } |
| 2761 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2762 | /** |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 2763 | * iwl_alive_start - called after REPLY_ALIVE notification received |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2764 | * from protocol/runtime uCode (initialization uCode's |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 2765 | * Alive gets handled by iwl_init_alive_start()). |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2766 | */ |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 2767 | static void iwl_alive_start(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2768 | { |
Tomas Winkler | 57aab75 | 2008-04-14 21:16:03 -0700 | [diff] [blame] | 2769 | int ret = 0; |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 2770 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2771 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2772 | IWL_DEBUG_INFO(priv, "Runtime Alive received.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2773 | |
| 2774 | if (priv->card_alive.is_valid != UCODE_VALID_OK) { |
| 2775 | /* We had an error bringing up the hardware, so take it |
| 2776 | * all the way back down so we can try again */ |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2777 | IWL_DEBUG_INFO(priv, "Alive failed.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2778 | goto restart; |
| 2779 | } |
| 2780 | |
| 2781 | /* Initialize uCode has loaded Runtime uCode ... verify inst image. |
| 2782 | * This is a paranoid check, because we would not have gotten the |
| 2783 | * "runtime" alive if code weren't properly loaded. */ |
Emmanuel Grumbach | b0692f2 | 2008-04-24 11:55:18 -0700 | [diff] [blame] | 2784 | if (iwl_verify_ucode(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2785 | /* Runtime instruction load was bad; |
| 2786 | * take it all the way back down so we can try again */ |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2787 | IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2788 | goto restart; |
| 2789 | } |
| 2790 | |
Tomas Winkler | 57aab75 | 2008-04-14 21:16:03 -0700 | [diff] [blame] | 2791 | ret = priv->cfg->ops->lib->alive_notify(priv); |
| 2792 | if (ret) { |
Winkler, Tomas | 39aadf8 | 2008-12-19 10:37:32 +0800 | [diff] [blame] | 2793 | IWL_WARN(priv, |
| 2794 | "Could not complete ALIVE transition [ntf]: %d\n", ret); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2795 | goto restart; |
| 2796 | } |
| 2797 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2798 | /* After the ALIVE response, we can send host commands to the uCode */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2799 | set_bit(STATUS_ALIVE, &priv->status); |
| 2800 | |
Wey-Yi Guy | b74e31a | 2010-03-01 17:23:50 -0800 | [diff] [blame] | 2801 | if (priv->cfg->ops->lib->recover_from_tx_stall) { |
| 2802 | /* Enable timer to monitor the driver queues */ |
| 2803 | mod_timer(&priv->monitor_recover, |
| 2804 | jiffies + |
| 2805 | msecs_to_jiffies(priv->cfg->monitor_recover_period)); |
| 2806 | } |
| 2807 | |
Tomas Winkler | fee1247 | 2008-04-03 16:05:21 -0700 | [diff] [blame] | 2808 | if (iwl_is_rfkill(priv)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2809 | return; |
| 2810 | |
Johannes Berg | 36d6825 | 2008-05-15 12:55:26 +0200 | [diff] [blame] | 2811 | ieee80211_wake_queues(priv->hw); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2812 | |
Johannes Berg | 470ab2d | 2010-01-21 11:23:30 -0800 | [diff] [blame] | 2813 | priv->active_rate = IWL_RATES_MASK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2814 | |
Wey-Yi Guy | 2f748de | 2009-09-17 10:43:51 -0700 | [diff] [blame] | 2815 | /* Configure Tx antenna selection based on H/W config */ |
| 2816 | if (priv->cfg->ops->hcmd->set_tx_ant) |
| 2817 | priv->cfg->ops->hcmd->set_tx_ant(priv, priv->cfg->valid_tx_ant); |
| 2818 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 2819 | if (iwl_is_associated_ctx(ctx)) { |
Gregory Greenman | c1adf9f | 2008-05-15 13:53:59 +0800 | [diff] [blame] | 2820 | struct iwl_rxon_cmd *active_rxon = |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 2821 | (struct iwl_rxon_cmd *)&ctx->active; |
Mohamed Abbas | 019fb97 | 2009-03-17 21:59:18 -0700 | [diff] [blame] | 2822 | /* apply any changes in staging */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 2823 | ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2824 | active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
| 2825 | } else { |
| 2826 | /* Initialize our rx_config data */ |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 2827 | iwl_connection_init_rx_config(priv, NULL); |
Abhijeet Kolekar | 4582353 | 2009-04-08 11:26:44 -0700 | [diff] [blame] | 2828 | |
| 2829 | if (priv->cfg->ops->hcmd->set_rxon_chain) |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 2830 | priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2831 | } |
| 2832 | |
Wey-Yi Guy | aeb4a2e | 2010-08-23 07:57:05 -0700 | [diff] [blame] | 2833 | if (!priv->cfg->advanced_bt_coexist) { |
| 2834 | /* Configure Bluetooth device coexistence support */ |
| 2835 | priv->cfg->ops->hcmd->send_bt_config(priv); |
| 2836 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2837 | |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 2838 | iwl_reset_run_time_calib(priv); |
| 2839 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2840 | /* Configure the adapter for unassociated operation */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 2841 | iwlcore_commit_rxon(priv, ctx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2842 | |
| 2843 | /* At this point, the NIC is initialized and operational */ |
Emmanuel Grumbach | 47f4a58 | 2008-06-12 09:47:13 +0800 | [diff] [blame] | 2844 | iwl_rf_kill_ct_config(priv); |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 2845 | |
Johannes Berg | e932a60 | 2009-10-02 13:44:03 -0700 | [diff] [blame] | 2846 | iwl_leds_init(priv); |
Reinette Chatre | fe00b5a | 2008-04-03 16:05:23 -0700 | [diff] [blame] | 2847 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2848 | IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n"); |
Rick Farrington | a9f4678 | 2008-03-18 14:57:49 -0700 | [diff] [blame] | 2849 | set_bit(STATUS_READY, &priv->status); |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 2850 | wake_up_interruptible(&priv->wait_command_queue); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2851 | |
Johannes Berg | e312c24 | 2009-08-07 15:41:51 -0700 | [diff] [blame] | 2852 | iwl_power_update_mode(priv, true); |
Reinette Chatre | 7e24619 | 2010-02-18 22:58:32 -0800 | [diff] [blame] | 2853 | IWL_DEBUG_INFO(priv, "Updated power mode\n"); |
| 2854 | |
Assaf Krauss | c46fbef | 2008-06-12 09:47:05 +0800 | [diff] [blame] | 2855 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2856 | return; |
| 2857 | |
| 2858 | restart: |
| 2859 | queue_work(priv->workqueue, &priv->restart); |
| 2860 | } |
| 2861 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 2862 | static void iwl_cancel_deferred_work(struct iwl_priv *priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2863 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2864 | static void __iwl_down(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2865 | { |
| 2866 | unsigned long flags; |
| 2867 | int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2868 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2869 | IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2870 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2871 | if (!exit_pending) |
| 2872 | set_bit(STATUS_EXIT_PENDING, &priv->status); |
| 2873 | |
Stanislaw Gruszka | b62177a | 2010-08-20 15:23:47 +0200 | [diff] [blame] | 2874 | /* Stop TX queues watchdog. We need to have STATUS_EXIT_PENDING bit set |
| 2875 | * to prevent rearm timer */ |
| 2876 | if (priv->cfg->ops->lib->recover_from_tx_stall) |
| 2877 | del_timer_sync(&priv->monitor_recover); |
| 2878 | |
Johannes Berg | dcef732 | 2010-08-27 08:55:52 -0700 | [diff] [blame] | 2879 | iwl_clear_ucode_stations(priv, NULL); |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 2880 | iwl_dealloc_bcast_stations(priv); |
Johannes Berg | db125c7 | 2010-05-07 01:49:15 -0700 | [diff] [blame] | 2881 | iwl_clear_driver_stations(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2882 | |
Johannes Berg | a117413 | 2010-08-23 07:56:59 -0700 | [diff] [blame] | 2883 | /* reset BT coex data */ |
Wey-Yi Guy | da5dbb9 | 2010-08-23 07:57:13 -0700 | [diff] [blame] | 2884 | priv->bt_status = 0; |
Wey-Yi Guy | a4b96cc | 2010-08-23 07:57:08 -0700 | [diff] [blame] | 2885 | priv->bt_traffic_load = priv->cfg->bt_init_traffic_load; |
Johannes Berg | a117413 | 2010-08-23 07:56:59 -0700 | [diff] [blame] | 2886 | priv->bt_sco_active = false; |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 2887 | priv->bt_full_concurrent = false; |
| 2888 | priv->bt_ci_compliance = 0; |
Johannes Berg | a117413 | 2010-08-23 07:56:59 -0700 | [diff] [blame] | 2889 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2890 | /* Unblock any waiting calls */ |
| 2891 | wake_up_interruptible_all(&priv->wait_command_queue); |
| 2892 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2893 | /* Wipe out the EXIT_PENDING status bit if we are not actually |
| 2894 | * exiting the module */ |
| 2895 | if (!exit_pending) |
| 2896 | clear_bit(STATUS_EXIT_PENDING, &priv->status); |
| 2897 | |
| 2898 | /* stop and reset the on-board processor */ |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 2899 | iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2900 | |
| 2901 | /* tell the device to stop sending interrupts */ |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 2902 | spin_lock_irqsave(&priv->lock, flags); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2903 | iwl_disable_interrupts(priv); |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 2904 | spin_unlock_irqrestore(&priv->lock, flags); |
| 2905 | iwl_synchronize_irq(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2906 | |
| 2907 | if (priv->mac80211_registered) |
| 2908 | ieee80211_stop_queues(priv->hw); |
| 2909 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2910 | /* If we have not previously called iwl_init() then |
Johannes Berg | a60e77e | 2009-06-04 18:26:06 +0200 | [diff] [blame] | 2911 | * clear all bits but the RF Kill bit and return */ |
Tomas Winkler | fee1247 | 2008-04-03 16:05:21 -0700 | [diff] [blame] | 2912 | if (!iwl_is_init(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2913 | priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) << |
| 2914 | STATUS_RF_KILL_HW | |
Reinette Chatre | 9788864 | 2008-02-06 11:20:38 -0800 | [diff] [blame] | 2915 | test_bit(STATUS_GEO_CONFIGURED, &priv->status) << |
| 2916 | STATUS_GEO_CONFIGURED | |
Mohamed Abbas | 052ec3f | 2008-06-30 17:23:15 +0800 | [diff] [blame] | 2917 | test_bit(STATUS_EXIT_PENDING, &priv->status) << |
| 2918 | STATUS_EXIT_PENDING; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2919 | goto exit; |
| 2920 | } |
| 2921 | |
Wey-Yi Guy | 6da3a13 | 2009-03-26 10:14:08 -0700 | [diff] [blame] | 2922 | /* ...otherwise clear out all the status bits but the RF Kill |
Johannes Berg | a60e77e | 2009-06-04 18:26:06 +0200 | [diff] [blame] | 2923 | * bit and continue taking the NIC down. */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2924 | priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) << |
| 2925 | STATUS_RF_KILL_HW | |
Reinette Chatre | 9788864 | 2008-02-06 11:20:38 -0800 | [diff] [blame] | 2926 | test_bit(STATUS_GEO_CONFIGURED, &priv->status) << |
| 2927 | STATUS_GEO_CONFIGURED | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2928 | test_bit(STATUS_FW_ERROR, &priv->status) << |
Mohamed Abbas | 052ec3f | 2008-06-30 17:23:15 +0800 | [diff] [blame] | 2929 | STATUS_FW_ERROR | |
| 2930 | test_bit(STATUS_EXIT_PENDING, &priv->status) << |
| 2931 | STATUS_EXIT_PENDING; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2932 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 2933 | /* device going down, Stop using ICT table */ |
| 2934 | iwl_disable_ict(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2935 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 2936 | iwlagn_txq_ctx_stop(priv); |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 2937 | iwlagn_rxq_stop(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2938 | |
Ben Cahill | 309e731 | 2009-11-06 14:53:03 -0800 | [diff] [blame] | 2939 | /* Power-down device's busmaster DMA clocks */ |
| 2940 | 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] | 2941 | udelay(5); |
| 2942 | |
Ben Cahill | 309e731 | 2009-11-06 14:53:03 -0800 | [diff] [blame] | 2943 | /* Make sure (redundant) we've released our request to stay awake */ |
| 2944 | iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ); |
| 2945 | |
Ben Cahill | 4d2ccdb | 2009-10-09 13:20:20 -0700 | [diff] [blame] | 2946 | /* Stop the device, and put it in low power state */ |
| 2947 | priv->cfg->ops->lib->apm_ops.stop(priv); |
| 2948 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2949 | exit: |
Tomas Winkler | 885ba20 | 2008-05-29 16:34:55 +0800 | [diff] [blame] | 2950 | memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2951 | |
| 2952 | if (priv->ibss_beacon) |
| 2953 | dev_kfree_skb(priv->ibss_beacon); |
| 2954 | priv->ibss_beacon = NULL; |
| 2955 | |
| 2956 | /* clear out any free frames */ |
Tomas Winkler | fcab423 | 2008-05-15 13:54:01 +0800 | [diff] [blame] | 2957 | iwl_clear_free_frames(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2958 | } |
| 2959 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2960 | static void iwl_down(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2961 | { |
| 2962 | mutex_lock(&priv->mutex); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2963 | __iwl_down(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2964 | mutex_unlock(&priv->mutex); |
Zhu Yi | b24d22b | 2007-12-19 13:59:52 +0800 | [diff] [blame] | 2965 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 2966 | iwl_cancel_deferred_work(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2967 | } |
| 2968 | |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 2969 | #define HW_READY_TIMEOUT (50) |
| 2970 | |
| 2971 | static int iwl_set_hw_ready(struct iwl_priv *priv) |
| 2972 | { |
| 2973 | int ret = 0; |
| 2974 | |
| 2975 | iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 2976 | CSR_HW_IF_CONFIG_REG_BIT_NIC_READY); |
| 2977 | |
| 2978 | /* See if we got it */ |
| 2979 | ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 2980 | CSR_HW_IF_CONFIG_REG_BIT_NIC_READY, |
| 2981 | CSR_HW_IF_CONFIG_REG_BIT_NIC_READY, |
| 2982 | HW_READY_TIMEOUT); |
| 2983 | if (ret != -ETIMEDOUT) |
| 2984 | priv->hw_ready = true; |
| 2985 | else |
| 2986 | priv->hw_ready = false; |
| 2987 | |
| 2988 | IWL_DEBUG_INFO(priv, "hardware %s\n", |
| 2989 | (priv->hw_ready == 1) ? "ready" : "not ready"); |
| 2990 | return ret; |
| 2991 | } |
| 2992 | |
| 2993 | static int iwl_prepare_card_hw(struct iwl_priv *priv) |
| 2994 | { |
| 2995 | int ret = 0; |
| 2996 | |
Frans Pop | 91dd6c2 | 2010-03-24 14:19:58 -0700 | [diff] [blame] | 2997 | IWL_DEBUG_INFO(priv, "iwl_prepare_card_hw enter\n"); |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 2998 | |
Mohamed Abbas | 3354a0f | 2009-06-19 13:52:41 -0700 | [diff] [blame] | 2999 | ret = iwl_set_hw_ready(priv); |
| 3000 | if (priv->hw_ready) |
| 3001 | return ret; |
| 3002 | |
| 3003 | /* If HW is not ready, prepare the conditions to check again */ |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 3004 | iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 3005 | CSR_HW_IF_CONFIG_REG_PREPARE); |
| 3006 | |
| 3007 | ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 3008 | ~CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, |
| 3009 | CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, 150000); |
| 3010 | |
Mohamed Abbas | 3354a0f | 2009-06-19 13:52:41 -0700 | [diff] [blame] | 3011 | /* HW should be ready by now, check again. */ |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 3012 | if (ret != -ETIMEDOUT) |
| 3013 | iwl_set_hw_ready(priv); |
| 3014 | |
| 3015 | return ret; |
| 3016 | } |
| 3017 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3018 | #define MAX_HW_RESTARTS 5 |
| 3019 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3020 | static int __iwl_up(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3021 | { |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 3022 | struct iwl_rxon_context *ctx; |
Tomas Winkler | 57aab75 | 2008-04-14 21:16:03 -0700 | [diff] [blame] | 3023 | int i; |
| 3024 | int ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3025 | |
| 3026 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) { |
Winkler, Tomas | 39aadf8 | 2008-12-19 10:37:32 +0800 | [diff] [blame] | 3027 | IWL_WARN(priv, "Exit pending; will not bring the NIC up\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3028 | return -EIO; |
| 3029 | } |
| 3030 | |
Reinette Chatre | e903fbd | 2008-01-30 22:05:15 -0800 | [diff] [blame] | 3031 | if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 3032 | IWL_ERR(priv, "ucode not available for device bringup\n"); |
Reinette Chatre | e903fbd | 2008-01-30 22:05:15 -0800 | [diff] [blame] | 3033 | return -EIO; |
| 3034 | } |
| 3035 | |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 3036 | for_each_context(priv, ctx) { |
| 3037 | ret = iwl_alloc_bcast_station(priv, ctx, true); |
| 3038 | if (ret) { |
| 3039 | iwl_dealloc_bcast_stations(priv); |
| 3040 | return ret; |
| 3041 | } |
| 3042 | } |
Johannes Berg | 2c810cc | 2010-04-29 00:53:29 -0700 | [diff] [blame] | 3043 | |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 3044 | iwl_prepare_card_hw(priv); |
| 3045 | |
| 3046 | if (!priv->hw_ready) { |
| 3047 | IWL_WARN(priv, "Exit HW not ready\n"); |
| 3048 | return -EIO; |
| 3049 | } |
| 3050 | |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 3051 | /* If platform's RF_KILL switch is NOT set to KILL */ |
Tomas Winkler | c1842d6 | 2008-08-04 16:00:43 +0800 | [diff] [blame] | 3052 | 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] | 3053 | clear_bit(STATUS_RF_KILL_HW, &priv->status); |
Emmanuel Grumbach | 3bff19c | 2008-06-30 17:23:19 +0800 | [diff] [blame] | 3054 | else |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 3055 | set_bit(STATUS_RF_KILL_HW, &priv->status); |
Emmanuel Grumbach | 3bff19c | 2008-06-30 17:23:19 +0800 | [diff] [blame] | 3056 | |
Tomas Winkler | c1842d6 | 2008-08-04 16:00:43 +0800 | [diff] [blame] | 3057 | if (iwl_is_rfkill(priv)) { |
Johannes Berg | a60e77e | 2009-06-04 18:26:06 +0200 | [diff] [blame] | 3058 | wiphy_rfkill_set_hw_state(priv->hw->wiphy, true); |
| 3059 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3060 | iwl_enable_interrupts(priv); |
Johannes Berg | a60e77e | 2009-06-04 18:26:06 +0200 | [diff] [blame] | 3061 | IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n"); |
Tomas Winkler | c1842d6 | 2008-08-04 16:00:43 +0800 | [diff] [blame] | 3062 | return 0; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3063 | } |
| 3064 | |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 3065 | iwl_write32(priv, CSR_INT, 0xFFFFFFFF); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3066 | |
Johannes Berg | 13bb948 | 2010-08-23 10:46:33 +0200 | [diff] [blame] | 3067 | /* must be initialised before iwl_hw_nic_init */ |
Johannes Berg | 751ca30 | 2010-08-23 10:46:34 +0200 | [diff] [blame] | 3068 | if (priv->valid_contexts != BIT(IWL_RXON_CTX_BSS)) |
| 3069 | priv->cmd_queue = IWL_IPAN_CMD_QUEUE_NUM; |
| 3070 | else |
| 3071 | priv->cmd_queue = IWL_DEFAULT_CMD_QUEUE_NUM; |
Johannes Berg | 13bb948 | 2010-08-23 10:46:33 +0200 | [diff] [blame] | 3072 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 3073 | ret = iwlagn_hw_nic_init(priv); |
Tomas Winkler | 57aab75 | 2008-04-14 21:16:03 -0700 | [diff] [blame] | 3074 | if (ret) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 3075 | IWL_ERR(priv, "Unable to init nic\n"); |
Tomas Winkler | 57aab75 | 2008-04-14 21:16:03 -0700 | [diff] [blame] | 3076 | return ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3077 | } |
| 3078 | |
| 3079 | /* make sure rfkill handshake bits are cleared */ |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 3080 | iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL); |
| 3081 | iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3082 | CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED); |
| 3083 | |
| 3084 | /* clear (again), then enable host interrupts */ |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 3085 | iwl_write32(priv, CSR_INT, 0xFFFFFFFF); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3086 | iwl_enable_interrupts(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3087 | |
| 3088 | /* really make sure rfkill handshake bits are cleared */ |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 3089 | iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL); |
| 3090 | 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] | 3091 | |
| 3092 | /* Copy original ucode data image from disk into backup cache. |
| 3093 | * This will be used to initialize the on-board processor's |
| 3094 | * data SRAM for a clean start when the runtime program first loads. */ |
| 3095 | memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr, |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 3096 | priv->ucode_data.len); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3097 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3098 | for (i = 0; i < MAX_HW_RESTARTS; i++) { |
| 3099 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3100 | /* load bootstrap state machine, |
| 3101 | * load bootstrap program into processor's memory, |
| 3102 | * prepare to load the "initialize" uCode */ |
Tomas Winkler | 57aab75 | 2008-04-14 21:16:03 -0700 | [diff] [blame] | 3103 | ret = priv->cfg->ops->lib->load_ucode(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3104 | |
Tomas Winkler | 57aab75 | 2008-04-14 21:16:03 -0700 | [diff] [blame] | 3105 | if (ret) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 3106 | IWL_ERR(priv, "Unable to set up bootstrap uCode: %d\n", |
| 3107 | ret); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3108 | continue; |
| 3109 | } |
| 3110 | |
| 3111 | /* start card; "initialize" will load runtime ucode */ |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3112 | iwl_nic_start(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3113 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3114 | IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3115 | |
| 3116 | return 0; |
| 3117 | } |
| 3118 | |
| 3119 | set_bit(STATUS_EXIT_PENDING, &priv->status); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3120 | __iwl_down(priv); |
Mohamed Abbas | 64e72c3e | 2008-06-12 09:47:03 +0800 | [diff] [blame] | 3121 | clear_bit(STATUS_EXIT_PENDING, &priv->status); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3122 | |
| 3123 | /* tried to restart and config the device for as long as our |
| 3124 | * patience could withstand */ |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 3125 | IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3126 | return -EIO; |
| 3127 | } |
| 3128 | |
| 3129 | |
| 3130 | /***************************************************************************** |
| 3131 | * |
| 3132 | * Workqueue callbacks |
| 3133 | * |
| 3134 | *****************************************************************************/ |
| 3135 | |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 3136 | static void iwl_bg_init_alive_start(struct work_struct *data) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3137 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 3138 | struct iwl_priv *priv = |
| 3139 | container_of(data, struct iwl_priv, init_alive_start.work); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3140 | |
| 3141 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 3142 | return; |
| 3143 | |
| 3144 | mutex_lock(&priv->mutex); |
Emmanuel Grumbach | f3ccc08 | 2008-05-05 10:22:45 +0800 | [diff] [blame] | 3145 | priv->cfg->ops->lib->init_alive_start(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3146 | mutex_unlock(&priv->mutex); |
| 3147 | } |
| 3148 | |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 3149 | static void iwl_bg_alive_start(struct work_struct *data) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3150 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 3151 | struct iwl_priv *priv = |
| 3152 | container_of(data, struct iwl_priv, alive_start.work); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3153 | |
| 3154 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 3155 | return; |
| 3156 | |
Mohamed Abbas | 258c44a | 2009-06-03 11:44:10 -0700 | [diff] [blame] | 3157 | /* enable dram interrupt */ |
| 3158 | iwl_reset_ict(priv); |
| 3159 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3160 | mutex_lock(&priv->mutex); |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 3161 | iwl_alive_start(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3162 | mutex_unlock(&priv->mutex); |
| 3163 | } |
| 3164 | |
Emmanuel Grumbach | 16e727e | 2008-06-12 09:46:52 +0800 | [diff] [blame] | 3165 | static void iwl_bg_run_time_calib_work(struct work_struct *work) |
| 3166 | { |
| 3167 | struct iwl_priv *priv = container_of(work, struct iwl_priv, |
| 3168 | run_time_calib_work); |
| 3169 | |
| 3170 | mutex_lock(&priv->mutex); |
| 3171 | |
| 3172 | if (test_bit(STATUS_EXIT_PENDING, &priv->status) || |
| 3173 | test_bit(STATUS_SCANNING, &priv->status)) { |
| 3174 | mutex_unlock(&priv->mutex); |
| 3175 | return; |
| 3176 | } |
| 3177 | |
| 3178 | if (priv->start_calib) { |
Wey-Yi Guy | 7980fba | 2010-07-14 08:08:57 -0700 | [diff] [blame] | 3179 | if (priv->cfg->bt_statistics) { |
| 3180 | iwl_chain_noise_calibration(priv, |
| 3181 | (void *)&priv->_agn.statistics_bt); |
| 3182 | iwl_sensitivity_calibration(priv, |
| 3183 | (void *)&priv->_agn.statistics_bt); |
| 3184 | } else { |
| 3185 | iwl_chain_noise_calibration(priv, |
| 3186 | (void *)&priv->_agn.statistics); |
| 3187 | iwl_sensitivity_calibration(priv, |
| 3188 | (void *)&priv->_agn.statistics); |
| 3189 | } |
Emmanuel Grumbach | 16e727e | 2008-06-12 09:46:52 +0800 | [diff] [blame] | 3190 | } |
| 3191 | |
| 3192 | mutex_unlock(&priv->mutex); |
Emmanuel Grumbach | 16e727e | 2008-06-12 09:46:52 +0800 | [diff] [blame] | 3193 | } |
| 3194 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3195 | static void iwl_bg_restart(struct work_struct *data) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3196 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 3197 | struct iwl_priv *priv = container_of(data, struct iwl_priv, restart); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3198 | |
| 3199 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 3200 | return; |
| 3201 | |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 3202 | if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) { |
Johannes Berg | 8bd413e | 2010-08-23 10:46:40 +0200 | [diff] [blame] | 3203 | struct iwl_rxon_context *ctx; |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 3204 | bool bt_sco, bt_full_concurrent; |
| 3205 | u8 bt_ci_compliance; |
Johannes Berg | 511b082 | 2010-08-23 07:57:01 -0700 | [diff] [blame] | 3206 | u8 bt_load; |
Wey-Yi Guy | da5dbb9 | 2010-08-23 07:57:13 -0700 | [diff] [blame] | 3207 | u8 bt_status; |
Johannes Berg | 511b082 | 2010-08-23 07:57:01 -0700 | [diff] [blame] | 3208 | |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 3209 | mutex_lock(&priv->mutex); |
Johannes Berg | 8bd413e | 2010-08-23 10:46:40 +0200 | [diff] [blame] | 3210 | for_each_context(priv, ctx) |
| 3211 | ctx->vif = NULL; |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 3212 | priv->is_open = 0; |
Johannes Berg | 511b082 | 2010-08-23 07:57:01 -0700 | [diff] [blame] | 3213 | |
| 3214 | /* |
| 3215 | * __iwl_down() will clear the BT status variables, |
| 3216 | * which is correct, but when we restart we really |
| 3217 | * want to keep them so restore them afterwards. |
| 3218 | * |
| 3219 | * The restart process will later pick them up and |
| 3220 | * re-configure the hw when we reconfigure the BT |
| 3221 | * command. |
| 3222 | */ |
| 3223 | bt_sco = priv->bt_sco_active; |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 3224 | bt_full_concurrent = priv->bt_full_concurrent; |
| 3225 | bt_ci_compliance = priv->bt_ci_compliance; |
Johannes Berg | 511b082 | 2010-08-23 07:57:01 -0700 | [diff] [blame] | 3226 | bt_load = priv->bt_traffic_load; |
Wey-Yi Guy | da5dbb9 | 2010-08-23 07:57:13 -0700 | [diff] [blame] | 3227 | bt_status = priv->bt_status; |
Johannes Berg | 511b082 | 2010-08-23 07:57:01 -0700 | [diff] [blame] | 3228 | |
Johannes Berg | a117413 | 2010-08-23 07:56:59 -0700 | [diff] [blame] | 3229 | __iwl_down(priv); |
Johannes Berg | 511b082 | 2010-08-23 07:57:01 -0700 | [diff] [blame] | 3230 | |
| 3231 | priv->bt_sco_active = bt_sco; |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 3232 | priv->bt_full_concurrent = bt_full_concurrent; |
| 3233 | priv->bt_ci_compliance = bt_ci_compliance; |
Johannes Berg | 511b082 | 2010-08-23 07:57:01 -0700 | [diff] [blame] | 3234 | priv->bt_traffic_load = bt_load; |
Wey-Yi Guy | da5dbb9 | 2010-08-23 07:57:13 -0700 | [diff] [blame] | 3235 | priv->bt_status = bt_status; |
Johannes Berg | 511b082 | 2010-08-23 07:57:01 -0700 | [diff] [blame] | 3236 | |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 3237 | mutex_unlock(&priv->mutex); |
Johannes Berg | a117413 | 2010-08-23 07:56:59 -0700 | [diff] [blame] | 3238 | iwl_cancel_deferred_work(priv); |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 3239 | ieee80211_restart_hw(priv->hw); |
| 3240 | } else { |
| 3241 | iwl_down(priv); |
Johannes Berg | 8067651 | 2010-01-21 06:07:17 -0800 | [diff] [blame] | 3242 | |
| 3243 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 3244 | return; |
| 3245 | |
| 3246 | mutex_lock(&priv->mutex); |
| 3247 | __iwl_up(priv); |
| 3248 | mutex_unlock(&priv->mutex); |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 3249 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3250 | } |
| 3251 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3252 | static void iwl_bg_rx_replenish(struct work_struct *data) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3253 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 3254 | struct iwl_priv *priv = |
| 3255 | container_of(data, struct iwl_priv, rx_replenish); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3256 | |
| 3257 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 3258 | return; |
| 3259 | |
| 3260 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 3261 | iwlagn_rx_replenish(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3262 | mutex_unlock(&priv->mutex); |
| 3263 | } |
| 3264 | |
Mohamed Abbas | 7878a5a | 2007-11-29 11:10:13 +0800 | [diff] [blame] | 3265 | #define IWL_DELAY_NEXT_SCAN (HZ*2) |
| 3266 | |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 3267 | void iwl_post_associate(struct iwl_priv *priv, struct ieee80211_vif *vif) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3268 | { |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3269 | struct iwl_rxon_context *ctx; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3270 | struct ieee80211_conf *conf = NULL; |
Tomas Winkler | 857485c | 2008-03-21 13:53:44 -0700 | [diff] [blame] | 3271 | int ret = 0; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3272 | |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 3273 | if (!vif || !priv->is_open) |
| 3274 | return; |
| 3275 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3276 | ctx = iwl_rxon_ctx_from_vif(vif); |
| 3277 | |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 3278 | if (vif->type == NL80211_IFTYPE_AP) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 3279 | 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] | 3280 | return; |
| 3281 | } |
| 3282 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3283 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 3284 | return; |
| 3285 | |
Tomas Winkler | 2a421b9 | 2008-06-12 09:47:10 +0800 | [diff] [blame] | 3286 | iwl_scan_cancel_timeout(priv, 200); |
mabbas | 052c4b9 | 2007-10-25 17:15:43 +0800 | [diff] [blame] | 3287 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3288 | conf = ieee80211_get_hw_conf(priv->hw); |
| 3289 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3290 | ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
| 3291 | iwlcore_commit_rxon(priv, ctx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3292 | |
Johannes Berg | 948f5a2 | 2010-07-29 07:07:51 -0700 | [diff] [blame] | 3293 | ret = iwl_send_rxon_timing(priv, vif); |
Tomas Winkler | 857485c | 2008-03-21 13:53:44 -0700 | [diff] [blame] | 3294 | if (ret) |
Johannes Berg | 8f2d3d2 | 2010-08-23 10:46:37 +0200 | [diff] [blame] | 3295 | IWL_WARN(priv, "RXON timing - " |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3296 | "Attempting to continue.\n"); |
| 3297 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3298 | ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3299 | |
Emmanuel Grumbach | 42eb7c6 | 2008-09-17 10:10:05 +0800 | [diff] [blame] | 3300 | iwl_set_rxon_ht(priv, &priv->current_ht_config); |
Ron Rindjunsky | 4f85f5b | 2008-06-09 22:54:35 +0300 | [diff] [blame] | 3301 | |
Abhijeet Kolekar | 4582353 | 2009-04-08 11:26:44 -0700 | [diff] [blame] | 3302 | if (priv->cfg->ops->hcmd->set_rxon_chain) |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3303 | priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx); |
Abhijeet Kolekar | 4582353 | 2009-04-08 11:26:44 -0700 | [diff] [blame] | 3304 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3305 | ctx->staging.assoc_id = cpu_to_le16(vif->bss_conf.aid); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3306 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3307 | IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n", |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 3308 | vif->bss_conf.aid, vif->bss_conf.beacon_int); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3309 | |
Johannes Berg | c213d74 | 2010-05-06 12:21:40 -0700 | [diff] [blame] | 3310 | if (vif->bss_conf.use_short_preamble) |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3311 | ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3312 | else |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3313 | ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3314 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3315 | if (ctx->staging.flags & RXON_FLG_BAND_24G_MSK) { |
Johannes Berg | c213d74 | 2010-05-06 12:21:40 -0700 | [diff] [blame] | 3316 | if (vif->bss_conf.use_short_slot) |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3317 | ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3318 | else |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3319 | ctx->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3320 | } |
| 3321 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3322 | iwlcore_commit_rxon(priv, ctx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3323 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3324 | IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n", |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3325 | vif->bss_conf.aid, ctx->active.bssid_addr); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3326 | |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 3327 | switch (vif->type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 3328 | case NL80211_IFTYPE_STATION: |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3329 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 3330 | case NL80211_IFTYPE_ADHOC: |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3331 | iwl_send_beacon_cmd(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3332 | break; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3333 | default: |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 3334 | IWL_ERR(priv, "%s Should not be called in %d mode\n", |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 3335 | __func__, vif->type); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3336 | break; |
| 3337 | } |
| 3338 | |
Grumbach, Emmanuel | 0481644 | 2008-09-03 11:26:53 +0800 | [diff] [blame] | 3339 | /* the chain noise calibration will enabled PM upon completion |
| 3340 | * If chain noise has already been run, then we need to enable |
| 3341 | * power management here */ |
| 3342 | if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE) |
Johannes Berg | e312c24 | 2009-08-07 15:41:51 -0700 | [diff] [blame] | 3343 | iwl_power_update_mode(priv, false); |
Emmanuel Grumbach | c90a74ba | 2008-09-03 11:26:50 +0800 | [diff] [blame] | 3344 | |
| 3345 | /* Enable Rx differential gain and sensitivity calibrations */ |
| 3346 | iwl_chain_noise_reset(priv); |
| 3347 | priv->start_calib = 1; |
| 3348 | |
Reinette Chatre | 508e32e | 2008-04-14 21:16:13 -0700 | [diff] [blame] | 3349 | } |
| 3350 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3351 | /***************************************************************************** |
| 3352 | * |
| 3353 | * mac80211 entry point functions |
| 3354 | * |
| 3355 | *****************************************************************************/ |
| 3356 | |
Emmanuel Grumbach | 154b25c | 2008-06-30 17:23:24 +0800 | [diff] [blame] | 3357 | #define UCODE_READY_TIMEOUT (4 * HZ) |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 3358 | |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 3359 | /* |
| 3360 | * Not a mac80211 entry point function, but it fits in with all the |
| 3361 | * other mac80211 functions grouped here. |
| 3362 | */ |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 3363 | static int iwl_mac_setup_register(struct iwl_priv *priv, |
| 3364 | struct iwlagn_ucode_capabilities *capa) |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 3365 | { |
| 3366 | int ret; |
| 3367 | struct ieee80211_hw *hw = priv->hw; |
| 3368 | hw->rate_control_algorithm = "iwl-agn-rs"; |
| 3369 | |
| 3370 | /* Tell mac80211 our characteristics */ |
| 3371 | hw->flags = IEEE80211_HW_SIGNAL_DBM | |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 3372 | IEEE80211_HW_AMPDU_AGGREGATION | |
Johannes Berg | 2491fa4 | 2010-08-23 10:46:52 +0200 | [diff] [blame^] | 3373 | IEEE80211_HW_NEED_DTIM_PERIOD | |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 3374 | IEEE80211_HW_SPECTRUM_MGMT; |
| 3375 | |
| 3376 | if (!priv->cfg->broken_powersave) |
| 3377 | hw->flags |= IEEE80211_HW_SUPPORTS_PS | |
| 3378 | IEEE80211_HW_SUPPORTS_DYNAMIC_PS; |
| 3379 | |
Johannes Berg | ba37a3d | 2009-12-10 14:37:27 -0800 | [diff] [blame] | 3380 | if (priv->cfg->sku & IWL_SKU_N) |
| 3381 | hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS | |
| 3382 | IEEE80211_HW_SUPPORTS_STATIC_SMPS; |
| 3383 | |
Reinette Chatre | 8d9698b | 2009-10-16 14:25:55 -0700 | [diff] [blame] | 3384 | hw->sta_data_size = sizeof(struct iwl_station_priv); |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 3385 | hw->vif_data_size = sizeof(struct iwl_vif_priv); |
| 3386 | |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 3387 | hw->wiphy->interface_modes = |
| 3388 | BIT(NL80211_IFTYPE_STATION) | |
| 3389 | BIT(NL80211_IFTYPE_ADHOC); |
| 3390 | |
Reinette Chatre | f6c8f15 | 2010-03-12 11:13:26 -0800 | [diff] [blame] | 3391 | hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY | |
Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 3392 | WIPHY_FLAG_DISABLE_BEACON_HINTS; |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 3393 | |
| 3394 | /* |
| 3395 | * For now, disable PS by default because it affects |
| 3396 | * RX performance significantly. |
| 3397 | */ |
Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 3398 | hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT; |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 3399 | |
Reinette Chatre | 1382c71 | 2010-02-25 10:02:19 -0800 | [diff] [blame] | 3400 | hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX; |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 3401 | /* we create the 802.11 header and a zero-length SSID element */ |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 3402 | hw->wiphy->max_scan_ie_len = capa->max_probe_length - 24 - 2; |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 3403 | |
| 3404 | /* Default value; 4 EDCA QOS priorities */ |
| 3405 | hw->queues = 4; |
| 3406 | |
| 3407 | hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL; |
| 3408 | |
| 3409 | if (priv->bands[IEEE80211_BAND_2GHZ].n_channels) |
| 3410 | priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] = |
| 3411 | &priv->bands[IEEE80211_BAND_2GHZ]; |
| 3412 | if (priv->bands[IEEE80211_BAND_5GHZ].n_channels) |
| 3413 | priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] = |
| 3414 | &priv->bands[IEEE80211_BAND_5GHZ]; |
| 3415 | |
| 3416 | ret = ieee80211_register_hw(priv->hw); |
| 3417 | if (ret) { |
| 3418 | IWL_ERR(priv, "Failed to register hw (error %d)\n", ret); |
| 3419 | return ret; |
| 3420 | } |
| 3421 | priv->mac80211_registered = 1; |
| 3422 | |
| 3423 | return 0; |
| 3424 | } |
| 3425 | |
| 3426 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3427 | static int iwl_mac_start(struct ieee80211_hw *hw) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3428 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 3429 | struct iwl_priv *priv = hw->priv; |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 3430 | int ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3431 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3432 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3433 | |
| 3434 | /* we should be verifying the device is ready to be opened */ |
| 3435 | mutex_lock(&priv->mutex); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3436 | ret = __iwl_up(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3437 | mutex_unlock(&priv->mutex); |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 3438 | |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 3439 | if (ret) |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 3440 | return ret; |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 3441 | |
Tomas Winkler | c1842d6 | 2008-08-04 16:00:43 +0800 | [diff] [blame] | 3442 | if (iwl_is_rfkill(priv)) |
| 3443 | goto out; |
| 3444 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3445 | IWL_DEBUG_INFO(priv, "Start UP work done.\n"); |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 3446 | |
Ron Rindjunsky | fe9b6b7 | 2008-05-29 16:35:06 +0800 | [diff] [blame] | 3447 | /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 3448 | * mac80211 will not be run successfully. */ |
Emmanuel Grumbach | 154b25c | 2008-06-30 17:23:24 +0800 | [diff] [blame] | 3449 | ret = wait_event_interruptible_timeout(priv->wait_command_queue, |
| 3450 | test_bit(STATUS_READY, &priv->status), |
| 3451 | UCODE_READY_TIMEOUT); |
| 3452 | if (!ret) { |
| 3453 | if (!test_bit(STATUS_READY, &priv->status)) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 3454 | IWL_ERR(priv, "START_ALIVE timeout after %dms.\n", |
Emmanuel Grumbach | 154b25c | 2008-06-30 17:23:24 +0800 | [diff] [blame] | 3455 | jiffies_to_msecs(UCODE_READY_TIMEOUT)); |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 3456 | return -ETIMEDOUT; |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 3457 | } |
Ron Rindjunsky | fe9b6b7 | 2008-05-29 16:35:06 +0800 | [diff] [blame] | 3458 | } |
Tomas Winkler | 0a078ff | 2008-06-30 17:23:26 +0800 | [diff] [blame] | 3459 | |
Johannes Berg | e932a60 | 2009-10-02 13:44:03 -0700 | [diff] [blame] | 3460 | iwl_led_start(priv); |
| 3461 | |
Tomas Winkler | c1842d6 | 2008-08-04 16:00:43 +0800 | [diff] [blame] | 3462 | out: |
Tomas Winkler | 0a078ff | 2008-06-30 17:23:26 +0800 | [diff] [blame] | 3463 | priv->is_open = 1; |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3464 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3465 | return 0; |
| 3466 | } |
| 3467 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3468 | static void iwl_mac_stop(struct ieee80211_hw *hw) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3469 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 3470 | struct iwl_priv *priv = hw->priv; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3471 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3472 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
Mohamed Abbas | 948c171 | 2007-10-25 17:15:45 +0800 | [diff] [blame] | 3473 | |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 3474 | if (!priv->is_open) |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 3475 | return; |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 3476 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3477 | priv->is_open = 0; |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 3478 | |
Wey-Yi Guy | 5bddf54 | 2009-08-21 13:34:25 -0700 | [diff] [blame] | 3479 | 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] | 3480 | /* stop mac, cancel any scan request and clear |
| 3481 | * RXON_FILTER_ASSOC_MSK BIT |
| 3482 | */ |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 3483 | mutex_lock(&priv->mutex); |
Tomas Winkler | 2a421b9 | 2008-06-12 09:47:10 +0800 | [diff] [blame] | 3484 | iwl_scan_cancel_timeout(priv, 100); |
Mohamed Abbas | fde3571 | 2007-11-29 11:10:15 +0800 | [diff] [blame] | 3485 | mutex_unlock(&priv->mutex); |
Mohamed Abbas | fde3571 | 2007-11-29 11:10:15 +0800 | [diff] [blame] | 3486 | } |
| 3487 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3488 | iwl_down(priv); |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 3489 | |
| 3490 | flush_workqueue(priv->workqueue); |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 3491 | |
| 3492 | /* enable interrupts again in order to receive rfkill changes */ |
| 3493 | iwl_write32(priv, CSR_INT, 0xFFFFFFFF); |
| 3494 | iwl_enable_interrupts(priv); |
Mohamed Abbas | 948c171 | 2007-10-25 17:15:45 +0800 | [diff] [blame] | 3495 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3496 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3497 | } |
| 3498 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3499 | 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] | 3500 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 3501 | struct iwl_priv *priv = hw->priv; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3502 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3503 | IWL_DEBUG_MACDUMP(priv, "enter\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3504 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3505 | 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] | 3506 | ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3507 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 3508 | if (iwlagn_tx_skb(priv, skb)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3509 | dev_kfree_skb_any(skb); |
| 3510 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3511 | IWL_DEBUG_MACDUMP(priv, "leave\n"); |
Reinette Chatre | 637f883 | 2009-01-19 15:30:32 -0800 | [diff] [blame] | 3512 | return NETDEV_TX_OK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3513 | } |
| 3514 | |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 3515 | void iwl_config_ap(struct iwl_priv *priv, struct ieee80211_vif *vif) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3516 | { |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3517 | struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif); |
Tomas Winkler | 857485c | 2008-03-21 13:53:44 -0700 | [diff] [blame] | 3518 | int ret = 0; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3519 | |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 3520 | lockdep_assert_held(&priv->mutex); |
| 3521 | |
Maarten Lankhorst | d986bcd | 2008-01-23 10:15:16 -0800 | [diff] [blame] | 3522 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3523 | return; |
| 3524 | |
| 3525 | /* The following should be done only at AP bring up */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3526 | if (!iwl_is_associated_ctx(ctx)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3527 | |
| 3528 | /* RXON - unassoc (to set timing command) */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3529 | ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
| 3530 | iwlcore_commit_rxon(priv, ctx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3531 | |
| 3532 | /* RXON Timing */ |
Johannes Berg | 948f5a2 | 2010-07-29 07:07:51 -0700 | [diff] [blame] | 3533 | ret = iwl_send_rxon_timing(priv, vif); |
Tomas Winkler | 857485c | 2008-03-21 13:53:44 -0700 | [diff] [blame] | 3534 | if (ret) |
Johannes Berg | 8f2d3d2 | 2010-08-23 10:46:37 +0200 | [diff] [blame] | 3535 | IWL_WARN(priv, "RXON timing failed - " |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3536 | "Attempting to continue.\n"); |
| 3537 | |
Daniel C Halperin | f513dff | 2009-11-13 11:56:34 -0800 | [diff] [blame] | 3538 | /* AP has all antennas */ |
| 3539 | priv->chain_noise_data.active_chains = |
| 3540 | priv->hw_params.valid_rx_ant; |
| 3541 | iwl_set_rxon_ht(priv, &priv->current_ht_config); |
Abhijeet Kolekar | 4582353 | 2009-04-08 11:26:44 -0700 | [diff] [blame] | 3542 | if (priv->cfg->ops->hcmd->set_rxon_chain) |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3543 | priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3544 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3545 | ctx->staging.assoc_id = 0; |
Johannes Berg | 1dda6d2 | 2010-04-29 04:43:06 -0700 | [diff] [blame] | 3546 | |
Johannes Berg | c213d74 | 2010-05-06 12:21:40 -0700 | [diff] [blame] | 3547 | if (vif->bss_conf.use_short_preamble) |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3548 | ctx->staging.flags |= |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3549 | RXON_FLG_SHORT_PREAMBLE_MSK; |
| 3550 | else |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3551 | ctx->staging.flags &= |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3552 | ~RXON_FLG_SHORT_PREAMBLE_MSK; |
| 3553 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3554 | if (ctx->staging.flags & RXON_FLG_BAND_24G_MSK) { |
Johannes Berg | c213d74 | 2010-05-06 12:21:40 -0700 | [diff] [blame] | 3555 | if (vif->bss_conf.use_short_slot) |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3556 | ctx->staging.flags |= |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3557 | RXON_FLG_SHORT_SLOT_MSK; |
| 3558 | else |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3559 | ctx->staging.flags &= |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3560 | ~RXON_FLG_SHORT_SLOT_MSK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3561 | } |
| 3562 | /* restore RXON assoc */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3563 | ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK; |
| 3564 | iwlcore_commit_rxon(priv, ctx); |
Zhu Yi | e1493de | 2007-09-27 11:27:32 +0800 | [diff] [blame] | 3565 | } |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3566 | iwl_send_beacon_cmd(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3567 | |
| 3568 | /* FIXME - we need to add code here to detect a totally new |
| 3569 | * configuration, reset the AP, unassoc, rxon timing, assoc, |
| 3570 | * clear sta table, add BCAST sta... */ |
| 3571 | } |
| 3572 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3573 | static void iwl_mac_update_tkip_key(struct ieee80211_hw *hw, |
Johannes Berg | b3fbdcf | 2010-01-21 11:40:47 +0100 | [diff] [blame] | 3574 | struct ieee80211_vif *vif, |
| 3575 | struct ieee80211_key_conf *keyconf, |
| 3576 | struct ieee80211_sta *sta, |
| 3577 | u32 iv32, u16 *phase1key) |
Emmanuel Grumbach | ab885f8 | 2008-03-20 15:06:43 +0200 | [diff] [blame] | 3578 | { |
Emmanuel Grumbach | ab885f8 | 2008-03-20 15:06:43 +0200 | [diff] [blame] | 3579 | |
Tomas Winkler | 9f58671 | 2008-11-12 13:14:05 -0800 | [diff] [blame] | 3580 | struct iwl_priv *priv = hw->priv; |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 3581 | struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv; |
| 3582 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3583 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
Emmanuel Grumbach | ab885f8 | 2008-03-20 15:06:43 +0200 | [diff] [blame] | 3584 | |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 3585 | iwl_update_tkip_key(priv, vif_priv->ctx, keyconf, sta, |
Johannes Berg | b3fbdcf | 2010-01-21 11:40:47 +0100 | [diff] [blame] | 3586 | iv32, phase1key); |
Emmanuel Grumbach | ab885f8 | 2008-03-20 15:06:43 +0200 | [diff] [blame] | 3587 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3588 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
Emmanuel Grumbach | ab885f8 | 2008-03-20 15:06:43 +0200 | [diff] [blame] | 3589 | } |
| 3590 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3591 | 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] | 3592 | struct ieee80211_vif *vif, |
| 3593 | struct ieee80211_sta *sta, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3594 | struct ieee80211_key_conf *key) |
| 3595 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 3596 | struct iwl_priv *priv = hw->priv; |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 3597 | struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv; |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 3598 | struct iwl_rxon_context *ctx = vif_priv->ctx; |
Winkler, Tomas | 4298679 | 2009-01-19 15:30:22 -0800 | [diff] [blame] | 3599 | int ret; |
| 3600 | u8 sta_id; |
| 3601 | bool is_default_wep_key = false; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3602 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3603 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3604 | |
Tomas Winkler | 90e8e42 | 2009-06-19 13:52:42 -0700 | [diff] [blame] | 3605 | if (priv->cfg->mod_params->sw_crypto) { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3606 | IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3607 | return -EOPNOTSUPP; |
| 3608 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3609 | |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 3610 | sta_id = iwl_sta_id_or_broadcast(priv, vif_priv->ctx, sta); |
Johannes Berg | 0af8bca | 2010-04-30 14:08:00 -0700 | [diff] [blame] | 3611 | if (sta_id == IWL_INVALID_STATION) |
| 3612 | return -EINVAL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3613 | |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 3614 | mutex_lock(&priv->mutex); |
Tomas Winkler | 2a421b9 | 2008-06-12 09:47:10 +0800 | [diff] [blame] | 3615 | iwl_scan_cancel_timeout(priv, 100); |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 3616 | |
Johannes Berg | a90178fa | 2010-03-30 02:44:16 -0700 | [diff] [blame] | 3617 | /* |
| 3618 | * 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] | 3619 | * so far, we are in legacy wep mode (group key only), otherwise we are |
| 3620 | * in 1X mode. |
Johannes Berg | a90178fa | 2010-03-30 02:44:16 -0700 | [diff] [blame] | 3621 | * In legacy wep mode, we use another host command to the uCode. |
| 3622 | */ |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 3623 | if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 || |
| 3624 | key->cipher == WLAN_CIPHER_SUITE_WEP104) && |
Johannes Berg | 54c8067 | 2010-08-18 09:35:21 -0700 | [diff] [blame] | 3625 | !sta) { |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 3626 | if (cmd == SET_KEY) |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 3627 | is_default_wep_key = !ctx->key_mapping_keys; |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 3628 | else |
Emmanuel Grumbach | ccc038a | 2008-05-15 13:54:09 +0800 | [diff] [blame] | 3629 | is_default_wep_key = |
| 3630 | (key->hw_key_idx == HW_KEY_DEFAULT); |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 3631 | } |
mabbas | 052c4b9 | 2007-10-25 17:15:43 +0800 | [diff] [blame] | 3632 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3633 | switch (cmd) { |
Emmanuel Grumbach | deb09c4 | 2008-03-19 16:41:41 -0700 | [diff] [blame] | 3634 | case SET_KEY: |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 3635 | if (is_default_wep_key) |
Johannes Berg | 2995baf | 2010-08-23 10:46:42 +0200 | [diff] [blame] | 3636 | ret = iwl_set_default_wep_key(priv, vif_priv->ctx, key); |
Emmanuel Grumbach | deb09c4 | 2008-03-19 16:41:41 -0700 | [diff] [blame] | 3637 | else |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 3638 | ret = iwl_set_dynamic_key(priv, vif_priv->ctx, |
| 3639 | key, sta_id); |
Emmanuel Grumbach | deb09c4 | 2008-03-19 16:41:41 -0700 | [diff] [blame] | 3640 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3641 | IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3642 | break; |
| 3643 | case DISABLE_KEY: |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 3644 | if (is_default_wep_key) |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 3645 | ret = iwl_remove_default_wep_key(priv, ctx, key); |
Emmanuel Grumbach | deb09c4 | 2008-03-19 16:41:41 -0700 | [diff] [blame] | 3646 | else |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 3647 | ret = iwl_remove_dynamic_key(priv, ctx, key, sta_id); |
Emmanuel Grumbach | deb09c4 | 2008-03-19 16:41:41 -0700 | [diff] [blame] | 3648 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3649 | IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3650 | break; |
| 3651 | default: |
Emmanuel Grumbach | deb09c4 | 2008-03-19 16:41:41 -0700 | [diff] [blame] | 3652 | ret = -EINVAL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3653 | } |
| 3654 | |
Johannes Berg | 72e15d7 | 2010-02-19 11:42:32 -0800 | [diff] [blame] | 3655 | mutex_unlock(&priv->mutex); |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3656 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3657 | |
Emmanuel Grumbach | deb09c4 | 2008-03-19 16:41:41 -0700 | [diff] [blame] | 3658 | return ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3659 | } |
| 3660 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3661 | static int iwl_mac_ampdu_action(struct ieee80211_hw *hw, |
Johannes Berg | c951ad3 | 2009-11-16 12:00:38 +0100 | [diff] [blame] | 3662 | struct ieee80211_vif *vif, |
Johannes Berg | 832f47e | 2010-04-29 04:43:07 -0700 | [diff] [blame] | 3663 | enum ieee80211_ampdu_mlme_action action, |
| 3664 | struct ieee80211_sta *sta, u16 tid, u16 *ssn) |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 3665 | { |
| 3666 | struct iwl_priv *priv = hw->priv; |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 3667 | int ret = -EINVAL; |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 3668 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3669 | 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] | 3670 | sta->addr, tid); |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 3671 | |
| 3672 | if (!(priv->cfg->sku & IWL_SKU_N)) |
| 3673 | return -EACCES; |
| 3674 | |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 3675 | mutex_lock(&priv->mutex); |
| 3676 | |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 3677 | switch (action) { |
| 3678 | case IEEE80211_AMPDU_RX_START: |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3679 | IWL_DEBUG_HT(priv, "start Rx\n"); |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 3680 | ret = iwl_sta_rx_agg_start(priv, sta, tid, *ssn); |
| 3681 | break; |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 3682 | case IEEE80211_AMPDU_RX_STOP: |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3683 | IWL_DEBUG_HT(priv, "stop Rx\n"); |
Johannes Berg | 619753f | 2010-04-30 11:30:46 -0700 | [diff] [blame] | 3684 | ret = iwl_sta_rx_agg_stop(priv, sta, tid); |
Wey-Yi Guy | 5c2207c | 2009-03-17 21:51:43 -0700 | [diff] [blame] | 3685 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 3686 | ret = 0; |
| 3687 | break; |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 3688 | case IEEE80211_AMPDU_TX_START: |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3689 | IWL_DEBUG_HT(priv, "start Tx\n"); |
Johannes Berg | 619753f | 2010-04-30 11:30:46 -0700 | [diff] [blame] | 3690 | ret = iwlagn_tx_agg_start(priv, vif, sta, tid, ssn); |
Wey-Yi Guy | d5a0ffa | 2010-03-04 13:38:59 -0800 | [diff] [blame] | 3691 | if (ret == 0) { |
| 3692 | priv->_agn.agg_tids_count++; |
| 3693 | IWL_DEBUG_HT(priv, "priv->_agn.agg_tids_count = %u\n", |
| 3694 | priv->_agn.agg_tids_count); |
| 3695 | } |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 3696 | break; |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 3697 | case IEEE80211_AMPDU_TX_STOP: |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3698 | IWL_DEBUG_HT(priv, "stop Tx\n"); |
Johannes Berg | 619753f | 2010-04-30 11:30:46 -0700 | [diff] [blame] | 3699 | ret = iwlagn_tx_agg_stop(priv, vif, sta, tid); |
Wey-Yi Guy | d5a0ffa | 2010-03-04 13:38:59 -0800 | [diff] [blame] | 3700 | if ((ret == 0) && (priv->_agn.agg_tids_count > 0)) { |
| 3701 | priv->_agn.agg_tids_count--; |
| 3702 | IWL_DEBUG_HT(priv, "priv->_agn.agg_tids_count = %u\n", |
| 3703 | priv->_agn.agg_tids_count); |
| 3704 | } |
Wey-Yi Guy | 5c2207c | 2009-03-17 21:51:43 -0700 | [diff] [blame] | 3705 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 3706 | ret = 0; |
Johannes Berg | 94597ab | 2010-08-09 10:57:02 -0700 | [diff] [blame] | 3707 | if (priv->cfg->use_rts_for_aggregation) { |
| 3708 | struct iwl_station_priv *sta_priv = |
| 3709 | (void *) sta->drv_priv; |
| 3710 | /* |
| 3711 | * switch off RTS/CTS if it was previously enabled |
| 3712 | */ |
| 3713 | |
| 3714 | sta_priv->lq_sta.lq.general_params.flags &= |
| 3715 | ~LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK; |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 3716 | iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif), |
| 3717 | &sta_priv->lq_sta.lq, CMD_ASYNC, false); |
Johannes Berg | 94597ab | 2010-08-09 10:57:02 -0700 | [diff] [blame] | 3718 | } |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 3719 | break; |
Wey-Yi Guy | f052797 | 2010-01-08 10:04:41 -0800 | [diff] [blame] | 3720 | case IEEE80211_AMPDU_TX_OPERATIONAL: |
Johannes Berg | 94597ab | 2010-08-09 10:57:02 -0700 | [diff] [blame] | 3721 | if (priv->cfg->use_rts_for_aggregation) { |
| 3722 | struct iwl_station_priv *sta_priv = |
| 3723 | (void *) sta->drv_priv; |
| 3724 | |
Wey-Yi Guy | cfecc6b | 2010-06-18 11:33:15 -0700 | [diff] [blame] | 3725 | /* |
| 3726 | * switch to RTS/CTS if it is the prefer protection |
| 3727 | * method for HT traffic |
| 3728 | */ |
Johannes Berg | 94597ab | 2010-08-09 10:57:02 -0700 | [diff] [blame] | 3729 | |
| 3730 | sta_priv->lq_sta.lq.general_params.flags |= |
| 3731 | LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK; |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 3732 | iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif), |
| 3733 | &sta_priv->lq_sta.lq, CMD_ASYNC, false); |
Wey-Yi Guy | cfecc6b | 2010-06-18 11:33:15 -0700 | [diff] [blame] | 3734 | } |
| 3735 | ret = 0; |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 3736 | break; |
| 3737 | } |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 3738 | mutex_unlock(&priv->mutex); |
| 3739 | |
| 3740 | return ret; |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 3741 | } |
Tomas Winkler | 9f58671 | 2008-11-12 13:14:05 -0800 | [diff] [blame] | 3742 | |
Johannes Berg | 6ab10ff | 2009-11-13 11:56:37 -0800 | [diff] [blame] | 3743 | static void iwl_mac_sta_notify(struct ieee80211_hw *hw, |
| 3744 | struct ieee80211_vif *vif, |
| 3745 | enum sta_notify_cmd cmd, |
| 3746 | struct ieee80211_sta *sta) |
| 3747 | { |
| 3748 | struct iwl_priv *priv = hw->priv; |
| 3749 | struct iwl_station_priv *sta_priv = (void *)sta->drv_priv; |
| 3750 | int sta_id; |
| 3751 | |
Johannes Berg | 6ab10ff | 2009-11-13 11:56:37 -0800 | [diff] [blame] | 3752 | switch (cmd) { |
Johannes Berg | 6ab10ff | 2009-11-13 11:56:37 -0800 | [diff] [blame] | 3753 | case STA_NOTIFY_SLEEP: |
| 3754 | WARN_ON(!sta_priv->client); |
| 3755 | sta_priv->asleep = true; |
| 3756 | if (atomic_read(&sta_priv->pending_frames) > 0) |
| 3757 | ieee80211_sta_block_awake(hw, sta, true); |
| 3758 | break; |
| 3759 | case STA_NOTIFY_AWAKE: |
| 3760 | WARN_ON(!sta_priv->client); |
Daniel Halperin | 49dcc81 | 2010-01-19 10:22:19 -0800 | [diff] [blame] | 3761 | if (!sta_priv->asleep) |
| 3762 | break; |
Johannes Berg | 6ab10ff | 2009-11-13 11:56:37 -0800 | [diff] [blame] | 3763 | sta_priv->asleep = false; |
Johannes Berg | 2a87c26 | 2010-04-30 11:30:45 -0700 | [diff] [blame] | 3764 | sta_id = iwl_sta_id(sta); |
Johannes Berg | 6ab10ff | 2009-11-13 11:56:37 -0800 | [diff] [blame] | 3765 | if (sta_id != IWL_INVALID_STATION) |
| 3766 | iwl_sta_modify_ps_wake(priv, sta_id); |
| 3767 | break; |
| 3768 | default: |
| 3769 | break; |
| 3770 | } |
| 3771 | } |
| 3772 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3773 | static int iwlagn_mac_sta_add(struct ieee80211_hw *hw, |
| 3774 | struct ieee80211_vif *vif, |
| 3775 | struct ieee80211_sta *sta) |
| 3776 | { |
| 3777 | struct iwl_priv *priv = hw->priv; |
| 3778 | struct iwl_station_priv *sta_priv = (void *)sta->drv_priv; |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 3779 | struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv; |
Johannes Berg | eafdfbd3 | 2010-04-29 04:43:04 -0700 | [diff] [blame] | 3780 | bool is_ap = vif->type == NL80211_IFTYPE_STATION; |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3781 | int ret; |
| 3782 | u8 sta_id; |
| 3783 | |
| 3784 | IWL_DEBUG_INFO(priv, "received request to add station %pM\n", |
| 3785 | sta->addr); |
Reinette Chatre | da5ae1c | 2010-05-28 09:28:39 -0700 | [diff] [blame] | 3786 | mutex_lock(&priv->mutex); |
| 3787 | IWL_DEBUG_INFO(priv, "proceeding to add station %pM\n", |
| 3788 | sta->addr); |
| 3789 | sta_priv->common.sta_id = IWL_INVALID_STATION; |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3790 | |
| 3791 | atomic_set(&sta_priv->pending_frames, 0); |
| 3792 | if (vif->type == NL80211_IFTYPE_AP) |
| 3793 | sta_priv->client = true; |
| 3794 | |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 3795 | ret = iwl_add_station_common(priv, vif_priv->ctx, sta->addr, |
Johannes Berg | 238d781 | 2010-08-23 10:46:45 +0200 | [diff] [blame] | 3796 | is_ap, sta, &sta_id); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3797 | if (ret) { |
| 3798 | IWL_ERR(priv, "Unable to add station %pM (%d)\n", |
| 3799 | sta->addr, ret); |
| 3800 | /* Should we return success if return code is EEXIST ? */ |
Reinette Chatre | da5ae1c | 2010-05-28 09:28:39 -0700 | [diff] [blame] | 3801 | mutex_unlock(&priv->mutex); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3802 | return ret; |
| 3803 | } |
| 3804 | |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 3805 | sta_priv->common.sta_id = sta_id; |
| 3806 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3807 | /* Initialize rate scaling */ |
Frans Pop | 91dd6c2 | 2010-03-24 14:19:58 -0700 | [diff] [blame] | 3808 | IWL_DEBUG_INFO(priv, "Initializing rate scaling for station %pM\n", |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3809 | sta->addr); |
| 3810 | iwl_rs_rate_init(priv, sta, sta_id); |
Reinette Chatre | da5ae1c | 2010-05-28 09:28:39 -0700 | [diff] [blame] | 3811 | mutex_unlock(&priv->mutex); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3812 | |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 3813 | return 0; |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3814 | } |
| 3815 | |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3816 | static void iwl_mac_channel_switch(struct ieee80211_hw *hw, |
| 3817 | struct ieee80211_channel_switch *ch_switch) |
| 3818 | { |
| 3819 | struct iwl_priv *priv = hw->priv; |
| 3820 | const struct iwl_channel_info *ch_info; |
| 3821 | struct ieee80211_conf *conf = &hw->conf; |
Shanyu Zhao | aa2dc6b | 2010-07-28 13:40:39 -0700 | [diff] [blame] | 3822 | struct ieee80211_channel *channel = ch_switch->channel; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3823 | struct iwl_ht_config *ht_conf = &priv->current_ht_config; |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3824 | /* |
| 3825 | * MULTI-FIXME |
| 3826 | * When we add support for multiple interfaces, we need to |
| 3827 | * revisit this. The channel switch command in the device |
| 3828 | * only affects the BSS context, but what does that really |
| 3829 | * mean? And what if we get a CSA on the second interface? |
| 3830 | * This needs a lot of work. |
| 3831 | */ |
| 3832 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3833 | u16 ch; |
| 3834 | unsigned long flags = 0; |
| 3835 | |
| 3836 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
| 3837 | |
| 3838 | if (iwl_is_rfkill(priv)) |
| 3839 | goto out_exit; |
| 3840 | |
| 3841 | if (test_bit(STATUS_EXIT_PENDING, &priv->status) || |
| 3842 | test_bit(STATUS_SCANNING, &priv->status)) |
| 3843 | goto out_exit; |
| 3844 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3845 | if (!iwl_is_associated_ctx(ctx)) |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3846 | goto out_exit; |
| 3847 | |
| 3848 | /* channel switch in progress */ |
| 3849 | if (priv->switch_rxon.switch_in_progress == true) |
| 3850 | goto out_exit; |
| 3851 | |
| 3852 | mutex_lock(&priv->mutex); |
| 3853 | if (priv->cfg->ops->lib->set_channel_switch) { |
| 3854 | |
Shanyu Zhao | aa2dc6b | 2010-07-28 13:40:39 -0700 | [diff] [blame] | 3855 | ch = channel->hw_value; |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3856 | if (le16_to_cpu(ctx->active.channel) != ch) { |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3857 | ch_info = iwl_get_channel_info(priv, |
Shanyu Zhao | aa2dc6b | 2010-07-28 13:40:39 -0700 | [diff] [blame] | 3858 | channel->band, |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3859 | ch); |
| 3860 | if (!is_channel_valid(ch_info)) { |
| 3861 | IWL_DEBUG_MAC80211(priv, "invalid channel\n"); |
| 3862 | goto out; |
| 3863 | } |
| 3864 | spin_lock_irqsave(&priv->lock, flags); |
| 3865 | |
| 3866 | priv->current_ht_config.smps = conf->smps_mode; |
| 3867 | |
| 3868 | /* Configure HT40 channels */ |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 3869 | ctx->ht.enabled = conf_is_ht(conf); |
| 3870 | if (ctx->ht.enabled) { |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3871 | if (conf_is_ht40_minus(conf)) { |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 3872 | ctx->ht.extension_chan_offset = |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3873 | IEEE80211_HT_PARAM_CHA_SEC_BELOW; |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 3874 | ctx->ht.is_40mhz = true; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3875 | } else if (conf_is_ht40_plus(conf)) { |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 3876 | ctx->ht.extension_chan_offset = |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3877 | IEEE80211_HT_PARAM_CHA_SEC_ABOVE; |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 3878 | ctx->ht.is_40mhz = true; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3879 | } else { |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 3880 | ctx->ht.extension_chan_offset = |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3881 | IEEE80211_HT_PARAM_CHA_SEC_NONE; |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 3882 | ctx->ht.is_40mhz = false; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3883 | } |
| 3884 | } else |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 3885 | ctx->ht.is_40mhz = false; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3886 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3887 | if ((le16_to_cpu(ctx->staging.channel) != ch)) |
| 3888 | ctx->staging.flags = 0; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3889 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3890 | iwl_set_rxon_channel(priv, channel, ctx); |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3891 | iwl_set_rxon_ht(priv, ht_conf); |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3892 | iwl_set_flags_for_band(priv, ctx, channel->band, |
Johannes Berg | 8bd413e | 2010-08-23 10:46:40 +0200 | [diff] [blame] | 3893 | ctx->vif); |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3894 | spin_unlock_irqrestore(&priv->lock, flags); |
| 3895 | |
| 3896 | iwl_set_rate(priv); |
| 3897 | /* |
| 3898 | * at this point, staging_rxon has the |
| 3899 | * configuration for channel switch |
| 3900 | */ |
| 3901 | if (priv->cfg->ops->lib->set_channel_switch(priv, |
| 3902 | ch_switch)) |
| 3903 | priv->switch_rxon.switch_in_progress = false; |
| 3904 | } |
| 3905 | } |
| 3906 | out: |
| 3907 | mutex_unlock(&priv->mutex); |
| 3908 | out_exit: |
| 3909 | if (!priv->switch_rxon.switch_in_progress) |
Johannes Berg | 8bd413e | 2010-08-23 10:46:40 +0200 | [diff] [blame] | 3910 | ieee80211_chswitch_done(ctx->vif, false); |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3911 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 3912 | } |
| 3913 | |
Johannes Berg | 8b8ab9d | 2010-08-17 11:24:01 +0200 | [diff] [blame] | 3914 | static void iwlagn_configure_filter(struct ieee80211_hw *hw, |
| 3915 | unsigned int changed_flags, |
| 3916 | unsigned int *total_flags, |
| 3917 | u64 multicast) |
| 3918 | { |
| 3919 | struct iwl_priv *priv = hw->priv; |
| 3920 | __le32 filter_or = 0, filter_nand = 0; |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3921 | struct iwl_rxon_context *ctx; |
Johannes Berg | 8b8ab9d | 2010-08-17 11:24:01 +0200 | [diff] [blame] | 3922 | |
| 3923 | #define CHK(test, flag) do { \ |
| 3924 | if (*total_flags & (test)) \ |
| 3925 | filter_or |= (flag); \ |
| 3926 | else \ |
| 3927 | filter_nand |= (flag); \ |
| 3928 | } while (0) |
| 3929 | |
| 3930 | IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n", |
| 3931 | changed_flags, *total_flags); |
| 3932 | |
| 3933 | CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK); |
| 3934 | CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK); |
| 3935 | CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK); |
| 3936 | |
| 3937 | #undef CHK |
| 3938 | |
| 3939 | mutex_lock(&priv->mutex); |
| 3940 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3941 | for_each_context(priv, ctx) { |
| 3942 | ctx->staging.filter_flags &= ~filter_nand; |
| 3943 | ctx->staging.filter_flags |= filter_or; |
| 3944 | iwlcore_commit_rxon(priv, ctx); |
| 3945 | } |
Johannes Berg | 8b8ab9d | 2010-08-17 11:24:01 +0200 | [diff] [blame] | 3946 | |
| 3947 | mutex_unlock(&priv->mutex); |
| 3948 | |
| 3949 | /* |
| 3950 | * Receiving all multicast frames is always enabled by the |
| 3951 | * default flags setup in iwl_connection_init_rx_config() |
| 3952 | * since we currently do not support programming multicast |
| 3953 | * filters into the device. |
| 3954 | */ |
| 3955 | *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS | |
| 3956 | FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL; |
| 3957 | } |
| 3958 | |
Wey-Yi Guy | 716c74b | 2010-06-24 13:22:36 -0700 | [diff] [blame] | 3959 | static void iwl_mac_flush(struct ieee80211_hw *hw, bool drop) |
| 3960 | { |
| 3961 | struct iwl_priv *priv = hw->priv; |
| 3962 | |
| 3963 | mutex_lock(&priv->mutex); |
| 3964 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
| 3965 | |
| 3966 | /* do not support "flush" */ |
| 3967 | if (!priv->cfg->ops->lib->txfifo_flush) |
| 3968 | goto done; |
| 3969 | |
| 3970 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) { |
| 3971 | IWL_DEBUG_TX(priv, "Aborting flush due to device shutdown\n"); |
| 3972 | goto done; |
| 3973 | } |
| 3974 | if (iwl_is_rfkill(priv)) { |
| 3975 | IWL_DEBUG_TX(priv, "Aborting flush due to RF Kill\n"); |
| 3976 | goto done; |
| 3977 | } |
| 3978 | |
| 3979 | /* |
| 3980 | * mac80211 will not push any more frames for transmit |
| 3981 | * until the flush is completed |
| 3982 | */ |
| 3983 | if (drop) { |
| 3984 | IWL_DEBUG_MAC80211(priv, "send flush command\n"); |
| 3985 | if (priv->cfg->ops->lib->txfifo_flush(priv, IWL_DROP_ALL)) { |
| 3986 | IWL_ERR(priv, "flush request fail\n"); |
| 3987 | goto done; |
| 3988 | } |
| 3989 | } |
| 3990 | IWL_DEBUG_MAC80211(priv, "wait transmit/flush all frames\n"); |
| 3991 | iwlagn_wait_tx_queue_empty(priv); |
| 3992 | done: |
| 3993 | mutex_unlock(&priv->mutex); |
| 3994 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 3995 | } |
| 3996 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3997 | /***************************************************************************** |
| 3998 | * |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3999 | * driver setup and teardown |
| 4000 | * |
| 4001 | *****************************************************************************/ |
| 4002 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 4003 | static void iwl_setup_deferred_work(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4004 | { |
Reinette Chatre | d21050c | 2009-02-13 11:51:18 -0800 | [diff] [blame] | 4005 | priv->workqueue = create_singlethread_workqueue(DRV_NAME); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4006 | |
| 4007 | init_waitqueue_head(&priv->wait_command_queue); |
| 4008 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4009 | INIT_WORK(&priv->restart, iwl_bg_restart); |
| 4010 | INIT_WORK(&priv->rx_replenish, iwl_bg_rx_replenish); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4011 | INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update); |
Emmanuel Grumbach | 16e727e | 2008-06-12 09:46:52 +0800 | [diff] [blame] | 4012 | 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] | 4013 | INIT_WORK(&priv->tx_flush, iwl_bg_tx_flush); |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 4014 | INIT_WORK(&priv->bt_full_concurrency, iwl_bg_bt_full_concurrency); |
Wey-Yi Guy | fbba941 | 2010-08-23 07:57:10 -0700 | [diff] [blame] | 4015 | INIT_WORK(&priv->bt_runtime_config, iwl_bg_bt_runtime_config); |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 4016 | INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start); |
| 4017 | INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start); |
Tomas Winkler | 2a421b9 | 2008-06-12 09:47:10 +0800 | [diff] [blame] | 4018 | |
Tomas Winkler | 2a421b9 | 2008-06-12 09:47:10 +0800 | [diff] [blame] | 4019 | iwl_setup_scan_deferred_work(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4020 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 4021 | if (priv->cfg->ops->lib->setup_deferred_work) |
| 4022 | priv->cfg->ops->lib->setup_deferred_work(priv); |
| 4023 | |
| 4024 | init_timer(&priv->statistics_periodic); |
| 4025 | priv->statistics_periodic.data = (unsigned long)priv; |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4026 | priv->statistics_periodic.function = iwl_bg_statistics_periodic; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4027 | |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 4028 | init_timer(&priv->ucode_trace); |
| 4029 | priv->ucode_trace.data = (unsigned long)priv; |
| 4030 | priv->ucode_trace.function = iwl_bg_ucode_trace; |
| 4031 | |
Wey-Yi Guy | b74e31a | 2010-03-01 17:23:50 -0800 | [diff] [blame] | 4032 | if (priv->cfg->ops->lib->recover_from_tx_stall) { |
| 4033 | init_timer(&priv->monitor_recover); |
| 4034 | priv->monitor_recover.data = (unsigned long)priv; |
| 4035 | priv->monitor_recover.function = |
| 4036 | priv->cfg->ops->lib->recover_from_tx_stall; |
| 4037 | } |
| 4038 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 4039 | if (!priv->cfg->use_isr_legacy) |
| 4040 | tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long)) |
| 4041 | iwl_irq_tasklet, (unsigned long)priv); |
| 4042 | else |
| 4043 | tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long)) |
| 4044 | iwl_irq_tasklet_legacy, (unsigned long)priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4045 | } |
| 4046 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 4047 | static void iwl_cancel_deferred_work(struct iwl_priv *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->cancel_deferred_work) |
| 4050 | priv->cfg->ops->lib->cancel_deferred_work(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4051 | |
Joonwoo Park | 3ae6a05 | 2007-11-29 10:43:16 +0900 | [diff] [blame] | 4052 | cancel_delayed_work_sync(&priv->init_alive_start); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4053 | cancel_delayed_work(&priv->scan_check); |
Johannes Berg | 88be026 | 2010-04-07 00:21:36 -0700 | [diff] [blame] | 4054 | cancel_work_sync(&priv->start_internal_scan); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4055 | cancel_delayed_work(&priv->alive_start); |
Wey-Yi Guy | 815e629 | 2010-06-03 10:14:01 -0700 | [diff] [blame] | 4056 | cancel_work_sync(&priv->run_time_calib_work); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4057 | cancel_work_sync(&priv->beacon_update); |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 4058 | cancel_work_sync(&priv->bt_full_concurrency); |
Wey-Yi Guy | fbba941 | 2010-08-23 07:57:10 -0700 | [diff] [blame] | 4059 | cancel_work_sync(&priv->bt_runtime_config); |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 4060 | del_timer_sync(&priv->statistics_periodic); |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 4061 | del_timer_sync(&priv->ucode_trace); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4062 | } |
| 4063 | |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 4064 | static void iwl_init_hw_rates(struct iwl_priv *priv, |
| 4065 | struct ieee80211_rate *rates) |
| 4066 | { |
| 4067 | int i; |
| 4068 | |
| 4069 | for (i = 0; i < IWL_RATE_COUNT_LEGACY; i++) { |
| 4070 | rates[i].bitrate = iwl_rates[i].ieee * 5; |
| 4071 | rates[i].hw_value = i; /* Rate scaling will work on indexes */ |
| 4072 | rates[i].hw_value_short = i; |
| 4073 | rates[i].flags = 0; |
| 4074 | if ((i >= IWL_FIRST_CCK_RATE) && (i <= IWL_LAST_CCK_RATE)) { |
| 4075 | /* |
| 4076 | * If CCK != 1M then set short preamble rate flag. |
| 4077 | */ |
| 4078 | rates[i].flags |= |
| 4079 | (iwl_rates[i].plcp == IWL_RATE_1M_PLCP) ? |
| 4080 | 0 : IEEE80211_RATE_SHORT_PREAMBLE; |
| 4081 | } |
| 4082 | } |
| 4083 | } |
| 4084 | |
| 4085 | static int iwl_init_drv(struct iwl_priv *priv) |
| 4086 | { |
| 4087 | int ret; |
| 4088 | |
| 4089 | priv->ibss_beacon = NULL; |
| 4090 | |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 4091 | spin_lock_init(&priv->sta_lock); |
| 4092 | spin_lock_init(&priv->hcmd_lock); |
| 4093 | |
| 4094 | INIT_LIST_HEAD(&priv->free_frames); |
| 4095 | |
| 4096 | mutex_init(&priv->mutex); |
Reinette Chatre | d2dfe6d | 2010-02-18 22:03:04 -0800 | [diff] [blame] | 4097 | mutex_init(&priv->sync_cmd_mutex); |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 4098 | |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 4099 | priv->ieee_channels = NULL; |
| 4100 | priv->ieee_rates = NULL; |
| 4101 | priv->band = IEEE80211_BAND_2GHZ; |
| 4102 | |
| 4103 | priv->iw_mode = NL80211_IFTYPE_STATION; |
Johannes Berg | ba37a3d | 2009-12-10 14:37:27 -0800 | [diff] [blame] | 4104 | priv->current_ht_config.smps = IEEE80211_SMPS_STATIC; |
Wey-Yi Guy | a13d276 | 2010-01-22 14:22:42 -0800 | [diff] [blame] | 4105 | priv->missed_beacon_threshold = IWL_MISSED_BEACON_THRESHOLD_DEF; |
Wey-Yi Guy | d5a0ffa | 2010-03-04 13:38:59 -0800 | [diff] [blame] | 4106 | priv->_agn.agg_tids_count = 0; |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 4107 | |
Wey-Yi Guy | 8a472da | 2010-02-18 22:03:06 -0800 | [diff] [blame] | 4108 | /* initialize force reset */ |
| 4109 | priv->force_reset[IWL_RF_RESET].reset_duration = |
| 4110 | IWL_DELAY_NEXT_FORCE_RF_RESET; |
| 4111 | priv->force_reset[IWL_FW_RESET].reset_duration = |
| 4112 | IWL_DELAY_NEXT_FORCE_FW_RELOAD; |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 4113 | |
| 4114 | /* Choose which receivers/antennas to use */ |
| 4115 | if (priv->cfg->ops->hcmd->set_rxon_chain) |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 4116 | priv->cfg->ops->hcmd->set_rxon_chain(priv, |
| 4117 | &priv->contexts[IWL_RXON_CTX_BSS]); |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 4118 | |
| 4119 | iwl_init_scan_params(priv); |
| 4120 | |
Wey-Yi Guy | 22bf59a | 2010-08-23 07:57:11 -0700 | [diff] [blame] | 4121 | /* init bt coex */ |
| 4122 | if (priv->cfg->advanced_bt_coexist) { |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 4123 | priv->kill_ack_mask = IWLAGN_BT_KILL_ACK_MASK_DEFAULT; |
| 4124 | priv->kill_cts_mask = IWLAGN_BT_KILL_CTS_MASK_DEFAULT; |
| 4125 | priv->bt_valid = IWLAGN_BT_ALL_VALID_MSK; |
Wey-Yi Guy | 22bf59a | 2010-08-23 07:57:11 -0700 | [diff] [blame] | 4126 | priv->bt_on_thresh = BT_ON_THRESHOLD_DEF; |
| 4127 | priv->bt_duration = BT_DURATION_LIMIT_DEF; |
| 4128 | priv->dynamic_frag_thresh = BT_FRAG_THRESHOLD_DEF; |
| 4129 | priv->dynamic_agg_thresh = BT_AGG_THRESHOLD_DEF; |
| 4130 | } |
| 4131 | |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 4132 | /* Set the tx_power_user_lmt to the lowest power level |
| 4133 | * this value will get overwritten by channel max power avg |
| 4134 | * from eeprom */ |
Wey-Yi Guy | b744cb7 | 2010-03-23 11:37:59 -0700 | [diff] [blame] | 4135 | priv->tx_power_user_lmt = IWLAGN_TX_POWER_TARGET_POWER_MIN; |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 4136 | |
| 4137 | ret = iwl_init_channel_map(priv); |
| 4138 | if (ret) { |
| 4139 | IWL_ERR(priv, "initializing regulatory failed: %d\n", ret); |
| 4140 | goto err; |
| 4141 | } |
| 4142 | |
| 4143 | ret = iwlcore_init_geos(priv); |
| 4144 | if (ret) { |
| 4145 | IWL_ERR(priv, "initializing geos failed: %d\n", ret); |
| 4146 | goto err_free_channel_map; |
| 4147 | } |
| 4148 | iwl_init_hw_rates(priv, priv->ieee_rates); |
| 4149 | |
| 4150 | return 0; |
| 4151 | |
| 4152 | err_free_channel_map: |
| 4153 | iwl_free_channel_map(priv); |
| 4154 | err: |
| 4155 | return ret; |
| 4156 | } |
| 4157 | |
| 4158 | static void iwl_uninit_drv(struct iwl_priv *priv) |
| 4159 | { |
| 4160 | iwl_calib_free_results(priv); |
| 4161 | iwlcore_free_geos(priv); |
| 4162 | iwl_free_channel_map(priv); |
Johannes Berg | 811ecc9 | 2010-04-06 04:12:41 -0700 | [diff] [blame] | 4163 | kfree(priv->scan_cmd); |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 4164 | } |
| 4165 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4166 | static struct ieee80211_ops iwl_hw_ops = { |
| 4167 | .tx = iwl_mac_tx, |
| 4168 | .start = iwl_mac_start, |
| 4169 | .stop = iwl_mac_stop, |
| 4170 | .add_interface = iwl_mac_add_interface, |
| 4171 | .remove_interface = iwl_mac_remove_interface, |
| 4172 | .config = iwl_mac_config, |
Johannes Berg | 8b8ab9d | 2010-08-17 11:24:01 +0200 | [diff] [blame] | 4173 | .configure_filter = iwlagn_configure_filter, |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4174 | .set_key = iwl_mac_set_key, |
| 4175 | .update_tkip_key = iwl_mac_update_tkip_key, |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4176 | .conf_tx = iwl_mac_conf_tx, |
| 4177 | .reset_tsf = iwl_mac_reset_tsf, |
| 4178 | .bss_info_changed = iwl_bss_info_changed, |
| 4179 | .ampdu_action = iwl_mac_ampdu_action, |
Johannes Berg | 6ab10ff | 2009-11-13 11:56:37 -0800 | [diff] [blame] | 4180 | .hw_scan = iwl_mac_hw_scan, |
| 4181 | .sta_notify = iwl_mac_sta_notify, |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 4182 | .sta_add = iwlagn_mac_sta_add, |
| 4183 | .sta_remove = iwl_mac_sta_remove, |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 4184 | .channel_switch = iwl_mac_channel_switch, |
Wey-Yi Guy | 716c74b | 2010-06-24 13:22:36 -0700 | [diff] [blame] | 4185 | .flush = iwl_mac_flush, |
Johannes Berg | a85d7cc | 2010-07-31 08:34:10 -0700 | [diff] [blame] | 4186 | .tx_last_beacon = iwl_mac_tx_last_beacon, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4187 | }; |
| 4188 | |
Wey-Yi Guy | 3867fe0 | 2010-07-31 08:34:05 -0700 | [diff] [blame] | 4189 | static void iwl_hw_detect(struct iwl_priv *priv) |
| 4190 | { |
| 4191 | priv->hw_rev = _iwl_read32(priv, CSR_HW_REV); |
| 4192 | priv->hw_wa_rev = _iwl_read32(priv, CSR_HW_REV_WA_REG); |
| 4193 | 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] | 4194 | 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] | 4195 | } |
| 4196 | |
Wey-Yi Guy | 07d4f1a | 2010-07-31 08:34:08 -0700 | [diff] [blame] | 4197 | static int iwl_set_hw_params(struct iwl_priv *priv) |
| 4198 | { |
| 4199 | priv->hw_params.max_rxq_size = RX_QUEUE_SIZE; |
| 4200 | priv->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG; |
| 4201 | if (priv->cfg->mod_params->amsdu_size_8K) |
| 4202 | priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_8K); |
| 4203 | else |
| 4204 | priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_4K); |
| 4205 | |
| 4206 | priv->hw_params.max_beacon_itrvl = IWL_MAX_UCODE_BEACON_INTERVAL; |
| 4207 | |
| 4208 | if (priv->cfg->mod_params->disable_11n) |
| 4209 | priv->cfg->sku &= ~IWL_SKU_N; |
| 4210 | |
| 4211 | /* Device-specific setup */ |
| 4212 | return priv->cfg->ops->lib->set_hw_params(priv); |
| 4213 | } |
| 4214 | |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 4215 | static const u8 iwlagn_bss_ac_to_fifo[] = { |
| 4216 | IWL_TX_FIFO_VO, |
| 4217 | IWL_TX_FIFO_VI, |
| 4218 | IWL_TX_FIFO_BE, |
| 4219 | IWL_TX_FIFO_BK, |
| 4220 | }; |
| 4221 | |
| 4222 | static const u8 iwlagn_bss_ac_to_queue[] = { |
| 4223 | 0, 1, 2, 3, |
| 4224 | }; |
| 4225 | |
| 4226 | static const u8 iwlagn_pan_ac_to_fifo[] = { |
| 4227 | IWL_TX_FIFO_VO_IPAN, |
| 4228 | IWL_TX_FIFO_VI_IPAN, |
| 4229 | IWL_TX_FIFO_BE_IPAN, |
| 4230 | IWL_TX_FIFO_BK_IPAN, |
| 4231 | }; |
| 4232 | |
| 4233 | static const u8 iwlagn_pan_ac_to_queue[] = { |
| 4234 | 7, 6, 5, 4, |
| 4235 | }; |
| 4236 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4237 | 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] | 4238 | { |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 4239 | int err = 0, i; |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 4240 | struct iwl_priv *priv; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4241 | struct ieee80211_hw *hw; |
Tomas Winkler | 82b9a12 | 2008-03-04 18:09:30 -0800 | [diff] [blame] | 4242 | struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data); |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 4243 | unsigned long flags; |
Wey-Yi Guy | c6fa17e | 2010-07-15 05:58:30 -0700 | [diff] [blame] | 4244 | u16 pci_cmd, num_mac; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4245 | |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4246 | /************************ |
| 4247 | * 1. Allocating HW data |
| 4248 | ************************/ |
| 4249 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 4250 | /* Disabling hardware scan means that mac80211 will perform scans |
| 4251 | * "the hard way", rather than using device's scan. */ |
Assaf Krauss | 1ea8739 | 2008-03-18 14:57:50 -0700 | [diff] [blame] | 4252 | if (cfg->mod_params->disable_hw_scan) { |
Reinette Chatre | a562a9d | 2009-07-17 09:30:24 -0700 | [diff] [blame] | 4253 | if (iwl_debug_level & IWL_DL_INFO) |
Ester Kummer | bf403db | 2008-05-05 10:22:40 +0800 | [diff] [blame] | 4254 | dev_printk(KERN_DEBUG, &(pdev->dev), |
| 4255 | "Disabling hw_scan\n"); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4256 | iwl_hw_ops.hw_scan = NULL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4257 | } |
| 4258 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4259 | hw = iwl_alloc_all(cfg, &iwl_hw_ops); |
Assaf Krauss | 1d0a082 | 2008-03-14 10:38:48 -0700 | [diff] [blame] | 4260 | if (!hw) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4261 | err = -ENOMEM; |
| 4262 | goto out; |
| 4263 | } |
Assaf Krauss | 1d0a082 | 2008-03-14 10:38:48 -0700 | [diff] [blame] | 4264 | priv = hw->priv; |
| 4265 | /* At this point both hw and priv are allocated. */ |
| 4266 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 4267 | /* |
| 4268 | * The default context is always valid, |
| 4269 | * more may be discovered when firmware |
| 4270 | * is loaded. |
| 4271 | */ |
| 4272 | priv->valid_contexts = BIT(IWL_RXON_CTX_BSS); |
| 4273 | |
| 4274 | for (i = 0; i < NUM_IWL_RXON_CTX; i++) |
| 4275 | priv->contexts[i].ctxid = i; |
| 4276 | |
Johannes Berg | 8f2d3d2 | 2010-08-23 10:46:37 +0200 | [diff] [blame] | 4277 | priv->contexts[IWL_RXON_CTX_BSS].rxon_cmd = REPLY_RXON; |
| 4278 | priv->contexts[IWL_RXON_CTX_BSS].rxon_timing_cmd = REPLY_RXON_TIMING; |
| 4279 | priv->contexts[IWL_RXON_CTX_BSS].rxon_assoc_cmd = REPLY_RXON_ASSOC; |
Johannes Berg | 8dfdb9d | 2010-08-23 10:46:38 +0200 | [diff] [blame] | 4280 | priv->contexts[IWL_RXON_CTX_BSS].qos_cmd = REPLY_QOS_PARAM; |
Johannes Berg | 2995baf | 2010-08-23 10:46:42 +0200 | [diff] [blame] | 4281 | priv->contexts[IWL_RXON_CTX_BSS].ap_sta_id = IWL_AP_ID; |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 4282 | priv->contexts[IWL_RXON_CTX_BSS].wep_key_cmd = REPLY_WEPKEY; |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 4283 | priv->contexts[IWL_RXON_CTX_BSS].ac_to_fifo = iwlagn_bss_ac_to_fifo; |
| 4284 | priv->contexts[IWL_RXON_CTX_BSS].ac_to_queue = iwlagn_bss_ac_to_queue; |
Johannes Berg | ece9c4e | 2010-08-23 10:46:49 +0200 | [diff] [blame] | 4285 | |
| 4286 | priv->contexts[IWL_RXON_CTX_PAN].rxon_cmd = REPLY_WIPAN_RXON; |
| 4287 | priv->contexts[IWL_RXON_CTX_PAN].rxon_timing_cmd = REPLY_WIPAN_RXON_TIMING; |
| 4288 | priv->contexts[IWL_RXON_CTX_PAN].rxon_assoc_cmd = REPLY_WIPAN_RXON_ASSOC; |
| 4289 | priv->contexts[IWL_RXON_CTX_PAN].qos_cmd = REPLY_WIPAN_QOS_PARAM; |
| 4290 | priv->contexts[IWL_RXON_CTX_PAN].ap_sta_id = IWL_AP_ID_PAN; |
| 4291 | priv->contexts[IWL_RXON_CTX_PAN].wep_key_cmd = REPLY_WIPAN_WEPKEY; |
| 4292 | priv->contexts[IWL_RXON_CTX_PAN].bcast_sta_id = IWLAGN_PAN_BCAST_ID; |
| 4293 | priv->contexts[IWL_RXON_CTX_PAN].station_flags = STA_FLG_PAN_STATION; |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 4294 | priv->contexts[IWL_RXON_CTX_PAN].ac_to_fifo = iwlagn_pan_ac_to_fifo; |
| 4295 | priv->contexts[IWL_RXON_CTX_PAN].ac_to_queue = iwlagn_pan_ac_to_queue; |
| 4296 | priv->contexts[IWL_RXON_CTX_PAN].mcast_queue = IWL_IPAN_MCAST_QUEUE; |
Johannes Berg | ece9c4e | 2010-08-23 10:46:49 +0200 | [diff] [blame] | 4297 | |
| 4298 | BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2); |
Johannes Berg | 8f2d3d2 | 2010-08-23 10:46:37 +0200 | [diff] [blame] | 4299 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4300 | SET_IEEE80211_DEV(hw, &pdev->dev); |
| 4301 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 4302 | IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n"); |
Tomas Winkler | 82b9a12 | 2008-03-04 18:09:30 -0800 | [diff] [blame] | 4303 | priv->cfg = cfg; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4304 | priv->pci_dev = pdev; |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 4305 | priv->inta_mask = CSR_INI_SET_MASK; |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4306 | |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 4307 | /* is antenna coupling more than 35dB ? */ |
| 4308 | priv->bt_ant_couple_ok = |
| 4309 | (iwlagn_ant_coupling > IWL_BT_ANTENNA_COUPLING_THRESHOLD) ? |
| 4310 | true : false; |
| 4311 | |
Wey-Yi Guy | f37837c | 2010-08-23 07:57:12 -0700 | [diff] [blame] | 4312 | /* enable/disable bt channel announcement */ |
| 4313 | priv->bt_ch_announce = iwlagn_bt_ch_announce; |
| 4314 | |
Wey-Yi Guy | 20594eb | 2009-08-07 15:41:39 -0700 | [diff] [blame] | 4315 | if (iwl_alloc_traffic_mem(priv)) |
| 4316 | IWL_ERR(priv, "Not enough memory to generate traffic log\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4317 | |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4318 | /************************** |
| 4319 | * 2. Initializing PCI bus |
| 4320 | **************************/ |
John W. Linville | 1a7123c | 2010-08-05 14:39:31 -0400 | [diff] [blame] | 4321 | pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 | |
| 4322 | PCIE_LINK_STATE_CLKPM); |
| 4323 | |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4324 | if (pci_enable_device(pdev)) { |
| 4325 | err = -ENODEV; |
| 4326 | goto out_ieee80211_free_hw; |
| 4327 | } |
| 4328 | |
| 4329 | pci_set_master(pdev); |
| 4330 | |
Winkler, Tomas | 093d874c | 2008-09-26 15:09:34 +0800 | [diff] [blame] | 4331 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36)); |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4332 | if (!err) |
Winkler, Tomas | 093d874c | 2008-09-26 15:09:34 +0800 | [diff] [blame] | 4333 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36)); |
Ron Rindjunsky | cc2a8ea | 2008-04-21 15:41:59 -0700 | [diff] [blame] | 4334 | if (err) { |
Winkler, Tomas | 093d874c | 2008-09-26 15:09:34 +0800 | [diff] [blame] | 4335 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
Ron Rindjunsky | cc2a8ea | 2008-04-21 15:41:59 -0700 | [diff] [blame] | 4336 | if (!err) |
Winkler, Tomas | 093d874c | 2008-09-26 15:09:34 +0800 | [diff] [blame] | 4337 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
Ron Rindjunsky | cc2a8ea | 2008-04-21 15:41:59 -0700 | [diff] [blame] | 4338 | /* both attempts failed: */ |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4339 | if (err) { |
Tomas Winkler | 978785a | 2008-12-19 10:37:31 +0800 | [diff] [blame] | 4340 | IWL_WARN(priv, "No suitable DMA available.\n"); |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4341 | goto out_pci_disable_device; |
Ron Rindjunsky | cc2a8ea | 2008-04-21 15:41:59 -0700 | [diff] [blame] | 4342 | } |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4343 | } |
| 4344 | |
| 4345 | err = pci_request_regions(pdev, DRV_NAME); |
| 4346 | if (err) |
| 4347 | goto out_pci_disable_device; |
| 4348 | |
| 4349 | pci_set_drvdata(pdev, priv); |
| 4350 | |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4351 | |
| 4352 | /*********************** |
| 4353 | * 3. Read REV register |
| 4354 | ***********************/ |
| 4355 | priv->hw_base = pci_iomap(pdev, 0, 0); |
| 4356 | if (!priv->hw_base) { |
| 4357 | err = -ENODEV; |
| 4358 | goto out_pci_release_regions; |
| 4359 | } |
| 4360 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 4361 | IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n", |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4362 | (unsigned long long) pci_resource_len(pdev, 0)); |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 4363 | IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base); |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4364 | |
Reinette Chatre | 731a29b | 2009-12-14 14:12:11 -0800 | [diff] [blame] | 4365 | /* 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] | 4366 | * we should init now |
| 4367 | */ |
| 4368 | spin_lock_init(&priv->reg_lock); |
Reinette Chatre | 731a29b | 2009-12-14 14:12:11 -0800 | [diff] [blame] | 4369 | spin_lock_init(&priv->lock); |
Reinette Chatre | 4843b5a | 2010-02-03 09:38:59 -0800 | [diff] [blame] | 4370 | |
| 4371 | /* |
| 4372 | * stop and reset the on-board processor just in case it is in a |
| 4373 | * strange state ... like being left stranded by a primary kernel |
| 4374 | * and this is now the kdump kernel trying to start up |
| 4375 | */ |
| 4376 | iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET); |
| 4377 | |
Tomas Winkler | b661c81 | 2008-04-23 17:14:54 -0700 | [diff] [blame] | 4378 | iwl_hw_detect(priv); |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 4379 | IWL_INFO(priv, "Detected %s, REV=0x%X\n", |
Tomas Winkler | b661c81 | 2008-04-23 17:14:54 -0700 | [diff] [blame] | 4380 | priv->cfg->name, priv->hw_rev); |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4381 | |
Tomas Winkler | e7b6358 | 2008-09-03 11:26:49 +0800 | [diff] [blame] | 4382 | /* We disable the RETRY_TIMEOUT register (0x41) to keep |
| 4383 | * PCI Tx retries from interfering with C3 CPU state */ |
| 4384 | pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00); |
| 4385 | |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 4386 | iwl_prepare_card_hw(priv); |
| 4387 | if (!priv->hw_ready) { |
| 4388 | IWL_WARN(priv, "Failed, HW not ready\n"); |
| 4389 | goto out_iounmap; |
| 4390 | } |
| 4391 | |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4392 | /***************** |
| 4393 | * 4. Read EEPROM |
| 4394 | *****************/ |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4395 | /* Read the EEPROM */ |
| 4396 | err = iwl_eeprom_init(priv); |
| 4397 | if (err) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 4398 | IWL_ERR(priv, "Unable to init EEPROM\n"); |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4399 | goto out_iounmap; |
| 4400 | } |
Tomas Winkler | 8614f36 | 2008-04-23 17:14:55 -0700 | [diff] [blame] | 4401 | err = iwl_eeprom_check_version(priv); |
| 4402 | if (err) |
Reinette Chatre | c8f1613 | 2009-02-27 16:21:22 -0800 | [diff] [blame] | 4403 | goto out_free_eeprom; |
Tomas Winkler | 8614f36 | 2008-04-23 17:14:55 -0700 | [diff] [blame] | 4404 | |
Ron Rindjunsky | 0288301 | 2008-05-15 13:53:53 +0800 | [diff] [blame] | 4405 | /* extract MAC Address */ |
Wey-Yi Guy | c6fa17e | 2010-07-15 05:58:30 -0700 | [diff] [blame] | 4406 | iwl_eeprom_get_mac(priv, priv->addresses[0].addr); |
| 4407 | IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->addresses[0].addr); |
| 4408 | priv->hw->wiphy->addresses = priv->addresses; |
| 4409 | priv->hw->wiphy->n_addresses = 1; |
| 4410 | num_mac = iwl_eeprom_query16(priv, EEPROM_NUM_MAC_ADDRESS); |
| 4411 | if (num_mac > 1) { |
| 4412 | memcpy(priv->addresses[1].addr, priv->addresses[0].addr, |
| 4413 | ETH_ALEN); |
| 4414 | priv->addresses[1].addr[5]++; |
| 4415 | priv->hw->wiphy->n_addresses++; |
| 4416 | } |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4417 | |
| 4418 | /************************ |
| 4419 | * 5. Setup HW constants |
| 4420 | ************************/ |
Ron Rindjunsky | da154e30 | 2008-06-30 17:23:20 +0800 | [diff] [blame] | 4421 | if (iwl_set_hw_params(priv)) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 4422 | IWL_ERR(priv, "failed to set hw parameters\n"); |
Tomas Winkler | 073d3f5 | 2008-04-21 15:41:52 -0700 | [diff] [blame] | 4423 | goto out_free_eeprom; |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4424 | } |
| 4425 | |
| 4426 | /******************* |
Tomas Winkler | 6ba8795 | 2008-05-15 13:54:17 +0800 | [diff] [blame] | 4427 | * 6. Setup priv |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4428 | *******************/ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4429 | |
Tomas Winkler | 6ba8795 | 2008-05-15 13:54:17 +0800 | [diff] [blame] | 4430 | err = iwl_init_drv(priv); |
Assaf Krauss | bf85ea4 | 2008-03-14 10:38:49 -0700 | [diff] [blame] | 4431 | if (err) |
Ron Rindjunsky | 399f490 | 2008-04-23 17:14:56 -0700 | [diff] [blame] | 4432 | goto out_free_eeprom; |
Assaf Krauss | bf85ea4 | 2008-03-14 10:38:49 -0700 | [diff] [blame] | 4433 | /* At this point both hw and priv are initialized. */ |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4434 | |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4435 | /******************** |
Abhijeet Kolekar | 09f9bf7 | 2009-04-20 14:37:03 -0700 | [diff] [blame] | 4436 | * 7. Setup services |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4437 | ********************/ |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 4438 | spin_lock_irqsave(&priv->lock, flags); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4439 | iwl_disable_interrupts(priv); |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 4440 | spin_unlock_irqrestore(&priv->lock, flags); |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4441 | |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 4442 | pci_enable_msi(priv->pci_dev); |
| 4443 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 4444 | iwl_alloc_isr_ict(priv); |
| 4445 | err = request_irq(priv->pci_dev->irq, priv->cfg->ops->lib->isr, |
| 4446 | IRQF_SHARED, DRV_NAME, priv); |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 4447 | if (err) { |
| 4448 | IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq); |
| 4449 | goto out_disable_msi; |
| 4450 | } |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4451 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 4452 | iwl_setup_deferred_work(priv); |
Emmanuel Grumbach | 653fa4a | 2008-06-30 17:23:11 +0800 | [diff] [blame] | 4453 | iwl_setup_rx_handlers(priv); |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4454 | |
Johannes Berg | 158bea0 | 2010-01-22 14:22:53 -0800 | [diff] [blame] | 4455 | /********************************************* |
| 4456 | * 8. Enable interrupts and read RFKILL state |
| 4457 | *********************************************/ |
Tomas Winkler | 6ba8795 | 2008-05-15 13:54:17 +0800 | [diff] [blame] | 4458 | |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 4459 | /* enable interrupts if needed: hw bug w/a */ |
| 4460 | pci_read_config_word(priv->pci_dev, PCI_COMMAND, &pci_cmd); |
| 4461 | if (pci_cmd & PCI_COMMAND_INTX_DISABLE) { |
| 4462 | pci_cmd &= ~PCI_COMMAND_INTX_DISABLE; |
| 4463 | pci_write_config_word(priv->pci_dev, PCI_COMMAND, pci_cmd); |
| 4464 | } |
| 4465 | |
| 4466 | iwl_enable_interrupts(priv); |
| 4467 | |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 4468 | /* If platform's RF_KILL switch is NOT set to KILL */ |
| 4469 | if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW) |
| 4470 | clear_bit(STATUS_RF_KILL_HW, &priv->status); |
| 4471 | else |
| 4472 | set_bit(STATUS_RF_KILL_HW, &priv->status); |
Tomas Winkler | 6ba8795 | 2008-05-15 13:54:17 +0800 | [diff] [blame] | 4473 | |
Johannes Berg | a60e77e | 2009-06-04 18:26:06 +0200 | [diff] [blame] | 4474 | wiphy_rfkill_set_hw_state(priv->hw->wiphy, |
| 4475 | test_bit(STATUS_RF_KILL_HW, &priv->status)); |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 4476 | |
Emmanuel Grumbach | 58d0f36 | 2008-06-12 09:47:19 +0800 | [diff] [blame] | 4477 | iwl_power_initialize(priv); |
Wey-Yi Guy | 39b73fb1 | 2009-07-24 11:13:02 -0700 | [diff] [blame] | 4478 | iwl_tt_initialize(priv); |
Johannes Berg | 158bea0 | 2010-01-22 14:22:53 -0800 | [diff] [blame] | 4479 | |
Reinette Chatre | a15707d | 2010-05-10 15:08:11 -0700 | [diff] [blame] | 4480 | init_completion(&priv->_agn.firmware_loading_complete); |
Johannes Berg | 562db53 | 2010-04-29 07:41:53 -0700 | [diff] [blame] | 4481 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 4482 | err = iwl_request_firmware(priv, true); |
Johannes Berg | 158bea0 | 2010-01-22 14:22:53 -0800 | [diff] [blame] | 4483 | if (err) |
Emmanuel Grumbach | 7d47618 | 2010-05-23 00:14:08 -0700 | [diff] [blame] | 4484 | goto out_destroy_workqueue; |
Johannes Berg | 158bea0 | 2010-01-22 14:22:53 -0800 | [diff] [blame] | 4485 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4486 | return 0; |
| 4487 | |
Emmanuel Grumbach | 7d47618 | 2010-05-23 00:14:08 -0700 | [diff] [blame] | 4488 | out_destroy_workqueue: |
Reinette Chatre | c8f1613 | 2009-02-27 16:21:22 -0800 | [diff] [blame] | 4489 | destroy_workqueue(priv->workqueue); |
| 4490 | priv->workqueue = NULL; |
Helmut Schaa | 795cc0a | 2009-02-12 18:51:03 +0100 | [diff] [blame] | 4491 | free_irq(priv->pci_dev->irq, priv); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 4492 | iwl_free_isr_ict(priv); |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 4493 | out_disable_msi: |
| 4494 | pci_disable_msi(priv->pci_dev); |
Tomas Winkler | 6ba8795 | 2008-05-15 13:54:17 +0800 | [diff] [blame] | 4495 | iwl_uninit_drv(priv); |
Tomas Winkler | 073d3f5 | 2008-04-21 15:41:52 -0700 | [diff] [blame] | 4496 | out_free_eeprom: |
| 4497 | iwl_eeprom_free(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4498 | out_iounmap: |
| 4499 | pci_iounmap(pdev, priv->hw_base); |
| 4500 | out_pci_release_regions: |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 4501 | pci_set_drvdata(pdev, NULL); |
Reinette Chatre | 623d563 | 2009-03-03 11:37:04 -0800 | [diff] [blame] | 4502 | pci_release_regions(pdev); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4503 | out_pci_disable_device: |
| 4504 | pci_disable_device(pdev); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4505 | out_ieee80211_free_hw: |
Wey-Yi Guy | 20594eb | 2009-08-07 15:41:39 -0700 | [diff] [blame] | 4506 | iwl_free_traffic_mem(priv); |
Wey-Yi Guy | d7c76f4 | 2009-10-09 13:20:17 -0700 | [diff] [blame] | 4507 | ieee80211_free_hw(priv->hw); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4508 | out: |
| 4509 | return err; |
| 4510 | } |
| 4511 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4512 | static void __devexit iwl_pci_remove(struct pci_dev *pdev) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4513 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 4514 | struct iwl_priv *priv = pci_get_drvdata(pdev); |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 4515 | unsigned long flags; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4516 | |
| 4517 | if (!priv) |
| 4518 | return; |
| 4519 | |
Reinette Chatre | a15707d | 2010-05-10 15:08:11 -0700 | [diff] [blame] | 4520 | wait_for_completion(&priv->_agn.firmware_loading_complete); |
Johannes Berg | 562db53 | 2010-04-29 07:41:53 -0700 | [diff] [blame] | 4521 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 4522 | IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4523 | |
Emmanuel Grumbach | 6724962 | 2008-05-29 16:35:26 +0800 | [diff] [blame] | 4524 | iwl_dbgfs_unregister(priv); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4525 | sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group); |
Emmanuel Grumbach | 6724962 | 2008-05-29 16:35:26 +0800 | [diff] [blame] | 4526 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4527 | /* ieee80211_unregister_hw call wil cause iwl_mac_stop to |
| 4528 | * to be called and iwl_down since we are removing the device |
Gregory Greenman | 0b124c3 | 2008-09-03 11:18:50 +0800 | [diff] [blame] | 4529 | * we need to set STATUS_EXIT_PENDING bit. |
| 4530 | */ |
| 4531 | set_bit(STATUS_EXIT_PENDING, &priv->status); |
Ron Rindjunsky | c4f5523 | 2008-03-28 16:21:10 -0700 | [diff] [blame] | 4532 | if (priv->mac80211_registered) { |
| 4533 | ieee80211_unregister_hw(priv->hw); |
| 4534 | priv->mac80211_registered = 0; |
Gregory Greenman | 0b124c3 | 2008-09-03 11:18:50 +0800 | [diff] [blame] | 4535 | } else { |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4536 | iwl_down(priv); |
Ron Rindjunsky | c4f5523 | 2008-03-28 16:21:10 -0700 | [diff] [blame] | 4537 | } |
| 4538 | |
Ben Cahill | c166b25 | 2009-10-23 13:42:35 -0700 | [diff] [blame] | 4539 | /* |
| 4540 | * Make sure device is reset to low power before unloading driver. |
| 4541 | * This may be redundant with iwl_down(), but there are paths to |
| 4542 | * run iwl_down() without calling apm_ops.stop(), and there are |
| 4543 | * paths to avoid running iwl_down() at all before leaving driver. |
| 4544 | * This (inexpensive) call *makes sure* device is reset. |
| 4545 | */ |
| 4546 | priv->cfg->ops->lib->apm_ops.stop(priv); |
| 4547 | |
Wey-Yi Guy | 39b73fb1 | 2009-07-24 11:13:02 -0700 | [diff] [blame] | 4548 | iwl_tt_exit(priv); |
| 4549 | |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 4550 | /* make sure we flush any pending irq or |
| 4551 | * tasklet for the driver |
| 4552 | */ |
| 4553 | spin_lock_irqsave(&priv->lock, flags); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4554 | iwl_disable_interrupts(priv); |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 4555 | spin_unlock_irqrestore(&priv->lock, flags); |
| 4556 | |
| 4557 | iwl_synchronize_irq(priv); |
| 4558 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4559 | iwl_dealloc_ucode_pci(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4560 | |
| 4561 | if (priv->rxq.bd) |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 4562 | iwlagn_rx_queue_free(priv, &priv->rxq); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 4563 | iwlagn_hw_txq_ctx_free(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4564 | |
Tomas Winkler | 073d3f5 | 2008-04-21 15:41:52 -0700 | [diff] [blame] | 4565 | iwl_eeprom_free(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4566 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4567 | |
Mohamed Abbas | 948c171 | 2007-10-25 17:15:45 +0800 | [diff] [blame] | 4568 | /*netif_stop_queue(dev); */ |
| 4569 | flush_workqueue(priv->workqueue); |
| 4570 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4571 | /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4572 | * priv->workqueue... so we can't take down the workqueue |
| 4573 | * until now... */ |
| 4574 | destroy_workqueue(priv->workqueue); |
| 4575 | priv->workqueue = NULL; |
Wey-Yi Guy | 20594eb | 2009-08-07 15:41:39 -0700 | [diff] [blame] | 4576 | iwl_free_traffic_mem(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4577 | |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 4578 | free_irq(priv->pci_dev->irq, priv); |
| 4579 | pci_disable_msi(priv->pci_dev); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4580 | pci_iounmap(pdev, priv->hw_base); |
| 4581 | pci_release_regions(pdev); |
| 4582 | pci_disable_device(pdev); |
| 4583 | pci_set_drvdata(pdev, NULL); |
| 4584 | |
Tomas Winkler | 6ba8795 | 2008-05-15 13:54:17 +0800 | [diff] [blame] | 4585 | iwl_uninit_drv(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4586 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 4587 | iwl_free_isr_ict(priv); |
| 4588 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4589 | if (priv->ibss_beacon) |
| 4590 | dev_kfree_skb(priv->ibss_beacon); |
| 4591 | |
| 4592 | ieee80211_free_hw(priv->hw); |
| 4593 | } |
| 4594 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4595 | |
| 4596 | /***************************************************************************** |
| 4597 | * |
| 4598 | * driver and module entry point |
| 4599 | * |
| 4600 | *****************************************************************************/ |
| 4601 | |
Ron Rindjunsky | fed9017 | 2008-04-15 16:01:41 -0700 | [diff] [blame] | 4602 | /* Hardware specific file defines the PCI IDs table for that hardware module */ |
Alexey Dobriyan | a3aa188 | 2010-01-07 11:58:11 +0000 | [diff] [blame] | 4603 | static DEFINE_PCI_DEVICE_TABLE(iwl_hw_card_ids) = { |
Tomas Winkler | 4fc22b2 | 2008-07-21 18:54:42 +0300 | [diff] [blame] | 4604 | #ifdef CONFIG_IWL4965 |
Ron Rindjunsky | fed9017 | 2008-04-15 16:01:41 -0700 | [diff] [blame] | 4605 | {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)}, |
| 4606 | {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)}, |
Tomas Winkler | 4fc22b2 | 2008-07-21 18:54:42 +0300 | [diff] [blame] | 4607 | #endif /* CONFIG_IWL4965 */ |
Tomas Winkler | 5a6a256 | 2008-04-24 11:55:23 -0700 | [diff] [blame] | 4608 | #ifdef CONFIG_IWL5000 |
Wey-Yi Guy | ac59257 | 2009-11-20 12:05:03 -0800 | [diff] [blame] | 4609 | /* 5100 Series WiFi */ |
| 4610 | {IWL_PCI_DEVICE(0x4232, 0x1201, iwl5100_agn_cfg)}, /* Mini Card */ |
| 4611 | {IWL_PCI_DEVICE(0x4232, 0x1301, iwl5100_agn_cfg)}, /* Half Mini Card */ |
| 4612 | {IWL_PCI_DEVICE(0x4232, 0x1204, iwl5100_agn_cfg)}, /* Mini Card */ |
| 4613 | {IWL_PCI_DEVICE(0x4232, 0x1304, iwl5100_agn_cfg)}, /* Half Mini Card */ |
| 4614 | {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bgn_cfg)}, /* Mini Card */ |
| 4615 | {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bgn_cfg)}, /* Half Mini Card */ |
| 4616 | {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)}, /* Mini Card */ |
| 4617 | {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)}, /* Half Mini Card */ |
| 4618 | {IWL_PCI_DEVICE(0x4232, 0x1221, iwl5100_agn_cfg)}, /* Mini Card */ |
| 4619 | {IWL_PCI_DEVICE(0x4232, 0x1321, iwl5100_agn_cfg)}, /* Half Mini Card */ |
| 4620 | {IWL_PCI_DEVICE(0x4232, 0x1224, iwl5100_agn_cfg)}, /* Mini Card */ |
| 4621 | {IWL_PCI_DEVICE(0x4232, 0x1324, iwl5100_agn_cfg)}, /* Half Mini Card */ |
| 4622 | {IWL_PCI_DEVICE(0x4232, 0x1225, iwl5100_bgn_cfg)}, /* Mini Card */ |
| 4623 | {IWL_PCI_DEVICE(0x4232, 0x1325, iwl5100_bgn_cfg)}, /* Half Mini Card */ |
| 4624 | {IWL_PCI_DEVICE(0x4232, 0x1226, iwl5100_abg_cfg)}, /* Mini Card */ |
| 4625 | {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)}, /* Half Mini Card */ |
| 4626 | {IWL_PCI_DEVICE(0x4237, 0x1211, iwl5100_agn_cfg)}, /* Mini Card */ |
| 4627 | {IWL_PCI_DEVICE(0x4237, 0x1311, iwl5100_agn_cfg)}, /* Half Mini Card */ |
| 4628 | {IWL_PCI_DEVICE(0x4237, 0x1214, iwl5100_agn_cfg)}, /* Mini Card */ |
| 4629 | {IWL_PCI_DEVICE(0x4237, 0x1314, iwl5100_agn_cfg)}, /* Half Mini Card */ |
| 4630 | {IWL_PCI_DEVICE(0x4237, 0x1215, iwl5100_bgn_cfg)}, /* Mini Card */ |
| 4631 | {IWL_PCI_DEVICE(0x4237, 0x1315, iwl5100_bgn_cfg)}, /* Half Mini Card */ |
| 4632 | {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)}, /* Mini Card */ |
| 4633 | {IWL_PCI_DEVICE(0x4237, 0x1316, iwl5100_abg_cfg)}, /* Half Mini Card */ |
| 4634 | |
| 4635 | /* 5300 Series WiFi */ |
| 4636 | {IWL_PCI_DEVICE(0x4235, 0x1021, iwl5300_agn_cfg)}, /* Mini Card */ |
| 4637 | {IWL_PCI_DEVICE(0x4235, 0x1121, iwl5300_agn_cfg)}, /* Half Mini Card */ |
| 4638 | {IWL_PCI_DEVICE(0x4235, 0x1024, iwl5300_agn_cfg)}, /* Mini Card */ |
| 4639 | {IWL_PCI_DEVICE(0x4235, 0x1124, iwl5300_agn_cfg)}, /* Half Mini Card */ |
| 4640 | {IWL_PCI_DEVICE(0x4235, 0x1001, iwl5300_agn_cfg)}, /* Mini Card */ |
| 4641 | {IWL_PCI_DEVICE(0x4235, 0x1101, iwl5300_agn_cfg)}, /* Half Mini Card */ |
| 4642 | {IWL_PCI_DEVICE(0x4235, 0x1004, iwl5300_agn_cfg)}, /* Mini Card */ |
| 4643 | {IWL_PCI_DEVICE(0x4235, 0x1104, iwl5300_agn_cfg)}, /* Half Mini Card */ |
| 4644 | {IWL_PCI_DEVICE(0x4236, 0x1011, iwl5300_agn_cfg)}, /* Mini Card */ |
| 4645 | {IWL_PCI_DEVICE(0x4236, 0x1111, iwl5300_agn_cfg)}, /* Half Mini Card */ |
| 4646 | {IWL_PCI_DEVICE(0x4236, 0x1014, iwl5300_agn_cfg)}, /* Mini Card */ |
| 4647 | {IWL_PCI_DEVICE(0x4236, 0x1114, iwl5300_agn_cfg)}, /* Half Mini Card */ |
| 4648 | |
| 4649 | /* 5350 Series WiFi/WiMax */ |
| 4650 | {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)}, /* Mini Card */ |
| 4651 | {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)}, /* Mini Card */ |
| 4652 | {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)}, /* Mini Card */ |
| 4653 | |
| 4654 | /* 5150 Series Wifi/WiMax */ |
| 4655 | {IWL_PCI_DEVICE(0x423C, 0x1201, iwl5150_agn_cfg)}, /* Mini Card */ |
| 4656 | {IWL_PCI_DEVICE(0x423C, 0x1301, iwl5150_agn_cfg)}, /* Half Mini Card */ |
| 4657 | {IWL_PCI_DEVICE(0x423C, 0x1206, iwl5150_abg_cfg)}, /* Mini Card */ |
| 4658 | {IWL_PCI_DEVICE(0x423C, 0x1306, iwl5150_abg_cfg)}, /* Half Mini Card */ |
| 4659 | {IWL_PCI_DEVICE(0x423C, 0x1221, iwl5150_agn_cfg)}, /* Mini Card */ |
| 4660 | {IWL_PCI_DEVICE(0x423C, 0x1321, iwl5150_agn_cfg)}, /* Half Mini Card */ |
| 4661 | |
| 4662 | {IWL_PCI_DEVICE(0x423D, 0x1211, iwl5150_agn_cfg)}, /* Mini Card */ |
| 4663 | {IWL_PCI_DEVICE(0x423D, 0x1311, iwl5150_agn_cfg)}, /* Half Mini Card */ |
| 4664 | {IWL_PCI_DEVICE(0x423D, 0x1216, iwl5150_abg_cfg)}, /* Mini Card */ |
| 4665 | {IWL_PCI_DEVICE(0x423D, 0x1316, iwl5150_abg_cfg)}, /* Half Mini Card */ |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 4666 | |
| 4667 | /* 6x00 Series */ |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 4668 | {IWL_PCI_DEVICE(0x422B, 0x1101, iwl6000_3agn_cfg)}, |
| 4669 | {IWL_PCI_DEVICE(0x422B, 0x1121, iwl6000_3agn_cfg)}, |
| 4670 | {IWL_PCI_DEVICE(0x422C, 0x1301, iwl6000i_2agn_cfg)}, |
| 4671 | {IWL_PCI_DEVICE(0x422C, 0x1306, iwl6000i_2abg_cfg)}, |
| 4672 | {IWL_PCI_DEVICE(0x422C, 0x1307, iwl6000i_2bg_cfg)}, |
| 4673 | {IWL_PCI_DEVICE(0x422C, 0x1321, iwl6000i_2agn_cfg)}, |
| 4674 | {IWL_PCI_DEVICE(0x422C, 0x1326, iwl6000i_2abg_cfg)}, |
| 4675 | {IWL_PCI_DEVICE(0x4238, 0x1111, iwl6000_3agn_cfg)}, |
| 4676 | {IWL_PCI_DEVICE(0x4239, 0x1311, iwl6000i_2agn_cfg)}, |
| 4677 | {IWL_PCI_DEVICE(0x4239, 0x1316, iwl6000i_2abg_cfg)}, |
Shanyu Zhao | 4b3e806 | 2010-04-07 18:06:36 -0700 | [diff] [blame] | 4678 | |
Shanyu Zhao | 95b1301 | 2010-04-21 11:46:33 -0700 | [diff] [blame] | 4679 | /* 6x00 Series Gen2a */ |
| 4680 | {IWL_PCI_DEVICE(0x0082, 0x1201, iwl6000g2a_2agn_cfg)}, |
| 4681 | {IWL_PCI_DEVICE(0x0085, 0x1211, iwl6000g2a_2agn_cfg)}, |
| 4682 | {IWL_PCI_DEVICE(0x0082, 0x1221, iwl6000g2a_2agn_cfg)}, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 4683 | {IWL_PCI_DEVICE(0x0082, 0x1206, iwl6000g2a_2abg_cfg)}, |
| 4684 | {IWL_PCI_DEVICE(0x0085, 0x1216, iwl6000g2a_2abg_cfg)}, |
| 4685 | {IWL_PCI_DEVICE(0x0082, 0x1226, iwl6000g2a_2abg_cfg)}, |
| 4686 | {IWL_PCI_DEVICE(0x0082, 0x1207, iwl6000g2a_2bg_cfg)}, |
Shanyu Zhao | 9f6e1ba | 2010-05-11 15:21:54 -0700 | [diff] [blame] | 4687 | {IWL_PCI_DEVICE(0x0082, 0x1301, iwl6000g2a_2agn_cfg)}, |
| 4688 | {IWL_PCI_DEVICE(0x0082, 0x1306, iwl6000g2a_2abg_cfg)}, |
| 4689 | {IWL_PCI_DEVICE(0x0082, 0x1307, iwl6000g2a_2bg_cfg)}, |
| 4690 | {IWL_PCI_DEVICE(0x0082, 0x1321, iwl6000g2a_2agn_cfg)}, |
| 4691 | {IWL_PCI_DEVICE(0x0082, 0x1326, iwl6000g2a_2abg_cfg)}, |
| 4692 | {IWL_PCI_DEVICE(0x0085, 0x1311, iwl6000g2a_2agn_cfg)}, |
| 4693 | {IWL_PCI_DEVICE(0x0085, 0x1316, iwl6000g2a_2abg_cfg)}, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 4694 | |
| 4695 | /* 6x00 Series Gen2b */ |
| 4696 | {IWL_PCI_DEVICE(0x008F, 0x5105, iwl6000g2b_bgn_cfg)}, |
| 4697 | {IWL_PCI_DEVICE(0x0090, 0x5115, iwl6000g2b_bgn_cfg)}, |
| 4698 | {IWL_PCI_DEVICE(0x008F, 0x5125, iwl6000g2b_bgn_cfg)}, |
| 4699 | {IWL_PCI_DEVICE(0x008F, 0x5107, iwl6000g2b_bg_cfg)}, |
| 4700 | {IWL_PCI_DEVICE(0x008F, 0x5201, iwl6000g2b_2agn_cfg)}, |
| 4701 | {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6000g2b_2agn_cfg)}, |
| 4702 | {IWL_PCI_DEVICE(0x008F, 0x5221, iwl6000g2b_2agn_cfg)}, |
| 4703 | {IWL_PCI_DEVICE(0x008F, 0x5206, iwl6000g2b_2abg_cfg)}, |
| 4704 | {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6000g2b_2abg_cfg)}, |
| 4705 | {IWL_PCI_DEVICE(0x008F, 0x5226, iwl6000g2b_2abg_cfg)}, |
| 4706 | {IWL_PCI_DEVICE(0x008F, 0x5207, iwl6000g2b_2bg_cfg)}, |
Shanyu Zhao | 9f6e1ba | 2010-05-11 15:21:54 -0700 | [diff] [blame] | 4707 | {IWL_PCI_DEVICE(0x008A, 0x5301, iwl6000g2b_bgn_cfg)}, |
| 4708 | {IWL_PCI_DEVICE(0x008A, 0x5305, iwl6000g2b_bgn_cfg)}, |
| 4709 | {IWL_PCI_DEVICE(0x008A, 0x5307, iwl6000g2b_bg_cfg)}, |
| 4710 | {IWL_PCI_DEVICE(0x008A, 0x5321, iwl6000g2b_bgn_cfg)}, |
| 4711 | {IWL_PCI_DEVICE(0x008A, 0x5325, iwl6000g2b_bgn_cfg)}, |
| 4712 | {IWL_PCI_DEVICE(0x008B, 0x5311, iwl6000g2b_bgn_cfg)}, |
| 4713 | {IWL_PCI_DEVICE(0x008B, 0x5315, iwl6000g2b_bgn_cfg)}, |
| 4714 | {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6000g2b_2agn_cfg)}, |
| 4715 | {IWL_PCI_DEVICE(0x0090, 0x5215, iwl6000g2b_2bgn_cfg)}, |
| 4716 | {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6000g2b_2abg_cfg)}, |
| 4717 | {IWL_PCI_DEVICE(0x0091, 0x5201, iwl6000g2b_2agn_cfg)}, |
| 4718 | {IWL_PCI_DEVICE(0x0091, 0x5205, iwl6000g2b_2bgn_cfg)}, |
| 4719 | {IWL_PCI_DEVICE(0x0091, 0x5206, iwl6000g2b_2abg_cfg)}, |
| 4720 | {IWL_PCI_DEVICE(0x0091, 0x5207, iwl6000g2b_2bg_cfg)}, |
| 4721 | {IWL_PCI_DEVICE(0x0091, 0x5221, iwl6000g2b_2agn_cfg)}, |
| 4722 | {IWL_PCI_DEVICE(0x0091, 0x5225, iwl6000g2b_2bgn_cfg)}, |
| 4723 | {IWL_PCI_DEVICE(0x0091, 0x5226, iwl6000g2b_2abg_cfg)}, |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 4724 | |
| 4725 | /* 6x50 WiFi/WiMax Series */ |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 4726 | {IWL_PCI_DEVICE(0x0087, 0x1301, iwl6050_2agn_cfg)}, |
| 4727 | {IWL_PCI_DEVICE(0x0087, 0x1306, iwl6050_2abg_cfg)}, |
| 4728 | {IWL_PCI_DEVICE(0x0087, 0x1321, iwl6050_2agn_cfg)}, |
| 4729 | {IWL_PCI_DEVICE(0x0087, 0x1326, iwl6050_2abg_cfg)}, |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 4730 | {IWL_PCI_DEVICE(0x0089, 0x1311, iwl6050_2agn_cfg)}, |
| 4731 | {IWL_PCI_DEVICE(0x0089, 0x1316, iwl6050_2abg_cfg)}, |
| 4732 | |
Shanyu Zhao | 0326433 | 2010-06-29 17:27:27 -0700 | [diff] [blame] | 4733 | /* 6x50 WiFi/WiMax Series Gen2 */ |
| 4734 | {IWL_PCI_DEVICE(0x0885, 0x1305, iwl6050g2_bgn_cfg)}, |
| 4735 | {IWL_PCI_DEVICE(0x0885, 0x1306, iwl6050g2_bgn_cfg)}, |
| 4736 | {IWL_PCI_DEVICE(0x0885, 0x1325, iwl6050g2_bgn_cfg)}, |
| 4737 | {IWL_PCI_DEVICE(0x0885, 0x1326, iwl6050g2_bgn_cfg)}, |
| 4738 | {IWL_PCI_DEVICE(0x0886, 0x1315, iwl6050g2_bgn_cfg)}, |
| 4739 | {IWL_PCI_DEVICE(0x0886, 0x1316, iwl6050g2_bgn_cfg)}, |
| 4740 | |
Jay Sternberg | 77dcb6a | 2009-03-06 13:52:55 -0800 | [diff] [blame] | 4741 | /* 1000 Series WiFi */ |
Wey-Yi Guy | 4bd0914f | 2009-09-17 10:43:52 -0700 | [diff] [blame] | 4742 | {IWL_PCI_DEVICE(0x0083, 0x1205, iwl1000_bgn_cfg)}, |
| 4743 | {IWL_PCI_DEVICE(0x0083, 0x1305, iwl1000_bgn_cfg)}, |
| 4744 | {IWL_PCI_DEVICE(0x0083, 0x1225, iwl1000_bgn_cfg)}, |
| 4745 | {IWL_PCI_DEVICE(0x0083, 0x1325, iwl1000_bgn_cfg)}, |
| 4746 | {IWL_PCI_DEVICE(0x0084, 0x1215, iwl1000_bgn_cfg)}, |
| 4747 | {IWL_PCI_DEVICE(0x0084, 0x1315, iwl1000_bgn_cfg)}, |
| 4748 | {IWL_PCI_DEVICE(0x0083, 0x1206, iwl1000_bg_cfg)}, |
| 4749 | {IWL_PCI_DEVICE(0x0083, 0x1306, iwl1000_bg_cfg)}, |
| 4750 | {IWL_PCI_DEVICE(0x0083, 0x1226, iwl1000_bg_cfg)}, |
| 4751 | {IWL_PCI_DEVICE(0x0083, 0x1326, iwl1000_bg_cfg)}, |
| 4752 | {IWL_PCI_DEVICE(0x0084, 0x1216, iwl1000_bg_cfg)}, |
| 4753 | {IWL_PCI_DEVICE(0x0084, 0x1316, iwl1000_bg_cfg)}, |
Tomas Winkler | 5a6a256 | 2008-04-24 11:55:23 -0700 | [diff] [blame] | 4754 | #endif /* CONFIG_IWL5000 */ |
Tomas Winkler | 7100e92 | 2008-12-01 16:32:18 -0800 | [diff] [blame] | 4755 | |
Ron Rindjunsky | fed9017 | 2008-04-15 16:01:41 -0700 | [diff] [blame] | 4756 | {0} |
| 4757 | }; |
| 4758 | MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids); |
| 4759 | |
| 4760 | static struct pci_driver iwl_driver = { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4761 | .name = DRV_NAME, |
Ron Rindjunsky | fed9017 | 2008-04-15 16:01:41 -0700 | [diff] [blame] | 4762 | .id_table = iwl_hw_card_ids, |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4763 | .probe = iwl_pci_probe, |
| 4764 | .remove = __devexit_p(iwl_pci_remove), |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4765 | #ifdef CONFIG_PM |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4766 | .suspend = iwl_pci_suspend, |
| 4767 | .resume = iwl_pci_resume, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4768 | #endif |
| 4769 | }; |
| 4770 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4771 | static int __init iwl_init(void) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4772 | { |
| 4773 | |
| 4774 | int ret; |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 4775 | pr_info(DRV_DESCRIPTION ", " DRV_VERSION "\n"); |
| 4776 | pr_info(DRV_COPYRIGHT "\n"); |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 4777 | |
Tomas Winkler | e227cea | 2008-07-18 13:53:05 +0800 | [diff] [blame] | 4778 | ret = iwlagn_rate_control_register(); |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 4779 | if (ret) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 4780 | pr_err("Unable to register rate control algorithm: %d\n", ret); |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 4781 | return ret; |
| 4782 | } |
| 4783 | |
Ron Rindjunsky | fed9017 | 2008-04-15 16:01:41 -0700 | [diff] [blame] | 4784 | ret = pci_register_driver(&iwl_driver); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4785 | if (ret) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 4786 | pr_err("Unable to initialize PCI module\n"); |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 4787 | goto error_register; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4788 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4789 | |
| 4790 | return ret; |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 4791 | |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 4792 | error_register: |
Tomas Winkler | e227cea | 2008-07-18 13:53:05 +0800 | [diff] [blame] | 4793 | iwlagn_rate_control_unregister(); |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 4794 | return ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4795 | } |
| 4796 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4797 | static void __exit iwl_exit(void) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4798 | { |
Ron Rindjunsky | fed9017 | 2008-04-15 16:01:41 -0700 | [diff] [blame] | 4799 | pci_unregister_driver(&iwl_driver); |
Tomas Winkler | e227cea | 2008-07-18 13:53:05 +0800 | [diff] [blame] | 4800 | iwlagn_rate_control_unregister(); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4801 | } |
| 4802 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 4803 | module_exit(iwl_exit); |
| 4804 | module_init(iwl_init); |
Reinette Chatre | a562a9d | 2009-07-17 09:30:24 -0700 | [diff] [blame] | 4805 | |
| 4806 | #ifdef CONFIG_IWLWIFI_DEBUG |
Wey-Yi Guy | 4e30cb6 | 2009-09-17 10:43:47 -0700 | [diff] [blame] | 4807 | module_param_named(debug50, iwl_debug_level, uint, S_IRUGO); |
Reinette Chatre | a562a9d | 2009-07-17 09:30:24 -0700 | [diff] [blame] | 4808 | MODULE_PARM_DESC(debug50, "50XX debug output mask (deprecated)"); |
Wey-Yi Guy | 4e30cb6 | 2009-09-17 10:43:47 -0700 | [diff] [blame] | 4809 | module_param_named(debug, iwl_debug_level, uint, S_IRUGO | S_IWUSR); |
Reinette Chatre | a562a9d | 2009-07-17 09:30:24 -0700 | [diff] [blame] | 4810 | MODULE_PARM_DESC(debug, "debug output mask"); |
| 4811 | #endif |
| 4812 | |
Wey-Yi Guy | 2b068618 | 2010-03-22 09:17:39 -0700 | [diff] [blame] | 4813 | module_param_named(swcrypto50, iwlagn_mod_params.sw_crypto, bool, S_IRUGO); |
| 4814 | MODULE_PARM_DESC(swcrypto50, |
| 4815 | "using crypto in software (default 0 [hardware]) (deprecated)"); |
| 4816 | module_param_named(swcrypto, iwlagn_mod_params.sw_crypto, int, S_IRUGO); |
| 4817 | MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])"); |
| 4818 | module_param_named(queues_num50, |
| 4819 | iwlagn_mod_params.num_of_queues, int, S_IRUGO); |
| 4820 | MODULE_PARM_DESC(queues_num50, |
| 4821 | "number of hw queues in 50xx series (deprecated)"); |
| 4822 | module_param_named(queues_num, iwlagn_mod_params.num_of_queues, int, S_IRUGO); |
| 4823 | MODULE_PARM_DESC(queues_num, "number of hw queues."); |
| 4824 | module_param_named(11n_disable50, iwlagn_mod_params.disable_11n, int, S_IRUGO); |
| 4825 | MODULE_PARM_DESC(11n_disable50, "disable 50XX 11n functionality (deprecated)"); |
| 4826 | module_param_named(11n_disable, iwlagn_mod_params.disable_11n, int, S_IRUGO); |
| 4827 | MODULE_PARM_DESC(11n_disable, "disable 11n functionality"); |
| 4828 | module_param_named(amsdu_size_8K50, iwlagn_mod_params.amsdu_size_8K, |
| 4829 | int, S_IRUGO); |
| 4830 | MODULE_PARM_DESC(amsdu_size_8K50, |
| 4831 | "enable 8K amsdu size in 50XX series (deprecated)"); |
| 4832 | module_param_named(amsdu_size_8K, iwlagn_mod_params.amsdu_size_8K, |
| 4833 | int, S_IRUGO); |
| 4834 | MODULE_PARM_DESC(amsdu_size_8K, "enable 8K amsdu size"); |
| 4835 | module_param_named(fw_restart50, iwlagn_mod_params.restart_fw, int, S_IRUGO); |
| 4836 | MODULE_PARM_DESC(fw_restart50, |
| 4837 | "restart firmware in case of error (deprecated)"); |
| 4838 | module_param_named(fw_restart, iwlagn_mod_params.restart_fw, int, S_IRUGO); |
| 4839 | MODULE_PARM_DESC(fw_restart, "restart firmware in case of error"); |
| 4840 | module_param_named( |
| 4841 | disable_hw_scan, iwlagn_mod_params.disable_hw_scan, int, S_IRUGO); |
| 4842 | MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)"); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 4843 | |
| 4844 | module_param_named(ucode_alternative, iwlagn_wanted_ucode_alternative, int, |
| 4845 | S_IRUGO); |
| 4846 | MODULE_PARM_DESC(ucode_alternative, |
| 4847 | "specify ucode alternative to use from ucode file"); |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 4848 | |
| 4849 | module_param_named(antenna_coupling, iwlagn_ant_coupling, int, S_IRUGO); |
| 4850 | MODULE_PARM_DESC(antenna_coupling, |
| 4851 | "specify antenna coupling in dB (defualt: 0 dB)"); |
Wey-Yi Guy | f37837c | 2010-08-23 07:57:12 -0700 | [diff] [blame] | 4852 | |
| 4853 | module_param_named(bt_ch_announce, iwlagn_bt_ch_announce, bool, S_IRUGO); |
| 4854 | MODULE_PARM_DESC(bt_ch_announce, |
| 4855 | "Enable BT channel announcement mode (default: enable)"); |