Wey-Yi Guy | 792bc3c | 2010-03-16 10:23:29 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * GPL LICENSE SUMMARY |
| 4 | * |
Emmanuel Grumbach | 51368bf | 2013-12-30 13:15:54 +0200 | [diff] [blame] | 5 | * Copyright(c) 2008 - 2014 Intel Corporation. All rights reserved. |
Sara Sharon | 6eb031d | 2015-07-13 14:50:47 +0300 | [diff] [blame] | 6 | * Copyright(c) 2015 Intel Deutschland GmbH |
Wey-Yi Guy | 792bc3c | 2010-03-16 10:23:29 -0700 | [diff] [blame] | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of version 2 of the GNU General Public License as |
| 10 | * published by the Free Software Foundation. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, but |
| 13 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, |
| 20 | * USA |
| 21 | * |
| 22 | * The full GNU General Public License is included in this distribution |
Emmanuel Grumbach | 410dc5a | 2013-02-18 09:22:28 +0200 | [diff] [blame] | 23 | * in the file called COPYING. |
Wey-Yi Guy | 792bc3c | 2010-03-16 10:23:29 -0700 | [diff] [blame] | 24 | * |
| 25 | * Contact Information: |
Emmanuel Grumbach | d01c536 | 2015-11-17 15:39:56 +0200 | [diff] [blame] | 26 | * Intel Linux Wireless <linuxwifi@intel.com> |
Wey-Yi Guy | 792bc3c | 2010-03-16 10:23:29 -0700 | [diff] [blame] | 27 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 28 | * |
| 29 | *****************************************************************************/ |
| 30 | |
| 31 | #include <linux/kernel.h> |
Wey-Yi Guy | 792bc3c | 2010-03-16 10:23:29 -0700 | [diff] [blame] | 32 | |
Wey-Yi Guy | 81b8176 | 2010-03-16 10:23:30 -0700 | [diff] [blame] | 33 | #include "iwl-io.h" |
Wey-Yi Guy | 19e6cda | 2010-03-16 17:41:23 -0700 | [diff] [blame] | 34 | #include "iwl-agn-hw.h" |
Emmanuel Grumbach | bdfbf09 | 2011-07-08 08:46:16 -0700 | [diff] [blame] | 35 | #include "iwl-trans.h" |
Emmanuel Grumbach | dda61a4 | 2011-08-25 23:11:11 -0700 | [diff] [blame] | 36 | #include "iwl-fh.h" |
Emmanuel Grumbach | d0f76d6 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 37 | #include "iwl-op-mode.h" |
Wey-Yi Guy | 741a626 | 2010-03-16 12:37:24 -0700 | [diff] [blame] | 38 | |
Johannes Berg | 1023fdc | 2012-05-15 12:16:34 +0200 | [diff] [blame] | 39 | #include "dev.h" |
| 40 | #include "agn.h" |
| 41 | #include "calib.h" |
| 42 | |
Don Fry | de7f5f9 | 2011-11-10 06:55:10 -0800 | [diff] [blame] | 43 | /****************************************************************************** |
| 44 | * |
| 45 | * uCode download functions |
| 46 | * |
| 47 | ******************************************************************************/ |
| 48 | |
Wey-Yi Guy | 741a626 | 2010-03-16 12:37:24 -0700 | [diff] [blame] | 49 | /* |
| 50 | * Calibration |
| 51 | */ |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 52 | static int iwl_set_Xtal_calib(struct iwl_priv *priv) |
Wey-Yi Guy | 741a626 | 2010-03-16 12:37:24 -0700 | [diff] [blame] | 53 | { |
| 54 | struct iwl_calib_xtal_freq_cmd cmd; |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 55 | __le16 *xtal_calib = priv->nvm_data->xtal_calib; |
Wey-Yi Guy | 741a626 | 2010-03-16 12:37:24 -0700 | [diff] [blame] | 56 | |
Wey-Yi Guy | 1f8bf03 | 2011-06-06 14:26:43 -0700 | [diff] [blame] | 57 | iwl_set_calib_hdr(&cmd.hdr, IWL_PHY_CALIBRATE_CRYSTAL_FRQ_CMD); |
Wey-Yi Guy | 741a626 | 2010-03-16 12:37:24 -0700 | [diff] [blame] | 58 | cmd.cap_pin1 = le16_to_cpu(xtal_calib[0]); |
| 59 | cmd.cap_pin2 = le16_to_cpu(xtal_calib[1]); |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 60 | return iwl_calib_set(priv, (void *)&cmd, sizeof(cmd)); |
Wey-Yi Guy | 741a626 | 2010-03-16 12:37:24 -0700 | [diff] [blame] | 61 | } |
| 62 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 63 | static int iwl_set_temperature_offset_calib(struct iwl_priv *priv) |
Shanyu Zhao | bf53f93 | 2010-09-21 16:54:01 -0700 | [diff] [blame] | 64 | { |
| 65 | struct iwl_calib_temperature_offset_cmd cmd; |
Wey-Yi Guy | 1f8bf03 | 2011-06-06 14:26:43 -0700 | [diff] [blame] | 66 | |
| 67 | memset(&cmd, 0, sizeof(cmd)); |
| 68 | iwl_set_calib_hdr(&cmd.hdr, IWL_PHY_CALIBRATE_TEMP_OFFSET_CMD); |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 69 | cmd.radio_sensor_offset = priv->nvm_data->raw_temperature; |
Shanyu Zhao | bf53f93 | 2010-09-21 16:54:01 -0700 | [diff] [blame] | 70 | if (!(cmd.radio_sensor_offset)) |
| 71 | cmd.radio_sensor_offset = DEFAULT_RADIO_SENSOR_OFFSET; |
Wey-Yi Guy | 1f8bf03 | 2011-06-06 14:26:43 -0700 | [diff] [blame] | 72 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 73 | IWL_DEBUG_CALIB(priv, "Radio sensor offset: %d\n", |
Wey-Yi Guy | 2e27799 | 2011-07-08 14:29:48 -0700 | [diff] [blame] | 74 | le16_to_cpu(cmd.radio_sensor_offset)); |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 75 | return iwl_calib_set(priv, (void *)&cmd, sizeof(cmd)); |
Shanyu Zhao | bf53f93 | 2010-09-21 16:54:01 -0700 | [diff] [blame] | 76 | } |
| 77 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 78 | static int iwl_set_temperature_offset_calib_v2(struct iwl_priv *priv) |
Wey-Yi Guy | c6f3034 | 2011-09-15 11:46:50 -0700 | [diff] [blame] | 79 | { |
| 80 | struct iwl_calib_temperature_offset_v2_cmd cmd; |
Wey-Yi Guy | c6f3034 | 2011-09-15 11:46:50 -0700 | [diff] [blame] | 81 | |
| 82 | memset(&cmd, 0, sizeof(cmd)); |
| 83 | iwl_set_calib_hdr(&cmd.hdr, IWL_PHY_CALIBRATE_TEMP_OFFSET_CMD); |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 84 | cmd.radio_sensor_offset_high = priv->nvm_data->kelvin_temperature; |
| 85 | cmd.radio_sensor_offset_low = priv->nvm_data->raw_temperature; |
Johannes Berg | 26a7ca9 | 2012-05-21 11:55:54 +0200 | [diff] [blame] | 86 | if (!cmd.radio_sensor_offset_low) { |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 87 | IWL_DEBUG_CALIB(priv, "no info in EEPROM, use default\n"); |
Wey-Yi Guy | c6f3034 | 2011-09-15 11:46:50 -0700 | [diff] [blame] | 88 | cmd.radio_sensor_offset_low = DEFAULT_RADIO_SENSOR_OFFSET; |
| 89 | cmd.radio_sensor_offset_high = DEFAULT_RADIO_SENSOR_OFFSET; |
| 90 | } |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 91 | cmd.burntVoltageRef = priv->nvm_data->calib_voltage; |
Wey-Yi Guy | c6f3034 | 2011-09-15 11:46:50 -0700 | [diff] [blame] | 92 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 93 | IWL_DEBUG_CALIB(priv, "Radio sensor offset high: %d\n", |
Wey-Yi Guy | c6f3034 | 2011-09-15 11:46:50 -0700 | [diff] [blame] | 94 | le16_to_cpu(cmd.radio_sensor_offset_high)); |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 95 | IWL_DEBUG_CALIB(priv, "Radio sensor offset low: %d\n", |
Wey-Yi Guy | c6f3034 | 2011-09-15 11:46:50 -0700 | [diff] [blame] | 96 | le16_to_cpu(cmd.radio_sensor_offset_low)); |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 97 | IWL_DEBUG_CALIB(priv, "Voltage Ref: %d\n", |
Wey-Yi Guy | c6f3034 | 2011-09-15 11:46:50 -0700 | [diff] [blame] | 98 | le16_to_cpu(cmd.burntVoltageRef)); |
| 99 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 100 | return iwl_calib_set(priv, (void *)&cmd, sizeof(cmd)); |
Wey-Yi Guy | c6f3034 | 2011-09-15 11:46:50 -0700 | [diff] [blame] | 101 | } |
| 102 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 103 | static int iwl_send_calib_cfg(struct iwl_priv *priv) |
Wey-Yi Guy | 741a626 | 2010-03-16 12:37:24 -0700 | [diff] [blame] | 104 | { |
| 105 | struct iwl_calib_cfg_cmd calib_cfg_cmd; |
| 106 | struct iwl_host_cmd cmd = { |
| 107 | .id = CALIBRATION_CFG_CMD, |
Johannes Berg | 3fa5073 | 2011-05-04 07:50:38 -0700 | [diff] [blame] | 108 | .len = { sizeof(struct iwl_calib_cfg_cmd), }, |
| 109 | .data = { &calib_cfg_cmd, }, |
Wey-Yi Guy | 741a626 | 2010-03-16 12:37:24 -0700 | [diff] [blame] | 110 | }; |
| 111 | |
| 112 | memset(&calib_cfg_cmd, 0, sizeof(calib_cfg_cmd)); |
| 113 | calib_cfg_cmd.ucd_calib_cfg.once.is_enable = IWL_CALIB_INIT_CFG_ALL; |
| 114 | calib_cfg_cmd.ucd_calib_cfg.once.start = IWL_CALIB_INIT_CFG_ALL; |
| 115 | calib_cfg_cmd.ucd_calib_cfg.once.send_res = IWL_CALIB_INIT_CFG_ALL; |
Wey-Yi Guy | df2a4dc | 2011-07-08 14:29:45 -0700 | [diff] [blame] | 116 | calib_cfg_cmd.ucd_calib_cfg.flags = |
| 117 | IWL_CALIB_CFG_FLAG_SEND_COMPLETE_NTFY_MSK; |
Wey-Yi Guy | 741a626 | 2010-03-16 12:37:24 -0700 | [diff] [blame] | 118 | |
Johannes Berg | e10a053 | 2012-03-06 13:30:39 -0800 | [diff] [blame] | 119 | return iwl_dvm_send_cmd(priv, &cmd); |
Wey-Yi Guy | 741a626 | 2010-03-16 12:37:24 -0700 | [diff] [blame] | 120 | } |
| 121 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 122 | int iwl_init_alive_start(struct iwl_priv *priv) |
Wey-Yi Guy | 741a626 | 2010-03-16 12:37:24 -0700 | [diff] [blame] | 123 | { |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 124 | int ret; |
Wey-Yi Guy | 741a626 | 2010-03-16 12:37:24 -0700 | [diff] [blame] | 125 | |
Johannes Berg | 0d8877a | 2013-05-17 10:36:29 +0200 | [diff] [blame] | 126 | if (priv->lib->bt_params && |
| 127 | priv->lib->bt_params->advanced_bt_coexist) { |
Wey-Yi Guy | f7322f8 | 2010-08-23 15:24:49 -0700 | [diff] [blame] | 128 | /* |
| 129 | * Tell uCode we are ready to perform calibration |
| 130 | * need to perform this before any calibration |
| 131 | * no need to close the envlope since we are going |
| 132 | * to load the runtime uCode later. |
| 133 | */ |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 134 | ret = iwl_send_bt_env(priv, IWL_BT_COEX_ENV_OPEN, |
Wey-Yi Guy | f7322f8 | 2010-08-23 15:24:49 -0700 | [diff] [blame] | 135 | BT_COEX_PRIO_TBL_EVT_INIT_CALIB2); |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 136 | if (ret) |
| 137 | return ret; |
Wey-Yi Guy | f7322f8 | 2010-08-23 15:24:49 -0700 | [diff] [blame] | 138 | |
| 139 | } |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 140 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 141 | ret = iwl_send_calib_cfg(priv); |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 142 | if (ret) |
| 143 | return ret; |
Shanyu Zhao | bf53f93 | 2010-09-21 16:54:01 -0700 | [diff] [blame] | 144 | |
| 145 | /** |
| 146 | * temperature offset calibration is only needed for runtime ucode, |
| 147 | * so prepare the value now. |
| 148 | */ |
Johannes Berg | 0d8877a | 2013-05-17 10:36:29 +0200 | [diff] [blame] | 149 | if (priv->lib->need_temp_offset_calib) { |
| 150 | if (priv->lib->temp_offset_v2) |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 151 | return iwl_set_temperature_offset_calib_v2(priv); |
Wey-Yi Guy | c6f3034 | 2011-09-15 11:46:50 -0700 | [diff] [blame] | 152 | else |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 153 | return iwl_set_temperature_offset_calib(priv); |
Wey-Yi Guy | c6f3034 | 2011-09-15 11:46:50 -0700 | [diff] [blame] | 154 | } |
Shanyu Zhao | bf53f93 | 2010-09-21 16:54:01 -0700 | [diff] [blame] | 155 | |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 156 | return 0; |
Wey-Yi Guy | 741a626 | 2010-03-16 12:37:24 -0700 | [diff] [blame] | 157 | } |
| 158 | |
Johannes Berg | aca8626 | 2012-05-14 09:08:50 +0200 | [diff] [blame] | 159 | static int iwl_send_wimax_coex(struct iwl_priv *priv) |
Wey-Yi Guy | f401241 | 2010-04-27 14:10:00 -0700 | [diff] [blame] | 160 | { |
| 161 | struct iwl_wimax_coex_cmd coex_cmd; |
| 162 | |
Johannes Berg | 85560af | 2012-03-15 13:26:48 -0700 | [diff] [blame] | 163 | /* coexistence is disabled */ |
| 164 | memset(&coex_cmd, 0, sizeof(coex_cmd)); |
Wey-Yi Guy | f401241 | 2010-04-27 14:10:00 -0700 | [diff] [blame] | 165 | |
Johannes Berg | e10a053 | 2012-03-06 13:30:39 -0800 | [diff] [blame] | 166 | return iwl_dvm_send_cmd_pdu(priv, |
Emmanuel Grumbach | a102292 | 2014-05-12 11:36:41 +0300 | [diff] [blame] | 167 | COEX_PRIORITY_TABLE_CMD, 0, |
Wey-Yi Guy | f401241 | 2010-04-27 14:10:00 -0700 | [diff] [blame] | 168 | sizeof(coex_cmd), &coex_cmd); |
| 169 | } |
| 170 | |
Don Fry | 66128b1 | 2011-11-28 14:35:14 -0800 | [diff] [blame] | 171 | static const u8 iwl_bt_prio_tbl[BT_COEX_PRIO_TBL_EVT_MAX] = { |
Wey-Yi Guy | aeb4a2e | 2010-08-23 07:57:05 -0700 | [diff] [blame] | 172 | ((BT_COEX_PRIO_TBL_PRIO_BYPASS << IWL_BT_COEX_PRIO_TBL_PRIO_POS) | |
| 173 | (0 << IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_POS)), |
| 174 | ((BT_COEX_PRIO_TBL_PRIO_BYPASS << IWL_BT_COEX_PRIO_TBL_PRIO_POS) | |
| 175 | (1 << IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_POS)), |
| 176 | ((BT_COEX_PRIO_TBL_PRIO_LOW << IWL_BT_COEX_PRIO_TBL_PRIO_POS) | |
| 177 | (0 << IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_POS)), |
| 178 | ((BT_COEX_PRIO_TBL_PRIO_LOW << IWL_BT_COEX_PRIO_TBL_PRIO_POS) | |
| 179 | (1 << IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_POS)), |
| 180 | ((BT_COEX_PRIO_TBL_PRIO_HIGH << IWL_BT_COEX_PRIO_TBL_PRIO_POS) | |
| 181 | (0 << IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_POS)), |
| 182 | ((BT_COEX_PRIO_TBL_PRIO_HIGH << IWL_BT_COEX_PRIO_TBL_PRIO_POS) | |
| 183 | (1 << IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_POS)), |
| 184 | ((BT_COEX_PRIO_TBL_PRIO_BYPASS << IWL_BT_COEX_PRIO_TBL_PRIO_POS) | |
| 185 | (0 << IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_POS)), |
| 186 | ((BT_COEX_PRIO_TBL_PRIO_COEX_OFF << IWL_BT_COEX_PRIO_TBL_PRIO_POS) | |
| 187 | (0 << IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_POS)), |
| 188 | ((BT_COEX_PRIO_TBL_PRIO_COEX_ON << IWL_BT_COEX_PRIO_TBL_PRIO_POS) | |
| 189 | (0 << IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_POS)), |
| 190 | 0, 0, 0, 0, 0, 0, 0 |
| 191 | }; |
| 192 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 193 | void iwl_send_prio_tbl(struct iwl_priv *priv) |
Wey-Yi Guy | aeb4a2e | 2010-08-23 07:57:05 -0700 | [diff] [blame] | 194 | { |
| 195 | struct iwl_bt_coex_prio_table_cmd prio_tbl_cmd; |
| 196 | |
Don Fry | 66128b1 | 2011-11-28 14:35:14 -0800 | [diff] [blame] | 197 | memcpy(prio_tbl_cmd.prio_tbl, iwl_bt_prio_tbl, |
| 198 | sizeof(iwl_bt_prio_tbl)); |
Johannes Berg | e10a053 | 2012-03-06 13:30:39 -0800 | [diff] [blame] | 199 | if (iwl_dvm_send_cmd_pdu(priv, |
Emmanuel Grumbach | a102292 | 2014-05-12 11:36:41 +0300 | [diff] [blame] | 200 | REPLY_BT_COEX_PRIO_TABLE, 0, |
Wey-Yi Guy | aeb4a2e | 2010-08-23 07:57:05 -0700 | [diff] [blame] | 201 | sizeof(prio_tbl_cmd), &prio_tbl_cmd)) |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 202 | IWL_ERR(priv, "failed to send BT prio tbl command\n"); |
Wey-Yi Guy | aeb4a2e | 2010-08-23 07:57:05 -0700 | [diff] [blame] | 203 | } |
| 204 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 205 | int iwl_send_bt_env(struct iwl_priv *priv, u8 action, u8 type) |
Wey-Yi Guy | aeb4a2e | 2010-08-23 07:57:05 -0700 | [diff] [blame] | 206 | { |
| 207 | struct iwl_bt_coex_prot_env_cmd env_cmd; |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 208 | int ret; |
Wey-Yi Guy | aeb4a2e | 2010-08-23 07:57:05 -0700 | [diff] [blame] | 209 | |
| 210 | env_cmd.action = action; |
| 211 | env_cmd.type = type; |
Johannes Berg | e10a053 | 2012-03-06 13:30:39 -0800 | [diff] [blame] | 212 | ret = iwl_dvm_send_cmd_pdu(priv, |
Emmanuel Grumbach | a102292 | 2014-05-12 11:36:41 +0300 | [diff] [blame] | 213 | REPLY_BT_COEX_PROT_ENV, 0, |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 214 | sizeof(env_cmd), &env_cmd); |
| 215 | if (ret) |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 216 | IWL_ERR(priv, "failed to send BT env command\n"); |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 217 | return ret; |
Wey-Yi Guy | aeb4a2e | 2010-08-23 07:57:05 -0700 | [diff] [blame] | 218 | } |
| 219 | |
Emmanuel Grumbach | b04db9a | 2012-06-21 11:53:44 +0300 | [diff] [blame] | 220 | static const u8 iwlagn_default_queue_to_tx_fifo[] = { |
| 221 | IWL_TX_FIFO_VO, |
| 222 | IWL_TX_FIFO_VI, |
| 223 | IWL_TX_FIFO_BE, |
| 224 | IWL_TX_FIFO_BK, |
| 225 | }; |
| 226 | |
| 227 | static const u8 iwlagn_ipan_queue_to_tx_fifo[] = { |
| 228 | IWL_TX_FIFO_VO, |
| 229 | IWL_TX_FIFO_VI, |
| 230 | IWL_TX_FIFO_BE, |
| 231 | IWL_TX_FIFO_BK, |
| 232 | IWL_TX_FIFO_BK_IPAN, |
| 233 | IWL_TX_FIFO_BE_IPAN, |
| 234 | IWL_TX_FIFO_VI_IPAN, |
| 235 | IWL_TX_FIFO_VO_IPAN, |
| 236 | IWL_TX_FIFO_BE_IPAN, |
| 237 | IWL_TX_FIFO_UNUSED, |
| 238 | IWL_TX_FIFO_AUX, |
| 239 | }; |
Wey-Yi Guy | aeb4a2e | 2010-08-23 07:57:05 -0700 | [diff] [blame] | 240 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 241 | static int iwl_alive_notify(struct iwl_priv *priv) |
Wey-Yi Guy | 741a626 | 2010-03-16 12:37:24 -0700 | [diff] [blame] | 242 | { |
Emmanuel Grumbach | b04db9a | 2012-06-21 11:53:44 +0300 | [diff] [blame] | 243 | const u8 *queue_to_txf; |
| 244 | u8 n_queues; |
Wey-Yi Guy | 7415952 | 2011-04-05 09:42:01 -0700 | [diff] [blame] | 245 | int ret; |
Emmanuel Grumbach | b04db9a | 2012-06-21 11:53:44 +0300 | [diff] [blame] | 246 | int i; |
Wey-Yi Guy | 741a626 | 2010-03-16 12:37:24 -0700 | [diff] [blame] | 247 | |
Emmanuel Grumbach | adca123 | 2012-10-25 23:08:27 +0200 | [diff] [blame] | 248 | iwl_trans_fw_alive(priv->trans, 0); |
Johannes Berg | e755f88 | 2012-03-07 09:52:16 -0800 | [diff] [blame] | 249 | |
Emmanuel Grumbach | b04db9a | 2012-06-21 11:53:44 +0300 | [diff] [blame] | 250 | if (priv->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_PAN && |
Eytan Lifshitz | b7998c8 | 2012-12-01 20:59:49 +0200 | [diff] [blame] | 251 | priv->nvm_data->sku_cap_ipan_enable) { |
Emmanuel Grumbach | b04db9a | 2012-06-21 11:53:44 +0300 | [diff] [blame] | 252 | n_queues = ARRAY_SIZE(iwlagn_ipan_queue_to_tx_fifo); |
| 253 | queue_to_txf = iwlagn_ipan_queue_to_tx_fifo; |
| 254 | } else { |
| 255 | n_queues = ARRAY_SIZE(iwlagn_default_queue_to_tx_fifo); |
| 256 | queue_to_txf = iwlagn_default_queue_to_tx_fifo; |
| 257 | } |
| 258 | |
| 259 | for (i = 0; i < n_queues; i++) |
| 260 | if (queue_to_txf[i] != IWL_TX_FIFO_UNUSED) |
| 261 | iwl_trans_ac_txq_enable(priv->trans, i, |
Emmanuel Grumbach | 4cf677f | 2015-01-12 14:38:29 +0200 | [diff] [blame] | 262 | queue_to_txf[i], 0); |
Emmanuel Grumbach | b04db9a | 2012-06-21 11:53:44 +0300 | [diff] [blame] | 263 | |
Johannes Berg | e755f88 | 2012-03-07 09:52:16 -0800 | [diff] [blame] | 264 | priv->passive_no_rx = false; |
| 265 | priv->transport_queue_stop = 0; |
Grumbach, Emmanuel | e7cad69 | 2010-11-18 03:47:38 -0800 | [diff] [blame] | 266 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 267 | ret = iwl_send_wimax_coex(priv); |
Wey-Yi Guy | 7415952 | 2011-04-05 09:42:01 -0700 | [diff] [blame] | 268 | if (ret) |
| 269 | return ret; |
Wey-Yi Guy | 741a626 | 2010-03-16 12:37:24 -0700 | [diff] [blame] | 270 | |
Johannes Berg | 0d8877a | 2013-05-17 10:36:29 +0200 | [diff] [blame] | 271 | if (!priv->lib->no_xtal_calib) { |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 272 | ret = iwl_set_Xtal_calib(priv); |
Johannes Berg | 93b6410 | 2011-11-17 08:51:53 -0800 | [diff] [blame] | 273 | if (ret) |
| 274 | return ret; |
| 275 | } |
Wey-Yi Guy | 7415952 | 2011-04-05 09:42:01 -0700 | [diff] [blame] | 276 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 277 | return iwl_send_calib_results(priv); |
Wey-Yi Guy | 741a626 | 2010-03-16 12:37:24 -0700 | [diff] [blame] | 278 | } |
Wey-Yi Guy | db41dd27 | 2010-05-10 14:15:25 -0700 | [diff] [blame] | 279 | |
Don Fry | 69a679b | 2011-12-07 08:50:46 -0800 | [diff] [blame] | 280 | struct iwl_alive_data { |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 281 | bool valid; |
| 282 | u8 subtype; |
| 283 | }; |
| 284 | |
Johannes Berg | db662d4 | 2012-03-15 13:26:44 -0700 | [diff] [blame] | 285 | static bool iwl_alive_fn(struct iwl_notif_wait_data *notif_wait, |
| 286 | struct iwl_rx_packet *pkt, void *data) |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 287 | { |
Johannes Berg | 4bd14dd | 2012-03-06 13:30:58 -0800 | [diff] [blame] | 288 | struct iwl_priv *priv = |
| 289 | container_of(notif_wait, struct iwl_priv, notif_wait); |
Don Fry | 69a679b | 2011-12-07 08:50:46 -0800 | [diff] [blame] | 290 | struct iwl_alive_data *alive_data = data; |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 291 | struct iwl_alive_resp *palive; |
| 292 | |
Johannes Berg | f8d7c1a | 2012-03-06 13:31:02 -0800 | [diff] [blame] | 293 | palive = (void *)pkt->data; |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 294 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 295 | IWL_DEBUG_FW(priv, "Alive ucode status 0x%08X revision " |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 296 | "0x%01X 0x%01X\n", |
| 297 | palive->is_valid, palive->ver_type, |
| 298 | palive->ver_subtype); |
| 299 | |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 300 | priv->device_pointers.error_event_table = |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 301 | le32_to_cpu(palive->error_event_table_ptr); |
Meenakshi Venkataraman | 2fdfc47 | 2012-03-15 13:26:56 -0700 | [diff] [blame] | 302 | priv->device_pointers.log_event_table = |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 303 | le32_to_cpu(palive->log_event_table_ptr); |
| 304 | |
| 305 | alive_data->subtype = palive->ver_subtype; |
| 306 | alive_data->valid = palive->is_valid == UCODE_VALID_OK; |
Johannes Berg | db662d4 | 2012-03-15 13:26:44 -0700 | [diff] [blame] | 307 | |
| 308 | return true; |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | #define UCODE_ALIVE_TIMEOUT HZ |
| 312 | #define UCODE_CALIB_TIMEOUT (2*HZ) |
| 313 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 314 | int iwl_load_ucode_wait_alive(struct iwl_priv *priv, |
Don Fry | de7f5f9 | 2011-11-10 06:55:10 -0800 | [diff] [blame] | 315 | enum iwl_ucode_type ucode_type) |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 316 | { |
| 317 | struct iwl_notification_wait alive_wait; |
Don Fry | 69a679b | 2011-12-07 08:50:46 -0800 | [diff] [blame] | 318 | struct iwl_alive_data alive_data; |
Johannes Berg | 0692fe4 | 2012-03-06 13:30:37 -0800 | [diff] [blame] | 319 | const struct fw_img *fw; |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 320 | int ret; |
Don Fry | de7f5f9 | 2011-11-10 06:55:10 -0800 | [diff] [blame] | 321 | enum iwl_ucode_type old_type; |
Sara Sharon | 6eb031d | 2015-07-13 14:50:47 +0300 | [diff] [blame] | 322 | static const u16 alive_cmd[] = { REPLY_ALIVE }; |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 323 | |
Sharon Dvir | 612da1e | 2016-08-03 10:55:45 +0300 | [diff] [blame] | 324 | fw = iwl_get_ucode_image(priv->fw, ucode_type); |
Johannes Berg | befe9b6 | 2013-10-25 12:32:51 +0200 | [diff] [blame] | 325 | if (WARN_ON(!fw)) |
| 326 | return -EINVAL; |
| 327 | |
Meenakshi Venkataraman | a42506e | 2012-03-15 13:26:57 -0700 | [diff] [blame] | 328 | old_type = priv->cur_ucode; |
| 329 | priv->cur_ucode = ucode_type; |
David Spinadel | 8f7ffbe | 2012-03-10 13:00:10 -0800 | [diff] [blame] | 330 | priv->ucode_loaded = false; |
| 331 | |
Johannes Berg | db662d4 | 2012-03-15 13:26:44 -0700 | [diff] [blame] | 332 | iwl_init_notification_wait(&priv->notif_wait, &alive_wait, |
| 333 | alive_cmd, ARRAY_SIZE(alive_cmd), |
| 334 | iwl_alive_fn, &alive_data); |
Johannes Berg | f472089 | 2012-03-06 13:30:57 -0800 | [diff] [blame] | 335 | |
Emmanuel Grumbach | 6ae02f3 | 2012-12-24 11:10:43 +0200 | [diff] [blame] | 336 | ret = iwl_trans_start_fw(priv->trans, fw, false); |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 337 | if (ret) { |
Meenakshi Venkataraman | a42506e | 2012-03-15 13:26:57 -0700 | [diff] [blame] | 338 | priv->cur_ucode = old_type; |
Johannes Berg | 4bd14dd | 2012-03-06 13:30:58 -0800 | [diff] [blame] | 339 | iwl_remove_notification(&priv->notif_wait, &alive_wait); |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 340 | return ret; |
| 341 | } |
| 342 | |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 343 | /* |
| 344 | * Some things may run in the background now, but we |
| 345 | * just wait for the ALIVE notification here. |
| 346 | */ |
Johannes Berg | 4bd14dd | 2012-03-06 13:30:58 -0800 | [diff] [blame] | 347 | ret = iwl_wait_notification(&priv->notif_wait, &alive_wait, |
Don Fry | dd5fe10 | 2011-11-28 16:13:19 -0800 | [diff] [blame] | 348 | UCODE_ALIVE_TIMEOUT); |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 349 | if (ret) { |
Meenakshi Venkataraman | a42506e | 2012-03-15 13:26:57 -0700 | [diff] [blame] | 350 | priv->cur_ucode = old_type; |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 351 | return ret; |
| 352 | } |
| 353 | |
| 354 | if (!alive_data.valid) { |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 355 | IWL_ERR(priv, "Loaded ucode is not valid!\n"); |
Meenakshi Venkataraman | a42506e | 2012-03-15 13:26:57 -0700 | [diff] [blame] | 356 | priv->cur_ucode = old_type; |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 357 | return -EIO; |
| 358 | } |
| 359 | |
Emmanuel Grumbach | 2d5d50e | 2013-01-31 15:03:55 +0200 | [diff] [blame] | 360 | priv->ucode_loaded = true; |
| 361 | |
Johannes Berg | c8ac61c | 2011-07-15 13:23:45 -0700 | [diff] [blame] | 362 | if (ucode_type != IWL_UCODE_WOWLAN) { |
Johannes Berg | c8ac61c | 2011-07-15 13:23:45 -0700 | [diff] [blame] | 363 | /* delay a bit to give rfkill time to run */ |
| 364 | msleep(5); |
| 365 | } |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 366 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 367 | ret = iwl_alive_notify(priv); |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 368 | if (ret) { |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 369 | IWL_WARN(priv, |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 370 | "Could not complete ALIVE transition: %d\n", ret); |
Meenakshi Venkataraman | a42506e | 2012-03-15 13:26:57 -0700 | [diff] [blame] | 371 | priv->cur_ucode = old_type; |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 372 | return ret; |
| 373 | } |
| 374 | |
| 375 | return 0; |
| 376 | } |
| 377 | |
Johannes Berg | e1f0c50 | 2012-03-15 13:26:45 -0700 | [diff] [blame] | 378 | static bool iwlagn_wait_calib(struct iwl_notif_wait_data *notif_wait, |
| 379 | struct iwl_rx_packet *pkt, void *data) |
| 380 | { |
| 381 | struct iwl_priv *priv = data; |
| 382 | struct iwl_calib_hdr *hdr; |
Johannes Berg | e1f0c50 | 2012-03-15 13:26:45 -0700 | [diff] [blame] | 383 | |
| 384 | if (pkt->hdr.cmd != CALIBRATION_RES_NOTIFICATION) { |
| 385 | WARN_ON(pkt->hdr.cmd != CALIBRATION_COMPLETE_NOTIFICATION); |
| 386 | return true; |
| 387 | } |
| 388 | |
| 389 | hdr = (struct iwl_calib_hdr *)pkt->data; |
Johannes Berg | e1f0c50 | 2012-03-15 13:26:45 -0700 | [diff] [blame] | 390 | |
Johannes Berg | 65b3034 | 2014-01-08 13:16:33 +0100 | [diff] [blame] | 391 | if (iwl_calib_set(priv, hdr, iwl_rx_packet_payload_len(pkt))) |
Johannes Berg | e1f0c50 | 2012-03-15 13:26:45 -0700 | [diff] [blame] | 392 | IWL_ERR(priv, "Failed to record calibration data %d\n", |
| 393 | hdr->op_code); |
| 394 | |
| 395 | return false; |
| 396 | } |
| 397 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 398 | int iwl_run_init_ucode(struct iwl_priv *priv) |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 399 | { |
| 400 | struct iwl_notification_wait calib_wait; |
Sara Sharon | 6eb031d | 2015-07-13 14:50:47 +0300 | [diff] [blame] | 401 | static const u16 calib_complete[] = { |
Johannes Berg | e1f0c50 | 2012-03-15 13:26:45 -0700 | [diff] [blame] | 402 | CALIBRATION_RES_NOTIFICATION, |
Johannes Berg | db662d4 | 2012-03-15 13:26:44 -0700 | [diff] [blame] | 403 | CALIBRATION_COMPLETE_NOTIFICATION |
| 404 | }; |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 405 | int ret; |
| 406 | |
Johannes Berg | b1eea29 | 2012-03-06 13:30:42 -0800 | [diff] [blame] | 407 | lockdep_assert_held(&priv->mutex); |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 408 | |
| 409 | /* No init ucode required? Curious, but maybe ok */ |
Sara Sharon | eef187a | 2016-10-25 11:38:31 +0300 | [diff] [blame] | 410 | if (!priv->fw->img[IWL_UCODE_INIT].num_sec) |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 411 | return 0; |
| 412 | |
Johannes Berg | 4bd14dd | 2012-03-06 13:30:58 -0800 | [diff] [blame] | 413 | iwl_init_notification_wait(&priv->notif_wait, &calib_wait, |
Johannes Berg | db662d4 | 2012-03-15 13:26:44 -0700 | [diff] [blame] | 414 | calib_complete, ARRAY_SIZE(calib_complete), |
Johannes Berg | e1f0c50 | 2012-03-15 13:26:45 -0700 | [diff] [blame] | 415 | iwlagn_wait_calib, priv); |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 416 | |
| 417 | /* Will also start the device */ |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 418 | ret = iwl_load_ucode_wait_alive(priv, IWL_UCODE_INIT); |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 419 | if (ret) |
| 420 | goto error; |
| 421 | |
Johannes Berg | e199188 | 2012-03-06 13:30:36 -0800 | [diff] [blame] | 422 | ret = iwl_init_alive_start(priv); |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 423 | if (ret) |
| 424 | goto error; |
| 425 | |
| 426 | /* |
| 427 | * Some things may run in the background now, but we |
| 428 | * just wait for the calibration complete notification. |
| 429 | */ |
Johannes Berg | 4bd14dd | 2012-03-06 13:30:58 -0800 | [diff] [blame] | 430 | ret = iwl_wait_notification(&priv->notif_wait, &calib_wait, |
Don Fry | dd5fe10 | 2011-11-28 16:13:19 -0800 | [diff] [blame] | 431 | UCODE_CALIB_TIMEOUT); |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 432 | |
| 433 | goto out; |
| 434 | |
| 435 | error: |
Johannes Berg | 4bd14dd | 2012-03-06 13:30:58 -0800 | [diff] [blame] | 436 | iwl_remove_notification(&priv->notif_wait, &calib_wait); |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 437 | out: |
| 438 | /* Whatever happened, stop the device */ |
Emmanuel Grumbach | 68e8dfd | 2012-04-18 07:28:17 -0700 | [diff] [blame] | 439 | iwl_trans_stop_device(priv->trans); |
David Spinadel | 8f7ffbe | 2012-03-10 13:00:10 -0800 | [diff] [blame] | 440 | priv->ucode_loaded = false; |
| 441 | |
Johannes Berg | ca7966c | 2011-04-22 10:15:23 -0700 | [diff] [blame] | 442 | return ret; |
| 443 | } |