Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
Emmanuel Grumbach | 51368bf | 2013-12-30 13:15:54 +0200 | [diff] [blame] | 3 | * Copyright(c) 2003 - 2014 Intel Corporation. All rights reserved. |
Sharon Dvir | 39bdb17 | 2015-10-15 18:18:09 +0300 | [diff] [blame] | 4 | * Copyright(c) 2015 Intel Deutschland GmbH |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5 | * |
| 6 | * Portions of this file are derived from the ipw3945 project, as well |
| 7 | * as portions of the ieee80211 subsystem header files. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify it |
| 10 | * under the terms of version 2 of the GNU General Public License as |
| 11 | * published by the Free Software Foundation. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 14 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 15 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 16 | * more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License along with |
| 19 | * this program; if not, write to the Free Software Foundation, Inc., |
| 20 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA |
| 21 | * |
| 22 | * The full GNU General Public License is included in this distribution in the |
| 23 | * file called LICENSE. |
| 24 | * |
| 25 | * Contact Information: |
Emmanuel Grumbach | cb2f827 | 2015-11-17 15:39:56 +0200 | [diff] [blame] | 26 | * Intel Linux Wireless <linuxwifi@intel.com> |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 27 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 28 | * |
| 29 | *****************************************************************************/ |
Joe Perches | 69b8797 | 2012-03-26 08:27:40 -0700 | [diff] [blame] | 30 | |
| 31 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 32 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 33 | #include <linux/kernel.h> |
| 34 | #include <linux/module.h> |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 35 | #include <linux/init.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 36 | #include <linux/slab.h> |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 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> |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 41 | #include <linux/etherdevice.h> |
| 42 | #include <linux/if_arp.h> |
| 43 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 44 | #include <net/mac80211.h> |
| 45 | |
| 46 | #include <asm/div64.h> |
| 47 | |
Johannes Berg | 26a7ca9 | 2012-05-21 11:55:54 +0200 | [diff] [blame] | 48 | #include "iwl-eeprom-read.h" |
| 49 | #include "iwl-eeprom-parse.h" |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 50 | #include "iwl-io.h" |
Emmanuel Grumbach | c85eb61 | 2011-06-14 10:13:24 +0300 | [diff] [blame] | 51 | #include "iwl-trans.h" |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 52 | #include "iwl-op-mode.h" |
Johannes Berg | 8257510 | 2012-04-03 16:44:37 -0700 | [diff] [blame] | 53 | #include "iwl-drv.h" |
Johannes Berg | 65de7e8 | 2012-04-17 07:36:30 -0700 | [diff] [blame] | 54 | #include "iwl-modparams.h" |
Emmanuel Grumbach | dada03c | 2012-06-17 15:42:37 +0300 | [diff] [blame] | 55 | #include "iwl-prph.h" |
Christoph Hellwig | 416e143 | 2007-10-25 17:15:49 +0800 | [diff] [blame] | 56 | |
Johannes Berg | 1023fdc | 2012-05-15 12:16:34 +0200 | [diff] [blame] | 57 | #include "dev.h" |
| 58 | #include "calib.h" |
| 59 | #include "agn.h" |
| 60 | |
Emmanuel Grumbach | dada03c | 2012-06-17 15:42:37 +0300 | [diff] [blame] | 61 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 62 | /****************************************************************************** |
| 63 | * |
| 64 | * module boiler plate |
| 65 | * |
| 66 | ******************************************************************************/ |
| 67 | |
Tomas Winkler | d783b06 | 2008-07-18 13:53:02 +0800 | [diff] [blame] | 68 | #define DRV_DESCRIPTION "Intel(R) Wireless WiFi Link AGN driver for Linux" |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 69 | MODULE_DESCRIPTION(DRV_DESCRIPTION); |
Tomas Winkler | a7b7520 | 2008-12-11 10:33:41 -0800 | [diff] [blame] | 70 | MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 71 | MODULE_LICENSE("GPL"); |
| 72 | |
Sharon Dvir | 39bdb17 | 2015-10-15 18:18:09 +0300 | [diff] [blame] | 73 | /* Please keep this array *SORTED* by hex value. |
| 74 | * Access is done through binary search. |
| 75 | * A warning will be triggered on violation. |
| 76 | */ |
| 77 | static const struct iwl_hcmd_names iwl_dvm_cmd_names[] = { |
| 78 | HCMD_NAME(REPLY_ALIVE), |
| 79 | HCMD_NAME(REPLY_ERROR), |
| 80 | HCMD_NAME(REPLY_ECHO), |
| 81 | HCMD_NAME(REPLY_RXON), |
| 82 | HCMD_NAME(REPLY_RXON_ASSOC), |
| 83 | HCMD_NAME(REPLY_QOS_PARAM), |
| 84 | HCMD_NAME(REPLY_RXON_TIMING), |
| 85 | HCMD_NAME(REPLY_ADD_STA), |
| 86 | HCMD_NAME(REPLY_REMOVE_STA), |
| 87 | HCMD_NAME(REPLY_REMOVE_ALL_STA), |
| 88 | HCMD_NAME(REPLY_TX), |
| 89 | HCMD_NAME(REPLY_TXFIFO_FLUSH), |
| 90 | HCMD_NAME(REPLY_WEPKEY), |
| 91 | HCMD_NAME(REPLY_LEDS_CMD), |
| 92 | HCMD_NAME(REPLY_TX_LINK_QUALITY_CMD), |
| 93 | HCMD_NAME(COEX_PRIORITY_TABLE_CMD), |
| 94 | HCMD_NAME(COEX_MEDIUM_NOTIFICATION), |
| 95 | HCMD_NAME(COEX_EVENT_CMD), |
| 96 | HCMD_NAME(TEMPERATURE_NOTIFICATION), |
| 97 | HCMD_NAME(CALIBRATION_CFG_CMD), |
| 98 | HCMD_NAME(CALIBRATION_RES_NOTIFICATION), |
| 99 | HCMD_NAME(CALIBRATION_COMPLETE_NOTIFICATION), |
| 100 | HCMD_NAME(REPLY_QUIET_CMD), |
| 101 | HCMD_NAME(REPLY_CHANNEL_SWITCH), |
| 102 | HCMD_NAME(CHANNEL_SWITCH_NOTIFICATION), |
| 103 | HCMD_NAME(REPLY_SPECTRUM_MEASUREMENT_CMD), |
| 104 | HCMD_NAME(SPECTRUM_MEASURE_NOTIFICATION), |
| 105 | HCMD_NAME(POWER_TABLE_CMD), |
| 106 | HCMD_NAME(PM_SLEEP_NOTIFICATION), |
| 107 | HCMD_NAME(PM_DEBUG_STATISTIC_NOTIFIC), |
| 108 | HCMD_NAME(REPLY_SCAN_CMD), |
| 109 | HCMD_NAME(REPLY_SCAN_ABORT_CMD), |
| 110 | HCMD_NAME(SCAN_START_NOTIFICATION), |
| 111 | HCMD_NAME(SCAN_RESULTS_NOTIFICATION), |
| 112 | HCMD_NAME(SCAN_COMPLETE_NOTIFICATION), |
| 113 | HCMD_NAME(BEACON_NOTIFICATION), |
| 114 | HCMD_NAME(REPLY_TX_BEACON), |
| 115 | HCMD_NAME(WHO_IS_AWAKE_NOTIFICATION), |
| 116 | HCMD_NAME(REPLY_TX_POWER_DBM_CMD), |
| 117 | HCMD_NAME(QUIET_NOTIFICATION), |
| 118 | HCMD_NAME(REPLY_TX_PWR_TABLE_CMD), |
| 119 | HCMD_NAME(REPLY_TX_POWER_DBM_CMD_V1), |
| 120 | HCMD_NAME(TX_ANT_CONFIGURATION_CMD), |
| 121 | HCMD_NAME(MEASURE_ABORT_NOTIFICATION), |
| 122 | HCMD_NAME(REPLY_BT_CONFIG), |
| 123 | HCMD_NAME(REPLY_STATISTICS_CMD), |
| 124 | HCMD_NAME(STATISTICS_NOTIFICATION), |
| 125 | HCMD_NAME(REPLY_CARD_STATE_CMD), |
| 126 | HCMD_NAME(CARD_STATE_NOTIFICATION), |
| 127 | HCMD_NAME(MISSED_BEACONS_NOTIFICATION), |
| 128 | HCMD_NAME(REPLY_CT_KILL_CONFIG_CMD), |
| 129 | HCMD_NAME(SENSITIVITY_CMD), |
| 130 | HCMD_NAME(REPLY_PHY_CALIBRATION_CMD), |
| 131 | HCMD_NAME(REPLY_WIPAN_PARAMS), |
| 132 | HCMD_NAME(REPLY_WIPAN_RXON), |
| 133 | HCMD_NAME(REPLY_WIPAN_RXON_TIMING), |
| 134 | HCMD_NAME(REPLY_WIPAN_RXON_ASSOC), |
| 135 | HCMD_NAME(REPLY_WIPAN_QOS_PARAM), |
| 136 | HCMD_NAME(REPLY_WIPAN_WEPKEY), |
| 137 | HCMD_NAME(REPLY_WIPAN_P2P_CHANNEL_SWITCH), |
| 138 | HCMD_NAME(REPLY_WIPAN_NOA_NOTIFICATION), |
| 139 | HCMD_NAME(REPLY_WIPAN_DEACTIVATION_COMPLETE), |
| 140 | HCMD_NAME(REPLY_RX_PHY_CMD), |
| 141 | HCMD_NAME(REPLY_RX_MPDU_CMD), |
| 142 | HCMD_NAME(REPLY_RX), |
| 143 | HCMD_NAME(REPLY_COMPRESSED_BA), |
| 144 | HCMD_NAME(REPLY_BT_COEX_PRIO_TABLE), |
| 145 | HCMD_NAME(REPLY_BT_COEX_PROT_ENV), |
| 146 | HCMD_NAME(REPLY_BT_COEX_PROFILE_NOTIF), |
| 147 | HCMD_NAME(REPLY_D3_CONFIG), |
| 148 | HCMD_NAME(REPLY_WOWLAN_PATTERNS), |
| 149 | HCMD_NAME(REPLY_WOWLAN_WAKEUP_FILTER), |
| 150 | HCMD_NAME(REPLY_WOWLAN_TSC_RSC_PARAMS), |
| 151 | HCMD_NAME(REPLY_WOWLAN_TKIP_PARAMS), |
| 152 | HCMD_NAME(REPLY_WOWLAN_KEK_KCK_MATERIAL), |
| 153 | HCMD_NAME(REPLY_WOWLAN_GET_STATUS), |
| 154 | }; |
| 155 | |
| 156 | static const struct iwl_hcmd_arr iwl_dvm_groups[] = { |
| 157 | [0x0] = HCMD_ARR(iwl_dvm_cmd_names), |
| 158 | }; |
| 159 | |
Johannes Berg | b1abeda | 2012-05-31 13:54:56 +0200 | [diff] [blame] | 160 | static const struct iwl_op_mode_ops iwl_dvm_ops; |
| 161 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 162 | void iwl_update_chain_flags(struct iwl_priv *priv) |
Mohamed Abbas | 5da4b55 | 2008-04-21 15:41:51 -0700 | [diff] [blame] | 163 | { |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 164 | struct iwl_rxon_context *ctx; |
Mohamed Abbas | 5da4b55 | 2008-04-21 15:41:51 -0700 | [diff] [blame] | 165 | |
Wey-Yi Guy | e3f10ce | 2011-07-01 07:59:26 -0700 | [diff] [blame] | 166 | for_each_context(priv, ctx) { |
| 167 | iwlagn_set_rxon_chain(priv, ctx); |
| 168 | if (ctx->active.rx_chain != ctx->staging.rx_chain) |
| 169 | iwlagn_commit_rxon(priv, ctx); |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 170 | } |
Mohamed Abbas | 5da4b55 | 2008-04-21 15:41:51 -0700 | [diff] [blame] | 171 | } |
| 172 | |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 173 | /* Parse the beacon frame to find the TIM element and set tim_idx & tim_size */ |
| 174 | static void iwl_set_beacon_tim(struct iwl_priv *priv, |
Johannes Berg | 7783454 | 2010-10-04 05:50:36 -0700 | [diff] [blame] | 175 | struct iwl_tx_beacon_cmd *tx_beacon_cmd, |
| 176 | u8 *beacon, u32 frame_size) |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 177 | { |
| 178 | u16 tim_idx; |
| 179 | struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon; |
| 180 | |
| 181 | /* |
| 182 | * The index is relative to frame start but we start looking at the |
| 183 | * variable-length part of the beacon. |
| 184 | */ |
| 185 | tim_idx = mgmt->u.beacon.variable - beacon; |
| 186 | |
| 187 | /* Parse variable-length elements of beacon to find WLAN_EID_TIM */ |
| 188 | while ((tim_idx < (frame_size - 2)) && |
| 189 | (beacon[tim_idx] != WLAN_EID_TIM)) |
| 190 | tim_idx += beacon[tim_idx+1] + 2; |
| 191 | |
| 192 | /* If TIM field was found, set variables */ |
| 193 | if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) { |
| 194 | tx_beacon_cmd->tim_idx = cpu_to_le16(tim_idx); |
| 195 | tx_beacon_cmd->tim_size = beacon[tim_idx+1]; |
| 196 | } else |
| 197 | IWL_WARN(priv, "Unable to find TIM Element in beacon\n"); |
| 198 | } |
| 199 | |
Johannes Berg | 8a98d49 | 2011-04-29 09:48:14 -0700 | [diff] [blame] | 200 | int iwlagn_send_beacon_cmd(struct iwl_priv *priv) |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 201 | { |
| 202 | struct iwl_tx_beacon_cmd *tx_beacon_cmd; |
Johannes Berg | 8a98d49 | 2011-04-29 09:48:14 -0700 | [diff] [blame] | 203 | struct iwl_host_cmd cmd = { |
| 204 | .id = REPLY_TX_BEACON, |
Johannes Berg | 8a98d49 | 2011-04-29 09:48:14 -0700 | [diff] [blame] | 205 | }; |
Johannes Berg | 0b5b3ff | 2011-06-22 06:33:43 -0700 | [diff] [blame] | 206 | struct ieee80211_tx_info *info; |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 207 | u32 frame_size; |
| 208 | u32 rate_flags; |
| 209 | u32 rate; |
Johannes Berg | 8a98d49 | 2011-04-29 09:48:14 -0700 | [diff] [blame] | 210 | |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 211 | /* |
| 212 | * We have to set up the TX command, the TX Beacon command, and the |
| 213 | * beacon contents. |
| 214 | */ |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 215 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 216 | lockdep_assert_held(&priv->mutex); |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 217 | |
| 218 | if (!priv->beacon_ctx) { |
| 219 | IWL_ERR(priv, "trying to build beacon w/o beacon context!\n"); |
Julia Lawall | 950094c | 2010-09-05 21:00:26 +0200 | [diff] [blame] | 220 | return 0; |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 221 | } |
| 222 | |
Johannes Berg | 8a98d49 | 2011-04-29 09:48:14 -0700 | [diff] [blame] | 223 | if (WARN_ON(!priv->beacon_skb)) |
| 224 | return -EINVAL; |
| 225 | |
Johannes Berg | 4ce7cc2 | 2011-05-13 11:57:40 -0700 | [diff] [blame] | 226 | /* Allocate beacon command */ |
| 227 | if (!priv->beacon_cmd) |
| 228 | priv->beacon_cmd = kzalloc(sizeof(*tx_beacon_cmd), GFP_KERNEL); |
| 229 | tx_beacon_cmd = priv->beacon_cmd; |
Johannes Berg | 8a98d49 | 2011-04-29 09:48:14 -0700 | [diff] [blame] | 230 | if (!tx_beacon_cmd) |
| 231 | return -ENOMEM; |
| 232 | |
| 233 | frame_size = priv->beacon_skb->len; |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 234 | |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 235 | /* Set up TX command fields */ |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 236 | tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size); |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 237 | 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] | 238 | 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] | 239 | 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] | 240 | TX_CMD_FLG_TSF_MSK | TX_CMD_FLG_STA_RATE_MSK; |
| 241 | |
| 242 | /* Set up TX beacon command fields */ |
Johannes Berg | 4ce7cc2 | 2011-05-13 11:57:40 -0700 | [diff] [blame] | 243 | iwl_set_beacon_tim(priv, tx_beacon_cmd, priv->beacon_skb->data, |
Johannes Berg | 7783454 | 2010-10-04 05:50:36 -0700 | [diff] [blame] | 244 | frame_size); |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 245 | |
| 246 | /* Set up packet rate and flags */ |
Johannes Berg | 0b5b3ff | 2011-06-22 06:33:43 -0700 | [diff] [blame] | 247 | info = IEEE80211_SKB_CB(priv->beacon_skb); |
| 248 | |
| 249 | /* |
| 250 | * Let's set up the rate at least somewhat correctly; |
| 251 | * it will currently not actually be used by the uCode, |
| 252 | * it uses the broadcast station's rate instead. |
| 253 | */ |
| 254 | if (info->control.rates[0].idx < 0 || |
| 255 | info->control.rates[0].flags & IEEE80211_TX_RC_MCS) |
| 256 | rate = 0; |
| 257 | else |
| 258 | rate = info->control.rates[0].idx; |
| 259 | |
Johannes Berg | 0e1654f | 2010-05-18 02:48:36 -0700 | [diff] [blame] | 260 | priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant, |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 261 | priv->nvm_data->valid_tx_ant); |
Daniel C Halperin | 47ff65c | 2009-11-13 11:56:33 -0800 | [diff] [blame] | 262 | rate_flags = iwl_ant_idx_to_flags(priv->mgmt_tx_ant); |
Johannes Berg | 0b5b3ff | 2011-06-22 06:33:43 -0700 | [diff] [blame] | 263 | |
| 264 | /* In mac80211, rates for 5 GHz start at 0 */ |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 265 | if (info->band == NL80211_BAND_5GHZ) |
Johannes Berg | 0b5b3ff | 2011-06-22 06:33:43 -0700 | [diff] [blame] | 266 | rate += IWL_FIRST_OFDM_RATE; |
| 267 | 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] | 268 | rate_flags |= RATE_MCS_CCK_MSK; |
Johannes Berg | 0b5b3ff | 2011-06-22 06:33:43 -0700 | [diff] [blame] | 269 | |
| 270 | tx_beacon_cmd->tx.rate_n_flags = |
| 271 | iwl_hw_set_rate_n_flags(rate, rate_flags); |
Tomas Winkler | 4bf64ef | 2008-07-18 13:53:03 +0800 | [diff] [blame] | 272 | |
Johannes Berg | 8a98d49 | 2011-04-29 09:48:14 -0700 | [diff] [blame] | 273 | /* Submit command */ |
Johannes Berg | 4ce7cc2 | 2011-05-13 11:57:40 -0700 | [diff] [blame] | 274 | cmd.len[0] = sizeof(*tx_beacon_cmd); |
Johannes Berg | 3fa5073 | 2011-05-04 07:50:38 -0700 | [diff] [blame] | 275 | cmd.data[0] = tx_beacon_cmd; |
Johannes Berg | 4ce7cc2 | 2011-05-13 11:57:40 -0700 | [diff] [blame] | 276 | cmd.dataflags[0] = IWL_HCMD_DFL_NOCOPY; |
| 277 | cmd.len[1] = frame_size; |
| 278 | cmd.data[1] = priv->beacon_skb->data; |
| 279 | cmd.dataflags[1] = IWL_HCMD_DFL_NOCOPY; |
Johannes Berg | 2295c66 | 2010-10-23 09:15:41 -0700 | [diff] [blame] | 280 | |
Johannes Berg | e10a053 | 2012-03-06 13:30:39 -0800 | [diff] [blame] | 281 | return iwl_dvm_send_cmd(priv, &cmd); |
Samuel Ortiz | a8e74e27 | 2009-01-23 13:45:14 -0800 | [diff] [blame] | 282 | } |
| 283 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 284 | static void iwl_bg_beacon_update(struct work_struct *work) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 285 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 286 | struct iwl_priv *priv = |
| 287 | container_of(work, struct iwl_priv, beacon_update); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 288 | struct sk_buff *beacon; |
| 289 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 290 | mutex_lock(&priv->mutex); |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 291 | if (!priv->beacon_ctx) { |
| 292 | IWL_ERR(priv, "updating beacon w/o beacon context!\n"); |
| 293 | goto out; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 294 | } |
| 295 | |
Johannes Berg | 60744f6 | 2010-08-23 10:46:50 +0200 | [diff] [blame] | 296 | if (priv->beacon_ctx->vif->type != NL80211_IFTYPE_AP) { |
| 297 | /* |
| 298 | * The ucode will send beacon notifications even in |
| 299 | * IBSS mode, but we don't want to process them. But |
| 300 | * we need to defer the type check to here due to |
| 301 | * requiring locking around the beacon_ctx access. |
| 302 | */ |
| 303 | goto out; |
| 304 | } |
| 305 | |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 306 | /* Pull updated AP beacon from mac80211. will fail if not in AP mode */ |
| 307 | beacon = ieee80211_beacon_get(priv->hw, priv->beacon_ctx->vif); |
| 308 | if (!beacon) { |
Johannes Berg | 7783454 | 2010-10-04 05:50:36 -0700 | [diff] [blame] | 309 | IWL_ERR(priv, "update beacon failed -- keeping old\n"); |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 310 | goto out; |
| 311 | } |
| 312 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 313 | /* new beacon skb is allocated every time; dispose previous.*/ |
Johannes Berg | 7783454 | 2010-10-04 05:50:36 -0700 | [diff] [blame] | 314 | dev_kfree_skb(priv->beacon_skb); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 315 | |
Johannes Berg | 12e934d | 2010-10-04 05:50:06 -0700 | [diff] [blame] | 316 | priv->beacon_skb = beacon; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 317 | |
Johannes Berg | 2295c66 | 2010-10-23 09:15:41 -0700 | [diff] [blame] | 318 | iwlagn_send_beacon_cmd(priv); |
Johannes Berg | 76d0481 | 2010-08-23 10:46:47 +0200 | [diff] [blame] | 319 | out: |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 320 | mutex_unlock(&priv->mutex); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 321 | } |
| 322 | |
Wey-Yi Guy | fbba941 | 2010-08-23 07:57:10 -0700 | [diff] [blame] | 323 | static void iwl_bg_bt_runtime_config(struct work_struct *work) |
| 324 | { |
| 325 | struct iwl_priv *priv = |
| 326 | container_of(work, struct iwl_priv, bt_runtime_config); |
| 327 | |
Emmanuel Grumbach | 82e5a64 | 2014-03-10 15:22:03 +0200 | [diff] [blame] | 328 | mutex_lock(&priv->mutex); |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 329 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
Emmanuel Grumbach | 82e5a64 | 2014-03-10 15:22:03 +0200 | [diff] [blame] | 330 | goto out; |
Wey-Yi Guy | fbba941 | 2010-08-23 07:57:10 -0700 | [diff] [blame] | 331 | |
| 332 | /* dont send host command if rf-kill is on */ |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 333 | if (!iwl_is_ready_rf(priv)) |
Emmanuel Grumbach | 82e5a64 | 2014-03-10 15:22:03 +0200 | [diff] [blame] | 334 | goto out; |
| 335 | |
Wey-Yi Guy | e55b517 | 2011-06-28 11:46:28 -0700 | [diff] [blame] | 336 | iwlagn_send_advance_bt_config(priv); |
Emmanuel Grumbach | 82e5a64 | 2014-03-10 15:22:03 +0200 | [diff] [blame] | 337 | out: |
| 338 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | fbba941 | 2010-08-23 07:57:10 -0700 | [diff] [blame] | 339 | } |
| 340 | |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 341 | static void iwl_bg_bt_full_concurrency(struct work_struct *work) |
| 342 | { |
| 343 | struct iwl_priv *priv = |
| 344 | container_of(work, struct iwl_priv, bt_full_concurrency); |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 345 | struct iwl_rxon_context *ctx; |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 346 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 347 | mutex_lock(&priv->mutex); |
Stanislaw Gruszka | dc1a406 | 2011-03-31 17:36:27 +0200 | [diff] [blame] | 348 | |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 349 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
Stanislaw Gruszka | dc1a406 | 2011-03-31 17:36:27 +0200 | [diff] [blame] | 350 | goto out; |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 351 | |
| 352 | /* dont send host command if rf-kill is on */ |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 353 | if (!iwl_is_ready_rf(priv)) |
Stanislaw Gruszka | dc1a406 | 2011-03-31 17:36:27 +0200 | [diff] [blame] | 354 | goto out; |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 355 | |
| 356 | IWL_DEBUG_INFO(priv, "BT coex in %s mode\n", |
| 357 | priv->bt_full_concurrent ? |
| 358 | "full concurrency" : "3-wire"); |
| 359 | |
| 360 | /* |
| 361 | * LQ & RXON updated cmds must be sent before BT Config cmd |
| 362 | * to avoid 3-wire collisions |
| 363 | */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 364 | for_each_context(priv, ctx) { |
Wey-Yi Guy | e3f10ce | 2011-07-01 07:59:26 -0700 | [diff] [blame] | 365 | iwlagn_set_rxon_chain(priv, ctx); |
Wey-Yi Guy | 805a3b8 | 2011-06-03 07:54:16 -0700 | [diff] [blame] | 366 | iwlagn_commit_rxon(priv, ctx); |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 367 | } |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 368 | |
Wey-Yi Guy | e55b517 | 2011-06-28 11:46:28 -0700 | [diff] [blame] | 369 | iwlagn_send_advance_bt_config(priv); |
Stanislaw Gruszka | dc1a406 | 2011-03-31 17:36:27 +0200 | [diff] [blame] | 370 | out: |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 371 | mutex_unlock(&priv->mutex); |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 372 | } |
| 373 | |
Meenakshi Venkataraman | 1591129 | 2012-03-14 15:49:37 -0700 | [diff] [blame] | 374 | int iwl_send_statistics_request(struct iwl_priv *priv, u8 flags, bool clear) |
| 375 | { |
| 376 | struct iwl_statistics_cmd statistics_cmd = { |
| 377 | .configuration_flags = |
| 378 | clear ? IWL_STATS_CONF_CLEAR_STATS : 0, |
| 379 | }; |
| 380 | |
| 381 | if (flags & CMD_ASYNC) |
| 382 | return iwl_dvm_send_cmd_pdu(priv, REPLY_STATISTICS_CMD, |
| 383 | CMD_ASYNC, |
| 384 | sizeof(struct iwl_statistics_cmd), |
| 385 | &statistics_cmd); |
| 386 | else |
Emmanuel Grumbach | a102292 | 2014-05-12 11:36:41 +0300 | [diff] [blame] | 387 | return iwl_dvm_send_cmd_pdu(priv, REPLY_STATISTICS_CMD, 0, |
Meenakshi Venkataraman | 1591129 | 2012-03-14 15:49:37 -0700 | [diff] [blame] | 388 | sizeof(struct iwl_statistics_cmd), |
| 389 | &statistics_cmd); |
| 390 | } |
| 391 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 392 | /** |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 393 | * iwl_bg_statistics_periodic - Timer callback to queue statistics |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 394 | * |
| 395 | * This callback is provided in order to send a statistics request. |
| 396 | * |
| 397 | * This timer function is continually reset to execute within |
| 398 | * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION |
| 399 | * was received. We need to ensure we receive the statistics in order |
| 400 | * to update the temperature used for calibrating the TXPOWER. |
| 401 | */ |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 402 | static void iwl_bg_statistics_periodic(unsigned long data) |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 403 | { |
| 404 | struct iwl_priv *priv = (struct iwl_priv *)data; |
| 405 | |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 406 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 407 | return; |
| 408 | |
Mohamed Abbas | 61780ee | 2008-10-29 14:05:49 -0700 | [diff] [blame] | 409 | /* dont send host command if rf-kill is on */ |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 410 | if (!iwl_is_ready_rf(priv)) |
Mohamed Abbas | 61780ee | 2008-10-29 14:05:49 -0700 | [diff] [blame] | 411 | return; |
| 412 | |
Wey-Yi Guy | ef8d552 | 2009-11-13 11:56:28 -0800 | [diff] [blame] | 413 | iwl_send_statistics_request(priv, CMD_ASYNC, false); |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 414 | } |
| 415 | |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 416 | |
| 417 | static void iwl_print_cont_event_trace(struct iwl_priv *priv, u32 base, |
| 418 | u32 start_idx, u32 num_events, |
Johannes Berg | 98d4bf0 | 2012-01-13 11:56:11 +0100 | [diff] [blame] | 419 | u32 capacity, u32 mode) |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 420 | { |
| 421 | u32 i; |
| 422 | u32 ptr; /* SRAM byte address of log data */ |
| 423 | u32 ev, time, data; /* event log data */ |
| 424 | unsigned long reg_flags; |
| 425 | |
| 426 | if (mode == 0) |
| 427 | ptr = base + (4 * sizeof(u32)) + (start_idx * 2 * sizeof(u32)); |
| 428 | else |
| 429 | ptr = base + (4 * sizeof(u32)) + (start_idx * 3 * sizeof(u32)); |
| 430 | |
| 431 | /* Make sure device is powered up for SRAM reads */ |
Emmanuel Grumbach | 23ba934 | 2015-12-17 11:55:13 +0200 | [diff] [blame] | 432 | if (!iwl_trans_grab_nic_access(priv->trans, ®_flags)) |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 433 | return; |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 434 | |
| 435 | /* Set starting address; reads will auto-increment */ |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 436 | iwl_write32(priv->trans, HBUS_TARG_MEM_RADDR, ptr); |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 437 | |
| 438 | /* |
Johannes Berg | 98d4bf0 | 2012-01-13 11:56:11 +0100 | [diff] [blame] | 439 | * Refuse to read more than would have fit into the log from |
| 440 | * the current start_idx. This used to happen due to the race |
| 441 | * described below, but now WARN because the code below should |
| 442 | * prevent it from happening here. |
| 443 | */ |
| 444 | if (WARN_ON(num_events > capacity - start_idx)) |
| 445 | num_events = capacity - start_idx; |
| 446 | |
| 447 | /* |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 448 | * "time" is actually "data" for mode 0 (no timestamp). |
| 449 | * place event id # at far right for easier visual parsing. |
| 450 | */ |
| 451 | for (i = 0; i < num_events; i++) { |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 452 | ev = iwl_read32(priv->trans, HBUS_TARG_MEM_RDAT); |
| 453 | time = iwl_read32(priv->trans, HBUS_TARG_MEM_RDAT); |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 454 | if (mode == 0) { |
Johannes Berg | 6c1011e | 2012-03-06 13:30:48 -0800 | [diff] [blame] | 455 | trace_iwlwifi_dev_ucode_cont_event( |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 456 | priv->trans->dev, 0, time, ev); |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 457 | } else { |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 458 | data = iwl_read32(priv->trans, HBUS_TARG_MEM_RDAT); |
Johannes Berg | 6c1011e | 2012-03-06 13:30:48 -0800 | [diff] [blame] | 459 | trace_iwlwifi_dev_ucode_cont_event( |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 460 | priv->trans->dev, time, data, ev); |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 461 | } |
| 462 | } |
| 463 | /* Allow device to power down */ |
Lilach Edelstein | e56b04e | 2013-01-16 11:34:49 +0200 | [diff] [blame] | 464 | iwl_trans_release_nic_access(priv->trans, ®_flags); |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 465 | } |
| 466 | |
Johannes Berg | 875295f | 2010-01-22 14:22:55 -0800 | [diff] [blame] | 467 | static void iwl_continuous_event_trace(struct iwl_priv *priv) |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 468 | { |
| 469 | u32 capacity; /* event log capacity in # entries */ |
Johannes Berg | 98d4bf0 | 2012-01-13 11:56:11 +0100 | [diff] [blame] | 470 | struct { |
| 471 | u32 capacity; |
| 472 | u32 mode; |
| 473 | u32 wrap_counter; |
| 474 | u32 write_counter; |
| 475 | } __packed read; |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 476 | u32 base; /* SRAM byte address of event log header */ |
| 477 | u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */ |
| 478 | u32 num_wraps; /* # times uCode wrapped to top of log */ |
| 479 | u32 next_entry; /* index of next entry to be written by uCode */ |
| 480 | |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 481 | base = priv->device_pointers.log_event_table; |
Fry, Donald H | 4caab32 | 2011-07-07 15:24:07 -0700 | [diff] [blame] | 482 | if (iwlagn_hw_valid_rtc_data_addr(base)) { |
Emmanuel Grumbach | 4fd442d | 2012-12-24 14:27:11 +0200 | [diff] [blame] | 483 | iwl_trans_read_mem_bytes(priv->trans, base, |
| 484 | &read, sizeof(read)); |
Johannes Berg | 98d4bf0 | 2012-01-13 11:56:11 +0100 | [diff] [blame] | 485 | capacity = read.capacity; |
| 486 | mode = read.mode; |
| 487 | num_wraps = read.wrap_counter; |
| 488 | next_entry = read.write_counter; |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 489 | } else |
| 490 | return; |
| 491 | |
Johannes Berg | 98d4bf0 | 2012-01-13 11:56:11 +0100 | [diff] [blame] | 492 | /* |
| 493 | * Unfortunately, the uCode doesn't use temporary variables. |
| 494 | * Therefore, it can happen that we read next_entry == capacity, |
| 495 | * which really means next_entry == 0. |
| 496 | */ |
| 497 | if (unlikely(next_entry == capacity)) |
| 498 | next_entry = 0; |
| 499 | /* |
| 500 | * Additionally, the uCode increases the write pointer before |
| 501 | * the wraps counter, so if the write pointer is smaller than |
| 502 | * the old write pointer (wrap occurred) but we read that no |
| 503 | * wrap occurred, we actually read between the next_entry and |
| 504 | * num_wraps update (this does happen in practice!!) -- take |
| 505 | * that into account by increasing num_wraps. |
| 506 | */ |
| 507 | if (unlikely(next_entry < priv->event_log.next_entry && |
| 508 | num_wraps == priv->event_log.num_wraps)) |
| 509 | num_wraps++; |
| 510 | |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 511 | if (num_wraps == priv->event_log.num_wraps) { |
Johannes Berg | 98d4bf0 | 2012-01-13 11:56:11 +0100 | [diff] [blame] | 512 | iwl_print_cont_event_trace( |
| 513 | priv, base, priv->event_log.next_entry, |
| 514 | next_entry - priv->event_log.next_entry, |
| 515 | capacity, mode); |
| 516 | |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 517 | priv->event_log.non_wraps_count++; |
| 518 | } else { |
Johannes Berg | 98d4bf0 | 2012-01-13 11:56:11 +0100 | [diff] [blame] | 519 | if (num_wraps - priv->event_log.num_wraps > 1) |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 520 | priv->event_log.wraps_more_count++; |
| 521 | else |
| 522 | priv->event_log.wraps_once_count++; |
Johannes Berg | 98d4bf0 | 2012-01-13 11:56:11 +0100 | [diff] [blame] | 523 | |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 524 | trace_iwlwifi_dev_ucode_wrap_event(priv->trans->dev, |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 525 | num_wraps - priv->event_log.num_wraps, |
| 526 | next_entry, priv->event_log.next_entry); |
Johannes Berg | 98d4bf0 | 2012-01-13 11:56:11 +0100 | [diff] [blame] | 527 | |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 528 | if (next_entry < priv->event_log.next_entry) { |
Johannes Berg | 98d4bf0 | 2012-01-13 11:56:11 +0100 | [diff] [blame] | 529 | iwl_print_cont_event_trace( |
| 530 | priv, base, priv->event_log.next_entry, |
| 531 | capacity - priv->event_log.next_entry, |
| 532 | capacity, mode); |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 533 | |
Johannes Berg | 98d4bf0 | 2012-01-13 11:56:11 +0100 | [diff] [blame] | 534 | iwl_print_cont_event_trace( |
| 535 | priv, base, 0, next_entry, capacity, mode); |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 536 | } else { |
Johannes Berg | 98d4bf0 | 2012-01-13 11:56:11 +0100 | [diff] [blame] | 537 | iwl_print_cont_event_trace( |
| 538 | priv, base, next_entry, |
| 539 | capacity - next_entry, |
| 540 | capacity, mode); |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 541 | |
Johannes Berg | 98d4bf0 | 2012-01-13 11:56:11 +0100 | [diff] [blame] | 542 | iwl_print_cont_event_trace( |
| 543 | priv, base, 0, next_entry, capacity, mode); |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 544 | } |
| 545 | } |
Johannes Berg | 98d4bf0 | 2012-01-13 11:56:11 +0100 | [diff] [blame] | 546 | |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 547 | priv->event_log.num_wraps = num_wraps; |
| 548 | priv->event_log.next_entry = next_entry; |
| 549 | } |
| 550 | |
| 551 | /** |
| 552 | * iwl_bg_ucode_trace - Timer callback to log ucode event |
| 553 | * |
| 554 | * The timer is continually set to execute every |
| 555 | * UCODE_TRACE_PERIOD milliseconds after the last timer expired |
| 556 | * this function is to perform continuous uCode event logging operation |
| 557 | * if enabled |
| 558 | */ |
| 559 | static void iwl_bg_ucode_trace(unsigned long data) |
| 560 | { |
| 561 | struct iwl_priv *priv = (struct iwl_priv *)data; |
| 562 | |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 563 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 564 | return; |
| 565 | |
| 566 | if (priv->event_log.ucode_trace) { |
| 567 | iwl_continuous_event_trace(priv); |
| 568 | /* Reschedule the timer to occur in UCODE_TRACE_PERIOD */ |
| 569 | mod_timer(&priv->ucode_trace, |
| 570 | jiffies + msecs_to_jiffies(UCODE_TRACE_PERIOD)); |
| 571 | } |
| 572 | } |
| 573 | |
Wey-Yi Guy | 6555063 | 2010-06-24 13:18:35 -0700 | [diff] [blame] | 574 | static void iwl_bg_tx_flush(struct work_struct *work) |
| 575 | { |
| 576 | struct iwl_priv *priv = |
| 577 | container_of(work, struct iwl_priv, tx_flush); |
| 578 | |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 579 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
Wey-Yi Guy | 6555063 | 2010-06-24 13:18:35 -0700 | [diff] [blame] | 580 | return; |
| 581 | |
| 582 | /* do nothing if rf-kill is on */ |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 583 | if (!iwl_is_ready_rf(priv)) |
Wey-Yi Guy | 6555063 | 2010-06-24 13:18:35 -0700 | [diff] [blame] | 584 | return; |
| 585 | |
Wey-Yi Guy | c68744f | 2011-06-18 08:03:18 -0700 | [diff] [blame] | 586 | IWL_DEBUG_INFO(priv, "device request: flush all tx frames\n"); |
Johannes Berg | a4dece9 | 2012-10-31 22:21:28 +0100 | [diff] [blame] | 587 | iwlagn_dev_txfifo_flush(priv); |
Wey-Yi Guy | 6555063 | 2010-06-24 13:18:35 -0700 | [diff] [blame] | 588 | } |
| 589 | |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 590 | /* |
| 591 | * queue/FIFO/AC mapping definitions |
| 592 | */ |
| 593 | |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 594 | static const u8 iwlagn_bss_ac_to_fifo[] = { |
| 595 | IWL_TX_FIFO_VO, |
| 596 | IWL_TX_FIFO_VI, |
| 597 | IWL_TX_FIFO_BE, |
| 598 | IWL_TX_FIFO_BK, |
| 599 | }; |
| 600 | |
| 601 | static const u8 iwlagn_bss_ac_to_queue[] = { |
| 602 | 0, 1, 2, 3, |
| 603 | }; |
| 604 | |
| 605 | static const u8 iwlagn_pan_ac_to_fifo[] = { |
| 606 | IWL_TX_FIFO_VO_IPAN, |
| 607 | IWL_TX_FIFO_VI_IPAN, |
| 608 | IWL_TX_FIFO_BE_IPAN, |
| 609 | IWL_TX_FIFO_BK_IPAN, |
| 610 | }; |
| 611 | |
| 612 | static const u8 iwlagn_pan_ac_to_queue[] = { |
| 613 | 7, 6, 5, 4, |
| 614 | }; |
| 615 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 616 | static void iwl_init_context(struct iwl_priv *priv, u32 ucode_flags) |
Johannes Berg | 4d2a5d0 | 2011-07-23 10:24:46 -0700 | [diff] [blame] | 617 | { |
Johannes Berg | 4d2a5d0 | 2011-07-23 10:24:46 -0700 | [diff] [blame] | 618 | int i; |
| 619 | |
| 620 | /* |
| 621 | * The default context is always valid, |
| 622 | * the PAN context depends on uCode. |
| 623 | */ |
Johannes Berg | a18f61b | 2012-03-15 13:26:53 -0700 | [diff] [blame] | 624 | priv->valid_contexts = BIT(IWL_RXON_CTX_BSS); |
Johannes Berg | 4d2a5d0 | 2011-07-23 10:24:46 -0700 | [diff] [blame] | 625 | if (ucode_flags & IWL_UCODE_TLV_FLAGS_PAN) |
Johannes Berg | a18f61b | 2012-03-15 13:26:53 -0700 | [diff] [blame] | 626 | priv->valid_contexts |= BIT(IWL_RXON_CTX_PAN); |
Johannes Berg | 4d2a5d0 | 2011-07-23 10:24:46 -0700 | [diff] [blame] | 627 | |
| 628 | for (i = 0; i < NUM_IWL_RXON_CTX; i++) |
| 629 | priv->contexts[i].ctxid = i; |
| 630 | |
| 631 | priv->contexts[IWL_RXON_CTX_BSS].always_active = true; |
| 632 | priv->contexts[IWL_RXON_CTX_BSS].is_active = true; |
| 633 | priv->contexts[IWL_RXON_CTX_BSS].rxon_cmd = REPLY_RXON; |
| 634 | priv->contexts[IWL_RXON_CTX_BSS].rxon_timing_cmd = REPLY_RXON_TIMING; |
| 635 | priv->contexts[IWL_RXON_CTX_BSS].rxon_assoc_cmd = REPLY_RXON_ASSOC; |
| 636 | priv->contexts[IWL_RXON_CTX_BSS].qos_cmd = REPLY_QOS_PARAM; |
| 637 | priv->contexts[IWL_RXON_CTX_BSS].ap_sta_id = IWL_AP_ID; |
| 638 | priv->contexts[IWL_RXON_CTX_BSS].wep_key_cmd = REPLY_WEPKEY; |
Don Fry | 87272af | 2012-01-25 15:26:34 -0800 | [diff] [blame] | 639 | priv->contexts[IWL_RXON_CTX_BSS].bcast_sta_id = IWLAGN_BROADCAST_ID; |
Johannes Berg | 4d2a5d0 | 2011-07-23 10:24:46 -0700 | [diff] [blame] | 640 | priv->contexts[IWL_RXON_CTX_BSS].exclusive_interface_modes = |
Johannes Berg | 5789772 | 2012-05-11 10:53:18 +0200 | [diff] [blame] | 641 | BIT(NL80211_IFTYPE_ADHOC) | BIT(NL80211_IFTYPE_MONITOR); |
Johannes Berg | 4d2a5d0 | 2011-07-23 10:24:46 -0700 | [diff] [blame] | 642 | priv->contexts[IWL_RXON_CTX_BSS].interface_modes = |
| 643 | BIT(NL80211_IFTYPE_STATION); |
| 644 | priv->contexts[IWL_RXON_CTX_BSS].ap_devtype = RXON_DEV_TYPE_AP; |
| 645 | priv->contexts[IWL_RXON_CTX_BSS].ibss_devtype = RXON_DEV_TYPE_IBSS; |
| 646 | priv->contexts[IWL_RXON_CTX_BSS].station_devtype = RXON_DEV_TYPE_ESS; |
| 647 | priv->contexts[IWL_RXON_CTX_BSS].unused_devtype = RXON_DEV_TYPE_ESS; |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 648 | memcpy(priv->contexts[IWL_RXON_CTX_BSS].ac_to_queue, |
| 649 | iwlagn_bss_ac_to_queue, sizeof(iwlagn_bss_ac_to_queue)); |
| 650 | memcpy(priv->contexts[IWL_RXON_CTX_BSS].ac_to_fifo, |
| 651 | iwlagn_bss_ac_to_fifo, sizeof(iwlagn_bss_ac_to_fifo)); |
Johannes Berg | 4d2a5d0 | 2011-07-23 10:24:46 -0700 | [diff] [blame] | 652 | |
| 653 | priv->contexts[IWL_RXON_CTX_PAN].rxon_cmd = REPLY_WIPAN_RXON; |
| 654 | priv->contexts[IWL_RXON_CTX_PAN].rxon_timing_cmd = |
| 655 | REPLY_WIPAN_RXON_TIMING; |
| 656 | priv->contexts[IWL_RXON_CTX_PAN].rxon_assoc_cmd = |
| 657 | REPLY_WIPAN_RXON_ASSOC; |
| 658 | priv->contexts[IWL_RXON_CTX_PAN].qos_cmd = REPLY_WIPAN_QOS_PARAM; |
| 659 | priv->contexts[IWL_RXON_CTX_PAN].ap_sta_id = IWL_AP_ID_PAN; |
| 660 | priv->contexts[IWL_RXON_CTX_PAN].wep_key_cmd = REPLY_WIPAN_WEPKEY; |
| 661 | priv->contexts[IWL_RXON_CTX_PAN].bcast_sta_id = IWLAGN_PAN_BCAST_ID; |
| 662 | priv->contexts[IWL_RXON_CTX_PAN].station_flags = STA_FLG_PAN_STATION; |
Johannes Berg | 4d2a5d0 | 2011-07-23 10:24:46 -0700 | [diff] [blame] | 663 | priv->contexts[IWL_RXON_CTX_PAN].interface_modes = |
| 664 | BIT(NL80211_IFTYPE_STATION) | BIT(NL80211_IFTYPE_AP); |
Johannes Berg | c6baf7f | 2011-07-23 10:24:47 -0700 | [diff] [blame] | 665 | |
Johannes Berg | 4d2a5d0 | 2011-07-23 10:24:46 -0700 | [diff] [blame] | 666 | priv->contexts[IWL_RXON_CTX_PAN].ap_devtype = RXON_DEV_TYPE_CP; |
| 667 | priv->contexts[IWL_RXON_CTX_PAN].station_devtype = RXON_DEV_TYPE_2STA; |
| 668 | priv->contexts[IWL_RXON_CTX_PAN].unused_devtype = RXON_DEV_TYPE_P2P; |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 669 | memcpy(priv->contexts[IWL_RXON_CTX_PAN].ac_to_queue, |
| 670 | iwlagn_pan_ac_to_queue, sizeof(iwlagn_pan_ac_to_queue)); |
| 671 | memcpy(priv->contexts[IWL_RXON_CTX_PAN].ac_to_fifo, |
| 672 | iwlagn_pan_ac_to_fifo, sizeof(iwlagn_pan_ac_to_fifo)); |
| 673 | priv->contexts[IWL_RXON_CTX_PAN].mcast_queue = IWL_IPAN_MCAST_QUEUE; |
Johannes Berg | 4d2a5d0 | 2011-07-23 10:24:46 -0700 | [diff] [blame] | 674 | |
| 675 | BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2); |
| 676 | } |
| 677 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 678 | static void iwl_rf_kill_ct_config(struct iwl_priv *priv) |
Wey-Yi Guy | 0975cc8 | 2010-07-31 08:34:07 -0700 | [diff] [blame] | 679 | { |
| 680 | struct iwl_ct_kill_config cmd; |
| 681 | struct iwl_ct_kill_throttling_config adv_cmd; |
Wey-Yi Guy | 0975cc8 | 2010-07-31 08:34:07 -0700 | [diff] [blame] | 682 | int ret = 0; |
| 683 | |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 684 | iwl_write32(priv->trans, CSR_UCODE_DRV_GP1_CLR, |
Wey-Yi Guy | 0975cc8 | 2010-07-31 08:34:07 -0700 | [diff] [blame] | 685 | CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT); |
Johannes Berg | 08ae86a | 2012-03-05 11:24:27 -0800 | [diff] [blame] | 686 | |
Wey-Yi Guy | 0975cc8 | 2010-07-31 08:34:07 -0700 | [diff] [blame] | 687 | priv->thermal_throttle.ct_kill_toggle = false; |
| 688 | |
Johannes Berg | 0d8877a | 2013-05-17 10:36:29 +0200 | [diff] [blame] | 689 | if (priv->lib->support_ct_kill_exit) { |
Wey-Yi Guy | 0975cc8 | 2010-07-31 08:34:07 -0700 | [diff] [blame] | 690 | adv_cmd.critical_temperature_enter = |
Johannes Berg | 9e29511 | 2012-04-09 17:46:55 -0700 | [diff] [blame] | 691 | cpu_to_le32(priv->hw_params.ct_kill_threshold); |
Wey-Yi Guy | 0975cc8 | 2010-07-31 08:34:07 -0700 | [diff] [blame] | 692 | adv_cmd.critical_temperature_exit = |
Johannes Berg | 9e29511 | 2012-04-09 17:46:55 -0700 | [diff] [blame] | 693 | cpu_to_le32(priv->hw_params.ct_kill_exit_threshold); |
Wey-Yi Guy | 0975cc8 | 2010-07-31 08:34:07 -0700 | [diff] [blame] | 694 | |
Johannes Berg | e10a053 | 2012-03-06 13:30:39 -0800 | [diff] [blame] | 695 | ret = iwl_dvm_send_cmd_pdu(priv, |
Emmanuel Grumbach | e419d62 | 2011-07-08 08:46:14 -0700 | [diff] [blame] | 696 | REPLY_CT_KILL_CONFIG_CMD, |
Emmanuel Grumbach | a102292 | 2014-05-12 11:36:41 +0300 | [diff] [blame] | 697 | 0, sizeof(adv_cmd), &adv_cmd); |
Wey-Yi Guy | 0975cc8 | 2010-07-31 08:34:07 -0700 | [diff] [blame] | 698 | if (ret) |
| 699 | IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n"); |
| 700 | else |
| 701 | IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD " |
Emmanuel Grumbach | d618912 | 2011-08-25 23:10:39 -0700 | [diff] [blame] | 702 | "succeeded, critical temperature enter is %d," |
| 703 | "exit is %d\n", |
Johannes Berg | 9e29511 | 2012-04-09 17:46:55 -0700 | [diff] [blame] | 704 | priv->hw_params.ct_kill_threshold, |
| 705 | priv->hw_params.ct_kill_exit_threshold); |
Wey-Yi Guy | 0975cc8 | 2010-07-31 08:34:07 -0700 | [diff] [blame] | 706 | } else { |
| 707 | cmd.critical_temperature_R = |
Johannes Berg | 9e29511 | 2012-04-09 17:46:55 -0700 | [diff] [blame] | 708 | cpu_to_le32(priv->hw_params.ct_kill_threshold); |
Wey-Yi Guy | 0975cc8 | 2010-07-31 08:34:07 -0700 | [diff] [blame] | 709 | |
Johannes Berg | e10a053 | 2012-03-06 13:30:39 -0800 | [diff] [blame] | 710 | ret = iwl_dvm_send_cmd_pdu(priv, |
Emmanuel Grumbach | e419d62 | 2011-07-08 08:46:14 -0700 | [diff] [blame] | 711 | REPLY_CT_KILL_CONFIG_CMD, |
Emmanuel Grumbach | a102292 | 2014-05-12 11:36:41 +0300 | [diff] [blame] | 712 | 0, sizeof(cmd), &cmd); |
Wey-Yi Guy | 0975cc8 | 2010-07-31 08:34:07 -0700 | [diff] [blame] | 713 | if (ret) |
| 714 | IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n"); |
| 715 | else |
| 716 | IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD " |
Emmanuel Grumbach | d618912 | 2011-08-25 23:10:39 -0700 | [diff] [blame] | 717 | "succeeded, " |
| 718 | "critical temperature is %d\n", |
Johannes Berg | 9e29511 | 2012-04-09 17:46:55 -0700 | [diff] [blame] | 719 | priv->hw_params.ct_kill_threshold); |
Wey-Yi Guy | 0975cc8 | 2010-07-31 08:34:07 -0700 | [diff] [blame] | 720 | } |
| 721 | } |
| 722 | |
Shanyu Zhao | 6d6a1af | 2010-09-14 18:13:31 -0700 | [diff] [blame] | 723 | static int iwlagn_send_calib_cfg_rt(struct iwl_priv *priv, u32 cfg) |
| 724 | { |
| 725 | struct iwl_calib_cfg_cmd calib_cfg_cmd; |
| 726 | struct iwl_host_cmd cmd = { |
| 727 | .id = CALIBRATION_CFG_CMD, |
Johannes Berg | 3fa5073 | 2011-05-04 07:50:38 -0700 | [diff] [blame] | 728 | .len = { sizeof(struct iwl_calib_cfg_cmd), }, |
| 729 | .data = { &calib_cfg_cmd, }, |
Shanyu Zhao | 6d6a1af | 2010-09-14 18:13:31 -0700 | [diff] [blame] | 730 | }; |
| 731 | |
| 732 | memset(&calib_cfg_cmd, 0, sizeof(calib_cfg_cmd)); |
Wey-Yi Guy | af4dc88 | 2011-10-04 07:10:19 -0700 | [diff] [blame] | 733 | calib_cfg_cmd.ucd_calib_cfg.once.is_enable = IWL_CALIB_RT_CFG_ALL; |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 734 | calib_cfg_cmd.ucd_calib_cfg.once.start = cpu_to_le32(cfg); |
Shanyu Zhao | 6d6a1af | 2010-09-14 18:13:31 -0700 | [diff] [blame] | 735 | |
Johannes Berg | e10a053 | 2012-03-06 13:30:39 -0800 | [diff] [blame] | 736 | return iwl_dvm_send_cmd(priv, &cmd); |
Shanyu Zhao | 6d6a1af | 2010-09-14 18:13:31 -0700 | [diff] [blame] | 737 | } |
| 738 | |
| 739 | |
Wey-Yi Guy | e505c43 | 2011-07-07 08:27:41 -0700 | [diff] [blame] | 740 | static int iwlagn_send_tx_ant_config(struct iwl_priv *priv, u8 valid_tx_ant) |
| 741 | { |
| 742 | struct iwl_tx_ant_config_cmd tx_ant_cmd = { |
| 743 | .valid = cpu_to_le32(valid_tx_ant), |
| 744 | }; |
| 745 | |
Johannes Berg | 0692fe4 | 2012-03-06 13:30:37 -0800 | [diff] [blame] | 746 | if (IWL_UCODE_API(priv->fw->ucode_ver) > 1) { |
Wey-Yi Guy | e505c43 | 2011-07-07 08:27:41 -0700 | [diff] [blame] | 747 | IWL_DEBUG_HC(priv, "select valid tx ant: %u\n", valid_tx_ant); |
Emmanuel Grumbach | a102292 | 2014-05-12 11:36:41 +0300 | [diff] [blame] | 748 | return iwl_dvm_send_cmd_pdu(priv, TX_ANT_CONFIGURATION_CMD, 0, |
Wey-Yi Guy | e505c43 | 2011-07-07 08:27:41 -0700 | [diff] [blame] | 749 | sizeof(struct iwl_tx_ant_config_cmd), |
| 750 | &tx_ant_cmd); |
| 751 | } else { |
| 752 | IWL_DEBUG_HC(priv, "TX_ANT_CONFIGURATION_CMD not supported\n"); |
| 753 | return -EOPNOTSUPP; |
| 754 | } |
| 755 | } |
| 756 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 757 | static void iwl_send_bt_config(struct iwl_priv *priv) |
Meenakshi Venkataraman | e4c52ab | 2012-03-13 18:23:51 -0700 | [diff] [blame] | 758 | { |
| 759 | struct iwl_bt_cmd bt_cmd = { |
| 760 | .lead_time = BT_LEAD_TIME_DEF, |
| 761 | .max_kill = BT_MAX_KILL_DEF, |
| 762 | .kill_ack_mask = 0, |
| 763 | .kill_cts_mask = 0, |
| 764 | }; |
| 765 | |
Johannes Berg | 65de7e8 | 2012-04-17 07:36:30 -0700 | [diff] [blame] | 766 | if (!iwlwifi_mod_params.bt_coex_active) |
Meenakshi Venkataraman | e4c52ab | 2012-03-13 18:23:51 -0700 | [diff] [blame] | 767 | bt_cmd.flags = BT_COEX_DISABLE; |
| 768 | else |
| 769 | bt_cmd.flags = BT_COEX_ENABLE; |
| 770 | |
| 771 | priv->bt_enable_flag = bt_cmd.flags; |
| 772 | IWL_DEBUG_INFO(priv, "BT coex %s\n", |
| 773 | (bt_cmd.flags == BT_COEX_DISABLE) ? "disable" : "active"); |
| 774 | |
| 775 | if (iwl_dvm_send_cmd_pdu(priv, REPLY_BT_CONFIG, |
Emmanuel Grumbach | a102292 | 2014-05-12 11:36:41 +0300 | [diff] [blame] | 776 | 0, sizeof(struct iwl_bt_cmd), &bt_cmd)) |
Meenakshi Venkataraman | e4c52ab | 2012-03-13 18:23:51 -0700 | [diff] [blame] | 777 | IWL_ERR(priv, "failed to send BT Coex Config\n"); |
| 778 | } |
| 779 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 780 | /** |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 781 | * iwl_alive_start - called after REPLY_ALIVE notification received |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 782 | * from protocol/runtime uCode (initialization uCode's |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 783 | * Alive gets handled by iwl_init_alive_start()). |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 784 | */ |
Cindy H. Kao | 4613e72 | 2011-05-06 10:40:15 -0700 | [diff] [blame] | 785 | int iwl_alive_start(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 786 | { |
Tomas Winkler | 57aab75 | 2008-04-14 21:16:03 -0700 | [diff] [blame] | 787 | int ret = 0; |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 788 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 789 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 790 | IWL_DEBUG_INFO(priv, "Runtime Alive received.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 791 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 792 | /* After the ALIVE response, we can send host commands to the uCode */ |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 793 | set_bit(STATUS_ALIVE, &priv->status); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 794 | |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 795 | if (iwl_is_rfkill(priv)) |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 796 | return -ERFKILL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 797 | |
Johannes Berg | 98d4bf0 | 2012-01-13 11:56:11 +0100 | [diff] [blame] | 798 | if (priv->event_log.ucode_trace) { |
| 799 | /* start collecting data now */ |
| 800 | mod_timer(&priv->ucode_trace, jiffies); |
| 801 | } |
| 802 | |
Wey-Yi Guy | bc795df | 2010-10-11 14:24:05 -0700 | [diff] [blame] | 803 | /* download priority table before any calibration request */ |
Johannes Berg | 0d8877a | 2013-05-17 10:36:29 +0200 | [diff] [blame] | 804 | if (priv->lib->bt_params && |
| 805 | priv->lib->bt_params->advanced_bt_coexist) { |
Wey-Yi Guy | f7322f8 | 2010-08-23 15:24:49 -0700 | [diff] [blame] | 806 | /* Configure Bluetooth device coexistence support */ |
Johannes Berg | 0d8877a | 2013-05-17 10:36:29 +0200 | [diff] [blame] | 807 | if (priv->lib->bt_params->bt_sco_disable) |
Meenakshi Venkataraman | 207ecc5 | 2011-07-08 08:46:23 -0700 | [diff] [blame] | 808 | priv->bt_enable_pspoll = false; |
| 809 | else |
| 810 | priv->bt_enable_pspoll = true; |
| 811 | |
Wey-Yi Guy | f7322f8 | 2010-08-23 15:24:49 -0700 | [diff] [blame] | 812 | priv->bt_valid = IWLAGN_BT_ALL_VALID_MSK; |
| 813 | priv->kill_ack_mask = IWLAGN_BT_KILL_ACK_MASK_DEFAULT; |
| 814 | priv->kill_cts_mask = IWLAGN_BT_KILL_CTS_MASK_DEFAULT; |
Wey-Yi Guy | e55b517 | 2011-06-28 11:46:28 -0700 | [diff] [blame] | 815 | iwlagn_send_advance_bt_config(priv); |
Wey-Yi Guy | f7322f8 | 2010-08-23 15:24:49 -0700 | [diff] [blame] | 816 | priv->bt_valid = IWLAGN_BT_VALID_ENABLE_FLAGS; |
Meenakshi Venkataraman | 207ecc5 | 2011-07-08 08:46:23 -0700 | [diff] [blame] | 817 | priv->cur_rssi_ctx = NULL; |
| 818 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 819 | iwl_send_prio_tbl(priv); |
Wey-Yi Guy | f7322f8 | 2010-08-23 15:24:49 -0700 | [diff] [blame] | 820 | |
| 821 | /* FIXME: w/a to force change uCode BT state machine */ |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 822 | ret = iwl_send_bt_env(priv, IWL_BT_COEX_ENV_OPEN, |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 823 | BT_COEX_PRIO_TBL_EVT_INIT_CALIB2); |
| 824 | if (ret) |
| 825 | return ret; |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 826 | ret = iwl_send_bt_env(priv, IWL_BT_COEX_ENV_CLOSE, |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 827 | BT_COEX_PRIO_TBL_EVT_INIT_CALIB2); |
| 828 | if (ret) |
| 829 | return ret; |
Johannes Berg | 707aee4 | 2013-05-03 18:58:16 +0200 | [diff] [blame] | 830 | } else if (priv->lib->bt_params) { |
Wey-Yi Guy | e55b517 | 2011-06-28 11:46:28 -0700 | [diff] [blame] | 831 | /* |
| 832 | * default is 2-wire BT coexexistence support |
| 833 | */ |
| 834 | iwl_send_bt_config(priv); |
Wey-Yi Guy | f7322f8 | 2010-08-23 15:24:49 -0700 | [diff] [blame] | 835 | } |
Wey-Yi Guy | e55b517 | 2011-06-28 11:46:28 -0700 | [diff] [blame] | 836 | |
Venkataraman, Meenakshi | 885765f | 2011-12-14 16:54:21 -0800 | [diff] [blame] | 837 | /* |
| 838 | * Perform runtime calibrations, including DC calibration. |
| 839 | */ |
| 840 | iwlagn_send_calib_cfg_rt(priv, IWL_CALIB_CFG_DC_IDX); |
Wey-Yi Guy | bc795df | 2010-10-11 14:24:05 -0700 | [diff] [blame] | 841 | |
Johannes Berg | 36d6825 | 2008-05-15 12:55:26 +0200 | [diff] [blame] | 842 | ieee80211_wake_queues(priv->hw); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 843 | |
Wey-Yi Guy | 2f748de | 2009-09-17 10:43:51 -0700 | [diff] [blame] | 844 | /* Configure Tx antenna selection based on H/W config */ |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 845 | iwlagn_send_tx_ant_config(priv, priv->nvm_data->valid_tx_ant); |
Wey-Yi Guy | 2f748de | 2009-09-17 10:43:51 -0700 | [diff] [blame] | 846 | |
Johannes Berg | 15b86bf | 2012-03-05 11:24:36 -0800 | [diff] [blame] | 847 | if (iwl_is_associated_ctx(ctx) && !priv->wowlan) { |
Gregory Greenman | c1adf9f | 2008-05-15 13:53:59 +0800 | [diff] [blame] | 848 | struct iwl_rxon_cmd *active_rxon = |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 849 | (struct iwl_rxon_cmd *)&ctx->active; |
Mohamed Abbas | 019fb97 | 2009-03-17 21:59:18 -0700 | [diff] [blame] | 850 | /* apply any changes in staging */ |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 851 | ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 852 | active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
| 853 | } else { |
Johannes Berg | d0fe478 | 2010-08-23 10:46:58 +0200 | [diff] [blame] | 854 | struct iwl_rxon_context *tmp; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 855 | /* Initialize our rx_config data */ |
Johannes Berg | d0fe478 | 2010-08-23 10:46:58 +0200 | [diff] [blame] | 856 | for_each_context(priv, tmp) |
| 857 | iwl_connection_init_rx_config(priv, tmp); |
Abhijeet Kolekar | 4582353 | 2009-04-08 11:26:44 -0700 | [diff] [blame] | 858 | |
Wey-Yi Guy | e3f10ce | 2011-07-01 07:59:26 -0700 | [diff] [blame] | 859 | iwlagn_set_rxon_chain(priv, ctx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 860 | } |
| 861 | |
Johannes Berg | 15b86bf | 2012-03-05 11:24:36 -0800 | [diff] [blame] | 862 | if (!priv->wowlan) { |
Johannes Berg | c8ac61c | 2011-07-15 13:23:45 -0700 | [diff] [blame] | 863 | /* WoWLAN ucode will not reply in the same way, skip it */ |
| 864 | iwl_reset_run_time_calib(priv); |
| 865 | } |
Tomas Winkler | 4a4a9e8 | 2008-05-29 16:34:54 +0800 | [diff] [blame] | 866 | |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 867 | set_bit(STATUS_READY, &priv->status); |
Wey-Yi Guy | 9e2e742 | 2010-11-12 13:52:37 -0800 | [diff] [blame] | 868 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 869 | /* Configure the adapter for unassociated operation */ |
Wey-Yi Guy | 805a3b8 | 2011-06-03 07:54:16 -0700 | [diff] [blame] | 870 | ret = iwlagn_commit_rxon(priv, ctx); |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 871 | if (ret) |
| 872 | return ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 873 | |
| 874 | /* At this point, the NIC is initialized and operational */ |
Emmanuel Grumbach | 47f4a58 | 2008-06-12 09:47:13 +0800 | [diff] [blame] | 875 | iwl_rf_kill_ct_config(priv); |
Zhu Yi | 5a66926a | 2008-01-14 17:46:18 -0800 | [diff] [blame] | 876 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 877 | IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 878 | |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 879 | return iwl_power_update_mode(priv, true); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 880 | } |
| 881 | |
Johannes Berg | d316383 | 2012-03-05 11:24:19 -0800 | [diff] [blame] | 882 | /** |
| 883 | * iwl_clear_driver_stations - clear knowledge of all stations from driver |
| 884 | * @priv: iwl priv struct |
| 885 | * |
| 886 | * This is called during iwl_down() to make sure that in the case |
| 887 | * we're coming there from a hardware restart mac80211 will be |
| 888 | * able to reconfigure stations -- if we're getting there in the |
| 889 | * normal down flow then the stations will already be cleared. |
| 890 | */ |
| 891 | static void iwl_clear_driver_stations(struct iwl_priv *priv) |
| 892 | { |
Johannes Berg | d316383 | 2012-03-05 11:24:19 -0800 | [diff] [blame] | 893 | struct iwl_rxon_context *ctx; |
| 894 | |
Johannes Berg | fa23cb0 | 2012-03-05 11:24:25 -0800 | [diff] [blame] | 895 | spin_lock_bh(&priv->sta_lock); |
Johannes Berg | d316383 | 2012-03-05 11:24:19 -0800 | [diff] [blame] | 896 | memset(priv->stations, 0, sizeof(priv->stations)); |
| 897 | priv->num_stations = 0; |
| 898 | |
| 899 | priv->ucode_key_table = 0; |
| 900 | |
| 901 | for_each_context(priv, ctx) { |
| 902 | /* |
| 903 | * Remove all key information that is not stored as part |
| 904 | * of station information since mac80211 may not have had |
| 905 | * a chance to remove all the keys. When device is |
| 906 | * reconfigured by mac80211 after an error all keys will |
| 907 | * be reconfigured. |
| 908 | */ |
| 909 | memset(ctx->wep_keys, 0, sizeof(ctx->wep_keys)); |
| 910 | ctx->key_mapping_keys = 0; |
| 911 | } |
| 912 | |
Johannes Berg | fa23cb0 | 2012-03-05 11:24:25 -0800 | [diff] [blame] | 913 | spin_unlock_bh(&priv->sta_lock); |
Johannes Berg | d316383 | 2012-03-05 11:24:19 -0800 | [diff] [blame] | 914 | } |
| 915 | |
Emmanuel Grumbach | 78e5a46 | 2012-02-17 10:34:53 -0800 | [diff] [blame] | 916 | void iwl_down(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 917 | { |
Dan Carpenter | 22dd2fd | 2011-03-15 10:03:24 +0300 | [diff] [blame] | 918 | int exit_pending; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 919 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 920 | IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 921 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 922 | lockdep_assert_held(&priv->mutex); |
Emmanuel Grumbach | 78e5a46 | 2012-02-17 10:34:53 -0800 | [diff] [blame] | 923 | |
Stanislaw Gruszka | d745d47 | 2010-09-13 14:46:35 +0200 | [diff] [blame] | 924 | iwl_scan_cancel_timeout(priv, 200); |
| 925 | |
Emmanuel Grumbach | 63013ae | 2011-08-25 23:10:42 -0700 | [diff] [blame] | 926 | exit_pending = |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 927 | test_and_set_bit(STATUS_EXIT_PENDING, &priv->status); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 928 | |
Johannes Berg | dcef732 | 2010-08-27 08:55:52 -0700 | [diff] [blame] | 929 | iwl_clear_ucode_stations(priv, NULL); |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 930 | iwl_dealloc_bcast_stations(priv); |
Johannes Berg | db125c7 | 2010-05-07 01:49:15 -0700 | [diff] [blame] | 931 | iwl_clear_driver_stations(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 932 | |
Johannes Berg | a117413 | 2010-08-23 07:56:59 -0700 | [diff] [blame] | 933 | /* reset BT coex data */ |
Wey-Yi Guy | da5dbb9 | 2010-08-23 07:57:13 -0700 | [diff] [blame] | 934 | priv->bt_status = 0; |
Meenakshi Venkataraman | 207ecc5 | 2011-07-08 08:46:23 -0700 | [diff] [blame] | 935 | priv->cur_rssi_ctx = NULL; |
| 936 | priv->bt_is_sco = 0; |
Johannes Berg | 0d8877a | 2013-05-17 10:36:29 +0200 | [diff] [blame] | 937 | if (priv->lib->bt_params) |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 938 | priv->bt_traffic_load = |
Johannes Berg | 0d8877a | 2013-05-17 10:36:29 +0200 | [diff] [blame] | 939 | priv->lib->bt_params->bt_init_traffic_load; |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 940 | else |
| 941 | priv->bt_traffic_load = 0; |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 942 | priv->bt_full_concurrent = false; |
| 943 | priv->bt_ci_compliance = 0; |
Johannes Berg | a117413 | 2010-08-23 07:56:59 -0700 | [diff] [blame] | 944 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 945 | /* Wipe out the EXIT_PENDING status bit if we are not actually |
| 946 | * exiting the module */ |
| 947 | if (!exit_pending) |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 948 | clear_bit(STATUS_EXIT_PENDING, &priv->status); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 949 | |
Emmanuel Grumbach | 859cfb0 | 2011-09-15 11:46:31 -0700 | [diff] [blame] | 950 | if (priv->mac80211_registered) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 951 | ieee80211_stop_queues(priv->hw); |
| 952 | |
David Spinadel | 8f7ffbe | 2012-03-10 13:00:10 -0800 | [diff] [blame] | 953 | priv->ucode_loaded = false; |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 954 | iwl_trans_stop_device(priv->trans); |
Emmanuel Grumbach | 909e9b2 | 2011-09-15 11:46:30 -0700 | [diff] [blame] | 955 | |
Ilan Peer | 622a926 | 2012-05-09 16:11:55 +0300 | [diff] [blame] | 956 | /* Set num_aux_in_flight must be done after the transport is stopped */ |
| 957 | atomic_set(&priv->num_aux_in_flight, 0); |
| 958 | |
Johannes Berg | 1a10f43 | 2011-04-13 03:14:44 -0700 | [diff] [blame] | 959 | /* Clear out all status bits but a few that are stable across reset */ |
Don Fry | 1353a7b | 2012-03-07 09:52:43 -0800 | [diff] [blame] | 960 | priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) << |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 961 | STATUS_RF_KILL_HW | |
Don Fry | 17acd0b | 2012-03-15 13:27:05 -0700 | [diff] [blame] | 962 | test_bit(STATUS_FW_ERROR, &priv->status) << |
| 963 | STATUS_FW_ERROR | |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 964 | test_bit(STATUS_EXIT_PENDING, &priv->status) << |
Mohamed Abbas | 052ec3f | 2008-06-30 17:23:15 +0800 | [diff] [blame] | 965 | STATUS_EXIT_PENDING; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 966 | |
Johannes Berg | 7783454 | 2010-10-04 05:50:36 -0700 | [diff] [blame] | 967 | dev_kfree_skb(priv->beacon_skb); |
Johannes Berg | 12e934d | 2010-10-04 05:50:06 -0700 | [diff] [blame] | 968 | priv->beacon_skb = NULL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 969 | } |
| 970 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 971 | /***************************************************************************** |
| 972 | * |
| 973 | * Workqueue callbacks |
| 974 | * |
| 975 | *****************************************************************************/ |
| 976 | |
Emmanuel Grumbach | 16e727e | 2008-06-12 09:46:52 +0800 | [diff] [blame] | 977 | static void iwl_bg_run_time_calib_work(struct work_struct *work) |
| 978 | { |
| 979 | struct iwl_priv *priv = container_of(work, struct iwl_priv, |
| 980 | run_time_calib_work); |
| 981 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 982 | mutex_lock(&priv->mutex); |
Emmanuel Grumbach | 16e727e | 2008-06-12 09:46:52 +0800 | [diff] [blame] | 983 | |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 984 | if (test_bit(STATUS_EXIT_PENDING, &priv->status) || |
| 985 | test_bit(STATUS_SCANNING, &priv->status)) { |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 986 | mutex_unlock(&priv->mutex); |
Emmanuel Grumbach | 16e727e | 2008-06-12 09:46:52 +0800 | [diff] [blame] | 987 | return; |
| 988 | } |
| 989 | |
| 990 | if (priv->start_calib) { |
Johannes Berg | 0da0e5b | 2011-04-08 08:14:56 -0700 | [diff] [blame] | 991 | iwl_chain_noise_calibration(priv); |
| 992 | iwl_sensitivity_calibration(priv); |
Emmanuel Grumbach | 16e727e | 2008-06-12 09:46:52 +0800 | [diff] [blame] | 993 | } |
| 994 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 995 | mutex_unlock(&priv->mutex); |
Emmanuel Grumbach | 16e727e | 2008-06-12 09:46:52 +0800 | [diff] [blame] | 996 | } |
| 997 | |
Wey-Yi Guy | 7335613 | 2011-11-10 06:55:11 -0800 | [diff] [blame] | 998 | void iwlagn_prepare_restart(struct iwl_priv *priv) |
Johannes Berg | e43e85c | 2011-04-19 07:45:16 -0700 | [diff] [blame] | 999 | { |
Johannes Berg | e43e85c | 2011-04-19 07:45:16 -0700 | [diff] [blame] | 1000 | bool bt_full_concurrent; |
| 1001 | u8 bt_ci_compliance; |
| 1002 | u8 bt_load; |
| 1003 | u8 bt_status; |
Meenakshi Venkataraman | 207ecc5 | 2011-07-08 08:46:23 -0700 | [diff] [blame] | 1004 | bool bt_is_sco; |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 1005 | int i; |
Johannes Berg | e43e85c | 2011-04-19 07:45:16 -0700 | [diff] [blame] | 1006 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1007 | lockdep_assert_held(&priv->mutex); |
Johannes Berg | e43e85c | 2011-04-19 07:45:16 -0700 | [diff] [blame] | 1008 | |
Johannes Berg | e43e85c | 2011-04-19 07:45:16 -0700 | [diff] [blame] | 1009 | priv->is_open = 0; |
| 1010 | |
| 1011 | /* |
| 1012 | * __iwl_down() will clear the BT status variables, |
| 1013 | * which is correct, but when we restart we really |
| 1014 | * want to keep them so restore them afterwards. |
| 1015 | * |
| 1016 | * The restart process will later pick them up and |
| 1017 | * re-configure the hw when we reconfigure the BT |
| 1018 | * command. |
| 1019 | */ |
| 1020 | bt_full_concurrent = priv->bt_full_concurrent; |
| 1021 | bt_ci_compliance = priv->bt_ci_compliance; |
| 1022 | bt_load = priv->bt_traffic_load; |
| 1023 | bt_status = priv->bt_status; |
Meenakshi Venkataraman | 207ecc5 | 2011-07-08 08:46:23 -0700 | [diff] [blame] | 1024 | bt_is_sco = priv->bt_is_sco; |
Johannes Berg | e43e85c | 2011-04-19 07:45:16 -0700 | [diff] [blame] | 1025 | |
Emmanuel Grumbach | 78e5a46 | 2012-02-17 10:34:53 -0800 | [diff] [blame] | 1026 | iwl_down(priv); |
Johannes Berg | e43e85c | 2011-04-19 07:45:16 -0700 | [diff] [blame] | 1027 | |
| 1028 | priv->bt_full_concurrent = bt_full_concurrent; |
| 1029 | priv->bt_ci_compliance = bt_ci_compliance; |
| 1030 | priv->bt_traffic_load = bt_load; |
| 1031 | priv->bt_status = bt_status; |
Meenakshi Venkataraman | 207ecc5 | 2011-07-08 08:46:23 -0700 | [diff] [blame] | 1032 | priv->bt_is_sco = bt_is_sco; |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 1033 | |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 1034 | /* reset aggregation queues */ |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 1035 | for (i = IWLAGN_FIRST_AMPDU_QUEUE; i < IWL_MAX_HW_QUEUES; i++) |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 1036 | priv->queue_to_mac80211[i] = IWL_INVALID_MAC80211_QUEUE; |
| 1037 | /* and stop counts */ |
| 1038 | for (i = 0; i < IWL_MAX_HW_QUEUES; i++) |
| 1039 | atomic_set(&priv->queue_stop_count[i], 0); |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 1040 | |
| 1041 | memset(priv->agg_q_alloc, 0, sizeof(priv->agg_q_alloc)); |
Johannes Berg | e43e85c | 2011-04-19 07:45:16 -0700 | [diff] [blame] | 1042 | } |
| 1043 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 1044 | static void iwl_bg_restart(struct work_struct *data) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1045 | { |
Tomas Winkler | c79dd5b | 2008-03-12 16:58:50 -0700 | [diff] [blame] | 1046 | struct iwl_priv *priv = container_of(data, struct iwl_priv, restart); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1047 | |
Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 1048 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1049 | return; |
| 1050 | |
Don Fry | 17acd0b | 2012-03-15 13:27:05 -0700 | [diff] [blame] | 1051 | if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) { |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1052 | mutex_lock(&priv->mutex); |
Johannes Berg | e43e85c | 2011-04-19 07:45:16 -0700 | [diff] [blame] | 1053 | iwlagn_prepare_restart(priv); |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1054 | mutex_unlock(&priv->mutex); |
Johannes Berg | a117413 | 2010-08-23 07:56:59 -0700 | [diff] [blame] | 1055 | iwl_cancel_deferred_work(priv); |
Amit Beka | 40503f7 | 2012-08-06 17:01:05 +0300 | [diff] [blame] | 1056 | if (priv->mac80211_registered) |
| 1057 | ieee80211_restart_hw(priv->hw); |
| 1058 | else |
| 1059 | IWL_ERR(priv, |
Johannes Berg | 3c6acb6 | 2014-05-07 11:47:53 +0200 | [diff] [blame] | 1060 | "Cannot request restart before registrating with mac80211\n"); |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 1061 | } else { |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 1062 | WARN_ON(1); |
Johannes Berg | 19cc108 | 2009-05-08 13:44:36 -0700 | [diff] [blame] | 1063 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1064 | } |
| 1065 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1066 | /***************************************************************************** |
| 1067 | * |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1068 | * driver setup and teardown |
| 1069 | * |
| 1070 | *****************************************************************************/ |
| 1071 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 1072 | static void iwl_setup_deferred_work(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1073 | { |
Eva Rachel Retuya | b429a77 | 2016-03-19 05:15:47 +0000 | [diff] [blame] | 1074 | priv->workqueue = alloc_ordered_workqueue(DRV_NAME, 0); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1075 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 1076 | INIT_WORK(&priv->restart, iwl_bg_restart); |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 1077 | INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update); |
Emmanuel Grumbach | 16e727e | 2008-06-12 09:46:52 +0800 | [diff] [blame] | 1078 | 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] | 1079 | INIT_WORK(&priv->tx_flush, iwl_bg_tx_flush); |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 1080 | INIT_WORK(&priv->bt_full_concurrency, iwl_bg_bt_full_concurrency); |
Wey-Yi Guy | fbba941 | 2010-08-23 07:57:10 -0700 | [diff] [blame] | 1081 | INIT_WORK(&priv->bt_runtime_config, iwl_bg_bt_runtime_config); |
Tomas Winkler | 2a421b9 | 2008-06-12 09:47:10 +0800 | [diff] [blame] | 1082 | |
Tomas Winkler | 2a421b9 | 2008-06-12 09:47:10 +0800 | [diff] [blame] | 1083 | iwl_setup_scan_deferred_work(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1084 | |
Johannes Berg | 0d8877a | 2013-05-17 10:36:29 +0200 | [diff] [blame] | 1085 | if (priv->lib->bt_params) |
Johannes Berg | 562f08e | 2012-03-07 09:52:18 -0800 | [diff] [blame] | 1086 | iwlagn_bt_setup_deferred_work(priv); |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 1087 | |
Julia Lawall | bd9c504 | 2014-12-26 15:35:44 +0100 | [diff] [blame] | 1088 | setup_timer(&priv->statistics_periodic, iwl_bg_statistics_periodic, |
| 1089 | (unsigned long)priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1090 | |
Julia Lawall | bd9c504 | 2014-12-26 15:35:44 +0100 | [diff] [blame] | 1091 | setup_timer(&priv->ucode_trace, iwl_bg_ucode_trace, |
| 1092 | (unsigned long)priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1093 | } |
| 1094 | |
Emmanuel Grumbach | 78e5a46 | 2012-02-17 10:34:53 -0800 | [diff] [blame] | 1095 | void iwl_cancel_deferred_work(struct iwl_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1096 | { |
Johannes Berg | 0d8877a | 2013-05-17 10:36:29 +0200 | [diff] [blame] | 1097 | if (priv->lib->bt_params) |
Johannes Berg | 562f08e | 2012-03-07 09:52:18 -0800 | [diff] [blame] | 1098 | iwlagn_bt_cancel_deferred_work(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1099 | |
Wey-Yi Guy | 815e629 | 2010-06-03 10:14:01 -0700 | [diff] [blame] | 1100 | cancel_work_sync(&priv->run_time_calib_work); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1101 | cancel_work_sync(&priv->beacon_update); |
Stanislaw Gruszka | e7e16b9 | 2010-09-13 14:46:41 +0200 | [diff] [blame] | 1102 | |
| 1103 | iwl_cancel_scan_deferred_work(priv); |
| 1104 | |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 1105 | cancel_work_sync(&priv->bt_full_concurrency); |
Wey-Yi Guy | fbba941 | 2010-08-23 07:57:10 -0700 | [diff] [blame] | 1106 | cancel_work_sync(&priv->bt_runtime_config); |
Stanislaw Gruszka | e7e16b9 | 2010-09-13 14:46:41 +0200 | [diff] [blame] | 1107 | |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 1108 | del_timer_sync(&priv->statistics_periodic); |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 1109 | del_timer_sync(&priv->ucode_trace); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1110 | } |
| 1111 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 1112 | static int iwl_init_drv(struct iwl_priv *priv) |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 1113 | { |
Johannes Berg | fa23cb0 | 2012-03-05 11:24:25 -0800 | [diff] [blame] | 1114 | spin_lock_init(&priv->sta_lock); |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 1115 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 1116 | mutex_init(&priv->mutex); |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 1117 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 1118 | INIT_LIST_HEAD(&priv->calib_results); |
Johannes Berg | 80e83da | 2011-11-25 11:11:44 -0800 | [diff] [blame] | 1119 | |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 1120 | priv->band = NL80211_BAND_2GHZ; |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 1121 | |
Johannes Berg | 0d8877a | 2013-05-17 10:36:29 +0200 | [diff] [blame] | 1122 | priv->plcp_delta_threshold = priv->lib->plcp_delta_threshold; |
Johannes Berg | ab5c0f1 | 2012-03-06 13:30:53 -0800 | [diff] [blame] | 1123 | |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 1124 | priv->iw_mode = NL80211_IFTYPE_STATION; |
Johannes Berg | ba37a3d | 2009-12-10 14:37:27 -0800 | [diff] [blame] | 1125 | priv->current_ht_config.smps = IEEE80211_SMPS_STATIC; |
Wey-Yi Guy | a13d276 | 2010-01-22 14:22:42 -0800 | [diff] [blame] | 1126 | priv->missed_beacon_threshold = IWL_MISSED_BEACON_THRESHOLD_DEF; |
Wey-Yi Guy | 898ed67 | 2011-07-13 08:38:57 -0700 | [diff] [blame] | 1127 | priv->agg_tids_count = 0; |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 1128 | |
Stanislaw Gruszka | 410f2bb | 2011-03-04 17:51:51 +0100 | [diff] [blame] | 1129 | priv->rx_statistics_jiffies = jiffies; |
| 1130 | |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 1131 | /* Choose which receivers/antennas to use */ |
Wey-Yi Guy | e3f10ce | 2011-07-01 07:59:26 -0700 | [diff] [blame] | 1132 | iwlagn_set_rxon_chain(priv, &priv->contexts[IWL_RXON_CTX_BSS]); |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 1133 | |
| 1134 | iwl_init_scan_params(priv); |
| 1135 | |
Wey-Yi Guy | 22bf59a | 2010-08-23 07:57:11 -0700 | [diff] [blame] | 1136 | /* init bt coex */ |
Johannes Berg | 0d8877a | 2013-05-17 10:36:29 +0200 | [diff] [blame] | 1137 | if (priv->lib->bt_params && |
| 1138 | priv->lib->bt_params->advanced_bt_coexist) { |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 1139 | priv->kill_ack_mask = IWLAGN_BT_KILL_ACK_MASK_DEFAULT; |
| 1140 | priv->kill_cts_mask = IWLAGN_BT_KILL_CTS_MASK_DEFAULT; |
| 1141 | priv->bt_valid = IWLAGN_BT_ALL_VALID_MSK; |
Wey-Yi Guy | 22bf59a | 2010-08-23 07:57:11 -0700 | [diff] [blame] | 1142 | priv->bt_on_thresh = BT_ON_THRESHOLD_DEF; |
| 1143 | priv->bt_duration = BT_DURATION_LIMIT_DEF; |
| 1144 | priv->dynamic_frag_thresh = BT_FRAG_THRESHOLD_DEF; |
Wey-Yi Guy | 22bf59a | 2010-08-23 07:57:11 -0700 | [diff] [blame] | 1145 | } |
| 1146 | |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 1147 | return 0; |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 1148 | } |
| 1149 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 1150 | static void iwl_uninit_drv(struct iwl_priv *priv) |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 1151 | { |
Johannes Berg | 811ecc9 | 2010-04-06 04:12:41 -0700 | [diff] [blame] | 1152 | kfree(priv->scan_cmd); |
Johannes Berg | 4ce7cc2 | 2011-05-13 11:57:40 -0700 | [diff] [blame] | 1153 | kfree(priv->beacon_cmd); |
Johannes Berg | 79d3eef | 2011-11-10 06:55:01 -0800 | [diff] [blame] | 1154 | kfree(rcu_dereference_raw(priv->noa_data)); |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 1155 | iwl_calib_free_results(priv); |
Johannes Berg | c8ac61c | 2011-07-15 13:23:45 -0700 | [diff] [blame] | 1156 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
| 1157 | kfree(priv->wowlan_sram); |
| 1158 | #endif |
Reinette Chatre | 89f186a | 2009-10-30 14:36:11 -0700 | [diff] [blame] | 1159 | } |
| 1160 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 1161 | static void iwl_set_hw_params(struct iwl_priv *priv) |
Wey-Yi Guy | 07d4f1a | 2010-07-31 08:34:08 -0700 | [diff] [blame] | 1162 | { |
Emmanuel Grumbach | 2152268 | 2012-03-22 17:51:44 +0200 | [diff] [blame] | 1163 | if (priv->cfg->ht_params) |
Johannes Berg | 9e29511 | 2012-04-09 17:46:55 -0700 | [diff] [blame] | 1164 | priv->hw_params.use_rts_for_aggregation = |
Emmanuel Grumbach | 2152268 | 2012-03-22 17:51:44 +0200 | [diff] [blame] | 1165 | priv->cfg->ht_params->use_rts_for_aggregation; |
Johannes Berg | b9ad70d | 2012-03-06 13:30:55 -0800 | [diff] [blame] | 1166 | |
Wey-Yi Guy | 07d4f1a | 2010-07-31 08:34:08 -0700 | [diff] [blame] | 1167 | /* Device-specific setup */ |
Johannes Berg | e967669 | 2012-04-10 14:10:28 -0700 | [diff] [blame] | 1168 | priv->lib->set_hw_params(priv); |
Wey-Yi Guy | 07d4f1a | 2010-07-31 08:34:08 -0700 | [diff] [blame] | 1169 | } |
| 1170 | |
Wey-Yi Guy | 119ea18 | 2011-04-18 09:34:06 -0700 | [diff] [blame] | 1171 | |
Wey-Yi Guy | 119ea18 | 2011-04-18 09:34:06 -0700 | [diff] [blame] | 1172 | |
Wey-Yi Guy | 07d3c15 | 2012-04-27 16:18:47 -0700 | [diff] [blame] | 1173 | /* show what optional capabilities we have */ |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 1174 | static void iwl_option_config(struct iwl_priv *priv) |
Wey-Yi Guy | ebfa867 | 2011-11-25 11:11:47 -0800 | [diff] [blame] | 1175 | { |
Wey-Yi Guy | ebfa867 | 2011-11-25 11:11:47 -0800 | [diff] [blame] | 1176 | #ifdef CONFIG_IWLWIFI_DEBUG |
Wey-Yi Guy | 07d3c15 | 2012-04-27 16:18:47 -0700 | [diff] [blame] | 1177 | IWL_INFO(priv, "CONFIG_IWLWIFI_DEBUG enabled\n"); |
Wey-Yi Guy | ebfa867 | 2011-11-25 11:11:47 -0800 | [diff] [blame] | 1178 | #else |
Wey-Yi Guy | 07d3c15 | 2012-04-27 16:18:47 -0700 | [diff] [blame] | 1179 | IWL_INFO(priv, "CONFIG_IWLWIFI_DEBUG disabled\n"); |
Wey-Yi Guy | ebfa867 | 2011-11-25 11:11:47 -0800 | [diff] [blame] | 1180 | #endif |
Wey-Yi Guy | 07d3c15 | 2012-04-27 16:18:47 -0700 | [diff] [blame] | 1181 | |
Wey-Yi Guy | ebfa867 | 2011-11-25 11:11:47 -0800 | [diff] [blame] | 1182 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
Wey-Yi Guy | 07d3c15 | 2012-04-27 16:18:47 -0700 | [diff] [blame] | 1183 | IWL_INFO(priv, "CONFIG_IWLWIFI_DEBUGFS enabled\n"); |
Wey-Yi Guy | ebfa867 | 2011-11-25 11:11:47 -0800 | [diff] [blame] | 1184 | #else |
Wey-Yi Guy | 07d3c15 | 2012-04-27 16:18:47 -0700 | [diff] [blame] | 1185 | IWL_INFO(priv, "CONFIG_IWLWIFI_DEBUGFS disabled\n"); |
Wey-Yi Guy | ebfa867 | 2011-11-25 11:11:47 -0800 | [diff] [blame] | 1186 | #endif |
Wey-Yi Guy | 07d3c15 | 2012-04-27 16:18:47 -0700 | [diff] [blame] | 1187 | |
Wey-Yi Guy | ebfa867 | 2011-11-25 11:11:47 -0800 | [diff] [blame] | 1188 | #ifdef CONFIG_IWLWIFI_DEVICE_TRACING |
Wey-Yi Guy | 07d3c15 | 2012-04-27 16:18:47 -0700 | [diff] [blame] | 1189 | IWL_INFO(priv, "CONFIG_IWLWIFI_DEVICE_TRACING enabled\n"); |
Wey-Yi Guy | ebfa867 | 2011-11-25 11:11:47 -0800 | [diff] [blame] | 1190 | #else |
Wey-Yi Guy | 07d3c15 | 2012-04-27 16:18:47 -0700 | [diff] [blame] | 1191 | IWL_INFO(priv, "CONFIG_IWLWIFI_DEVICE_TRACING disabled\n"); |
Wey-Yi Guy | ebfa867 | 2011-11-25 11:11:47 -0800 | [diff] [blame] | 1192 | #endif |
Wey-Yi Guy | ebfa867 | 2011-11-25 11:11:47 -0800 | [diff] [blame] | 1193 | } |
| 1194 | |
Johannes Berg | 26a7ca9 | 2012-05-21 11:55:54 +0200 | [diff] [blame] | 1195 | static int iwl_eeprom_init_hw_params(struct iwl_priv *priv) |
| 1196 | { |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 1197 | struct iwl_nvm_data *data = priv->nvm_data; |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 1198 | |
| 1199 | if (data->sku_cap_11n_enable && |
Johannes Berg | 26a7ca9 | 2012-05-21 11:55:54 +0200 | [diff] [blame] | 1200 | !priv->cfg->ht_params) { |
| 1201 | IWL_ERR(priv, "Invalid 11n configuration\n"); |
| 1202 | return -EINVAL; |
| 1203 | } |
| 1204 | |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 1205 | if (!data->sku_cap_11n_enable && !data->sku_cap_band_24GHz_enable && |
| 1206 | !data->sku_cap_band_52GHz_enable) { |
Johannes Berg | 26a7ca9 | 2012-05-21 11:55:54 +0200 | [diff] [blame] | 1207 | IWL_ERR(priv, "Invalid device sku\n"); |
| 1208 | return -EINVAL; |
| 1209 | } |
| 1210 | |
Johannes Berg | 3c6acb6 | 2014-05-07 11:47:53 +0200 | [diff] [blame] | 1211 | IWL_DEBUG_INFO(priv, |
| 1212 | "Device SKU: 24GHz %s %s, 52GHz %s %s, 11.n %s %s\n", |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 1213 | data->sku_cap_band_24GHz_enable ? "" : "NOT", "enabled", |
| 1214 | data->sku_cap_band_52GHz_enable ? "" : "NOT", "enabled", |
| 1215 | data->sku_cap_11n_enable ? "" : "NOT", "enabled"); |
Johannes Berg | 26a7ca9 | 2012-05-21 11:55:54 +0200 | [diff] [blame] | 1216 | |
Johannes Berg | 26a7ca9 | 2012-05-21 11:55:54 +0200 | [diff] [blame] | 1217 | priv->hw_params.tx_chains_num = |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 1218 | num_of_ant(data->valid_tx_ant); |
Johannes Berg | 26a7ca9 | 2012-05-21 11:55:54 +0200 | [diff] [blame] | 1219 | if (priv->cfg->rx_with_siso_diversity) |
| 1220 | priv->hw_params.rx_chains_num = 1; |
| 1221 | else |
| 1222 | priv->hw_params.rx_chains_num = |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 1223 | num_of_ant(data->valid_rx_ant); |
Johannes Berg | 26a7ca9 | 2012-05-21 11:55:54 +0200 | [diff] [blame] | 1224 | |
Johannes Berg | 468b4bf | 2012-11-05 19:48:33 +0100 | [diff] [blame] | 1225 | IWL_DEBUG_INFO(priv, "Valid Tx ant: 0x%X, Valid Rx ant: 0x%X\n", |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 1226 | data->valid_tx_ant, |
| 1227 | data->valid_rx_ant); |
Johannes Berg | 26a7ca9 | 2012-05-21 11:55:54 +0200 | [diff] [blame] | 1228 | |
| 1229 | return 0; |
| 1230 | } |
| 1231 | |
Johannes Berg | 0692fe4 | 2012-03-06 13:30:37 -0800 | [diff] [blame] | 1232 | static struct iwl_op_mode *iwl_op_mode_dvm_start(struct iwl_trans *trans, |
Emmanuel Grumbach | 2152268 | 2012-03-22 17:51:44 +0200 | [diff] [blame] | 1233 | const struct iwl_cfg *cfg, |
Meenakshi Venkataraman | 9da987a | 2012-07-16 18:43:56 -0700 | [diff] [blame] | 1234 | const struct iwl_fw *fw, |
| 1235 | struct dentry *dbgfs_dir) |
Wey-Yi Guy | b2ea345 | 2011-06-07 08:53:14 -0700 | [diff] [blame] | 1236 | { |
Wey-Yi Guy | b2ea345 | 2011-06-07 08:53:14 -0700 | [diff] [blame] | 1237 | struct iwl_priv *priv; |
| 1238 | struct ieee80211_hw *hw; |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 1239 | struct iwl_op_mode *op_mode; |
Emmanuel Grumbach | 084dd791 | 2011-05-31 09:07:00 +0300 | [diff] [blame] | 1240 | u16 num_mac; |
Johannes Berg | a78be21 | 2012-02-21 18:31:06 +0200 | [diff] [blame] | 1241 | u32 ucode_flags; |
Emmanuel Grumbach | e733269 | 2012-11-05 12:52:57 +0200 | [diff] [blame] | 1242 | struct iwl_trans_config trans_cfg = {}; |
Johannes Berg | d663ee7 | 2012-03-10 13:00:07 -0800 | [diff] [blame] | 1243 | static const u8 no_reclaim_cmds[] = { |
| 1244 | REPLY_RX_PHY_CMD, |
Johannes Berg | d663ee7 | 2012-03-10 13:00:07 -0800 | [diff] [blame] | 1245 | REPLY_RX_MPDU_CMD, |
| 1246 | REPLY_COMPRESSED_BA, |
| 1247 | STATISTICS_NOTIFICATION, |
| 1248 | REPLY_TX, |
| 1249 | }; |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 1250 | int i; |
Wey-Yi Guy | b2ea345 | 2011-06-07 08:53:14 -0700 | [diff] [blame] | 1251 | |
| 1252 | /************************ |
| 1253 | * 1. Allocating HW data |
| 1254 | ************************/ |
Don Fry | fa06ec7 | 2011-10-14 12:54:46 -0700 | [diff] [blame] | 1255 | hw = iwl_alloc_all(); |
Wey-Yi Guy | b2ea345 | 2011-06-07 08:53:14 -0700 | [diff] [blame] | 1256 | if (!hw) { |
Emmanuel Grumbach | 2152268 | 2012-03-22 17:51:44 +0200 | [diff] [blame] | 1257 | pr_err("%s: Cannot allocate network device\n", cfg->name); |
Emmanuel Grumbach | 807caf2 | 2011-06-09 02:55:55 -0700 | [diff] [blame] | 1258 | goto out; |
| 1259 | } |
| 1260 | |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 1261 | op_mode = hw->priv; |
| 1262 | op_mode->ops = &iwl_dvm_ops; |
| 1263 | priv = IWL_OP_MODE_GET_DVM(op_mode); |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 1264 | priv->trans = trans; |
Emmanuel Grumbach | 4b9844f | 2012-03-22 23:59:52 +0200 | [diff] [blame] | 1265 | priv->dev = trans->dev; |
Emmanuel Grumbach | 2152268 | 2012-03-22 17:51:44 +0200 | [diff] [blame] | 1266 | priv->cfg = cfg; |
Johannes Berg | 0692fe4 | 2012-03-06 13:30:37 -0800 | [diff] [blame] | 1267 | priv->fw = fw; |
Emmanuel Grumbach | a48709c | 2011-05-31 08:22:30 +0300 | [diff] [blame] | 1268 | |
Emmanuel Grumbach | 2152268 | 2012-03-22 17:51:44 +0200 | [diff] [blame] | 1269 | switch (priv->cfg->device_family) { |
Johannes Berg | e967669 | 2012-04-10 14:10:28 -0700 | [diff] [blame] | 1270 | case IWL_DEVICE_FAMILY_1000: |
| 1271 | case IWL_DEVICE_FAMILY_100: |
Johannes Berg | ee4d547 | 2013-05-17 09:58:27 +0200 | [diff] [blame] | 1272 | priv->lib = &iwl_dvm_1000_cfg; |
Johannes Berg | e967669 | 2012-04-10 14:10:28 -0700 | [diff] [blame] | 1273 | break; |
| 1274 | case IWL_DEVICE_FAMILY_2000: |
Johannes Berg | ee4d547 | 2013-05-17 09:58:27 +0200 | [diff] [blame] | 1275 | priv->lib = &iwl_dvm_2000_cfg; |
Johannes Berg | e967669 | 2012-04-10 14:10:28 -0700 | [diff] [blame] | 1276 | break; |
Johannes Berg | 0d8877a | 2013-05-17 10:36:29 +0200 | [diff] [blame] | 1277 | case IWL_DEVICE_FAMILY_105: |
| 1278 | priv->lib = &iwl_dvm_105_cfg; |
| 1279 | break; |
Johannes Berg | e967669 | 2012-04-10 14:10:28 -0700 | [diff] [blame] | 1280 | case IWL_DEVICE_FAMILY_2030: |
| 1281 | case IWL_DEVICE_FAMILY_135: |
Johannes Berg | ee4d547 | 2013-05-17 09:58:27 +0200 | [diff] [blame] | 1282 | priv->lib = &iwl_dvm_2030_cfg; |
Johannes Berg | e967669 | 2012-04-10 14:10:28 -0700 | [diff] [blame] | 1283 | break; |
| 1284 | case IWL_DEVICE_FAMILY_5000: |
Johannes Berg | ee4d547 | 2013-05-17 09:58:27 +0200 | [diff] [blame] | 1285 | priv->lib = &iwl_dvm_5000_cfg; |
Johannes Berg | e967669 | 2012-04-10 14:10:28 -0700 | [diff] [blame] | 1286 | break; |
| 1287 | case IWL_DEVICE_FAMILY_5150: |
Johannes Berg | ee4d547 | 2013-05-17 09:58:27 +0200 | [diff] [blame] | 1288 | priv->lib = &iwl_dvm_5150_cfg; |
Johannes Berg | e967669 | 2012-04-10 14:10:28 -0700 | [diff] [blame] | 1289 | break; |
| 1290 | case IWL_DEVICE_FAMILY_6000: |
Johannes Berg | e967669 | 2012-04-10 14:10:28 -0700 | [diff] [blame] | 1291 | case IWL_DEVICE_FAMILY_6000i: |
Johannes Berg | 0d8877a | 2013-05-17 10:36:29 +0200 | [diff] [blame] | 1292 | priv->lib = &iwl_dvm_6000_cfg; |
| 1293 | break; |
| 1294 | case IWL_DEVICE_FAMILY_6005: |
| 1295 | priv->lib = &iwl_dvm_6005_cfg; |
| 1296 | break; |
Johannes Berg | e967669 | 2012-04-10 14:10:28 -0700 | [diff] [blame] | 1297 | case IWL_DEVICE_FAMILY_6050: |
| 1298 | case IWL_DEVICE_FAMILY_6150: |
Johannes Berg | 0d8877a | 2013-05-17 10:36:29 +0200 | [diff] [blame] | 1299 | priv->lib = &iwl_dvm_6050_cfg; |
Johannes Berg | e967669 | 2012-04-10 14:10:28 -0700 | [diff] [blame] | 1300 | break; |
| 1301 | case IWL_DEVICE_FAMILY_6030: |
Johannes Berg | ee4d547 | 2013-05-17 09:58:27 +0200 | [diff] [blame] | 1302 | priv->lib = &iwl_dvm_6030_cfg; |
Johannes Berg | e967669 | 2012-04-10 14:10:28 -0700 | [diff] [blame] | 1303 | break; |
| 1304 | default: |
| 1305 | break; |
| 1306 | } |
| 1307 | |
| 1308 | if (WARN_ON(!priv->lib)) |
Johannes Berg | 063c516 | 2012-04-03 16:35:41 -0700 | [diff] [blame] | 1309 | goto out_free_hw; |
Johannes Berg | e967669 | 2012-04-10 14:10:28 -0700 | [diff] [blame] | 1310 | |
Emmanuel Grumbach | 3dc420b | 2012-03-07 09:52:41 -0800 | [diff] [blame] | 1311 | /* |
| 1312 | * Populate the state variables that the transport layer needs |
| 1313 | * to know about. |
| 1314 | */ |
| 1315 | trans_cfg.op_mode = op_mode; |
Johannes Berg | d663ee7 | 2012-03-10 13:00:07 -0800 | [diff] [blame] | 1316 | trans_cfg.no_reclaim_cmds = no_reclaim_cmds; |
| 1317 | trans_cfg.n_no_reclaim_cmds = ARRAY_SIZE(no_reclaim_cmds); |
Emmanuel Grumbach | 6c4fbcb | 2015-11-10 11:57:41 +0200 | [diff] [blame] | 1318 | |
| 1319 | switch (iwlwifi_mod_params.amsdu_size) { |
Emmanuel Grumbach | 4bdd4df | 2016-04-07 16:44:42 +0300 | [diff] [blame] | 1320 | case IWL_AMSDU_DEF: |
Emmanuel Grumbach | 6c4fbcb | 2015-11-10 11:57:41 +0200 | [diff] [blame] | 1321 | case IWL_AMSDU_4K: |
| 1322 | trans_cfg.rx_buf_size = IWL_AMSDU_4K; |
| 1323 | break; |
| 1324 | case IWL_AMSDU_8K: |
| 1325 | trans_cfg.rx_buf_size = IWL_AMSDU_8K; |
| 1326 | break; |
| 1327 | case IWL_AMSDU_12K: |
| 1328 | default: |
| 1329 | trans_cfg.rx_buf_size = IWL_AMSDU_4K; |
| 1330 | pr_err("Unsupported amsdu_size: %d\n", |
| 1331 | iwlwifi_mod_params.amsdu_size); |
| 1332 | } |
| 1333 | |
Emmanuel Grumbach | 4cf677f | 2015-01-12 14:38:29 +0200 | [diff] [blame] | 1334 | trans_cfg.cmd_q_wdg_timeout = IWL_WATCHDOG_DISABLED; |
| 1335 | |
Sharon Dvir | 39bdb17 | 2015-10-15 18:18:09 +0300 | [diff] [blame] | 1336 | trans_cfg.command_groups = iwl_dvm_groups; |
| 1337 | trans_cfg.command_groups_size = ARRAY_SIZE(iwl_dvm_groups); |
| 1338 | |
Emmanuel Grumbach | b04db9a | 2012-06-21 11:53:44 +0300 | [diff] [blame] | 1339 | trans_cfg.cmd_fifo = IWLAGN_CMD_FIFO_NUM; |
Johannes Berg | 21cb322 | 2016-06-21 13:11:48 +0200 | [diff] [blame] | 1340 | trans_cfg.cb_data_offs = offsetof(struct ieee80211_tx_info, |
| 1341 | driver_data[2]); |
Meenakshi Venkataraman | 9bdfbfa | 2012-03-07 09:52:36 -0800 | [diff] [blame] | 1342 | |
Emmanuel Grumbach | 303e56f | 2012-06-13 19:37:06 +0300 | [diff] [blame] | 1343 | WARN_ON(sizeof(priv->transport_queue_stop) * BITS_PER_BYTE < |
| 1344 | priv->cfg->base_params->num_of_queues); |
| 1345 | |
Meenakshi Venkataraman | 9bdfbfa | 2012-03-07 09:52:36 -0800 | [diff] [blame] | 1346 | ucode_flags = fw->ucode_capa.flags; |
| 1347 | |
Meenakshi Venkataraman | c6f600f | 2012-03-08 11:29:12 -0800 | [diff] [blame] | 1348 | if (ucode_flags & IWL_UCODE_TLV_FLAGS_PAN) { |
| 1349 | priv->sta_key_max_num = STA_KEY_MAX_NUM_PAN; |
| 1350 | trans_cfg.cmd_queue = IWL_IPAN_CMD_QUEUE_NUM; |
| 1351 | } else { |
| 1352 | priv->sta_key_max_num = STA_KEY_MAX_NUM; |
| 1353 | trans_cfg.cmd_queue = IWL_DEFAULT_CMD_QUEUE_NUM; |
| 1354 | } |
| 1355 | |
Meenakshi Venkataraman | 92d743a | 2012-03-07 09:52:35 -0800 | [diff] [blame] | 1356 | /* Configure transport layer */ |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 1357 | iwl_trans_configure(priv->trans, &trans_cfg); |
Emmanuel Grumbach | ed277c9 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 1358 | |
Johannes Berg | f042c2e | 2012-09-05 22:34:44 +0200 | [diff] [blame] | 1359 | trans->rx_mpdu_cmd = REPLY_RX_MPDU_CMD; |
| 1360 | trans->rx_mpdu_cmd_hdr_size = sizeof(struct iwl_rx_mpdu_res_start); |
Sharon Dvir | 39bdb17 | 2015-10-15 18:18:09 +0300 | [diff] [blame] | 1361 | trans->command_groups = trans_cfg.command_groups; |
| 1362 | trans->command_groups_size = trans_cfg.command_groups_size; |
Johannes Berg | f042c2e | 2012-09-05 22:34:44 +0200 | [diff] [blame] | 1363 | |
Wey-Yi Guy | b2ea345 | 2011-06-07 08:53:14 -0700 | [diff] [blame] | 1364 | /* At this point both hw and priv are allocated. */ |
Johannes Berg | 8f2d3d2 | 2010-08-23 10:46:37 +0200 | [diff] [blame] | 1365 | |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 1366 | SET_IEEE80211_DEV(priv->hw, priv->trans->dev); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1367 | |
Wey-Yi Guy | 07d3c15 | 2012-04-27 16:18:47 -0700 | [diff] [blame] | 1368 | iwl_option_config(priv); |
Wey-Yi Guy | ebfa867 | 2011-11-25 11:11:47 -0800 | [diff] [blame] | 1369 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 1370 | IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n"); |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 1371 | |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 1372 | /* is antenna coupling more than 35dB ? */ |
| 1373 | priv->bt_ant_couple_ok = |
Johannes Berg | 65de7e8 | 2012-04-17 07:36:30 -0700 | [diff] [blame] | 1374 | (iwlwifi_mod_params.ant_coupling > |
Emmanuel Grumbach | 48f20d3 | 2011-08-25 23:10:36 -0700 | [diff] [blame] | 1375 | IWL_BT_ANTENNA_COUPLING_THRESHOLD) ? |
| 1376 | true : false; |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 1377 | |
Emmanuel Grumbach | bc53cd4 | 2013-06-18 06:29:56 +0300 | [diff] [blame] | 1378 | /* bt channel inhibition enabled*/ |
| 1379 | priv->bt_ch_announce = true; |
Wey-Yi Guy | 9f28ebc | 2010-11-26 13:24:19 -0800 | [diff] [blame] | 1380 | IWL_DEBUG_INFO(priv, "BT channel inhibition is %s\n", |
| 1381 | (priv->bt_ch_announce) ? "On" : "Off"); |
Wey-Yi Guy | f37837c | 2010-08-23 07:57:12 -0700 | [diff] [blame] | 1382 | |
Reinette Chatre | 731a29b | 2009-12-14 14:12:11 -0800 | [diff] [blame] | 1383 | /* 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] | 1384 | * we should init now |
| 1385 | */ |
Johannes Berg | 4ff70fc | 2012-03-05 11:24:26 -0800 | [diff] [blame] | 1386 | spin_lock_init(&priv->statistics.lock); |
Reinette Chatre | 4843b5a | 2010-02-03 09:38:59 -0800 | [diff] [blame] | 1387 | |
Emmanuel Grumbach | 084dd791 | 2011-05-31 09:07:00 +0300 | [diff] [blame] | 1388 | /*********************** |
Emmanuel Grumbach | 3dc420b | 2012-03-07 09:52:41 -0800 | [diff] [blame] | 1389 | * 2. Read REV register |
Emmanuel Grumbach | 084dd791 | 2011-05-31 09:07:00 +0300 | [diff] [blame] | 1390 | ***********************/ |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 1391 | IWL_INFO(priv, "Detected %s, REV=0x%X\n", |
Emmanuel Grumbach | 2152268 | 2012-03-22 17:51:44 +0200 | [diff] [blame] | 1392 | priv->cfg->name, priv->trans->hw_rev); |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 1393 | |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 1394 | if (iwl_trans_start_hw(priv->trans)) |
Johannes Berg | 063c516 | 2012-04-03 16:35:41 -0700 | [diff] [blame] | 1395 | goto out_free_hw; |
Emmanuel Grumbach | 1e89cbac | 2011-07-20 17:51:22 -0700 | [diff] [blame] | 1396 | |
Wey-Yi Guy | 88f10a1 | 2012-03-15 13:26:42 -0700 | [diff] [blame] | 1397 | /* Read the EEPROM */ |
Johannes Berg | 26a7ca9 | 2012-05-21 11:55:54 +0200 | [diff] [blame] | 1398 | if (iwl_read_eeprom(priv->trans, &priv->eeprom_blob, |
| 1399 | &priv->eeprom_blob_size)) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 1400 | IWL_ERR(priv, "Unable to init EEPROM\n"); |
Johannes Berg | 063c516 | 2012-04-03 16:35:41 -0700 | [diff] [blame] | 1401 | goto out_free_hw; |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 1402 | } |
Johannes Berg | 26a7ca9 | 2012-05-21 11:55:54 +0200 | [diff] [blame] | 1403 | |
Wey-Yi Guy | 88f10a1 | 2012-03-15 13:26:42 -0700 | [diff] [blame] | 1404 | /* Reset chip to save power until we load uCode during "up". */ |
Arik Nemtsov | a408284 | 2013-11-24 19:10:46 +0200 | [diff] [blame] | 1405 | iwl_trans_stop_device(priv->trans); |
Wey-Yi Guy | 88f10a1 | 2012-03-15 13:26:42 -0700 | [diff] [blame] | 1406 | |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 1407 | priv->nvm_data = iwl_parse_eeprom_data(priv->trans->dev, priv->cfg, |
Johannes Berg | 26a7ca9 | 2012-05-21 11:55:54 +0200 | [diff] [blame] | 1408 | priv->eeprom_blob, |
| 1409 | priv->eeprom_blob_size); |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 1410 | if (!priv->nvm_data) |
Johannes Berg | 26a7ca9 | 2012-05-21 11:55:54 +0200 | [diff] [blame] | 1411 | goto out_free_eeprom_blob; |
| 1412 | |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 1413 | if (iwl_nvm_check_version(priv->nvm_data, priv->trans)) |
Reinette Chatre | c8f1613 | 2009-02-27 16:21:22 -0800 | [diff] [blame] | 1414 | goto out_free_eeprom; |
Tomas Winkler | 8614f36 | 2008-04-23 17:14:55 -0700 | [diff] [blame] | 1415 | |
Wey-Yi Guy | 88f10a1 | 2012-03-15 13:26:42 -0700 | [diff] [blame] | 1416 | if (iwl_eeprom_init_hw_params(priv)) |
Wey-Yi Guy | 21a5b3c | 2010-11-10 13:32:59 -0800 | [diff] [blame] | 1417 | goto out_free_eeprom; |
| 1418 | |
Ron Rindjunsky | 0288301 | 2008-05-15 13:53:53 +0800 | [diff] [blame] | 1419 | /* extract MAC Address */ |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 1420 | memcpy(priv->addresses[0].addr, priv->nvm_data->hw_addr, ETH_ALEN); |
Wey-Yi Guy | c6fa17e | 2010-07-15 05:58:30 -0700 | [diff] [blame] | 1421 | IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->addresses[0].addr); |
| 1422 | priv->hw->wiphy->addresses = priv->addresses; |
| 1423 | priv->hw->wiphy->n_addresses = 1; |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 1424 | num_mac = priv->nvm_data->n_hw_addrs; |
Wey-Yi Guy | c6fa17e | 2010-07-15 05:58:30 -0700 | [diff] [blame] | 1425 | if (num_mac > 1) { |
| 1426 | memcpy(priv->addresses[1].addr, priv->addresses[0].addr, |
| 1427 | ETH_ALEN); |
| 1428 | priv->addresses[1].addr[5]++; |
| 1429 | priv->hw->wiphy->n_addresses++; |
| 1430 | } |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 1431 | |
Emmanuel Grumbach | 3dc420b | 2012-03-07 09:52:41 -0800 | [diff] [blame] | 1432 | /************************ |
| 1433 | * 4. Setup HW constants |
| 1434 | ************************/ |
| 1435 | iwl_set_hw_params(priv); |
| 1436 | |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 1437 | if (!(priv->nvm_data->sku_cap_ipan_enable)) { |
Johannes Berg | 3c6acb6 | 2014-05-07 11:47:53 +0200 | [diff] [blame] | 1438 | IWL_DEBUG_INFO(priv, "Your EEPROM disabled PAN\n"); |
Emmanuel Grumbach | 3dc420b | 2012-03-07 09:52:41 -0800 | [diff] [blame] | 1439 | ucode_flags &= ~IWL_UCODE_TLV_FLAGS_PAN; |
| 1440 | /* |
| 1441 | * if not PAN, then don't support P2P -- might be a uCode |
| 1442 | * packaging bug or due to the eeprom check above |
| 1443 | */ |
Emmanuel Grumbach | 3dc420b | 2012-03-07 09:52:41 -0800 | [diff] [blame] | 1444 | priv->sta_key_max_num = STA_KEY_MAX_NUM; |
| 1445 | trans_cfg.cmd_queue = IWL_DEFAULT_CMD_QUEUE_NUM; |
| 1446 | |
| 1447 | /* Configure transport layer again*/ |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 1448 | iwl_trans_configure(priv->trans, &trans_cfg); |
Emmanuel Grumbach | 3dc420b | 2012-03-07 09:52:41 -0800 | [diff] [blame] | 1449 | } |
| 1450 | |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 1451 | /******************* |
Emmanuel Grumbach | 3dc420b | 2012-03-07 09:52:41 -0800 | [diff] [blame] | 1452 | * 5. Setup priv |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 1453 | *******************/ |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 1454 | for (i = 0; i < IWL_MAX_HW_QUEUES; i++) { |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 1455 | priv->queue_to_mac80211[i] = IWL_INVALID_MAC80211_QUEUE; |
| 1456 | if (i < IWLAGN_FIRST_AMPDU_QUEUE && |
| 1457 | i != IWL_DEFAULT_CMD_QUEUE_NUM && |
| 1458 | i != IWL_IPAN_CMD_QUEUE_NUM) |
| 1459 | priv->queue_to_mac80211[i] = i; |
| 1460 | atomic_set(&priv->queue_stop_count[i], 0); |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 1461 | } |
| 1462 | |
Wey-Yi Guy | 88f10a1 | 2012-03-15 13:26:42 -0700 | [diff] [blame] | 1463 | if (iwl_init_drv(priv)) |
Ron Rindjunsky | 399f490 | 2008-04-23 17:14:56 -0700 | [diff] [blame] | 1464 | goto out_free_eeprom; |
Wey-Yi Guy | 88f10a1 | 2012-03-15 13:26:42 -0700 | [diff] [blame] | 1465 | |
Assaf Krauss | bf85ea4 | 2008-03-14 10:38:49 -0700 | [diff] [blame] | 1466 | /* At this point both hw and priv are initialized. */ |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 1467 | |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 1468 | /******************** |
Emmanuel Grumbach | 3dc420b | 2012-03-07 09:52:41 -0800 | [diff] [blame] | 1469 | * 6. Setup services |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 1470 | ********************/ |
Emmanuel Grumbach | 4e39317 | 2008-06-12 09:46:53 +0800 | [diff] [blame] | 1471 | iwl_setup_deferred_work(priv); |
Emmanuel Grumbach | 653fa4a | 2008-06-30 17:23:11 +0800 | [diff] [blame] | 1472 | iwl_setup_rx_handlers(priv); |
Assaf Krauss | 316c30d | 2008-03-14 10:38:46 -0700 | [diff] [blame] | 1473 | |
Emmanuel Grumbach | 58d0f36 | 2008-06-12 09:47:19 +0800 | [diff] [blame] | 1474 | iwl_power_initialize(priv); |
Wey-Yi Guy | 39b73fb1 | 2009-07-24 11:13:02 -0700 | [diff] [blame] | 1475 | iwl_tt_initialize(priv); |
Johannes Berg | 158bea0 | 2010-01-22 14:22:53 -0800 | [diff] [blame] | 1476 | |
Emmanuel Grumbach | e211b24 | 2012-02-07 10:35:18 +0200 | [diff] [blame] | 1477 | snprintf(priv->hw->wiphy->fw_version, |
| 1478 | sizeof(priv->hw->wiphy->fw_version), |
| 1479 | "%s", fw->fw_version); |
Johannes Berg | 562db53 | 2010-04-29 07:41:53 -0700 | [diff] [blame] | 1480 | |
Emmanuel Grumbach | e211b24 | 2012-02-07 10:35:18 +0200 | [diff] [blame] | 1481 | priv->new_scan_threshold_behaviour = |
Johannes Berg | a78be21 | 2012-02-21 18:31:06 +0200 | [diff] [blame] | 1482 | !!(ucode_flags & IWL_UCODE_TLV_FLAGS_NEWSCAN); |
Emmanuel Grumbach | e211b24 | 2012-02-07 10:35:18 +0200 | [diff] [blame] | 1483 | |
Emmanuel Grumbach | e211b24 | 2012-02-07 10:35:18 +0200 | [diff] [blame] | 1484 | priv->phy_calib_chain_noise_reset_cmd = |
| 1485 | fw->ucode_capa.standard_phy_calibration_size; |
| 1486 | priv->phy_calib_chain_noise_gain_cmd = |
| 1487 | fw->ucode_capa.standard_phy_calibration_size + 1; |
| 1488 | |
| 1489 | /* initialize all valid contexts */ |
Johannes Berg | a78be21 | 2012-02-21 18:31:06 +0200 | [diff] [blame] | 1490 | iwl_init_context(priv, ucode_flags); |
Emmanuel Grumbach | e211b24 | 2012-02-07 10:35:18 +0200 | [diff] [blame] | 1491 | |
| 1492 | /************************************************** |
| 1493 | * This is still part of probe() in a sense... |
| 1494 | * |
Emmanuel Grumbach | 3dc420b | 2012-03-07 09:52:41 -0800 | [diff] [blame] | 1495 | * 7. Setup and register with mac80211 and debugfs |
Emmanuel Grumbach | e211b24 | 2012-02-07 10:35:18 +0200 | [diff] [blame] | 1496 | **************************************************/ |
Wey-Yi Guy | 88f10a1 | 2012-03-15 13:26:42 -0700 | [diff] [blame] | 1497 | if (iwlagn_mac_setup_register(priv, &fw->ucode_capa)) |
Emmanuel Grumbach | 7d47618 | 2010-05-23 00:14:08 -0700 | [diff] [blame] | 1498 | goto out_destroy_workqueue; |
Johannes Berg | 158bea0 | 2010-01-22 14:22:53 -0800 | [diff] [blame] | 1499 | |
Meenakshi Venkataraman | 9da987a | 2012-07-16 18:43:56 -0700 | [diff] [blame] | 1500 | if (iwl_dbgfs_register(priv, dbgfs_dir)) |
| 1501 | goto out_mac80211_unregister; |
Emmanuel Grumbach | e211b24 | 2012-02-07 10:35:18 +0200 | [diff] [blame] | 1502 | |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 1503 | return op_mode; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1504 | |
Meenakshi Venkataraman | 9da987a | 2012-07-16 18:43:56 -0700 | [diff] [blame] | 1505 | out_mac80211_unregister: |
| 1506 | iwlagn_mac_unregister(priv); |
Emmanuel Grumbach | 34c1b7b | 2011-07-04 08:58:19 +0300 | [diff] [blame] | 1507 | out_destroy_workqueue: |
Meenakshi Venkataraman | 273a576 | 2012-07-17 13:05:03 -0700 | [diff] [blame] | 1508 | iwl_tt_exit(priv); |
Meenakshi Venkataraman | 273a576 | 2012-07-17 13:05:03 -0700 | [diff] [blame] | 1509 | iwl_cancel_deferred_work(priv); |
Johannes Berg | 1ee158d | 2012-02-17 10:07:44 -0800 | [diff] [blame] | 1510 | destroy_workqueue(priv->workqueue); |
| 1511 | priv->workqueue = NULL; |
Tomas Winkler | 6ba8795 | 2008-05-15 13:54:17 +0800 | [diff] [blame] | 1512 | iwl_uninit_drv(priv); |
Johannes Berg | 26a7ca9 | 2012-05-21 11:55:54 +0200 | [diff] [blame] | 1513 | out_free_eeprom_blob: |
| 1514 | kfree(priv->eeprom_blob); |
Emmanuel Grumbach | 34c1b7b | 2011-07-04 08:58:19 +0300 | [diff] [blame] | 1515 | out_free_eeprom: |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 1516 | iwl_free_nvm_data(priv->nvm_data); |
Johannes Berg | 063c516 | 2012-04-03 16:35:41 -0700 | [diff] [blame] | 1517 | out_free_hw: |
Wey-Yi Guy | d7c76f4 | 2009-10-09 13:20:17 -0700 | [diff] [blame] | 1518 | ieee80211_free_hw(priv->hw); |
Emmanuel Grumbach | 34c1b7b | 2011-07-04 08:58:19 +0300 | [diff] [blame] | 1519 | out: |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 1520 | op_mode = NULL; |
| 1521 | return op_mode; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1522 | } |
| 1523 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 1524 | static void iwl_op_mode_dvm_stop(struct iwl_op_mode *op_mode) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1525 | { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 1526 | struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode); |
| 1527 | |
Tomas Winkler | e162344 | 2009-01-27 14:27:56 -0800 | [diff] [blame] | 1528 | IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1529 | |
Don Fry | 09af140 | 2011-12-09 10:07:38 -0800 | [diff] [blame] | 1530 | iwlagn_mac_unregister(priv); |
Ron Rindjunsky | c4f5523 | 2008-03-28 16:21:10 -0700 | [diff] [blame] | 1531 | |
Wey-Yi Guy | 39b73fb1 | 2009-07-24 11:13:02 -0700 | [diff] [blame] | 1532 | iwl_tt_exit(priv); |
| 1533 | |
Johannes Berg | 26a7ca9 | 2012-05-21 11:55:54 +0200 | [diff] [blame] | 1534 | kfree(priv->eeprom_blob); |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 1535 | iwl_free_nvm_data(priv->nvm_data); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1536 | |
Mohamed Abbas | 948c171 | 2007-10-25 17:15:45 +0800 | [diff] [blame] | 1537 | /*netif_stop_queue(dev); */ |
Johannes Berg | 1ee158d | 2012-02-17 10:07:44 -0800 | [diff] [blame] | 1538 | flush_workqueue(priv->workqueue); |
Mohamed Abbas | 948c171 | 2007-10-25 17:15:45 +0800 | [diff] [blame] | 1539 | |
Wey-Yi Guy | ade4c64 | 2011-10-10 07:27:11 -0700 | [diff] [blame] | 1540 | /* ieee80211_unregister_hw calls iwlagn_mac_stop, which flushes |
Johannes Berg | 1ee158d | 2012-02-17 10:07:44 -0800 | [diff] [blame] | 1541 | * priv->workqueue... so we can't take down the workqueue |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1542 | * until now... */ |
Johannes Berg | 1ee158d | 2012-02-17 10:07:44 -0800 | [diff] [blame] | 1543 | destroy_workqueue(priv->workqueue); |
| 1544 | priv->workqueue = NULL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1545 | |
Tomas Winkler | 6ba8795 | 2008-05-15 13:54:17 +0800 | [diff] [blame] | 1546 | iwl_uninit_drv(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1547 | |
Johannes Berg | 7783454 | 2010-10-04 05:50:36 -0700 | [diff] [blame] | 1548 | dev_kfree_skb(priv->beacon_skb); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1549 | |
Arik Nemtsov | a408284 | 2013-11-24 19:10:46 +0200 | [diff] [blame] | 1550 | iwl_trans_op_mode_leave(priv->trans); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1551 | ieee80211_free_hw(priv->hw); |
| 1552 | } |
| 1553 | |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1554 | static const char * const desc_lookup_text[] = { |
| 1555 | "OK", |
| 1556 | "FAIL", |
| 1557 | "BAD_PARAM", |
| 1558 | "BAD_CHECKSUM", |
| 1559 | "NMI_INTERRUPT_WDG", |
| 1560 | "SYSASSERT", |
| 1561 | "FATAL_ERROR", |
| 1562 | "BAD_COMMAND", |
| 1563 | "HW_ERROR_TUNE_LOCK", |
| 1564 | "HW_ERROR_TEMPERATURE", |
| 1565 | "ILLEGAL_CHAN_FREQ", |
| 1566 | "VCC_NOT_STABLE", |
| 1567 | "FH_ERROR", |
| 1568 | "NMI_INTERRUPT_HOST", |
| 1569 | "NMI_INTERRUPT_ACTION_PT", |
| 1570 | "NMI_INTERRUPT_UNKNOWN", |
| 1571 | "UCODE_VERSION_MISMATCH", |
| 1572 | "HW_ERROR_ABS_LOCK", |
| 1573 | "HW_ERROR_CAL_LOCK_FAIL", |
| 1574 | "NMI_INTERRUPT_INST_ACTION_PT", |
| 1575 | "NMI_INTERRUPT_DATA_ACTION_PT", |
| 1576 | "NMI_TRM_HW_ER", |
| 1577 | "NMI_INTERRUPT_TRM", |
| 1578 | "NMI_INTERRUPT_BREAK_POINT", |
| 1579 | "DEBUG_0", |
| 1580 | "DEBUG_1", |
| 1581 | "DEBUG_2", |
| 1582 | "DEBUG_3", |
| 1583 | }; |
| 1584 | |
| 1585 | static struct { char *name; u8 num; } advanced_lookup[] = { |
| 1586 | { "NMI_INTERRUPT_WDG", 0x34 }, |
| 1587 | { "SYSASSERT", 0x35 }, |
| 1588 | { "UCODE_VERSION_MISMATCH", 0x37 }, |
| 1589 | { "BAD_COMMAND", 0x38 }, |
| 1590 | { "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C }, |
| 1591 | { "FATAL_ERROR", 0x3D }, |
| 1592 | { "NMI_TRM_HW_ERR", 0x46 }, |
| 1593 | { "NMI_INTERRUPT_TRM", 0x4C }, |
| 1594 | { "NMI_INTERRUPT_BREAK_POINT", 0x54 }, |
| 1595 | { "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C }, |
| 1596 | { "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64 }, |
| 1597 | { "NMI_INTERRUPT_HOST", 0x66 }, |
| 1598 | { "NMI_INTERRUPT_ACTION_PT", 0x7C }, |
| 1599 | { "NMI_INTERRUPT_UNKNOWN", 0x84 }, |
| 1600 | { "NMI_INTERRUPT_INST_ACTION_PT", 0x86 }, |
| 1601 | { "ADVANCED_SYSASSERT", 0 }, |
| 1602 | }; |
| 1603 | |
| 1604 | static const char *desc_lookup(u32 num) |
| 1605 | { |
| 1606 | int i; |
| 1607 | int max = ARRAY_SIZE(desc_lookup_text); |
| 1608 | |
| 1609 | if (num < max) |
| 1610 | return desc_lookup_text[num]; |
| 1611 | |
| 1612 | max = ARRAY_SIZE(advanced_lookup) - 1; |
| 1613 | for (i = 0; i < max; i++) { |
| 1614 | if (advanced_lookup[i].num == num) |
| 1615 | break; |
| 1616 | } |
| 1617 | return advanced_lookup[i].name; |
| 1618 | } |
| 1619 | |
| 1620 | #define ERROR_START_OFFSET (1 * sizeof(u32)) |
| 1621 | #define ERROR_ELEM_SIZE (7 * sizeof(u32)) |
| 1622 | |
| 1623 | static void iwl_dump_nic_error_log(struct iwl_priv *priv) |
| 1624 | { |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 1625 | struct iwl_trans *trans = priv->trans; |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1626 | u32 base; |
| 1627 | struct iwl_error_event_table table; |
| 1628 | |
| 1629 | base = priv->device_pointers.error_event_table; |
Meenakshi Venkataraman | a42506e | 2012-03-15 13:26:57 -0700 | [diff] [blame] | 1630 | if (priv->cur_ucode == IWL_UCODE_INIT) { |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1631 | if (!base) |
Meenakshi Venkataraman | e3ec26d | 2012-03-15 13:27:04 -0700 | [diff] [blame] | 1632 | base = priv->fw->init_errlog_ptr; |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1633 | } else { |
| 1634 | if (!base) |
Meenakshi Venkataraman | e3ec26d | 2012-03-15 13:27:04 -0700 | [diff] [blame] | 1635 | base = priv->fw->inst_errlog_ptr; |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1636 | } |
| 1637 | |
| 1638 | if (!iwlagn_hw_valid_rtc_data_addr(base)) { |
| 1639 | IWL_ERR(priv, |
| 1640 | "Not valid error log pointer 0x%08X for %s uCode\n", |
| 1641 | base, |
Meenakshi Venkataraman | a42506e | 2012-03-15 13:26:57 -0700 | [diff] [blame] | 1642 | (priv->cur_ucode == IWL_UCODE_INIT) |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1643 | ? "Init" : "RT"); |
| 1644 | return; |
| 1645 | } |
| 1646 | |
| 1647 | /*TODO: Update dbgfs with ISR error stats obtained below */ |
Emmanuel Grumbach | 4fd442d | 2012-12-24 14:27:11 +0200 | [diff] [blame] | 1648 | iwl_trans_read_mem_bytes(trans, base, &table, sizeof(table)); |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1649 | |
| 1650 | if (ERROR_START_OFFSET <= table.valid * ERROR_ELEM_SIZE) { |
| 1651 | IWL_ERR(trans, "Start IWL Error Log Dump:\n"); |
| 1652 | IWL_ERR(trans, "Status: 0x%08lX, count: %d\n", |
Don Fry | 74fda97 | 2012-03-20 16:36:54 -0700 | [diff] [blame] | 1653 | priv->status, table.valid); |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1654 | } |
| 1655 | |
| 1656 | trace_iwlwifi_dev_ucode_error(trans->dev, table.error_id, table.tsf_low, |
| 1657 | table.data1, table.data2, table.line, |
Emmanuel Grumbach | 7d3ca7f | 2016-03-07 10:16:38 +0200 | [diff] [blame] | 1658 | table.blink2, table.ilink1, table.ilink2, |
| 1659 | table.bcon_time, table.gp1, table.gp2, |
| 1660 | table.gp3, table.ucode_ver, table.hw_ver, |
| 1661 | 0, table.brd_ver); |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1662 | IWL_ERR(priv, "0x%08X | %-28s\n", table.error_id, |
| 1663 | desc_lookup(table.error_id)); |
| 1664 | IWL_ERR(priv, "0x%08X | uPc\n", table.pc); |
| 1665 | IWL_ERR(priv, "0x%08X | branchlink1\n", table.blink1); |
| 1666 | IWL_ERR(priv, "0x%08X | branchlink2\n", table.blink2); |
| 1667 | IWL_ERR(priv, "0x%08X | interruptlink1\n", table.ilink1); |
| 1668 | IWL_ERR(priv, "0x%08X | interruptlink2\n", table.ilink2); |
| 1669 | IWL_ERR(priv, "0x%08X | data1\n", table.data1); |
| 1670 | IWL_ERR(priv, "0x%08X | data2\n", table.data2); |
| 1671 | IWL_ERR(priv, "0x%08X | line\n", table.line); |
| 1672 | IWL_ERR(priv, "0x%08X | beacon time\n", table.bcon_time); |
| 1673 | IWL_ERR(priv, "0x%08X | tsf low\n", table.tsf_low); |
| 1674 | IWL_ERR(priv, "0x%08X | tsf hi\n", table.tsf_hi); |
| 1675 | IWL_ERR(priv, "0x%08X | time gp1\n", table.gp1); |
| 1676 | IWL_ERR(priv, "0x%08X | time gp2\n", table.gp2); |
| 1677 | IWL_ERR(priv, "0x%08X | time gp3\n", table.gp3); |
| 1678 | IWL_ERR(priv, "0x%08X | uCode version\n", table.ucode_ver); |
| 1679 | IWL_ERR(priv, "0x%08X | hw version\n", table.hw_ver); |
| 1680 | IWL_ERR(priv, "0x%08X | board version\n", table.brd_ver); |
| 1681 | IWL_ERR(priv, "0x%08X | hcmd\n", table.hcmd); |
| 1682 | IWL_ERR(priv, "0x%08X | isr0\n", table.isr0); |
| 1683 | IWL_ERR(priv, "0x%08X | isr1\n", table.isr1); |
| 1684 | IWL_ERR(priv, "0x%08X | isr2\n", table.isr2); |
| 1685 | IWL_ERR(priv, "0x%08X | isr3\n", table.isr3); |
| 1686 | IWL_ERR(priv, "0x%08X | isr4\n", table.isr4); |
| 1687 | IWL_ERR(priv, "0x%08X | isr_pref\n", table.isr_pref); |
| 1688 | IWL_ERR(priv, "0x%08X | wait_event\n", table.wait_event); |
| 1689 | IWL_ERR(priv, "0x%08X | l2p_control\n", table.l2p_control); |
| 1690 | IWL_ERR(priv, "0x%08X | l2p_duration\n", table.l2p_duration); |
| 1691 | IWL_ERR(priv, "0x%08X | l2p_mhvalid\n", table.l2p_mhvalid); |
| 1692 | IWL_ERR(priv, "0x%08X | l2p_addr_match\n", table.l2p_addr_match); |
| 1693 | IWL_ERR(priv, "0x%08X | lmpm_pmg_sel\n", table.lmpm_pmg_sel); |
| 1694 | IWL_ERR(priv, "0x%08X | timestamp\n", table.u_timestamp); |
| 1695 | IWL_ERR(priv, "0x%08X | flow_handler\n", table.flow_handler); |
| 1696 | } |
| 1697 | |
| 1698 | #define EVENT_START_OFFSET (4 * sizeof(u32)) |
| 1699 | |
| 1700 | /** |
| 1701 | * iwl_print_event_log - Dump error event log to syslog |
| 1702 | * |
| 1703 | */ |
| 1704 | static int iwl_print_event_log(struct iwl_priv *priv, u32 start_idx, |
| 1705 | u32 num_events, u32 mode, |
| 1706 | int pos, char **buf, size_t bufsz) |
| 1707 | { |
| 1708 | u32 i; |
| 1709 | u32 base; /* SRAM byte address of event log header */ |
| 1710 | u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */ |
| 1711 | u32 ptr; /* SRAM byte address of log data */ |
| 1712 | u32 ev, time, data; /* event log data */ |
| 1713 | unsigned long reg_flags; |
| 1714 | |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 1715 | struct iwl_trans *trans = priv->trans; |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1716 | |
| 1717 | if (num_events == 0) |
| 1718 | return pos; |
| 1719 | |
| 1720 | base = priv->device_pointers.log_event_table; |
Meenakshi Venkataraman | a42506e | 2012-03-15 13:26:57 -0700 | [diff] [blame] | 1721 | if (priv->cur_ucode == IWL_UCODE_INIT) { |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1722 | if (!base) |
Meenakshi Venkataraman | e3ec26d | 2012-03-15 13:27:04 -0700 | [diff] [blame] | 1723 | base = priv->fw->init_evtlog_ptr; |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1724 | } else { |
| 1725 | if (!base) |
Meenakshi Venkataraman | e3ec26d | 2012-03-15 13:27:04 -0700 | [diff] [blame] | 1726 | base = priv->fw->inst_evtlog_ptr; |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1727 | } |
| 1728 | |
| 1729 | if (mode == 0) |
| 1730 | event_size = 2 * sizeof(u32); |
| 1731 | else |
| 1732 | event_size = 3 * sizeof(u32); |
| 1733 | |
| 1734 | ptr = base + EVENT_START_OFFSET + (start_idx * event_size); |
| 1735 | |
| 1736 | /* Make sure device is powered up for SRAM reads */ |
Emmanuel Grumbach | 23ba934 | 2015-12-17 11:55:13 +0200 | [diff] [blame] | 1737 | if (!iwl_trans_grab_nic_access(trans, ®_flags)) |
Lilach Edelstein | e56b04e | 2013-01-16 11:34:49 +0200 | [diff] [blame] | 1738 | return pos; |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1739 | |
| 1740 | /* Set starting address; reads will auto-increment */ |
| 1741 | iwl_write32(trans, HBUS_TARG_MEM_RADDR, ptr); |
| 1742 | |
| 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++) { |
| 1746 | ev = iwl_read32(trans, HBUS_TARG_MEM_RDAT); |
| 1747 | time = iwl_read32(trans, HBUS_TARG_MEM_RDAT); |
| 1748 | if (mode == 0) { |
| 1749 | /* data, ev */ |
| 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(trans->dev, 0, |
| 1756 | time, ev); |
| 1757 | IWL_ERR(priv, "EVT_LOG:0x%08x:%04u\n", |
| 1758 | time, ev); |
| 1759 | } |
| 1760 | } else { |
| 1761 | data = iwl_read32(trans, HBUS_TARG_MEM_RDAT); |
| 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", |
| 1768 | time, data, ev); |
| 1769 | trace_iwlwifi_dev_ucode_event(trans->dev, time, |
| 1770 | data, ev); |
| 1771 | } |
| 1772 | } |
| 1773 | } |
| 1774 | |
| 1775 | /* Allow device to power down */ |
Lilach Edelstein | e56b04e | 2013-01-16 11:34:49 +0200 | [diff] [blame] | 1776 | iwl_trans_release_nic_access(trans, ®_flags); |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1777 | return pos; |
| 1778 | } |
| 1779 | |
| 1780 | /** |
| 1781 | * iwl_print_last_event_logs - Dump the newest # of event log to syslog |
| 1782 | */ |
| 1783 | static int iwl_print_last_event_logs(struct iwl_priv *priv, u32 capacity, |
| 1784 | u32 num_wraps, u32 next_entry, |
| 1785 | u32 size, u32 mode, |
| 1786 | int pos, char **buf, size_t bufsz) |
| 1787 | { |
| 1788 | /* |
| 1789 | * display the newest DEFAULT_LOG_ENTRIES entries |
| 1790 | * i.e the entries just before the next ont that uCode would fill. |
| 1791 | */ |
| 1792 | if (num_wraps) { |
| 1793 | if (next_entry < size) { |
| 1794 | pos = iwl_print_event_log(priv, |
| 1795 | capacity - (size - next_entry), |
| 1796 | size - next_entry, mode, |
| 1797 | pos, buf, bufsz); |
| 1798 | pos = iwl_print_event_log(priv, 0, |
| 1799 | next_entry, mode, |
| 1800 | pos, buf, bufsz); |
| 1801 | } else |
| 1802 | pos = iwl_print_event_log(priv, next_entry - size, |
| 1803 | size, mode, pos, buf, bufsz); |
| 1804 | } else { |
| 1805 | if (next_entry < size) { |
| 1806 | pos = iwl_print_event_log(priv, 0, next_entry, |
| 1807 | mode, pos, buf, bufsz); |
| 1808 | } else { |
| 1809 | pos = iwl_print_event_log(priv, next_entry - size, |
| 1810 | size, mode, pos, buf, bufsz); |
| 1811 | } |
| 1812 | } |
| 1813 | return pos; |
| 1814 | } |
| 1815 | |
| 1816 | #define DEFAULT_DUMP_EVENT_LOG_ENTRIES (20) |
| 1817 | |
| 1818 | int iwl_dump_nic_event_log(struct iwl_priv *priv, bool full_log, |
Stanislaw Gruszka | a6db006 | 2013-04-16 15:40:54 +0200 | [diff] [blame] | 1819 | char **buf) |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1820 | { |
| 1821 | u32 base; /* SRAM byte address of event log header */ |
| 1822 | u32 capacity; /* event log capacity in # entries */ |
| 1823 | u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */ |
| 1824 | u32 num_wraps; /* # times uCode wrapped to top of log */ |
| 1825 | u32 next_entry; /* index of next entry to be written by uCode */ |
| 1826 | u32 size; /* # entries that we'll print */ |
| 1827 | u32 logsize; |
| 1828 | int pos = 0; |
| 1829 | size_t bufsz = 0; |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 1830 | struct iwl_trans *trans = priv->trans; |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1831 | |
| 1832 | base = priv->device_pointers.log_event_table; |
Meenakshi Venkataraman | a42506e | 2012-03-15 13:26:57 -0700 | [diff] [blame] | 1833 | if (priv->cur_ucode == IWL_UCODE_INIT) { |
Meenakshi Venkataraman | e3ec26d | 2012-03-15 13:27:04 -0700 | [diff] [blame] | 1834 | logsize = priv->fw->init_evtlog_size; |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1835 | if (!base) |
Meenakshi Venkataraman | e3ec26d | 2012-03-15 13:27:04 -0700 | [diff] [blame] | 1836 | base = priv->fw->init_evtlog_ptr; |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1837 | } else { |
Meenakshi Venkataraman | e3ec26d | 2012-03-15 13:27:04 -0700 | [diff] [blame] | 1838 | logsize = priv->fw->inst_evtlog_size; |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1839 | if (!base) |
Meenakshi Venkataraman | e3ec26d | 2012-03-15 13:27:04 -0700 | [diff] [blame] | 1840 | base = priv->fw->inst_evtlog_ptr; |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1841 | } |
| 1842 | |
| 1843 | if (!iwlagn_hw_valid_rtc_data_addr(base)) { |
| 1844 | IWL_ERR(priv, |
| 1845 | "Invalid event log pointer 0x%08X for %s uCode\n", |
| 1846 | base, |
Meenakshi Venkataraman | a42506e | 2012-03-15 13:26:57 -0700 | [diff] [blame] | 1847 | (priv->cur_ucode == IWL_UCODE_INIT) |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1848 | ? "Init" : "RT"); |
| 1849 | return -EINVAL; |
| 1850 | } |
| 1851 | |
| 1852 | /* event log header */ |
Emmanuel Grumbach | 4fd442d | 2012-12-24 14:27:11 +0200 | [diff] [blame] | 1853 | capacity = iwl_trans_read_mem32(trans, base); |
| 1854 | mode = iwl_trans_read_mem32(trans, base + (1 * sizeof(u32))); |
| 1855 | num_wraps = iwl_trans_read_mem32(trans, base + (2 * sizeof(u32))); |
| 1856 | next_entry = iwl_trans_read_mem32(trans, base + (3 * sizeof(u32))); |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1857 | |
| 1858 | if (capacity > logsize) { |
| 1859 | IWL_ERR(priv, "Log capacity %d is bogus, limit to %d " |
| 1860 | "entries\n", capacity, logsize); |
| 1861 | capacity = logsize; |
| 1862 | } |
| 1863 | |
| 1864 | if (next_entry > logsize) { |
| 1865 | IWL_ERR(priv, "Log write index %d is bogus, limit to %d\n", |
| 1866 | next_entry, logsize); |
| 1867 | next_entry = logsize; |
| 1868 | } |
| 1869 | |
| 1870 | size = num_wraps ? capacity : next_entry; |
| 1871 | |
| 1872 | /* bail out if nothing in log */ |
| 1873 | if (size == 0) { |
| 1874 | IWL_ERR(trans, "Start IWL Event Log Dump: nothing in log\n"); |
| 1875 | return pos; |
| 1876 | } |
| 1877 | |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1878 | if (!(iwl_have_debug_level(IWL_DL_FW_ERRORS)) && !full_log) |
| 1879 | size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES) |
| 1880 | ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size; |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1881 | IWL_ERR(priv, "Start IWL Event Log Dump: display last %u entries\n", |
| 1882 | size); |
| 1883 | |
| 1884 | #ifdef CONFIG_IWLWIFI_DEBUG |
Stanislaw Gruszka | a6db006 | 2013-04-16 15:40:54 +0200 | [diff] [blame] | 1885 | if (buf) { |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1886 | if (full_log) |
| 1887 | bufsz = capacity * 48; |
| 1888 | else |
| 1889 | bufsz = size * 48; |
| 1890 | *buf = kmalloc(bufsz, GFP_KERNEL); |
| 1891 | if (!*buf) |
| 1892 | return -ENOMEM; |
| 1893 | } |
| 1894 | if (iwl_have_debug_level(IWL_DL_FW_ERRORS) || full_log) { |
| 1895 | /* |
| 1896 | * if uCode has wrapped back to top of log, |
| 1897 | * start at the oldest entry, |
| 1898 | * i.e the next one that uCode would fill. |
| 1899 | */ |
| 1900 | if (num_wraps) |
| 1901 | pos = iwl_print_event_log(priv, next_entry, |
| 1902 | capacity - next_entry, mode, |
| 1903 | pos, buf, bufsz); |
| 1904 | /* (then/else) start at top of log */ |
| 1905 | pos = iwl_print_event_log(priv, 0, |
| 1906 | next_entry, mode, pos, buf, bufsz); |
| 1907 | } else |
| 1908 | pos = iwl_print_last_event_logs(priv, capacity, num_wraps, |
| 1909 | next_entry, size, mode, |
| 1910 | pos, buf, bufsz); |
| 1911 | #else |
| 1912 | pos = iwl_print_last_event_logs(priv, capacity, num_wraps, |
| 1913 | next_entry, size, mode, |
| 1914 | pos, buf, bufsz); |
| 1915 | #endif |
| 1916 | return pos; |
| 1917 | } |
| 1918 | |
Meenakshi Venkataraman | 193219c | 2012-03-13 18:00:15 -0700 | [diff] [blame] | 1919 | static void iwlagn_fw_error(struct iwl_priv *priv, bool ondemand) |
| 1920 | { |
| 1921 | unsigned int reload_msec; |
| 1922 | unsigned long reload_jiffies; |
| 1923 | |
Meenakshi Venkataraman | 193219c | 2012-03-13 18:00:15 -0700 | [diff] [blame] | 1924 | if (iwl_have_debug_level(IWL_DL_FW_ERRORS)) |
| 1925 | iwl_print_rx_config_cmd(priv, IWL_RXON_CTX_BSS); |
Meenakshi Venkataraman | 193219c | 2012-03-13 18:00:15 -0700 | [diff] [blame] | 1926 | |
| 1927 | /* uCode is no longer loaded. */ |
| 1928 | priv->ucode_loaded = false; |
| 1929 | |
| 1930 | /* Set the FW error flag -- cleared on iwl_down */ |
| 1931 | set_bit(STATUS_FW_ERROR, &priv->status); |
| 1932 | |
Meenakshi Venkataraman | 193219c | 2012-03-13 18:00:15 -0700 | [diff] [blame] | 1933 | iwl_abort_notification_waits(&priv->notif_wait); |
| 1934 | |
| 1935 | /* Keep the restart process from trying to send host |
| 1936 | * commands by clearing the ready bit */ |
| 1937 | clear_bit(STATUS_READY, &priv->status); |
| 1938 | |
Meenakshi Venkataraman | 193219c | 2012-03-13 18:00:15 -0700 | [diff] [blame] | 1939 | if (!ondemand) { |
| 1940 | /* |
| 1941 | * If firmware keep reloading, then it indicate something |
| 1942 | * serious wrong and firmware having problem to recover |
| 1943 | * from it. Instead of keep trying which will fill the syslog |
| 1944 | * and hang the system, let's just stop it |
| 1945 | */ |
| 1946 | reload_jiffies = jiffies; |
| 1947 | reload_msec = jiffies_to_msecs((long) reload_jiffies - |
| 1948 | (long) priv->reload_jiffies); |
| 1949 | priv->reload_jiffies = reload_jiffies; |
| 1950 | if (reload_msec <= IWL_MIN_RELOAD_DURATION) { |
| 1951 | priv->reload_count++; |
| 1952 | if (priv->reload_count >= IWL_MAX_CONTINUE_RELOAD_CNT) { |
| 1953 | IWL_ERR(priv, "BUG_ON, Stop restarting\n"); |
| 1954 | return; |
| 1955 | } |
| 1956 | } else |
| 1957 | priv->reload_count = 0; |
| 1958 | } |
| 1959 | |
| 1960 | if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) { |
Johannes Berg | 65de7e8 | 2012-04-17 07:36:30 -0700 | [diff] [blame] | 1961 | if (iwlwifi_mod_params.restart_fw) { |
Meenakshi Venkataraman | 193219c | 2012-03-13 18:00:15 -0700 | [diff] [blame] | 1962 | IWL_DEBUG_FW_ERRORS(priv, |
| 1963 | "Restarting adapter due to uCode error.\n"); |
| 1964 | queue_work(priv->workqueue, &priv->restart); |
| 1965 | } else |
| 1966 | IWL_DEBUG_FW_ERRORS(priv, |
| 1967 | "Detected FW error, but not restarting\n"); |
| 1968 | } |
| 1969 | } |
| 1970 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 1971 | static void iwl_nic_error(struct iwl_op_mode *op_mode) |
Meenakshi Venkataraman | 19469f4 | 2012-03-15 13:26:55 -0700 | [diff] [blame] | 1972 | { |
| 1973 | struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode); |
| 1974 | |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1975 | IWL_ERR(priv, "Loaded firmware version: %s\n", |
Meenakshi Venkataraman | e3ec26d | 2012-03-15 13:27:04 -0700 | [diff] [blame] | 1976 | priv->fw->fw_version); |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1977 | |
| 1978 | iwl_dump_nic_error_log(priv); |
Stanislaw Gruszka | a6db006 | 2013-04-16 15:40:54 +0200 | [diff] [blame] | 1979 | iwl_dump_nic_event_log(priv, false, NULL); |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 1980 | |
Meenakshi Venkataraman | 19469f4 | 2012-03-15 13:26:55 -0700 | [diff] [blame] | 1981 | iwlagn_fw_error(priv, false); |
| 1982 | } |
| 1983 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 1984 | static void iwl_cmd_queue_full(struct iwl_op_mode *op_mode) |
Johannes Berg | 0e78184 | 2012-03-06 13:30:49 -0800 | [diff] [blame] | 1985 | { |
| 1986 | struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode); |
| 1987 | |
| 1988 | if (!iwl_check_for_ct_kill(priv)) { |
| 1989 | IWL_ERR(priv, "Restarting adapter queue is full\n"); |
Meenakshi Venkataraman | b7e21bf | 2012-03-15 13:26:54 -0700 | [diff] [blame] | 1990 | iwlagn_fw_error(priv, false); |
Johannes Berg | 0e78184 | 2012-03-06 13:30:49 -0800 | [diff] [blame] | 1991 | } |
| 1992 | } |
| 1993 | |
Johannes Berg | 1280d42 | 2012-05-30 12:36:23 +0200 | [diff] [blame] | 1994 | #define EEPROM_RF_CONFIG_TYPE_MAX 0x3 |
| 1995 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 1996 | static void iwl_nic_config(struct iwl_op_mode *op_mode) |
Johannes Berg | ecdb975 | 2012-03-06 13:31:03 -0800 | [diff] [blame] | 1997 | { |
| 1998 | struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode); |
| 1999 | |
Emmanuel Grumbach | 08838cd | 2012-05-29 17:48:08 +0300 | [diff] [blame] | 2000 | /* SKU Control */ |
Lilach Edelstein | e139dc4 | 2013-01-13 13:31:10 +0200 | [diff] [blame] | 2001 | iwl_trans_set_bits_mask(priv->trans, CSR_HW_IF_CONFIG_REG, |
| 2002 | CSR_HW_IF_CONFIG_REG_MSK_MAC_DASH | |
| 2003 | CSR_HW_IF_CONFIG_REG_MSK_MAC_STEP, |
| 2004 | (CSR_HW_REV_STEP(priv->trans->hw_rev) << |
| 2005 | CSR_HW_IF_CONFIG_REG_POS_MAC_STEP) | |
| 2006 | (CSR_HW_REV_DASH(priv->trans->hw_rev) << |
| 2007 | CSR_HW_IF_CONFIG_REG_POS_MAC_DASH)); |
Emmanuel Grumbach | 08838cd | 2012-05-29 17:48:08 +0300 | [diff] [blame] | 2008 | |
Johannes Berg | 1280d42 | 2012-05-30 12:36:23 +0200 | [diff] [blame] | 2009 | /* write radio config values to register */ |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 2010 | if (priv->nvm_data->radio_cfg_type <= EEPROM_RF_CONFIG_TYPE_MAX) { |
Johannes Berg | 1280d42 | 2012-05-30 12:36:23 +0200 | [diff] [blame] | 2011 | u32 reg_val = |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 2012 | priv->nvm_data->radio_cfg_type << |
Johannes Berg | 1280d42 | 2012-05-30 12:36:23 +0200 | [diff] [blame] | 2013 | CSR_HW_IF_CONFIG_REG_POS_PHY_TYPE | |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 2014 | priv->nvm_data->radio_cfg_step << |
Johannes Berg | 1280d42 | 2012-05-30 12:36:23 +0200 | [diff] [blame] | 2015 | CSR_HW_IF_CONFIG_REG_POS_PHY_STEP | |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 2016 | priv->nvm_data->radio_cfg_dash << |
Johannes Berg | 1280d42 | 2012-05-30 12:36:23 +0200 | [diff] [blame] | 2017 | CSR_HW_IF_CONFIG_REG_POS_PHY_DASH; |
| 2018 | |
Lilach Edelstein | e139dc4 | 2013-01-13 13:31:10 +0200 | [diff] [blame] | 2019 | iwl_trans_set_bits_mask(priv->trans, CSR_HW_IF_CONFIG_REG, |
| 2020 | CSR_HW_IF_CONFIG_REG_MSK_PHY_TYPE | |
| 2021 | CSR_HW_IF_CONFIG_REG_MSK_PHY_STEP | |
| 2022 | CSR_HW_IF_CONFIG_REG_MSK_PHY_DASH, |
| 2023 | reg_val); |
Johannes Berg | 1280d42 | 2012-05-30 12:36:23 +0200 | [diff] [blame] | 2024 | |
| 2025 | IWL_INFO(priv, "Radio type=0x%x-0x%x-0x%x\n", |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 2026 | priv->nvm_data->radio_cfg_type, |
| 2027 | priv->nvm_data->radio_cfg_step, |
| 2028 | priv->nvm_data->radio_cfg_dash); |
Johannes Berg | 1280d42 | 2012-05-30 12:36:23 +0200 | [diff] [blame] | 2029 | } else { |
| 2030 | WARN_ON(1); |
| 2031 | } |
| 2032 | |
| 2033 | /* set CSR_HW_CONFIG_REG for uCode use */ |
| 2034 | iwl_set_bit(priv->trans, CSR_HW_IF_CONFIG_REG, |
| 2035 | CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI | |
| 2036 | CSR_HW_IF_CONFIG_REG_BIT_MAC_SI); |
| 2037 | |
Emmanuel Grumbach | dada03c | 2012-06-17 15:42:37 +0300 | [diff] [blame] | 2038 | /* W/A : NIC is stuck in a reset state after Early PCIe power off |
| 2039 | * (PCIe power is lost before PERST# is asserted), |
| 2040 | * causing ME FW to lose ownership and not being able to obtain it back. |
| 2041 | */ |
| 2042 | iwl_set_bits_mask_prph(priv->trans, APMG_PS_CTRL_REG, |
| 2043 | APMG_PS_CTRL_EARLY_PWR_OFF_RESET_DIS, |
| 2044 | ~APMG_PS_CTRL_EARLY_PWR_OFF_RESET_DIS); |
| 2045 | |
| 2046 | if (priv->lib->nic_config) |
| 2047 | priv->lib->nic_config(priv); |
Johannes Berg | ecdb975 | 2012-03-06 13:31:03 -0800 | [diff] [blame] | 2048 | } |
| 2049 | |
Don Fry | 8a8bbdb | 2012-03-20 10:33:34 -0700 | [diff] [blame] | 2050 | static void iwl_wimax_active(struct iwl_op_mode *op_mode) |
| 2051 | { |
| 2052 | struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode); |
| 2053 | |
| 2054 | clear_bit(STATUS_READY, &priv->status); |
| 2055 | IWL_ERR(priv, "RF is used by WiMAX\n"); |
| 2056 | } |
| 2057 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 2058 | static void iwl_stop_sw_queue(struct iwl_op_mode *op_mode, int queue) |
Johannes Berg | e755f88 | 2012-03-07 09:52:16 -0800 | [diff] [blame] | 2059 | { |
| 2060 | struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode); |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 2061 | int mq = priv->queue_to_mac80211[queue]; |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 2062 | |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 2063 | if (WARN_ON_ONCE(mq == IWL_INVALID_MAC80211_QUEUE)) |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 2064 | return; |
| 2065 | |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 2066 | if (atomic_inc_return(&priv->queue_stop_count[mq]) > 1) { |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 2067 | IWL_DEBUG_TX_QUEUES(priv, |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 2068 | "queue %d (mac80211 %d) already stopped\n", |
| 2069 | queue, mq); |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 2070 | return; |
| 2071 | } |
Johannes Berg | e755f88 | 2012-03-07 09:52:16 -0800 | [diff] [blame] | 2072 | |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 2073 | set_bit(mq, &priv->transport_queue_stop); |
| 2074 | ieee80211_stop_queue(priv->hw, mq); |
Johannes Berg | e755f88 | 2012-03-07 09:52:16 -0800 | [diff] [blame] | 2075 | } |
| 2076 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 2077 | static void iwl_wake_sw_queue(struct iwl_op_mode *op_mode, int queue) |
Johannes Berg | e755f88 | 2012-03-07 09:52:16 -0800 | [diff] [blame] | 2078 | { |
| 2079 | struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode); |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 2080 | int mq = priv->queue_to_mac80211[queue]; |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 2081 | |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 2082 | if (WARN_ON_ONCE(mq == IWL_INVALID_MAC80211_QUEUE)) |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 2083 | return; |
| 2084 | |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 2085 | if (atomic_dec_return(&priv->queue_stop_count[mq]) > 0) { |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 2086 | IWL_DEBUG_TX_QUEUES(priv, |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 2087 | "queue %d (mac80211 %d) already awake\n", |
| 2088 | queue, mq); |
Johannes Berg | 9eae88f | 2012-03-15 13:26:52 -0700 | [diff] [blame] | 2089 | return; |
| 2090 | } |
Johannes Berg | e755f88 | 2012-03-07 09:52:16 -0800 | [diff] [blame] | 2091 | |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 2092 | clear_bit(mq, &priv->transport_queue_stop); |
Johannes Berg | e755f88 | 2012-03-07 09:52:16 -0800 | [diff] [blame] | 2093 | |
| 2094 | if (!priv->passive_no_rx) |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 2095 | ieee80211_wake_queue(priv->hw, mq); |
Johannes Berg | e755f88 | 2012-03-07 09:52:16 -0800 | [diff] [blame] | 2096 | } |
| 2097 | |
| 2098 | void iwlagn_lift_passive_no_rx(struct iwl_priv *priv) |
| 2099 | { |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 2100 | int mq; |
Johannes Berg | e755f88 | 2012-03-07 09:52:16 -0800 | [diff] [blame] | 2101 | |
| 2102 | if (!priv->passive_no_rx) |
| 2103 | return; |
| 2104 | |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 2105 | for (mq = 0; mq < IWLAGN_FIRST_AMPDU_QUEUE; mq++) { |
| 2106 | if (!test_bit(mq, &priv->transport_queue_stop)) { |
Johannes Berg | 3c6acb6 | 2014-05-07 11:47:53 +0200 | [diff] [blame] | 2107 | IWL_DEBUG_TX_QUEUES(priv, "Wake queue %d\n", mq); |
Johannes Berg | 1479177 | 2012-04-17 07:39:03 -0700 | [diff] [blame] | 2108 | ieee80211_wake_queue(priv->hw, mq); |
Emmanuel Grumbach | 3251715 | 2012-03-07 09:52:34 -0800 | [diff] [blame] | 2109 | } else { |
Johannes Berg | 3c6acb6 | 2014-05-07 11:47:53 +0200 | [diff] [blame] | 2110 | IWL_DEBUG_TX_QUEUES(priv, "Don't wake queue %d\n", mq); |
Emmanuel Grumbach | 3251715 | 2012-03-07 09:52:34 -0800 | [diff] [blame] | 2111 | } |
Johannes Berg | e755f88 | 2012-03-07 09:52:16 -0800 | [diff] [blame] | 2112 | } |
| 2113 | |
| 2114 | priv->passive_no_rx = false; |
| 2115 | } |
| 2116 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 2117 | static void iwl_free_skb(struct iwl_op_mode *op_mode, struct sk_buff *skb) |
Meenakshi Venkataraman | ae625db | 2012-03-13 15:24:44 -0700 | [diff] [blame] | 2118 | { |
Emmanuel Grumbach | 59c647b | 2012-05-24 19:24:34 +0300 | [diff] [blame] | 2119 | struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode); |
Meenakshi Venkataraman | ae625db | 2012-03-13 15:24:44 -0700 | [diff] [blame] | 2120 | struct ieee80211_tx_info *info; |
| 2121 | |
| 2122 | info = IEEE80211_SKB_CB(skb); |
Emmanuel Grumbach | 59c647b | 2012-05-24 19:24:34 +0300 | [diff] [blame] | 2123 | iwl_trans_free_tx_cmd(priv->trans, info->driver_data[1]); |
Johannes Berg | 31df3bb | 2012-10-31 22:07:39 +0100 | [diff] [blame] | 2124 | ieee80211_free_txskb(priv->hw, skb); |
Meenakshi Venkataraman | ae625db | 2012-03-13 15:24:44 -0700 | [diff] [blame] | 2125 | } |
| 2126 | |
Johannes Berg | 14cfca7 | 2014-02-25 20:50:53 +0100 | [diff] [blame] | 2127 | static bool iwl_set_hw_rfkill_state(struct iwl_op_mode *op_mode, bool state) |
Meenakshi Venkataraman | a297d95 | 2012-03-13 15:33:18 -0700 | [diff] [blame] | 2128 | { |
| 2129 | struct iwl_priv *priv = IWL_OP_MODE_GET_DVM(op_mode); |
| 2130 | |
| 2131 | if (state) |
| 2132 | set_bit(STATUS_RF_KILL_HW, &priv->status); |
| 2133 | else |
| 2134 | clear_bit(STATUS_RF_KILL_HW, &priv->status); |
| 2135 | |
| 2136 | wiphy_rfkill_set_hw_state(priv->hw->wiphy, state); |
Johannes Berg | 14cfca7 | 2014-02-25 20:50:53 +0100 | [diff] [blame] | 2137 | |
| 2138 | return false; |
Meenakshi Venkataraman | a297d95 | 2012-03-13 15:33:18 -0700 | [diff] [blame] | 2139 | } |
| 2140 | |
Johannes Berg | b1abeda | 2012-05-31 13:54:56 +0200 | [diff] [blame] | 2141 | static const struct iwl_op_mode_ops iwl_dvm_ops = { |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 2142 | .start = iwl_op_mode_dvm_start, |
| 2143 | .stop = iwl_op_mode_dvm_stop, |
Emmanuel Grumbach | db70f29 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 2144 | .rx = iwl_rx_dispatch, |
Emmanuel Grumbach | 02e3835 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 2145 | .queue_full = iwl_stop_sw_queue, |
| 2146 | .queue_not_full = iwl_wake_sw_queue, |
Emmanuel Grumbach | 7120d98 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 2147 | .hw_rf_kill = iwl_set_hw_rfkill_state, |
Emmanuel Grumbach | ed277c9 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 2148 | .free_skb = iwl_free_skb, |
Emmanuel Grumbach | bcb9321 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 2149 | .nic_error = iwl_nic_error, |
Johannes Berg | 0e78184 | 2012-03-06 13:30:49 -0800 | [diff] [blame] | 2150 | .cmd_queue_full = iwl_cmd_queue_full, |
Johannes Berg | ecdb975 | 2012-03-06 13:31:03 -0800 | [diff] [blame] | 2151 | .nic_config = iwl_nic_config, |
Don Fry | 8a8bbdb | 2012-03-20 10:33:34 -0700 | [diff] [blame] | 2152 | .wimax_active = iwl_wimax_active, |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 2153 | }; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2154 | |
| 2155 | /***************************************************************************** |
| 2156 | * |
| 2157 | * driver and module entry point |
| 2158 | * |
| 2159 | *****************************************************************************/ |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2160 | static int __init iwl_init(void) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2161 | { |
| 2162 | |
| 2163 | int ret; |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 2164 | |
Tomas Winkler | e227cea | 2008-07-18 13:53:05 +0800 | [diff] [blame] | 2165 | ret = iwlagn_rate_control_register(); |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 2166 | if (ret) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 2167 | pr_err("Unable to register rate control algorithm: %d\n", ret); |
Emmanuel Grumbach | 59c647b | 2012-05-24 19:24:34 +0300 | [diff] [blame] | 2168 | return ret; |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 2169 | } |
| 2170 | |
Don Fry | cc5f7e3 | 2012-05-16 22:54:27 +0200 | [diff] [blame] | 2171 | ret = iwl_opmode_register("iwldvm", &iwl_dvm_ops); |
| 2172 | if (ret) { |
| 2173 | pr_err("Unable to register op_mode: %d\n", ret); |
Emmanuel Grumbach | 59c647b | 2012-05-24 19:24:34 +0300 | [diff] [blame] | 2174 | iwlagn_rate_control_unregister(); |
Don Fry | cc5f7e3 | 2012-05-16 22:54:27 +0200 | [diff] [blame] | 2175 | } |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 2176 | |
Reinette Chatre | 897e1cf | 2008-03-28 16:21:09 -0700 | [diff] [blame] | 2177 | return ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2178 | } |
Don Fry | cc5f7e3 | 2012-05-16 22:54:27 +0200 | [diff] [blame] | 2179 | module_init(iwl_init); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2180 | |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2181 | static void __exit iwl_exit(void) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2182 | { |
Don Fry | cc5f7e3 | 2012-05-16 22:54:27 +0200 | [diff] [blame] | 2183 | iwl_opmode_deregister("iwldvm"); |
Tomas Winkler | e227cea | 2008-07-18 13:53:05 +0800 | [diff] [blame] | 2184 | iwlagn_rate_control_unregister(); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2185 | } |
Emmanuel Grumbach | 5b9f8cd | 2008-10-29 14:05:46 -0700 | [diff] [blame] | 2186 | module_exit(iwl_exit); |