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