Linux 3.11-rc3
[cris-mirror.git] / drivers / net / wireless / iwlwifi / mvm / fw.c
blobcd7c0032cc583073bd5acaa7ceebbd19457aa1c4
1 /******************************************************************************
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
6 * GPL LICENSE SUMMARY
8 * Copyright(c) 2012 - 2013 Intel Corporation. All rights reserved.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of version 2 of the GNU General Public License as
12 * published by the Free Software Foundation.
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
22 * USA
24 * The full GNU General Public License is included in this distribution
25 * in the file called COPYING.
27 * Contact Information:
28 * Intel Linux Wireless <ilw@linux.intel.com>
29 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
31 * BSD LICENSE
33 * Copyright(c) 2012 - 2013 Intel Corporation. All rights reserved.
34 * All rights reserved.
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
38 * are met:
40 * * Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * * Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in
44 * the documentation and/or other materials provided with the
45 * distribution.
46 * * Neither the name Intel Corporation nor the names of its
47 * contributors may be used to endorse or promote products derived
48 * from this software without specific prior written permission.
50 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
51 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
52 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
53 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
54 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
55 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
56 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
57 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
58 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
60 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
62 *****************************************************************************/
63 #include <net/mac80211.h>
65 #include "iwl-trans.h"
66 #include "iwl-op-mode.h"
67 #include "iwl-fw.h"
68 #include "iwl-debug.h"
69 #include "iwl-csr.h" /* for iwl_mvm_rx_card_state_notif */
70 #include "iwl-io.h" /* for iwl_mvm_rx_card_state_notif */
71 #include "iwl-eeprom-parse.h"
73 #include "mvm.h"
74 #include "iwl-phy-db.h"
76 #define MVM_UCODE_ALIVE_TIMEOUT HZ
77 #define MVM_UCODE_CALIB_TIMEOUT (2*HZ)
79 #define UCODE_VALID_OK cpu_to_le32(0x1)
81 /* Default calibration values for WkP - set to INIT image w/o running */
82 static const u8 wkp_calib_values_rx_iq_skew[] = { 0x00, 0x00, 0x01, 0x00 };
83 static const u8 wkp_calib_values_tx_iq_skew[] = { 0x01, 0x00, 0x00, 0x00 };
85 struct iwl_calib_default_data {
86 u16 size;
87 void *data;
90 #define CALIB_SIZE_N_DATA(_buf) {.size = sizeof(_buf), .data = &_buf}
92 static const struct iwl_calib_default_data wkp_calib_default_data[12] = {
93 [9] = CALIB_SIZE_N_DATA(wkp_calib_values_tx_iq_skew),
94 [11] = CALIB_SIZE_N_DATA(wkp_calib_values_rx_iq_skew),
97 struct iwl_mvm_alive_data {
98 bool valid;
99 u32 scd_base_addr;
102 static inline const struct fw_img *
103 iwl_get_ucode_image(struct iwl_mvm *mvm, enum iwl_ucode_type ucode_type)
105 if (ucode_type >= IWL_UCODE_TYPE_MAX)
106 return NULL;
108 return &mvm->fw->img[ucode_type];
111 static int iwl_send_tx_ant_cfg(struct iwl_mvm *mvm, u8 valid_tx_ant)
113 struct iwl_tx_ant_cfg_cmd tx_ant_cmd = {
114 .valid = cpu_to_le32(valid_tx_ant),
117 IWL_DEBUG_FW(mvm, "select valid tx ant: %u\n", valid_tx_ant);
118 return iwl_mvm_send_cmd_pdu(mvm, TX_ANT_CONFIGURATION_CMD, CMD_SYNC,
119 sizeof(tx_ant_cmd), &tx_ant_cmd);
122 static bool iwl_alive_fn(struct iwl_notif_wait_data *notif_wait,
123 struct iwl_rx_packet *pkt, void *data)
125 struct iwl_mvm *mvm =
126 container_of(notif_wait, struct iwl_mvm, notif_wait);
127 struct iwl_mvm_alive_data *alive_data = data;
128 struct mvm_alive_resp *palive;
130 palive = (void *)pkt->data;
132 mvm->error_event_table = le32_to_cpu(palive->error_event_table_ptr);
133 mvm->log_event_table = le32_to_cpu(palive->log_event_table_ptr);
134 alive_data->scd_base_addr = le32_to_cpu(palive->scd_base_ptr);
136 alive_data->valid = le16_to_cpu(palive->status) == IWL_ALIVE_STATUS_OK;
137 IWL_DEBUG_FW(mvm,
138 "Alive ucode status 0x%04x revision 0x%01X 0x%01X flags 0x%01X\n",
139 le16_to_cpu(palive->status), palive->ver_type,
140 palive->ver_subtype, palive->flags);
142 return true;
145 static bool iwl_wait_phy_db_entry(struct iwl_notif_wait_data *notif_wait,
146 struct iwl_rx_packet *pkt, void *data)
148 struct iwl_phy_db *phy_db = data;
150 if (pkt->hdr.cmd != CALIB_RES_NOTIF_PHY_DB) {
151 WARN_ON(pkt->hdr.cmd != INIT_COMPLETE_NOTIF);
152 return true;
155 WARN_ON(iwl_phy_db_set_section(phy_db, pkt, GFP_ATOMIC));
157 return false;
160 static int iwl_mvm_load_ucode_wait_alive(struct iwl_mvm *mvm,
161 enum iwl_ucode_type ucode_type)
163 struct iwl_notification_wait alive_wait;
164 struct iwl_mvm_alive_data alive_data;
165 const struct fw_img *fw;
166 int ret, i;
167 enum iwl_ucode_type old_type = mvm->cur_ucode;
168 static const u8 alive_cmd[] = { MVM_ALIVE };
170 mvm->cur_ucode = ucode_type;
171 fw = iwl_get_ucode_image(mvm, ucode_type);
173 mvm->ucode_loaded = false;
175 if (!fw)
176 return -EINVAL;
178 iwl_init_notification_wait(&mvm->notif_wait, &alive_wait,
179 alive_cmd, ARRAY_SIZE(alive_cmd),
180 iwl_alive_fn, &alive_data);
182 ret = iwl_trans_start_fw(mvm->trans, fw, ucode_type == IWL_UCODE_INIT);
183 if (ret) {
184 mvm->cur_ucode = old_type;
185 iwl_remove_notification(&mvm->notif_wait, &alive_wait);
186 return ret;
190 * Some things may run in the background now, but we
191 * just wait for the ALIVE notification here.
193 ret = iwl_wait_notification(&mvm->notif_wait, &alive_wait,
194 MVM_UCODE_ALIVE_TIMEOUT);
195 if (ret) {
196 mvm->cur_ucode = old_type;
197 return ret;
200 if (!alive_data.valid) {
201 IWL_ERR(mvm, "Loaded ucode is not valid!\n");
202 mvm->cur_ucode = old_type;
203 return -EIO;
206 iwl_trans_fw_alive(mvm->trans, alive_data.scd_base_addr);
209 * Note: all the queues are enabled as part of the interface
210 * initialization, but in firmware restart scenarios they
211 * could be stopped, so wake them up. In firmware restart,
212 * mac80211 will have the queues stopped as well until the
213 * reconfiguration completes. During normal startup, they
214 * will be empty.
217 for (i = 0; i < IWL_MAX_HW_QUEUES; i++) {
218 if (i < IWL_MVM_FIRST_AGG_QUEUE && i != IWL_MVM_CMD_QUEUE)
219 mvm->queue_to_mac80211[i] = i;
220 else
221 mvm->queue_to_mac80211[i] = IWL_INVALID_MAC80211_QUEUE;
222 atomic_set(&mvm->queue_stop_count[i], 0);
225 mvm->transport_queue_stop = 0;
227 mvm->ucode_loaded = true;
229 return 0;
232 static int iwl_send_phy_cfg_cmd(struct iwl_mvm *mvm)
234 struct iwl_phy_cfg_cmd phy_cfg_cmd;
235 enum iwl_ucode_type ucode_type = mvm->cur_ucode;
237 /* Set parameters */
238 phy_cfg_cmd.phy_cfg = cpu_to_le32(mvm->fw->phy_config);
239 phy_cfg_cmd.calib_control.event_trigger =
240 mvm->fw->default_calib[ucode_type].event_trigger;
241 phy_cfg_cmd.calib_control.flow_trigger =
242 mvm->fw->default_calib[ucode_type].flow_trigger;
244 IWL_DEBUG_INFO(mvm, "Sending Phy CFG command: 0x%x\n",
245 phy_cfg_cmd.phy_cfg);
247 return iwl_mvm_send_cmd_pdu(mvm, PHY_CONFIGURATION_CMD, CMD_SYNC,
248 sizeof(phy_cfg_cmd), &phy_cfg_cmd);
251 static int iwl_set_default_calibrations(struct iwl_mvm *mvm)
253 u8 cmd_raw[16]; /* holds the variable size commands */
254 struct iwl_set_calib_default_cmd *cmd =
255 (struct iwl_set_calib_default_cmd *)cmd_raw;
256 int ret, i;
258 /* Setting default values for calibrations we don't run */
259 for (i = 0; i < ARRAY_SIZE(wkp_calib_default_data); i++) {
260 u16 cmd_len;
262 if (wkp_calib_default_data[i].size == 0)
263 continue;
265 memset(cmd_raw, 0, sizeof(cmd_raw));
266 cmd_len = wkp_calib_default_data[i].size + sizeof(cmd);
267 cmd->calib_index = cpu_to_le16(i);
268 cmd->length = cpu_to_le16(wkp_calib_default_data[i].size);
269 if (WARN_ONCE(cmd_len > sizeof(cmd_raw),
270 "Need to enlarge cmd_raw to %d\n", cmd_len))
271 break;
272 memcpy(cmd->data, wkp_calib_default_data[i].data,
273 wkp_calib_default_data[i].size);
274 ret = iwl_mvm_send_cmd_pdu(mvm, SET_CALIB_DEFAULT_CMD, 0,
275 sizeof(*cmd) +
276 wkp_calib_default_data[i].size,
277 cmd);
278 if (ret)
279 return ret;
282 return 0;
285 int iwl_run_init_mvm_ucode(struct iwl_mvm *mvm, bool read_nvm)
287 struct iwl_notification_wait calib_wait;
288 static const u8 init_complete[] = {
289 INIT_COMPLETE_NOTIF,
290 CALIB_RES_NOTIF_PHY_DB
292 int ret;
294 lockdep_assert_held(&mvm->mutex);
296 if (mvm->init_ucode_run)
297 return 0;
299 iwl_init_notification_wait(&mvm->notif_wait,
300 &calib_wait,
301 init_complete,
302 ARRAY_SIZE(init_complete),
303 iwl_wait_phy_db_entry,
304 mvm->phy_db);
306 /* Will also start the device */
307 ret = iwl_mvm_load_ucode_wait_alive(mvm, IWL_UCODE_INIT);
308 if (ret) {
309 IWL_ERR(mvm, "Failed to start INIT ucode: %d\n", ret);
310 goto error;
313 ret = iwl_send_bt_prio_tbl(mvm);
314 if (ret)
315 goto error;
317 if (read_nvm) {
318 /* Read nvm */
319 ret = iwl_nvm_init(mvm);
320 if (ret) {
321 IWL_ERR(mvm, "Failed to read NVM: %d\n", ret);
322 goto error;
326 ret = iwl_nvm_check_version(mvm->nvm_data, mvm->trans);
327 WARN_ON(ret);
330 * abort after reading the nvm in case RF Kill is on, we will complete
331 * the init seq later when RF kill will switch to off
333 if (iwl_mvm_is_radio_killed(mvm)) {
334 IWL_DEBUG_RF_KILL(mvm,
335 "jump over all phy activities due to RF kill\n");
336 iwl_remove_notification(&mvm->notif_wait, &calib_wait);
337 return 1;
340 /* Send TX valid antennas before triggering calibrations */
341 ret = iwl_send_tx_ant_cfg(mvm, iwl_fw_valid_tx_ant(mvm->fw));
342 if (ret)
343 goto error;
345 /* need to set default values */
346 ret = iwl_set_default_calibrations(mvm);
347 if (ret)
348 goto error;
351 * Send phy configurations command to init uCode
352 * to start the 16.0 uCode init image internal calibrations.
354 ret = iwl_send_phy_cfg_cmd(mvm);
355 if (ret) {
356 IWL_ERR(mvm, "Failed to run INIT calibrations: %d\n",
357 ret);
358 goto error;
362 * Some things may run in the background now, but we
363 * just wait for the calibration complete notification.
365 ret = iwl_wait_notification(&mvm->notif_wait, &calib_wait,
366 MVM_UCODE_CALIB_TIMEOUT);
367 if (!ret)
368 mvm->init_ucode_run = true;
369 goto out;
371 error:
372 iwl_remove_notification(&mvm->notif_wait, &calib_wait);
373 out:
374 if (!iwlmvm_mod_params.init_dbg) {
375 iwl_trans_stop_device(mvm->trans);
376 } else if (!mvm->nvm_data) {
377 /* we want to debug INIT and we have no NVM - fake */
378 mvm->nvm_data = kzalloc(sizeof(struct iwl_nvm_data) +
379 sizeof(struct ieee80211_channel) +
380 sizeof(struct ieee80211_rate),
381 GFP_KERNEL);
382 if (!mvm->nvm_data)
383 return -ENOMEM;
384 mvm->nvm_data->valid_rx_ant = 1;
385 mvm->nvm_data->valid_tx_ant = 1;
386 mvm->nvm_data->bands[0].channels = mvm->nvm_data->channels;
387 mvm->nvm_data->bands[0].n_channels = 1;
388 mvm->nvm_data->bands[0].n_bitrates = 1;
389 mvm->nvm_data->bands[0].bitrates =
390 (void *)mvm->nvm_data->channels + 1;
391 mvm->nvm_data->bands[0].bitrates->hw_value = 10;
394 return ret;
397 #define UCODE_CALIB_TIMEOUT (2*HZ)
399 int iwl_mvm_up(struct iwl_mvm *mvm)
401 int ret, i;
402 struct ieee80211_channel *chan;
403 struct cfg80211_chan_def chandef;
405 lockdep_assert_held(&mvm->mutex);
407 ret = iwl_trans_start_hw(mvm->trans);
408 if (ret)
409 return ret;
411 /* If we were in RFKILL during module loading, load init ucode now */
412 if (!mvm->init_ucode_run) {
413 ret = iwl_run_init_mvm_ucode(mvm, false);
414 if (ret && !iwlmvm_mod_params.init_dbg) {
415 IWL_ERR(mvm, "Failed to run INIT ucode: %d\n", ret);
416 /* this can't happen */
417 if (WARN_ON(ret > 0))
418 ret = -ERFKILL;
419 goto error;
421 /* should stop & start HW since that INIT image just loaded */
422 iwl_trans_stop_hw(mvm->trans, false);
423 ret = iwl_trans_start_hw(mvm->trans);
424 if (ret)
425 return ret;
428 if (iwlmvm_mod_params.init_dbg)
429 return 0;
431 ret = iwl_mvm_load_ucode_wait_alive(mvm, IWL_UCODE_REGULAR);
432 if (ret) {
433 IWL_ERR(mvm, "Failed to start RT ucode: %d\n", ret);
434 goto error;
437 ret = iwl_send_tx_ant_cfg(mvm, iwl_fw_valid_tx_ant(mvm->fw));
438 if (ret)
439 goto error;
441 ret = iwl_send_bt_prio_tbl(mvm);
442 if (ret)
443 goto error;
445 ret = iwl_send_bt_init_conf(mvm);
446 if (ret)
447 goto error;
449 /* Send phy db control command and then phy db calibration*/
450 ret = iwl_send_phy_db_data(mvm->phy_db);
451 if (ret)
452 goto error;
454 ret = iwl_send_phy_cfg_cmd(mvm);
455 if (ret)
456 goto error;
458 /* init the fw <-> mac80211 STA mapping */
459 for (i = 0; i < IWL_MVM_STATION_COUNT; i++)
460 RCU_INIT_POINTER(mvm->fw_id_to_mac_id[i], NULL);
462 /* Add auxiliary station for scanning */
463 ret = iwl_mvm_add_aux_sta(mvm);
464 if (ret)
465 goto error;
467 /* Add all the PHY contexts */
468 chan = &mvm->hw->wiphy->bands[IEEE80211_BAND_2GHZ]->channels[0];
469 cfg80211_chandef_create(&chandef, chan, NL80211_CHAN_NO_HT);
470 for (i = 0; i < NUM_PHY_CTX; i++) {
472 * The channel used here isn't relevant as it's
473 * going to be overwritten in the other flows.
474 * For now use the first channel we have.
476 ret = iwl_mvm_phy_ctxt_add(mvm, &mvm->phy_ctxts[i],
477 &chandef, 1, 1);
478 if (ret)
479 goto error;
482 IWL_DEBUG_INFO(mvm, "RT uCode started.\n");
483 return 0;
484 error:
485 iwl_trans_stop_device(mvm->trans);
486 return ret;
489 int iwl_mvm_load_d3_fw(struct iwl_mvm *mvm)
491 int ret, i;
493 lockdep_assert_held(&mvm->mutex);
495 ret = iwl_trans_start_hw(mvm->trans);
496 if (ret)
497 return ret;
499 ret = iwl_mvm_load_ucode_wait_alive(mvm, IWL_UCODE_WOWLAN);
500 if (ret) {
501 IWL_ERR(mvm, "Failed to start WoWLAN firmware: %d\n", ret);
502 goto error;
505 ret = iwl_send_tx_ant_cfg(mvm, iwl_fw_valid_tx_ant(mvm->fw));
506 if (ret)
507 goto error;
509 /* Send phy db control command and then phy db calibration*/
510 ret = iwl_send_phy_db_data(mvm->phy_db);
511 if (ret)
512 goto error;
514 ret = iwl_send_phy_cfg_cmd(mvm);
515 if (ret)
516 goto error;
518 /* init the fw <-> mac80211 STA mapping */
519 for (i = 0; i < IWL_MVM_STATION_COUNT; i++)
520 RCU_INIT_POINTER(mvm->fw_id_to_mac_id[i], NULL);
522 /* Add auxiliary station for scanning */
523 ret = iwl_mvm_add_aux_sta(mvm);
524 if (ret)
525 goto error;
527 return 0;
528 error:
529 iwl_trans_stop_device(mvm->trans);
530 return ret;
533 int iwl_mvm_rx_card_state_notif(struct iwl_mvm *mvm,
534 struct iwl_rx_cmd_buffer *rxb,
535 struct iwl_device_cmd *cmd)
537 struct iwl_rx_packet *pkt = rxb_addr(rxb);
538 struct iwl_card_state_notif *card_state_notif = (void *)pkt->data;
539 u32 flags = le32_to_cpu(card_state_notif->flags);
541 IWL_DEBUG_RF_KILL(mvm, "Card state received: HW:%s SW:%s CT:%s\n",
542 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
543 (flags & SW_CARD_DISABLED) ? "Kill" : "On",
544 (flags & CT_KILL_CARD_DISABLED) ?
545 "Reached" : "Not reached");
547 return 0;
550 int iwl_mvm_rx_radio_ver(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
551 struct iwl_device_cmd *cmd)
553 struct iwl_rx_packet *pkt = rxb_addr(rxb);
554 struct iwl_radio_version_notif *radio_version = (void *)pkt->data;
556 /* TODO: what to do with that? */
557 IWL_DEBUG_INFO(mvm,
558 "Radio version: flavor: 0x%08x, step 0x%08x, dash 0x%08x\n",
559 le32_to_cpu(radio_version->radio_flavor),
560 le32_to_cpu(radio_version->radio_step),
561 le32_to_cpu(radio_version->radio_dash));
562 return 0;