1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2012 - 2018 Microchip Technology Inc., and its subsidiaries.
8 #include <linux/kthread.h>
9 #include <linux/firmware.h>
10 #include <linux/netdevice.h>
11 #include <linux/inetdevice.h>
16 #define WILC_MULTICAST_TABLE_SIZE 8
17 #define WILC_MAX_FW_VERSION_STR_SIZE 50
19 /* latest API version supported */
20 #define WILC1000_API_VER 1
22 #define WILC1000_FW_PREFIX "atmel/wilc1000_wifi_firmware-"
23 #define __WILC1000_FW(api) WILC1000_FW_PREFIX #api ".bin"
24 #define WILC1000_FW(api) __WILC1000_FW(api)
26 static irqreturn_t isr_uh_routine(int irq, void *user_data)
28 struct wilc *wilc = user_data;
31 pr_err("Can't handle UH interrupt\n");
34 return IRQ_WAKE_THREAD;
37 static irqreturn_t isr_bh_routine(int irq, void *userdata)
39 struct wilc *wilc = userdata;
42 pr_err("Can't handle BH interrupt\n");
46 wilc_handle_isr(wilc);
51 static int init_irq(struct net_device *dev)
53 struct wilc_vif *vif = netdev_priv(dev);
54 struct wilc *wl = vif->wilc;
57 ret = request_threaded_irq(wl->dev_irq_num, isr_uh_routine,
59 IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
62 netdev_err(dev, "Failed to request IRQ [%d]\n", ret);
65 netdev_dbg(dev, "IRQ request succeeded IRQ-NUM= %d\n", wl->dev_irq_num);
70 static void deinit_irq(struct net_device *dev)
72 struct wilc_vif *vif = netdev_priv(dev);
73 struct wilc *wilc = vif->wilc;
75 /* Deinitialize IRQ */
76 if (wilc->dev_irq_num)
77 free_irq(wilc->dev_irq_num, wilc);
80 void wilc_mac_indicate(struct wilc *wilc)
84 wilc_wlan_cfg_get_val(wilc, WID_STATUS, &status, 1);
85 if (wilc->mac_status == WILC_MAC_STATUS_INIT) {
86 wilc->mac_status = status;
87 complete(&wilc->sync_event);
89 wilc->mac_status = status;
93 static struct net_device *get_if_handler(struct wilc *wilc, u8 *mac_header)
95 struct net_device *ndev = NULL;
97 struct ieee80211_hdr *h = (struct ieee80211_hdr *)mac_header;
99 wilc_for_each_vif(wilc, vif) {
100 if (vif->iftype == WILC_STATION_MODE)
101 if (ether_addr_equal_unaligned(h->addr2, vif->bssid)) {
105 if (vif->iftype == WILC_AP_MODE)
106 if (ether_addr_equal_unaligned(h->addr1, vif->bssid)) {
115 void wilc_wlan_set_bssid(struct net_device *wilc_netdev, const u8 *bssid,
118 struct wilc_vif *vif = netdev_priv(wilc_netdev);
121 ether_addr_copy(vif->bssid, bssid);
123 eth_zero_addr(vif->bssid);
128 int wilc_wlan_get_num_conn_ifcs(struct wilc *wilc)
132 struct wilc_vif *vif;
134 srcu_idx = srcu_read_lock(&wilc->srcu);
135 wilc_for_each_vif(wilc, vif) {
136 if (!is_zero_ether_addr(vif->bssid))
139 srcu_read_unlock(&wilc->srcu, srcu_idx);
143 static void wilc_wake_tx_queues(struct wilc *wl)
146 struct wilc_vif *ifc;
148 srcu_idx = srcu_read_lock(&wl->srcu);
149 wilc_for_each_vif(wl, ifc) {
150 if (ifc->mac_opened && netif_queue_stopped(ifc->ndev))
151 netif_wake_queue(ifc->ndev);
153 srcu_read_unlock(&wl->srcu, srcu_idx);
156 static int wilc_txq_task(void *vp)
160 struct wilc *wl = vp;
162 complete(&wl->txq_thread_started);
164 if (wait_for_completion_interruptible(&wl->txq_event))
167 complete(&wl->txq_thread_started);
169 while (!kthread_should_stop())
174 ret = wilc_wlan_handle_txq(wl, &txq_count);
175 if (txq_count < FLOW_CONTROL_LOWER_THRESHOLD) {
176 wilc_wake_tx_queues(wl);
178 if (ret != WILC_VMM_ENTRY_FULL_RETRY)
180 /* Back off TX task from sending packets for some time.
181 * msleep_interruptible will allow RX task to run and
182 * free buffers. TX task will be in TASK_INTERRUPTIBLE
183 * state which will put the thread back to CPU running
184 * queue when it's signaled even if the timeout isn't
185 * elapsed. This gives faster chance for reserved SK
186 * buffers to be free.
188 msleep_interruptible(TX_BACKOFF_WEIGHT_MS);
189 } while (!wl->close);
194 static int wilc_wlan_get_firmware(struct net_device *dev)
196 struct wilc_vif *vif = netdev_priv(dev);
197 struct wilc *wilc = vif->wilc;
199 const struct firmware *wilc_fw;
202 chip_id = wilc_get_chipid(wilc, false);
204 netdev_info(dev, "ChipID [%x] loading firmware [%s]\n", chip_id,
205 WILC1000_FW(WILC1000_API_VER));
207 ret = request_firmware(&wilc_fw, WILC1000_FW(WILC1000_API_VER),
210 netdev_err(dev, "%s - firmware not available\n",
211 WILC1000_FW(WILC1000_API_VER));
214 wilc->firmware = wilc_fw;
219 static int wilc_start_firmware(struct net_device *dev)
221 struct wilc_vif *vif = netdev_priv(dev);
222 struct wilc *wilc = vif->wilc;
225 ret = wilc_wlan_start(wilc);
229 if (!wait_for_completion_timeout(&wilc->sync_event,
230 msecs_to_jiffies(5000)))
236 static int wilc1000_firmware_download(struct net_device *dev)
238 struct wilc_vif *vif = netdev_priv(dev);
239 struct wilc *wilc = vif->wilc;
242 if (!wilc->firmware) {
243 netdev_err(dev, "Firmware buffer is NULL\n");
247 ret = wilc_wlan_firmware_download(wilc, wilc->firmware->data,
248 wilc->firmware->size);
252 release_firmware(wilc->firmware);
253 wilc->firmware = NULL;
255 netdev_dbg(dev, "Download Succeeded\n");
260 static int wilc_init_fw_config(struct net_device *dev, struct wilc_vif *vif)
262 struct wilc_priv *priv = &vif->priv;
263 struct host_if_drv *hif_drv;
268 netdev_dbg(dev, "Start configuring Firmware\n");
269 hif_drv = (struct host_if_drv *)priv->hif_drv;
270 netdev_dbg(dev, "Host = %p\n", hif_drv);
274 if (!wilc_wlan_cfg_set(vif, 1, WID_SET_OPERATION_MODE, (u8 *)&w, 4,
278 b = WILC_FW_BSS_TYPE_INFRA;
279 if (!wilc_wlan_cfg_set(vif, 0, WID_BSS_TYPE, &b, 1, 0, 0))
282 b = WILC_FW_TX_RATE_AUTO;
283 if (!wilc_wlan_cfg_set(vif, 0, WID_CURRENT_TX_RATE, &b, 1, 0, 0))
286 b = WILC_FW_OPER_MODE_G_MIXED_11B_2;
287 if (!wilc_wlan_cfg_set(vif, 0, WID_11G_OPERATING_MODE, &b, 1, 0, 0))
290 b = WILC_FW_PREAMBLE_AUTO;
291 if (!wilc_wlan_cfg_set(vif, 0, WID_PREAMBLE, &b, 1, 0, 0))
294 b = WILC_FW_11N_PROT_AUTO;
295 if (!wilc_wlan_cfg_set(vif, 0, WID_11N_PROT_MECH, &b, 1, 0, 0))
298 b = WILC_FW_ACTIVE_SCAN;
299 if (!wilc_wlan_cfg_set(vif, 0, WID_SCAN_TYPE, &b, 1, 0, 0))
302 b = WILC_FW_SITE_SURVEY_OFF;
303 if (!wilc_wlan_cfg_set(vif, 0, WID_SITE_SURVEY, &b, 1, 0, 0))
308 if (!wilc_wlan_cfg_set(vif, 0, WID_RTS_THRESHOLD, (u8 *)&hw, 2, 0, 0))
313 if (!wilc_wlan_cfg_set(vif, 0, WID_FRAG_THRESHOLD, (u8 *)&hw, 2, 0, 0))
317 if (!wilc_wlan_cfg_set(vif, 0, WID_BCAST_SSID, &b, 1, 0, 0))
321 if (!wilc_wlan_cfg_set(vif, 0, WID_QOS_ENABLE, &b, 1, 0, 0))
324 b = WILC_FW_NO_POWERSAVE;
325 if (!wilc_wlan_cfg_set(vif, 0, WID_POWER_MANAGEMENT, &b, 1, 0, 0))
329 if (!wilc_wlan_cfg_set(vif, 0, WID_11I_MODE, &b, 1, 0, 0))
332 b = WILC_FW_AUTH_OPEN_SYSTEM;
333 if (!wilc_wlan_cfg_set(vif, 0, WID_AUTH_TYPE, &b, 1, 0, 0))
337 if (!wilc_wlan_cfg_set(vif, 0, WID_LISTEN_INTERVAL, &b, 1, 0, 0))
341 if (!wilc_wlan_cfg_set(vif, 0, WID_DTIM_PERIOD, &b, 1, 0, 0))
344 b = WILC_FW_ACK_POLICY_NORMAL;
345 if (!wilc_wlan_cfg_set(vif, 0, WID_ACK_POLICY, &b, 1, 0, 0))
349 if (!wilc_wlan_cfg_set(vif, 0, WID_USER_CONTROL_ON_TX_POWER, &b, 1,
354 if (!wilc_wlan_cfg_set(vif, 0, WID_TX_POWER_LEVEL_11A, &b, 1, 0, 0))
358 if (!wilc_wlan_cfg_set(vif, 0, WID_TX_POWER_LEVEL_11B, &b, 1, 0, 0))
363 if (!wilc_wlan_cfg_set(vif, 0, WID_BEACON_INTERVAL, (u8 *)&hw, 2, 0, 0))
366 b = WILC_FW_REKEY_POLICY_DISABLE;
367 if (!wilc_wlan_cfg_set(vif, 0, WID_REKEY_POLICY, &b, 1, 0, 0))
372 if (!wilc_wlan_cfg_set(vif, 0, WID_REKEY_PERIOD, (u8 *)&w, 4, 0, 0))
377 if (!wilc_wlan_cfg_set(vif, 0, WID_REKEY_PACKET_COUNT, (u8 *)&w, 4, 0,
382 if (!wilc_wlan_cfg_set(vif, 0, WID_SHORT_SLOT_ALLOWED, &b, 1, 0,
386 b = WILC_FW_ERP_PROT_SELF_CTS;
387 if (!wilc_wlan_cfg_set(vif, 0, WID_11N_ERP_PROT_TYPE, &b, 1, 0, 0))
391 if (!wilc_wlan_cfg_set(vif, 0, WID_11N_ENABLE, &b, 1, 0, 0))
394 b = WILC_FW_11N_OP_MODE_HT_MIXED;
395 if (!wilc_wlan_cfg_set(vif, 0, WID_11N_OPERATING_MODE, &b, 1, 0, 0))
399 if (!wilc_wlan_cfg_set(vif, 0, WID_11N_TXOP_PROT_DISABLE, &b, 1, 0, 0))
402 b = WILC_FW_OBBS_NONHT_DETECT_PROTECT_REPORT;
403 if (!wilc_wlan_cfg_set(vif, 0, WID_11N_OBSS_NONHT_DETECTION, &b, 1,
407 b = WILC_FW_HT_PROT_RTS_CTS_NONHT;
408 if (!wilc_wlan_cfg_set(vif, 0, WID_11N_HT_PROT_TYPE, &b, 1, 0, 0))
412 if (!wilc_wlan_cfg_set(vif, 0, WID_11N_RIFS_PROT_ENABLE, &b, 1, 0,
417 if (!wilc_wlan_cfg_set(vif, 0, WID_11N_CURRENT_TX_MCS, &b, 1, 0, 0))
421 if (!wilc_wlan_cfg_set(vif, 0, WID_11N_IMMEDIATE_BA_ENABLED, &b, 1,
431 static void wlan_deinitialize_threads(struct net_device *dev)
433 struct wilc_vif *vif = netdev_priv(dev);
434 struct wilc *wl = vif->wilc;
438 complete(&wl->txq_event);
440 if (wl->txq_thread) {
441 kthread_stop(wl->txq_thread);
442 wl->txq_thread = NULL;
446 static void wilc_wlan_deinitialize(struct net_device *dev)
448 struct wilc_vif *vif = netdev_priv(dev);
449 struct wilc *wl = vif->wilc;
452 netdev_err(dev, "wl is NULL\n");
456 if (wl->initialized) {
457 netdev_info(dev, "Deinitializing wilc1000...\n");
459 if (!wl->dev_irq_num &&
460 wl->hif_func->disable_interrupt) {
461 mutex_lock(&wl->hif_cs);
462 wl->hif_func->disable_interrupt(wl);
463 mutex_unlock(&wl->hif_cs);
465 complete(&wl->txq_event);
467 wlan_deinitialize_threads(dev);
470 wilc_wlan_stop(wl, vif);
471 wilc_wlan_cleanup(dev);
473 wl->initialized = false;
475 netdev_dbg(dev, "wilc1000 deinitialization Done\n");
477 netdev_dbg(dev, "wilc1000 is not initialized\n");
481 static int wlan_initialize_threads(struct net_device *dev)
483 struct wilc_vif *vif = netdev_priv(dev);
484 struct wilc *wilc = vif->wilc;
486 wilc->txq_thread = kthread_run(wilc_txq_task, (void *)wilc,
488 if (IS_ERR(wilc->txq_thread)) {
489 netdev_err(dev, "couldn't create TXQ thread\n");
491 return PTR_ERR(wilc->txq_thread);
493 wait_for_completion(&wilc->txq_thread_started);
498 static int wilc_wlan_initialize(struct net_device *dev, struct wilc_vif *vif)
501 struct wilc *wl = vif->wilc;
503 if (!wl->initialized) {
504 wl->mac_status = WILC_MAC_STATUS_INIT;
507 ret = wilc_wlan_init(dev);
511 ret = wlan_initialize_threads(dev);
515 if (wl->dev_irq_num && init_irq(dev)) {
520 if (!wl->dev_irq_num &&
521 wl->hif_func->enable_interrupt &&
522 wl->hif_func->enable_interrupt(wl)) {
527 ret = wilc_wlan_get_firmware(dev);
529 goto fail_irq_enable;
531 ret = wilc1000_firmware_download(dev);
533 goto fail_irq_enable;
535 ret = wilc_start_firmware(dev);
537 goto fail_irq_enable;
539 if (wilc_wlan_cfg_get(vif, 1, WID_FIRMWARE_VERSION, 1, 0)) {
541 char firmware_ver[WILC_MAX_FW_VERSION_STR_SIZE];
543 size = wilc_wlan_cfg_get_val(wl, WID_FIRMWARE_VERSION,
545 sizeof(firmware_ver));
546 firmware_ver[size] = '\0';
547 netdev_dbg(dev, "Firmware Ver = %s\n", firmware_ver);
550 ret = wilc_init_fw_config(dev, vif);
552 netdev_err(dev, "Failed to configure firmware\n");
555 wl->initialized = true;
559 wilc_wlan_stop(wl, vif);
562 if (!wl->dev_irq_num &&
563 wl->hif_func->disable_interrupt)
564 wl->hif_func->disable_interrupt(wl);
569 wlan_deinitialize_threads(dev);
571 wilc_wlan_cleanup(dev);
572 netdev_err(dev, "WLAN initialization FAILED\n");
574 netdev_dbg(dev, "wilc1000 already initialized\n");
579 static int mac_init_fn(struct net_device *ndev)
581 netif_start_queue(ndev);
582 netif_stop_queue(ndev);
587 static int wilc_mac_open(struct net_device *ndev)
589 struct wilc_vif *vif = netdev_priv(ndev);
590 struct wilc *wl = vif->wilc;
592 struct mgmt_frame_regs mgmt_regs = {};
594 if (!wl || !wl->dev) {
595 netdev_err(ndev, "device not ready\n");
599 netdev_dbg(ndev, "MAC OPEN[%p]\n", ndev);
601 ret = wilc_init_host_int(ndev);
605 ret = wilc_wlan_initialize(ndev, vif);
607 wilc_deinit_host_int(ndev);
611 netdev_dbg(ndev, "Mac address: %pM\n", ndev->dev_addr);
612 ret = wilc_set_mac_address(vif, ndev->dev_addr);
614 netdev_err(ndev, "Failed to enforce MAC address in chip");
615 wilc_deinit_host_int(ndev);
617 wilc_wlan_deinitialize(ndev);
621 wilc_set_operation_mode(vif, wilc_get_vif_idx(vif), vif->iftype,
624 mgmt_regs.interface_stypes = vif->mgmt_reg_stypes;
625 /* so we detect a change */
626 vif->mgmt_reg_stypes = 0;
627 wilc_update_mgmt_frame_registrations(vif->ndev->ieee80211_ptr->wiphy,
628 vif->ndev->ieee80211_ptr,
630 netif_wake_queue(ndev);
636 static struct net_device_stats *mac_stats(struct net_device *dev)
638 struct wilc_vif *vif = netdev_priv(dev);
640 return &vif->netstats;
643 static int wilc_set_mac_addr(struct net_device *dev, void *p)
646 struct wilc_vif *vif = netdev_priv(dev);
647 struct wilc *wilc = vif->wilc;
648 struct sockaddr *addr = (struct sockaddr *)p;
649 unsigned char mac_addr[ETH_ALEN];
650 struct wilc_vif *tmp_vif;
653 if (!is_valid_ether_addr(addr->sa_data))
654 return -EADDRNOTAVAIL;
656 if (!vif->mac_opened) {
657 eth_commit_mac_addr_change(dev, p);
661 /* Verify MAC Address is not already in use: */
663 srcu_idx = srcu_read_lock(&wilc->srcu);
664 wilc_for_each_vif(wilc, tmp_vif) {
665 wilc_get_mac_address(tmp_vif, mac_addr);
666 if (ether_addr_equal(addr->sa_data, mac_addr)) {
667 if (vif != tmp_vif) {
668 srcu_read_unlock(&wilc->srcu, srcu_idx);
669 return -EADDRNOTAVAIL;
671 srcu_read_unlock(&wilc->srcu, srcu_idx);
675 srcu_read_unlock(&wilc->srcu, srcu_idx);
677 result = wilc_set_mac_address(vif, addr->sa_data);
681 eth_commit_mac_addr_change(dev, p);
685 static void wilc_set_multicast_list(struct net_device *dev)
687 struct netdev_hw_addr *ha;
688 struct wilc_vif *vif = netdev_priv(dev);
693 if (dev->flags & IFF_PROMISC)
696 if (dev->flags & IFF_ALLMULTI ||
697 dev->mc.count > WILC_MULTICAST_TABLE_SIZE) {
698 wilc_setup_multicast_filter(vif, 0, 0, NULL);
702 if (dev->mc.count == 0) {
703 wilc_setup_multicast_filter(vif, 1, 0, NULL);
707 mc_list = kmalloc_array(dev->mc.count, ETH_ALEN, GFP_ATOMIC);
713 netdev_for_each_mc_addr(ha, dev) {
714 memcpy(cur_mc, ha->addr, ETH_ALEN);
715 netdev_dbg(dev, "Entry[%d]: %pM\n", i, cur_mc);
720 if (wilc_setup_multicast_filter(vif, 1, dev->mc.count, mc_list))
724 static void wilc_tx_complete(void *priv, int status)
726 struct tx_complete_data *pv_data = priv;
728 dev_kfree_skb(pv_data->skb);
732 netdev_tx_t wilc_mac_xmit(struct sk_buff *skb, struct net_device *ndev)
734 struct wilc_vif *vif = netdev_priv(ndev);
735 struct wilc *wilc = vif->wilc;
736 struct tx_complete_data *tx_data = NULL;
739 if (skb->dev != ndev) {
740 netdev_err(ndev, "Packet not destined to this device\n");
745 tx_data = kmalloc(sizeof(*tx_data), GFP_ATOMIC);
748 netif_wake_queue(ndev);
752 tx_data->buff = skb->data;
753 tx_data->size = skb->len;
756 vif->netstats.tx_packets++;
757 vif->netstats.tx_bytes += tx_data->size;
758 queue_count = wilc_wlan_txq_add_net_pkt(ndev, tx_data,
759 tx_data->buff, tx_data->size,
762 if (queue_count > FLOW_CONTROL_UPPER_THRESHOLD) {
764 struct wilc_vif *vif;
766 srcu_idx = srcu_read_lock(&wilc->srcu);
767 wilc_for_each_vif(wilc, vif) {
769 netif_stop_queue(vif->ndev);
771 srcu_read_unlock(&wilc->srcu, srcu_idx);
777 static int wilc_mac_close(struct net_device *ndev)
779 struct wilc_vif *vif = netdev_priv(ndev);
780 struct wilc *wl = vif->wilc;
782 netdev_dbg(ndev, "Mac close\n");
784 if (wl->open_ifcs > 0)
790 netif_stop_queue(vif->ndev);
792 wilc_handle_disconnect(vif);
793 wilc_deinit_host_int(vif->ndev);
796 if (wl->open_ifcs == 0) {
797 netdev_dbg(ndev, "Deinitializing wilc1000\n");
799 wilc_wlan_deinitialize(ndev);
807 void wilc_frmw_to_host(struct wilc *wilc, u8 *buff, u32 size,
810 unsigned char *buff_to_send = NULL;
811 struct net_device *wilc_netdev;
812 unsigned int frame_len = 0;
813 struct wilc_vif *vif;
821 srcu_idx = srcu_read_lock(&wilc->srcu);
822 wilc_netdev = get_if_handler(wilc, buff);
827 vif = netdev_priv(wilc_netdev);
833 skb = dev_alloc_skb(frame_len);
837 skb->dev = wilc_netdev;
839 skb_put_data(skb, buff_to_send, frame_len);
841 skb->protocol = eth_type_trans(skb, wilc_netdev);
842 vif->netstats.rx_packets++;
843 vif->netstats.rx_bytes += frame_len;
844 skb->ip_summed = CHECKSUM_UNNECESSARY;
845 stats = netif_rx(skb);
846 netdev_dbg(wilc_netdev, "netif_rx ret value is: %d\n", stats);
849 srcu_read_unlock(&wilc->srcu, srcu_idx);
852 void wilc_wfi_mgmt_rx(struct wilc *wilc, u8 *buff, u32 size, bool is_auth)
855 struct wilc_vif *vif;
857 srcu_idx = srcu_read_lock(&wilc->srcu);
858 wilc_for_each_vif(wilc, vif) {
859 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)buff;
860 u16 type = le16_to_cpup((__le16 *)buff);
861 u32 type_bit = BIT(type >> 4);
862 u32 auth_bit = BIT(IEEE80211_STYPE_AUTH >> 4);
864 if ((vif->mgmt_reg_stypes & auth_bit &&
865 ieee80211_is_auth(mgmt->frame_control)) &&
866 vif->iftype == WILC_STATION_MODE && is_auth) {
867 wilc_wfi_mgmt_frame_rx(vif, buff, size);
871 if (vif->priv.p2p_listen_state &&
872 vif->mgmt_reg_stypes & type_bit)
873 wilc_wfi_p2p_rx(vif, buff, size);
875 if (vif->monitor_flag)
876 wilc_wfi_monitor_rx(wilc->monitor_dev, buff, size);
878 srcu_read_unlock(&wilc->srcu, srcu_idx);
881 static const struct net_device_ops wilc_netdev_ops = {
882 .ndo_init = mac_init_fn,
883 .ndo_open = wilc_mac_open,
884 .ndo_stop = wilc_mac_close,
885 .ndo_set_mac_address = wilc_set_mac_addr,
886 .ndo_start_xmit = wilc_mac_xmit,
887 .ndo_get_stats = mac_stats,
888 .ndo_set_rx_mode = wilc_set_multicast_list,
891 void wilc_netdev_cleanup(struct wilc *wilc)
893 struct wilc_vif *vif, *vif_tmp;
898 if (wilc->firmware) {
899 release_firmware(wilc->firmware);
900 wilc->firmware = NULL;
903 list_for_each_entry_safe(vif, vif_tmp, &wilc->vif_list, list) {
904 mutex_lock(&wilc->vif_mutex);
905 list_del_rcu(&vif->list);
907 mutex_unlock(&wilc->vif_mutex);
908 synchronize_srcu(&wilc->srcu);
910 unregister_netdev(vif->ndev);
913 wilc_wfi_deinit_mon_interface(wilc, false);
914 destroy_workqueue(wilc->hif_workqueue);
916 wilc_wlan_cfg_deinit(wilc);
917 wlan_deinit_locks(wilc);
918 wiphy_unregister(wilc->wiphy);
919 wiphy_free(wilc->wiphy);
921 EXPORT_SYMBOL_GPL(wilc_netdev_cleanup);
923 static u8 wilc_get_available_idx(struct wilc *wl)
926 struct wilc_vif *vif;
929 srcu_idx = srcu_read_lock(&wl->srcu);
930 wilc_for_each_vif(wl, vif) {
936 srcu_read_unlock(&wl->srcu, srcu_idx);
940 struct wilc_vif *wilc_netdev_ifc_init(struct wilc *wl, const char *name,
941 int vif_type, enum nl80211_iftype type,
944 u8 mac_address[ETH_ALEN];
945 struct net_device *ndev;
946 struct wilc_vif *vif;
949 ndev = alloc_etherdev(sizeof(*vif));
951 return ERR_PTR(-ENOMEM);
953 vif = netdev_priv(ndev);
954 ndev->ieee80211_ptr = &vif->priv.wdev;
955 strcpy(ndev->name, name);
960 ndev->netdev_ops = &wilc_netdev_ops;
962 SET_NETDEV_DEV(ndev, wiphy_dev(wl->wiphy));
964 vif->priv.wdev.wiphy = wl->wiphy;
965 vif->priv.wdev.netdev = ndev;
966 vif->priv.wdev.iftype = type;
967 vif->priv.dev = ndev;
969 ndev->needs_free_netdev = true;
970 vif->iftype = vif_type;
971 vif->idx = wilc_get_available_idx(wl);
974 memcpy(mac_address, wl->nv_mac_address, ETH_ALEN);
975 /* WILC firmware uses locally administered MAC address for the
976 * second virtual interface (bit 1 of first byte set), but
977 * since it is possibly not loaded/running yet, reproduce this behavior
978 * in the driver during interface creation.
981 mac_address[0] |= 0x2;
983 eth_hw_addr_set(vif->ndev, mac_address);
985 mutex_lock(&wl->vif_mutex);
986 list_add_tail_rcu(&vif->list, &wl->vif_list);
988 mutex_unlock(&wl->vif_mutex);
989 synchronize_srcu(&wl->srcu);
992 ret = cfg80211_register_netdevice(ndev);
994 ret = register_netdev(ndev);
998 goto error_remove_vif;
1004 mutex_lock(&wl->vif_mutex);
1005 list_del_rcu(&vif->list);
1007 mutex_unlock(&wl->vif_mutex);
1008 synchronize_srcu(&wl->srcu);
1010 return ERR_PTR(ret);
1012 EXPORT_SYMBOL_GPL(wilc_netdev_ifc_init);
1014 MODULE_DESCRIPTION("Atmel WILC1000 core wireless driver");
1015 MODULE_LICENSE("GPL");
1016 MODULE_FIRMWARE(WILC1000_FW(WILC1000_API_VER));