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