blob: 95e6d33f51591fde0557faff02dad0a6097a70b4 [file] [log] [blame]
Wey-Yi Guy792bc3c2010-03-16 10:23:29 -07001/******************************************************************************
2 *
3 * GPL LICENSE SUMMARY
4 *
Wey-Yi Guy4e318262011-12-27 11:21:32 -08005 * Copyright(c) 2008 - 2012 Intel Corporation. All rights reserved.
Wey-Yi Guy792bc3c2010-03-16 10:23:29 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of version 2 of the GNU General Public License as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
19 * USA
20 *
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
23 *
24 * Contact Information:
25 * Intel Linux Wireless <ilw@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
29
30#include <linux/kernel.h>
Wey-Yi Guy792bc3c2010-03-16 10:23:29 -070031#include <linux/init.h>
32
Wey-Yi Guy81b81762010-03-16 10:23:30 -070033#include "iwl-io.h"
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -070034#include "iwl-agn-hw.h"
Emmanuel Grumbachbdfbf092011-07-08 08:46:16 -070035#include "iwl-trans.h"
Emmanuel Grumbachdda61a42011-08-25 23:11:11 -070036#include "iwl-fh.h"
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +020037#include "iwl-op-mode.h"
Wey-Yi Guy741a6262010-03-16 12:37:24 -070038
Johannes Berg1023fdc2012-05-15 12:16:34 +020039#include "dev.h"
40#include "agn.h"
41#include "calib.h"
42
Don Fryde7f5f92011-11-10 06:55:10 -080043/******************************************************************************
44 *
45 * uCode download functions
46 *
47 ******************************************************************************/
48
Johannes Berg0692fe42012-03-06 13:30:37 -080049static inline const struct fw_img *
50iwl_get_ucode_image(struct iwl_priv *priv, enum iwl_ucode_type ucode_type)
Don Fry8929c242011-11-10 06:55:08 -080051{
David Spinadel6dfa8d02012-03-10 13:00:14 -080052 if (ucode_type >= IWL_UCODE_TYPE_MAX)
53 return NULL;
54
55 return &priv->fw->img[ucode_type];
Don Fry8929c242011-11-10 06:55:08 -080056}
57
Wey-Yi Guy741a6262010-03-16 12:37:24 -070058/*
59 * Calibration
60 */
Johannes Berge1991882012-03-06 13:30:36 -080061static int iwl_set_Xtal_calib(struct iwl_priv *priv)
Wey-Yi Guy741a6262010-03-16 12:37:24 -070062{
63 struct iwl_calib_xtal_freq_cmd cmd;
Johannes Berg26a7ca92012-05-21 11:55:54 +020064 __le16 *xtal_calib = priv->eeprom_data->xtal_calib;
Wey-Yi Guy741a6262010-03-16 12:37:24 -070065
Wey-Yi Guy1f8bf032011-06-06 14:26:43 -070066 iwl_set_calib_hdr(&cmd.hdr, IWL_PHY_CALIBRATE_CRYSTAL_FRQ_CMD);
Wey-Yi Guy741a6262010-03-16 12:37:24 -070067 cmd.cap_pin1 = le16_to_cpu(xtal_calib[0]);
68 cmd.cap_pin2 = le16_to_cpu(xtal_calib[1]);
Johannes Berge1991882012-03-06 13:30:36 -080069 return iwl_calib_set(priv, (void *)&cmd, sizeof(cmd));
Wey-Yi Guy741a6262010-03-16 12:37:24 -070070}
71
Johannes Berge1991882012-03-06 13:30:36 -080072static int iwl_set_temperature_offset_calib(struct iwl_priv *priv)
Shanyu Zhaobf53f932010-09-21 16:54:01 -070073{
74 struct iwl_calib_temperature_offset_cmd cmd;
Wey-Yi Guy1f8bf032011-06-06 14:26:43 -070075
76 memset(&cmd, 0, sizeof(cmd));
77 iwl_set_calib_hdr(&cmd.hdr, IWL_PHY_CALIBRATE_TEMP_OFFSET_CMD);
Johannes Berg26a7ca92012-05-21 11:55:54 +020078 cmd.radio_sensor_offset = priv->eeprom_data->raw_temperature;
Shanyu Zhaobf53f932010-09-21 16:54:01 -070079 if (!(cmd.radio_sensor_offset))
80 cmd.radio_sensor_offset = DEFAULT_RADIO_SENSOR_OFFSET;
Wey-Yi Guy1f8bf032011-06-06 14:26:43 -070081
Johannes Berge1991882012-03-06 13:30:36 -080082 IWL_DEBUG_CALIB(priv, "Radio sensor offset: %d\n",
Wey-Yi Guy2e277992011-07-08 14:29:48 -070083 le16_to_cpu(cmd.radio_sensor_offset));
Johannes Berge1991882012-03-06 13:30:36 -080084 return iwl_calib_set(priv, (void *)&cmd, sizeof(cmd));
Shanyu Zhaobf53f932010-09-21 16:54:01 -070085}
86
Johannes Berge1991882012-03-06 13:30:36 -080087static int iwl_set_temperature_offset_calib_v2(struct iwl_priv *priv)
Wey-Yi Guyc6f30342011-09-15 11:46:50 -070088{
89 struct iwl_calib_temperature_offset_v2_cmd cmd;
Wey-Yi Guyc6f30342011-09-15 11:46:50 -070090
91 memset(&cmd, 0, sizeof(cmd));
92 iwl_set_calib_hdr(&cmd.hdr, IWL_PHY_CALIBRATE_TEMP_OFFSET_CMD);
Johannes Berg26a7ca92012-05-21 11:55:54 +020093 cmd.radio_sensor_offset_high = priv->eeprom_data->kelvin_temperature;
94 cmd.radio_sensor_offset_low = priv->eeprom_data->raw_temperature;
95 if (!cmd.radio_sensor_offset_low) {
Johannes Berge1991882012-03-06 13:30:36 -080096 IWL_DEBUG_CALIB(priv, "no info in EEPROM, use default\n");
Wey-Yi Guyc6f30342011-09-15 11:46:50 -070097 cmd.radio_sensor_offset_low = DEFAULT_RADIO_SENSOR_OFFSET;
98 cmd.radio_sensor_offset_high = DEFAULT_RADIO_SENSOR_OFFSET;
99 }
Johannes Berg26a7ca92012-05-21 11:55:54 +0200100 cmd.burntVoltageRef = priv->eeprom_data->calib_voltage;
Wey-Yi Guyc6f30342011-09-15 11:46:50 -0700101
Johannes Berge1991882012-03-06 13:30:36 -0800102 IWL_DEBUG_CALIB(priv, "Radio sensor offset high: %d\n",
Wey-Yi Guyc6f30342011-09-15 11:46:50 -0700103 le16_to_cpu(cmd.radio_sensor_offset_high));
Johannes Berge1991882012-03-06 13:30:36 -0800104 IWL_DEBUG_CALIB(priv, "Radio sensor offset low: %d\n",
Wey-Yi Guyc6f30342011-09-15 11:46:50 -0700105 le16_to_cpu(cmd.radio_sensor_offset_low));
Johannes Berge1991882012-03-06 13:30:36 -0800106 IWL_DEBUG_CALIB(priv, "Voltage Ref: %d\n",
Wey-Yi Guyc6f30342011-09-15 11:46:50 -0700107 le16_to_cpu(cmd.burntVoltageRef));
108
Johannes Berge1991882012-03-06 13:30:36 -0800109 return iwl_calib_set(priv, (void *)&cmd, sizeof(cmd));
Wey-Yi Guyc6f30342011-09-15 11:46:50 -0700110}
111
Johannes Berge1991882012-03-06 13:30:36 -0800112static int iwl_send_calib_cfg(struct iwl_priv *priv)
Wey-Yi Guy741a6262010-03-16 12:37:24 -0700113{
114 struct iwl_calib_cfg_cmd calib_cfg_cmd;
115 struct iwl_host_cmd cmd = {
116 .id = CALIBRATION_CFG_CMD,
Johannes Berg3fa50732011-05-04 07:50:38 -0700117 .len = { sizeof(struct iwl_calib_cfg_cmd), },
118 .data = { &calib_cfg_cmd, },
Wey-Yi Guy741a6262010-03-16 12:37:24 -0700119 };
120
121 memset(&calib_cfg_cmd, 0, sizeof(calib_cfg_cmd));
122 calib_cfg_cmd.ucd_calib_cfg.once.is_enable = IWL_CALIB_INIT_CFG_ALL;
123 calib_cfg_cmd.ucd_calib_cfg.once.start = IWL_CALIB_INIT_CFG_ALL;
124 calib_cfg_cmd.ucd_calib_cfg.once.send_res = IWL_CALIB_INIT_CFG_ALL;
Wey-Yi Guydf2a4dc2011-07-08 14:29:45 -0700125 calib_cfg_cmd.ucd_calib_cfg.flags =
126 IWL_CALIB_CFG_FLAG_SEND_COMPLETE_NTFY_MSK;
Wey-Yi Guy741a6262010-03-16 12:37:24 -0700127
Johannes Berge10a0532012-03-06 13:30:39 -0800128 return iwl_dvm_send_cmd(priv, &cmd);
Wey-Yi Guy741a6262010-03-16 12:37:24 -0700129}
130
Johannes Berge1991882012-03-06 13:30:36 -0800131int iwl_init_alive_start(struct iwl_priv *priv)
Wey-Yi Guy741a6262010-03-16 12:37:24 -0700132{
Johannes Bergca7966c2011-04-22 10:15:23 -0700133 int ret;
Wey-Yi Guy741a6262010-03-16 12:37:24 -0700134
Emmanuel Grumbach21522682012-03-22 17:51:44 +0200135 if (priv->cfg->bt_params &&
136 priv->cfg->bt_params->advanced_bt_coexist) {
Wey-Yi Guyf7322f82010-08-23 15:24:49 -0700137 /*
138 * Tell uCode we are ready to perform calibration
139 * need to perform this before any calibration
140 * no need to close the envlope since we are going
141 * to load the runtime uCode later.
142 */
Johannes Berge1991882012-03-06 13:30:36 -0800143 ret = iwl_send_bt_env(priv, IWL_BT_COEX_ENV_OPEN,
Wey-Yi Guyf7322f82010-08-23 15:24:49 -0700144 BT_COEX_PRIO_TBL_EVT_INIT_CALIB2);
Johannes Bergca7966c2011-04-22 10:15:23 -0700145 if (ret)
146 return ret;
Wey-Yi Guyf7322f82010-08-23 15:24:49 -0700147
148 }
Johannes Bergca7966c2011-04-22 10:15:23 -0700149
Johannes Berge1991882012-03-06 13:30:36 -0800150 ret = iwl_send_calib_cfg(priv);
Johannes Bergca7966c2011-04-22 10:15:23 -0700151 if (ret)
152 return ret;
Shanyu Zhaobf53f932010-09-21 16:54:01 -0700153
154 /**
155 * temperature offset calibration is only needed for runtime ucode,
156 * so prepare the value now.
157 */
Emmanuel Grumbach21522682012-03-22 17:51:44 +0200158 if (priv->cfg->need_temp_offset_calib) {
159 if (priv->cfg->temp_offset_v2)
Johannes Berge1991882012-03-06 13:30:36 -0800160 return iwl_set_temperature_offset_calib_v2(priv);
Wey-Yi Guyc6f30342011-09-15 11:46:50 -0700161 else
Johannes Berge1991882012-03-06 13:30:36 -0800162 return iwl_set_temperature_offset_calib(priv);
Wey-Yi Guyc6f30342011-09-15 11:46:50 -0700163 }
Shanyu Zhaobf53f932010-09-21 16:54:01 -0700164
Johannes Bergca7966c2011-04-22 10:15:23 -0700165 return 0;
Wey-Yi Guy741a6262010-03-16 12:37:24 -0700166}
167
Johannes Bergaca86262012-05-14 09:08:50 +0200168static int iwl_send_wimax_coex(struct iwl_priv *priv)
Wey-Yi Guyf4012412010-04-27 14:10:00 -0700169{
170 struct iwl_wimax_coex_cmd coex_cmd;
171
Johannes Berg85560af2012-03-15 13:26:48 -0700172 /* coexistence is disabled */
173 memset(&coex_cmd, 0, sizeof(coex_cmd));
Wey-Yi Guyf4012412010-04-27 14:10:00 -0700174
Johannes Berge10a0532012-03-06 13:30:39 -0800175 return iwl_dvm_send_cmd_pdu(priv,
Emmanuel Grumbache419d622011-07-08 08:46:14 -0700176 COEX_PRIORITY_TABLE_CMD, CMD_SYNC,
Wey-Yi Guyf4012412010-04-27 14:10:00 -0700177 sizeof(coex_cmd), &coex_cmd);
178}
179
Don Fry66128b12011-11-28 14:35:14 -0800180static const u8 iwl_bt_prio_tbl[BT_COEX_PRIO_TBL_EVT_MAX] = {
Wey-Yi Guyaeb4a2e2010-08-23 07:57:05 -0700181 ((BT_COEX_PRIO_TBL_PRIO_BYPASS << IWL_BT_COEX_PRIO_TBL_PRIO_POS) |
182 (0 << IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_POS)),
183 ((BT_COEX_PRIO_TBL_PRIO_BYPASS << IWL_BT_COEX_PRIO_TBL_PRIO_POS) |
184 (1 << IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_POS)),
185 ((BT_COEX_PRIO_TBL_PRIO_LOW << IWL_BT_COEX_PRIO_TBL_PRIO_POS) |
186 (0 << IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_POS)),
187 ((BT_COEX_PRIO_TBL_PRIO_LOW << IWL_BT_COEX_PRIO_TBL_PRIO_POS) |
188 (1 << IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_POS)),
189 ((BT_COEX_PRIO_TBL_PRIO_HIGH << IWL_BT_COEX_PRIO_TBL_PRIO_POS) |
190 (0 << IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_POS)),
191 ((BT_COEX_PRIO_TBL_PRIO_HIGH << IWL_BT_COEX_PRIO_TBL_PRIO_POS) |
192 (1 << IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_POS)),
193 ((BT_COEX_PRIO_TBL_PRIO_BYPASS << IWL_BT_COEX_PRIO_TBL_PRIO_POS) |
194 (0 << IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_POS)),
195 ((BT_COEX_PRIO_TBL_PRIO_COEX_OFF << IWL_BT_COEX_PRIO_TBL_PRIO_POS) |
196 (0 << IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_POS)),
197 ((BT_COEX_PRIO_TBL_PRIO_COEX_ON << IWL_BT_COEX_PRIO_TBL_PRIO_POS) |
198 (0 << IWL_BT_COEX_PRIO_TBL_SHARED_ANTENNA_POS)),
199 0, 0, 0, 0, 0, 0, 0
200};
201
Johannes Berge1991882012-03-06 13:30:36 -0800202void iwl_send_prio_tbl(struct iwl_priv *priv)
Wey-Yi Guyaeb4a2e2010-08-23 07:57:05 -0700203{
204 struct iwl_bt_coex_prio_table_cmd prio_tbl_cmd;
205
Don Fry66128b12011-11-28 14:35:14 -0800206 memcpy(prio_tbl_cmd.prio_tbl, iwl_bt_prio_tbl,
207 sizeof(iwl_bt_prio_tbl));
Johannes Berge10a0532012-03-06 13:30:39 -0800208 if (iwl_dvm_send_cmd_pdu(priv,
Emmanuel Grumbache419d622011-07-08 08:46:14 -0700209 REPLY_BT_COEX_PRIO_TABLE, CMD_SYNC,
Wey-Yi Guyaeb4a2e2010-08-23 07:57:05 -0700210 sizeof(prio_tbl_cmd), &prio_tbl_cmd))
Johannes Berge1991882012-03-06 13:30:36 -0800211 IWL_ERR(priv, "failed to send BT prio tbl command\n");
Wey-Yi Guyaeb4a2e2010-08-23 07:57:05 -0700212}
213
Johannes Berge1991882012-03-06 13:30:36 -0800214int iwl_send_bt_env(struct iwl_priv *priv, u8 action, u8 type)
Wey-Yi Guyaeb4a2e2010-08-23 07:57:05 -0700215{
216 struct iwl_bt_coex_prot_env_cmd env_cmd;
Johannes Bergca7966c2011-04-22 10:15:23 -0700217 int ret;
Wey-Yi Guyaeb4a2e2010-08-23 07:57:05 -0700218
219 env_cmd.action = action;
220 env_cmd.type = type;
Johannes Berge10a0532012-03-06 13:30:39 -0800221 ret = iwl_dvm_send_cmd_pdu(priv,
Emmanuel Grumbache419d622011-07-08 08:46:14 -0700222 REPLY_BT_COEX_PROT_ENV, CMD_SYNC,
Johannes Bergca7966c2011-04-22 10:15:23 -0700223 sizeof(env_cmd), &env_cmd);
224 if (ret)
Johannes Berge1991882012-03-06 13:30:36 -0800225 IWL_ERR(priv, "failed to send BT env command\n");
Johannes Bergca7966c2011-04-22 10:15:23 -0700226 return ret;
Wey-Yi Guyaeb4a2e2010-08-23 07:57:05 -0700227}
228
Emmanuel Grumbachb04db9a2012-06-21 11:53:44 +0300229static const u8 iwlagn_default_queue_to_tx_fifo[] = {
230 IWL_TX_FIFO_VO,
231 IWL_TX_FIFO_VI,
232 IWL_TX_FIFO_BE,
233 IWL_TX_FIFO_BK,
234};
235
236static const u8 iwlagn_ipan_queue_to_tx_fifo[] = {
237 IWL_TX_FIFO_VO,
238 IWL_TX_FIFO_VI,
239 IWL_TX_FIFO_BE,
240 IWL_TX_FIFO_BK,
241 IWL_TX_FIFO_BK_IPAN,
242 IWL_TX_FIFO_BE_IPAN,
243 IWL_TX_FIFO_VI_IPAN,
244 IWL_TX_FIFO_VO_IPAN,
245 IWL_TX_FIFO_BE_IPAN,
246 IWL_TX_FIFO_UNUSED,
247 IWL_TX_FIFO_AUX,
248};
Wey-Yi Guyaeb4a2e2010-08-23 07:57:05 -0700249
Johannes Berge1991882012-03-06 13:30:36 -0800250static int iwl_alive_notify(struct iwl_priv *priv)
Wey-Yi Guy741a6262010-03-16 12:37:24 -0700251{
Emmanuel Grumbachb04db9a2012-06-21 11:53:44 +0300252 const u8 *queue_to_txf;
253 u8 n_queues;
Wey-Yi Guy74159522011-04-05 09:42:01 -0700254 int ret;
Emmanuel Grumbachb04db9a2012-06-21 11:53:44 +0300255 int i;
Wey-Yi Guy741a6262010-03-16 12:37:24 -0700256
Emmanuel Grumbachadca1232012-10-25 23:08:27 +0200257 iwl_trans_fw_alive(priv->trans, 0);
Johannes Berge755f882012-03-07 09:52:16 -0800258
Emmanuel Grumbachb04db9a2012-06-21 11:53:44 +0300259 if (priv->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_PAN &&
260 priv->eeprom_data->sku & EEPROM_SKU_CAP_IPAN_ENABLE) {
261 n_queues = ARRAY_SIZE(iwlagn_ipan_queue_to_tx_fifo);
262 queue_to_txf = iwlagn_ipan_queue_to_tx_fifo;
263 } else {
264 n_queues = ARRAY_SIZE(iwlagn_default_queue_to_tx_fifo);
265 queue_to_txf = iwlagn_default_queue_to_tx_fifo;
266 }
267
268 for (i = 0; i < n_queues; i++)
269 if (queue_to_txf[i] != IWL_TX_FIFO_UNUSED)
270 iwl_trans_ac_txq_enable(priv->trans, i,
271 queue_to_txf[i]);
272
Johannes Berge755f882012-03-07 09:52:16 -0800273 priv->passive_no_rx = false;
274 priv->transport_queue_stop = 0;
Grumbach, Emmanuele7cad692010-11-18 03:47:38 -0800275
Johannes Berge1991882012-03-06 13:30:36 -0800276 ret = iwl_send_wimax_coex(priv);
Wey-Yi Guy74159522011-04-05 09:42:01 -0700277 if (ret)
278 return ret;
Wey-Yi Guy741a6262010-03-16 12:37:24 -0700279
Emmanuel Grumbach21522682012-03-22 17:51:44 +0200280 if (!priv->cfg->no_xtal_calib) {
Johannes Berge1991882012-03-06 13:30:36 -0800281 ret = iwl_set_Xtal_calib(priv);
Johannes Berg93b64102011-11-17 08:51:53 -0800282 if (ret)
283 return ret;
284 }
Wey-Yi Guy74159522011-04-05 09:42:01 -0700285
Johannes Berge1991882012-03-06 13:30:36 -0800286 return iwl_send_calib_results(priv);
Wey-Yi Guy741a6262010-03-16 12:37:24 -0700287}
Wey-Yi Guydb41dd272010-05-10 14:15:25 -0700288
289
290/**
291 * iwl_verify_inst_sparse - verify runtime uCode image in card vs. host,
292 * using sample data 100 bytes apart. If these sample points are good,
293 * it's a pretty good bet that everything between them is good, too.
294 */
David Spinadel6dfa8d02012-03-10 13:00:14 -0800295static int iwl_verify_sec_sparse(struct iwl_priv *priv,
Johannes Berg0692fe42012-03-06 13:30:37 -0800296 const struct fw_desc *fw_desc)
Wey-Yi Guydb41dd272010-05-10 14:15:25 -0700297{
Johannes Berg83f84d72012-09-10 11:50:18 +0200298 __le32 *image = (__le32 *)fw_desc->data;
Johannes Berg35b1d922011-04-05 09:41:56 -0700299 u32 len = fw_desc->len;
Wey-Yi Guydb41dd272010-05-10 14:15:25 -0700300 u32 val;
Wey-Yi Guydb41dd272010-05-10 14:15:25 -0700301 u32 i;
302
Johannes Berge1991882012-03-06 13:30:36 -0800303 IWL_DEBUG_FW(priv, "ucode inst image size is %u\n", len);
Wey-Yi Guydb41dd272010-05-10 14:15:25 -0700304
305 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
306 /* read data comes through single port, auto-incr addr */
307 /* NOTE: Use the debugless read so we don't flood kernel log
308 * if IWL_DL_IO is set */
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700309 iwl_write_direct32(priv->trans, HBUS_TARG_MEM_RADDR,
David Spinadel6dfa8d02012-03-10 13:00:14 -0800310 i + fw_desc->offset);
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700311 val = iwl_read32(priv->trans, HBUS_TARG_MEM_RDAT);
Johannes Bergfb662162011-04-05 09:41:55 -0700312 if (val != le32_to_cpu(*image))
313 return -EIO;
Wey-Yi Guydb41dd272010-05-10 14:15:25 -0700314 }
315
Johannes Bergfb662162011-04-05 09:41:55 -0700316 return 0;
Wey-Yi Guydb41dd272010-05-10 14:15:25 -0700317}
318
David Spinadel6dfa8d02012-03-10 13:00:14 -0800319static void iwl_print_mismatch_sec(struct iwl_priv *priv,
Johannes Berg0692fe42012-03-06 13:30:37 -0800320 const struct fw_desc *fw_desc)
Wey-Yi Guydb41dd272010-05-10 14:15:25 -0700321{
Johannes Berg83f84d72012-09-10 11:50:18 +0200322 __le32 *image = (__le32 *)fw_desc->data;
Johannes Berg35b1d922011-04-05 09:41:56 -0700323 u32 len = fw_desc->len;
Wey-Yi Guydb41dd272010-05-10 14:15:25 -0700324 u32 val;
Johannes Bergfb662162011-04-05 09:41:55 -0700325 u32 offs;
326 int errors = 0;
Wey-Yi Guydb41dd272010-05-10 14:15:25 -0700327
Johannes Berge1991882012-03-06 13:30:36 -0800328 IWL_DEBUG_FW(priv, "ucode inst image size is %u\n", len);
Wey-Yi Guydb41dd272010-05-10 14:15:25 -0700329
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700330 iwl_write_direct32(priv->trans, HBUS_TARG_MEM_RADDR,
David Spinadel6dfa8d02012-03-10 13:00:14 -0800331 fw_desc->offset);
Wey-Yi Guydb41dd272010-05-10 14:15:25 -0700332
Johannes Bergfb662162011-04-05 09:41:55 -0700333 for (offs = 0;
334 offs < len && errors < 20;
335 offs += sizeof(u32), image++) {
Wey-Yi Guydb41dd272010-05-10 14:15:25 -0700336 /* read data comes through single port, auto-incr addr */
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700337 val = iwl_read32(priv->trans, HBUS_TARG_MEM_RDAT);
Wey-Yi Guydb41dd272010-05-10 14:15:25 -0700338 if (val != le32_to_cpu(*image)) {
Johannes Berge1991882012-03-06 13:30:36 -0800339 IWL_ERR(priv, "uCode INST section at "
Johannes Bergfb662162011-04-05 09:41:55 -0700340 "offset 0x%x, is 0x%x, s/b 0x%x\n",
341 offs, val, le32_to_cpu(*image));
342 errors++;
Wey-Yi Guydb41dd272010-05-10 14:15:25 -0700343 }
344 }
Wey-Yi Guydb41dd272010-05-10 14:15:25 -0700345}
346
347/**
348 * iwl_verify_ucode - determine which instruction image is in SRAM,
349 * and verify its contents
350 */
Johannes Berge1991882012-03-06 13:30:36 -0800351static int iwl_verify_ucode(struct iwl_priv *priv,
Don Fryde7f5f92011-11-10 06:55:10 -0800352 enum iwl_ucode_type ucode_type)
Wey-Yi Guydb41dd272010-05-10 14:15:25 -0700353{
Johannes Berg0692fe42012-03-06 13:30:37 -0800354 const struct fw_img *img = iwl_get_ucode_image(priv, ucode_type);
Don Frybaa00052011-11-10 06:55:09 -0800355
356 if (!img) {
Johannes Berge1991882012-03-06 13:30:36 -0800357 IWL_ERR(priv, "Invalid ucode requested (%d)\n", ucode_type);
Don Frybaa00052011-11-10 06:55:09 -0800358 return -EINVAL;
359 }
360
David Spinadel6dfa8d02012-03-10 13:00:14 -0800361 if (!iwl_verify_sec_sparse(priv, &img->sec[IWL_UCODE_SECTION_INST])) {
Johannes Berge1991882012-03-06 13:30:36 -0800362 IWL_DEBUG_FW(priv, "uCode is good in inst SRAM\n");
Wey-Yi Guydb41dd272010-05-10 14:15:25 -0700363 return 0;
364 }
365
Johannes Berge1991882012-03-06 13:30:36 -0800366 IWL_ERR(priv, "UCODE IMAGE IN INSTRUCTION SRAM NOT VALID!!\n");
Wey-Yi Guydb41dd272010-05-10 14:15:25 -0700367
David Spinadel6dfa8d02012-03-10 13:00:14 -0800368 iwl_print_mismatch_sec(priv, &img->sec[IWL_UCODE_SECTION_INST]);
Johannes Bergfb662162011-04-05 09:41:55 -0700369 return -EIO;
Wey-Yi Guydb41dd272010-05-10 14:15:25 -0700370}
Johannes Bergca7966c2011-04-22 10:15:23 -0700371
Don Fry69a679b2011-12-07 08:50:46 -0800372struct iwl_alive_data {
Johannes Bergca7966c2011-04-22 10:15:23 -0700373 bool valid;
374 u8 subtype;
375};
376
Johannes Bergdb662d42012-03-15 13:26:44 -0700377static bool iwl_alive_fn(struct iwl_notif_wait_data *notif_wait,
378 struct iwl_rx_packet *pkt, void *data)
Johannes Bergca7966c2011-04-22 10:15:23 -0700379{
Johannes Berg4bd14dd2012-03-06 13:30:58 -0800380 struct iwl_priv *priv =
381 container_of(notif_wait, struct iwl_priv, notif_wait);
Don Fry69a679b2011-12-07 08:50:46 -0800382 struct iwl_alive_data *alive_data = data;
Johannes Bergca7966c2011-04-22 10:15:23 -0700383 struct iwl_alive_resp *palive;
384
Johannes Bergf8d7c1a2012-03-06 13:31:02 -0800385 palive = (void *)pkt->data;
Johannes Bergca7966c2011-04-22 10:15:23 -0700386
Johannes Berge1991882012-03-06 13:30:36 -0800387 IWL_DEBUG_FW(priv, "Alive ucode status 0x%08X revision "
Johannes Bergca7966c2011-04-22 10:15:23 -0700388 "0x%01X 0x%01X\n",
389 palive->is_valid, palive->ver_type,
390 palive->ver_subtype);
391
Meenakshi Venkataraman2fdfc472012-03-15 13:26:56 -0700392 priv->device_pointers.error_event_table =
Johannes Bergca7966c2011-04-22 10:15:23 -0700393 le32_to_cpu(palive->error_event_table_ptr);
Meenakshi Venkataraman2fdfc472012-03-15 13:26:56 -0700394 priv->device_pointers.log_event_table =
Johannes Bergca7966c2011-04-22 10:15:23 -0700395 le32_to_cpu(palive->log_event_table_ptr);
396
397 alive_data->subtype = palive->ver_subtype;
398 alive_data->valid = palive->is_valid == UCODE_VALID_OK;
Johannes Bergdb662d42012-03-15 13:26:44 -0700399
400 return true;
Johannes Bergca7966c2011-04-22 10:15:23 -0700401}
402
403#define UCODE_ALIVE_TIMEOUT HZ
404#define UCODE_CALIB_TIMEOUT (2*HZ)
405
Johannes Berge1991882012-03-06 13:30:36 -0800406int iwl_load_ucode_wait_alive(struct iwl_priv *priv,
Don Fryde7f5f92011-11-10 06:55:10 -0800407 enum iwl_ucode_type ucode_type)
Johannes Bergca7966c2011-04-22 10:15:23 -0700408{
409 struct iwl_notification_wait alive_wait;
Don Fry69a679b2011-12-07 08:50:46 -0800410 struct iwl_alive_data alive_data;
Johannes Berg0692fe42012-03-06 13:30:37 -0800411 const struct fw_img *fw;
Johannes Bergca7966c2011-04-22 10:15:23 -0700412 int ret;
Don Fryde7f5f92011-11-10 06:55:10 -0800413 enum iwl_ucode_type old_type;
Johannes Bergdb662d42012-03-15 13:26:44 -0700414 static const u8 alive_cmd[] = { REPLY_ALIVE };
Johannes Bergca7966c2011-04-22 10:15:23 -0700415
Meenakshi Venkataramana42506e2012-03-15 13:26:57 -0700416 old_type = priv->cur_ucode;
417 priv->cur_ucode = ucode_type;
Johannes Berge1991882012-03-06 13:30:36 -0800418 fw = iwl_get_ucode_image(priv, ucode_type);
Johannes Bergca7966c2011-04-22 10:15:23 -0700419
David Spinadel8f7ffbe2012-03-10 13:00:10 -0800420 priv->ucode_loaded = false;
421
Emmanuel Grumbachcf614292012-01-08 16:33:58 +0200422 if (!fw)
423 return -EINVAL;
424
Johannes Bergdb662d42012-03-15 13:26:44 -0700425 iwl_init_notification_wait(&priv->notif_wait, &alive_wait,
426 alive_cmd, ARRAY_SIZE(alive_cmd),
427 iwl_alive_fn, &alive_data);
Johannes Bergf4720892012-03-06 13:30:57 -0800428
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700429 ret = iwl_trans_start_fw(priv->trans, fw);
Johannes Bergca7966c2011-04-22 10:15:23 -0700430 if (ret) {
Meenakshi Venkataramana42506e2012-03-15 13:26:57 -0700431 priv->cur_ucode = old_type;
Johannes Berg4bd14dd2012-03-06 13:30:58 -0800432 iwl_remove_notification(&priv->notif_wait, &alive_wait);
Johannes Bergca7966c2011-04-22 10:15:23 -0700433 return ret;
434 }
435
Johannes Bergca7966c2011-04-22 10:15:23 -0700436 /*
437 * Some things may run in the background now, but we
438 * just wait for the ALIVE notification here.
439 */
Johannes Berg4bd14dd2012-03-06 13:30:58 -0800440 ret = iwl_wait_notification(&priv->notif_wait, &alive_wait,
Don Frydd5fe102011-11-28 16:13:19 -0800441 UCODE_ALIVE_TIMEOUT);
Johannes Bergca7966c2011-04-22 10:15:23 -0700442 if (ret) {
Meenakshi Venkataramana42506e2012-03-15 13:26:57 -0700443 priv->cur_ucode = old_type;
Johannes Bergca7966c2011-04-22 10:15:23 -0700444 return ret;
445 }
446
447 if (!alive_data.valid) {
Johannes Berge1991882012-03-06 13:30:36 -0800448 IWL_ERR(priv, "Loaded ucode is not valid!\n");
Meenakshi Venkataramana42506e2012-03-15 13:26:57 -0700449 priv->cur_ucode = old_type;
Johannes Bergca7966c2011-04-22 10:15:23 -0700450 return -EIO;
451 }
452
Johannes Bergc8ac61c2011-07-15 13:23:45 -0700453 /*
454 * This step takes a long time (60-80ms!!) and
455 * WoWLAN image should be loaded quickly, so
456 * skip it for WoWLAN.
457 */
458 if (ucode_type != IWL_UCODE_WOWLAN) {
Johannes Berge1991882012-03-06 13:30:36 -0800459 ret = iwl_verify_ucode(priv, ucode_type);
Johannes Bergc8ac61c2011-07-15 13:23:45 -0700460 if (ret) {
Meenakshi Venkataramana42506e2012-03-15 13:26:57 -0700461 priv->cur_ucode = old_type;
Johannes Bergc8ac61c2011-07-15 13:23:45 -0700462 return ret;
463 }
Johannes Bergca7966c2011-04-22 10:15:23 -0700464
Johannes Bergc8ac61c2011-07-15 13:23:45 -0700465 /* delay a bit to give rfkill time to run */
466 msleep(5);
467 }
Johannes Bergca7966c2011-04-22 10:15:23 -0700468
Johannes Berge1991882012-03-06 13:30:36 -0800469 ret = iwl_alive_notify(priv);
Johannes Bergca7966c2011-04-22 10:15:23 -0700470 if (ret) {
Johannes Berge1991882012-03-06 13:30:36 -0800471 IWL_WARN(priv,
Johannes Bergca7966c2011-04-22 10:15:23 -0700472 "Could not complete ALIVE transition: %d\n", ret);
Meenakshi Venkataramana42506e2012-03-15 13:26:57 -0700473 priv->cur_ucode = old_type;
Johannes Bergca7966c2011-04-22 10:15:23 -0700474 return ret;
475 }
476
David Spinadel8f7ffbe2012-03-10 13:00:10 -0800477 priv->ucode_loaded = true;
478
Johannes Bergca7966c2011-04-22 10:15:23 -0700479 return 0;
480}
481
Johannes Berge1f0c502012-03-15 13:26:45 -0700482static bool iwlagn_wait_calib(struct iwl_notif_wait_data *notif_wait,
483 struct iwl_rx_packet *pkt, void *data)
484{
485 struct iwl_priv *priv = data;
486 struct iwl_calib_hdr *hdr;
487 int len;
488
489 if (pkt->hdr.cmd != CALIBRATION_RES_NOTIFICATION) {
490 WARN_ON(pkt->hdr.cmd != CALIBRATION_COMPLETE_NOTIFICATION);
491 return true;
492 }
493
494 hdr = (struct iwl_calib_hdr *)pkt->data;
495 len = le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
496
497 /* reduce the size by the length field itself */
498 len -= sizeof(__le32);
499
500 if (iwl_calib_set(priv, hdr, len))
501 IWL_ERR(priv, "Failed to record calibration data %d\n",
502 hdr->op_code);
503
504 return false;
505}
506
Johannes Berge1991882012-03-06 13:30:36 -0800507int iwl_run_init_ucode(struct iwl_priv *priv)
Johannes Bergca7966c2011-04-22 10:15:23 -0700508{
509 struct iwl_notification_wait calib_wait;
Johannes Bergdb662d42012-03-15 13:26:44 -0700510 static const u8 calib_complete[] = {
Johannes Berge1f0c502012-03-15 13:26:45 -0700511 CALIBRATION_RES_NOTIFICATION,
Johannes Bergdb662d42012-03-15 13:26:44 -0700512 CALIBRATION_COMPLETE_NOTIFICATION
513 };
Johannes Bergca7966c2011-04-22 10:15:23 -0700514 int ret;
515
Johannes Bergb1eea292012-03-06 13:30:42 -0800516 lockdep_assert_held(&priv->mutex);
Johannes Bergca7966c2011-04-22 10:15:23 -0700517
518 /* No init ucode required? Curious, but maybe ok */
David Spinadel6dfa8d02012-03-10 13:00:14 -0800519 if (!priv->fw->img[IWL_UCODE_INIT].sec[0].len)
Johannes Bergca7966c2011-04-22 10:15:23 -0700520 return 0;
521
David Spinadelb5ea1622012-03-10 13:00:11 -0800522 if (priv->init_ucode_run)
Johannes Bergca7966c2011-04-22 10:15:23 -0700523 return 0;
524
Johannes Berg4bd14dd2012-03-06 13:30:58 -0800525 iwl_init_notification_wait(&priv->notif_wait, &calib_wait,
Johannes Bergdb662d42012-03-15 13:26:44 -0700526 calib_complete, ARRAY_SIZE(calib_complete),
Johannes Berge1f0c502012-03-15 13:26:45 -0700527 iwlagn_wait_calib, priv);
Johannes Bergca7966c2011-04-22 10:15:23 -0700528
529 /* Will also start the device */
Johannes Berge1991882012-03-06 13:30:36 -0800530 ret = iwl_load_ucode_wait_alive(priv, IWL_UCODE_INIT);
Johannes Bergca7966c2011-04-22 10:15:23 -0700531 if (ret)
532 goto error;
533
Johannes Berge1991882012-03-06 13:30:36 -0800534 ret = iwl_init_alive_start(priv);
Johannes Bergca7966c2011-04-22 10:15:23 -0700535 if (ret)
536 goto error;
537
538 /*
539 * Some things may run in the background now, but we
540 * just wait for the calibration complete notification.
541 */
Johannes Berg4bd14dd2012-03-06 13:30:58 -0800542 ret = iwl_wait_notification(&priv->notif_wait, &calib_wait,
Don Frydd5fe102011-11-28 16:13:19 -0800543 UCODE_CALIB_TIMEOUT);
David Spinadelb5ea1622012-03-10 13:00:11 -0800544 if (!ret)
545 priv->init_ucode_run = true;
Johannes Bergca7966c2011-04-22 10:15:23 -0700546
547 goto out;
548
549 error:
Johannes Berg4bd14dd2012-03-06 13:30:58 -0800550 iwl_remove_notification(&priv->notif_wait, &calib_wait);
Johannes Bergca7966c2011-04-22 10:15:23 -0700551 out:
552 /* Whatever happened, stop the device */
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700553 iwl_trans_stop_device(priv->trans);
David Spinadel8f7ffbe2012-03-10 13:00:10 -0800554 priv->ucode_loaded = false;
555
Johannes Bergca7966c2011-04-22 10:15:23 -0700556 return ret;
557}