Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
Wey-Yi Guy | 901069c | 2011-04-05 09:42:00 -0700 | [diff] [blame] | 3 | * Copyright(c) 2003 - 2011 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> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 35 | #include <linux/slab.h> |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 36 | #include <linux/dma-mapping.h> |
| 37 | #include <linux/delay.h> |
Alexey Dobriyan | d43c36d | 2009-10-07 17:09:06 +0400 | [diff] [blame] | 38 | #include <linux/sched.h> |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 39 | #include <linux/skbuff.h> |
| 40 | #include <linux/netdevice.h> |
| 41 | #include <linux/wireless.h> |
| 42 | #include <linux/firmware.h> |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 43 | #include <linux/etherdevice.h> |
| 44 | #include <linux/if_arp.h> |
| 45 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 46 | #include <net/mac80211.h> |
| 47 | |
| 48 | #include <asm/div64.h> |
| 49 | |
Assaf Krauss | 6bc913b | 2008-03-11 16:17:18 -0700 | [diff] [blame] | 50 | #include "iwl-eeprom.h" |
Tomas Winkler | 3e0d4cb | 2008-04-24 11:55:38 -0700 | [diff] [blame] | 51 | #include "iwl-dev.h" |
Tomas Winkler | fee1247 | 2008-04-03 16:05:21 -0700 | [diff] [blame] | 52 | #include "iwl-core.h" |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 53 | #include "iwl-io.h" |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 54 | #include "iwl-helpers.h" |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 55 | #include "iwl-sta.h" |
Johannes Berg | 0de7673 | 2010-09-22 18:02:11 +0200 | [diff] [blame] | 56 | #include "iwl-agn-calib.h" |
Johannes Berg | a117512 | 2010-01-21 06:21:10 -0800 | [diff] [blame] | 57 | #include "iwl-agn.h" |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 58 | #include "iwl-pci.h" |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 59 | |
Christoph Hellwig | 416e143 | 2007-10-25 17:15:49 +0800 | [diff] [blame] | 60 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 61 | /****************************************************************************** |
| 62 | * |
| 63 | * module boiler plate |
| 64 | * |
| 65 | ******************************************************************************/ |
| 66 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 67 | /* |
| 68 | * module name, copyright, version, etc. |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 69 | */ |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 70 | #define DRV_DESCRIPTION "Intel(R) Wireless WiFi Link AGN driver for Linux" |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 71 | |
Tomas Winkler | 0a6857e | 2008-03-12 16:58:49 -0700 | [diff] [blame] | 72 | #ifdef CONFIG_IWLWIFI_DEBUG |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 73 | #define VD "d" |
| 74 | #else |
| 75 | #define VD |
| 76 | #endif |
| 77 | |
Reinette Chatre | 81963d6 | 2010-01-22 14:22:57 -0800 | [diff] [blame] | 78 | #define DRV_VERSION IWLWIFI_VERSION VD |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 79 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 80 | |
| 81 | MODULE_DESCRIPTION(DRV_DESCRIPTION); |
| 82 | MODULE_VERSION(DRV_VERSION); |
Tomas Winkler | a7b7520 | 2008-12-11 10:33:41 -0800 | [diff] [blame] | 83 | MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 84 | MODULE_LICENSE("GPL"); |
| 85 | |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 86 | static int iwlagn_ant_coupling; |
Wey-Yi Guy | f37837c | 2010-08-23 07:57:12 -0700 | [diff] [blame] | 87 | static bool iwlagn_bt_ch_announce = 1; |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 88 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 89 | void iwl_update_chain_flags(struct iwl_priv *priv) |
Mohamed Abbas | 5da4b55 | 2008-04-21 15:41:51 -0700 | [diff] [blame] | 90 | { |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 91 | struct iwl_rxon_context *ctx; |
Mohamed Abbas | 5da4b55 | 2008-04-21 15:41:51 -0700 | [diff] [blame] | 92 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 93 | if (priv->cfg->ops->hcmd->set_rxon_chain) { |
| 94 | for_each_context(priv, ctx) { |
| 95 | priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx); |
Shanyu Zhao | 6163a37 | 2010-11-12 13:48:13 -0800 | [diff] [blame] | 96 | if (ctx->active.rx_chain != ctx->staging.rx_chain) |
Wey-Yi Guy | 805a3b8 | 2011-06-03 07:54:16 -0700 | [diff] [blame] | 97 | iwlagn_commit_rxon(priv, ctx); |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 98 | } |
| 99 | } |
Mohamed Abbas | 5da4b55 | 2008-04-21 15:41:51 -0700 | [diff] [blame] | 100 | } |
| 101 | |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 102 | /* Parse the beacon frame to find the TIM element and set tim_idx & tim_size */ |
| 103 | static void iwl_set_beacon_tim(struct iwl_priv *priv, |
Johannes Berg | 7783454 | 2010-10-04 05:50:36 -0700 | [diff] [blame] | 104 | struct iwl_tx_beacon_cmd *tx_beacon_cmd, |
| 105 | u8 *beacon, u32 frame_size) |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 106 | { |
| 107 | u16 tim_idx; |
| 108 | struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon; |
| 109 | |
| 110 | /* |
| 111 | * The index is relative to frame start but we start looking at the |
| 112 | * variable-length part of the beacon. |
| 113 | */ |
| 114 | tim_idx = mgmt->u.beacon.variable - beacon; |
| 115 | |
| 116 | /* Parse variable-length elements of beacon to find WLAN_EID_TIM */ |
| 117 | while ((tim_idx < (frame_size - 2)) && |
| 118 | (beacon[tim_idx] != WLAN_EID_TIM)) |
| 119 | tim_idx += beacon[tim_idx+1] + 2; |
| 120 | |
| 121 | /* If TIM field was found, set variables */ |
| 122 | if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) { |
| 123 | tx_beacon_cmd->tim_idx = cpu_to_le16(tim_idx); |
| 124 | tx_beacon_cmd->tim_size = beacon[tim_idx+1]; |
| 125 | } else |
| 126 | IWL_WARN(priv, "Unable to find TIM Element in beacon\n"); |
| 127 | } |
| 128 | |
Johannes Berg | 8a98d49 | 2011-04-29 09:48:14 -0700 | [diff] [blame] | 129 | int iwlagn_send_beacon_cmd(struct iwl_priv *priv) |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 130 | { |
| 131 | struct iwl_tx_beacon_cmd *tx_beacon_cmd; |
Johannes Berg | 8a98d49 | 2011-04-29 09:48:14 -0700 | [diff] [blame] | 132 | struct iwl_host_cmd cmd = { |
| 133 | .id = REPLY_TX_BEACON, |
Johannes Berg | 8a98d49 | 2011-04-29 09:48:14 -0700 | [diff] [blame] | 134 | }; |
Johannes Berg | 0b5b3ff | 2011-06-22 06:33:43 -0700 | [diff] [blame] | 135 | struct ieee80211_tx_info *info; |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 136 | u32 frame_size; |
| 137 | u32 rate_flags; |
| 138 | u32 rate; |
Johannes Berg | 8a98d49 | 2011-04-29 09:48:14 -0700 | [diff] [blame] | 139 | |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 140 | /* |
| 141 | * We have to set up the TX command, the TX Beacon command, and the |
| 142 | * beacon contents. |
| 143 | */ |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 144 | |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 145 | lockdep_assert_held(&priv->mutex); |
| 146 | |
| 147 | if (!priv->beacon_ctx) { |
| 148 | IWL_ERR(priv, "trying to build beacon w/o beacon context!\n"); |
Julia Lawall | 950094c | 2010-09-05 21:00:26 +0200 | [diff] [blame] | 149 | return 0; |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 150 | } |
| 151 | |
Johannes Berg | 8a98d49 | 2011-04-29 09:48:14 -0700 | [diff] [blame] | 152 | if (WARN_ON(!priv->beacon_skb)) |
| 153 | return -EINVAL; |
| 154 | |
Johannes Berg | 4ce7cc2 | 2011-05-13 11:57:40 -0700 | [diff] [blame] | 155 | /* Allocate beacon command */ |
| 156 | if (!priv->beacon_cmd) |
| 157 | priv->beacon_cmd = kzalloc(sizeof(*tx_beacon_cmd), GFP_KERNEL); |
| 158 | tx_beacon_cmd = priv->beacon_cmd; |
Johannes Berg | 8a98d49 | 2011-04-29 09:48:14 -0700 | [diff] [blame] | 159 | if (!tx_beacon_cmd) |
| 160 | return -ENOMEM; |
| 161 | |
| 162 | frame_size = priv->beacon_skb->len; |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 163 | |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 164 | /* Set up TX command fields */ |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 165 | tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size); |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 166 | 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] | 167 | 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] | 168 | 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] | 169 | TX_CMD_FLG_TSF_MSK | TX_CMD_FLG_STA_RATE_MSK; |
| 170 | |
| 171 | /* Set up TX beacon command fields */ |
Johannes Berg | 4ce7cc2 | 2011-05-13 11:57:40 -0700 | [diff] [blame] | 172 | iwl_set_beacon_tim(priv, tx_beacon_cmd, priv->beacon_skb->data, |
Johannes Berg | 7783454 | 2010-10-04 05:50:36 -0700 | [diff] [blame] | 173 | frame_size); |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 174 | |
| 175 | /* Set up packet rate and flags */ |
Johannes Berg | 0b5b3ff | 2011-06-22 06:33:43 -0700 | [diff] [blame] | 176 | info = IEEE80211_SKB_CB(priv->beacon_skb); |
| 177 | |
| 178 | /* |
| 179 | * Let's set up the rate at least somewhat correctly; |
| 180 | * it will currently not actually be used by the uCode, |
| 181 | * it uses the broadcast station's rate instead. |
| 182 | */ |
| 183 | if (info->control.rates[0].idx < 0 || |
| 184 | info->control.rates[0].flags & IEEE80211_TX_RC_MCS) |
| 185 | rate = 0; |
| 186 | else |
| 187 | rate = info->control.rates[0].idx; |
| 188 | |
Johannes Berg | 0e1654f | 2010-05-18 02:48:36 -0700 | [diff] [blame] | 189 | priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant, |
| 190 | priv->hw_params.valid_tx_ant); |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 191 | rate_flags = iwl_ant_idx_to_flags(priv->mgmt_tx_ant); |
Johannes Berg | 0b5b3ff | 2011-06-22 06:33:43 -0700 | [diff] [blame] | 192 | |
| 193 | /* In mac80211, rates for 5 GHz start at 0 */ |
| 194 | if (info->band == IEEE80211_BAND_5GHZ) |
| 195 | rate += IWL_FIRST_OFDM_RATE; |
| 196 | else if (rate >= IWL_FIRST_CCK_RATE && rate <= IWL_LAST_CCK_RATE) |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 197 | rate_flags |= RATE_MCS_CCK_MSK; |
Johannes Berg | 0b5b3ff | 2011-06-22 06:33:43 -0700 | [diff] [blame] | 198 | |
| 199 | tx_beacon_cmd->tx.rate_n_flags = |
| 200 | iwl_hw_set_rate_n_flags(rate, rate_flags); |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 201 | |
Johannes Berg | 8a98d49 | 2011-04-29 09:48:14 -0700 | [diff] [blame] | 202 | /* Submit command */ |
Johannes Berg | 4ce7cc2 | 2011-05-13 11:57:40 -0700 | [diff] [blame] | 203 | cmd.len[0] = sizeof(*tx_beacon_cmd); |
Johannes Berg | 3fa5073 | 2011-05-04 07:50:38 -0700 | [diff] [blame] | 204 | cmd.data[0] = tx_beacon_cmd; |
Johannes Berg | 4ce7cc2 | 2011-05-13 11:57:40 -0700 | [diff] [blame] | 205 | cmd.dataflags[0] = IWL_HCMD_DFL_NOCOPY; |
| 206 | cmd.len[1] = frame_size; |
| 207 | cmd.data[1] = priv->beacon_skb->data; |
| 208 | cmd.dataflags[1] = IWL_HCMD_DFL_NOCOPY; |
Johannes Berg | 2295c66 | 2010-10-23 09:15:41 -0700 | [diff] [blame] | 209 | |
Johannes Berg | 4ce7cc2 | 2011-05-13 11:57:40 -0700 | [diff] [blame] | 210 | return iwl_send_cmd_sync(priv, &cmd); |
Samuel Ortiz | a8e74e27 | 2009-01-23 13:45:14 -0800 | [diff] [blame] | 211 | } |
| 212 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 213 | static void iwl_bg_beacon_update(struct work_struct *work) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 214 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 215 | struct iwl_priv *priv = |
| 216 | container_of(work, struct iwl_priv, beacon_update); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 217 | struct sk_buff *beacon; |
| 218 | |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 219 | mutex_lock(&priv->mutex); |
| 220 | if (!priv->beacon_ctx) { |
| 221 | IWL_ERR(priv, "updating beacon w/o beacon context!\n"); |
| 222 | goto out; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 223 | } |
| 224 | |
Johannes Berg | 60744f6 | 2010-08-23 10:46:50 +0200 | [diff] [blame] | 225 | if (priv->beacon_ctx->vif->type != NL80211_IFTYPE_AP) { |
| 226 | /* |
| 227 | * The ucode will send beacon notifications even in |
| 228 | * IBSS mode, but we don't want to process them. But |
| 229 | * we need to defer the type check to here due to |
| 230 | * requiring locking around the beacon_ctx access. |
| 231 | */ |
| 232 | goto out; |
| 233 | } |
| 234 | |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 235 | /* Pull updated AP beacon from mac80211. will fail if not in AP mode */ |
| 236 | beacon = ieee80211_beacon_get(priv->hw, priv->beacon_ctx->vif); |
| 237 | if (!beacon) { |
Johannes Berg | 7783454 | 2010-10-04 05:50:36 -0700 | [diff] [blame] | 238 | IWL_ERR(priv, "update beacon failed -- keeping old\n"); |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 239 | goto out; |
| 240 | } |
| 241 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 242 | /* new beacon skb is allocated every time; dispose previous.*/ |
Johannes Berg | 7783454 | 2010-10-04 05:50:36 -0700 | [diff] [blame] | 243 | dev_kfree_skb(priv->beacon_skb); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 244 | |
Johannes Berg | 12e934d | 2010-10-04 05:50:06 -0700 | [diff] [blame] | 245 | priv->beacon_skb = beacon; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 246 | |
Johannes Berg | 2295c66 | 2010-10-23 09:15:41 -0700 | [diff] [blame] | 247 | iwlagn_send_beacon_cmd(priv); |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 248 | out: |
| 249 | mutex_unlock(&priv->mutex); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 250 | } |
| 251 | |
Wey-Yi Guy | fbba941 | 2010-08-23 07:57:10 -0700 | [diff] [blame] | 252 | static void iwl_bg_bt_runtime_config(struct work_struct *work) |
| 253 | { |
| 254 | struct iwl_priv *priv = |
| 255 | container_of(work, struct iwl_priv, bt_runtime_config); |
| 256 | |
| 257 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 258 | return; |
| 259 | |
| 260 | /* dont send host command if rf-kill is on */ |
| 261 | if (!iwl_is_ready_rf(priv)) |
| 262 | return; |
| 263 | priv->cfg->ops->hcmd->send_bt_config(priv); |
| 264 | } |
| 265 | |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 266 | static void iwl_bg_bt_full_concurrency(struct work_struct *work) |
| 267 | { |
| 268 | struct iwl_priv *priv = |
| 269 | container_of(work, struct iwl_priv, bt_full_concurrency); |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 270 | struct iwl_rxon_context *ctx; |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 271 | |
Stanislaw Gruszka | dc1a406 | 2011-03-31 17:36:27 +0200 | [diff] [blame] | 272 | mutex_lock(&priv->mutex); |
| 273 | |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 274 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
Stanislaw Gruszka | dc1a406 | 2011-03-31 17:36:27 +0200 | [diff] [blame] | 275 | goto out; |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 276 | |
| 277 | /* dont send host command if rf-kill is on */ |
| 278 | if (!iwl_is_ready_rf(priv)) |
Stanislaw Gruszka | dc1a406 | 2011-03-31 17:36:27 +0200 | [diff] [blame] | 279 | goto out; |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 280 | |
| 281 | IWL_DEBUG_INFO(priv, "BT coex in %s mode\n", |
| 282 | priv->bt_full_concurrent ? |
| 283 | "full concurrency" : "3-wire"); |
| 284 | |
| 285 | /* |
| 286 | * LQ & RXON updated cmds must be sent before BT Config cmd |
| 287 | * to avoid 3-wire collisions |
| 288 | */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 289 | for_each_context(priv, ctx) { |
| 290 | if (priv->cfg->ops->hcmd->set_rxon_chain) |
| 291 | priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx); |
Wey-Yi Guy | 805a3b8 | 2011-06-03 07:54:16 -0700 | [diff] [blame] | 292 | iwlagn_commit_rxon(priv, ctx); |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 293 | } |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 294 | |
| 295 | priv->cfg->ops->hcmd->send_bt_config(priv); |
Stanislaw Gruszka | dc1a406 | 2011-03-31 17:36:27 +0200 | [diff] [blame] | 296 | out: |
| 297 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 298 | } |
| 299 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 300 | /** |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 301 | * iwl_bg_statistics_periodic - Timer callback to queue statistics |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 302 | * |
| 303 | * This callback is provided in order to send a statistics request. |
| 304 | * |
| 305 | * This timer function is continually reset to execute within |
| 306 | * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION |
| 307 | * was received. We need to ensure we receive the statistics in order |
| 308 | * to update the temperature used for calibrating the TXPOWER. |
| 309 | */ |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 310 | static void iwl_bg_statistics_periodic(unsigned long data) |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 311 | { |
| 312 | struct iwl_priv *priv = (struct iwl_priv *)data; |
| 313 | |
| 314 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 315 | return; |
| 316 | |
Mohamed Abbas | 61780ee | 2008-10-29 14:05:49 -0700 | [diff] [blame] | 317 | /* dont send host command if rf-kill is on */ |
| 318 | if (!iwl_is_ready_rf(priv)) |
| 319 | return; |
| 320 | |
Wey-Yi Guy | ef8d552 | 2009-11-13 11:56:28 -0800 | [diff] [blame] | 321 | iwl_send_statistics_request(priv, CMD_ASYNC, false); |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 322 | } |
| 323 | |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 324 | |
| 325 | static void iwl_print_cont_event_trace(struct iwl_priv *priv, u32 base, |
| 326 | u32 start_idx, u32 num_events, |
| 327 | u32 mode) |
| 328 | { |
| 329 | u32 i; |
| 330 | u32 ptr; /* SRAM byte address of log data */ |
| 331 | u32 ev, time, data; /* event log data */ |
| 332 | unsigned long reg_flags; |
| 333 | |
| 334 | if (mode == 0) |
| 335 | ptr = base + (4 * sizeof(u32)) + (start_idx * 2 * sizeof(u32)); |
| 336 | else |
| 337 | ptr = base + (4 * sizeof(u32)) + (start_idx * 3 * sizeof(u32)); |
| 338 | |
| 339 | /* Make sure device is powered up for SRAM reads */ |
| 340 | spin_lock_irqsave(&priv->reg_lock, reg_flags); |
| 341 | if (iwl_grab_nic_access(priv)) { |
| 342 | spin_unlock_irqrestore(&priv->reg_lock, reg_flags); |
| 343 | return; |
| 344 | } |
| 345 | |
| 346 | /* Set starting address; reads will auto-increment */ |
Johannes Berg | 02a7fa0 | 2011-04-05 09:42:12 -0700 | [diff] [blame] | 347 | iwl_write32(priv, HBUS_TARG_MEM_RADDR, ptr); |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 348 | rmb(); |
| 349 | |
| 350 | /* |
| 351 | * "time" is actually "data" for mode 0 (no timestamp). |
| 352 | * place event id # at far right for easier visual parsing. |
| 353 | */ |
| 354 | for (i = 0; i < num_events; i++) { |
Johannes Berg | 02a7fa0 | 2011-04-05 09:42:12 -0700 | [diff] [blame] | 355 | ev = iwl_read32(priv, HBUS_TARG_MEM_RDAT); |
| 356 | time = iwl_read32(priv, HBUS_TARG_MEM_RDAT); |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 357 | if (mode == 0) { |
| 358 | trace_iwlwifi_dev_ucode_cont_event(priv, |
| 359 | 0, time, ev); |
| 360 | } else { |
Johannes Berg | 02a7fa0 | 2011-04-05 09:42:12 -0700 | [diff] [blame] | 361 | data = iwl_read32(priv, HBUS_TARG_MEM_RDAT); |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 362 | trace_iwlwifi_dev_ucode_cont_event(priv, |
| 363 | time, data, ev); |
| 364 | } |
| 365 | } |
| 366 | /* Allow device to power down */ |
| 367 | iwl_release_nic_access(priv); |
| 368 | spin_unlock_irqrestore(&priv->reg_lock, reg_flags); |
| 369 | } |
| 370 | |
Johannes Berg | 875295f | 2010-01-22 14:22:55 -0800 | [diff] [blame] | 371 | static void iwl_continuous_event_trace(struct iwl_priv *priv) |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 372 | { |
| 373 | u32 capacity; /* event log capacity in # entries */ |
| 374 | u32 base; /* SRAM byte address of event log header */ |
| 375 | u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */ |
| 376 | u32 num_wraps; /* # times uCode wrapped to top of log */ |
| 377 | u32 next_entry; /* index of next entry to be written by uCode */ |
| 378 | |
Johannes Berg | d7d5783 | 2011-04-05 09:42:04 -0700 | [diff] [blame] | 379 | base = priv->device_pointers.error_event_table; |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 380 | if (priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) { |
| 381 | capacity = iwl_read_targ_mem(priv, base); |
| 382 | num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32))); |
| 383 | mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32))); |
| 384 | next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32))); |
| 385 | } else |
| 386 | return; |
| 387 | |
| 388 | if (num_wraps == priv->event_log.num_wraps) { |
| 389 | iwl_print_cont_event_trace(priv, |
| 390 | base, priv->event_log.next_entry, |
| 391 | next_entry - priv->event_log.next_entry, |
| 392 | mode); |
| 393 | priv->event_log.non_wraps_count++; |
| 394 | } else { |
| 395 | if ((num_wraps - priv->event_log.num_wraps) > 1) |
| 396 | priv->event_log.wraps_more_count++; |
| 397 | else |
| 398 | priv->event_log.wraps_once_count++; |
| 399 | trace_iwlwifi_dev_ucode_wrap_event(priv, |
| 400 | num_wraps - priv->event_log.num_wraps, |
| 401 | next_entry, priv->event_log.next_entry); |
| 402 | if (next_entry < priv->event_log.next_entry) { |
| 403 | iwl_print_cont_event_trace(priv, base, |
| 404 | priv->event_log.next_entry, |
| 405 | capacity - priv->event_log.next_entry, |
| 406 | mode); |
| 407 | |
| 408 | iwl_print_cont_event_trace(priv, base, 0, |
| 409 | next_entry, mode); |
| 410 | } else { |
| 411 | iwl_print_cont_event_trace(priv, base, |
| 412 | next_entry, capacity - next_entry, |
| 413 | mode); |
| 414 | |
| 415 | iwl_print_cont_event_trace(priv, base, 0, |
| 416 | next_entry, mode); |
| 417 | } |
| 418 | } |
| 419 | priv->event_log.num_wraps = num_wraps; |
| 420 | priv->event_log.next_entry = next_entry; |
| 421 | } |
| 422 | |
| 423 | /** |
| 424 | * iwl_bg_ucode_trace - Timer callback to log ucode event |
| 425 | * |
| 426 | * The timer is continually set to execute every |
| 427 | * UCODE_TRACE_PERIOD milliseconds after the last timer expired |
| 428 | * this function is to perform continuous uCode event logging operation |
| 429 | * if enabled |
| 430 | */ |
| 431 | static void iwl_bg_ucode_trace(unsigned long data) |
| 432 | { |
| 433 | struct iwl_priv *priv = (struct iwl_priv *)data; |
| 434 | |
| 435 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 436 | return; |
| 437 | |
| 438 | if (priv->event_log.ucode_trace) { |
| 439 | iwl_continuous_event_trace(priv); |
| 440 | /* Reschedule the timer to occur in UCODE_TRACE_PERIOD */ |
| 441 | mod_timer(&priv->ucode_trace, |
| 442 | jiffies + msecs_to_jiffies(UCODE_TRACE_PERIOD)); |
| 443 | } |
| 444 | } |
| 445 | |
Wey-Yi Guy | 6555063 | 2010-06-24 13:18:35 -0700 | [diff] [blame] | 446 | static void iwl_bg_tx_flush(struct work_struct *work) |
| 447 | { |
| 448 | struct iwl_priv *priv = |
| 449 | container_of(work, struct iwl_priv, tx_flush); |
| 450 | |
| 451 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 452 | return; |
| 453 | |
| 454 | /* do nothing if rf-kill is on */ |
| 455 | if (!iwl_is_ready_rf(priv)) |
| 456 | return; |
| 457 | |
Wey-Yi Guy | c68744f | 2011-06-18 08:03:18 -0700 | [diff] [blame] | 458 | IWL_DEBUG_INFO(priv, "device request: flush all tx frames\n"); |
| 459 | iwlagn_dev_txfifo_flush(priv, IWL_DROP_ALL); |
Wey-Yi Guy | 6555063 | 2010-06-24 13:18:35 -0700 | [diff] [blame] | 460 | } |
| 461 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 462 | /** |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 463 | * iwl_rx_handle - Main entry function for receiving responses from uCode |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 464 | * |
| 465 | * Uses the priv->rx_handlers callback function array to invoke |
| 466 | * the appropriate handlers, including command responses, |
| 467 | * frame-received notifications, and other notifications. |
| 468 | */ |
Johannes Berg | f945f10 | 2011-01-04 16:21:59 -0800 | [diff] [blame] | 469 | static void iwl_rx_handle(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 470 | { |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 471 | struct iwl_rx_mem_buffer *rxb; |
Tomas Winkler | db11d63 | 2008-05-05 10:22:33 +0800 | [diff] [blame] | 472 | struct iwl_rx_packet *pkt; |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 473 | struct iwl_rx_queue *rxq = &priv->rxq; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 474 | u32 r, i; |
| 475 | int reclaim; |
| 476 | unsigned long flags; |
Mohamed Abbas | 5c0eef9 | 2007-11-29 11:10:14 +0800 | [diff] [blame] | 477 | u8 fill_rx = 0; |
Mohamed Abbas | d68ab68 | 2008-02-07 13:16:33 -0800 | [diff] [blame] | 478 | u32 count = 8; |
Mohamed Abbas | 4752c93 | 2009-05-22 11:01:51 -0700 | [diff] [blame] | 479 | int total_empty; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 480 | |
Cahill, Ben M | 6440adb | 2007-11-29 11:09:55 +0800 | [diff] [blame] | 481 | /* uCode's read index (stored in shared DRAM) indicates the last Rx |
| 482 | * buffer that the driver may process (last buffer filled by ucode). */ |
Winkler, Tomas | 8d86422 | 2008-11-07 09:58:39 -0800 | [diff] [blame] | 483 | r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 484 | i = rxq->read; |
| 485 | |
| 486 | /* Rx interrupt, but nothing sent from uCode */ |
| 487 | if (i == r) |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 488 | IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 489 | |
Mohamed Abbas | 4752c93 | 2009-05-22 11:01:51 -0700 | [diff] [blame] | 490 | /* calculate total frames need to be restock after handling RX */ |
Zhu Yi | 7300515 | 2009-10-23 13:42:32 -0700 | [diff] [blame] | 491 | total_empty = r - rxq->write_actual; |
Mohamed Abbas | 4752c93 | 2009-05-22 11:01:51 -0700 | [diff] [blame] | 492 | if (total_empty < 0) |
| 493 | total_empty += RX_QUEUE_SIZE; |
| 494 | |
| 495 | if (total_empty > (RX_QUEUE_SIZE / 2)) |
Mohamed Abbas | 5c0eef9 | 2007-11-29 11:10:14 +0800 | [diff] [blame] | 496 | fill_rx = 1; |
| 497 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 498 | while (i != r) { |
Johannes Berg | f4989d9 | 2010-05-28 04:08:30 -0700 | [diff] [blame] | 499 | int len; |
| 500 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 501 | rxb = rxq->queue[i]; |
| 502 | |
Ben Cahill | 9fbab51 | 2007-11-29 11:09:47 +0800 | [diff] [blame] | 503 | /* 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] | 504 | * then a bug has been introduced in the queue refilling |
| 505 | * routines -- catch it here */ |
Johannes Berg | 3e41ace | 2011-04-18 09:12:37 -0700 | [diff] [blame] | 506 | if (WARN_ON(rxb == NULL)) { |
| 507 | i = (i + 1) & RX_QUEUE_MASK; |
| 508 | continue; |
| 509 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 510 | |
| 511 | rxq->queue[i] = NULL; |
| 512 | |
Emmanuel Grumbach | 795414d | 2011-06-18 08:12:57 -0700 | [diff] [blame] | 513 | dma_unmap_page(priv->bus.dev, rxb->page_dma, |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 514 | PAGE_SIZE << priv->hw_params.rx_page_order, |
Emmanuel Grumbach | 795414d | 2011-06-18 08:12:57 -0700 | [diff] [blame] | 515 | DMA_FROM_DEVICE); |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 516 | pkt = rxb_addr(rxb); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 517 | |
Johannes Berg | f4989d9 | 2010-05-28 04:08:30 -0700 | [diff] [blame] | 518 | len = le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK; |
| 519 | len += sizeof(u32); /* account for status word */ |
| 520 | trace_iwlwifi_dev_rx(priv, pkt, len); |
Johannes Berg | be1a71a | 2009-10-02 13:44:02 -0700 | [diff] [blame] | 521 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 522 | /* Reclaim a command buffer only if this packet is a response |
| 523 | * to a (driver-originated) command. |
| 524 | * If the packet (e.g. Rx frame) originated from uCode, |
| 525 | * there is no command buffer to reclaim. |
| 526 | * Ucode should set SEQ_RX_FRAME bit if ucode-originated, |
| 527 | * but apparently a few don't get set; catch them here. */ |
| 528 | reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) && |
| 529 | (pkt->hdr.cmd != REPLY_RX_PHY_CMD) && |
Tomas Winkler | 857485c | 2008-03-21 13:53:44 -0700 | [diff] [blame] | 530 | (pkt->hdr.cmd != REPLY_RX) && |
Daniel Halperin | 7dddaf1 | 2008-10-23 23:48:58 -0700 | [diff] [blame] | 531 | (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) && |
Zhu Yi | cfe0170 | 2007-09-27 11:27:31 +0800 | [diff] [blame] | 532 | (pkt->hdr.cmd != REPLY_COMPRESSED_BA) && |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 533 | (pkt->hdr.cmd != STATISTICS_NOTIFICATION) && |
| 534 | (pkt->hdr.cmd != REPLY_TX); |
| 535 | |
Johannes Berg | 7194207c | 2011-01-04 16:22:00 -0800 | [diff] [blame] | 536 | /* |
| 537 | * Do the notification wait before RX handlers so |
| 538 | * even if the RX handler consumes the RXB we have |
| 539 | * access to it in the notification wait entry. |
| 540 | */ |
| 541 | if (!list_empty(&priv->_agn.notif_waits)) { |
| 542 | struct iwl_notification_wait *w; |
| 543 | |
| 544 | spin_lock(&priv->_agn.notif_wait_lock); |
| 545 | list_for_each_entry(w, &priv->_agn.notif_waits, list) { |
| 546 | if (w->cmd == pkt->hdr.cmd) { |
| 547 | w->triggered = true; |
| 548 | if (w->fn) |
Johannes Berg | 09f18af | 2011-04-13 03:14:47 -0700 | [diff] [blame] | 549 | w->fn(priv, pkt, w->fn_data); |
Johannes Berg | 7194207c | 2011-01-04 16:22:00 -0800 | [diff] [blame] | 550 | } |
| 551 | } |
| 552 | spin_unlock(&priv->_agn.notif_wait_lock); |
| 553 | |
| 554 | wake_up_all(&priv->_agn.notif_waitq); |
| 555 | } |
Cindy H. Kao | 4613e72 | 2011-05-06 10:40:15 -0700 | [diff] [blame] | 556 | if (priv->pre_rx_handler) |
| 557 | priv->pre_rx_handler(priv, rxb); |
Johannes Berg | 7194207c | 2011-01-04 16:22:00 -0800 | [diff] [blame] | 558 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 559 | /* Based on type of command response or notification, |
| 560 | * handle those that need handling via function in |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 561 | * rx_handlers table. See iwl_setup_rx_handlers() */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 562 | if (priv->rx_handlers[pkt->hdr.cmd]) { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 563 | 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] | 564 | i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd); |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 565 | priv->isr_stats.rx_handlers[pkt->hdr.cmd]++; |
Zhu Yi | 29b1b26 | 2009-10-23 13:42:25 -0700 | [diff] [blame] | 566 | priv->rx_handlers[pkt->hdr.cmd] (priv, rxb); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 567 | } else { |
| 568 | /* No handling needed */ |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 569 | IWL_DEBUG_RX(priv, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 570 | "r %d i %d No handler needed for %s, 0x%02x\n", |
| 571 | r, i, get_cmd_string(pkt->hdr.cmd), |
| 572 | pkt->hdr.cmd); |
| 573 | } |
| 574 | |
Zhu Yi | 29b1b26 | 2009-10-23 13:42:25 -0700 | [diff] [blame] | 575 | /* |
| 576 | * XXX: After here, we should always check rxb->page |
| 577 | * against NULL before touching it or its virtual |
| 578 | * memory (pkt). Because some rx_handler might have |
| 579 | * already taken or freed the pages. |
| 580 | */ |
| 581 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 582 | if (reclaim) { |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 583 | /* Invoke any callbacks, transfer the buffer to caller, |
| 584 | * and fire off the (possibly) blocking iwl_send_cmd() |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 585 | * as we reclaim the driver command queue */ |
Zhu Yi | 29b1b26 | 2009-10-23 13:42:25 -0700 | [diff] [blame] | 586 | if (rxb->page) |
Tomas Winkler | 17b8892 | 2008-05-29 16:35:12 +0800 | [diff] [blame] | 587 | iwl_tx_cmd_complete(priv, rxb); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 588 | else |
Winkler, Tomas | 39aadf8 | 2008-12-19 10:37:32 +0800 | [diff] [blame] | 589 | IWL_WARN(priv, "Claim null rxb?\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 590 | } |
| 591 | |
Zhu Yi | 7300515 | 2009-10-23 13:42:32 -0700 | [diff] [blame] | 592 | /* Reuse the page if possible. For notification packets and |
| 593 | * SKBs that fail to Rx correctly, add them back into the |
| 594 | * rx_free list for reuse later. */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 595 | spin_lock_irqsave(&rxq->lock, flags); |
Zhu Yi | 7300515 | 2009-10-23 13:42:32 -0700 | [diff] [blame] | 596 | if (rxb->page != NULL) { |
Emmanuel Grumbach | 795414d | 2011-06-18 08:12:57 -0700 | [diff] [blame] | 597 | rxb->page_dma = dma_map_page(priv->bus.dev, rxb->page, |
Zhu Yi | 7300515 | 2009-10-23 13:42:32 -0700 | [diff] [blame] | 598 | 0, PAGE_SIZE << priv->hw_params.rx_page_order, |
Emmanuel Grumbach | 795414d | 2011-06-18 08:12:57 -0700 | [diff] [blame] | 599 | DMA_FROM_DEVICE); |
Zhu Yi | 7300515 | 2009-10-23 13:42:32 -0700 | [diff] [blame] | 600 | list_add_tail(&rxb->list, &rxq->rx_free); |
| 601 | rxq->free_count++; |
| 602 | } else |
| 603 | list_add_tail(&rxb->list, &rxq->rx_used); |
| 604 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 605 | spin_unlock_irqrestore(&rxq->lock, flags); |
Zhu Yi | 7300515 | 2009-10-23 13:42:32 -0700 | [diff] [blame] | 606 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 607 | i = (i + 1) & RX_QUEUE_MASK; |
Mohamed Abbas | 5c0eef9 | 2007-11-29 11:10:14 +0800 | [diff] [blame] | 608 | /* If there are a lot of unused frames, |
| 609 | * restock the Rx queue so ucode wont assert. */ |
| 610 | if (fill_rx) { |
| 611 | count++; |
| 612 | if (count >= 8) { |
Zhu Yi | 7300515 | 2009-10-23 13:42:32 -0700 | [diff] [blame] | 613 | rxq->read = i; |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 614 | iwlagn_rx_replenish_now(priv); |
Mohamed Abbas | 5c0eef9 | 2007-11-29 11:10:14 +0800 | [diff] [blame] | 615 | count = 0; |
| 616 | } |
| 617 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 618 | } |
| 619 | |
| 620 | /* Backtrack one entry */ |
Zhu Yi | 7300515 | 2009-10-23 13:42:32 -0700 | [diff] [blame] | 621 | rxq->read = i; |
Mohamed Abbas | 4752c93 | 2009-05-22 11:01:51 -0700 | [diff] [blame] | 622 | if (fill_rx) |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 623 | iwlagn_rx_replenish_now(priv); |
Mohamed Abbas | 4752c93 | 2009-05-22 11:01:51 -0700 | [diff] [blame] | 624 | else |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 625 | iwlagn_rx_queue_restock(priv); |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 626 | } |
Tomas Winkler | a55360e | 2008-05-05 10:22:28 +0800 | [diff] [blame] | 627 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 628 | /* tasklet for iwlagn interrupt */ |
| 629 | static void iwl_irq_tasklet(struct iwl_priv *priv) |
| 630 | { |
| 631 | u32 inta = 0; |
| 632 | u32 handled = 0; |
| 633 | unsigned long flags; |
Ben Cahill | 8756990 | 2009-11-06 14:53:01 -0800 | [diff] [blame] | 634 | u32 i; |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 635 | #ifdef CONFIG_IWLWIFI_DEBUG |
| 636 | u32 inta_mask; |
| 637 | #endif |
| 638 | |
| 639 | spin_lock_irqsave(&priv->lock, flags); |
| 640 | |
| 641 | /* Ack/clear/reset pending uCode interrupts. |
| 642 | * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS, |
| 643 | */ |
Shanyu Zhao | 48a6be6 | 2010-03-16 10:22:26 -0700 | [diff] [blame] | 644 | /* There is a hardware bug in the interrupt mask function that some |
| 645 | * interrupts (i.e. CSR_INT_BIT_SCD) can still be generated even if |
| 646 | * they are disabled in the CSR_INT_MASK register. Furthermore the |
| 647 | * ICT interrupt handling mechanism has another bug that might cause |
| 648 | * these unmasked interrupts fail to be detected. We workaround the |
| 649 | * hardware bugs here by ACKing all the possible interrupts so that |
| 650 | * interrupt coalescing can still be achieved. |
| 651 | */ |
David S. Miller | 4a35ecf | 2010-04-06 23:53:30 -0700 | [diff] [blame] | 652 | iwl_write32(priv, CSR_INT, priv->_agn.inta | ~priv->inta_mask); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 653 | |
Johannes Berg | a4c8b2a | 2010-01-21 06:25:54 -0800 | [diff] [blame] | 654 | inta = priv->_agn.inta; |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 655 | |
| 656 | #ifdef CONFIG_IWLWIFI_DEBUG |
Reinette Chatre | 3d816c7 | 2009-08-07 15:41:37 -0700 | [diff] [blame] | 657 | if (iwl_get_debug_level(priv) & IWL_DL_ISR) { |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 658 | /* just for debug */ |
| 659 | inta_mask = iwl_read32(priv, CSR_INT_MASK); |
| 660 | IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x\n ", |
| 661 | inta, inta_mask); |
| 662 | } |
| 663 | #endif |
Zhu Yi | 2f30122 | 2009-10-09 17:19:45 +0800 | [diff] [blame] | 664 | |
| 665 | spin_unlock_irqrestore(&priv->lock, flags); |
| 666 | |
Johannes Berg | a4c8b2a | 2010-01-21 06:25:54 -0800 | [diff] [blame] | 667 | /* saved interrupt in inta variable now we can reset priv->_agn.inta */ |
| 668 | priv->_agn.inta = 0; |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 669 | |
| 670 | /* Now service all interrupt bits discovered above. */ |
| 671 | if (inta & CSR_INT_BIT_HW_ERR) { |
Reinette Chatre | 58dba72 | 2009-07-17 09:30:25 -0700 | [diff] [blame] | 672 | IWL_ERR(priv, "Hardware error detected. Restarting.\n"); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 673 | |
| 674 | /* Tell the device to stop sending interrupts */ |
| 675 | iwl_disable_interrupts(priv); |
| 676 | |
| 677 | priv->isr_stats.hw++; |
| 678 | iwl_irq_handle_error(priv); |
| 679 | |
| 680 | handled |= CSR_INT_BIT_HW_ERR; |
| 681 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 682 | return; |
| 683 | } |
| 684 | |
| 685 | #ifdef CONFIG_IWLWIFI_DEBUG |
Reinette Chatre | 3d816c7 | 2009-08-07 15:41:37 -0700 | [diff] [blame] | 686 | if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) { |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 687 | /* NIC fires this, but we don't use it, redundant with WAKEUP */ |
| 688 | if (inta & CSR_INT_BIT_SCD) { |
| 689 | IWL_DEBUG_ISR(priv, "Scheduler finished to transmit " |
| 690 | "the frame/frames.\n"); |
| 691 | priv->isr_stats.sch++; |
| 692 | } |
| 693 | |
| 694 | /* Alive notification via Rx interrupt will do the real work */ |
| 695 | if (inta & CSR_INT_BIT_ALIVE) { |
| 696 | IWL_DEBUG_ISR(priv, "Alive interrupt\n"); |
| 697 | priv->isr_stats.alive++; |
| 698 | } |
| 699 | } |
| 700 | #endif |
| 701 | /* Safely ignore these bits for debug checks below */ |
| 702 | inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE); |
| 703 | |
| 704 | /* HW RF KILL switch toggled */ |
| 705 | if (inta & CSR_INT_BIT_RF_KILL) { |
| 706 | int hw_rf_kill = 0; |
| 707 | if (!(iwl_read32(priv, CSR_GP_CNTRL) & |
| 708 | CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)) |
| 709 | hw_rf_kill = 1; |
| 710 | |
Reinette Chatre | 4c423a2 | 2009-07-17 09:30:26 -0700 | [diff] [blame] | 711 | IWL_WARN(priv, "RF_KILL bit toggled to %s.\n", |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 712 | hw_rf_kill ? "disable radio" : "enable radio"); |
| 713 | |
| 714 | priv->isr_stats.rfkill++; |
| 715 | |
| 716 | /* driver only loads ucode once setting the interface up. |
| 717 | * the driver allows loading the ucode even if the radio |
| 718 | * is killed. Hence update the killswitch state here. The |
| 719 | * rfkill handler will care about restarting if needed. |
| 720 | */ |
| 721 | if (!test_bit(STATUS_ALIVE, &priv->status)) { |
| 722 | if (hw_rf_kill) |
| 723 | set_bit(STATUS_RF_KILL_HW, &priv->status); |
| 724 | else |
| 725 | clear_bit(STATUS_RF_KILL_HW, &priv->status); |
Johannes Berg | a60e77e | 2009-06-04 18:26:06 +0200 | [diff] [blame] | 726 | wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 727 | } |
| 728 | |
| 729 | handled |= CSR_INT_BIT_RF_KILL; |
| 730 | } |
| 731 | |
| 732 | /* Chip got too hot and stopped itself */ |
| 733 | if (inta & CSR_INT_BIT_CT_KILL) { |
| 734 | IWL_ERR(priv, "Microcode CT kill error detected.\n"); |
| 735 | priv->isr_stats.ctkill++; |
| 736 | handled |= CSR_INT_BIT_CT_KILL; |
| 737 | } |
| 738 | |
| 739 | /* Error detected by uCode */ |
| 740 | if (inta & CSR_INT_BIT_SW_ERR) { |
| 741 | IWL_ERR(priv, "Microcode SW error detected. " |
| 742 | " Restarting 0x%X.\n", inta); |
| 743 | priv->isr_stats.sw++; |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 744 | iwl_irq_handle_error(priv); |
| 745 | handled |= CSR_INT_BIT_SW_ERR; |
| 746 | } |
| 747 | |
| 748 | /* uCode wakes up after power-down sleep */ |
| 749 | if (inta & CSR_INT_BIT_WAKEUP) { |
| 750 | IWL_DEBUG_ISR(priv, "Wakeup interrupt\n"); |
| 751 | iwl_rx_queue_update_write_ptr(priv, &priv->rxq); |
Ben Cahill | 8756990 | 2009-11-06 14:53:01 -0800 | [diff] [blame] | 752 | for (i = 0; i < priv->hw_params.max_txq_num; i++) |
| 753 | iwl_txq_update_write_ptr(priv, &priv->txq[i]); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 754 | |
| 755 | priv->isr_stats.wakeup++; |
| 756 | |
| 757 | handled |= CSR_INT_BIT_WAKEUP; |
| 758 | } |
| 759 | |
| 760 | /* All uCode command responses, including Tx command responses, |
| 761 | * Rx "responses" (frame-received notification), and other |
| 762 | * notifications from uCode come through here*/ |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 763 | if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX | |
| 764 | CSR_INT_BIT_RX_PERIODIC)) { |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 765 | IWL_DEBUG_ISR(priv, "Rx interrupt\n"); |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 766 | if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) { |
| 767 | handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX); |
| 768 | iwl_write32(priv, CSR_FH_INT_STATUS, |
Wey-Yi Guy | f7d046f | 2011-03-22 08:05:37 -0700 | [diff] [blame] | 769 | CSR_FH_INT_RX_MASK); |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 770 | } |
| 771 | if (inta & CSR_INT_BIT_RX_PERIODIC) { |
| 772 | handled |= CSR_INT_BIT_RX_PERIODIC; |
| 773 | iwl_write32(priv, CSR_INT, CSR_INT_BIT_RX_PERIODIC); |
| 774 | } |
| 775 | /* Sending RX interrupt require many steps to be done in the |
| 776 | * the device: |
| 777 | * 1- write interrupt to current index in ICT table. |
| 778 | * 2- dma RX frame. |
| 779 | * 3- update RX shared data to indicate last write index. |
| 780 | * 4- send interrupt. |
| 781 | * This could lead to RX race, driver could receive RX interrupt |
Ben Cahill | 74ba67e | 2009-11-20 12:04:53 -0800 | [diff] [blame] | 782 | * but the shared data changes does not reflect this; |
| 783 | * periodic interrupt will detect any dangling Rx activity. |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 784 | */ |
Ben Cahill | 74ba67e | 2009-11-20 12:04:53 -0800 | [diff] [blame] | 785 | |
| 786 | /* Disable periodic interrupt; we use it as just a one-shot. */ |
| 787 | iwl_write8(priv, CSR_INT_PERIODIC_REG, |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 788 | CSR_INT_PERIODIC_DIS); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 789 | iwl_rx_handle(priv); |
Ben Cahill | 74ba67e | 2009-11-20 12:04:53 -0800 | [diff] [blame] | 790 | |
| 791 | /* |
| 792 | * Enable periodic interrupt in 8 msec only if we received |
| 793 | * real RX interrupt (instead of just periodic int), to catch |
| 794 | * any dangling Rx interrupt. If it was just the periodic |
| 795 | * interrupt, there was no dangling Rx activity, and no need |
| 796 | * to extend the periodic interrupt; one-shot is enough. |
| 797 | */ |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 798 | if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) |
Ben Cahill | 74ba67e | 2009-11-20 12:04:53 -0800 | [diff] [blame] | 799 | iwl_write8(priv, CSR_INT_PERIODIC_REG, |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 800 | CSR_INT_PERIODIC_ENA); |
| 801 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 802 | priv->isr_stats.rx++; |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 803 | } |
| 804 | |
Ben Cahill | c72cd19 | 2009-10-30 14:36:08 -0700 | [diff] [blame] | 805 | /* This "Tx" DMA channel is used only for loading uCode */ |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 806 | if (inta & CSR_INT_BIT_FH_TX) { |
Wey-Yi Guy | f7d046f | 2011-03-22 08:05:37 -0700 | [diff] [blame] | 807 | iwl_write32(priv, CSR_FH_INT_STATUS, CSR_FH_INT_TX_MASK); |
Ben Cahill | c72cd19 | 2009-10-30 14:36:08 -0700 | [diff] [blame] | 808 | IWL_DEBUG_ISR(priv, "uCode load interrupt\n"); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 809 | priv->isr_stats.tx++; |
| 810 | handled |= CSR_INT_BIT_FH_TX; |
Ben Cahill | c72cd19 | 2009-10-30 14:36:08 -0700 | [diff] [blame] | 811 | /* Wake up uCode load routine, now that load is complete */ |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 812 | priv->ucode_write_complete = 1; |
| 813 | wake_up_interruptible(&priv->wait_command_queue); |
| 814 | } |
| 815 | |
| 816 | if (inta & ~handled) { |
| 817 | IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled); |
| 818 | priv->isr_stats.unhandled++; |
| 819 | } |
| 820 | |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 821 | if (inta & ~(priv->inta_mask)) { |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 822 | IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n", |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 823 | inta & ~priv->inta_mask); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 824 | } |
| 825 | |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 826 | /* Re-enable all interrupts */ |
Justin P. Mattock | 62e45c1 | 2010-12-30 15:07:56 -0800 | [diff] [blame] | 827 | /* only Re-enable if disabled by irq */ |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 828 | if (test_bit(STATUS_INT_ENABLED, &priv->status)) |
| 829 | iwl_enable_interrupts(priv); |
Don Fry | 3dd823e | 2011-02-06 09:29:45 -0800 | [diff] [blame] | 830 | /* Re-enable RF_KILL if it occurred */ |
| 831 | else if (handled & CSR_INT_BIT_RF_KILL) |
| 832 | iwl_enable_rfkill_int(priv); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 833 | } |
| 834 | |
Emmanuel Grumbach | 7d47618 | 2010-05-23 00:14:08 -0700 | [diff] [blame] | 835 | /***************************************************************************** |
| 836 | * |
| 837 | * sysfs attributes |
| 838 | * |
| 839 | *****************************************************************************/ |
| 840 | |
| 841 | #ifdef CONFIG_IWLWIFI_DEBUG |
| 842 | |
| 843 | /* |
| 844 | * The following adds a new attribute to the sysfs representation |
| 845 | * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/) |
| 846 | * used for controlling the debug level. |
| 847 | * |
| 848 | * See the level definitions in iwl for details. |
| 849 | * |
| 850 | * The debug_level being managed using sysfs below is a per device debug |
| 851 | * level that is used instead of the global debug level if it (the per |
| 852 | * device debug level) is set. |
| 853 | */ |
| 854 | static ssize_t show_debug_level(struct device *d, |
| 855 | struct device_attribute *attr, char *buf) |
| 856 | { |
| 857 | struct iwl_priv *priv = dev_get_drvdata(d); |
| 858 | return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv)); |
| 859 | } |
| 860 | static ssize_t store_debug_level(struct device *d, |
| 861 | struct device_attribute *attr, |
| 862 | const char *buf, size_t count) |
| 863 | { |
| 864 | struct iwl_priv *priv = dev_get_drvdata(d); |
| 865 | unsigned long val; |
| 866 | int ret; |
| 867 | |
| 868 | ret = strict_strtoul(buf, 0, &val); |
| 869 | if (ret) |
| 870 | IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf); |
| 871 | else { |
| 872 | priv->debug_level = val; |
| 873 | if (iwl_alloc_traffic_mem(priv)) |
| 874 | IWL_ERR(priv, |
| 875 | "Not enough memory to generate traffic log\n"); |
| 876 | } |
| 877 | return strnlen(buf, count); |
| 878 | } |
| 879 | |
| 880 | static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO, |
| 881 | show_debug_level, store_debug_level); |
| 882 | |
| 883 | |
| 884 | #endif /* CONFIG_IWLWIFI_DEBUG */ |
| 885 | |
| 886 | |
| 887 | static ssize_t show_temperature(struct device *d, |
| 888 | struct device_attribute *attr, char *buf) |
| 889 | { |
| 890 | struct iwl_priv *priv = dev_get_drvdata(d); |
| 891 | |
| 892 | if (!iwl_is_alive(priv)) |
| 893 | return -EAGAIN; |
| 894 | |
| 895 | return sprintf(buf, "%d\n", priv->temperature); |
| 896 | } |
| 897 | |
| 898 | static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL); |
| 899 | |
| 900 | static ssize_t show_tx_power(struct device *d, |
| 901 | struct device_attribute *attr, char *buf) |
| 902 | { |
| 903 | struct iwl_priv *priv = dev_get_drvdata(d); |
| 904 | |
| 905 | if (!iwl_is_ready_rf(priv)) |
| 906 | return sprintf(buf, "off\n"); |
| 907 | else |
| 908 | return sprintf(buf, "%d\n", priv->tx_power_user_lmt); |
| 909 | } |
| 910 | |
| 911 | static ssize_t store_tx_power(struct device *d, |
| 912 | struct device_attribute *attr, |
| 913 | const char *buf, size_t count) |
| 914 | { |
| 915 | struct iwl_priv *priv = dev_get_drvdata(d); |
| 916 | unsigned long val; |
| 917 | int ret; |
| 918 | |
| 919 | ret = strict_strtoul(buf, 10, &val); |
| 920 | if (ret) |
| 921 | IWL_INFO(priv, "%s is not in decimal form.\n", buf); |
| 922 | else { |
| 923 | ret = iwl_set_tx_power(priv, val, false); |
| 924 | if (ret) |
| 925 | IWL_ERR(priv, "failed setting tx power (0x%d).\n", |
| 926 | ret); |
| 927 | else |
| 928 | ret = count; |
| 929 | } |
| 930 | return ret; |
| 931 | } |
| 932 | |
| 933 | static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power); |
| 934 | |
Emmanuel Grumbach | 7d47618 | 2010-05-23 00:14:08 -0700 | [diff] [blame] | 935 | static struct attribute *iwl_sysfs_entries[] = { |
| 936 | &dev_attr_temperature.attr, |
| 937 | &dev_attr_tx_power.attr, |
Emmanuel Grumbach | 7d47618 | 2010-05-23 00:14:08 -0700 | [diff] [blame] | 938 | #ifdef CONFIG_IWLWIFI_DEBUG |
| 939 | &dev_attr_debug_level.attr, |
| 940 | #endif |
| 941 | NULL |
| 942 | }; |
| 943 | |
| 944 | static struct attribute_group iwl_attribute_group = { |
| 945 | .name = NULL, /* put in device directory */ |
| 946 | .attrs = iwl_sysfs_entries, |
| 947 | }; |
| 948 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 949 | /****************************************************************************** |
| 950 | * |
| 951 | * uCode download functions |
| 952 | * |
| 953 | ******************************************************************************/ |
| 954 | |
Emmanuel Grumbach | 3599d39 | 2011-05-31 08:52:10 +0300 | [diff] [blame] | 955 | static void iwl_free_fw_desc(struct iwl_priv *priv, struct fw_desc *desc) |
Johannes Berg | dbf28e21 | 2011-04-16 08:29:24 -0700 | [diff] [blame] | 956 | { |
| 957 | if (desc->v_addr) |
Emmanuel Grumbach | 3599d39 | 2011-05-31 08:52:10 +0300 | [diff] [blame] | 958 | dma_free_coherent(priv->bus.dev, desc->len, |
Johannes Berg | dbf28e21 | 2011-04-16 08:29:24 -0700 | [diff] [blame] | 959 | desc->v_addr, desc->p_addr); |
| 960 | desc->v_addr = NULL; |
| 961 | desc->len = 0; |
| 962 | } |
| 963 | |
Emmanuel Grumbach | 3599d39 | 2011-05-31 08:52:10 +0300 | [diff] [blame] | 964 | static void iwl_free_fw_img(struct iwl_priv *priv, struct fw_img *img) |
Johannes Berg | dbf28e21 | 2011-04-16 08:29:24 -0700 | [diff] [blame] | 965 | { |
Emmanuel Grumbach | 3599d39 | 2011-05-31 08:52:10 +0300 | [diff] [blame] | 966 | iwl_free_fw_desc(priv, &img->code); |
| 967 | iwl_free_fw_desc(priv, &img->data); |
Johannes Berg | dbf28e21 | 2011-04-16 08:29:24 -0700 | [diff] [blame] | 968 | } |
| 969 | |
Emmanuel Grumbach | 3599d39 | 2011-05-31 08:52:10 +0300 | [diff] [blame] | 970 | static void iwl_dealloc_ucode(struct iwl_priv *priv) |
| 971 | { |
| 972 | iwl_free_fw_img(priv, &priv->ucode_rt); |
| 973 | iwl_free_fw_img(priv, &priv->ucode_init); |
| 974 | } |
| 975 | |
| 976 | static int iwl_alloc_fw_desc(struct iwl_priv *priv, struct fw_desc *desc, |
Johannes Berg | dbf28e21 | 2011-04-16 08:29:24 -0700 | [diff] [blame] | 977 | const void *data, size_t len) |
| 978 | { |
| 979 | if (!len) { |
| 980 | desc->v_addr = NULL; |
| 981 | return -EINVAL; |
| 982 | } |
| 983 | |
Emmanuel Grumbach | 3599d39 | 2011-05-31 08:52:10 +0300 | [diff] [blame] | 984 | desc->v_addr = dma_alloc_coherent(priv->bus.dev, len, |
Johannes Berg | dbf28e21 | 2011-04-16 08:29:24 -0700 | [diff] [blame] | 985 | &desc->p_addr, GFP_KERNEL); |
| 986 | if (!desc->v_addr) |
| 987 | return -ENOMEM; |
Emmanuel Grumbach | 3599d39 | 2011-05-31 08:52:10 +0300 | [diff] [blame] | 988 | |
Johannes Berg | dbf28e21 | 2011-04-16 08:29:24 -0700 | [diff] [blame] | 989 | desc->len = len; |
| 990 | memcpy(desc->v_addr, data, len); |
| 991 | return 0; |
| 992 | } |
| 993 | |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 994 | struct iwlagn_ucode_capabilities { |
| 995 | u32 max_probe_length; |
Wey-Yi Guy | 6a822d0 | 2010-07-13 17:13:15 -0700 | [diff] [blame] | 996 | u32 standard_phy_calibration_size; |
Johannes Berg | 3997ff3 | 2011-04-05 09:42:02 -0700 | [diff] [blame] | 997 | u32 flags; |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 998 | }; |
Ron Rindjunsky | edcdf8b | 2008-05-15 13:53:55 +0800 | [diff] [blame] | 999 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1000 | static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1001 | static int iwl_mac_setup_register(struct iwl_priv *priv, |
| 1002 | struct iwlagn_ucode_capabilities *capa); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1003 | |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1004 | #define UCODE_EXPERIMENTAL_INDEX 100 |
| 1005 | #define UCODE_EXPERIMENTAL_TAG "exp" |
| 1006 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1007 | 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] | 1008 | { |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 1009 | const char *name_pre = priv->cfg->fw_name_pre; |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1010 | char tag[8]; |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1011 | |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1012 | if (first) { |
| 1013 | #ifdef CONFIG_IWLWIFI_DEBUG_EXPERIMENTAL_UCODE |
| 1014 | priv->fw_index = UCODE_EXPERIMENTAL_INDEX; |
| 1015 | strcpy(tag, UCODE_EXPERIMENTAL_TAG); |
| 1016 | } else if (priv->fw_index == UCODE_EXPERIMENTAL_INDEX) { |
| 1017 | #endif |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1018 | priv->fw_index = priv->cfg->ucode_api_max; |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1019 | sprintf(tag, "%d", priv->fw_index); |
| 1020 | } else { |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1021 | priv->fw_index--; |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1022 | sprintf(tag, "%d", priv->fw_index); |
| 1023 | } |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1024 | |
| 1025 | if (priv->fw_index < priv->cfg->ucode_api_min) { |
| 1026 | IWL_ERR(priv, "no suitable firmware found!\n"); |
| 1027 | return -ENOENT; |
| 1028 | } |
| 1029 | |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1030 | sprintf(priv->firmware_name, "%s%s%s", name_pre, tag, ".ucode"); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1031 | |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1032 | IWL_DEBUG_INFO(priv, "attempting to load firmware %s'%s'\n", |
| 1033 | (priv->fw_index == UCODE_EXPERIMENTAL_INDEX) |
| 1034 | ? "EXPERIMENTAL " : "", |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1035 | priv->firmware_name); |
| 1036 | |
| 1037 | return request_firmware_nowait(THIS_MODULE, 1, priv->firmware_name, |
Emmanuel Grumbach | 3599d39 | 2011-05-31 08:52:10 +0300 | [diff] [blame] | 1038 | priv->bus.dev, |
| 1039 | GFP_KERNEL, priv, iwl_ucode_callback); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1040 | } |
| 1041 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1042 | struct iwlagn_firmware_pieces { |
Johannes Berg | 1fc3527 | 2011-04-05 09:41:57 -0700 | [diff] [blame] | 1043 | const void *inst, *data, *init, *init_data; |
| 1044 | size_t inst_size, data_size, init_size, init_data_size; |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1045 | |
| 1046 | u32 build; |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1047 | |
| 1048 | u32 init_evtlog_ptr, init_evtlog_size, init_errlog_ptr; |
| 1049 | u32 inst_evtlog_ptr, inst_evtlog_size, inst_errlog_ptr; |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1050 | }; |
| 1051 | |
| 1052 | static int iwlagn_load_legacy_firmware(struct iwl_priv *priv, |
| 1053 | const struct firmware *ucode_raw, |
| 1054 | struct iwlagn_firmware_pieces *pieces) |
| 1055 | { |
| 1056 | struct iwl_ucode_header *ucode = (void *)ucode_raw->data; |
| 1057 | u32 api_ver, hdr_size; |
| 1058 | const u8 *src; |
| 1059 | |
| 1060 | priv->ucode_ver = le32_to_cpu(ucode->ver); |
| 1061 | api_ver = IWL_UCODE_API(priv->ucode_ver); |
| 1062 | |
| 1063 | switch (api_ver) { |
| 1064 | default: |
Wey-Yi Guy | f7d046f | 2011-03-22 08:05:37 -0700 | [diff] [blame] | 1065 | hdr_size = 28; |
| 1066 | if (ucode_raw->size < hdr_size) { |
| 1067 | IWL_ERR(priv, "File size too small!\n"); |
| 1068 | return -EINVAL; |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1069 | } |
Wey-Yi Guy | f7d046f | 2011-03-22 08:05:37 -0700 | [diff] [blame] | 1070 | pieces->build = le32_to_cpu(ucode->u.v2.build); |
| 1071 | pieces->inst_size = le32_to_cpu(ucode->u.v2.inst_size); |
| 1072 | pieces->data_size = le32_to_cpu(ucode->u.v2.data_size); |
| 1073 | pieces->init_size = le32_to_cpu(ucode->u.v2.init_size); |
| 1074 | pieces->init_data_size = le32_to_cpu(ucode->u.v2.init_data_size); |
Wey-Yi Guy | f7d046f | 2011-03-22 08:05:37 -0700 | [diff] [blame] | 1075 | src = ucode->u.v2.data; |
| 1076 | break; |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1077 | case 0: |
| 1078 | case 1: |
| 1079 | case 2: |
| 1080 | hdr_size = 24; |
| 1081 | if (ucode_raw->size < hdr_size) { |
| 1082 | IWL_ERR(priv, "File size too small!\n"); |
| 1083 | return -EINVAL; |
| 1084 | } |
| 1085 | pieces->build = 0; |
| 1086 | pieces->inst_size = le32_to_cpu(ucode->u.v1.inst_size); |
| 1087 | pieces->data_size = le32_to_cpu(ucode->u.v1.data_size); |
| 1088 | pieces->init_size = le32_to_cpu(ucode->u.v1.init_size); |
| 1089 | pieces->init_data_size = le32_to_cpu(ucode->u.v1.init_data_size); |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1090 | src = ucode->u.v1.data; |
| 1091 | break; |
| 1092 | } |
| 1093 | |
| 1094 | /* Verify size of file vs. image size info in file's header */ |
| 1095 | if (ucode_raw->size != hdr_size + pieces->inst_size + |
| 1096 | pieces->data_size + pieces->init_size + |
Johannes Berg | 1fc3527 | 2011-04-05 09:41:57 -0700 | [diff] [blame] | 1097 | pieces->init_data_size) { |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1098 | |
| 1099 | IWL_ERR(priv, |
| 1100 | "uCode file size %d does not match expected size\n", |
| 1101 | (int)ucode_raw->size); |
| 1102 | return -EINVAL; |
| 1103 | } |
| 1104 | |
| 1105 | pieces->inst = src; |
| 1106 | src += pieces->inst_size; |
| 1107 | pieces->data = src; |
| 1108 | src += pieces->data_size; |
| 1109 | pieces->init = src; |
| 1110 | src += pieces->init_size; |
| 1111 | pieces->init_data = src; |
| 1112 | src += pieces->init_data_size; |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1113 | |
| 1114 | return 0; |
| 1115 | } |
| 1116 | |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1117 | static int iwlagn_wanted_ucode_alternative = 1; |
| 1118 | |
| 1119 | static int iwlagn_load_firmware(struct iwl_priv *priv, |
| 1120 | const struct firmware *ucode_raw, |
| 1121 | struct iwlagn_firmware_pieces *pieces, |
| 1122 | struct iwlagn_ucode_capabilities *capa) |
| 1123 | { |
| 1124 | struct iwl_tlv_ucode_header *ucode = (void *)ucode_raw->data; |
| 1125 | struct iwl_ucode_tlv *tlv; |
| 1126 | size_t len = ucode_raw->size; |
| 1127 | const u8 *data; |
| 1128 | int wanted_alternative = iwlagn_wanted_ucode_alternative, tmp; |
| 1129 | u64 alternatives; |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1130 | u32 tlv_len; |
| 1131 | enum iwl_ucode_tlv_type tlv_type; |
| 1132 | const u8 *tlv_data; |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1133 | |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1134 | if (len < sizeof(*ucode)) { |
| 1135 | IWL_ERR(priv, "uCode has invalid length: %zd\n", len); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1136 | return -EINVAL; |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1137 | } |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1138 | |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1139 | if (ucode->magic != cpu_to_le32(IWL_TLV_UCODE_MAGIC)) { |
| 1140 | IWL_ERR(priv, "invalid uCode magic: 0X%x\n", |
| 1141 | le32_to_cpu(ucode->magic)); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1142 | return -EINVAL; |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1143 | } |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1144 | |
| 1145 | /* |
| 1146 | * Check which alternatives are present, and "downgrade" |
| 1147 | * when the chosen alternative is not present, warning |
| 1148 | * the user when that happens. Some files may not have |
| 1149 | * any alternatives, so don't warn in that case. |
| 1150 | */ |
| 1151 | alternatives = le64_to_cpu(ucode->alternatives); |
| 1152 | tmp = wanted_alternative; |
| 1153 | if (wanted_alternative > 63) |
| 1154 | wanted_alternative = 63; |
| 1155 | while (wanted_alternative && !(alternatives & BIT(wanted_alternative))) |
| 1156 | wanted_alternative--; |
| 1157 | if (wanted_alternative && wanted_alternative != tmp) |
| 1158 | IWL_WARN(priv, |
| 1159 | "uCode alternative %d not available, choosing %d\n", |
| 1160 | tmp, wanted_alternative); |
| 1161 | |
| 1162 | priv->ucode_ver = le32_to_cpu(ucode->ver); |
| 1163 | pieces->build = le32_to_cpu(ucode->build); |
| 1164 | data = ucode->data; |
| 1165 | |
| 1166 | len -= sizeof(*ucode); |
| 1167 | |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 1168 | while (len >= sizeof(*tlv)) { |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1169 | u16 tlv_alt; |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1170 | |
| 1171 | len -= sizeof(*tlv); |
| 1172 | tlv = (void *)data; |
| 1173 | |
| 1174 | tlv_len = le32_to_cpu(tlv->length); |
| 1175 | tlv_type = le16_to_cpu(tlv->type); |
| 1176 | tlv_alt = le16_to_cpu(tlv->alternative); |
| 1177 | tlv_data = tlv->data; |
| 1178 | |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1179 | if (len < tlv_len) { |
| 1180 | IWL_ERR(priv, "invalid TLV len: %zd/%u\n", |
| 1181 | len, tlv_len); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1182 | return -EINVAL; |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1183 | } |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1184 | len -= ALIGN(tlv_len, 4); |
| 1185 | data += sizeof(*tlv) + ALIGN(tlv_len, 4); |
| 1186 | |
| 1187 | /* |
| 1188 | * Alternative 0 is always valid. |
| 1189 | * |
| 1190 | * Skip alternative TLVs that are not selected. |
| 1191 | */ |
| 1192 | if (tlv_alt != 0 && tlv_alt != wanted_alternative) |
| 1193 | continue; |
| 1194 | |
| 1195 | switch (tlv_type) { |
| 1196 | case IWL_UCODE_TLV_INST: |
| 1197 | pieces->inst = tlv_data; |
| 1198 | pieces->inst_size = tlv_len; |
| 1199 | break; |
| 1200 | case IWL_UCODE_TLV_DATA: |
| 1201 | pieces->data = tlv_data; |
| 1202 | pieces->data_size = tlv_len; |
| 1203 | break; |
| 1204 | case IWL_UCODE_TLV_INIT: |
| 1205 | pieces->init = tlv_data; |
| 1206 | pieces->init_size = tlv_len; |
| 1207 | break; |
| 1208 | case IWL_UCODE_TLV_INIT_DATA: |
| 1209 | pieces->init_data = tlv_data; |
| 1210 | pieces->init_data_size = tlv_len; |
| 1211 | break; |
| 1212 | case IWL_UCODE_TLV_BOOT: |
Johannes Berg | 1fc3527 | 2011-04-05 09:41:57 -0700 | [diff] [blame] | 1213 | IWL_ERR(priv, "Found unexpected BOOT ucode\n"); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1214 | break; |
| 1215 | case IWL_UCODE_TLV_PROBE_MAX_LEN: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 1216 | if (tlv_len != sizeof(u32)) |
| 1217 | goto invalid_tlv_len; |
| 1218 | capa->max_probe_length = |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1219 | le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1220 | break; |
Johannes Berg | ece9c4e | 2010-08-23 10:46:49 +0200 | [diff] [blame] | 1221 | case IWL_UCODE_TLV_PAN: |
| 1222 | if (tlv_len) |
| 1223 | goto invalid_tlv_len; |
Johannes Berg | 3997ff3 | 2011-04-05 09:42:02 -0700 | [diff] [blame] | 1224 | capa->flags |= IWL_UCODE_TLV_FLAGS_PAN; |
| 1225 | break; |
| 1226 | case IWL_UCODE_TLV_FLAGS: |
| 1227 | /* must be at least one u32 */ |
| 1228 | if (tlv_len < sizeof(u32)) |
| 1229 | goto invalid_tlv_len; |
| 1230 | /* and a proper number of u32s */ |
| 1231 | if (tlv_len % sizeof(u32)) |
| 1232 | goto invalid_tlv_len; |
| 1233 | /* |
| 1234 | * This driver only reads the first u32 as |
| 1235 | * right now no more features are defined, |
| 1236 | * if that changes then either the driver |
| 1237 | * will not work with the new firmware, or |
| 1238 | * it'll not take advantage of new features. |
| 1239 | */ |
| 1240 | capa->flags = le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | ece9c4e | 2010-08-23 10:46:49 +0200 | [diff] [blame] | 1241 | break; |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1242 | case IWL_UCODE_TLV_INIT_EVTLOG_PTR: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 1243 | if (tlv_len != sizeof(u32)) |
| 1244 | goto invalid_tlv_len; |
| 1245 | pieces->init_evtlog_ptr = |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1246 | le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1247 | break; |
| 1248 | case IWL_UCODE_TLV_INIT_EVTLOG_SIZE: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 1249 | if (tlv_len != sizeof(u32)) |
| 1250 | goto invalid_tlv_len; |
| 1251 | pieces->init_evtlog_size = |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1252 | le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1253 | break; |
| 1254 | case IWL_UCODE_TLV_INIT_ERRLOG_PTR: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 1255 | if (tlv_len != sizeof(u32)) |
| 1256 | goto invalid_tlv_len; |
| 1257 | pieces->init_errlog_ptr = |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1258 | le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1259 | break; |
| 1260 | case IWL_UCODE_TLV_RUNT_EVTLOG_PTR: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 1261 | if (tlv_len != sizeof(u32)) |
| 1262 | goto invalid_tlv_len; |
| 1263 | pieces->inst_evtlog_ptr = |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1264 | le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1265 | break; |
| 1266 | case IWL_UCODE_TLV_RUNT_EVTLOG_SIZE: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 1267 | if (tlv_len != sizeof(u32)) |
| 1268 | goto invalid_tlv_len; |
| 1269 | pieces->inst_evtlog_size = |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1270 | le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1271 | break; |
| 1272 | case IWL_UCODE_TLV_RUNT_ERRLOG_PTR: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 1273 | if (tlv_len != sizeof(u32)) |
| 1274 | goto invalid_tlv_len; |
| 1275 | pieces->inst_errlog_ptr = |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1276 | le32_to_cpup((__le32 *)tlv_data); |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1277 | break; |
Wey-Yi Guy | c8312fa | 2010-06-28 13:05:17 -0700 | [diff] [blame] | 1278 | case IWL_UCODE_TLV_ENHANCE_SENS_TBL: |
| 1279 | if (tlv_len) |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 1280 | goto invalid_tlv_len; |
| 1281 | priv->enhance_sensitivity_table = true; |
Wey-Yi Guy | c8312fa | 2010-06-28 13:05:17 -0700 | [diff] [blame] | 1282 | break; |
Wey-Yi Guy | 6a822d0 | 2010-07-13 17:13:15 -0700 | [diff] [blame] | 1283 | case IWL_UCODE_TLV_PHY_CALIBRATION_SIZE: |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 1284 | if (tlv_len != sizeof(u32)) |
| 1285 | goto invalid_tlv_len; |
| 1286 | capa->standard_phy_calibration_size = |
Wey-Yi Guy | 6a822d0 | 2010-07-13 17:13:15 -0700 | [diff] [blame] | 1287 | le32_to_cpup((__le32 *)tlv_data); |
| 1288 | break; |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1289 | default: |
Johannes Berg | 6fc3ba9 | 2011-04-04 06:16:29 -0700 | [diff] [blame] | 1290 | IWL_DEBUG_INFO(priv, "unknown TLV: %d\n", tlv_type); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1291 | break; |
| 1292 | } |
| 1293 | } |
| 1294 | |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1295 | if (len) { |
| 1296 | IWL_ERR(priv, "invalid TLV after parsing: %zd\n", len); |
| 1297 | iwl_print_hex_dump(priv, IWL_DL_FW, (u8 *)data, len); |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 1298 | return -EINVAL; |
Wey-Yi Guy | ad8d833 | 2010-06-22 14:31:45 -0700 | [diff] [blame] | 1299 | } |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1300 | |
Johannes Berg | 704da53 | 2010-07-14 09:34:50 -0700 | [diff] [blame] | 1301 | return 0; |
| 1302 | |
| 1303 | invalid_tlv_len: |
| 1304 | IWL_ERR(priv, "TLV %d has invalid size: %u\n", tlv_type, tlv_len); |
| 1305 | iwl_print_hex_dump(priv, IWL_DL_FW, tlv_data, tlv_len); |
| 1306 | |
| 1307 | return -EINVAL; |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1308 | } |
| 1309 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1310 | /** |
| 1311 | * iwl_ucode_callback - callback when firmware was loaded |
| 1312 | * |
| 1313 | * If loaded successfully, copies the firmware into buffers |
| 1314 | * for the card to fetch (via DMA). |
| 1315 | */ |
| 1316 | static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context) |
| 1317 | { |
| 1318 | struct iwl_priv *priv = context; |
| 1319 | struct iwl_ucode_header *ucode; |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1320 | int err; |
| 1321 | struct iwlagn_firmware_pieces pieces; |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 1322 | const unsigned int api_max = priv->cfg->ucode_api_max; |
| 1323 | const unsigned int api_min = priv->cfg->ucode_api_min; |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1324 | u32 api_ver; |
Johannes Berg | 3e4de76 | 2010-04-28 12:09:12 -0700 | [diff] [blame] | 1325 | char buildstr[25]; |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1326 | u32 build; |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1327 | struct iwlagn_ucode_capabilities ucode_capa = { |
| 1328 | .max_probe_length = 200, |
Wey-Yi Guy | 6a822d0 | 2010-07-13 17:13:15 -0700 | [diff] [blame] | 1329 | .standard_phy_calibration_size = |
Shanyu Zhao | 642454c | 2010-09-21 12:06:18 -0700 | [diff] [blame] | 1330 | IWL_DEFAULT_STANDARD_PHY_CALIBRATE_TBL_SIZE, |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1331 | }; |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1332 | |
| 1333 | memset(&pieces, 0, sizeof(pieces)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1334 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1335 | if (!ucode_raw) { |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1336 | if (priv->fw_index <= priv->cfg->ucode_api_max) |
| 1337 | IWL_ERR(priv, |
| 1338 | "request for firmware file '%s' failed.\n", |
| 1339 | priv->firmware_name); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1340 | goto try_again; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1341 | } |
| 1342 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1343 | IWL_DEBUG_INFO(priv, "Loaded firmware file '%s' (%zd bytes).\n", |
| 1344 | priv->firmware_name, ucode_raw->size); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1345 | |
Johannes Berg | 22adba2 | 2010-04-28 12:09:14 -0700 | [diff] [blame] | 1346 | /* Make sure that we got at least the API version number */ |
| 1347 | if (ucode_raw->size < 4) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 1348 | IWL_ERR(priv, "File size way too small!\n"); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1349 | goto try_again; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1350 | } |
| 1351 | |
| 1352 | /* Data from ucode file: header followed by uCode images */ |
Jay Sternberg | cc0f555 | 2009-07-17 09:30:16 -0700 | [diff] [blame] | 1353 | ucode = (struct iwl_ucode_header *)ucode_raw->data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1354 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1355 | if (ucode->ver) |
| 1356 | err = iwlagn_load_legacy_firmware(priv, ucode_raw, &pieces); |
| 1357 | else |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1358 | err = iwlagn_load_firmware(priv, ucode_raw, &pieces, |
| 1359 | &ucode_capa); |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1360 | |
| 1361 | if (err) |
| 1362 | goto try_again; |
| 1363 | |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 1364 | api_ver = IWL_UCODE_API(priv->ucode_ver); |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1365 | build = pieces.build; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1366 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1367 | /* |
| 1368 | * api_ver should match the api version forming part of the |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 1369 | * firmware filename ... but we don't check for that and only rely |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1370 | * on the API version read from firmware header from here on forward |
| 1371 | */ |
Wey-Yi Guy | 65cccfb | 2010-09-21 16:15:58 -0700 | [diff] [blame] | 1372 | /* no api version check required for experimental uCode */ |
| 1373 | if (priv->fw_index != UCODE_EXPERIMENTAL_INDEX) { |
| 1374 | if (api_ver < api_min || api_ver > api_max) { |
| 1375 | IWL_ERR(priv, |
| 1376 | "Driver unable to support your firmware API. " |
| 1377 | "Driver supports v%u, firmware is v%u.\n", |
| 1378 | api_max, api_ver); |
| 1379 | goto try_again; |
| 1380 | } |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1381 | |
Wey-Yi Guy | 65cccfb | 2010-09-21 16:15:58 -0700 | [diff] [blame] | 1382 | if (api_ver != api_max) |
| 1383 | IWL_ERR(priv, |
| 1384 | "Firmware has old API version. Expected v%u, " |
| 1385 | "got v%u. New firmware can be obtained " |
| 1386 | "from http://www.intellinuxwireless.org.\n", |
| 1387 | api_max, api_ver); |
| 1388 | } |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 1389 | |
Johannes Berg | 3e4de76 | 2010-04-28 12:09:12 -0700 | [diff] [blame] | 1390 | if (build) |
Jay Sternberg | 3939608 | 2010-08-12 10:24:07 -0700 | [diff] [blame] | 1391 | sprintf(buildstr, " build %u%s", build, |
| 1392 | (priv->fw_index == UCODE_EXPERIMENTAL_INDEX) |
| 1393 | ? " (EXP)" : ""); |
Johannes Berg | 3e4de76 | 2010-04-28 12:09:12 -0700 | [diff] [blame] | 1394 | else |
| 1395 | buildstr[0] = '\0'; |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 1396 | |
Johannes Berg | 3e4de76 | 2010-04-28 12:09:12 -0700 | [diff] [blame] | 1397 | IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u%s\n", |
Reinette Chatre | 5ebeb5a | 2009-10-30 14:36:04 -0700 | [diff] [blame] | 1398 | IWL_UCODE_MAJOR(priv->ucode_ver), |
| 1399 | IWL_UCODE_MINOR(priv->ucode_ver), |
| 1400 | IWL_UCODE_API(priv->ucode_ver), |
Johannes Berg | 3e4de76 | 2010-04-28 12:09:12 -0700 | [diff] [blame] | 1401 | IWL_UCODE_SERIAL(priv->ucode_ver), |
| 1402 | buildstr); |
Reinette Chatre | 5ebeb5a | 2009-10-30 14:36:04 -0700 | [diff] [blame] | 1403 | |
Johannes Berg | 3e4de76 | 2010-04-28 12:09:12 -0700 | [diff] [blame] | 1404 | snprintf(priv->hw->wiphy->fw_version, |
| 1405 | sizeof(priv->hw->wiphy->fw_version), |
| 1406 | "%u.%u.%u.%u%s", |
| 1407 | IWL_UCODE_MAJOR(priv->ucode_ver), |
| 1408 | IWL_UCODE_MINOR(priv->ucode_ver), |
| 1409 | IWL_UCODE_API(priv->ucode_ver), |
| 1410 | IWL_UCODE_SERIAL(priv->ucode_ver), |
| 1411 | buildstr); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1412 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1413 | /* |
| 1414 | * For any of the failures below (before allocating pci memory) |
| 1415 | * we will try to load a version with a smaller API -- maybe the |
| 1416 | * user just got a corrupted version of the latest API. |
| 1417 | */ |
| 1418 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1419 | IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n", |
| 1420 | priv->ucode_ver); |
| 1421 | IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %Zd\n", |
| 1422 | pieces.inst_size); |
| 1423 | IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %Zd\n", |
| 1424 | pieces.data_size); |
| 1425 | IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %Zd\n", |
| 1426 | pieces.init_size); |
| 1427 | IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %Zd\n", |
| 1428 | pieces.init_data_size); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1429 | |
| 1430 | /* Verify that uCode images will fit in card's SRAM */ |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1431 | if (pieces.inst_size > priv->hw_params.max_inst_size) { |
| 1432 | IWL_ERR(priv, "uCode instr len %Zd too large to fit in\n", |
| 1433 | pieces.inst_size); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1434 | goto try_again; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1435 | } |
| 1436 | |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1437 | if (pieces.data_size > priv->hw_params.max_data_size) { |
| 1438 | IWL_ERR(priv, "uCode data len %Zd too large to fit in\n", |
| 1439 | pieces.data_size); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1440 | goto try_again; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1441 | } |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1442 | |
| 1443 | if (pieces.init_size > priv->hw_params.max_inst_size) { |
| 1444 | IWL_ERR(priv, "uCode init instr len %Zd too large to fit in\n", |
| 1445 | pieces.init_size); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1446 | goto try_again; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1447 | } |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1448 | |
| 1449 | if (pieces.init_data_size > priv->hw_params.max_data_size) { |
| 1450 | IWL_ERR(priv, "uCode init data len %Zd too large to fit in\n", |
| 1451 | pieces.init_data_size); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1452 | goto try_again; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1453 | } |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1454 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1455 | /* Allocate ucode buffers for card's bus-master loading ... */ |
| 1456 | |
| 1457 | /* Runtime instructions and 2 copies of data: |
| 1458 | * 1) unmodified from disk |
| 1459 | * 2) backup cache for save/restore during power-downs */ |
Emmanuel Grumbach | 3599d39 | 2011-05-31 08:52:10 +0300 | [diff] [blame] | 1460 | if (iwl_alloc_fw_desc(priv, &priv->ucode_rt.code, |
Johannes Berg | dbf28e21 | 2011-04-16 08:29:24 -0700 | [diff] [blame] | 1461 | pieces.inst, pieces.inst_size)) |
| 1462 | goto err_pci_alloc; |
Emmanuel Grumbach | 3599d39 | 2011-05-31 08:52:10 +0300 | [diff] [blame] | 1463 | if (iwl_alloc_fw_desc(priv, &priv->ucode_rt.data, |
Johannes Berg | dbf28e21 | 2011-04-16 08:29:24 -0700 | [diff] [blame] | 1464 | pieces.data, pieces.data_size)) |
Zhu, Yi | 1f304e4 | 2009-01-23 13:45:22 -0800 | [diff] [blame] | 1465 | goto err_pci_alloc; |
| 1466 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1467 | /* Initialization instructions and data */ |
Johannes Berg | 0e9a44d | 2010-04-28 12:09:16 -0700 | [diff] [blame] | 1468 | if (pieces.init_size && pieces.init_data_size) { |
Emmanuel Grumbach | 3599d39 | 2011-05-31 08:52:10 +0300 | [diff] [blame] | 1469 | if (iwl_alloc_fw_desc(priv, &priv->ucode_init.code, |
Johannes Berg | dbf28e21 | 2011-04-16 08:29:24 -0700 | [diff] [blame] | 1470 | pieces.init, pieces.init_size)) |
| 1471 | goto err_pci_alloc; |
Emmanuel Grumbach | 3599d39 | 2011-05-31 08:52:10 +0300 | [diff] [blame] | 1472 | if (iwl_alloc_fw_desc(priv, &priv->ucode_init.data, |
Johannes Berg | dbf28e21 | 2011-04-16 08:29:24 -0700 | [diff] [blame] | 1473 | pieces.init_data, pieces.init_data_size)) |
Tomas Winkler | 90e759d | 2007-11-29 11:09:41 +0800 | [diff] [blame] | 1474 | goto err_pci_alloc; |
| 1475 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1476 | |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1477 | /* Now that we can no longer fail, copy information */ |
| 1478 | |
| 1479 | /* |
| 1480 | * The (size - 16) / 12 formula is based on the information recorded |
| 1481 | * for each event, which is of mode 1 (including timestamp) for all |
| 1482 | * new microcodes that include this information. |
| 1483 | */ |
| 1484 | priv->_agn.init_evtlog_ptr = pieces.init_evtlog_ptr; |
| 1485 | if (pieces.init_evtlog_size) |
| 1486 | priv->_agn.init_evtlog_size = (pieces.init_evtlog_size - 16)/12; |
| 1487 | else |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 1488 | priv->_agn.init_evtlog_size = |
| 1489 | priv->cfg->base_params->max_event_log_size; |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1490 | priv->_agn.init_errlog_ptr = pieces.init_errlog_ptr; |
| 1491 | priv->_agn.inst_evtlog_ptr = pieces.inst_evtlog_ptr; |
| 1492 | if (pieces.inst_evtlog_size) |
| 1493 | priv->_agn.inst_evtlog_size = (pieces.inst_evtlog_size - 16)/12; |
| 1494 | else |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 1495 | priv->_agn.inst_evtlog_size = |
| 1496 | priv->cfg->base_params->max_event_log_size; |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1497 | priv->_agn.inst_errlog_ptr = pieces.inst_errlog_ptr; |
| 1498 | |
Johannes Berg | d2690c0 | 2011-04-20 09:10:39 -0700 | [diff] [blame] | 1499 | priv->new_scan_threshold_behaviour = |
| 1500 | !!(ucode_capa.flags & IWL_UCODE_TLV_FLAGS_NEWSCAN); |
| 1501 | |
Wey-Yi Guy | b2ea345 | 2011-06-07 08:53:14 -0700 | [diff] [blame] | 1502 | if ((priv->cfg->sku & EEPROM_SKU_CAP_IPAN_ENABLE) && |
| 1503 | (ucode_capa.flags & IWL_UCODE_TLV_FLAGS_PAN)) { |
Johannes Berg | ece9c4e | 2010-08-23 10:46:49 +0200 | [diff] [blame] | 1504 | priv->valid_contexts |= BIT(IWL_RXON_CTX_PAN); |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 1505 | priv->sta_key_max_num = STA_KEY_MAX_NUM_PAN; |
Johannes Berg | ece9c4e | 2010-08-23 10:46:49 +0200 | [diff] [blame] | 1506 | } else |
| 1507 | priv->sta_key_max_num = STA_KEY_MAX_NUM; |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 1508 | |
Johannes Berg | 17445b8 | 2011-04-05 09:42:05 -0700 | [diff] [blame] | 1509 | if (priv->valid_contexts != BIT(IWL_RXON_CTX_BSS)) |
| 1510 | priv->cmd_queue = IWL_IPAN_CMD_QUEUE_NUM; |
| 1511 | else |
| 1512 | priv->cmd_queue = IWL_DEFAULT_CMD_QUEUE_NUM; |
| 1513 | |
Wey-Yi Guy | 6a822d0 | 2010-07-13 17:13:15 -0700 | [diff] [blame] | 1514 | /* |
| 1515 | * figure out the offset of chain noise reset and gain commands |
| 1516 | * base on the size of standard phy calibration commands table size |
| 1517 | */ |
| 1518 | if (ucode_capa.standard_phy_calibration_size > |
| 1519 | IWL_MAX_PHY_CALIBRATE_TBL_SIZE) |
| 1520 | ucode_capa.standard_phy_calibration_size = |
| 1521 | IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE; |
| 1522 | |
| 1523 | priv->_agn.phy_calib_chain_noise_reset_cmd = |
| 1524 | ucode_capa.standard_phy_calibration_size; |
| 1525 | priv->_agn.phy_calib_chain_noise_gain_cmd = |
| 1526 | ucode_capa.standard_phy_calibration_size + 1; |
| 1527 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1528 | /************************************************** |
| 1529 | * This is still part of probe() in a sense... |
| 1530 | * |
| 1531 | * 9. Setup and register with mac80211 and debugfs |
| 1532 | **************************************************/ |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 1533 | err = iwl_mac_setup_register(priv, &ucode_capa); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1534 | if (err) |
| 1535 | goto out_unbind; |
| 1536 | |
| 1537 | err = iwl_dbgfs_register(priv, DRV_NAME); |
| 1538 | if (err) |
| 1539 | IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err); |
| 1540 | |
Emmanuel Grumbach | 3599d39 | 2011-05-31 08:52:10 +0300 | [diff] [blame] | 1541 | err = sysfs_create_group(&(priv->bus.dev->kobj), |
Emmanuel Grumbach | 7d47618 | 2010-05-23 00:14:08 -0700 | [diff] [blame] | 1542 | &iwl_attribute_group); |
| 1543 | if (err) { |
| 1544 | IWL_ERR(priv, "failed to create sysfs device attributes\n"); |
| 1545 | goto out_unbind; |
| 1546 | } |
| 1547 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1548 | /* We have our copies now, allow OS release its copies */ |
| 1549 | release_firmware(ucode_raw); |
Reinette Chatre | a15707d | 2010-05-10 15:08:11 -0700 | [diff] [blame] | 1550 | complete(&priv->_agn.firmware_loading_complete); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1551 | return; |
| 1552 | |
| 1553 | try_again: |
| 1554 | /* try next, if any */ |
| 1555 | if (iwl_request_firmware(priv, false)) |
| 1556 | goto out_unbind; |
| 1557 | release_firmware(ucode_raw); |
| 1558 | return; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1559 | |
| 1560 | err_pci_alloc: |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 1561 | IWL_ERR(priv, "failed to allocate pci memory\n"); |
Emmanuel Grumbach | 3599d39 | 2011-05-31 08:52:10 +0300 | [diff] [blame] | 1562 | iwl_dealloc_ucode(priv); |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 1563 | out_unbind: |
Reinette Chatre | a15707d | 2010-05-10 15:08:11 -0700 | [diff] [blame] | 1564 | complete(&priv->_agn.firmware_loading_complete); |
Emmanuel Grumbach | 3599d39 | 2011-05-31 08:52:10 +0300 | [diff] [blame] | 1565 | device_release_driver(priv->bus.dev); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1566 | release_firmware(ucode_raw); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1567 | } |
| 1568 | |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1569 | static const char *desc_lookup_text[] = { |
| 1570 | "OK", |
| 1571 | "FAIL", |
| 1572 | "BAD_PARAM", |
| 1573 | "BAD_CHECKSUM", |
| 1574 | "NMI_INTERRUPT_WDG", |
| 1575 | "SYSASSERT", |
| 1576 | "FATAL_ERROR", |
| 1577 | "BAD_COMMAND", |
| 1578 | "HW_ERROR_TUNE_LOCK", |
| 1579 | "HW_ERROR_TEMPERATURE", |
| 1580 | "ILLEGAL_CHAN_FREQ", |
| 1581 | "VCC_NOT_STABLE", |
| 1582 | "FH_ERROR", |
| 1583 | "NMI_INTERRUPT_HOST", |
| 1584 | "NMI_INTERRUPT_ACTION_PT", |
| 1585 | "NMI_INTERRUPT_UNKNOWN", |
| 1586 | "UCODE_VERSION_MISMATCH", |
| 1587 | "HW_ERROR_ABS_LOCK", |
| 1588 | "HW_ERROR_CAL_LOCK_FAIL", |
| 1589 | "NMI_INTERRUPT_INST_ACTION_PT", |
| 1590 | "NMI_INTERRUPT_DATA_ACTION_PT", |
| 1591 | "NMI_TRM_HW_ER", |
| 1592 | "NMI_INTERRUPT_TRM", |
| 1593 | "NMI_INTERRUPT_BREAK_POINT" |
| 1594 | "DEBUG_0", |
| 1595 | "DEBUG_1", |
| 1596 | "DEBUG_2", |
| 1597 | "DEBUG_3", |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1598 | }; |
| 1599 | |
Jay Sternberg | 4b58645 | 2010-07-02 15:49:10 -0700 | [diff] [blame] | 1600 | static struct { char *name; u8 num; } advanced_lookup[] = { |
| 1601 | { "NMI_INTERRUPT_WDG", 0x34 }, |
| 1602 | { "SYSASSERT", 0x35 }, |
| 1603 | { "UCODE_VERSION_MISMATCH", 0x37 }, |
| 1604 | { "BAD_COMMAND", 0x38 }, |
| 1605 | { "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C }, |
| 1606 | { "FATAL_ERROR", 0x3D }, |
| 1607 | { "NMI_TRM_HW_ERR", 0x46 }, |
| 1608 | { "NMI_INTERRUPT_TRM", 0x4C }, |
| 1609 | { "NMI_INTERRUPT_BREAK_POINT", 0x54 }, |
| 1610 | { "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C }, |
| 1611 | { "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64 }, |
| 1612 | { "NMI_INTERRUPT_HOST", 0x66 }, |
| 1613 | { "NMI_INTERRUPT_ACTION_PT", 0x7C }, |
| 1614 | { "NMI_INTERRUPT_UNKNOWN", 0x84 }, |
| 1615 | { "NMI_INTERRUPT_INST_ACTION_PT", 0x86 }, |
| 1616 | { "ADVANCED_SYSASSERT", 0 }, |
| 1617 | }; |
| 1618 | |
| 1619 | static const char *desc_lookup(u32 num) |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1620 | { |
Jay Sternberg | 4b58645 | 2010-07-02 15:49:10 -0700 | [diff] [blame] | 1621 | int i; |
| 1622 | int max = ARRAY_SIZE(desc_lookup_text); |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1623 | |
Jay Sternberg | 4b58645 | 2010-07-02 15:49:10 -0700 | [diff] [blame] | 1624 | if (num < max) |
| 1625 | return desc_lookup_text[num]; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1626 | |
Jay Sternberg | 4b58645 | 2010-07-02 15:49:10 -0700 | [diff] [blame] | 1627 | max = ARRAY_SIZE(advanced_lookup) - 1; |
| 1628 | for (i = 0; i < max; i++) { |
| 1629 | if (advanced_lookup[i].num == num) |
Justin P. Mattock | 6eab04a | 2011-04-08 19:49:08 -0700 | [diff] [blame] | 1630 | break; |
Jay Sternberg | 4b58645 | 2010-07-02 15:49:10 -0700 | [diff] [blame] | 1631 | } |
| 1632 | return advanced_lookup[i].name; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1633 | } |
| 1634 | |
| 1635 | #define ERROR_START_OFFSET (1 * sizeof(u32)) |
| 1636 | #define ERROR_ELEM_SIZE (7 * sizeof(u32)) |
| 1637 | |
| 1638 | void iwl_dump_nic_error_log(struct iwl_priv *priv) |
| 1639 | { |
Wey-Yi Guy | 5065054 | 2011-05-04 16:56:52 -0700 | [diff] [blame] | 1640 | u32 base; |
Johannes Berg | e46f653 | 2011-04-13 03:14:43 -0700 | [diff] [blame] | 1641 | struct iwl_error_event_table table; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1642 | |
Johannes Berg | d7d5783 | 2011-04-05 09:42:04 -0700 | [diff] [blame] | 1643 | base = priv->device_pointers.error_event_table; |
Johannes Berg | 872907b | 2011-06-06 09:41:15 -0700 | [diff] [blame] | 1644 | if (priv->ucode_type == IWL_UCODE_INIT) { |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1645 | if (!base) |
| 1646 | base = priv->_agn.init_errlog_ptr; |
| 1647 | } else { |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1648 | if (!base) |
| 1649 | base = priv->_agn.inst_errlog_ptr; |
| 1650 | } |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1651 | |
| 1652 | if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) { |
Wey-Yi Guy | 212fb57 | 2009-12-02 12:53:00 -0800 | [diff] [blame] | 1653 | IWL_ERR(priv, |
| 1654 | "Not valid error log pointer 0x%08X for %s uCode\n", |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 1655 | base, |
Johannes Berg | 872907b | 2011-06-06 09:41:15 -0700 | [diff] [blame] | 1656 | (priv->ucode_type == IWL_UCODE_INIT) |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 1657 | ? "Init" : "RT"); |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1658 | return; |
| 1659 | } |
| 1660 | |
Johannes Berg | e46f653 | 2011-04-13 03:14:43 -0700 | [diff] [blame] | 1661 | iwl_read_targ_mem_words(priv, base, &table, sizeof(table)); |
| 1662 | |
Wey-Yi Guy | 5065054 | 2011-05-04 16:56:52 -0700 | [diff] [blame] | 1663 | if (ERROR_START_OFFSET <= table.valid * ERROR_ELEM_SIZE) { |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1664 | IWL_ERR(priv, "Start IWL Error Log Dump:\n"); |
| 1665 | IWL_ERR(priv, "Status: 0x%08lX, count: %d\n", |
Wey-Yi Guy | 5065054 | 2011-05-04 16:56:52 -0700 | [diff] [blame] | 1666 | priv->status, table.valid); |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1667 | } |
| 1668 | |
Wey-Yi Guy | 5065054 | 2011-05-04 16:56:52 -0700 | [diff] [blame] | 1669 | priv->isr_stats.err_code = table.error_id; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1670 | |
Wey-Yi Guy | 5065054 | 2011-05-04 16:56:52 -0700 | [diff] [blame] | 1671 | trace_iwlwifi_dev_ucode_error(priv, table.error_id, table.tsf_low, |
| 1672 | table.data1, table.data2, table.line, |
| 1673 | table.blink1, table.blink2, table.ilink1, |
| 1674 | table.ilink2, table.bcon_time, table.gp1, |
| 1675 | table.gp2, table.gp3, table.ucode_ver, |
| 1676 | table.hw_ver, table.brd_ver); |
| 1677 | IWL_ERR(priv, "0x%08X | %-28s\n", table.error_id, |
| 1678 | desc_lookup(table.error_id)); |
| 1679 | IWL_ERR(priv, "0x%08X | uPc\n", table.pc); |
| 1680 | IWL_ERR(priv, "0x%08X | branchlink1\n", table.blink1); |
| 1681 | IWL_ERR(priv, "0x%08X | branchlink2\n", table.blink2); |
| 1682 | IWL_ERR(priv, "0x%08X | interruptlink1\n", table.ilink1); |
| 1683 | IWL_ERR(priv, "0x%08X | interruptlink2\n", table.ilink2); |
| 1684 | IWL_ERR(priv, "0x%08X | data1\n", table.data1); |
| 1685 | IWL_ERR(priv, "0x%08X | data2\n", table.data2); |
| 1686 | IWL_ERR(priv, "0x%08X | line\n", table.line); |
| 1687 | IWL_ERR(priv, "0x%08X | beacon time\n", table.bcon_time); |
| 1688 | IWL_ERR(priv, "0x%08X | tsf low\n", table.tsf_low); |
| 1689 | IWL_ERR(priv, "0x%08X | tsf hi\n", table.tsf_hi); |
| 1690 | IWL_ERR(priv, "0x%08X | time gp1\n", table.gp1); |
| 1691 | IWL_ERR(priv, "0x%08X | time gp2\n", table.gp2); |
| 1692 | IWL_ERR(priv, "0x%08X | time gp3\n", table.gp3); |
| 1693 | IWL_ERR(priv, "0x%08X | uCode version\n", table.ucode_ver); |
| 1694 | IWL_ERR(priv, "0x%08X | hw version\n", table.hw_ver); |
| 1695 | IWL_ERR(priv, "0x%08X | board version\n", table.brd_ver); |
| 1696 | IWL_ERR(priv, "0x%08X | hcmd\n", table.hcmd); |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1697 | } |
| 1698 | |
| 1699 | #define EVENT_START_OFFSET (4 * sizeof(u32)) |
| 1700 | |
| 1701 | /** |
| 1702 | * iwl_print_event_log - Dump error event log to syslog |
| 1703 | * |
| 1704 | */ |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 1705 | static int iwl_print_event_log(struct iwl_priv *priv, u32 start_idx, |
| 1706 | u32 num_events, u32 mode, |
| 1707 | int pos, char **buf, size_t bufsz) |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1708 | { |
| 1709 | u32 i; |
| 1710 | u32 base; /* SRAM byte address of event log header */ |
| 1711 | u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */ |
| 1712 | u32 ptr; /* SRAM byte address of log data */ |
| 1713 | u32 ev, time, data; /* event log data */ |
Ben Cahill | e585447 | 2009-11-06 14:52:58 -0800 | [diff] [blame] | 1714 | unsigned long reg_flags; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1715 | |
| 1716 | if (num_events == 0) |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 1717 | return pos; |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1718 | |
Johannes Berg | d7d5783 | 2011-04-05 09:42:04 -0700 | [diff] [blame] | 1719 | base = priv->device_pointers.log_event_table; |
Johannes Berg | 872907b | 2011-06-06 09:41:15 -0700 | [diff] [blame] | 1720 | if (priv->ucode_type == IWL_UCODE_INIT) { |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1721 | if (!base) |
| 1722 | base = priv->_agn.init_evtlog_ptr; |
| 1723 | } else { |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1724 | if (!base) |
| 1725 | base = priv->_agn.inst_evtlog_ptr; |
| 1726 | } |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1727 | |
| 1728 | if (mode == 0) |
| 1729 | event_size = 2 * sizeof(u32); |
| 1730 | else |
| 1731 | event_size = 3 * sizeof(u32); |
| 1732 | |
| 1733 | ptr = base + EVENT_START_OFFSET + (start_idx * event_size); |
| 1734 | |
Ben Cahill | e585447 | 2009-11-06 14:52:58 -0800 | [diff] [blame] | 1735 | /* Make sure device is powered up for SRAM reads */ |
| 1736 | spin_lock_irqsave(&priv->reg_lock, reg_flags); |
| 1737 | iwl_grab_nic_access(priv); |
| 1738 | |
| 1739 | /* Set starting address; reads will auto-increment */ |
Johannes Berg | 02a7fa0 | 2011-04-05 09:42:12 -0700 | [diff] [blame] | 1740 | iwl_write32(priv, HBUS_TARG_MEM_RADDR, ptr); |
Ben Cahill | e585447 | 2009-11-06 14:52:58 -0800 | [diff] [blame] | 1741 | rmb(); |
| 1742 | |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1743 | /* "time" is actually "data" for mode 0 (no timestamp). |
| 1744 | * place event id # at far right for easier visual parsing. */ |
| 1745 | for (i = 0; i < num_events; i++) { |
Johannes Berg | 02a7fa0 | 2011-04-05 09:42:12 -0700 | [diff] [blame] | 1746 | ev = iwl_read32(priv, HBUS_TARG_MEM_RDAT); |
| 1747 | time = iwl_read32(priv, HBUS_TARG_MEM_RDAT); |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1748 | if (mode == 0) { |
| 1749 | /* data, ev */ |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 1750 | if (bufsz) { |
| 1751 | pos += scnprintf(*buf + pos, bufsz - pos, |
| 1752 | "EVT_LOG:0x%08x:%04u\n", |
| 1753 | time, ev); |
| 1754 | } else { |
| 1755 | trace_iwlwifi_dev_ucode_event(priv, 0, |
| 1756 | time, ev); |
| 1757 | IWL_ERR(priv, "EVT_LOG:0x%08x:%04u\n", |
| 1758 | time, ev); |
| 1759 | } |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1760 | } else { |
Johannes Berg | 02a7fa0 | 2011-04-05 09:42:12 -0700 | [diff] [blame] | 1761 | data = iwl_read32(priv, HBUS_TARG_MEM_RDAT); |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 1762 | if (bufsz) { |
| 1763 | pos += scnprintf(*buf + pos, bufsz - pos, |
| 1764 | "EVT_LOGT:%010u:0x%08x:%04u\n", |
| 1765 | time, data, ev); |
| 1766 | } else { |
| 1767 | IWL_ERR(priv, "EVT_LOGT:%010u:0x%08x:%04u\n", |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1768 | time, data, ev); |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 1769 | trace_iwlwifi_dev_ucode_event(priv, time, |
| 1770 | data, ev); |
| 1771 | } |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1772 | } |
| 1773 | } |
Ben Cahill | e585447 | 2009-11-06 14:52:58 -0800 | [diff] [blame] | 1774 | |
| 1775 | /* Allow device to power down */ |
| 1776 | iwl_release_nic_access(priv); |
| 1777 | spin_unlock_irqrestore(&priv->reg_lock, reg_flags); |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 1778 | return pos; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1779 | } |
| 1780 | |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 1781 | /** |
| 1782 | * iwl_print_last_event_logs - Dump the newest # of event log to syslog |
| 1783 | */ |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 1784 | static int iwl_print_last_event_logs(struct iwl_priv *priv, u32 capacity, |
| 1785 | u32 num_wraps, u32 next_entry, |
| 1786 | u32 size, u32 mode, |
| 1787 | int pos, char **buf, size_t bufsz) |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 1788 | { |
| 1789 | /* |
| 1790 | * display the newest DEFAULT_LOG_ENTRIES entries |
| 1791 | * i.e the entries just before the next ont that uCode would fill. |
| 1792 | */ |
| 1793 | if (num_wraps) { |
| 1794 | if (next_entry < size) { |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 1795 | pos = iwl_print_event_log(priv, |
| 1796 | capacity - (size - next_entry), |
| 1797 | size - next_entry, mode, |
| 1798 | pos, buf, bufsz); |
| 1799 | pos = iwl_print_event_log(priv, 0, |
| 1800 | next_entry, mode, |
| 1801 | pos, buf, bufsz); |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 1802 | } else |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 1803 | pos = iwl_print_event_log(priv, next_entry - size, |
| 1804 | size, mode, pos, buf, bufsz); |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 1805 | } else { |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 1806 | if (next_entry < size) { |
| 1807 | pos = iwl_print_event_log(priv, 0, next_entry, |
| 1808 | mode, pos, buf, bufsz); |
| 1809 | } else { |
| 1810 | pos = iwl_print_event_log(priv, next_entry - size, |
| 1811 | size, mode, pos, buf, bufsz); |
| 1812 | } |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 1813 | } |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 1814 | return pos; |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 1815 | } |
| 1816 | |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 1817 | #define DEFAULT_DUMP_EVENT_LOG_ENTRIES (20) |
| 1818 | |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 1819 | int iwl_dump_nic_event_log(struct iwl_priv *priv, bool full_log, |
| 1820 | char **buf, bool display) |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1821 | { |
| 1822 | u32 base; /* SRAM byte address of event log header */ |
| 1823 | u32 capacity; /* event log capacity in # entries */ |
| 1824 | u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */ |
| 1825 | u32 num_wraps; /* # times uCode wrapped to top of log */ |
| 1826 | u32 next_entry; /* index of next entry to be written by uCode */ |
| 1827 | u32 size; /* # entries that we'll print */ |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1828 | u32 logsize; |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 1829 | int pos = 0; |
| 1830 | size_t bufsz = 0; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1831 | |
Johannes Berg | d7d5783 | 2011-04-05 09:42:04 -0700 | [diff] [blame] | 1832 | base = priv->device_pointers.log_event_table; |
Johannes Berg | 872907b | 2011-06-06 09:41:15 -0700 | [diff] [blame] | 1833 | if (priv->ucode_type == IWL_UCODE_INIT) { |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1834 | logsize = priv->_agn.init_evtlog_size; |
| 1835 | if (!base) |
| 1836 | base = priv->_agn.init_evtlog_ptr; |
| 1837 | } else { |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1838 | logsize = priv->_agn.inst_evtlog_size; |
| 1839 | if (!base) |
| 1840 | base = priv->_agn.inst_evtlog_ptr; |
| 1841 | } |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1842 | |
| 1843 | if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) { |
Wey-Yi Guy | 212fb57 | 2009-12-02 12:53:00 -0800 | [diff] [blame] | 1844 | IWL_ERR(priv, |
| 1845 | "Invalid event log pointer 0x%08X for %s uCode\n", |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 1846 | base, |
Johannes Berg | 872907b | 2011-06-06 09:41:15 -0700 | [diff] [blame] | 1847 | (priv->ucode_type == IWL_UCODE_INIT) |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 1848 | ? "Init" : "RT"); |
Wey-Yi Guy | 937c397 | 2010-01-15 13:43:36 -0800 | [diff] [blame] | 1849 | return -EINVAL; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1850 | } |
| 1851 | |
| 1852 | /* event log header */ |
| 1853 | capacity = iwl_read_targ_mem(priv, base); |
| 1854 | mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32))); |
| 1855 | num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32))); |
| 1856 | next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32))); |
| 1857 | |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1858 | if (capacity > logsize) { |
Ben Cahill | 84c4069 | 2009-11-06 14:52:57 -0800 | [diff] [blame] | 1859 | IWL_ERR(priv, "Log capacity %d is bogus, limit to %d entries\n", |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1860 | capacity, logsize); |
| 1861 | capacity = logsize; |
Ben Cahill | 84c4069 | 2009-11-06 14:52:57 -0800 | [diff] [blame] | 1862 | } |
| 1863 | |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1864 | if (next_entry > logsize) { |
Ben Cahill | 84c4069 | 2009-11-06 14:52:57 -0800 | [diff] [blame] | 1865 | IWL_ERR(priv, "Log write index %d is bogus, limit to %d\n", |
Johannes Berg | b2e640d4 | 2010-05-05 23:24:54 -0700 | [diff] [blame] | 1866 | next_entry, logsize); |
| 1867 | next_entry = logsize; |
Ben Cahill | 84c4069 | 2009-11-06 14:52:57 -0800 | [diff] [blame] | 1868 | } |
| 1869 | |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1870 | size = num_wraps ? capacity : next_entry; |
| 1871 | |
| 1872 | /* bail out if nothing in log */ |
| 1873 | if (size == 0) { |
| 1874 | 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] | 1875 | return pos; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1876 | } |
| 1877 | |
Wey-Yi Guy | 9f28ebc | 2010-11-26 13:24:19 -0800 | [diff] [blame] | 1878 | /* enable/disable bt channel inhibition */ |
Wey-Yi Guy | f37837c | 2010-08-23 07:57:12 -0700 | [diff] [blame] | 1879 | priv->bt_ch_announce = iwlagn_bt_ch_announce; |
| 1880 | |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 1881 | #ifdef CONFIG_IWLWIFI_DEBUG |
Wey-Yi Guy | 521d9bc | 2009-12-10 14:37:23 -0800 | [diff] [blame] | 1882 | 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] | 1883 | size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES) |
| 1884 | ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size; |
| 1885 | #else |
| 1886 | size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES) |
| 1887 | ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size; |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1888 | #endif |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 1889 | IWL_ERR(priv, "Start IWL Event Log Dump: display last %u entries\n", |
| 1890 | size); |
| 1891 | |
| 1892 | #ifdef CONFIG_IWLWIFI_DEBUG |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 1893 | if (display) { |
| 1894 | if (full_log) |
| 1895 | bufsz = capacity * 48; |
| 1896 | else |
| 1897 | bufsz = size * 48; |
| 1898 | *buf = kmalloc(bufsz, GFP_KERNEL); |
| 1899 | if (!*buf) |
Wey-Yi Guy | 937c397 | 2010-01-15 13:43:36 -0800 | [diff] [blame] | 1900 | return -ENOMEM; |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 1901 | } |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 1902 | if ((iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) || full_log) { |
| 1903 | /* |
| 1904 | * if uCode has wrapped back to top of log, |
| 1905 | * start at the oldest entry, |
| 1906 | * i.e the next one that uCode would fill. |
| 1907 | */ |
| 1908 | if (num_wraps) |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 1909 | pos = iwl_print_event_log(priv, next_entry, |
| 1910 | capacity - next_entry, mode, |
| 1911 | pos, buf, bufsz); |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 1912 | /* (then/else) start at top of log */ |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 1913 | pos = iwl_print_event_log(priv, 0, |
| 1914 | next_entry, mode, pos, buf, bufsz); |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 1915 | } else |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 1916 | pos = iwl_print_last_event_logs(priv, capacity, num_wraps, |
| 1917 | next_entry, size, mode, |
| 1918 | pos, buf, bufsz); |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 1919 | #else |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 1920 | pos = iwl_print_last_event_logs(priv, capacity, num_wraps, |
| 1921 | next_entry, size, mode, |
| 1922 | pos, buf, bufsz); |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 1923 | #endif |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 1924 | return pos; |
Wey-Yi Guy | c341ddb | 2009-11-20 12:05:07 -0800 | [diff] [blame] | 1925 | } |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 1926 | |
Wey-Yi Guy | 0975cc8 | 2010-07-31 08:34:07 -0700 | [diff] [blame] | 1927 | static void iwl_rf_kill_ct_config(struct iwl_priv *priv) |
| 1928 | { |
| 1929 | struct iwl_ct_kill_config cmd; |
| 1930 | struct iwl_ct_kill_throttling_config adv_cmd; |
| 1931 | unsigned long flags; |
| 1932 | int ret = 0; |
| 1933 | |
| 1934 | spin_lock_irqsave(&priv->lock, flags); |
| 1935 | iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, |
| 1936 | CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT); |
| 1937 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1938 | priv->thermal_throttle.ct_kill_toggle = false; |
| 1939 | |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 1940 | if (priv->cfg->base_params->support_ct_kill_exit) { |
Wey-Yi Guy | 0975cc8 | 2010-07-31 08:34:07 -0700 | [diff] [blame] | 1941 | adv_cmd.critical_temperature_enter = |
| 1942 | cpu_to_le32(priv->hw_params.ct_kill_threshold); |
| 1943 | adv_cmd.critical_temperature_exit = |
| 1944 | cpu_to_le32(priv->hw_params.ct_kill_exit_threshold); |
| 1945 | |
| 1946 | ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD, |
| 1947 | sizeof(adv_cmd), &adv_cmd); |
| 1948 | if (ret) |
| 1949 | IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n"); |
| 1950 | else |
| 1951 | IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD " |
| 1952 | "succeeded, " |
| 1953 | "critical temperature enter is %d," |
| 1954 | "exit is %d\n", |
| 1955 | priv->hw_params.ct_kill_threshold, |
| 1956 | priv->hw_params.ct_kill_exit_threshold); |
| 1957 | } else { |
| 1958 | cmd.critical_temperature_R = |
| 1959 | cpu_to_le32(priv->hw_params.ct_kill_threshold); |
| 1960 | |
| 1961 | ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD, |
| 1962 | sizeof(cmd), &cmd); |
| 1963 | if (ret) |
| 1964 | IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n"); |
| 1965 | else |
| 1966 | IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD " |
| 1967 | "succeeded, " |
| 1968 | "critical temperature is %d\n", |
| 1969 | priv->hw_params.ct_kill_threshold); |
| 1970 | } |
| 1971 | } |
| 1972 | |
Shanyu Zhao | 6d6a1af | 2010-09-14 18:13:31 -0700 | [diff] [blame] | 1973 | static int iwlagn_send_calib_cfg_rt(struct iwl_priv *priv, u32 cfg) |
| 1974 | { |
| 1975 | struct iwl_calib_cfg_cmd calib_cfg_cmd; |
| 1976 | struct iwl_host_cmd cmd = { |
| 1977 | .id = CALIBRATION_CFG_CMD, |
Johannes Berg | 3fa5073 | 2011-05-04 07:50:38 -0700 | [diff] [blame] | 1978 | .len = { sizeof(struct iwl_calib_cfg_cmd), }, |
| 1979 | .data = { &calib_cfg_cmd, }, |
Shanyu Zhao | 6d6a1af | 2010-09-14 18:13:31 -0700 | [diff] [blame] | 1980 | }; |
| 1981 | |
| 1982 | memset(&calib_cfg_cmd, 0, sizeof(calib_cfg_cmd)); |
| 1983 | 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] | 1984 | calib_cfg_cmd.ucd_calib_cfg.once.start = cpu_to_le32(cfg); |
Shanyu Zhao | 6d6a1af | 2010-09-14 18:13:31 -0700 | [diff] [blame] | 1985 | |
| 1986 | return iwl_send_cmd(priv, &cmd); |
| 1987 | } |
| 1988 | |
| 1989 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1990 | /** |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 1991 | * iwl_alive_start - called after REPLY_ALIVE notification received |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1992 | * from protocol/runtime uCode (initialization uCode's |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 1993 | * Alive gets handled by iwl_init_alive_start()). |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1994 | */ |
Cindy H. Kao | 4613e72 | 2011-05-06 10:40:15 -0700 | [diff] [blame] | 1995 | int iwl_alive_start(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1996 | { |
Tomas Winkler | 57aab75 | 2008-04-14 21:16:03 -0700 | [diff] [blame] | 1997 | int ret = 0; |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 1998 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1999 | |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 2000 | iwl_reset_ict(priv); |
| 2001 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2002 | IWL_DEBUG_INFO(priv, "Runtime Alive received.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2003 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2004 | /* After the ALIVE response, we can send host commands to the uCode */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2005 | set_bit(STATUS_ALIVE, &priv->status); |
| 2006 | |
Stanislaw Gruszka | 22de94d | 2010-12-03 15:41:48 +0100 | [diff] [blame] | 2007 | /* Enable watchdog to monitor the driver tx queues */ |
| 2008 | iwl_setup_watchdog(priv); |
Wey-Yi Guy | b74e31a | 2010-03-01 17:23:50 -0800 | [diff] [blame] | 2009 | |
Tomas Winkler | fee1247 | 2008-04-03 16:05:21 -0700 | [diff] [blame] | 2010 | if (iwl_is_rfkill(priv)) |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 2011 | return -ERFKILL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2012 | |
Wey-Yi Guy | bc795df | 2010-10-11 14:24:05 -0700 | [diff] [blame] | 2013 | /* download priority table before any calibration request */ |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 2014 | if (priv->cfg->bt_params && |
| 2015 | priv->cfg->bt_params->advanced_bt_coexist) { |
Wey-Yi Guy | f7322f8 | 2010-08-23 15:24:49 -0700 | [diff] [blame] | 2016 | /* Configure Bluetooth device coexistence support */ |
| 2017 | priv->bt_valid = IWLAGN_BT_ALL_VALID_MSK; |
| 2018 | priv->kill_ack_mask = IWLAGN_BT_KILL_ACK_MASK_DEFAULT; |
| 2019 | priv->kill_cts_mask = IWLAGN_BT_KILL_CTS_MASK_DEFAULT; |
| 2020 | priv->cfg->ops->hcmd->send_bt_config(priv); |
| 2021 | priv->bt_valid = IWLAGN_BT_VALID_ENABLE_FLAGS; |
Wey-Yi Guy | a5901cb | 2010-09-23 09:56:51 -0700 | [diff] [blame] | 2022 | iwlagn_send_prio_tbl(priv); |
Wey-Yi Guy | f7322f8 | 2010-08-23 15:24:49 -0700 | [diff] [blame] | 2023 | |
| 2024 | /* FIXME: w/a to force change uCode BT state machine */ |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 2025 | ret = iwlagn_send_bt_env(priv, IWL_BT_COEX_ENV_OPEN, |
| 2026 | BT_COEX_PRIO_TBL_EVT_INIT_CALIB2); |
| 2027 | if (ret) |
| 2028 | return ret; |
| 2029 | ret = iwlagn_send_bt_env(priv, IWL_BT_COEX_ENV_CLOSE, |
| 2030 | BT_COEX_PRIO_TBL_EVT_INIT_CALIB2); |
| 2031 | if (ret) |
| 2032 | return ret; |
Wey-Yi Guy | f7322f8 | 2010-08-23 15:24:49 -0700 | [diff] [blame] | 2033 | } |
Wey-Yi Guy | bc795df | 2010-10-11 14:24:05 -0700 | [diff] [blame] | 2034 | if (priv->hw_params.calib_rt_cfg) |
| 2035 | iwlagn_send_calib_cfg_rt(priv, priv->hw_params.calib_rt_cfg); |
| 2036 | |
Johannes Berg | 36d6825 | 2008-05-15 12:55:26 +0200 | [diff] [blame] | 2037 | ieee80211_wake_queues(priv->hw); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2038 | |
Johannes Berg | 470ab2d | 2010-01-21 11:23:30 -0800 | [diff] [blame] | 2039 | priv->active_rate = IWL_RATES_MASK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2040 | |
Wey-Yi Guy | 2f748de | 2009-09-17 10:43:51 -0700 | [diff] [blame] | 2041 | /* Configure Tx antenna selection based on H/W config */ |
| 2042 | if (priv->cfg->ops->hcmd->set_tx_ant) |
| 2043 | priv->cfg->ops->hcmd->set_tx_ant(priv, priv->cfg->valid_tx_ant); |
| 2044 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 2045 | if (iwl_is_associated_ctx(ctx)) { |
Gregory Greenman | c1adf9f | 2008-05-15 13:53:59 +0800 | [diff] [blame] | 2046 | struct iwl_rxon_cmd *active_rxon = |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 2047 | (struct iwl_rxon_cmd *)&ctx->active; |
Mohamed Abbas | 019fb97 | 2009-03-17 21:59:18 -0700 | [diff] [blame] | 2048 | /* apply any changes in staging */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 2049 | ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2050 | active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
| 2051 | } else { |
Johannes Berg | d0fe478 | 2010-08-23 10:46:58 +0200 | [diff] [blame] | 2052 | struct iwl_rxon_context *tmp; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2053 | /* Initialize our rx_config data */ |
Johannes Berg | d0fe478 | 2010-08-23 10:46:58 +0200 | [diff] [blame] | 2054 | for_each_context(priv, tmp) |
| 2055 | iwl_connection_init_rx_config(priv, tmp); |
Abhijeet Kolekar | 4582353 | 2009-04-08 11:26:44 -0700 | [diff] [blame] | 2056 | |
| 2057 | if (priv->cfg->ops->hcmd->set_rxon_chain) |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 2058 | priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2059 | } |
| 2060 | |
Wey-Yi Guy | 73b78a2 | 2011-02-11 08:13:14 -0800 | [diff] [blame] | 2061 | if (!priv->cfg->bt_params || (priv->cfg->bt_params && |
| 2062 | !priv->cfg->bt_params->advanced_bt_coexist)) { |
| 2063 | /* |
| 2064 | * default is 2-wire BT coexexistence support |
| 2065 | */ |
Wey-Yi Guy | aeb4a2e | 2010-08-23 07:57:05 -0700 | [diff] [blame] | 2066 | priv->cfg->ops->hcmd->send_bt_config(priv); |
| 2067 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2068 | |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 2069 | iwl_reset_run_time_calib(priv); |
| 2070 | |
Wey-Yi Guy | 9e2e742 | 2010-11-12 13:52:37 -0800 | [diff] [blame] | 2071 | set_bit(STATUS_READY, &priv->status); |
| 2072 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2073 | /* Configure the adapter for unassociated operation */ |
Wey-Yi Guy | 805a3b8 | 2011-06-03 07:54:16 -0700 | [diff] [blame] | 2074 | ret = iwlagn_commit_rxon(priv, ctx); |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 2075 | if (ret) |
| 2076 | return ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2077 | |
| 2078 | /* At this point, the NIC is initialized and operational */ |
Emmanuel Grumbach | 47f4a58 | 2008-06-12 09:47:13 +0800 | [diff] [blame] | 2079 | iwl_rf_kill_ct_config(priv); |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 2080 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2081 | IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2082 | |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 2083 | return iwl_power_update_mode(priv, true); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2084 | } |
| 2085 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 2086 | static void iwl_cancel_deferred_work(struct iwl_priv *priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2087 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2088 | static void __iwl_down(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2089 | { |
Dan Carpenter | 22dd2fd | 2011-03-15 10:03:24 +0300 | [diff] [blame] | 2090 | int exit_pending; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2091 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2092 | IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2093 | |
Stanislaw Gruszka | d745d47 | 2010-09-13 14:46:35 +0200 | [diff] [blame] | 2094 | iwl_scan_cancel_timeout(priv, 200); |
| 2095 | |
| 2096 | exit_pending = test_and_set_bit(STATUS_EXIT_PENDING, &priv->status); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2097 | |
Stanislaw Gruszka | b62177a | 2010-08-20 15:23:47 +0200 | [diff] [blame] | 2098 | /* Stop TX queues watchdog. We need to have STATUS_EXIT_PENDING bit set |
| 2099 | * to prevent rearm timer */ |
Stanislaw Gruszka | 22de94d | 2010-12-03 15:41:48 +0100 | [diff] [blame] | 2100 | del_timer_sync(&priv->watchdog); |
Stanislaw Gruszka | b62177a | 2010-08-20 15:23:47 +0200 | [diff] [blame] | 2101 | |
Johannes Berg | dcef732 | 2010-08-27 08:55:52 -0700 | [diff] [blame] | 2102 | iwl_clear_ucode_stations(priv, NULL); |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 2103 | iwl_dealloc_bcast_stations(priv); |
Johannes Berg | db125c7 | 2010-05-07 01:49:15 -0700 | [diff] [blame] | 2104 | iwl_clear_driver_stations(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2105 | |
Johannes Berg | a117413 | 2010-08-23 07:56:59 -0700 | [diff] [blame] | 2106 | /* reset BT coex data */ |
Wey-Yi Guy | da5dbb9 | 2010-08-23 07:57:13 -0700 | [diff] [blame] | 2107 | priv->bt_status = 0; |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 2108 | if (priv->cfg->bt_params) |
| 2109 | priv->bt_traffic_load = |
| 2110 | priv->cfg->bt_params->bt_init_traffic_load; |
| 2111 | else |
| 2112 | priv->bt_traffic_load = 0; |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 2113 | priv->bt_full_concurrent = false; |
| 2114 | priv->bt_ci_compliance = 0; |
Johannes Berg | a117413 | 2010-08-23 07:56:59 -0700 | [diff] [blame] | 2115 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2116 | /* Wipe out the EXIT_PENDING status bit if we are not actually |
| 2117 | * exiting the module */ |
| 2118 | if (!exit_pending) |
| 2119 | clear_bit(STATUS_EXIT_PENDING, &priv->status); |
| 2120 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2121 | if (priv->mac80211_registered) |
| 2122 | ieee80211_stop_queues(priv->hw); |
| 2123 | |
Johannes Berg | 1a10f43 | 2011-04-13 03:14:44 -0700 | [diff] [blame] | 2124 | /* Clear out all status bits but a few that are stable across reset */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2125 | priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) << |
| 2126 | STATUS_RF_KILL_HW | |
Reinette Chatre | 9788864 | 2008-02-06 11:20:38 -0800 | [diff] [blame] | 2127 | test_bit(STATUS_GEO_CONFIGURED, &priv->status) << |
| 2128 | STATUS_GEO_CONFIGURED | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2129 | test_bit(STATUS_FW_ERROR, &priv->status) << |
Mohamed Abbas | 052ec3f | 2008-06-30 17:23:15 +0800 | [diff] [blame] | 2130 | STATUS_FW_ERROR | |
| 2131 | test_bit(STATUS_EXIT_PENDING, &priv->status) << |
| 2132 | STATUS_EXIT_PENDING; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2133 | |
Johannes Berg | bc4f8ad | 2011-04-13 03:14:45 -0700 | [diff] [blame] | 2134 | iwlagn_stop_device(priv); |
Ben Cahill | 4d2ccdb | 2009-10-09 13:20:20 -0700 | [diff] [blame] | 2135 | |
Johannes Berg | 7783454 | 2010-10-04 05:50:36 -0700 | [diff] [blame] | 2136 | dev_kfree_skb(priv->beacon_skb); |
Johannes Berg | 12e934d | 2010-10-04 05:50:06 -0700 | [diff] [blame] | 2137 | priv->beacon_skb = NULL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2138 | } |
| 2139 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2140 | static void iwl_down(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2141 | { |
| 2142 | mutex_lock(&priv->mutex); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2143 | __iwl_down(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2144 | mutex_unlock(&priv->mutex); |
Zhu Yi | b24d22b | 2007-12-19 13:59:52 +0800 | [diff] [blame] | 2145 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 2146 | iwl_cancel_deferred_work(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2147 | } |
| 2148 | |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 2149 | #define HW_READY_TIMEOUT (50) |
| 2150 | |
Johannes Berg | 4cd2bf7 | 2011-04-13 03:14:52 -0700 | [diff] [blame] | 2151 | /* Note: returns poll_bit return value, which is >= 0 if success */ |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 2152 | static int iwl_set_hw_ready(struct iwl_priv *priv) |
| 2153 | { |
Johannes Berg | 4cd2bf7 | 2011-04-13 03:14:52 -0700 | [diff] [blame] | 2154 | int ret; |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 2155 | |
| 2156 | iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 2157 | CSR_HW_IF_CONFIG_REG_BIT_NIC_READY); |
| 2158 | |
| 2159 | /* See if we got it */ |
| 2160 | ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 2161 | CSR_HW_IF_CONFIG_REG_BIT_NIC_READY, |
| 2162 | CSR_HW_IF_CONFIG_REG_BIT_NIC_READY, |
| 2163 | HW_READY_TIMEOUT); |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 2164 | |
Johannes Berg | 4cd2bf7 | 2011-04-13 03:14:52 -0700 | [diff] [blame] | 2165 | IWL_DEBUG_INFO(priv, "hardware%s ready\n", ret < 0 ? " not" : ""); |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 2166 | return ret; |
| 2167 | } |
| 2168 | |
Johannes Berg | 4cd2bf7 | 2011-04-13 03:14:52 -0700 | [diff] [blame] | 2169 | /* Note: returns standard 0/-ERROR code */ |
Johannes Berg | 3e14c1f | 2011-04-13 03:14:46 -0700 | [diff] [blame] | 2170 | int iwl_prepare_card_hw(struct iwl_priv *priv) |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 2171 | { |
Johannes Berg | 4cd2bf7 | 2011-04-13 03:14:52 -0700 | [diff] [blame] | 2172 | int ret; |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 2173 | |
Frans Pop | 91dd6c2 | 2010-03-24 14:19:58 -0700 | [diff] [blame] | 2174 | IWL_DEBUG_INFO(priv, "iwl_prepare_card_hw enter\n"); |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 2175 | |
Mohamed Abbas | 3354a0f | 2009-06-19 13:52:41 -0700 | [diff] [blame] | 2176 | ret = iwl_set_hw_ready(priv); |
Johannes Berg | 4cd2bf7 | 2011-04-13 03:14:52 -0700 | [diff] [blame] | 2177 | if (ret >= 0) |
| 2178 | return 0; |
Mohamed Abbas | 3354a0f | 2009-06-19 13:52:41 -0700 | [diff] [blame] | 2179 | |
| 2180 | /* If HW is not ready, prepare the conditions to check again */ |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 2181 | iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 2182 | CSR_HW_IF_CONFIG_REG_PREPARE); |
| 2183 | |
| 2184 | ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 2185 | ~CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, |
| 2186 | CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, 150000); |
| 2187 | |
Johannes Berg | 4cd2bf7 | 2011-04-13 03:14:52 -0700 | [diff] [blame] | 2188 | if (ret < 0) |
| 2189 | return ret; |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 2190 | |
Johannes Berg | 4cd2bf7 | 2011-04-13 03:14:52 -0700 | [diff] [blame] | 2191 | /* HW should be ready by now, check again. */ |
| 2192 | ret = iwl_set_hw_ready(priv); |
| 2193 | if (ret >= 0) |
| 2194 | return 0; |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 2195 | return ret; |
| 2196 | } |
| 2197 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2198 | #define MAX_HW_RESTARTS 5 |
| 2199 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2200 | static int __iwl_up(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2201 | { |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 2202 | struct iwl_rxon_context *ctx; |
Tomas Winkler | 57aab75 | 2008-04-14 21:16:03 -0700 | [diff] [blame] | 2203 | int ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2204 | |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 2205 | lockdep_assert_held(&priv->mutex); |
| 2206 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2207 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) { |
Winkler, Tomas | 39aadf8 | 2008-12-19 10:37:32 +0800 | [diff] [blame] | 2208 | IWL_WARN(priv, "Exit pending; will not bring the NIC up\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2209 | return -EIO; |
| 2210 | } |
| 2211 | |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 2212 | for_each_context(priv, ctx) { |
Johannes Berg | a30e311 | 2010-09-22 18:02:01 +0200 | [diff] [blame] | 2213 | ret = iwlagn_alloc_bcast_station(priv, ctx); |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 2214 | if (ret) { |
| 2215 | iwl_dealloc_bcast_stations(priv); |
| 2216 | return ret; |
| 2217 | } |
| 2218 | } |
Johannes Berg | 2c810cc | 2010-04-29 00:53:29 -0700 | [diff] [blame] | 2219 | |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 2220 | ret = iwlagn_run_init_ucode(priv); |
| 2221 | if (ret) { |
| 2222 | IWL_ERR(priv, "Failed to run INIT ucode: %d\n", ret); |
| 2223 | goto error; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2224 | } |
| 2225 | |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 2226 | ret = iwlagn_load_ucode_wait_alive(priv, |
Johannes Berg | dbf28e21 | 2011-04-16 08:29:24 -0700 | [diff] [blame] | 2227 | &priv->ucode_rt, |
Johannes Berg | 872907b | 2011-06-06 09:41:15 -0700 | [diff] [blame] | 2228 | IWL_UCODE_REGULAR); |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 2229 | if (ret) { |
| 2230 | IWL_ERR(priv, "Failed to start RT ucode: %d\n", ret); |
| 2231 | goto error; |
| 2232 | } |
| 2233 | |
| 2234 | ret = iwl_alive_start(priv); |
| 2235 | if (ret) |
| 2236 | goto error; |
| 2237 | return 0; |
| 2238 | |
| 2239 | error: |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2240 | set_bit(STATUS_EXIT_PENDING, &priv->status); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2241 | __iwl_down(priv); |
Mohamed Abbas | 64e72c3e | 2008-06-12 09:47:03 +0800 | [diff] [blame] | 2242 | clear_bit(STATUS_EXIT_PENDING, &priv->status); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2243 | |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 2244 | IWL_ERR(priv, "Unable to initialize device.\n"); |
| 2245 | return ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2246 | } |
| 2247 | |
| 2248 | |
| 2249 | /***************************************************************************** |
| 2250 | * |
| 2251 | * Workqueue callbacks |
| 2252 | * |
| 2253 | *****************************************************************************/ |
| 2254 | |
Emmanuel Grumbach | 16e727e | 2008-06-12 09:46:52 +0800 | [diff] [blame] | 2255 | static void iwl_bg_run_time_calib_work(struct work_struct *work) |
| 2256 | { |
| 2257 | struct iwl_priv *priv = container_of(work, struct iwl_priv, |
| 2258 | run_time_calib_work); |
| 2259 | |
| 2260 | mutex_lock(&priv->mutex); |
| 2261 | |
| 2262 | if (test_bit(STATUS_EXIT_PENDING, &priv->status) || |
| 2263 | test_bit(STATUS_SCANNING, &priv->status)) { |
| 2264 | mutex_unlock(&priv->mutex); |
| 2265 | return; |
| 2266 | } |
| 2267 | |
| 2268 | if (priv->start_calib) { |
Johannes Berg | 0da0e5b | 2011-04-08 08:14:56 -0700 | [diff] [blame] | 2269 | iwl_chain_noise_calibration(priv); |
| 2270 | iwl_sensitivity_calibration(priv); |
Emmanuel Grumbach | 16e727e | 2008-06-12 09:46:52 +0800 | [diff] [blame] | 2271 | } |
| 2272 | |
| 2273 | mutex_unlock(&priv->mutex); |
Emmanuel Grumbach | 16e727e | 2008-06-12 09:46:52 +0800 | [diff] [blame] | 2274 | } |
| 2275 | |
Johannes Berg | e43e85c | 2011-04-19 07:45:16 -0700 | [diff] [blame] | 2276 | static void iwlagn_prepare_restart(struct iwl_priv *priv) |
| 2277 | { |
| 2278 | struct iwl_rxon_context *ctx; |
| 2279 | bool bt_full_concurrent; |
| 2280 | u8 bt_ci_compliance; |
| 2281 | u8 bt_load; |
| 2282 | u8 bt_status; |
| 2283 | |
| 2284 | lockdep_assert_held(&priv->mutex); |
| 2285 | |
| 2286 | for_each_context(priv, ctx) |
| 2287 | ctx->vif = NULL; |
| 2288 | priv->is_open = 0; |
| 2289 | |
| 2290 | /* |
| 2291 | * __iwl_down() will clear the BT status variables, |
| 2292 | * which is correct, but when we restart we really |
| 2293 | * want to keep them so restore them afterwards. |
| 2294 | * |
| 2295 | * The restart process will later pick them up and |
| 2296 | * re-configure the hw when we reconfigure the BT |
| 2297 | * command. |
| 2298 | */ |
| 2299 | bt_full_concurrent = priv->bt_full_concurrent; |
| 2300 | bt_ci_compliance = priv->bt_ci_compliance; |
| 2301 | bt_load = priv->bt_traffic_load; |
| 2302 | bt_status = priv->bt_status; |
| 2303 | |
| 2304 | __iwl_down(priv); |
| 2305 | |
| 2306 | priv->bt_full_concurrent = bt_full_concurrent; |
| 2307 | priv->bt_ci_compliance = bt_ci_compliance; |
| 2308 | priv->bt_traffic_load = bt_load; |
| 2309 | priv->bt_status = bt_status; |
| 2310 | } |
| 2311 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2312 | static void iwl_bg_restart(struct work_struct *data) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2313 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 2314 | struct iwl_priv *priv = container_of(data, struct iwl_priv, restart); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2315 | |
| 2316 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 2317 | return; |
| 2318 | |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 2319 | if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) { |
| 2320 | mutex_lock(&priv->mutex); |
Johannes Berg | e43e85c | 2011-04-19 07:45:16 -0700 | [diff] [blame] | 2321 | iwlagn_prepare_restart(priv); |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 2322 | mutex_unlock(&priv->mutex); |
Johannes Berg | a117413 | 2010-08-23 07:56:59 -0700 | [diff] [blame] | 2323 | iwl_cancel_deferred_work(priv); |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 2324 | ieee80211_restart_hw(priv->hw); |
| 2325 | } else { |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 2326 | WARN_ON(1); |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 2327 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2328 | } |
| 2329 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2330 | static void iwl_bg_rx_replenish(struct work_struct *data) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2331 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 2332 | struct iwl_priv *priv = |
| 2333 | container_of(data, struct iwl_priv, rx_replenish); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2334 | |
| 2335 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 2336 | return; |
| 2337 | |
| 2338 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 2339 | iwlagn_rx_replenish(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2340 | mutex_unlock(&priv->mutex); |
| 2341 | } |
| 2342 | |
Johannes Berg | 266af4c7 | 2011-03-10 20:13:26 -0800 | [diff] [blame] | 2343 | static int iwl_mac_offchannel_tx(struct ieee80211_hw *hw, struct sk_buff *skb, |
| 2344 | struct ieee80211_channel *chan, |
| 2345 | enum nl80211_channel_type channel_type, |
| 2346 | unsigned int wait) |
| 2347 | { |
| 2348 | struct iwl_priv *priv = hw->priv; |
| 2349 | int ret; |
| 2350 | |
| 2351 | /* Not supported if we don't have PAN */ |
| 2352 | if (!(priv->valid_contexts & BIT(IWL_RXON_CTX_PAN))) { |
| 2353 | ret = -EOPNOTSUPP; |
| 2354 | goto free; |
| 2355 | } |
| 2356 | |
| 2357 | /* Not supported on pre-P2P firmware */ |
| 2358 | if (!(priv->contexts[IWL_RXON_CTX_PAN].interface_modes & |
| 2359 | BIT(NL80211_IFTYPE_P2P_CLIENT))) { |
| 2360 | ret = -EOPNOTSUPP; |
| 2361 | goto free; |
| 2362 | } |
| 2363 | |
| 2364 | mutex_lock(&priv->mutex); |
| 2365 | |
| 2366 | if (!priv->contexts[IWL_RXON_CTX_PAN].is_active) { |
| 2367 | /* |
| 2368 | * If the PAN context is free, use the normal |
| 2369 | * way of doing remain-on-channel offload + TX. |
| 2370 | */ |
| 2371 | ret = 1; |
| 2372 | goto out; |
| 2373 | } |
| 2374 | |
| 2375 | /* TODO: queue up if scanning? */ |
| 2376 | if (test_bit(STATUS_SCANNING, &priv->status) || |
| 2377 | priv->_agn.offchan_tx_skb) { |
| 2378 | ret = -EBUSY; |
| 2379 | goto out; |
| 2380 | } |
| 2381 | |
| 2382 | /* |
| 2383 | * max_scan_ie_len doesn't include the blank SSID or the header, |
| 2384 | * so need to add that again here. |
| 2385 | */ |
| 2386 | if (skb->len > hw->wiphy->max_scan_ie_len + 24 + 2) { |
| 2387 | ret = -ENOBUFS; |
| 2388 | goto out; |
| 2389 | } |
| 2390 | |
| 2391 | priv->_agn.offchan_tx_skb = skb; |
| 2392 | priv->_agn.offchan_tx_timeout = wait; |
| 2393 | priv->_agn.offchan_tx_chan = chan; |
| 2394 | |
| 2395 | ret = iwl_scan_initiate(priv, priv->contexts[IWL_RXON_CTX_PAN].vif, |
| 2396 | IWL_SCAN_OFFCH_TX, chan->band); |
| 2397 | if (ret) |
| 2398 | priv->_agn.offchan_tx_skb = NULL; |
| 2399 | out: |
| 2400 | mutex_unlock(&priv->mutex); |
| 2401 | free: |
| 2402 | if (ret < 0) |
| 2403 | kfree_skb(skb); |
| 2404 | |
| 2405 | return ret; |
| 2406 | } |
| 2407 | |
| 2408 | static int iwl_mac_offchannel_tx_cancel_wait(struct ieee80211_hw *hw) |
| 2409 | { |
| 2410 | struct iwl_priv *priv = hw->priv; |
| 2411 | int ret; |
| 2412 | |
| 2413 | mutex_lock(&priv->mutex); |
| 2414 | |
Dan Carpenter | f8a22a2 | 2011-03-15 10:01:58 +0300 | [diff] [blame] | 2415 | if (!priv->_agn.offchan_tx_skb) { |
| 2416 | ret = -EINVAL; |
| 2417 | goto unlock; |
| 2418 | } |
Johannes Berg | 266af4c7 | 2011-03-10 20:13:26 -0800 | [diff] [blame] | 2419 | |
| 2420 | priv->_agn.offchan_tx_skb = NULL; |
| 2421 | |
| 2422 | ret = iwl_scan_cancel_timeout(priv, 200); |
| 2423 | if (ret) |
| 2424 | ret = -EIO; |
Dan Carpenter | f8a22a2 | 2011-03-15 10:01:58 +0300 | [diff] [blame] | 2425 | unlock: |
Johannes Berg | 266af4c7 | 2011-03-10 20:13:26 -0800 | [diff] [blame] | 2426 | mutex_unlock(&priv->mutex); |
| 2427 | |
| 2428 | return ret; |
| 2429 | } |
| 2430 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2431 | /***************************************************************************** |
| 2432 | * |
| 2433 | * mac80211 entry point functions |
| 2434 | * |
| 2435 | *****************************************************************************/ |
| 2436 | |
Johannes Berg | 0fd0950 | 2011-05-27 08:40:30 -0700 | [diff] [blame] | 2437 | static const struct ieee80211_iface_limit iwlagn_sta_ap_limits[] = { |
| 2438 | { |
| 2439 | .max = 1, |
| 2440 | .types = BIT(NL80211_IFTYPE_STATION), |
| 2441 | }, |
| 2442 | { |
| 2443 | .max = 1, |
| 2444 | .types = BIT(NL80211_IFTYPE_AP), |
| 2445 | }, |
| 2446 | }; |
| 2447 | |
| 2448 | static const struct ieee80211_iface_limit iwlagn_2sta_limits[] = { |
| 2449 | { |
| 2450 | .max = 2, |
| 2451 | .types = BIT(NL80211_IFTYPE_STATION), |
| 2452 | }, |
| 2453 | }; |
| 2454 | |
| 2455 | static const struct ieee80211_iface_limit iwlagn_p2p_sta_go_limits[] = { |
| 2456 | { |
| 2457 | .max = 1, |
| 2458 | .types = BIT(NL80211_IFTYPE_STATION), |
| 2459 | }, |
| 2460 | { |
| 2461 | .max = 1, |
| 2462 | .types = BIT(NL80211_IFTYPE_P2P_GO) | |
| 2463 | BIT(NL80211_IFTYPE_AP), |
| 2464 | }, |
| 2465 | }; |
| 2466 | |
| 2467 | static const struct ieee80211_iface_limit iwlagn_p2p_2sta_limits[] = { |
| 2468 | { |
| 2469 | .max = 2, |
| 2470 | .types = BIT(NL80211_IFTYPE_STATION), |
| 2471 | }, |
| 2472 | { |
| 2473 | .max = 1, |
| 2474 | .types = BIT(NL80211_IFTYPE_P2P_CLIENT), |
| 2475 | }, |
| 2476 | }; |
| 2477 | |
| 2478 | static const struct ieee80211_iface_combination |
| 2479 | iwlagn_iface_combinations_dualmode[] = { |
| 2480 | { .num_different_channels = 1, |
| 2481 | .max_interfaces = 2, |
| 2482 | .beacon_int_infra_match = true, |
| 2483 | .limits = iwlagn_sta_ap_limits, |
| 2484 | .n_limits = ARRAY_SIZE(iwlagn_sta_ap_limits), |
| 2485 | }, |
| 2486 | { .num_different_channels = 1, |
| 2487 | .max_interfaces = 2, |
| 2488 | .limits = iwlagn_2sta_limits, |
| 2489 | .n_limits = ARRAY_SIZE(iwlagn_2sta_limits), |
| 2490 | }, |
| 2491 | }; |
| 2492 | |
| 2493 | static const struct ieee80211_iface_combination |
| 2494 | iwlagn_iface_combinations_p2p[] = { |
| 2495 | { .num_different_channels = 1, |
| 2496 | .max_interfaces = 2, |
| 2497 | .beacon_int_infra_match = true, |
| 2498 | .limits = iwlagn_p2p_sta_go_limits, |
| 2499 | .n_limits = ARRAY_SIZE(iwlagn_p2p_sta_go_limits), |
| 2500 | }, |
| 2501 | { .num_different_channels = 1, |
| 2502 | .max_interfaces = 2, |
| 2503 | .limits = iwlagn_p2p_2sta_limits, |
| 2504 | .n_limits = ARRAY_SIZE(iwlagn_p2p_2sta_limits), |
| 2505 | }, |
| 2506 | }; |
| 2507 | |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 2508 | /* |
| 2509 | * Not a mac80211 entry point function, but it fits in with all the |
| 2510 | * other mac80211 functions grouped here. |
| 2511 | */ |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 2512 | static int iwl_mac_setup_register(struct iwl_priv *priv, |
| 2513 | struct iwlagn_ucode_capabilities *capa) |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 2514 | { |
| 2515 | int ret; |
| 2516 | struct ieee80211_hw *hw = priv->hw; |
Johannes Berg | d0fe478 | 2010-08-23 10:46:58 +0200 | [diff] [blame] | 2517 | struct iwl_rxon_context *ctx; |
| 2518 | |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 2519 | hw->rate_control_algorithm = "iwl-agn-rs"; |
| 2520 | |
| 2521 | /* Tell mac80211 our characteristics */ |
| 2522 | hw->flags = IEEE80211_HW_SIGNAL_DBM | |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 2523 | IEEE80211_HW_AMPDU_AGGREGATION | |
Johannes Berg | 2491fa4 | 2010-08-23 10:46:52 +0200 | [diff] [blame] | 2524 | IEEE80211_HW_NEED_DTIM_PERIOD | |
Johannes Berg | 6fb5511 | 2010-11-16 11:55:02 -0800 | [diff] [blame] | 2525 | IEEE80211_HW_SPECTRUM_MGMT | |
| 2526 | IEEE80211_HW_REPORTS_TX_ACK_STATUS; |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 2527 | |
Johannes Berg | 9b76883 | 2011-01-19 02:54:18 -0800 | [diff] [blame] | 2528 | hw->max_tx_aggregation_subframes = LINK_QUAL_AGG_FRAME_LIMIT_DEF; |
| 2529 | |
Wey-Yi Guy | 23c0fcc | 2011-04-01 16:29:53 -0700 | [diff] [blame] | 2530 | hw->flags |= IEEE80211_HW_SUPPORTS_PS | |
| 2531 | IEEE80211_HW_SUPPORTS_DYNAMIC_PS; |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 2532 | |
Wey-Yi Guy | 8895075 | 2011-06-06 12:05:46 -0700 | [diff] [blame] | 2533 | if (priv->cfg->sku & EEPROM_SKU_CAP_11N_ENABLE) |
Johannes Berg | ba37a3d | 2009-12-10 14:37:27 -0800 | [diff] [blame] | 2534 | hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS | |
| 2535 | IEEE80211_HW_SUPPORTS_STATIC_SMPS; |
| 2536 | |
Johannes Berg | 3997ff3 | 2011-04-05 09:42:02 -0700 | [diff] [blame] | 2537 | if (capa->flags & IWL_UCODE_TLV_FLAGS_MFP) |
| 2538 | hw->flags |= IEEE80211_HW_MFP_CAPABLE; |
| 2539 | |
Reinette Chatre | 8d9698b | 2009-10-16 14:25:55 -0700 | [diff] [blame] | 2540 | hw->sta_data_size = sizeof(struct iwl_station_priv); |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 2541 | hw->vif_data_size = sizeof(struct iwl_vif_priv); |
| 2542 | |
Johannes Berg | d0fe478 | 2010-08-23 10:46:58 +0200 | [diff] [blame] | 2543 | for_each_context(priv, ctx) { |
| 2544 | hw->wiphy->interface_modes |= ctx->interface_modes; |
| 2545 | hw->wiphy->interface_modes |= ctx->exclusive_interface_modes; |
| 2546 | } |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 2547 | |
Johannes Berg | 0fd0950 | 2011-05-27 08:40:30 -0700 | [diff] [blame] | 2548 | BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2); |
| 2549 | |
Johannes Berg | f35490f | 2011-06-02 19:38:43 +0200 | [diff] [blame] | 2550 | if (hw->wiphy->interface_modes & BIT(NL80211_IFTYPE_P2P_CLIENT)) { |
Johannes Berg | 0fd0950 | 2011-05-27 08:40:30 -0700 | [diff] [blame] | 2551 | hw->wiphy->iface_combinations = iwlagn_iface_combinations_p2p; |
| 2552 | hw->wiphy->n_iface_combinations = |
| 2553 | ARRAY_SIZE(iwlagn_iface_combinations_p2p); |
Johannes Berg | f35490f | 2011-06-02 19:38:43 +0200 | [diff] [blame] | 2554 | } else if (hw->wiphy->interface_modes & BIT(NL80211_IFTYPE_AP)) { |
Johannes Berg | 0fd0950 | 2011-05-27 08:40:30 -0700 | [diff] [blame] | 2555 | hw->wiphy->iface_combinations = iwlagn_iface_combinations_dualmode; |
| 2556 | hw->wiphy->n_iface_combinations = |
| 2557 | ARRAY_SIZE(iwlagn_iface_combinations_dualmode); |
| 2558 | } |
| 2559 | |
Johannes Berg | 9b9190d | 2011-01-06 08:07:10 -0800 | [diff] [blame] | 2560 | hw->wiphy->max_remain_on_channel_duration = 1000; |
| 2561 | |
Reinette Chatre | f6c8f15 | 2010-03-12 11:13:26 -0800 | [diff] [blame] | 2562 | hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY | |
Johannes Berg | 274102a | 2011-01-18 04:44:03 -0800 | [diff] [blame] | 2563 | WIPHY_FLAG_DISABLE_BEACON_HINTS | |
| 2564 | WIPHY_FLAG_IBSS_RSN; |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 2565 | |
Wey-Yi Guy | 0172b02 | 2011-06-11 10:00:05 -0700 | [diff] [blame] | 2566 | if (iwlagn_mod_params.power_save) |
| 2567 | hw->wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT; |
| 2568 | else |
| 2569 | hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT; |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 2570 | |
Reinette Chatre | 1382c71 | 2010-02-25 10:02:19 -0800 | [diff] [blame] | 2571 | hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX; |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 2572 | /* we create the 802.11 header and a zero-length SSID element */ |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 2573 | hw->wiphy->max_scan_ie_len = capa->max_probe_length - 24 - 2; |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 2574 | |
| 2575 | /* Default value; 4 EDCA QOS priorities */ |
| 2576 | hw->queues = 4; |
| 2577 | |
| 2578 | hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL; |
| 2579 | |
| 2580 | if (priv->bands[IEEE80211_BAND_2GHZ].n_channels) |
| 2581 | priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] = |
| 2582 | &priv->bands[IEEE80211_BAND_2GHZ]; |
| 2583 | if (priv->bands[IEEE80211_BAND_5GHZ].n_channels) |
| 2584 | priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] = |
| 2585 | &priv->bands[IEEE80211_BAND_5GHZ]; |
| 2586 | |
Wey-Yi Guy | 5ed540a | 2011-01-21 15:26:39 -0800 | [diff] [blame] | 2587 | iwl_leds_init(priv); |
| 2588 | |
Reinette Chatre | f0b6e2e | 2009-10-16 14:25:53 -0700 | [diff] [blame] | 2589 | ret = ieee80211_register_hw(priv->hw); |
| 2590 | if (ret) { |
| 2591 | IWL_ERR(priv, "Failed to register hw (error %d)\n", ret); |
| 2592 | return ret; |
| 2593 | } |
| 2594 | priv->mac80211_registered = 1; |
| 2595 | |
| 2596 | return 0; |
| 2597 | } |
| 2598 | |
| 2599 | |
Johannes Berg | 2dedbf5 | 2011-04-05 09:41:50 -0700 | [diff] [blame] | 2600 | static int iwlagn_mac_start(struct ieee80211_hw *hw) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2601 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 2602 | struct iwl_priv *priv = hw->priv; |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 2603 | int ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2604 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2605 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2606 | |
| 2607 | /* we should be verifying the device is ready to be opened */ |
| 2608 | mutex_lock(&priv->mutex); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2609 | ret = __iwl_up(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2610 | mutex_unlock(&priv->mutex); |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 2611 | if (ret) |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 2612 | return ret; |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 2613 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2614 | IWL_DEBUG_INFO(priv, "Start UP work done.\n"); |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 2615 | |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 2616 | /* Now we should be done, and the READY bit should be set. */ |
| 2617 | if (WARN_ON(!test_bit(STATUS_READY, &priv->status))) |
| 2618 | ret = -EIO; |
Tomas Winkler | 0a078ff | 2008-06-30 17:23:26 +0800 | [diff] [blame] | 2619 | |
Wey-Yi Guy | 5ed540a | 2011-01-21 15:26:39 -0800 | [diff] [blame] | 2620 | iwlagn_led_enable(priv); |
Johannes Berg | e932a60 | 2009-10-02 13:44:03 -0700 | [diff] [blame] | 2621 | |
Tomas Winkler | 0a078ff | 2008-06-30 17:23:26 +0800 | [diff] [blame] | 2622 | priv->is_open = 1; |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2623 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2624 | return 0; |
| 2625 | } |
| 2626 | |
Johannes Berg | 2dedbf5 | 2011-04-05 09:41:50 -0700 | [diff] [blame] | 2627 | static void iwlagn_mac_stop(struct ieee80211_hw *hw) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2628 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 2629 | struct iwl_priv *priv = hw->priv; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2630 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2631 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
Mohamed Abbas | 948c171 | 2007-10-25 17:15:45 +0800 | [diff] [blame] | 2632 | |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 2633 | if (!priv->is_open) |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 2634 | return; |
Zhu Yi | e655b9f | 2008-01-24 02:19:38 -0800 | [diff] [blame] | 2635 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2636 | priv->is_open = 0; |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 2637 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2638 | iwl_down(priv); |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 2639 | |
| 2640 | flush_workqueue(priv->workqueue); |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 2641 | |
Stanislaw Gruszka | 554d1d0 | 2010-12-23 12:38:21 +0100 | [diff] [blame] | 2642 | /* User space software may expect getting rfkill changes |
| 2643 | * even if interface is down */ |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 2644 | iwl_write32(priv, CSR_INT, 0xFFFFFFFF); |
Stanislaw Gruszka | 554d1d0 | 2010-12-23 12:38:21 +0100 | [diff] [blame] | 2645 | iwl_enable_rfkill_int(priv); |
Mohamed Abbas | 948c171 | 2007-10-25 17:15:45 +0800 | [diff] [blame] | 2646 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2647 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2648 | } |
| 2649 | |
Johannes Berg | 2dedbf5 | 2011-04-05 09:41:50 -0700 | [diff] [blame] | 2650 | static void iwlagn_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2651 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 2652 | struct iwl_priv *priv = hw->priv; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2653 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2654 | IWL_DEBUG_MACDUMP(priv, "enter\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2655 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2656 | 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] | 2657 | ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2658 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 2659 | if (iwlagn_tx_skb(priv, skb)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2660 | dev_kfree_skb_any(skb); |
| 2661 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2662 | IWL_DEBUG_MACDUMP(priv, "leave\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2663 | } |
| 2664 | |
Johannes Berg | 2dedbf5 | 2011-04-05 09:41:50 -0700 | [diff] [blame] | 2665 | static void iwlagn_mac_update_tkip_key(struct ieee80211_hw *hw, |
| 2666 | struct ieee80211_vif *vif, |
| 2667 | struct ieee80211_key_conf *keyconf, |
| 2668 | struct ieee80211_sta *sta, |
| 2669 | u32 iv32, u16 *phase1key) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2670 | { |
Tomas Winkler | 9f58671 | 2008-11-12 13:14:05 -0800 | [diff] [blame] | 2671 | struct iwl_priv *priv = hw->priv; |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 2672 | struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv; |
| 2673 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2674 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
Emmanuel Grumbach | ab885f8 | 2008-03-20 15:06:43 +0200 | [diff] [blame] | 2675 | |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 2676 | iwl_update_tkip_key(priv, vif_priv->ctx, keyconf, sta, |
Johannes Berg | b3fbdcf | 2010-01-21 11:40:47 +0100 | [diff] [blame] | 2677 | iv32, phase1key); |
Emmanuel Grumbach | ab885f8 | 2008-03-20 15:06:43 +0200 | [diff] [blame] | 2678 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2679 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
Emmanuel Grumbach | ab885f8 | 2008-03-20 15:06:43 +0200 | [diff] [blame] | 2680 | } |
| 2681 | |
Johannes Berg | 2dedbf5 | 2011-04-05 09:41:50 -0700 | [diff] [blame] | 2682 | static int iwlagn_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, |
| 2683 | struct ieee80211_vif *vif, |
| 2684 | struct ieee80211_sta *sta, |
| 2685 | struct ieee80211_key_conf *key) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2686 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 2687 | struct iwl_priv *priv = hw->priv; |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 2688 | struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv; |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 2689 | struct iwl_rxon_context *ctx = vif_priv->ctx; |
Winkler, Tomas | 4298679 | 2009-01-19 15:30:22 -0800 | [diff] [blame] | 2690 | int ret; |
| 2691 | u8 sta_id; |
| 2692 | bool is_default_wep_key = false; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2693 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2694 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2695 | |
Don Fry | 9d143e9 | 2011-04-20 15:23:57 -0700 | [diff] [blame] | 2696 | if (iwlagn_mod_params.sw_crypto) { |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2697 | IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2698 | return -EOPNOTSUPP; |
| 2699 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2700 | |
Johannes Berg | 274102a | 2011-01-18 04:44:03 -0800 | [diff] [blame] | 2701 | /* |
| 2702 | * To support IBSS RSN, don't program group keys in IBSS, the |
| 2703 | * hardware will then not attempt to decrypt the frames. |
| 2704 | */ |
| 2705 | if (vif->type == NL80211_IFTYPE_ADHOC && |
| 2706 | !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) |
| 2707 | return -EOPNOTSUPP; |
| 2708 | |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 2709 | sta_id = iwl_sta_id_or_broadcast(priv, vif_priv->ctx, sta); |
Johannes Berg | 0af8bca | 2010-04-30 14:08:00 -0700 | [diff] [blame] | 2710 | if (sta_id == IWL_INVALID_STATION) |
| 2711 | return -EINVAL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2712 | |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 2713 | mutex_lock(&priv->mutex); |
Tomas Winkler | 2a421b9 | 2008-06-12 09:47:10 +0800 | [diff] [blame] | 2714 | iwl_scan_cancel_timeout(priv, 100); |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 2715 | |
Johannes Berg | a90178fa | 2010-03-30 02:44:16 -0700 | [diff] [blame] | 2716 | /* |
| 2717 | * 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] | 2718 | * so far, we are in legacy wep mode (group key only), otherwise we are |
| 2719 | * in 1X mode. |
Johannes Berg | a90178fa | 2010-03-30 02:44:16 -0700 | [diff] [blame] | 2720 | * In legacy wep mode, we use another host command to the uCode. |
| 2721 | */ |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 2722 | if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 || |
| 2723 | key->cipher == WLAN_CIPHER_SUITE_WEP104) && |
Johannes Berg | 54c8067 | 2010-08-18 09:35:21 -0700 | [diff] [blame] | 2724 | !sta) { |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 2725 | if (cmd == SET_KEY) |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 2726 | is_default_wep_key = !ctx->key_mapping_keys; |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 2727 | else |
Emmanuel Grumbach | ccc038a | 2008-05-15 13:54:09 +0800 | [diff] [blame] | 2728 | is_default_wep_key = |
| 2729 | (key->hw_key_idx == HW_KEY_DEFAULT); |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 2730 | } |
mabbas | 052c4b9 | 2007-10-25 17:15:43 +0800 | [diff] [blame] | 2731 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2732 | switch (cmd) { |
Emmanuel Grumbach | deb09c4 | 2008-03-19 16:41:41 -0700 | [diff] [blame] | 2733 | case SET_KEY: |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 2734 | if (is_default_wep_key) |
Johannes Berg | 2995baf | 2010-08-23 10:46:42 +0200 | [diff] [blame] | 2735 | ret = iwl_set_default_wep_key(priv, vif_priv->ctx, key); |
Emmanuel Grumbach | deb09c4 | 2008-03-19 16:41:41 -0700 | [diff] [blame] | 2736 | else |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 2737 | ret = iwl_set_dynamic_key(priv, vif_priv->ctx, |
| 2738 | key, sta_id); |
Emmanuel Grumbach | deb09c4 | 2008-03-19 16:41:41 -0700 | [diff] [blame] | 2739 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2740 | IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2741 | break; |
| 2742 | case DISABLE_KEY: |
Emmanuel Grumbach | 6974e36 | 2008-04-14 21:16:06 -0700 | [diff] [blame] | 2743 | if (is_default_wep_key) |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 2744 | ret = iwl_remove_default_wep_key(priv, ctx, key); |
Emmanuel Grumbach | deb09c4 | 2008-03-19 16:41:41 -0700 | [diff] [blame] | 2745 | else |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 2746 | ret = iwl_remove_dynamic_key(priv, ctx, key, sta_id); |
Emmanuel Grumbach | deb09c4 | 2008-03-19 16:41:41 -0700 | [diff] [blame] | 2747 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2748 | IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2749 | break; |
| 2750 | default: |
Emmanuel Grumbach | deb09c4 | 2008-03-19 16:41:41 -0700 | [diff] [blame] | 2751 | ret = -EINVAL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2752 | } |
| 2753 | |
Johannes Berg | 72e15d7 | 2010-02-19 11:42:32 -0800 | [diff] [blame] | 2754 | mutex_unlock(&priv->mutex); |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2755 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2756 | |
Emmanuel Grumbach | deb09c4 | 2008-03-19 16:41:41 -0700 | [diff] [blame] | 2757 | return ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2758 | } |
| 2759 | |
Johannes Berg | 2dedbf5 | 2011-04-05 09:41:50 -0700 | [diff] [blame] | 2760 | static int iwlagn_mac_ampdu_action(struct ieee80211_hw *hw, |
| 2761 | struct ieee80211_vif *vif, |
| 2762 | enum ieee80211_ampdu_mlme_action action, |
| 2763 | struct ieee80211_sta *sta, u16 tid, u16 *ssn, |
| 2764 | u8 buf_size) |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 2765 | { |
| 2766 | struct iwl_priv *priv = hw->priv; |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 2767 | int ret = -EINVAL; |
Johannes Berg | 7b09068 | 2011-01-19 02:53:54 -0800 | [diff] [blame] | 2768 | struct iwl_station_priv *sta_priv = (void *) sta->drv_priv; |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 2769 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2770 | 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] | 2771 | sta->addr, tid); |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 2772 | |
Wey-Yi Guy | 8895075 | 2011-06-06 12:05:46 -0700 | [diff] [blame] | 2773 | if (!(priv->cfg->sku & EEPROM_SKU_CAP_11N_ENABLE)) |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 2774 | return -EACCES; |
| 2775 | |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 2776 | mutex_lock(&priv->mutex); |
| 2777 | |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 2778 | switch (action) { |
| 2779 | case IEEE80211_AMPDU_RX_START: |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2780 | IWL_DEBUG_HT(priv, "start Rx\n"); |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 2781 | ret = iwl_sta_rx_agg_start(priv, sta, tid, *ssn); |
| 2782 | break; |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 2783 | case IEEE80211_AMPDU_RX_STOP: |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2784 | IWL_DEBUG_HT(priv, "stop Rx\n"); |
Johannes Berg | 619753f | 2010-04-30 11:30:46 -0700 | [diff] [blame] | 2785 | ret = iwl_sta_rx_agg_stop(priv, sta, tid); |
Wey-Yi Guy | 5c2207c | 2009-03-17 21:51:43 -0700 | [diff] [blame] | 2786 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 2787 | ret = 0; |
| 2788 | break; |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 2789 | case IEEE80211_AMPDU_TX_START: |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2790 | IWL_DEBUG_HT(priv, "start Tx\n"); |
Johannes Berg | 619753f | 2010-04-30 11:30:46 -0700 | [diff] [blame] | 2791 | ret = iwlagn_tx_agg_start(priv, vif, sta, tid, ssn); |
Wey-Yi Guy | d5a0ffa | 2010-03-04 13:38:59 -0800 | [diff] [blame] | 2792 | if (ret == 0) { |
| 2793 | priv->_agn.agg_tids_count++; |
| 2794 | IWL_DEBUG_HT(priv, "priv->_agn.agg_tids_count = %u\n", |
| 2795 | priv->_agn.agg_tids_count); |
| 2796 | } |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 2797 | break; |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 2798 | case IEEE80211_AMPDU_TX_STOP: |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 2799 | IWL_DEBUG_HT(priv, "stop Tx\n"); |
Johannes Berg | 619753f | 2010-04-30 11:30:46 -0700 | [diff] [blame] | 2800 | ret = iwlagn_tx_agg_stop(priv, vif, sta, tid); |
Wey-Yi Guy | d5a0ffa | 2010-03-04 13:38:59 -0800 | [diff] [blame] | 2801 | if ((ret == 0) && (priv->_agn.agg_tids_count > 0)) { |
| 2802 | priv->_agn.agg_tids_count--; |
| 2803 | IWL_DEBUG_HT(priv, "priv->_agn.agg_tids_count = %u\n", |
| 2804 | priv->_agn.agg_tids_count); |
| 2805 | } |
Wey-Yi Guy | 5c2207c | 2009-03-17 21:51:43 -0700 | [diff] [blame] | 2806 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 2807 | ret = 0; |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 2808 | if (priv->cfg->ht_params && |
| 2809 | priv->cfg->ht_params->use_rts_for_aggregation) { |
Johannes Berg | 94597ab | 2010-08-09 10:57:02 -0700 | [diff] [blame] | 2810 | /* |
| 2811 | * switch off RTS/CTS if it was previously enabled |
| 2812 | */ |
Johannes Berg | 94597ab | 2010-08-09 10:57:02 -0700 | [diff] [blame] | 2813 | sta_priv->lq_sta.lq.general_params.flags &= |
| 2814 | ~LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK; |
Johannes Berg | 7e6a588 | 2010-08-23 10:46:46 +0200 | [diff] [blame] | 2815 | iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif), |
| 2816 | &sta_priv->lq_sta.lq, CMD_ASYNC, false); |
Johannes Berg | 94597ab | 2010-08-09 10:57:02 -0700 | [diff] [blame] | 2817 | } |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 2818 | break; |
Wey-Yi Guy | f052797 | 2010-01-08 10:04:41 -0800 | [diff] [blame] | 2819 | case IEEE80211_AMPDU_TX_OPERATIONAL: |
Johannes Berg | c8823ec | 2011-03-15 11:33:03 -0700 | [diff] [blame] | 2820 | buf_size = min_t(int, buf_size, LINK_QUAL_AGG_FRAME_LIMIT_DEF); |
| 2821 | |
| 2822 | iwlagn_txq_agg_queue_setup(priv, sta, tid, buf_size); |
| 2823 | |
Johannes Berg | 7b09068 | 2011-01-19 02:53:54 -0800 | [diff] [blame] | 2824 | /* |
| 2825 | * If the limit is 0, then it wasn't initialised yet, |
| 2826 | * use the default. We can do that since we take the |
| 2827 | * minimum below, and we don't want to go above our |
| 2828 | * default due to hardware restrictions. |
| 2829 | */ |
| 2830 | if (sta_priv->max_agg_bufsize == 0) |
| 2831 | sta_priv->max_agg_bufsize = |
| 2832 | LINK_QUAL_AGG_FRAME_LIMIT_DEF; |
| 2833 | |
| 2834 | /* |
| 2835 | * Even though in theory the peer could have different |
| 2836 | * aggregation reorder buffer sizes for different sessions, |
| 2837 | * our ucode doesn't allow for that and has a global limit |
| 2838 | * for each station. Therefore, use the minimum of all the |
| 2839 | * aggregation sessions and our default value. |
| 2840 | */ |
| 2841 | sta_priv->max_agg_bufsize = |
| 2842 | min(sta_priv->max_agg_bufsize, buf_size); |
| 2843 | |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 2844 | if (priv->cfg->ht_params && |
| 2845 | priv->cfg->ht_params->use_rts_for_aggregation) { |
Wey-Yi Guy | cfecc6b | 2010-06-18 11:33:15 -0700 | [diff] [blame] | 2846 | /* |
| 2847 | * switch to RTS/CTS if it is the prefer protection |
| 2848 | * method for HT traffic |
| 2849 | */ |
Johannes Berg | 94597ab | 2010-08-09 10:57:02 -0700 | [diff] [blame] | 2850 | |
| 2851 | sta_priv->lq_sta.lq.general_params.flags |= |
| 2852 | LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK; |
Wey-Yi Guy | cfecc6b | 2010-06-18 11:33:15 -0700 | [diff] [blame] | 2853 | } |
Johannes Berg | 7b09068 | 2011-01-19 02:53:54 -0800 | [diff] [blame] | 2854 | |
| 2855 | sta_priv->lq_sta.lq.agg_params.agg_frame_cnt_limit = |
| 2856 | sta_priv->max_agg_bufsize; |
| 2857 | |
| 2858 | iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif), |
| 2859 | &sta_priv->lq_sta.lq, CMD_ASYNC, false); |
Wey-Yi Guy | 5bc9890 | 2011-05-27 08:40:32 -0700 | [diff] [blame] | 2860 | |
| 2861 | IWL_INFO(priv, "Tx aggregation enabled on ra = %pM tid = %d\n", |
| 2862 | sta->addr, tid); |
Wey-Yi Guy | cfecc6b | 2010-06-18 11:33:15 -0700 | [diff] [blame] | 2863 | ret = 0; |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 2864 | break; |
| 2865 | } |
Johannes Berg | 4620fef | 2010-06-16 03:30:27 -0700 | [diff] [blame] | 2866 | mutex_unlock(&priv->mutex); |
| 2867 | |
| 2868 | return ret; |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 2869 | } |
Tomas Winkler | 9f58671 | 2008-11-12 13:14:05 -0800 | [diff] [blame] | 2870 | |
Johannes Berg | 2dedbf5 | 2011-04-05 09:41:50 -0700 | [diff] [blame] | 2871 | static int iwlagn_mac_sta_add(struct ieee80211_hw *hw, |
| 2872 | struct ieee80211_vif *vif, |
| 2873 | struct ieee80211_sta *sta) |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 2874 | { |
| 2875 | struct iwl_priv *priv = hw->priv; |
| 2876 | struct iwl_station_priv *sta_priv = (void *)sta->drv_priv; |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 2877 | struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv; |
Johannes Berg | eafdfbd3 | 2010-04-29 04:43:04 -0700 | [diff] [blame] | 2878 | bool is_ap = vif->type == NL80211_IFTYPE_STATION; |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 2879 | int ret; |
| 2880 | u8 sta_id; |
| 2881 | |
| 2882 | IWL_DEBUG_INFO(priv, "received request to add station %pM\n", |
| 2883 | sta->addr); |
Reinette Chatre | da5ae1c | 2010-05-28 09:28:39 -0700 | [diff] [blame] | 2884 | mutex_lock(&priv->mutex); |
| 2885 | IWL_DEBUG_INFO(priv, "proceeding to add station %pM\n", |
| 2886 | sta->addr); |
| 2887 | sta_priv->common.sta_id = IWL_INVALID_STATION; |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 2888 | |
| 2889 | atomic_set(&sta_priv->pending_frames, 0); |
| 2890 | if (vif->type == NL80211_IFTYPE_AP) |
| 2891 | sta_priv->client = true; |
| 2892 | |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 2893 | ret = iwl_add_station_common(priv, vif_priv->ctx, sta->addr, |
Johannes Berg | 238d781 | 2010-08-23 10:46:45 +0200 | [diff] [blame] | 2894 | is_ap, sta, &sta_id); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 2895 | if (ret) { |
| 2896 | IWL_ERR(priv, "Unable to add station %pM (%d)\n", |
| 2897 | sta->addr, ret); |
| 2898 | /* Should we return success if return code is EEXIST ? */ |
Reinette Chatre | da5ae1c | 2010-05-28 09:28:39 -0700 | [diff] [blame] | 2899 | mutex_unlock(&priv->mutex); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 2900 | return ret; |
| 2901 | } |
| 2902 | |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 2903 | sta_priv->common.sta_id = sta_id; |
| 2904 | |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 2905 | /* Initialize rate scaling */ |
Frans Pop | 91dd6c2 | 2010-03-24 14:19:58 -0700 | [diff] [blame] | 2906 | IWL_DEBUG_INFO(priv, "Initializing rate scaling for station %pM\n", |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 2907 | sta->addr); |
| 2908 | iwl_rs_rate_init(priv, sta, sta_id); |
Reinette Chatre | da5ae1c | 2010-05-28 09:28:39 -0700 | [diff] [blame] | 2909 | mutex_unlock(&priv->mutex); |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 2910 | |
Johannes Berg | fd1af15 | 2010-04-30 11:30:43 -0700 | [diff] [blame] | 2911 | return 0; |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 2912 | } |
| 2913 | |
Johannes Berg | 2dedbf5 | 2011-04-05 09:41:50 -0700 | [diff] [blame] | 2914 | static void iwlagn_mac_channel_switch(struct ieee80211_hw *hw, |
| 2915 | struct ieee80211_channel_switch *ch_switch) |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 2916 | { |
| 2917 | struct iwl_priv *priv = hw->priv; |
| 2918 | const struct iwl_channel_info *ch_info; |
| 2919 | struct ieee80211_conf *conf = &hw->conf; |
Shanyu Zhao | aa2dc6b | 2010-07-28 13:40:39 -0700 | [diff] [blame] | 2920 | struct ieee80211_channel *channel = ch_switch->channel; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 2921 | struct iwl_ht_config *ht_conf = &priv->current_ht_config; |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 2922 | /* |
| 2923 | * MULTI-FIXME |
| 2924 | * When we add support for multiple interfaces, we need to |
| 2925 | * revisit this. The channel switch command in the device |
| 2926 | * only affects the BSS context, but what does that really |
| 2927 | * mean? And what if we get a CSA on the second interface? |
| 2928 | * This needs a lot of work. |
| 2929 | */ |
| 2930 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 2931 | u16 ch; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 2932 | |
| 2933 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
| 2934 | |
Stanislaw Gruszka | dc1a406 | 2011-03-31 17:36:27 +0200 | [diff] [blame] | 2935 | mutex_lock(&priv->mutex); |
| 2936 | |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 2937 | if (iwl_is_rfkill(priv)) |
Stanislaw Gruszka | dc1a406 | 2011-03-31 17:36:27 +0200 | [diff] [blame] | 2938 | goto out; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 2939 | |
| 2940 | if (test_bit(STATUS_EXIT_PENDING, &priv->status) || |
Stanislaw Gruszka | 6f213ff | 2011-06-02 18:17:15 +0200 | [diff] [blame] | 2941 | test_bit(STATUS_SCANNING, &priv->status) || |
| 2942 | test_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status)) |
Stanislaw Gruszka | dc1a406 | 2011-03-31 17:36:27 +0200 | [diff] [blame] | 2943 | goto out; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 2944 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 2945 | if (!iwl_is_associated_ctx(ctx)) |
Stanislaw Gruszka | dc1a406 | 2011-03-31 17:36:27 +0200 | [diff] [blame] | 2946 | goto out; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 2947 | |
Stanislaw Gruszka | f973f87 | 2011-06-02 16:46:20 +0200 | [diff] [blame] | 2948 | if (!priv->cfg->ops->lib->set_channel_switch) |
| 2949 | goto out; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 2950 | |
Stanislaw Gruszka | f973f87 | 2011-06-02 16:46:20 +0200 | [diff] [blame] | 2951 | ch = channel->hw_value; |
| 2952 | if (le16_to_cpu(ctx->active.channel) == ch) |
| 2953 | goto out; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 2954 | |
Stanislaw Gruszka | f973f87 | 2011-06-02 16:46:20 +0200 | [diff] [blame] | 2955 | ch_info = iwl_get_channel_info(priv, channel->band, ch); |
| 2956 | if (!is_channel_valid(ch_info)) { |
| 2957 | IWL_DEBUG_MAC80211(priv, "invalid channel\n"); |
| 2958 | goto out; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 2959 | } |
Stanislaw Gruszka | f973f87 | 2011-06-02 16:46:20 +0200 | [diff] [blame] | 2960 | |
| 2961 | spin_lock_irq(&priv->lock); |
| 2962 | |
| 2963 | priv->current_ht_config.smps = conf->smps_mode; |
| 2964 | |
| 2965 | /* Configure HT40 channels */ |
| 2966 | ctx->ht.enabled = conf_is_ht(conf); |
| 2967 | if (ctx->ht.enabled) { |
| 2968 | if (conf_is_ht40_minus(conf)) { |
| 2969 | ctx->ht.extension_chan_offset = |
| 2970 | IEEE80211_HT_PARAM_CHA_SEC_BELOW; |
| 2971 | ctx->ht.is_40mhz = true; |
| 2972 | } else if (conf_is_ht40_plus(conf)) { |
| 2973 | ctx->ht.extension_chan_offset = |
| 2974 | IEEE80211_HT_PARAM_CHA_SEC_ABOVE; |
| 2975 | ctx->ht.is_40mhz = true; |
| 2976 | } else { |
| 2977 | ctx->ht.extension_chan_offset = |
| 2978 | IEEE80211_HT_PARAM_CHA_SEC_NONE; |
| 2979 | ctx->ht.is_40mhz = false; |
| 2980 | } |
| 2981 | } else |
| 2982 | ctx->ht.is_40mhz = false; |
| 2983 | |
| 2984 | if ((le16_to_cpu(ctx->staging.channel) != ch)) |
| 2985 | ctx->staging.flags = 0; |
| 2986 | |
| 2987 | iwl_set_rxon_channel(priv, channel, ctx); |
| 2988 | iwl_set_rxon_ht(priv, ht_conf); |
| 2989 | iwl_set_flags_for_band(priv, ctx, channel->band, ctx->vif); |
| 2990 | |
| 2991 | spin_unlock_irq(&priv->lock); |
| 2992 | |
| 2993 | iwl_set_rate(priv); |
| 2994 | /* |
| 2995 | * at this point, staging_rxon has the |
| 2996 | * configuration for channel switch |
| 2997 | */ |
| 2998 | set_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status); |
| 2999 | priv->switch_channel = cpu_to_le16(ch); |
| 3000 | if (priv->cfg->ops->lib->set_channel_switch(priv, ch_switch)) { |
| 3001 | clear_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status); |
| 3002 | priv->switch_channel = 0; |
| 3003 | ieee80211_chswitch_done(ctx->vif, false); |
| 3004 | } |
| 3005 | |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3006 | out: |
| 3007 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 3008 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 3009 | } |
| 3010 | |
Johannes Berg | 2dedbf5 | 2011-04-05 09:41:50 -0700 | [diff] [blame] | 3011 | static void iwlagn_configure_filter(struct ieee80211_hw *hw, |
| 3012 | unsigned int changed_flags, |
| 3013 | unsigned int *total_flags, |
| 3014 | u64 multicast) |
Johannes Berg | 8b8ab9d | 2010-08-17 11:24:01 +0200 | [diff] [blame] | 3015 | { |
| 3016 | struct iwl_priv *priv = hw->priv; |
| 3017 | __le32 filter_or = 0, filter_nand = 0; |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3018 | struct iwl_rxon_context *ctx; |
Johannes Berg | 8b8ab9d | 2010-08-17 11:24:01 +0200 | [diff] [blame] | 3019 | |
| 3020 | #define CHK(test, flag) do { \ |
| 3021 | if (*total_flags & (test)) \ |
| 3022 | filter_or |= (flag); \ |
| 3023 | else \ |
| 3024 | filter_nand |= (flag); \ |
| 3025 | } while (0) |
| 3026 | |
| 3027 | IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n", |
| 3028 | changed_flags, *total_flags); |
| 3029 | |
| 3030 | CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK); |
Johannes Berg | bdb84fe | 2010-12-15 06:07:56 -0800 | [diff] [blame] | 3031 | /* Setting _just_ RXON_FILTER_CTL2HOST_MSK causes FH errors */ |
| 3032 | CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_PROMISC_MSK); |
Johannes Berg | 8b8ab9d | 2010-08-17 11:24:01 +0200 | [diff] [blame] | 3033 | CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK); |
| 3034 | |
| 3035 | #undef CHK |
| 3036 | |
| 3037 | mutex_lock(&priv->mutex); |
| 3038 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3039 | for_each_context(priv, ctx) { |
| 3040 | ctx->staging.filter_flags &= ~filter_nand; |
| 3041 | ctx->staging.filter_flags |= filter_or; |
Stanislaw Gruszka | 749ff4ef | 2010-10-22 17:04:27 +0200 | [diff] [blame] | 3042 | |
| 3043 | /* |
| 3044 | * Not committing directly because hardware can perform a scan, |
| 3045 | * but we'll eventually commit the filter flags change anyway. |
| 3046 | */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3047 | } |
Johannes Berg | 8b8ab9d | 2010-08-17 11:24:01 +0200 | [diff] [blame] | 3048 | |
| 3049 | mutex_unlock(&priv->mutex); |
| 3050 | |
| 3051 | /* |
| 3052 | * Receiving all multicast frames is always enabled by the |
| 3053 | * default flags setup in iwl_connection_init_rx_config() |
| 3054 | * since we currently do not support programming multicast |
| 3055 | * filters into the device. |
| 3056 | */ |
| 3057 | *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS | |
| 3058 | FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL; |
| 3059 | } |
| 3060 | |
Johannes Berg | 2dedbf5 | 2011-04-05 09:41:50 -0700 | [diff] [blame] | 3061 | static void iwlagn_mac_flush(struct ieee80211_hw *hw, bool drop) |
Wey-Yi Guy | 716c74b | 2010-06-24 13:22:36 -0700 | [diff] [blame] | 3062 | { |
| 3063 | struct iwl_priv *priv = hw->priv; |
| 3064 | |
| 3065 | mutex_lock(&priv->mutex); |
| 3066 | IWL_DEBUG_MAC80211(priv, "enter\n"); |
| 3067 | |
Wey-Yi Guy | 716c74b | 2010-06-24 13:22:36 -0700 | [diff] [blame] | 3068 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) { |
| 3069 | IWL_DEBUG_TX(priv, "Aborting flush due to device shutdown\n"); |
| 3070 | goto done; |
| 3071 | } |
| 3072 | if (iwl_is_rfkill(priv)) { |
| 3073 | IWL_DEBUG_TX(priv, "Aborting flush due to RF Kill\n"); |
| 3074 | goto done; |
| 3075 | } |
| 3076 | |
| 3077 | /* |
| 3078 | * mac80211 will not push any more frames for transmit |
| 3079 | * until the flush is completed |
| 3080 | */ |
| 3081 | if (drop) { |
| 3082 | IWL_DEBUG_MAC80211(priv, "send flush command\n"); |
Wey-Yi Guy | c68744f | 2011-06-18 08:03:18 -0700 | [diff] [blame] | 3083 | if (iwlagn_txfifo_flush(priv, IWL_DROP_ALL)) { |
Wey-Yi Guy | 716c74b | 2010-06-24 13:22:36 -0700 | [diff] [blame] | 3084 | IWL_ERR(priv, "flush request fail\n"); |
| 3085 | goto done; |
| 3086 | } |
| 3087 | } |
| 3088 | IWL_DEBUG_MAC80211(priv, "wait transmit/flush all frames\n"); |
| 3089 | iwlagn_wait_tx_queue_empty(priv); |
| 3090 | done: |
| 3091 | mutex_unlock(&priv->mutex); |
| 3092 | IWL_DEBUG_MAC80211(priv, "leave\n"); |
| 3093 | } |
| 3094 | |
Johannes Berg | 9b9190d | 2011-01-06 08:07:10 -0800 | [diff] [blame] | 3095 | static void iwlagn_disable_roc(struct iwl_priv *priv) |
| 3096 | { |
| 3097 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_PAN]; |
| 3098 | struct ieee80211_channel *chan = ACCESS_ONCE(priv->hw->conf.channel); |
| 3099 | |
| 3100 | lockdep_assert_held(&priv->mutex); |
| 3101 | |
| 3102 | if (!ctx->is_active) |
| 3103 | return; |
| 3104 | |
| 3105 | ctx->staging.dev_type = RXON_DEV_TYPE_2STA; |
| 3106 | ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
| 3107 | iwl_set_rxon_channel(priv, chan, ctx); |
| 3108 | iwl_set_flags_for_band(priv, ctx, chan->band, NULL); |
| 3109 | |
| 3110 | priv->_agn.hw_roc_channel = NULL; |
| 3111 | |
Wey-Yi Guy | 805a3b8 | 2011-06-03 07:54:16 -0700 | [diff] [blame] | 3112 | iwlagn_commit_rxon(priv, ctx); |
Johannes Berg | 9b9190d | 2011-01-06 08:07:10 -0800 | [diff] [blame] | 3113 | |
| 3114 | ctx->is_active = false; |
| 3115 | } |
| 3116 | |
| 3117 | static void iwlagn_bg_roc_done(struct work_struct *work) |
| 3118 | { |
| 3119 | struct iwl_priv *priv = container_of(work, struct iwl_priv, |
| 3120 | _agn.hw_roc_work.work); |
| 3121 | |
| 3122 | mutex_lock(&priv->mutex); |
| 3123 | ieee80211_remain_on_channel_expired(priv->hw); |
| 3124 | iwlagn_disable_roc(priv); |
| 3125 | mutex_unlock(&priv->mutex); |
| 3126 | } |
| 3127 | |
| 3128 | static int iwl_mac_remain_on_channel(struct ieee80211_hw *hw, |
| 3129 | struct ieee80211_channel *channel, |
| 3130 | enum nl80211_channel_type channel_type, |
| 3131 | int duration) |
| 3132 | { |
| 3133 | struct iwl_priv *priv = hw->priv; |
| 3134 | int err = 0; |
| 3135 | |
| 3136 | if (!(priv->valid_contexts & BIT(IWL_RXON_CTX_PAN))) |
| 3137 | return -EOPNOTSUPP; |
| 3138 | |
| 3139 | if (!(priv->contexts[IWL_RXON_CTX_PAN].interface_modes & |
| 3140 | BIT(NL80211_IFTYPE_P2P_CLIENT))) |
| 3141 | return -EOPNOTSUPP; |
| 3142 | |
| 3143 | mutex_lock(&priv->mutex); |
| 3144 | |
| 3145 | if (priv->contexts[IWL_RXON_CTX_PAN].is_active || |
| 3146 | test_bit(STATUS_SCAN_HW, &priv->status)) { |
| 3147 | err = -EBUSY; |
| 3148 | goto out; |
| 3149 | } |
| 3150 | |
| 3151 | priv->contexts[IWL_RXON_CTX_PAN].is_active = true; |
| 3152 | priv->_agn.hw_roc_channel = channel; |
| 3153 | priv->_agn.hw_roc_chantype = channel_type; |
| 3154 | priv->_agn.hw_roc_duration = DIV_ROUND_UP(duration * 1000, 1024); |
Wey-Yi Guy | 805a3b8 | 2011-06-03 07:54:16 -0700 | [diff] [blame] | 3155 | iwlagn_commit_rxon(priv, &priv->contexts[IWL_RXON_CTX_PAN]); |
Johannes Berg | 9b9190d | 2011-01-06 08:07:10 -0800 | [diff] [blame] | 3156 | queue_delayed_work(priv->workqueue, &priv->_agn.hw_roc_work, |
| 3157 | msecs_to_jiffies(duration + 20)); |
| 3158 | |
Johannes Berg | 9407391 | 2011-01-06 08:07:11 -0800 | [diff] [blame] | 3159 | msleep(IWL_MIN_SLOT_TIME); /* TU is almost ms */ |
Johannes Berg | 9b9190d | 2011-01-06 08:07:10 -0800 | [diff] [blame] | 3160 | ieee80211_ready_on_channel(priv->hw); |
| 3161 | |
| 3162 | out: |
| 3163 | mutex_unlock(&priv->mutex); |
| 3164 | |
| 3165 | return err; |
| 3166 | } |
| 3167 | |
| 3168 | static int iwl_mac_cancel_remain_on_channel(struct ieee80211_hw *hw) |
| 3169 | { |
| 3170 | struct iwl_priv *priv = hw->priv; |
| 3171 | |
| 3172 | if (!(priv->valid_contexts & BIT(IWL_RXON_CTX_PAN))) |
| 3173 | return -EOPNOTSUPP; |
| 3174 | |
| 3175 | cancel_delayed_work_sync(&priv->_agn.hw_roc_work); |
| 3176 | |
| 3177 | mutex_lock(&priv->mutex); |
| 3178 | iwlagn_disable_roc(priv); |
| 3179 | mutex_unlock(&priv->mutex); |
| 3180 | |
| 3181 | return 0; |
| 3182 | } |
| 3183 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3184 | /***************************************************************************** |
| 3185 | * |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3186 | * driver setup and teardown |
| 3187 | * |
| 3188 | *****************************************************************************/ |
| 3189 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 3190 | static void iwl_setup_deferred_work(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3191 | { |
Reinette Chatre | d21050c | 2009-02-13 11:51:18 -0800 | [diff] [blame] | 3192 | priv->workqueue = create_singlethread_workqueue(DRV_NAME); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3193 | |
| 3194 | init_waitqueue_head(&priv->wait_command_queue); |
| 3195 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3196 | INIT_WORK(&priv->restart, iwl_bg_restart); |
| 3197 | INIT_WORK(&priv->rx_replenish, iwl_bg_rx_replenish); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3198 | INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update); |
Emmanuel Grumbach | 16e727e | 2008-06-12 09:46:52 +0800 | [diff] [blame] | 3199 | 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] | 3200 | INIT_WORK(&priv->tx_flush, iwl_bg_tx_flush); |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 3201 | INIT_WORK(&priv->bt_full_concurrency, iwl_bg_bt_full_concurrency); |
Wey-Yi Guy | fbba941 | 2010-08-23 07:57:10 -0700 | [diff] [blame] | 3202 | INIT_WORK(&priv->bt_runtime_config, iwl_bg_bt_runtime_config); |
Johannes Berg | 9b9190d | 2011-01-06 08:07:10 -0800 | [diff] [blame] | 3203 | INIT_DELAYED_WORK(&priv->_agn.hw_roc_work, iwlagn_bg_roc_done); |
Tomas Winkler | 2a421b9 | 2008-06-12 09:47:10 +0800 | [diff] [blame] | 3204 | |
Tomas Winkler | 2a421b9 | 2008-06-12 09:47:10 +0800 | [diff] [blame] | 3205 | iwl_setup_scan_deferred_work(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3206 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 3207 | if (priv->cfg->ops->lib->setup_deferred_work) |
| 3208 | priv->cfg->ops->lib->setup_deferred_work(priv); |
| 3209 | |
| 3210 | init_timer(&priv->statistics_periodic); |
| 3211 | priv->statistics_periodic.data = (unsigned long)priv; |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3212 | priv->statistics_periodic.function = iwl_bg_statistics_periodic; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3213 | |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 3214 | init_timer(&priv->ucode_trace); |
| 3215 | priv->ucode_trace.data = (unsigned long)priv; |
| 3216 | priv->ucode_trace.function = iwl_bg_ucode_trace; |
| 3217 | |
Stanislaw Gruszka | 22de94d | 2010-12-03 15:41:48 +0100 | [diff] [blame] | 3218 | init_timer(&priv->watchdog); |
| 3219 | priv->watchdog.data = (unsigned long)priv; |
| 3220 | priv->watchdog.function = iwl_bg_watchdog; |
Wey-Yi Guy | b74e31a | 2010-03-01 17:23:50 -0800 | [diff] [blame] | 3221 | |
Wey-Yi Guy | d6b8061 | 2011-03-21 16:53:38 -0700 | [diff] [blame] | 3222 | tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long)) |
| 3223 | iwl_irq_tasklet, (unsigned long)priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3224 | } |
| 3225 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 3226 | static void iwl_cancel_deferred_work(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3227 | { |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 3228 | if (priv->cfg->ops->lib->cancel_deferred_work) |
| 3229 | priv->cfg->ops->lib->cancel_deferred_work(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3230 | |
Wey-Yi Guy | 815e629 | 2010-06-03 10:14:01 -0700 | [diff] [blame] | 3231 | cancel_work_sync(&priv->run_time_calib_work); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3232 | cancel_work_sync(&priv->beacon_update); |
Stanislaw Gruszka | e7e16b9 | 2010-09-13 14:46:41 +0200 | [diff] [blame] | 3233 | |
| 3234 | iwl_cancel_scan_deferred_work(priv); |
| 3235 | |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 3236 | cancel_work_sync(&priv->bt_full_concurrency); |
Wey-Yi Guy | fbba941 | 2010-08-23 07:57:10 -0700 | [diff] [blame] | 3237 | cancel_work_sync(&priv->bt_runtime_config); |
Stanislaw Gruszka | e7e16b9 | 2010-09-13 14:46:41 +0200 | [diff] [blame] | 3238 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 3239 | del_timer_sync(&priv->statistics_periodic); |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 3240 | del_timer_sync(&priv->ucode_trace); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3241 | } |
| 3242 | |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 3243 | static void iwl_init_hw_rates(struct iwl_priv *priv, |
| 3244 | struct ieee80211_rate *rates) |
| 3245 | { |
| 3246 | int i; |
| 3247 | |
| 3248 | for (i = 0; i < IWL_RATE_COUNT_LEGACY; i++) { |
| 3249 | rates[i].bitrate = iwl_rates[i].ieee * 5; |
| 3250 | rates[i].hw_value = i; /* Rate scaling will work on indexes */ |
| 3251 | rates[i].hw_value_short = i; |
| 3252 | rates[i].flags = 0; |
| 3253 | if ((i >= IWL_FIRST_CCK_RATE) && (i <= IWL_LAST_CCK_RATE)) { |
| 3254 | /* |
| 3255 | * If CCK != 1M then set short preamble rate flag. |
| 3256 | */ |
| 3257 | rates[i].flags |= |
| 3258 | (iwl_rates[i].plcp == IWL_RATE_1M_PLCP) ? |
| 3259 | 0 : IEEE80211_RATE_SHORT_PREAMBLE; |
| 3260 | } |
| 3261 | } |
| 3262 | } |
| 3263 | |
| 3264 | static int iwl_init_drv(struct iwl_priv *priv) |
| 3265 | { |
| 3266 | int ret; |
| 3267 | |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 3268 | spin_lock_init(&priv->sta_lock); |
| 3269 | spin_lock_init(&priv->hcmd_lock); |
| 3270 | |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 3271 | mutex_init(&priv->mutex); |
| 3272 | |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 3273 | priv->ieee_channels = NULL; |
| 3274 | priv->ieee_rates = NULL; |
| 3275 | priv->band = IEEE80211_BAND_2GHZ; |
| 3276 | |
| 3277 | priv->iw_mode = NL80211_IFTYPE_STATION; |
Johannes Berg | ba37a3d | 2009-12-10 14:37:27 -0800 | [diff] [blame] | 3278 | priv->current_ht_config.smps = IEEE80211_SMPS_STATIC; |
Wey-Yi Guy | a13d276 | 2010-01-22 14:22:42 -0800 | [diff] [blame] | 3279 | priv->missed_beacon_threshold = IWL_MISSED_BEACON_THRESHOLD_DEF; |
Wey-Yi Guy | d5a0ffa | 2010-03-04 13:38:59 -0800 | [diff] [blame] | 3280 | priv->_agn.agg_tids_count = 0; |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 3281 | |
Wey-Yi Guy | 8a472da | 2010-02-18 22:03:06 -0800 | [diff] [blame] | 3282 | /* initialize force reset */ |
| 3283 | priv->force_reset[IWL_RF_RESET].reset_duration = |
| 3284 | IWL_DELAY_NEXT_FORCE_RF_RESET; |
| 3285 | priv->force_reset[IWL_FW_RESET].reset_duration = |
| 3286 | IWL_DELAY_NEXT_FORCE_FW_RELOAD; |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 3287 | |
Stanislaw Gruszka | 410f2bb | 2011-03-04 17:51:51 +0100 | [diff] [blame] | 3288 | priv->rx_statistics_jiffies = jiffies; |
| 3289 | |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 3290 | /* Choose which receivers/antennas to use */ |
| 3291 | if (priv->cfg->ops->hcmd->set_rxon_chain) |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3292 | priv->cfg->ops->hcmd->set_rxon_chain(priv, |
| 3293 | &priv->contexts[IWL_RXON_CTX_BSS]); |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 3294 | |
| 3295 | iwl_init_scan_params(priv); |
| 3296 | |
Wey-Yi Guy | 22bf59a | 2010-08-23 07:57:11 -0700 | [diff] [blame] | 3297 | /* init bt coex */ |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 3298 | if (priv->cfg->bt_params && |
| 3299 | priv->cfg->bt_params->advanced_bt_coexist) { |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 3300 | priv->kill_ack_mask = IWLAGN_BT_KILL_ACK_MASK_DEFAULT; |
| 3301 | priv->kill_cts_mask = IWLAGN_BT_KILL_CTS_MASK_DEFAULT; |
| 3302 | priv->bt_valid = IWLAGN_BT_ALL_VALID_MSK; |
Wey-Yi Guy | 22bf59a | 2010-08-23 07:57:11 -0700 | [diff] [blame] | 3303 | priv->bt_on_thresh = BT_ON_THRESHOLD_DEF; |
| 3304 | priv->bt_duration = BT_DURATION_LIMIT_DEF; |
| 3305 | priv->dynamic_frag_thresh = BT_FRAG_THRESHOLD_DEF; |
Wey-Yi Guy | 22bf59a | 2010-08-23 07:57:11 -0700 | [diff] [blame] | 3306 | } |
| 3307 | |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 3308 | ret = iwl_init_channel_map(priv); |
| 3309 | if (ret) { |
| 3310 | IWL_ERR(priv, "initializing regulatory failed: %d\n", ret); |
| 3311 | goto err; |
| 3312 | } |
| 3313 | |
| 3314 | ret = iwlcore_init_geos(priv); |
| 3315 | if (ret) { |
| 3316 | IWL_ERR(priv, "initializing geos failed: %d\n", ret); |
| 3317 | goto err_free_channel_map; |
| 3318 | } |
| 3319 | iwl_init_hw_rates(priv, priv->ieee_rates); |
| 3320 | |
| 3321 | return 0; |
| 3322 | |
| 3323 | err_free_channel_map: |
| 3324 | iwl_free_channel_map(priv); |
| 3325 | err: |
| 3326 | return ret; |
| 3327 | } |
| 3328 | |
| 3329 | static void iwl_uninit_drv(struct iwl_priv *priv) |
| 3330 | { |
| 3331 | iwl_calib_free_results(priv); |
| 3332 | iwlcore_free_geos(priv); |
| 3333 | iwl_free_channel_map(priv); |
Johannes Berg | 811ecc9 | 2010-04-06 04:12:41 -0700 | [diff] [blame] | 3334 | kfree(priv->scan_cmd); |
Johannes Berg | 4ce7cc2 | 2011-05-13 11:57:40 -0700 | [diff] [blame] | 3335 | kfree(priv->beacon_cmd); |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 3336 | } |
| 3337 | |
Johannes Berg | dc21b54 | 2010-10-23 09:15:39 -0700 | [diff] [blame] | 3338 | struct ieee80211_ops iwlagn_hw_ops = { |
Johannes Berg | 2295c66 | 2010-10-23 09:15:41 -0700 | [diff] [blame] | 3339 | .tx = iwlagn_mac_tx, |
| 3340 | .start = iwlagn_mac_start, |
| 3341 | .stop = iwlagn_mac_stop, |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3342 | .add_interface = iwl_mac_add_interface, |
| 3343 | .remove_interface = iwl_mac_remove_interface, |
Johannes Berg | d4daaea | 2010-10-23 09:15:43 -0700 | [diff] [blame] | 3344 | .change_interface = iwl_mac_change_interface, |
Johannes Berg | 2295c66 | 2010-10-23 09:15:41 -0700 | [diff] [blame] | 3345 | .config = iwlagn_mac_config, |
Johannes Berg | 8b8ab9d | 2010-08-17 11:24:01 +0200 | [diff] [blame] | 3346 | .configure_filter = iwlagn_configure_filter, |
Johannes Berg | 2295c66 | 2010-10-23 09:15:41 -0700 | [diff] [blame] | 3347 | .set_key = iwlagn_mac_set_key, |
| 3348 | .update_tkip_key = iwlagn_mac_update_tkip_key, |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3349 | .conf_tx = iwl_mac_conf_tx, |
Johannes Berg | 2295c66 | 2010-10-23 09:15:41 -0700 | [diff] [blame] | 3350 | .bss_info_changed = iwlagn_bss_info_changed, |
| 3351 | .ampdu_action = iwlagn_mac_ampdu_action, |
Johannes Berg | 6ab10ff | 2009-11-13 11:56:37 -0800 | [diff] [blame] | 3352 | .hw_scan = iwl_mac_hw_scan, |
Johannes Berg | 2295c66 | 2010-10-23 09:15:41 -0700 | [diff] [blame] | 3353 | .sta_notify = iwlagn_mac_sta_notify, |
Reinette Chatre | fe6b23d | 2010-02-22 16:24:47 -0800 | [diff] [blame] | 3354 | .sta_add = iwlagn_mac_sta_add, |
| 3355 | .sta_remove = iwl_mac_sta_remove, |
Johannes Berg | 2295c66 | 2010-10-23 09:15:41 -0700 | [diff] [blame] | 3356 | .channel_switch = iwlagn_mac_channel_switch, |
| 3357 | .flush = iwlagn_mac_flush, |
Johannes Berg | a85d7cc | 2010-07-31 08:34:10 -0700 | [diff] [blame] | 3358 | .tx_last_beacon = iwl_mac_tx_last_beacon, |
Johannes Berg | 9b9190d | 2011-01-06 08:07:10 -0800 | [diff] [blame] | 3359 | .remain_on_channel = iwl_mac_remain_on_channel, |
| 3360 | .cancel_remain_on_channel = iwl_mac_cancel_remain_on_channel, |
Johannes Berg | 266af4c7 | 2011-03-10 20:13:26 -0800 | [diff] [blame] | 3361 | .offchannel_tx = iwl_mac_offchannel_tx, |
| 3362 | .offchannel_tx_cancel_wait = iwl_mac_offchannel_tx_cancel_wait, |
Cindy H. Kao | 4613e72 | 2011-05-06 10:40:15 -0700 | [diff] [blame] | 3363 | CFG80211_TESTMODE_CMD(iwl_testmode_cmd) |
Wey-Yi Guy | eb64dca | 2011-05-31 08:03:02 -0700 | [diff] [blame] | 3364 | CFG80211_TESTMODE_DUMP(iwl_testmode_dump) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3365 | }; |
| 3366 | |
Johannes Berg | e98a130 | 2011-04-05 09:42:08 -0700 | [diff] [blame] | 3367 | static u32 iwl_hw_detect(struct iwl_priv *priv) |
Wey-Yi Guy | 3867fe0 | 2010-07-31 08:34:05 -0700 | [diff] [blame] | 3368 | { |
Johannes Berg | 02a7fa0 | 2011-04-05 09:42:12 -0700 | [diff] [blame] | 3369 | return iwl_read32(priv, CSR_HW_REV); |
Wey-Yi Guy | 3867fe0 | 2010-07-31 08:34:05 -0700 | [diff] [blame] | 3370 | } |
| 3371 | |
Wey-Yi Guy | 07d4f1a | 2010-07-31 08:34:08 -0700 | [diff] [blame] | 3372 | static int iwl_set_hw_params(struct iwl_priv *priv) |
| 3373 | { |
| 3374 | priv->hw_params.max_rxq_size = RX_QUEUE_SIZE; |
| 3375 | priv->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG; |
Don Fry | 9d143e9 | 2011-04-20 15:23:57 -0700 | [diff] [blame] | 3376 | if (iwlagn_mod_params.amsdu_size_8K) |
Wey-Yi Guy | 07d4f1a | 2010-07-31 08:34:08 -0700 | [diff] [blame] | 3377 | priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_8K); |
| 3378 | else |
| 3379 | priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_4K); |
| 3380 | |
| 3381 | priv->hw_params.max_beacon_itrvl = IWL_MAX_UCODE_BEACON_INTERVAL; |
| 3382 | |
Don Fry | 9d143e9 | 2011-04-20 15:23:57 -0700 | [diff] [blame] | 3383 | if (iwlagn_mod_params.disable_11n) |
Wey-Yi Guy | 8895075 | 2011-06-06 12:05:46 -0700 | [diff] [blame] | 3384 | priv->cfg->sku &= ~EEPROM_SKU_CAP_11N_ENABLE; |
Wey-Yi Guy | 07d4f1a | 2010-07-31 08:34:08 -0700 | [diff] [blame] | 3385 | |
| 3386 | /* Device-specific setup */ |
| 3387 | return priv->cfg->ops->lib->set_hw_params(priv); |
| 3388 | } |
| 3389 | |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 3390 | static const u8 iwlagn_bss_ac_to_fifo[] = { |
| 3391 | IWL_TX_FIFO_VO, |
| 3392 | IWL_TX_FIFO_VI, |
| 3393 | IWL_TX_FIFO_BE, |
| 3394 | IWL_TX_FIFO_BK, |
| 3395 | }; |
| 3396 | |
| 3397 | static const u8 iwlagn_bss_ac_to_queue[] = { |
| 3398 | 0, 1, 2, 3, |
| 3399 | }; |
| 3400 | |
| 3401 | static const u8 iwlagn_pan_ac_to_fifo[] = { |
| 3402 | IWL_TX_FIFO_VO_IPAN, |
| 3403 | IWL_TX_FIFO_VI_IPAN, |
| 3404 | IWL_TX_FIFO_BE_IPAN, |
| 3405 | IWL_TX_FIFO_BK_IPAN, |
| 3406 | }; |
| 3407 | |
| 3408 | static const u8 iwlagn_pan_ac_to_queue[] = { |
| 3409 | 7, 6, 5, 4, |
| 3410 | }; |
| 3411 | |
Wey-Yi Guy | 119ea18 | 2011-04-18 09:34:06 -0700 | [diff] [blame] | 3412 | /* This function both allocates and initializes hw and priv. */ |
| 3413 | static struct ieee80211_hw *iwl_alloc_all(struct iwl_cfg *cfg) |
| 3414 | { |
| 3415 | struct iwl_priv *priv; |
| 3416 | /* mac80211 allocates memory for this device instance, including |
| 3417 | * space for this driver's private structure */ |
| 3418 | struct ieee80211_hw *hw; |
| 3419 | |
| 3420 | hw = ieee80211_alloc_hw(sizeof(struct iwl_priv), &iwlagn_hw_ops); |
| 3421 | if (hw == NULL) { |
| 3422 | pr_err("%s: Can not allocate network device\n", |
| 3423 | cfg->name); |
| 3424 | goto out; |
| 3425 | } |
| 3426 | |
| 3427 | priv = hw->priv; |
| 3428 | priv->hw = hw; |
| 3429 | |
| 3430 | out: |
| 3431 | return hw; |
| 3432 | } |
| 3433 | |
Wey-Yi Guy | b2ea345 | 2011-06-07 08:53:14 -0700 | [diff] [blame] | 3434 | static void iwl_init_context(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3435 | { |
Wey-Yi Guy | b2ea345 | 2011-06-07 08:53:14 -0700 | [diff] [blame] | 3436 | int i; |
Assaf Krauss | 1d0a082 | 2008-03-14 10:38:48 -0700 | [diff] [blame] | 3437 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 3438 | /* |
| 3439 | * The default context is always valid, |
| 3440 | * more may be discovered when firmware |
| 3441 | * is loaded. |
| 3442 | */ |
| 3443 | priv->valid_contexts = BIT(IWL_RXON_CTX_BSS); |
| 3444 | |
| 3445 | for (i = 0; i < NUM_IWL_RXON_CTX; i++) |
| 3446 | priv->contexts[i].ctxid = i; |
| 3447 | |
Johannes Berg | 763cc3b | 2010-09-03 06:32:21 -0700 | [diff] [blame] | 3448 | priv->contexts[IWL_RXON_CTX_BSS].always_active = true; |
| 3449 | priv->contexts[IWL_RXON_CTX_BSS].is_active = true; |
Johannes Berg | 8f2d3d2 | 2010-08-23 10:46:37 +0200 | [diff] [blame] | 3450 | priv->contexts[IWL_RXON_CTX_BSS].rxon_cmd = REPLY_RXON; |
| 3451 | priv->contexts[IWL_RXON_CTX_BSS].rxon_timing_cmd = REPLY_RXON_TIMING; |
| 3452 | priv->contexts[IWL_RXON_CTX_BSS].rxon_assoc_cmd = REPLY_RXON_ASSOC; |
Johannes Berg | 8dfdb9d | 2010-08-23 10:46:38 +0200 | [diff] [blame] | 3453 | priv->contexts[IWL_RXON_CTX_BSS].qos_cmd = REPLY_QOS_PARAM; |
Johannes Berg | 2995baf | 2010-08-23 10:46:42 +0200 | [diff] [blame] | 3454 | priv->contexts[IWL_RXON_CTX_BSS].ap_sta_id = IWL_AP_ID; |
Johannes Berg | c10afb6 | 2010-08-23 10:46:43 +0200 | [diff] [blame] | 3455 | priv->contexts[IWL_RXON_CTX_BSS].wep_key_cmd = REPLY_WEPKEY; |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 3456 | priv->contexts[IWL_RXON_CTX_BSS].ac_to_fifo = iwlagn_bss_ac_to_fifo; |
| 3457 | 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] | 3458 | priv->contexts[IWL_RXON_CTX_BSS].exclusive_interface_modes = |
| 3459 | BIT(NL80211_IFTYPE_ADHOC); |
| 3460 | priv->contexts[IWL_RXON_CTX_BSS].interface_modes = |
| 3461 | BIT(NL80211_IFTYPE_STATION); |
Johannes Berg | 2295c66 | 2010-10-23 09:15:41 -0700 | [diff] [blame] | 3462 | priv->contexts[IWL_RXON_CTX_BSS].ap_devtype = RXON_DEV_TYPE_AP; |
Johannes Berg | d0fe478 | 2010-08-23 10:46:58 +0200 | [diff] [blame] | 3463 | priv->contexts[IWL_RXON_CTX_BSS].ibss_devtype = RXON_DEV_TYPE_IBSS; |
| 3464 | priv->contexts[IWL_RXON_CTX_BSS].station_devtype = RXON_DEV_TYPE_ESS; |
| 3465 | priv->contexts[IWL_RXON_CTX_BSS].unused_devtype = RXON_DEV_TYPE_ESS; |
Johannes Berg | ece9c4e | 2010-08-23 10:46:49 +0200 | [diff] [blame] | 3466 | |
| 3467 | priv->contexts[IWL_RXON_CTX_PAN].rxon_cmd = REPLY_WIPAN_RXON; |
Wey-Yi Guy | b2ea345 | 2011-06-07 08:53:14 -0700 | [diff] [blame] | 3468 | priv->contexts[IWL_RXON_CTX_PAN].rxon_timing_cmd = |
| 3469 | REPLY_WIPAN_RXON_TIMING; |
| 3470 | priv->contexts[IWL_RXON_CTX_PAN].rxon_assoc_cmd = |
| 3471 | REPLY_WIPAN_RXON_ASSOC; |
Johannes Berg | ece9c4e | 2010-08-23 10:46:49 +0200 | [diff] [blame] | 3472 | priv->contexts[IWL_RXON_CTX_PAN].qos_cmd = REPLY_WIPAN_QOS_PARAM; |
| 3473 | priv->contexts[IWL_RXON_CTX_PAN].ap_sta_id = IWL_AP_ID_PAN; |
| 3474 | priv->contexts[IWL_RXON_CTX_PAN].wep_key_cmd = REPLY_WIPAN_WEPKEY; |
| 3475 | priv->contexts[IWL_RXON_CTX_PAN].bcast_sta_id = IWLAGN_PAN_BCAST_ID; |
| 3476 | priv->contexts[IWL_RXON_CTX_PAN].station_flags = STA_FLG_PAN_STATION; |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 3477 | priv->contexts[IWL_RXON_CTX_PAN].ac_to_fifo = iwlagn_pan_ac_to_fifo; |
| 3478 | priv->contexts[IWL_RXON_CTX_PAN].ac_to_queue = iwlagn_pan_ac_to_queue; |
| 3479 | priv->contexts[IWL_RXON_CTX_PAN].mcast_queue = IWL_IPAN_MCAST_QUEUE; |
Johannes Berg | d0fe478 | 2010-08-23 10:46:58 +0200 | [diff] [blame] | 3480 | priv->contexts[IWL_RXON_CTX_PAN].interface_modes = |
| 3481 | BIT(NL80211_IFTYPE_STATION) | BIT(NL80211_IFTYPE_AP); |
Wey-Yi Guy | f35c0c5 | 2011-01-13 17:09:29 -0800 | [diff] [blame] | 3482 | #ifdef CONFIG_IWL_P2P |
| 3483 | priv->contexts[IWL_RXON_CTX_PAN].interface_modes |= |
| 3484 | BIT(NL80211_IFTYPE_P2P_CLIENT) | BIT(NL80211_IFTYPE_P2P_GO); |
| 3485 | #endif |
Johannes Berg | d0fe478 | 2010-08-23 10:46:58 +0200 | [diff] [blame] | 3486 | priv->contexts[IWL_RXON_CTX_PAN].ap_devtype = RXON_DEV_TYPE_CP; |
| 3487 | priv->contexts[IWL_RXON_CTX_PAN].station_devtype = RXON_DEV_TYPE_2STA; |
| 3488 | priv->contexts[IWL_RXON_CTX_PAN].unused_devtype = RXON_DEV_TYPE_P2P; |
Johannes Berg | ece9c4e | 2010-08-23 10:46:49 +0200 | [diff] [blame] | 3489 | |
| 3490 | BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2); |
Wey-Yi Guy | b2ea345 | 2011-06-07 08:53:14 -0700 | [diff] [blame] | 3491 | } |
| 3492 | |
Emmanuel Grumbach | a48709c | 2011-05-31 08:22:30 +0300 | [diff] [blame] | 3493 | int iwl_probe(void *bus_specific, struct iwl_bus_ops *bus_ops, |
| 3494 | struct iwl_cfg *cfg) |
Wey-Yi Guy | b2ea345 | 2011-06-07 08:53:14 -0700 | [diff] [blame] | 3495 | { |
| 3496 | int err = 0; |
| 3497 | struct iwl_priv *priv; |
| 3498 | struct ieee80211_hw *hw; |
Emmanuel Grumbach | 084dd791 | 2011-05-31 09:07:00 +0300 | [diff] [blame] | 3499 | u16 num_mac; |
Wey-Yi Guy | b2ea345 | 2011-06-07 08:53:14 -0700 | [diff] [blame] | 3500 | u32 hw_rev; |
| 3501 | |
| 3502 | /************************ |
| 3503 | * 1. Allocating HW data |
| 3504 | ************************/ |
Wey-Yi Guy | b2ea345 | 2011-06-07 08:53:14 -0700 | [diff] [blame] | 3505 | hw = iwl_alloc_all(cfg); |
| 3506 | if (!hw) { |
| 3507 | err = -ENOMEM; |
Emmanuel Grumbach | 807caf2 | 2011-06-09 02:55:55 -0700 | [diff] [blame] | 3508 | goto out; |
| 3509 | } |
| 3510 | |
Wey-Yi Guy | b2ea345 | 2011-06-07 08:53:14 -0700 | [diff] [blame] | 3511 | priv = hw->priv; |
Emmanuel Grumbach | a48709c | 2011-05-31 08:22:30 +0300 | [diff] [blame] | 3512 | |
| 3513 | priv->bus.priv = priv; |
| 3514 | priv->bus.bus_specific = bus_specific; |
| 3515 | priv->bus.ops = bus_ops; |
Emmanuel Grumbach | 705cd45 | 2011-06-18 08:21:12 -0700 | [diff] [blame] | 3516 | priv->bus.irq = priv->bus.ops->get_irq(&priv->bus); |
Emmanuel Grumbach | a48709c | 2011-05-31 08:22:30 +0300 | [diff] [blame] | 3517 | priv->bus.ops->set_drv_data(&priv->bus, priv); |
Emmanuel Grumbach | 3599d39 | 2011-05-31 08:52:10 +0300 | [diff] [blame] | 3518 | priv->bus.dev = priv->bus.ops->get_dev(&priv->bus); |
Emmanuel Grumbach | a48709c | 2011-05-31 08:22:30 +0300 | [diff] [blame] | 3519 | |
Wey-Yi Guy | b2ea345 | 2011-06-07 08:53:14 -0700 | [diff] [blame] | 3520 | /* At this point both hw and priv are allocated. */ |
Johannes Berg | 8f2d3d2 | 2010-08-23 10:46:37 +0200 | [diff] [blame] | 3521 | |
Emmanuel Grumbach | 3599d39 | 2011-05-31 08:52:10 +0300 | [diff] [blame] | 3522 | SET_IEEE80211_DEV(hw, priv->bus.dev); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3523 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3524 | IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n"); |
Tomas Winkler | 82b9a12 | 2008-03-04 18:09:30 -0800 | [diff] [blame] | 3525 | priv->cfg = cfg; |
Mohamed Abbas | 40cefda | 2009-05-22 11:01:52 -0700 | [diff] [blame] | 3526 | priv->inta_mask = CSR_INI_SET_MASK; |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 3527 | |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 3528 | /* is antenna coupling more than 35dB ? */ |
| 3529 | priv->bt_ant_couple_ok = |
| 3530 | (iwlagn_ant_coupling > IWL_BT_ANTENNA_COUPLING_THRESHOLD) ? |
| 3531 | true : false; |
| 3532 | |
Wey-Yi Guy | 9f28ebc | 2010-11-26 13:24:19 -0800 | [diff] [blame] | 3533 | /* enable/disable bt channel inhibition */ |
Wey-Yi Guy | f37837c | 2010-08-23 07:57:12 -0700 | [diff] [blame] | 3534 | priv->bt_ch_announce = iwlagn_bt_ch_announce; |
Wey-Yi Guy | 9f28ebc | 2010-11-26 13:24:19 -0800 | [diff] [blame] | 3535 | IWL_DEBUG_INFO(priv, "BT channel inhibition is %s\n", |
| 3536 | (priv->bt_ch_announce) ? "On" : "Off"); |
Wey-Yi Guy | f37837c | 2010-08-23 07:57:12 -0700 | [diff] [blame] | 3537 | |
Wey-Yi Guy | 20594eb | 2009-08-07 15:41:39 -0700 | [diff] [blame] | 3538 | if (iwl_alloc_traffic_mem(priv)) |
| 3539 | IWL_ERR(priv, "Not enough memory to generate traffic log\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3540 | |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 3541 | |
Reinette Chatre | 731a29b | 2009-12-14 14:12:11 -0800 | [diff] [blame] | 3542 | /* 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] | 3543 | * we should init now |
| 3544 | */ |
| 3545 | spin_lock_init(&priv->reg_lock); |
Reinette Chatre | 731a29b | 2009-12-14 14:12:11 -0800 | [diff] [blame] | 3546 | spin_lock_init(&priv->lock); |
Reinette Chatre | 4843b5a | 2010-02-03 09:38:59 -0800 | [diff] [blame] | 3547 | |
| 3548 | /* |
| 3549 | * stop and reset the on-board processor just in case it is in a |
| 3550 | * strange state ... like being left stranded by a primary kernel |
| 3551 | * and this is now the kdump kernel trying to start up |
| 3552 | */ |
| 3553 | iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET); |
| 3554 | |
Emmanuel Grumbach | 084dd791 | 2011-05-31 09:07:00 +0300 | [diff] [blame] | 3555 | /*********************** |
| 3556 | * 3. Read REV register |
| 3557 | ***********************/ |
Johannes Berg | e98a130 | 2011-04-05 09:42:08 -0700 | [diff] [blame] | 3558 | hw_rev = iwl_hw_detect(priv); |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 3559 | IWL_INFO(priv, "Detected %s, REV=0x%X\n", |
Johannes Berg | e98a130 | 2011-04-05 09:42:08 -0700 | [diff] [blame] | 3560 | priv->cfg->name, hw_rev); |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 3561 | |
Johannes Berg | 4cd2bf7 | 2011-04-13 03:14:52 -0700 | [diff] [blame] | 3562 | if (iwl_prepare_card_hw(priv)) { |
Emmanuel Grumbach | bcd4fe2 | 2011-06-09 02:55:54 -0700 | [diff] [blame] | 3563 | err = -EIO; |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 3564 | IWL_WARN(priv, "Failed, HW not ready\n"); |
Emmanuel Grumbach | 084dd791 | 2011-05-31 09:07:00 +0300 | [diff] [blame] | 3565 | goto out_free_traffic_mem; |
Mohamed Abbas | 086ed11 | 2009-05-22 11:01:54 -0700 | [diff] [blame] | 3566 | } |
| 3567 | |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 3568 | /***************** |
| 3569 | * 4. Read EEPROM |
| 3570 | *****************/ |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 3571 | /* Read the EEPROM */ |
Johannes Berg | e98a130 | 2011-04-05 09:42:08 -0700 | [diff] [blame] | 3572 | err = iwl_eeprom_init(priv, hw_rev); |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 3573 | if (err) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 3574 | IWL_ERR(priv, "Unable to init EEPROM\n"); |
Emmanuel Grumbach | 084dd791 | 2011-05-31 09:07:00 +0300 | [diff] [blame] | 3575 | goto out_free_traffic_mem; |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 3576 | } |
Tomas Winkler | 8614f36 | 2008-04-23 17:14:55 -0700 | [diff] [blame] | 3577 | err = iwl_eeprom_check_version(priv); |
| 3578 | if (err) |
Reinette Chatre | c8f1613 | 2009-02-27 16:21:22 -0800 | [diff] [blame] | 3579 | goto out_free_eeprom; |
Tomas Winkler | 8614f36 | 2008-04-23 17:14:55 -0700 | [diff] [blame] | 3580 | |
Wey-Yi Guy | 21a5b3c | 2010-11-10 13:32:59 -0800 | [diff] [blame] | 3581 | err = iwl_eeprom_check_sku(priv); |
| 3582 | if (err) |
| 3583 | goto out_free_eeprom; |
| 3584 | |
Ron Rindjunsky | 0288301 | 2008-05-15 13:53:53 +0800 | [diff] [blame] | 3585 | /* extract MAC Address */ |
Wey-Yi Guy | c6fa17e | 2010-07-15 05:58:30 -0700 | [diff] [blame] | 3586 | iwl_eeprom_get_mac(priv, priv->addresses[0].addr); |
| 3587 | IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->addresses[0].addr); |
| 3588 | priv->hw->wiphy->addresses = priv->addresses; |
| 3589 | priv->hw->wiphy->n_addresses = 1; |
| 3590 | num_mac = iwl_eeprom_query16(priv, EEPROM_NUM_MAC_ADDRESS); |
| 3591 | if (num_mac > 1) { |
| 3592 | memcpy(priv->addresses[1].addr, priv->addresses[0].addr, |
| 3593 | ETH_ALEN); |
| 3594 | priv->addresses[1].addr[5]++; |
| 3595 | priv->hw->wiphy->n_addresses++; |
| 3596 | } |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 3597 | |
Wey-Yi Guy | b2ea345 | 2011-06-07 08:53:14 -0700 | [diff] [blame] | 3598 | /* initialize all valid contexts */ |
| 3599 | iwl_init_context(priv); |
| 3600 | |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 3601 | /************************ |
| 3602 | * 5. Setup HW constants |
| 3603 | ************************/ |
Ron Rindjunsky | da154e30 | 2008-06-30 17:23:20 +0800 | [diff] [blame] | 3604 | if (iwl_set_hw_params(priv)) { |
Emmanuel Grumbach | 084dd791 | 2011-05-31 09:07:00 +0300 | [diff] [blame] | 3605 | err = -ENOENT; |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 3606 | IWL_ERR(priv, "failed to set hw parameters\n"); |
Tomas Winkler | 073d3f5 | 2008-04-21 15:41:52 -0700 | [diff] [blame] | 3607 | goto out_free_eeprom; |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 3608 | } |
| 3609 | |
| 3610 | /******************* |
Tomas Winkler | 6ba8795 | 2008-05-15 13:54:17 +0800 | [diff] [blame] | 3611 | * 6. Setup priv |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 3612 | *******************/ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3613 | |
Tomas Winkler | 6ba8795 | 2008-05-15 13:54:17 +0800 | [diff] [blame] | 3614 | err = iwl_init_drv(priv); |
Assaf Krauss | bf85ea4 | 2008-03-14 10:38:49 -0700 | [diff] [blame] | 3615 | if (err) |
Ron Rindjunsky | 399f490 | 2008-04-23 17:14:56 -0700 | [diff] [blame] | 3616 | goto out_free_eeprom; |
Assaf Krauss | bf85ea4 | 2008-03-14 10:38:49 -0700 | [diff] [blame] | 3617 | /* At this point both hw and priv are initialized. */ |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 3618 | |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 3619 | /******************** |
Abhijeet Kolekar | 09f9bf7 | 2009-04-20 14:37:03 -0700 | [diff] [blame] | 3620 | * 7. Setup services |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 3621 | ********************/ |
Johannes Berg | 519d8ab | 2011-04-05 09:42:11 -0700 | [diff] [blame] | 3622 | iwl_alloc_isr_ict(priv); |
Wey-Yi Guy | e39fdee | 2010-11-10 09:56:40 -0800 | [diff] [blame] | 3623 | |
Emmanuel Grumbach | 705cd45 | 2011-06-18 08:21:12 -0700 | [diff] [blame] | 3624 | err = request_irq(priv->bus.irq, iwl_isr_ict, IRQF_SHARED, |
| 3625 | DRV_NAME, priv); |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 3626 | if (err) { |
Emmanuel Grumbach | 705cd45 | 2011-06-18 08:21:12 -0700 | [diff] [blame] | 3627 | IWL_ERR(priv, "Error allocating IRQ %d\n", priv->bus.irq); |
Emmanuel Grumbach | 084dd791 | 2011-05-31 09:07:00 +0300 | [diff] [blame] | 3628 | goto out_uninit_drv; |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 3629 | } |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 3630 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 3631 | iwl_setup_deferred_work(priv); |
Emmanuel Grumbach | 653fa4a | 2008-06-30 17:23:11 +0800 | [diff] [blame] | 3632 | iwl_setup_rx_handlers(priv); |
Cindy H. Kao | 4613e72 | 2011-05-06 10:40:15 -0700 | [diff] [blame] | 3633 | iwl_testmode_init(priv); |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 3634 | |
Johannes Berg | 158bea0 | 2010-01-22 14:22:53 -0800 | [diff] [blame] | 3635 | /********************************************* |
Emmanuel Grumbach | 084dd791 | 2011-05-31 09:07:00 +0300 | [diff] [blame] | 3636 | * 8. Enable interrupts |
Johannes Berg | 158bea0 | 2010-01-22 14:22:53 -0800 | [diff] [blame] | 3637 | *********************************************/ |
Tomas Winkler | 6ba8795 | 2008-05-15 13:54:17 +0800 | [diff] [blame] | 3638 | |
Stanislaw Gruszka | 554d1d0 | 2010-12-23 12:38:21 +0100 | [diff] [blame] | 3639 | iwl_enable_rfkill_int(priv); |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 3640 | |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 3641 | /* If platform's RF_KILL switch is NOT set to KILL */ |
| 3642 | if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW) |
| 3643 | clear_bit(STATUS_RF_KILL_HW, &priv->status); |
| 3644 | else |
| 3645 | set_bit(STATUS_RF_KILL_HW, &priv->status); |
Tomas Winkler | 6ba8795 | 2008-05-15 13:54:17 +0800 | [diff] [blame] | 3646 | |
Johannes Berg | a60e77e | 2009-06-04 18:26:06 +0200 | [diff] [blame] | 3647 | wiphy_rfkill_set_hw_state(priv->hw->wiphy, |
| 3648 | test_bit(STATUS_RF_KILL_HW, &priv->status)); |
Helmut Schaa | 6cd0b1c | 2009-01-19 13:10:07 +0100 | [diff] [blame] | 3649 | |
Emmanuel Grumbach | 58d0f36 | 2008-06-12 09:47:19 +0800 | [diff] [blame] | 3650 | iwl_power_initialize(priv); |
Wey-Yi Guy | 39b73fb1 | 2009-07-24 11:13:02 -0700 | [diff] [blame] | 3651 | iwl_tt_initialize(priv); |
Johannes Berg | 158bea0 | 2010-01-22 14:22:53 -0800 | [diff] [blame] | 3652 | |
Reinette Chatre | a15707d | 2010-05-10 15:08:11 -0700 | [diff] [blame] | 3653 | init_completion(&priv->_agn.firmware_loading_complete); |
Johannes Berg | 562db53 | 2010-04-29 07:41:53 -0700 | [diff] [blame] | 3654 | |
Johannes Berg | b08dfd0 | 2010-01-29 11:54:56 -0800 | [diff] [blame] | 3655 | err = iwl_request_firmware(priv, true); |
Johannes Berg | 158bea0 | 2010-01-22 14:22:53 -0800 | [diff] [blame] | 3656 | if (err) |
Emmanuel Grumbach | 7d47618 | 2010-05-23 00:14:08 -0700 | [diff] [blame] | 3657 | goto out_destroy_workqueue; |
Johannes Berg | 158bea0 | 2010-01-22 14:22:53 -0800 | [diff] [blame] | 3658 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3659 | return 0; |
| 3660 | |
Emmanuel Grumbach | 7d47618 | 2010-05-23 00:14:08 -0700 | [diff] [blame] | 3661 | out_destroy_workqueue: |
Reinette Chatre | c8f1613 | 2009-02-27 16:21:22 -0800 | [diff] [blame] | 3662 | destroy_workqueue(priv->workqueue); |
| 3663 | priv->workqueue = NULL; |
Emmanuel Grumbach | 705cd45 | 2011-06-18 08:21:12 -0700 | [diff] [blame] | 3664 | free_irq(priv->bus.irq, priv); |
Emmanuel Grumbach | 93cce6f | 2011-05-27 08:40:29 -0700 | [diff] [blame] | 3665 | iwl_free_isr_ict(priv); |
Emmanuel Grumbach | 084dd791 | 2011-05-31 09:07:00 +0300 | [diff] [blame] | 3666 | out_uninit_drv: |
Tomas Winkler | 6ba8795 | 2008-05-15 13:54:17 +0800 | [diff] [blame] | 3667 | iwl_uninit_drv(priv); |
Tomas Winkler | 073d3f5 | 2008-04-21 15:41:52 -0700 | [diff] [blame] | 3668 | out_free_eeprom: |
| 3669 | iwl_eeprom_free(priv); |
Emmanuel Grumbach | 084dd791 | 2011-05-31 09:07:00 +0300 | [diff] [blame] | 3670 | out_free_traffic_mem: |
Wey-Yi Guy | 20594eb | 2009-08-07 15:41:39 -0700 | [diff] [blame] | 3671 | iwl_free_traffic_mem(priv); |
Wey-Yi Guy | d7c76f4 | 2009-10-09 13:20:17 -0700 | [diff] [blame] | 3672 | ieee80211_free_hw(priv->hw); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3673 | out: |
| 3674 | return err; |
| 3675 | } |
| 3676 | |
Emmanuel Grumbach | a48709c | 2011-05-31 08:22:30 +0300 | [diff] [blame] | 3677 | void __devexit iwl_remove(struct iwl_priv * priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3678 | { |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 3679 | unsigned long flags; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3680 | |
Reinette Chatre | a15707d | 2010-05-10 15:08:11 -0700 | [diff] [blame] | 3681 | wait_for_completion(&priv->_agn.firmware_loading_complete); |
Johannes Berg | 562db53 | 2010-04-29 07:41:53 -0700 | [diff] [blame] | 3682 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 3683 | IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3684 | |
Emmanuel Grumbach | 6724962 | 2008-05-29 16:35:26 +0800 | [diff] [blame] | 3685 | iwl_dbgfs_unregister(priv); |
Emmanuel Grumbach | 3599d39 | 2011-05-31 08:52:10 +0300 | [diff] [blame] | 3686 | sysfs_remove_group(&priv->bus.dev->kobj, |
| 3687 | &iwl_attribute_group); |
Emmanuel Grumbach | 6724962 | 2008-05-29 16:35:26 +0800 | [diff] [blame] | 3688 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3689 | /* ieee80211_unregister_hw call wil cause iwl_mac_stop to |
| 3690 | * to be called and iwl_down since we are removing the device |
Gregory Greenman | 0b124c3 | 2008-09-03 11:18:50 +0800 | [diff] [blame] | 3691 | * we need to set STATUS_EXIT_PENDING bit. |
| 3692 | */ |
| 3693 | set_bit(STATUS_EXIT_PENDING, &priv->status); |
Wey-Yi Guy | 5ed540a | 2011-01-21 15:26:39 -0800 | [diff] [blame] | 3694 | |
Wey-Yi Guy | 7a4e528 | 2011-05-06 10:21:28 -0700 | [diff] [blame] | 3695 | iwl_testmode_cleanup(priv); |
Wey-Yi Guy | 5ed540a | 2011-01-21 15:26:39 -0800 | [diff] [blame] | 3696 | iwl_leds_exit(priv); |
| 3697 | |
Ron Rindjunsky | c4f5523 | 2008-03-28 16:21:10 -0700 | [diff] [blame] | 3698 | if (priv->mac80211_registered) { |
| 3699 | ieee80211_unregister_hw(priv->hw); |
| 3700 | priv->mac80211_registered = 0; |
| 3701 | } |
| 3702 | |
Johannes Berg | 1a10f43 | 2011-04-13 03:14:44 -0700 | [diff] [blame] | 3703 | /* Reset to low power before unloading driver. */ |
Johannes Berg | 14e8e4a | 2010-09-22 18:02:10 +0200 | [diff] [blame] | 3704 | iwl_apm_stop(priv); |
Ben Cahill | c166b25 | 2009-10-23 13:42:35 -0700 | [diff] [blame] | 3705 | |
Wey-Yi Guy | 39b73fb1 | 2009-07-24 11:13:02 -0700 | [diff] [blame] | 3706 | iwl_tt_exit(priv); |
| 3707 | |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 3708 | /* make sure we flush any pending irq or |
| 3709 | * tasklet for the driver |
| 3710 | */ |
| 3711 | spin_lock_irqsave(&priv->lock, flags); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3712 | iwl_disable_interrupts(priv); |
Mohamed Abbas | 0359fac | 2008-03-28 16:21:08 -0700 | [diff] [blame] | 3713 | spin_unlock_irqrestore(&priv->lock, flags); |
| 3714 | |
| 3715 | iwl_synchronize_irq(priv); |
| 3716 | |
Emmanuel Grumbach | 3599d39 | 2011-05-31 08:52:10 +0300 | [diff] [blame] | 3717 | iwl_dealloc_ucode(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3718 | |
| 3719 | if (priv->rxq.bd) |
Wey-Yi Guy | 54b8155 | 2010-03-17 13:34:35 -0700 | [diff] [blame] | 3720 | iwlagn_rx_queue_free(priv, &priv->rxq); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 3721 | iwlagn_hw_txq_ctx_free(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3722 | |
Tomas Winkler | 073d3f5 | 2008-04-21 15:41:52 -0700 | [diff] [blame] | 3723 | iwl_eeprom_free(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3724 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3725 | |
Mohamed Abbas | 948c171 | 2007-10-25 17:15:45 +0800 | [diff] [blame] | 3726 | /*netif_stop_queue(dev); */ |
| 3727 | flush_workqueue(priv->workqueue); |
| 3728 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3729 | /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3730 | * priv->workqueue... so we can't take down the workqueue |
| 3731 | * until now... */ |
| 3732 | destroy_workqueue(priv->workqueue); |
| 3733 | priv->workqueue = NULL; |
Wey-Yi Guy | 20594eb | 2009-08-07 15:41:39 -0700 | [diff] [blame] | 3734 | iwl_free_traffic_mem(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3735 | |
Emmanuel Grumbach | 705cd45 | 2011-06-18 08:21:12 -0700 | [diff] [blame] | 3736 | free_irq(priv->bus.irq, priv); |
Emmanuel Grumbach | a48709c | 2011-05-31 08:22:30 +0300 | [diff] [blame] | 3737 | priv->bus.ops->set_drv_data(&priv->bus, NULL); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3738 | |
Tomas Winkler | 6ba8795 | 2008-05-15 13:54:17 +0800 | [diff] [blame] | 3739 | iwl_uninit_drv(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3740 | |
Johannes Berg | 519d8ab | 2011-04-05 09:42:11 -0700 | [diff] [blame] | 3741 | iwl_free_isr_ict(priv); |
Mohamed Abbas | ef850d7 | 2009-05-22 11:01:50 -0700 | [diff] [blame] | 3742 | |
Johannes Berg | 7783454 | 2010-10-04 05:50:36 -0700 | [diff] [blame] | 3743 | dev_kfree_skb(priv->beacon_skb); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3744 | |
| 3745 | ieee80211_free_hw(priv->hw); |
| 3746 | } |
| 3747 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3748 | |
| 3749 | /***************************************************************************** |
| 3750 | * |
| 3751 | * driver and module entry point |
| 3752 | * |
| 3753 | *****************************************************************************/ |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3754 | static int __init iwl_init(void) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3755 | { |
| 3756 | |
| 3757 | int ret; |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 3758 | pr_info(DRV_DESCRIPTION ", " DRV_VERSION "\n"); |
| 3759 | pr_info(DRV_COPYRIGHT "\n"); |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 3760 | |
Tomas Winkler | e227cea | 2008-07-18 13:53:05 +0800 | [diff] [blame] | 3761 | ret = iwlagn_rate_control_register(); |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 3762 | if (ret) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 3763 | pr_err("Unable to register rate control algorithm: %d\n", ret); |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 3764 | return ret; |
| 3765 | } |
| 3766 | |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 3767 | ret = iwl_pci_register_driver(); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3768 | |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 3769 | if (ret) |
| 3770 | goto error_register; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3771 | return ret; |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 3772 | |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 3773 | error_register: |
Tomas Winkler | e227cea | 2008-07-18 13:53:05 +0800 | [diff] [blame] | 3774 | iwlagn_rate_control_unregister(); |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 3775 | return ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3776 | } |
| 3777 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3778 | static void __exit iwl_exit(void) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3779 | { |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 3780 | iwl_pci_unregister_driver(); |
Tomas Winkler | e227cea | 2008-07-18 13:53:05 +0800 | [diff] [blame] | 3781 | iwlagn_rate_control_unregister(); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3782 | } |
| 3783 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 3784 | module_exit(iwl_exit); |
| 3785 | module_init(iwl_init); |
Reinette Chatre | a562a9d | 2009-07-17 09:30:24 -0700 | [diff] [blame] | 3786 | |
| 3787 | #ifdef CONFIG_IWLWIFI_DEBUG |
Wey-Yi Guy | 4e30cb6 | 2009-09-17 10:43:47 -0700 | [diff] [blame] | 3788 | module_param_named(debug, iwl_debug_level, uint, S_IRUGO | S_IWUSR); |
Reinette Chatre | a562a9d | 2009-07-17 09:30:24 -0700 | [diff] [blame] | 3789 | MODULE_PARM_DESC(debug, "debug output mask"); |
| 3790 | #endif |
| 3791 | |
Wey-Yi Guy | 2b068618 | 2010-03-22 09:17:39 -0700 | [diff] [blame] | 3792 | module_param_named(swcrypto, iwlagn_mod_params.sw_crypto, int, S_IRUGO); |
| 3793 | MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])"); |
Wey-Yi Guy | 2b068618 | 2010-03-22 09:17:39 -0700 | [diff] [blame] | 3794 | module_param_named(queues_num, iwlagn_mod_params.num_of_queues, int, S_IRUGO); |
| 3795 | MODULE_PARM_DESC(queues_num, "number of hw queues."); |
Wey-Yi Guy | 2b068618 | 2010-03-22 09:17:39 -0700 | [diff] [blame] | 3796 | module_param_named(11n_disable, iwlagn_mod_params.disable_11n, int, S_IRUGO); |
| 3797 | MODULE_PARM_DESC(11n_disable, "disable 11n functionality"); |
Wey-Yi Guy | 2b068618 | 2010-03-22 09:17:39 -0700 | [diff] [blame] | 3798 | module_param_named(amsdu_size_8K, iwlagn_mod_params.amsdu_size_8K, |
| 3799 | int, S_IRUGO); |
| 3800 | MODULE_PARM_DESC(amsdu_size_8K, "enable 8K amsdu size"); |
Wey-Yi Guy | 2b068618 | 2010-03-22 09:17:39 -0700 | [diff] [blame] | 3801 | module_param_named(fw_restart, iwlagn_mod_params.restart_fw, int, S_IRUGO); |
| 3802 | MODULE_PARM_DESC(fw_restart, "restart firmware in case of error"); |
Johannes Berg | dd7a250 | 2010-04-28 23:33:10 -0700 | [diff] [blame] | 3803 | |
| 3804 | module_param_named(ucode_alternative, iwlagn_wanted_ucode_alternative, int, |
| 3805 | S_IRUGO); |
| 3806 | MODULE_PARM_DESC(ucode_alternative, |
| 3807 | "specify ucode alternative to use from ucode file"); |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 3808 | |
| 3809 | module_param_named(antenna_coupling, iwlagn_ant_coupling, int, S_IRUGO); |
| 3810 | MODULE_PARM_DESC(antenna_coupling, |
| 3811 | "specify antenna coupling in dB (defualt: 0 dB)"); |
Wey-Yi Guy | f37837c | 2010-08-23 07:57:12 -0700 | [diff] [blame] | 3812 | |
Wey-Yi Guy | 9f28ebc | 2010-11-26 13:24:19 -0800 | [diff] [blame] | 3813 | module_param_named(bt_ch_inhibition, iwlagn_bt_ch_announce, bool, S_IRUGO); |
| 3814 | MODULE_PARM_DESC(bt_ch_inhibition, |
| 3815 | "Disable BT channel inhibition (default: enable)"); |
Stanislaw Gruszka | b7977ff | 2011-02-28 14:33:15 +0100 | [diff] [blame] | 3816 | |
| 3817 | module_param_named(plcp_check, iwlagn_mod_params.plcp_check, bool, S_IRUGO); |
| 3818 | MODULE_PARM_DESC(plcp_check, "Check plcp health (default: 1 [enabled])"); |
| 3819 | |
| 3820 | module_param_named(ack_check, iwlagn_mod_params.ack_check, bool, S_IRUGO); |
| 3821 | MODULE_PARM_DESC(ack_check, "Check ack health (default: 0 [disabled])"); |
Wey-Yi Guy | b60eec9 | 2011-06-03 13:52:38 -0700 | [diff] [blame] | 3822 | |
Wey-Yi Guy | 300d083 | 2011-06-25 09:17:41 -0700 | [diff] [blame^] | 3823 | module_param_named(wd_disable, iwlagn_mod_params.wd_disable, bool, S_IRUGO); |
| 3824 | MODULE_PARM_DESC(wd_disable, |
| 3825 | "Disable stuck queue watchdog timer (default: 0 [enabled])"); |
| 3826 | |
Wey-Yi Guy | b60eec9 | 2011-06-03 13:52:38 -0700 | [diff] [blame] | 3827 | /* |
| 3828 | * set bt_coex_active to true, uCode will do kill/defer |
| 3829 | * every time the priority line is asserted (BT is sending signals on the |
| 3830 | * priority line in the PCIx). |
| 3831 | * set bt_coex_active to false, uCode will ignore the BT activity and |
| 3832 | * perform the normal operation |
| 3833 | * |
| 3834 | * User might experience transmit issue on some platform due to WiFi/BT |
| 3835 | * co-exist problem. The possible behaviors are: |
| 3836 | * Able to scan and finding all the available AP |
| 3837 | * Not able to associate with any AP |
| 3838 | * On those platforms, WiFi communication can be restored by set |
| 3839 | * "bt_coex_active" module parameter to "false" |
| 3840 | * |
| 3841 | * default: bt_coex_active = true (BT_COEX_ENABLE) |
| 3842 | */ |
| 3843 | module_param_named(bt_coex_active, iwlagn_mod_params.bt_coex_active, |
| 3844 | bool, S_IRUGO); |
| 3845 | MODULE_PARM_DESC(bt_coex_active, "enable wifi/bt co-exist (default: enable)"); |
Wey-Yi Guy | 6b0184c | 2011-06-03 13:52:39 -0700 | [diff] [blame] | 3846 | |
| 3847 | module_param_named(led_mode, iwlagn_mod_params.led_mode, int, S_IRUGO); |
| 3848 | MODULE_PARM_DESC(led_mode, "0=system default, " |
| 3849 | "1=On(RF On)/Off(RF Off), 2=blinking (default: 0)"); |
Wey-Yi Guy | 3f1e5f4 | 2011-06-03 13:52:40 -0700 | [diff] [blame] | 3850 | |
Wey-Yi Guy | 0172b02 | 2011-06-11 10:00:05 -0700 | [diff] [blame] | 3851 | module_param_named(power_save, iwlagn_mod_params.power_save, |
| 3852 | bool, S_IRUGO); |
| 3853 | MODULE_PARM_DESC(power_save, |
| 3854 | "enable WiFi power management (default: disable)"); |
| 3855 | |
Wey-Yi Guy | f753816 | 2011-06-11 10:00:06 -0700 | [diff] [blame] | 3856 | module_param_named(power_level, iwlagn_mod_params.power_level, |
| 3857 | int, S_IRUGO); |
| 3858 | MODULE_PARM_DESC(power_level, |
| 3859 | "default power save level (range from 1 - 5, default: 1)"); |
| 3860 | |
Wey-Yi Guy | 3f1e5f4 | 2011-06-03 13:52:40 -0700 | [diff] [blame] | 3861 | /* |
| 3862 | * For now, keep using power level 1 instead of automatically |
| 3863 | * adjusting ... |
| 3864 | */ |
| 3865 | module_param_named(no_sleep_autoadjust, iwlagn_mod_params.no_sleep_autoadjust, |
| 3866 | bool, S_IRUGO); |
| 3867 | MODULE_PARM_DESC(no_sleep_autoadjust, |
| 3868 | "don't automatically adjust sleep level " |
| 3869 | "according to maximum network latency (default: true)"); |