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