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.
33 * Intel Corporation <ilw@linux.intel.com>
34 * Samuel Ortiz <samuel.ortiz@intel.com>
35 * Zhu Yi <yi.zhu@intel.com>
39 #include <linux/kernel.h>
40 #include <linux/netdevice.h>
41 #include <linux/sched.h>
42 #include <linux/ieee80211.h>
43 #include <linux/wireless.h>
54 static struct iwm_conf def_iwm_conf
= {
56 .sdio_ior_timeout
= 5000,
57 .calib_map
= BIT(CALIB_CFG_DC_IDX
) |
58 BIT(CALIB_CFG_LO_IDX
) |
59 BIT(CALIB_CFG_TX_IQ_IDX
) |
60 BIT(CALIB_CFG_RX_IQ_IDX
) |
61 BIT(SHILOH_PHY_CALIBRATE_BASE_BAND_CMD
),
62 .expected_calib_map
= BIT(PHY_CALIBRATE_DC_CMD
) |
63 BIT(PHY_CALIBRATE_LO_CMD
) |
64 BIT(PHY_CALIBRATE_TX_IQ_CMD
) |
65 BIT(PHY_CALIBRATE_RX_IQ_CMD
) |
66 BIT(SHILOH_PHY_CALIBRATE_BASE_BAND_CMD
),
67 .reset_on_fatal_err
= 1,
69 .wimax_not_present
= 0,
71 .mode
= UMAC_MODE_BSS
,
73 /* UMAC configuration */
75 .frag_threshold
= IEEE80211_MAX_FRAG_THRESHOLD
,
76 .rts_threshold
= IEEE80211_MAX_RTS_THRESHOLD
,
81 .wireless_mode
= WIRELESS_MODE_11A
| WIRELESS_MODE_11G
,
82 .coexist_mode
= COEX_MODE_CM
,
85 .ibss_band
= UMAC_BAND_2GHZ
,
88 .mac_addr
= {0x00, 0x02, 0xb3, 0x01, 0x02, 0x03},
91 static int modparam_reset
;
92 module_param_named(reset
, modparam_reset
, bool, 0644);
93 MODULE_PARM_DESC(reset
, "reset on firmware errors (default 0 [not reset])");
95 int iwm_mode_to_nl80211_iftype(int mode
)
99 return NL80211_IFTYPE_STATION
;
101 return NL80211_IFTYPE_ADHOC
;
103 return NL80211_IFTYPE_UNSPECIFIED
;
109 static void iwm_statistics_request(struct work_struct
*work
)
111 struct iwm_priv
*iwm
=
112 container_of(work
, struct iwm_priv
, stats_request
.work
);
114 iwm_send_umac_stats_req(iwm
, 0);
117 static void iwm_disconnect_work(struct work_struct
*work
)
119 struct iwm_priv
*iwm
=
120 container_of(work
, struct iwm_priv
, disconnect
.work
);
122 if (iwm
->umac_profile_active
)
123 iwm_invalidate_mlme_profile(iwm
);
125 clear_bit(IWM_STATUS_ASSOCIATED
, &iwm
->status
);
126 iwm
->umac_profile_active
= 0;
127 memset(iwm
->bssid
, 0, ETH_ALEN
);
132 wake_up_interruptible(&iwm
->mlme_queue
);
134 cfg80211_disconnected(iwm_to_ndev(iwm
), 0, NULL
, 0, GFP_KERNEL
);
137 static int __iwm_up(struct iwm_priv
*iwm
);
138 static int __iwm_down(struct iwm_priv
*iwm
);
140 static void iwm_reset_worker(struct work_struct
*work
)
142 struct iwm_priv
*iwm
;
143 struct iwm_umac_profile
*profile
= NULL
;
144 int uninitialized_var(ret
), retry
= 0;
146 iwm
= container_of(work
, struct iwm_priv
, reset_worker
);
149 * XXX: The iwm->mutex is introduced purely for this reset work,
150 * because the other users for iwm_up and iwm_down are only netdev
151 * ndo_open and ndo_stop which are already protected by rtnl.
152 * Please remove iwm->mutex together if iwm_reset_worker() is not
153 * required in the future.
155 if (!mutex_trylock(&iwm
->mutex
)) {
156 IWM_WARN(iwm
, "We are in the middle of interface bringing "
157 "UP/DOWN. Skip driver resetting.\n");
161 if (iwm
->umac_profile_active
) {
162 profile
= kmalloc(sizeof(struct iwm_umac_profile
), GFP_KERNEL
);
164 memcpy(profile
, iwm
->umac_profile
, sizeof(*profile
));
166 IWM_ERR(iwm
, "Couldn't alloc memory for profile\n");
171 while (retry
++ < 3) {
176 schedule_timeout_uninterruptible(10 * HZ
);
180 IWM_WARN(iwm
, "iwm_up() failed: %d\n", ret
);
187 IWM_DBG_MLME(iwm
, DBG
, "Resend UMAC profile\n");
188 memcpy(iwm
->umac_profile
, profile
, sizeof(*profile
));
189 iwm_send_mlme_profile(iwm
);
192 clear_bit(IWM_STATUS_RESETTING
, &iwm
->status
);
195 mutex_unlock(&iwm
->mutex
);
198 static void iwm_watchdog(unsigned long data
)
200 struct iwm_priv
*iwm
= (struct iwm_priv
*)data
;
202 IWM_WARN(iwm
, "Watchdog expired: UMAC stalls!\n");
208 int iwm_priv_init(struct iwm_priv
*iwm
)
214 INIT_LIST_HEAD(&iwm
->pending_notif
);
215 init_waitqueue_head(&iwm
->notif_queue
);
216 init_waitqueue_head(&iwm
->nonwifi_queue
);
217 init_waitqueue_head(&iwm
->wifi_ntfy_queue
);
218 init_waitqueue_head(&iwm
->mlme_queue
);
219 memcpy(&iwm
->conf
, &def_iwm_conf
, sizeof(struct iwm_conf
));
220 spin_lock_init(&iwm
->tx_credit
.lock
);
221 INIT_LIST_HEAD(&iwm
->wifi_pending_cmd
);
222 INIT_LIST_HEAD(&iwm
->nonwifi_pending_cmd
);
223 iwm
->wifi_seq_num
= UMAC_WIFI_SEQ_NUM_BASE
;
224 iwm
->nonwifi_seq_num
= UMAC_NONWIFI_SEQ_NUM_BASE
;
225 spin_lock_init(&iwm
->cmd_lock
);
227 INIT_DELAYED_WORK(&iwm
->stats_request
, iwm_statistics_request
);
228 INIT_DELAYED_WORK(&iwm
->disconnect
, iwm_disconnect_work
);
229 INIT_WORK(&iwm
->reset_worker
, iwm_reset_worker
);
230 INIT_LIST_HEAD(&iwm
->bss_list
);
232 skb_queue_head_init(&iwm
->rx_list
);
233 INIT_LIST_HEAD(&iwm
->rx_tickets
);
234 for (i
= 0; i
< IWM_RX_ID_HASH
; i
++)
235 INIT_LIST_HEAD(&iwm
->rx_packets
[i
]);
237 INIT_WORK(&iwm
->rx_worker
, iwm_rx_worker
);
239 iwm
->rx_wq
= create_singlethread_workqueue(KBUILD_MODNAME
"_rx");
243 for (i
= 0; i
< IWM_TX_QUEUES
; i
++) {
244 INIT_WORK(&iwm
->txq
[i
].worker
, iwm_tx_worker
);
245 snprintf(name
, 32, KBUILD_MODNAME
"_tx_%d", i
);
247 iwm
->txq
[i
].wq
= create_singlethread_workqueue(name
);
251 skb_queue_head_init(&iwm
->txq
[i
].queue
);
254 for (i
= 0; i
< IWM_NUM_KEYS
; i
++)
255 memset(&iwm
->keys
[i
], 0, sizeof(struct iwm_key
));
257 iwm
->default_key
= -1;
259 init_timer(&iwm
->watchdog
);
260 iwm
->watchdog
.function
= iwm_watchdog
;
261 iwm
->watchdog
.data
= (unsigned long)iwm
;
262 mutex_init(&iwm
->mutex
);
264 iwm
->last_fw_err
= kzalloc(sizeof(struct iwm_fw_error_hdr
),
266 if (iwm
->last_fw_err
== NULL
)
272 void iwm_priv_deinit(struct iwm_priv
*iwm
)
276 for (i
= 0; i
< IWM_TX_QUEUES
; i
++)
277 destroy_workqueue(iwm
->txq
[i
].wq
);
279 destroy_workqueue(iwm
->rx_wq
);
280 kfree(iwm
->last_fw_err
);
284 * We reset all the structures, and we reset the UMAC.
285 * After calling this routine, you're expected to reload
288 void iwm_reset(struct iwm_priv
*iwm
)
290 struct iwm_notif
*notif
, *next
;
292 if (test_bit(IWM_STATUS_READY
, &iwm
->status
))
293 iwm_target_reset(iwm
);
295 if (test_bit(IWM_STATUS_RESETTING
, &iwm
->status
)) {
297 set_bit(IWM_STATUS_RESETTING
, &iwm
->status
);
302 list_for_each_entry_safe(notif
, next
, &iwm
->pending_notif
, pending
) {
303 list_del(¬if
->pending
);
310 flush_workqueue(iwm
->rx_wq
);
315 void iwm_resetting(struct iwm_priv
*iwm
)
317 set_bit(IWM_STATUS_RESETTING
, &iwm
->status
);
319 schedule_work(&iwm
->reset_worker
);
325 * We're faced with the following issue: Any host command can
326 * have an answer or not, and if there's an answer to expect,
327 * it can be treated synchronously or asynchronously.
328 * To work around the synchronous answer case, we implemented
329 * our notification mechanism.
330 * When a code path needs to wait for a command response
331 * synchronously, it calls notif_handle(), which waits for the
332 * right notification to show up, and then process it. Before
333 * starting to wait, it registered as a waiter for this specific
334 * answer (by toggling a bit in on of the handler_map), so that
335 * the rx code knows that it needs to send a notification to the
336 * waiting processes. It does so by calling iwm_notif_send(),
337 * which adds the notification to the pending notifications list,
338 * and then wakes the waiting processes up.
340 int iwm_notif_send(struct iwm_priv
*iwm
, struct iwm_wifi_cmd
*cmd
,
341 u8 cmd_id
, u8 source
, u8
*buf
, unsigned long buf_size
)
343 struct iwm_notif
*notif
;
345 notif
= kzalloc(sizeof(struct iwm_notif
), GFP_KERNEL
);
347 IWM_ERR(iwm
, "Couldn't alloc memory for notification\n");
351 INIT_LIST_HEAD(¬if
->pending
);
353 notif
->cmd_id
= cmd_id
;
355 notif
->buf
= kzalloc(buf_size
, GFP_KERNEL
);
357 IWM_ERR(iwm
, "Couldn't alloc notification buffer\n");
361 notif
->buf_size
= buf_size
;
362 memcpy(notif
->buf
, buf
, buf_size
);
363 list_add_tail(¬if
->pending
, &iwm
->pending_notif
);
365 wake_up_interruptible(&iwm
->notif_queue
);
370 static struct iwm_notif
*iwm_notif_find(struct iwm_priv
*iwm
, u32 cmd
,
373 struct iwm_notif
*notif
, *next
;
375 list_for_each_entry_safe(notif
, next
, &iwm
->pending_notif
, pending
) {
376 if ((notif
->cmd_id
== cmd
) && (notif
->src
== source
)) {
377 list_del(¬if
->pending
);
385 static struct iwm_notif
*iwm_notif_wait(struct iwm_priv
*iwm
, u32 cmd
,
386 u8 source
, long timeout
)
389 struct iwm_notif
*notif
;
390 unsigned long *map
= NULL
;
394 map
= &iwm
->lmac_handler_map
[0];
397 map
= &iwm
->umac_handler_map
[0];
400 map
= &iwm
->udma_handler_map
[0];
406 ret
= wait_event_interruptible_timeout(iwm
->notif_queue
,
407 ((notif
= iwm_notif_find(iwm
, cmd
, source
)) != NULL
),
417 int iwm_notif_handle(struct iwm_priv
*iwm
, u32 cmd
, u8 source
, long timeout
)
420 struct iwm_notif
*notif
;
422 notif
= iwm_notif_wait(iwm
, cmd
, source
, timeout
);
426 ret
= iwm_rx_handle_resp(iwm
, notif
->buf
, notif
->buf_size
, notif
->cmd
);
433 static int iwm_config_boot_params(struct iwm_priv
*iwm
)
435 struct iwm_udma_nonwifi_cmd target_cmd
;
438 /* check Wimax is off and config debug monitor */
439 if (iwm
->conf
.wimax_not_present
) {
441 u32 addr1
= 0x606BE258;
445 u32 addr2
= 0x606BE100;
448 u32 addr3
= 0x606BEC00;
451 target_cmd
.handle_by_hw
= 0;
454 target_cmd
.opcode
= UMAC_HDI_OUT_OPCODE_WRITE
;
455 target_cmd
.addr
= cpu_to_le32(addr1
);
456 target_cmd
.op1_sz
= cpu_to_le32(sizeof(u32
));
459 ret
= iwm_hal_send_target_cmd(iwm
, &target_cmd
, &data1
);
461 IWM_ERR(iwm
, "iwm_hal_send_target_cmd failed\n");
465 target_cmd
.opcode
= UMAC_HDI_OUT_OPCODE_READ_MODIFY_WRITE
;
466 target_cmd
.addr
= cpu_to_le32(addr2
);
467 target_cmd
.op1_sz
= cpu_to_le32(data2_set
);
468 target_cmd
.op2
= cpu_to_le32(data2_clr
);
470 ret
= iwm_hal_send_target_cmd(iwm
, &target_cmd
, &data1
);
472 IWM_ERR(iwm
, "iwm_hal_send_target_cmd failed\n");
476 target_cmd
.opcode
= UMAC_HDI_OUT_OPCODE_WRITE
;
477 target_cmd
.addr
= cpu_to_le32(addr3
);
478 target_cmd
.op1_sz
= cpu_to_le32(sizeof(u32
));
481 ret
= iwm_hal_send_target_cmd(iwm
, &target_cmd
, &data3
);
483 IWM_ERR(iwm
, "iwm_hal_send_target_cmd failed\n");
491 void iwm_init_default_profile(struct iwm_priv
*iwm
,
492 struct iwm_umac_profile
*profile
)
494 memset(profile
, 0, sizeof(struct iwm_umac_profile
));
496 profile
->sec
.auth_type
= UMAC_AUTH_TYPE_OPEN
;
497 profile
->sec
.flags
= UMAC_SEC_FLG_LEGACY_PROFILE
;
498 profile
->sec
.ucast_cipher
= UMAC_CIPHER_TYPE_NONE
;
499 profile
->sec
.mcast_cipher
= UMAC_CIPHER_TYPE_NONE
;
501 if (iwm
->conf
.enable_qos
)
502 profile
->flags
|= cpu_to_le16(UMAC_PROFILE_QOS_ALLOWED
);
504 profile
->wireless_mode
= iwm
->conf
.wireless_mode
;
505 profile
->mode
= cpu_to_le32(iwm
->conf
.mode
);
507 profile
->ibss
.atim
= 0;
508 profile
->ibss
.beacon_interval
= 100;
509 profile
->ibss
.join_only
= 0;
510 profile
->ibss
.band
= iwm
->conf
.ibss_band
;
511 profile
->ibss
.channel
= iwm
->conf
.ibss_channel
;
514 void iwm_link_on(struct iwm_priv
*iwm
)
516 netif_carrier_on(iwm_to_ndev(iwm
));
517 netif_tx_wake_all_queues(iwm_to_ndev(iwm
));
519 iwm_send_umac_stats_req(iwm
, 0);
522 void iwm_link_off(struct iwm_priv
*iwm
)
524 struct iw_statistics
*wstats
= &iwm
->wstats
;
527 netif_tx_stop_all_queues(iwm_to_ndev(iwm
));
528 netif_carrier_off(iwm_to_ndev(iwm
));
530 for (i
= 0; i
< IWM_TX_QUEUES
; i
++) {
531 skb_queue_purge(&iwm
->txq
[i
].queue
);
533 iwm
->txq
[i
].concat_count
= 0;
534 iwm
->txq
[i
].concat_ptr
= iwm
->txq
[i
].concat_buf
;
536 flush_workqueue(iwm
->txq
[i
].wq
);
541 cancel_delayed_work_sync(&iwm
->stats_request
);
542 memset(wstats
, 0, sizeof(struct iw_statistics
));
543 wstats
->qual
.updated
= IW_QUAL_ALL_INVALID
;
550 iwm
->resp_ie_len
= 0;
552 del_timer_sync(&iwm
->watchdog
);
555 static void iwm_bss_list_clean(struct iwm_priv
*iwm
)
557 struct iwm_bss_info
*bss
, *next
;
559 list_for_each_entry_safe(bss
, next
, &iwm
->bss_list
, node
) {
560 list_del(&bss
->node
);
566 static int iwm_channels_init(struct iwm_priv
*iwm
)
570 ret
= iwm_send_umac_channel_list(iwm
);
572 IWM_ERR(iwm
, "Send channel list failed\n");
576 ret
= iwm_notif_handle(iwm
, UMAC_CMD_OPCODE_GET_CHAN_INFO_LIST
,
577 IWM_SRC_UMAC
, WAIT_NOTIF_TIMEOUT
);
579 IWM_ERR(iwm
, "Didn't get a channel list notification\n");
586 static int __iwm_up(struct iwm_priv
*iwm
)
589 struct iwm_notif
*notif_reboot
, *notif_ack
= NULL
;
591 ret
= iwm_bus_enable(iwm
);
593 IWM_ERR(iwm
, "Couldn't enable function\n");
597 iwm_rx_setup_handlers(iwm
);
599 /* Wait for initial BARKER_REBOOT from hardware */
600 notif_reboot
= iwm_notif_wait(iwm
, IWM_BARKER_REBOOT_NOTIFICATION
,
601 IWM_SRC_UDMA
, 2 * HZ
);
603 IWM_ERR(iwm
, "Wait for REBOOT_BARKER timeout\n");
607 /* We send the barker back */
608 ret
= iwm_bus_send_chunk(iwm
, notif_reboot
->buf
, 16);
610 IWM_ERR(iwm
, "REBOOT barker response failed\n");
615 kfree(notif_reboot
->buf
);
618 /* Wait for ACK_BARKER from hardware */
619 notif_ack
= iwm_notif_wait(iwm
, IWM_ACK_BARKER_NOTIFICATION
,
620 IWM_SRC_UDMA
, 2 * HZ
);
622 IWM_ERR(iwm
, "Wait for ACK_BARKER timeout\n");
626 kfree(notif_ack
->buf
);
629 /* We start to config static boot parameters */
630 ret
= iwm_config_boot_params(iwm
);
632 IWM_ERR(iwm
, "Config boot parameters failed\n");
636 ret
= iwm_read_mac(iwm
, iwm_to_ndev(iwm
)->dev_addr
);
638 IWM_ERR(iwm
, "MAC reading failed\n");
642 /* We can load the FWs */
643 ret
= iwm_load_fw(iwm
);
645 IWM_ERR(iwm
, "FW loading failed\n");
649 /* We configure the UMAC and enable the wifi module */
650 ret
= iwm_send_umac_config(iwm
,
651 cpu_to_le32(UMAC_RST_CTRL_FLG_WIFI_CORE_EN
) |
652 cpu_to_le32(UMAC_RST_CTRL_FLG_WIFI_LINK_EN
) |
653 cpu_to_le32(UMAC_RST_CTRL_FLG_WIFI_MLME_EN
));
655 IWM_ERR(iwm
, "UMAC config failed\n");
659 ret
= iwm_notif_handle(iwm
, UMAC_NOTIFY_OPCODE_WIFI_CORE_STATUS
,
660 IWM_SRC_UMAC
, WAIT_NOTIF_TIMEOUT
);
662 IWM_ERR(iwm
, "Didn't get a wifi core status notification\n");
666 if (iwm
->core_enabled
!= (UMAC_NTFY_WIFI_CORE_STATUS_LINK_EN
|
667 UMAC_NTFY_WIFI_CORE_STATUS_MLME_EN
)) {
668 IWM_DBG_BOOT(iwm
, DBG
, "Not all cores enabled:0x%x\n",
670 ret
= iwm_notif_handle(iwm
, UMAC_NOTIFY_OPCODE_WIFI_CORE_STATUS
,
671 IWM_SRC_UMAC
, WAIT_NOTIF_TIMEOUT
);
673 IWM_ERR(iwm
, "Didn't get a core status notification\n");
677 if (iwm
->core_enabled
!= (UMAC_NTFY_WIFI_CORE_STATUS_LINK_EN
|
678 UMAC_NTFY_WIFI_CORE_STATUS_MLME_EN
)) {
679 IWM_ERR(iwm
, "Not all cores enabled: 0x%x\n",
683 IWM_INFO(iwm
, "All cores enabled\n");
687 ret
= iwm_channels_init(iwm
);
689 IWM_ERR(iwm
, "Couldn't init channels\n");
693 /* Set the READY bit to indicate interface is brought up successfully */
694 set_bit(IWM_STATUS_READY
, &iwm
->status
);
699 iwm_eeprom_exit(iwm
);
702 ret
= iwm_bus_disable(iwm
);
704 IWM_ERR(iwm
, "Couldn't disable function\n");
709 int iwm_up(struct iwm_priv
*iwm
)
713 mutex_lock(&iwm
->mutex
);
715 mutex_unlock(&iwm
->mutex
);
720 static int __iwm_down(struct iwm_priv
*iwm
)
724 /* The interface is already down */
725 if (!test_bit(IWM_STATUS_READY
, &iwm
->status
))
728 if (iwm
->scan_request
) {
729 cfg80211_scan_done(iwm
->scan_request
, true);
730 iwm
->scan_request
= NULL
;
733 clear_bit(IWM_STATUS_READY
, &iwm
->status
);
735 iwm_eeprom_exit(iwm
);
736 iwm_bss_list_clean(iwm
);
737 iwm_init_default_profile(iwm
, iwm
->umac_profile
);
738 iwm
->umac_profile_active
= false;
739 iwm
->default_key
= -1;
740 iwm
->core_enabled
= 0;
742 ret
= iwm_bus_disable(iwm
);
744 IWM_ERR(iwm
, "Couldn't disable function\n");
751 int iwm_down(struct iwm_priv
*iwm
)
755 mutex_lock(&iwm
->mutex
);
756 ret
= __iwm_down(iwm
);
757 mutex_unlock(&iwm
->mutex
);