2 * Intel Wireless Multicomm 3200 WiFi driver
4 * Copyright (C) 2009 Intel Corporation. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
14 * the documentation and/or other materials provided with the
16 * * Neither the name of Intel Corporation nor the names of its
17 * contributors may be used to endorse or promote products derived
18 * from this software without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 #include <linux/kernel.h>
40 #include <linux/netdevice.h>
41 #include <linux/ieee80211.h>
42 #include <linux/wireless.h>
53 static struct iwm_conf def_iwm_conf = {
55 .sdio_ior_timeout = 5000,
56 .calib_map = BIT(CALIB_CFG_DC_IDX) |
57 BIT(CALIB_CFG_LO_IDX) |
58 BIT(CALIB_CFG_TX_IQ_IDX) |
59 BIT(CALIB_CFG_RX_IQ_IDX) |
60 BIT(SHILOH_PHY_CALIBRATE_BASE_BAND_CMD),
61 .expected_calib_map = BIT(PHY_CALIBRATE_DC_CMD) |
62 BIT(PHY_CALIBRATE_LO_CMD) |
63 BIT(PHY_CALIBRATE_TX_IQ_CMD) |
64 BIT(PHY_CALIBRATE_RX_IQ_CMD) |
65 BIT(SHILOH_PHY_CALIBRATE_BASE_BAND_CMD),
66 .reset_on_fatal_err = 1,
68 .wimax_not_present = 0,
70 .mode = UMAC_MODE_BSS,
72 /* UMAC configuration */
74 .frag_threshold = IEEE80211_MAX_FRAG_THRESHOLD,
75 .rts_threshold = IEEE80211_MAX_RTS_THRESHOLD,
80 .wireless_mode = WIRELESS_MODE_11A | WIRELESS_MODE_11G,
81 .coexist_mode = COEX_MODE_CM,
84 .ibss_band = UMAC_BAND_2GHZ,
87 .mac_addr = {0x00, 0x02, 0xb3, 0x01, 0x02, 0x03},
90 static int modparam_reset;
91 module_param_named(reset, modparam_reset, bool, 0644);
92 MODULE_PARM_DESC(reset, "reset on firmware errors (default 0 [not reset])");
94 int iwm_mode_to_nl80211_iftype(int mode)
98 return NL80211_IFTYPE_STATION;
100 return NL80211_IFTYPE_ADHOC;
102 return NL80211_IFTYPE_UNSPECIFIED;
108 static void iwm_statistics_request(struct work_struct *work)
110 struct iwm_priv *iwm =
111 container_of(work, struct iwm_priv, stats_request.work);
113 iwm_send_umac_stats_req(iwm, 0);
116 static void iwm_disconnect_work(struct work_struct *work)
118 struct iwm_priv *iwm =
119 container_of(work, struct iwm_priv, disconnect.work);
121 if (iwm->umac_profile_active)
122 iwm_invalidate_mlme_profile(iwm);
124 clear_bit(IWM_STATUS_ASSOCIATED, &iwm->status);
125 iwm->umac_profile_active = 0;
126 memset(iwm->bssid, 0, ETH_ALEN);
131 wake_up_interruptible(&iwm->mlme_queue);
133 cfg80211_disconnected(iwm_to_ndev(iwm), 0, NULL, 0, GFP_KERNEL);
136 static int __iwm_up(struct iwm_priv *iwm);
137 static int __iwm_down(struct iwm_priv *iwm);
139 static void iwm_reset_worker(struct work_struct *work)
141 struct iwm_priv *iwm;
142 struct iwm_umac_profile *profile = NULL;
143 int uninitialized_var(ret), retry = 0;
145 iwm = container_of(work, struct iwm_priv, reset_worker);
148 * XXX: The iwm->mutex is introduced purely for this reset work,
149 * because the other users for iwm_up and iwm_down are only netdev
150 * ndo_open and ndo_stop which are already protected by rtnl.
151 * Please remove iwm->mutex together if iwm_reset_worker() is not
152 * required in the future.
154 if (!mutex_trylock(&iwm->mutex)) {
155 IWM_WARN(iwm, "We are in the middle of interface bringing "
156 "UP/DOWN. Skip driver resetting.\n");
160 if (iwm->umac_profile_active) {
161 profile = kmalloc(sizeof(struct iwm_umac_profile), GFP_KERNEL);
163 memcpy(profile, iwm->umac_profile, sizeof(*profile));
165 IWM_ERR(iwm, "Couldn't alloc memory for profile\n");
170 while (retry++ < 3) {
175 schedule_timeout_uninterruptible(10 * HZ);
179 IWM_WARN(iwm, "iwm_up() failed: %d\n", ret);
186 IWM_DBG_MLME(iwm, DBG, "Resend UMAC profile\n");
187 memcpy(iwm->umac_profile, profile, sizeof(*profile));
188 iwm_send_mlme_profile(iwm);
191 clear_bit(IWM_STATUS_RESETTING, &iwm->status);
194 mutex_unlock(&iwm->mutex);
197 static void iwm_watchdog(unsigned long data)
199 struct iwm_priv *iwm = (struct iwm_priv *)data;
201 IWM_WARN(iwm, "Watchdog expired: UMAC stalls!\n");
207 int iwm_priv_init(struct iwm_priv *iwm)
213 INIT_LIST_HEAD(&iwm->pending_notif);
214 init_waitqueue_head(&iwm->notif_queue);
215 init_waitqueue_head(&iwm->nonwifi_queue);
216 init_waitqueue_head(&iwm->wifi_ntfy_queue);
217 init_waitqueue_head(&iwm->mlme_queue);
218 memcpy(&iwm->conf, &def_iwm_conf, sizeof(struct iwm_conf));
219 spin_lock_init(&iwm->tx_credit.lock);
220 INIT_LIST_HEAD(&iwm->wifi_pending_cmd);
221 INIT_LIST_HEAD(&iwm->nonwifi_pending_cmd);
222 iwm->wifi_seq_num = UMAC_WIFI_SEQ_NUM_BASE;
223 iwm->nonwifi_seq_num = UMAC_NONWIFI_SEQ_NUM_BASE;
224 spin_lock_init(&iwm->cmd_lock);
226 INIT_DELAYED_WORK(&iwm->stats_request, iwm_statistics_request);
227 INIT_DELAYED_WORK(&iwm->disconnect, iwm_disconnect_work);
228 INIT_WORK(&iwm->reset_worker, iwm_reset_worker);
229 INIT_LIST_HEAD(&iwm->bss_list);
231 skb_queue_head_init(&iwm->rx_list);
232 INIT_LIST_HEAD(&iwm->rx_tickets);
233 for (i = 0; i < IWM_RX_ID_HASH; i++)
234 INIT_LIST_HEAD(&iwm->rx_packets[i]);
236 INIT_WORK(&iwm->rx_worker, iwm_rx_worker);
238 iwm->rx_wq = create_singlethread_workqueue(KBUILD_MODNAME "_rx");
242 for (i = 0; i < IWM_TX_QUEUES; i++) {
243 INIT_WORK(&iwm->txq[i].worker, iwm_tx_worker);
244 snprintf(name, 32, KBUILD_MODNAME "_tx_%d", i);
246 iwm->txq[i].wq = create_singlethread_workqueue(name);
250 skb_queue_head_init(&iwm->txq[i].queue);
253 for (i = 0; i < IWM_NUM_KEYS; i++)
254 memset(&iwm->keys[i], 0, sizeof(struct iwm_key));
256 iwm->default_key = -1;
258 init_timer(&iwm->watchdog);
259 iwm->watchdog.function = iwm_watchdog;
260 iwm->watchdog.data = (unsigned long)iwm;
261 mutex_init(&iwm->mutex);
266 void iwm_priv_deinit(struct iwm_priv *iwm)
270 for (i = 0; i < IWM_TX_QUEUES; i++)
271 destroy_workqueue(iwm->txq[i].wq);
273 destroy_workqueue(iwm->rx_wq);
277 * We reset all the structures, and we reset the UMAC.
278 * After calling this routine, you're expected to reload
281 void iwm_reset(struct iwm_priv *iwm)
283 struct iwm_notif *notif, *next;
285 if (test_bit(IWM_STATUS_READY, &iwm->status))
286 iwm_target_reset(iwm);
288 if (test_bit(IWM_STATUS_RESETTING, &iwm->status)) {
290 set_bit(IWM_STATUS_RESETTING, &iwm->status);
295 list_for_each_entry_safe(notif, next, &iwm->pending_notif, pending) {
296 list_del(¬if->pending);
303 flush_workqueue(iwm->rx_wq);
308 void iwm_resetting(struct iwm_priv *iwm)
310 set_bit(IWM_STATUS_RESETTING, &iwm->status);
312 schedule_work(&iwm->reset_worker);
318 * We're faced with the following issue: Any host command can
319 * have an answer or not, and if there's an answer to expect,
320 * it can be treated synchronously or asynchronously.
321 * To work around the synchronous answer case, we implemented
322 * our notification mechanism.
323 * When a code path needs to wait for a command response
324 * synchronously, it calls notif_handle(), which waits for the
325 * right notification to show up, and then process it. Before
326 * starting to wait, it registered as a waiter for this specific
327 * answer (by toggling a bit in on of the handler_map), so that
328 * the rx code knows that it needs to send a notification to the
329 * waiting processes. It does so by calling iwm_notif_send(),
330 * which adds the notification to the pending notifications list,
331 * and then wakes the waiting processes up.
333 int iwm_notif_send(struct iwm_priv *iwm, struct iwm_wifi_cmd *cmd,
334 u8 cmd_id, u8 source, u8 *buf, unsigned long buf_size)
336 struct iwm_notif *notif;
338 notif = kzalloc(sizeof(struct iwm_notif), GFP_KERNEL);
340 IWM_ERR(iwm, "Couldn't alloc memory for notification\n");
344 INIT_LIST_HEAD(¬if->pending);
346 notif->cmd_id = cmd_id;
348 notif->buf = kzalloc(buf_size, GFP_KERNEL);
350 IWM_ERR(iwm, "Couldn't alloc notification buffer\n");
354 notif->buf_size = buf_size;
355 memcpy(notif->buf, buf, buf_size);
356 list_add_tail(¬if->pending, &iwm->pending_notif);
358 wake_up_interruptible(&iwm->notif_queue);
363 static struct iwm_notif *iwm_notif_find(struct iwm_priv *iwm, u32 cmd,
366 struct iwm_notif *notif, *next;
368 list_for_each_entry_safe(notif, next, &iwm->pending_notif, pending) {
369 if ((notif->cmd_id == cmd) && (notif->src == source)) {
370 list_del(¬if->pending);
378 static struct iwm_notif *iwm_notif_wait(struct iwm_priv *iwm, u32 cmd,
379 u8 source, long timeout)
382 struct iwm_notif *notif;
383 unsigned long *map = NULL;
387 map = &iwm->lmac_handler_map[0];
390 map = &iwm->umac_handler_map[0];
393 map = &iwm->udma_handler_map[0];
399 ret = wait_event_interruptible_timeout(iwm->notif_queue,
400 ((notif = iwm_notif_find(iwm, cmd, source)) != NULL),
410 int iwm_notif_handle(struct iwm_priv *iwm, u32 cmd, u8 source, long timeout)
413 struct iwm_notif *notif;
415 notif = iwm_notif_wait(iwm, cmd, source, timeout);
419 ret = iwm_rx_handle_resp(iwm, notif->buf, notif->buf_size, notif->cmd);
426 static int iwm_config_boot_params(struct iwm_priv *iwm)
428 struct iwm_udma_nonwifi_cmd target_cmd;
431 /* check Wimax is off and config debug monitor */
432 if (iwm->conf.wimax_not_present) {
434 u32 addr1 = 0x606BE258;
438 u32 addr2 = 0x606BE100;
441 u32 addr3 = 0x606BEC00;
444 target_cmd.handle_by_hw = 0;
447 target_cmd.opcode = UMAC_HDI_OUT_OPCODE_WRITE;
448 target_cmd.addr = cpu_to_le32(addr1);
449 target_cmd.op1_sz = cpu_to_le32(sizeof(u32));
452 ret = iwm_hal_send_target_cmd(iwm, &target_cmd, &data1);
454 IWM_ERR(iwm, "iwm_hal_send_target_cmd failed\n");
458 target_cmd.opcode = UMAC_HDI_OUT_OPCODE_READ_MODIFY_WRITE;
459 target_cmd.addr = cpu_to_le32(addr2);
460 target_cmd.op1_sz = cpu_to_le32(data2_set);
461 target_cmd.op2 = cpu_to_le32(data2_clr);
463 ret = iwm_hal_send_target_cmd(iwm, &target_cmd, &data1);
465 IWM_ERR(iwm, "iwm_hal_send_target_cmd failed\n");
469 target_cmd.opcode = UMAC_HDI_OUT_OPCODE_WRITE;
470 target_cmd.addr = cpu_to_le32(addr3);
471 target_cmd.op1_sz = cpu_to_le32(sizeof(u32));
474 ret = iwm_hal_send_target_cmd(iwm, &target_cmd, &data3);
476 IWM_ERR(iwm, "iwm_hal_send_target_cmd failed\n");
484 void iwm_init_default_profile(struct iwm_priv *iwm,
485 struct iwm_umac_profile *profile)
487 memset(profile, 0, sizeof(struct iwm_umac_profile));
489 profile->sec.auth_type = UMAC_AUTH_TYPE_OPEN;
490 profile->sec.flags = UMAC_SEC_FLG_LEGACY_PROFILE;
491 profile->sec.ucast_cipher = UMAC_CIPHER_TYPE_NONE;
492 profile->sec.mcast_cipher = UMAC_CIPHER_TYPE_NONE;
494 if (iwm->conf.enable_qos)
495 profile->flags |= cpu_to_le16(UMAC_PROFILE_QOS_ALLOWED);
497 profile->wireless_mode = iwm->conf.wireless_mode;
498 profile->mode = cpu_to_le32(iwm->conf.mode);
500 profile->ibss.atim = 0;
501 profile->ibss.beacon_interval = 100;
502 profile->ibss.join_only = 0;
503 profile->ibss.band = iwm->conf.ibss_band;
504 profile->ibss.channel = iwm->conf.ibss_channel;
507 void iwm_link_on(struct iwm_priv *iwm)
509 netif_carrier_on(iwm_to_ndev(iwm));
510 netif_tx_wake_all_queues(iwm_to_ndev(iwm));
512 iwm_send_umac_stats_req(iwm, 0);
515 void iwm_link_off(struct iwm_priv *iwm)
517 struct iw_statistics *wstats = &iwm->wstats;
520 netif_tx_stop_all_queues(iwm_to_ndev(iwm));
521 netif_carrier_off(iwm_to_ndev(iwm));
523 for (i = 0; i < IWM_TX_QUEUES; i++) {
524 skb_queue_purge(&iwm->txq[i].queue);
526 iwm->txq[i].concat_count = 0;
527 iwm->txq[i].concat_ptr = iwm->txq[i].concat_buf;
529 flush_workqueue(iwm->txq[i].wq);
534 cancel_delayed_work_sync(&iwm->stats_request);
535 memset(wstats, 0, sizeof(struct iw_statistics));
536 wstats->qual.updated = IW_QUAL_ALL_INVALID;
543 iwm->resp_ie_len = 0;
545 del_timer_sync(&iwm->watchdog);
548 static void iwm_bss_list_clean(struct iwm_priv *iwm)
550 struct iwm_bss_info *bss, *next;
552 list_for_each_entry_safe(bss, next, &iwm->bss_list, node) {
553 list_del(&bss->node);
559 static int iwm_channels_init(struct iwm_priv *iwm)
563 ret = iwm_send_umac_channel_list(iwm);
565 IWM_ERR(iwm, "Send channel list failed\n");
569 ret = iwm_notif_handle(iwm, UMAC_CMD_OPCODE_GET_CHAN_INFO_LIST,
570 IWM_SRC_UMAC, WAIT_NOTIF_TIMEOUT);
572 IWM_ERR(iwm, "Didn't get a channel list notification\n");
579 static int __iwm_up(struct iwm_priv *iwm)
582 struct iwm_notif *notif_reboot, *notif_ack = NULL;
584 ret = iwm_bus_enable(iwm);
586 IWM_ERR(iwm, "Couldn't enable function\n");
590 iwm_rx_setup_handlers(iwm);
592 /* Wait for initial BARKER_REBOOT from hardware */
593 notif_reboot = iwm_notif_wait(iwm, IWM_BARKER_REBOOT_NOTIFICATION,
594 IWM_SRC_UDMA, 2 * HZ);
596 IWM_ERR(iwm, "Wait for REBOOT_BARKER timeout\n");
600 /* We send the barker back */
601 ret = iwm_bus_send_chunk(iwm, notif_reboot->buf, 16);
603 IWM_ERR(iwm, "REBOOT barker response failed\n");
608 kfree(notif_reboot->buf);
611 /* Wait for ACK_BARKER from hardware */
612 notif_ack = iwm_notif_wait(iwm, IWM_ACK_BARKER_NOTIFICATION,
613 IWM_SRC_UDMA, 2 * HZ);
615 IWM_ERR(iwm, "Wait for ACK_BARKER timeout\n");
619 kfree(notif_ack->buf);
622 /* We start to config static boot parameters */
623 ret = iwm_config_boot_params(iwm);
625 IWM_ERR(iwm, "Config boot parameters failed\n");
629 ret = iwm_read_mac(iwm, iwm_to_ndev(iwm)->dev_addr);
631 IWM_ERR(iwm, "MAC reading failed\n");
635 /* We can load the FWs */
636 ret = iwm_load_fw(iwm);
638 IWM_ERR(iwm, "FW loading failed\n");
642 /* We configure the UMAC and enable the wifi module */
643 ret = iwm_send_umac_config(iwm,
644 cpu_to_le32(UMAC_RST_CTRL_FLG_WIFI_CORE_EN) |
645 cpu_to_le32(UMAC_RST_CTRL_FLG_WIFI_LINK_EN) |
646 cpu_to_le32(UMAC_RST_CTRL_FLG_WIFI_MLME_EN));
648 IWM_ERR(iwm, "UMAC config failed\n");
652 ret = iwm_notif_handle(iwm, UMAC_NOTIFY_OPCODE_WIFI_CORE_STATUS,
653 IWM_SRC_UMAC, WAIT_NOTIF_TIMEOUT);
655 IWM_ERR(iwm, "Didn't get a wifi core status notification\n");
659 if (iwm->core_enabled != (UMAC_NTFY_WIFI_CORE_STATUS_LINK_EN |
660 UMAC_NTFY_WIFI_CORE_STATUS_MLME_EN)) {
661 IWM_DBG_BOOT(iwm, DBG, "Not all cores enabled:0x%x\n",
663 ret = iwm_notif_handle(iwm, UMAC_NOTIFY_OPCODE_WIFI_CORE_STATUS,
664 IWM_SRC_UMAC, WAIT_NOTIF_TIMEOUT);
666 IWM_ERR(iwm, "Didn't get a core status notification\n");
670 if (iwm->core_enabled != (UMAC_NTFY_WIFI_CORE_STATUS_LINK_EN |
671 UMAC_NTFY_WIFI_CORE_STATUS_MLME_EN)) {
672 IWM_ERR(iwm, "Not all cores enabled: 0x%x\n",
676 IWM_INFO(iwm, "All cores enabled\n");
680 ret = iwm_channels_init(iwm);
682 IWM_ERR(iwm, "Couldn't init channels\n");
686 /* Set the READY bit to indicate interface is brought up successfully */
687 set_bit(IWM_STATUS_READY, &iwm->status);
692 iwm_eeprom_exit(iwm);
695 ret = iwm_bus_disable(iwm);
697 IWM_ERR(iwm, "Couldn't disable function\n");
702 int iwm_up(struct iwm_priv *iwm)
706 mutex_lock(&iwm->mutex);
708 mutex_unlock(&iwm->mutex);
713 static int __iwm_down(struct iwm_priv *iwm)
717 /* The interface is already down */
718 if (!test_bit(IWM_STATUS_READY, &iwm->status))
721 if (iwm->scan_request) {
722 cfg80211_scan_done(iwm->scan_request, true);
723 iwm->scan_request = NULL;
726 clear_bit(IWM_STATUS_READY, &iwm->status);
728 iwm_eeprom_exit(iwm);
729 iwm_bss_list_clean(iwm);
730 iwm_init_default_profile(iwm, iwm->umac_profile);
731 iwm->umac_profile_active = false;
732 iwm->default_key = -1;
733 iwm->core_enabled = 0;
735 ret = iwm_bus_disable(iwm);
737 IWM_ERR(iwm, "Couldn't disable function\n");
744 int iwm_down(struct iwm_priv *iwm)
748 mutex_lock(&iwm->mutex);
749 ret = __iwm_down(iwm);
750 mutex_unlock(&iwm->mutex);