1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2012 - 2018 Microchip Technology Inc., and its subsidiaries.
9 #define GO_NEG_REQ 0x00
10 #define GO_NEG_RSP 0x01
11 #define GO_NEG_CONF 0x02
12 #define P2P_INV_REQ 0x03
13 #define P2P_INV_RSP 0x04
15 #define WILC_INVALID_CHANNEL 0
17 /* Operation at 2.4 GHz with channels 1-13 */
18 #define WILC_WLAN_OPERATING_CLASS_2_4GHZ 0x51
20 static const struct ieee80211_txrx_stypes
21 wilc_wfi_cfg80211_mgmt_types[NUM_NL80211_IFTYPES] = {
22 [NL80211_IFTYPE_STATION] = {
24 .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
25 BIT(IEEE80211_STYPE_PROBE_REQ >> 4)
27 [NL80211_IFTYPE_AP] = {
29 .rx = BIT(IEEE80211_STYPE_ASSOC_REQ >> 4) |
30 BIT(IEEE80211_STYPE_REASSOC_REQ >> 4) |
31 BIT(IEEE80211_STYPE_PROBE_REQ >> 4) |
32 BIT(IEEE80211_STYPE_DISASSOC >> 4) |
33 BIT(IEEE80211_STYPE_AUTH >> 4) |
34 BIT(IEEE80211_STYPE_DEAUTH >> 4) |
35 BIT(IEEE80211_STYPE_ACTION >> 4)
37 [NL80211_IFTYPE_P2P_CLIENT] = {
39 .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
40 BIT(IEEE80211_STYPE_PROBE_REQ >> 4) |
41 BIT(IEEE80211_STYPE_ASSOC_REQ >> 4) |
42 BIT(IEEE80211_STYPE_REASSOC_REQ >> 4) |
43 BIT(IEEE80211_STYPE_DISASSOC >> 4) |
44 BIT(IEEE80211_STYPE_AUTH >> 4) |
45 BIT(IEEE80211_STYPE_DEAUTH >> 4)
50 static const struct wiphy_wowlan_support wowlan_support = {
51 .flags = WIPHY_WOWLAN_ANY
55 struct wilc_p2p_mgmt_data {
60 struct wilc_p2p_pub_act_frame {
70 struct wilc_vendor_specific_ie {
78 struct wilc_attr_entry {
84 struct wilc_attr_oper_ch {
87 u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
92 struct wilc_attr_ch_list {
95 u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
99 struct wilc_ch_list_elem {
105 static void cfg_scan_result(enum scan_event scan_event,
106 struct wilc_rcvd_net_info *info, void *user_void)
108 struct wilc_priv *priv = user_void;
110 if (!priv->cfg_scanning)
113 if (scan_event == SCAN_EVENT_NETWORK_FOUND) {
115 struct ieee80211_channel *channel;
116 struct cfg80211_bss *bss;
117 struct wiphy *wiphy = priv->dev->ieee80211_ptr->wiphy;
122 freq = ieee80211_channel_to_frequency((s32)info->ch,
124 channel = ieee80211_get_channel(wiphy, freq);
128 bss = cfg80211_inform_bss_frame(wiphy, channel, info->mgmt,
130 (s32)info->rssi * 100,
133 cfg80211_put_bss(wiphy, bss);
134 } else if (scan_event == SCAN_EVENT_DONE) {
135 mutex_lock(&priv->scan_req_lock);
137 if (priv->scan_req) {
138 struct cfg80211_scan_info info = {
142 cfg80211_scan_done(priv->scan_req, &info);
143 priv->cfg_scanning = false;
144 priv->scan_req = NULL;
146 mutex_unlock(&priv->scan_req_lock);
147 } else if (scan_event == SCAN_EVENT_ABORTED) {
148 mutex_lock(&priv->scan_req_lock);
150 if (priv->scan_req) {
151 struct cfg80211_scan_info info = {
155 cfg80211_scan_done(priv->scan_req, &info);
156 priv->cfg_scanning = false;
157 priv->scan_req = NULL;
159 mutex_unlock(&priv->scan_req_lock);
163 static void cfg_connect_result(enum conn_event conn_disconn_evt, u8 mac_status,
166 struct wilc_priv *priv = priv_data;
167 struct net_device *dev = priv->dev;
168 struct wilc_vif *vif = netdev_priv(dev);
169 struct wilc *wl = vif->wilc;
170 struct host_if_drv *wfi_drv = priv->hif_drv;
171 struct wilc_conn_info *conn_info = &wfi_drv->conn_info;
172 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
174 vif->connecting = false;
176 if (conn_disconn_evt == CONN_DISCONN_EVENT_CONN_RESP) {
177 u16 connect_status = conn_info->status;
179 if (mac_status == WILC_MAC_STATUS_DISCONNECTED &&
180 connect_status == WLAN_STATUS_SUCCESS) {
181 connect_status = WLAN_STATUS_UNSPECIFIED_FAILURE;
182 wilc_wlan_set_bssid(priv->dev, NULL, WILC_STATION_MODE);
184 if (vif->iftype != WILC_CLIENT_MODE)
185 wl->sta_ch = WILC_INVALID_CHANNEL;
187 netdev_err(dev, "Unspecified failure\n");
190 if (connect_status == WLAN_STATUS_SUCCESS)
191 memcpy(priv->associated_bss, conn_info->bssid,
194 cfg80211_ref_bss(wiphy, vif->bss);
195 cfg80211_connect_bss(dev, conn_info->bssid, vif->bss,
197 conn_info->req_ies_len,
199 conn_info->resp_ies_len,
200 connect_status, GFP_KERNEL,
201 NL80211_TIMEOUT_UNSPECIFIED);
204 } else if (conn_disconn_evt == CONN_DISCONN_EVENT_DISCONN_NOTIF) {
207 eth_zero_addr(priv->associated_bss);
208 wilc_wlan_set_bssid(priv->dev, NULL, WILC_STATION_MODE);
210 if (vif->iftype != WILC_CLIENT_MODE) {
211 wl->sta_ch = WILC_INVALID_CHANNEL;
219 cfg80211_disconnected(dev, reason, NULL, 0, false, GFP_KERNEL);
223 struct wilc_vif *wilc_get_wl_to_vif(struct wilc *wl)
225 struct wilc_vif *vif;
227 vif = list_first_or_null_rcu(&wl->vif_list, typeof(*vif), list);
229 return ERR_PTR(-EINVAL);
234 static int set_channel(struct wiphy *wiphy,
235 struct cfg80211_chan_def *chandef)
237 struct wilc *wl = wiphy_priv(wiphy);
238 struct wilc_vif *vif;
243 srcu_idx = srcu_read_lock(&wl->srcu);
244 vif = wilc_get_wl_to_vif(wl);
246 srcu_read_unlock(&wl->srcu, srcu_idx);
250 channelnum = ieee80211_frequency_to_channel(chandef->chan->center_freq);
252 wl->op_ch = channelnum;
253 result = wilc_set_mac_chnl_num(vif, channelnum);
255 netdev_err(vif->ndev, "Error in setting channel\n");
257 srcu_read_unlock(&wl->srcu, srcu_idx);
261 static int scan(struct wiphy *wiphy, struct cfg80211_scan_request *request)
263 struct wilc_vif *vif = netdev_priv(request->wdev->netdev);
264 struct wilc_priv *priv = &vif->priv;
267 u8 scan_ch_list[WILC_MAX_NUM_SCANNED_CH];
270 if (request->n_channels > WILC_MAX_NUM_SCANNED_CH) {
271 netdev_err(vif->ndev, "Requested scanned channels over\n");
275 priv->scan_req = request;
276 priv->cfg_scanning = true;
277 for (i = 0; i < request->n_channels; i++) {
278 u16 freq = request->channels[i]->center_freq;
280 scan_ch_list[i] = ieee80211_frequency_to_channel(freq);
283 if (request->n_ssids)
284 scan_type = WILC_FW_ACTIVE_SCAN;
286 scan_type = WILC_FW_PASSIVE_SCAN;
288 ret = wilc_scan(vif, WILC_FW_USER_SCAN, scan_type, scan_ch_list,
289 request->n_channels, cfg_scan_result, (void *)priv,
293 priv->scan_req = NULL;
294 priv->cfg_scanning = false;
300 static int connect(struct wiphy *wiphy, struct net_device *dev,
301 struct cfg80211_connect_params *sme)
303 struct wilc_vif *vif = netdev_priv(dev);
304 struct wilc_priv *priv = &vif->priv;
305 struct host_if_drv *wfi_drv = priv->hif_drv;
308 u8 security = WILC_FW_SEC_NO;
309 enum authtype auth_type = WILC_FW_AUTH_ANY;
311 struct cfg80211_bss *bss;
315 vif->connecting = true;
317 memset(priv->wep_key, 0, sizeof(priv->wep_key));
318 memset(priv->wep_key_len, 0, sizeof(priv->wep_key_len));
320 cipher_group = sme->crypto.cipher_group;
321 if (cipher_group != 0) {
322 if (cipher_group == WLAN_CIPHER_SUITE_WEP40) {
323 security = WILC_FW_SEC_WEP;
325 priv->wep_key_len[sme->key_idx] = sme->key_len;
326 memcpy(priv->wep_key[sme->key_idx], sme->key,
329 wilc_set_wep_default_keyid(vif, sme->key_idx);
330 wilc_add_wep_key_bss_sta(vif, sme->key, sme->key_len,
332 } else if (cipher_group == WLAN_CIPHER_SUITE_WEP104) {
333 security = WILC_FW_SEC_WEP_EXTENDED;
335 priv->wep_key_len[sme->key_idx] = sme->key_len;
336 memcpy(priv->wep_key[sme->key_idx], sme->key,
339 wilc_set_wep_default_keyid(vif, sme->key_idx);
340 wilc_add_wep_key_bss_sta(vif, sme->key, sme->key_len,
342 } else if (sme->crypto.wpa_versions & NL80211_WPA_VERSION_2) {
343 if (cipher_group == WLAN_CIPHER_SUITE_TKIP)
344 security = WILC_FW_SEC_WPA2_TKIP;
346 security = WILC_FW_SEC_WPA2_AES;
347 } else if (sme->crypto.wpa_versions & NL80211_WPA_VERSION_1) {
348 if (cipher_group == WLAN_CIPHER_SUITE_TKIP)
349 security = WILC_FW_SEC_WPA_TKIP;
351 security = WILC_FW_SEC_WPA_AES;
354 netdev_err(dev, "%s: Unsupported cipher\n",
360 if ((sme->crypto.wpa_versions & NL80211_WPA_VERSION_1) ||
361 (sme->crypto.wpa_versions & NL80211_WPA_VERSION_2)) {
362 for (i = 0; i < sme->crypto.n_ciphers_pairwise; i++) {
363 u32 ciphers_pairwise = sme->crypto.ciphers_pairwise[i];
365 if (ciphers_pairwise == WLAN_CIPHER_SUITE_TKIP)
366 security |= WILC_FW_TKIP;
368 security |= WILC_FW_AES;
372 switch (sme->auth_type) {
373 case NL80211_AUTHTYPE_OPEN_SYSTEM:
374 auth_type = WILC_FW_AUTH_OPEN_SYSTEM;
377 case NL80211_AUTHTYPE_SHARED_KEY:
378 auth_type = WILC_FW_AUTH_SHARED_KEY;
385 if (sme->crypto.n_akm_suites) {
386 if (sme->crypto.akm_suites[0] == WLAN_AKM_SUITE_8021X)
387 auth_type = WILC_FW_AUTH_IEEE8021;
390 if (wfi_drv->usr_scan_req.scan_result) {
391 netdev_err(vif->ndev, "%s: Scan in progress\n", __func__);
396 bss = cfg80211_get_bss(wiphy, sme->channel, sme->bssid, sme->ssid,
397 sme->ssid_len, IEEE80211_BSS_TYPE_ANY,
398 IEEE80211_PRIVACY(sme->privacy));
404 if (ether_addr_equal_unaligned(vif->bssid, bss->bssid)) {
409 join_params = wilc_parse_join_bss_param(bss, &sme->crypto);
411 netdev_err(dev, "%s: failed to construct join param\n",
417 ch = ieee80211_frequency_to_channel(bss->channel->center_freq);
418 vif->wilc->op_ch = ch;
419 if (vif->iftype != WILC_CLIENT_MODE)
420 vif->wilc->sta_ch = ch;
422 wilc_wlan_set_bssid(dev, bss->bssid, WILC_STATION_MODE);
424 wfi_drv->conn_info.security = security;
425 wfi_drv->conn_info.auth_type = auth_type;
426 wfi_drv->conn_info.ch = ch;
427 wfi_drv->conn_info.conn_result = cfg_connect_result;
428 wfi_drv->conn_info.arg = priv;
429 wfi_drv->conn_info.param = join_params;
431 ret = wilc_set_join_req(vif, bss->bssid, sme->ie, sme->ie_len);
433 netdev_err(dev, "wilc_set_join_req(): Error\n");
435 if (vif->iftype != WILC_CLIENT_MODE)
436 vif->wilc->sta_ch = WILC_INVALID_CHANNEL;
437 wilc_wlan_set_bssid(dev, NULL, WILC_STATION_MODE);
438 wfi_drv->conn_info.conn_result = NULL;
444 cfg80211_put_bss(wiphy, bss);
448 cfg80211_put_bss(wiphy, bss);
451 vif->connecting = false;
455 static int disconnect(struct wiphy *wiphy, struct net_device *dev,
458 struct wilc_vif *vif = netdev_priv(dev);
459 struct wilc_priv *priv = &vif->priv;
460 struct wilc *wilc = vif->wilc;
463 vif->connecting = false;
469 /* already disconnected done */
470 cfg80211_disconnected(dev, 0, NULL, 0, true, GFP_KERNEL);
474 if (vif->iftype != WILC_CLIENT_MODE)
475 wilc->sta_ch = WILC_INVALID_CHANNEL;
476 wilc_wlan_set_bssid(priv->dev, NULL, WILC_STATION_MODE);
478 priv->hif_drv->p2p_timeout = 0;
480 ret = wilc_disconnect(vif);
482 netdev_err(priv->dev, "Error in disconnecting\n");
491 static inline void wilc_wfi_cfg_copy_wep_info(struct wilc_priv *priv,
493 struct key_params *params)
495 priv->wep_key_len[key_index] = params->key_len;
496 memcpy(priv->wep_key[key_index], params->key, params->key_len);
499 static int wilc_wfi_cfg_allocate_wpa_entry(struct wilc_priv *priv, u8 idx)
501 if (!priv->wilc_gtk[idx]) {
502 priv->wilc_gtk[idx] = kzalloc(sizeof(*priv->wilc_gtk[idx]),
504 if (!priv->wilc_gtk[idx])
508 if (!priv->wilc_ptk[idx]) {
509 priv->wilc_ptk[idx] = kzalloc(sizeof(*priv->wilc_ptk[idx]),
511 if (!priv->wilc_ptk[idx])
518 static int wilc_wfi_cfg_copy_wpa_info(struct wilc_wfi_key *key_info,
519 struct key_params *params)
521 kfree(key_info->key);
523 key_info->key = kmemdup(params->key, params->key_len, GFP_KERNEL);
527 kfree(key_info->seq);
529 if (params->seq_len > 0) {
530 key_info->seq = kmemdup(params->seq, params->seq_len,
536 key_info->cipher = params->cipher;
537 key_info->key_len = params->key_len;
538 key_info->seq_len = params->seq_len;
543 static int add_key(struct wiphy *wiphy, struct net_device *netdev, u8 key_index,
544 bool pairwise, const u8 *mac_addr, struct key_params *params)
547 int ret = 0, keylen = params->key_len;
548 const u8 *rx_mic = NULL;
549 const u8 *tx_mic = NULL;
550 u8 mode = WILC_FW_SEC_NO;
552 struct wilc_vif *vif = netdev_priv(netdev);
553 struct wilc_priv *priv = &vif->priv;
555 switch (params->cipher) {
556 case WLAN_CIPHER_SUITE_WEP40:
557 case WLAN_CIPHER_SUITE_WEP104:
558 if (priv->wdev.iftype == NL80211_IFTYPE_AP) {
559 wilc_wfi_cfg_copy_wep_info(priv, key_index, params);
561 if (params->cipher == WLAN_CIPHER_SUITE_WEP40)
562 mode = WILC_FW_SEC_WEP;
564 mode = WILC_FW_SEC_WEP_EXTENDED;
566 ret = wilc_add_wep_key_bss_ap(vif, params->key,
569 WILC_FW_AUTH_OPEN_SYSTEM);
572 if (memcmp(params->key, priv->wep_key[key_index],
574 wilc_wfi_cfg_copy_wep_info(priv, key_index, params);
576 ret = wilc_add_wep_key_bss_sta(vif, params->key,
583 case WLAN_CIPHER_SUITE_TKIP:
584 case WLAN_CIPHER_SUITE_CCMP:
585 if (priv->wdev.iftype == NL80211_IFTYPE_AP ||
586 priv->wdev.iftype == NL80211_IFTYPE_P2P_GO) {
587 struct wilc_wfi_key *key;
589 ret = wilc_wfi_cfg_allocate_wpa_entry(priv, key_index);
593 if (params->key_len > 16 &&
594 params->cipher == WLAN_CIPHER_SUITE_TKIP) {
595 tx_mic = params->key + 24;
596 rx_mic = params->key + 16;
597 keylen = params->key_len - 16;
601 if (params->cipher == WLAN_CIPHER_SUITE_TKIP)
602 mode = WILC_FW_SEC_WPA_TKIP;
604 mode = WILC_FW_SEC_WPA2_AES;
606 priv->wilc_groupkey = mode;
608 key = priv->wilc_gtk[key_index];
610 if (params->cipher == WLAN_CIPHER_SUITE_TKIP)
611 mode = WILC_FW_SEC_WPA_TKIP;
613 mode = priv->wilc_groupkey | WILC_FW_AES;
615 key = priv->wilc_ptk[key_index];
617 ret = wilc_wfi_cfg_copy_wpa_info(key, params);
621 op_mode = WILC_AP_MODE;
623 if (params->key_len > 16 &&
624 params->cipher == WLAN_CIPHER_SUITE_TKIP) {
625 rx_mic = params->key + 24;
626 tx_mic = params->key + 16;
627 keylen = params->key_len - 16;
630 op_mode = WILC_STATION_MODE;
634 ret = wilc_add_rx_gtk(vif, params->key, keylen,
635 key_index, params->seq_len,
636 params->seq, rx_mic, tx_mic,
639 ret = wilc_add_ptk(vif, params->key, keylen, mac_addr,
640 rx_mic, tx_mic, op_mode, mode,
646 netdev_err(netdev, "%s: Unsupported cipher\n", __func__);
653 static int del_key(struct wiphy *wiphy, struct net_device *netdev,
658 struct wilc_vif *vif = netdev_priv(netdev);
659 struct wilc_priv *priv = &vif->priv;
661 if (priv->wilc_gtk[key_index]) {
662 kfree(priv->wilc_gtk[key_index]->key);
663 priv->wilc_gtk[key_index]->key = NULL;
664 kfree(priv->wilc_gtk[key_index]->seq);
665 priv->wilc_gtk[key_index]->seq = NULL;
667 kfree(priv->wilc_gtk[key_index]);
668 priv->wilc_gtk[key_index] = NULL;
671 if (priv->wilc_ptk[key_index]) {
672 kfree(priv->wilc_ptk[key_index]->key);
673 priv->wilc_ptk[key_index]->key = NULL;
674 kfree(priv->wilc_ptk[key_index]->seq);
675 priv->wilc_ptk[key_index]->seq = NULL;
676 kfree(priv->wilc_ptk[key_index]);
677 priv->wilc_ptk[key_index] = NULL;
680 if (key_index <= 3 && priv->wep_key_len[key_index]) {
681 memset(priv->wep_key[key_index], 0,
682 priv->wep_key_len[key_index]);
683 priv->wep_key_len[key_index] = 0;
684 wilc_remove_wep_key(vif, key_index);
690 static int get_key(struct wiphy *wiphy, struct net_device *netdev, u8 key_index,
691 bool pairwise, const u8 *mac_addr, void *cookie,
692 void (*callback)(void *cookie, struct key_params *))
694 struct wilc_vif *vif = netdev_priv(netdev);
695 struct wilc_priv *priv = &vif->priv;
696 struct key_params key_params;
699 key_params.key = priv->wilc_gtk[key_index]->key;
700 key_params.cipher = priv->wilc_gtk[key_index]->cipher;
701 key_params.key_len = priv->wilc_gtk[key_index]->key_len;
702 key_params.seq = priv->wilc_gtk[key_index]->seq;
703 key_params.seq_len = priv->wilc_gtk[key_index]->seq_len;
705 key_params.key = priv->wilc_ptk[key_index]->key;
706 key_params.cipher = priv->wilc_ptk[key_index]->cipher;
707 key_params.key_len = priv->wilc_ptk[key_index]->key_len;
708 key_params.seq = priv->wilc_ptk[key_index]->seq;
709 key_params.seq_len = priv->wilc_ptk[key_index]->seq_len;
712 callback(cookie, &key_params);
717 static int set_default_key(struct wiphy *wiphy, struct net_device *netdev,
718 u8 key_index, bool unicast, bool multicast)
720 struct wilc_vif *vif = netdev_priv(netdev);
722 wilc_set_wep_default_keyid(vif, key_index);
727 static int get_station(struct wiphy *wiphy, struct net_device *dev,
728 const u8 *mac, struct station_info *sinfo)
730 struct wilc_vif *vif = netdev_priv(dev);
731 struct wilc_priv *priv = &vif->priv;
733 u32 associatedsta = ~0;
734 u32 inactive_time = 0;
736 if (vif->iftype == WILC_AP_MODE || vif->iftype == WILC_GO_MODE) {
737 for (i = 0; i < NUM_STA_ASSOCIATED; i++) {
739 priv->assoc_stainfo.sta_associated_bss[i],
746 if (associatedsta == ~0) {
747 netdev_err(dev, "sta required is not associated\n");
751 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_INACTIVE_TIME);
753 wilc_get_inactive_time(vif, mac, &inactive_time);
754 sinfo->inactive_time = 1000 * inactive_time;
755 } else if (vif->iftype == WILC_STATION_MODE) {
756 struct rf_info stats;
758 wilc_get_statistics(vif, &stats);
760 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_SIGNAL) |
761 BIT_ULL(NL80211_STA_INFO_RX_PACKETS) |
762 BIT_ULL(NL80211_STA_INFO_TX_PACKETS) |
763 BIT_ULL(NL80211_STA_INFO_TX_FAILED) |
764 BIT_ULL(NL80211_STA_INFO_TX_BITRATE);
766 sinfo->signal = stats.rssi;
767 sinfo->rx_packets = stats.rx_cnt;
768 sinfo->tx_packets = stats.tx_cnt + stats.tx_fail_cnt;
769 sinfo->tx_failed = stats.tx_fail_cnt;
770 sinfo->txrate.legacy = stats.link_speed * 10;
772 if (stats.link_speed > TCP_ACK_FILTER_LINK_SPEED_THRESH &&
773 stats.link_speed != DEFAULT_LINK_SPEED)
774 wilc_enable_tcp_ack_filter(vif, true);
775 else if (stats.link_speed != DEFAULT_LINK_SPEED)
776 wilc_enable_tcp_ack_filter(vif, false);
781 static int change_bss(struct wiphy *wiphy, struct net_device *dev,
782 struct bss_parameters *params)
787 static int set_wiphy_params(struct wiphy *wiphy, u32 changed)
790 struct cfg_param_attr cfg_param_val;
791 struct wilc *wl = wiphy_priv(wiphy);
792 struct wilc_vif *vif;
793 struct wilc_priv *priv;
796 srcu_idx = srcu_read_lock(&wl->srcu);
797 vif = wilc_get_wl_to_vif(wl);
802 cfg_param_val.flag = 0;
804 if (changed & WIPHY_PARAM_RETRY_SHORT) {
805 netdev_dbg(vif->ndev,
806 "Setting WIPHY_PARAM_RETRY_SHORT %d\n",
808 cfg_param_val.flag |= WILC_CFG_PARAM_RETRY_SHORT;
809 cfg_param_val.short_retry_limit = wiphy->retry_short;
811 if (changed & WIPHY_PARAM_RETRY_LONG) {
812 netdev_dbg(vif->ndev,
813 "Setting WIPHY_PARAM_RETRY_LONG %d\n",
815 cfg_param_val.flag |= WILC_CFG_PARAM_RETRY_LONG;
816 cfg_param_val.long_retry_limit = wiphy->retry_long;
818 if (changed & WIPHY_PARAM_FRAG_THRESHOLD) {
819 if (wiphy->frag_threshold > 255 &&
820 wiphy->frag_threshold < 7937) {
821 netdev_dbg(vif->ndev,
822 "Setting WIPHY_PARAM_FRAG_THRESHOLD %d\n",
823 wiphy->frag_threshold);
824 cfg_param_val.flag |= WILC_CFG_PARAM_FRAG_THRESHOLD;
825 cfg_param_val.frag_threshold = wiphy->frag_threshold;
827 netdev_err(vif->ndev,
828 "Fragmentation threshold out of range\n");
833 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
834 if (wiphy->rts_threshold > 255) {
835 netdev_dbg(vif->ndev,
836 "Setting WIPHY_PARAM_RTS_THRESHOLD %d\n",
837 wiphy->rts_threshold);
838 cfg_param_val.flag |= WILC_CFG_PARAM_RTS_THRESHOLD;
839 cfg_param_val.rts_threshold = wiphy->rts_threshold;
841 netdev_err(vif->ndev, "RTS threshold out of range\n");
846 ret = wilc_hif_set_cfg(vif, &cfg_param_val);
848 netdev_err(priv->dev, "Error in setting WIPHY PARAMS\n");
851 srcu_read_unlock(&wl->srcu, srcu_idx);
855 static int set_pmksa(struct wiphy *wiphy, struct net_device *netdev,
856 struct cfg80211_pmksa *pmksa)
858 struct wilc_vif *vif = netdev_priv(netdev);
859 struct wilc_priv *priv = &vif->priv;
864 for (i = 0; i < priv->pmkid_list.numpmkid; i++) {
865 if (!memcmp(pmksa->bssid, priv->pmkid_list.pmkidlist[i].bssid,
871 if (i < WILC_MAX_NUM_PMKIDS) {
872 memcpy(priv->pmkid_list.pmkidlist[i].bssid, pmksa->bssid,
874 memcpy(priv->pmkid_list.pmkidlist[i].pmkid, pmksa->pmkid,
876 if (!(flag == PMKID_FOUND))
877 priv->pmkid_list.numpmkid++;
879 netdev_err(netdev, "Invalid PMKID index\n");
884 ret = wilc_set_pmkid_info(vif, &priv->pmkid_list);
889 static int del_pmksa(struct wiphy *wiphy, struct net_device *netdev,
890 struct cfg80211_pmksa *pmksa)
893 struct wilc_vif *vif = netdev_priv(netdev);
894 struct wilc_priv *priv = &vif->priv;
896 for (i = 0; i < priv->pmkid_list.numpmkid; i++) {
897 if (!memcmp(pmksa->bssid, priv->pmkid_list.pmkidlist[i].bssid,
899 memset(&priv->pmkid_list.pmkidlist[i], 0,
900 sizeof(struct wilc_pmkid));
905 if (i == priv->pmkid_list.numpmkid)
908 for (; i < (priv->pmkid_list.numpmkid - 1); i++) {
909 memcpy(priv->pmkid_list.pmkidlist[i].bssid,
910 priv->pmkid_list.pmkidlist[i + 1].bssid,
912 memcpy(priv->pmkid_list.pmkidlist[i].pmkid,
913 priv->pmkid_list.pmkidlist[i + 1].pmkid,
916 priv->pmkid_list.numpmkid--;
921 static int flush_pmksa(struct wiphy *wiphy, struct net_device *netdev)
923 struct wilc_vif *vif = netdev_priv(netdev);
925 memset(&vif->priv.pmkid_list, 0, sizeof(struct wilc_pmkid_attr));
930 static inline void wilc_wfi_cfg_parse_ch_attr(u8 *buf, u32 len, u8 sta_ch)
932 struct wilc_attr_entry *e;
933 struct wilc_attr_ch_list *ch_list;
934 struct wilc_attr_oper_ch *op_ch;
939 if (sta_ch == WILC_INVALID_CHANNEL)
942 while (index + sizeof(*e) <= len) {
943 e = (struct wilc_attr_entry *)&buf[index];
944 if (e->attr_type == IEEE80211_P2P_ATTR_CHANNEL_LIST)
946 else if (e->attr_type == IEEE80211_P2P_ATTR_OPER_CHANNEL)
948 if (ch_list_idx && op_ch_idx)
950 index += le16_to_cpu(e->attr_len) + sizeof(*e);
955 struct wilc_ch_list_elem *e;
958 ch_list = (struct wilc_attr_ch_list *)&buf[ch_list_idx];
959 attr_size = le16_to_cpu(ch_list->attr_len);
960 for (i = 0; i < attr_size;) {
961 e = (struct wilc_ch_list_elem *)(ch_list->elem + i);
962 if (e->op_class == WILC_WLAN_OPERATING_CLASS_2_4GHZ) {
963 memset(e->ch_list, sta_ch, e->no_of_channels);
966 i += e->no_of_channels;
971 op_ch = (struct wilc_attr_oper_ch *)&buf[op_ch_idx];
972 op_ch->op_class = WILC_WLAN_OPERATING_CLASS_2_4GHZ;
973 op_ch->op_channel = sta_ch;
977 void wilc_wfi_p2p_rx(struct wilc_vif *vif, u8 *buff, u32 size)
979 struct wilc *wl = vif->wilc;
980 struct wilc_priv *priv = &vif->priv;
981 struct host_if_drv *wfi_drv = priv->hif_drv;
982 struct ieee80211_mgmt *mgmt;
983 struct wilc_vendor_specific_ie *p;
984 struct wilc_p2p_pub_act_frame *d;
985 int ie_offset = offsetof(struct ieee80211_mgmt, u) + sizeof(*d);
987 u32 header, pkt_offset;
990 header = get_unaligned_le32(buff - HOST_HDR_OFFSET);
991 pkt_offset = FIELD_GET(WILC_PKT_HDR_OFFSET_FIELD, header);
993 if (pkt_offset & IS_MANAGMEMENT_CALLBACK) {
995 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)buff;
997 if (ieee80211_is_probe_resp(hdr->frame_control) ||
998 pkt_offset & IS_MGMT_STATUS_SUCCES)
1001 cfg80211_mgmt_tx_status(&priv->wdev, priv->tx_cookie, buff,
1002 size, ack, GFP_KERNEL);
1006 freq = ieee80211_channel_to_frequency(wl->op_ch, NL80211_BAND_2GHZ);
1008 mgmt = (struct ieee80211_mgmt *)buff;
1009 if (!ieee80211_is_action(mgmt->frame_control))
1012 if (priv->cfg_scanning &&
1013 time_after_eq(jiffies, (unsigned long)wfi_drv->p2p_timeout)) {
1014 netdev_dbg(vif->ndev, "Receiving action wrong ch\n");
1018 if (!ieee80211_is_public_action((struct ieee80211_hdr *)buff, size))
1021 d = (struct wilc_p2p_pub_act_frame *)(&mgmt->u.action);
1022 if (d->oui_subtype != GO_NEG_REQ && d->oui_subtype != GO_NEG_RSP &&
1023 d->oui_subtype != P2P_INV_REQ && d->oui_subtype != P2P_INV_RSP)
1026 vendor_ie = cfg80211_find_vendor_ie(WLAN_OUI_WFA, WLAN_OUI_TYPE_WFA_P2P,
1027 buff + ie_offset, size - ie_offset);
1031 p = (struct wilc_vendor_specific_ie *)vendor_ie;
1032 wilc_wfi_cfg_parse_ch_attr(p->attr, p->tag_len - 4, vif->wilc->sta_ch);
1035 cfg80211_rx_mgmt(&priv->wdev, freq, 0, buff, size, 0);
1038 static void wilc_wfi_mgmt_tx_complete(void *priv, int status)
1040 struct wilc_p2p_mgmt_data *pv_data = priv;
1042 kfree(pv_data->buff);
1046 static void wilc_wfi_remain_on_channel_expired(void *data, u64 cookie)
1048 struct wilc_vif *vif = data;
1049 struct wilc_priv *priv = &vif->priv;
1050 struct wilc_wfi_p2p_listen_params *params = &priv->remain_on_ch_params;
1052 if (cookie != params->listen_cookie)
1055 priv->p2p_listen_state = false;
1057 cfg80211_remain_on_channel_expired(&priv->wdev, params->listen_cookie,
1058 params->listen_ch, GFP_KERNEL);
1061 static int remain_on_channel(struct wiphy *wiphy,
1062 struct wireless_dev *wdev,
1063 struct ieee80211_channel *chan,
1064 unsigned int duration, u64 *cookie)
1067 struct wilc_vif *vif = netdev_priv(wdev->netdev);
1068 struct wilc_priv *priv = &vif->priv;
1071 if (wdev->iftype == NL80211_IFTYPE_AP) {
1072 netdev_dbg(vif->ndev, "Required while in AP mode\n");
1076 id = ++priv->inc_roc_cookie;
1078 id = ++priv->inc_roc_cookie;
1080 ret = wilc_remain_on_channel(vif, id, duration, chan->hw_value,
1081 wilc_wfi_remain_on_channel_expired,
1086 vif->wilc->op_ch = chan->hw_value;
1088 priv->remain_on_ch_params.listen_ch = chan;
1089 priv->remain_on_ch_params.listen_cookie = id;
1091 priv->p2p_listen_state = true;
1092 priv->remain_on_ch_params.listen_duration = duration;
1094 cfg80211_ready_on_channel(wdev, *cookie, chan, duration, GFP_KERNEL);
1095 mod_timer(&vif->hif_drv->remain_on_ch_timer,
1096 jiffies + msecs_to_jiffies(duration + 1000));
1101 static int cancel_remain_on_channel(struct wiphy *wiphy,
1102 struct wireless_dev *wdev,
1105 struct wilc_vif *vif = netdev_priv(wdev->netdev);
1106 struct wilc_priv *priv = &vif->priv;
1108 if (cookie != priv->remain_on_ch_params.listen_cookie)
1111 return wilc_listen_state_expired(vif, cookie);
1114 static int mgmt_tx(struct wiphy *wiphy,
1115 struct wireless_dev *wdev,
1116 struct cfg80211_mgmt_tx_params *params,
1119 struct ieee80211_channel *chan = params->chan;
1120 unsigned int wait = params->wait;
1121 const u8 *buf = params->buf;
1122 size_t len = params->len;
1123 const struct ieee80211_mgmt *mgmt;
1124 struct wilc_p2p_mgmt_data *mgmt_tx;
1125 struct wilc_vif *vif = netdev_priv(wdev->netdev);
1126 struct wilc_priv *priv = &vif->priv;
1127 struct host_if_drv *wfi_drv = priv->hif_drv;
1128 struct wilc_vendor_specific_ie *p;
1129 struct wilc_p2p_pub_act_frame *d;
1130 int ie_offset = offsetof(struct ieee80211_mgmt, u) + sizeof(*d);
1131 const u8 *vendor_ie;
1134 *cookie = prandom_u32();
1135 priv->tx_cookie = *cookie;
1136 mgmt = (const struct ieee80211_mgmt *)buf;
1138 if (!ieee80211_is_mgmt(mgmt->frame_control))
1141 mgmt_tx = kmalloc(sizeof(*mgmt_tx), GFP_KERNEL);
1147 mgmt_tx->buff = kmemdup(buf, len, GFP_KERNEL);
1148 if (!mgmt_tx->buff) {
1154 mgmt_tx->size = len;
1156 if (ieee80211_is_probe_resp(mgmt->frame_control)) {
1157 wilc_set_mac_chnl_num(vif, chan->hw_value);
1158 vif->wilc->op_ch = chan->hw_value;
1159 goto out_txq_add_pkt;
1162 if (!ieee80211_is_public_action((struct ieee80211_hdr *)buf, len))
1163 goto out_set_timeout;
1165 d = (struct wilc_p2p_pub_act_frame *)(&mgmt->u.action);
1166 if (d->oui_type != WLAN_OUI_TYPE_WFA_P2P ||
1167 d->oui_subtype != GO_NEG_CONF) {
1168 wilc_set_mac_chnl_num(vif, chan->hw_value);
1169 vif->wilc->op_ch = chan->hw_value;
1172 if (d->oui_subtype != P2P_INV_REQ && d->oui_subtype != P2P_INV_RSP)
1173 goto out_set_timeout;
1175 vendor_ie = cfg80211_find_vendor_ie(WLAN_OUI_WFA, WLAN_OUI_TYPE_WFA_P2P,
1176 mgmt_tx->buff + ie_offset,
1179 goto out_set_timeout;
1181 p = (struct wilc_vendor_specific_ie *)vendor_ie;
1182 wilc_wfi_cfg_parse_ch_attr(p->attr, p->tag_len - 4, vif->wilc->sta_ch);
1185 wfi_drv->p2p_timeout = (jiffies + msecs_to_jiffies(wait));
1189 wilc_wlan_txq_add_mgmt_pkt(wdev->netdev, mgmt_tx,
1190 mgmt_tx->buff, mgmt_tx->size,
1191 wilc_wfi_mgmt_tx_complete);
1198 static int mgmt_tx_cancel_wait(struct wiphy *wiphy,
1199 struct wireless_dev *wdev,
1202 struct wilc_vif *vif = netdev_priv(wdev->netdev);
1203 struct wilc_priv *priv = &vif->priv;
1204 struct host_if_drv *wfi_drv = priv->hif_drv;
1206 wfi_drv->p2p_timeout = jiffies;
1208 if (!priv->p2p_listen_state) {
1209 struct wilc_wfi_p2p_listen_params *params;
1211 params = &priv->remain_on_ch_params;
1213 cfg80211_remain_on_channel_expired(wdev,
1214 params->listen_cookie,
1222 void wilc_update_mgmt_frame_registrations(struct wiphy *wiphy,
1223 struct wireless_dev *wdev,
1224 struct mgmt_frame_regs *upd)
1226 struct wilc *wl = wiphy_priv(wiphy);
1227 struct wilc_vif *vif = netdev_priv(wdev->netdev);
1228 u32 presp_bit = BIT(IEEE80211_STYPE_PROBE_REQ >> 4);
1229 u32 action_bit = BIT(IEEE80211_STYPE_ACTION >> 4);
1231 if (wl->initialized) {
1232 bool prev = vif->mgmt_reg_stypes & presp_bit;
1233 bool now = upd->interface_stypes & presp_bit;
1236 wilc_frame_register(vif, IEEE80211_STYPE_PROBE_REQ, now);
1238 prev = vif->mgmt_reg_stypes & action_bit;
1239 now = upd->interface_stypes & action_bit;
1242 wilc_frame_register(vif, IEEE80211_STYPE_ACTION, now);
1245 vif->mgmt_reg_stypes =
1246 upd->interface_stypes & (presp_bit | action_bit);
1249 static int set_cqm_rssi_config(struct wiphy *wiphy, struct net_device *dev,
1250 s32 rssi_thold, u32 rssi_hyst)
1255 static int dump_station(struct wiphy *wiphy, struct net_device *dev,
1256 int idx, u8 *mac, struct station_info *sinfo)
1258 struct wilc_vif *vif = netdev_priv(dev);
1264 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_SIGNAL);
1266 ret = wilc_get_rssi(vif, &sinfo->signal);
1270 memcpy(mac, vif->priv.associated_bss, ETH_ALEN);
1274 static int set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
1275 bool enabled, int timeout)
1277 struct wilc_vif *vif = netdev_priv(dev);
1278 struct wilc_priv *priv = &vif->priv;
1283 wilc_set_power_mgmt(vif, enabled, timeout);
1288 static int change_virtual_intf(struct wiphy *wiphy, struct net_device *dev,
1289 enum nl80211_iftype type,
1290 struct vif_params *params)
1292 struct wilc *wl = wiphy_priv(wiphy);
1293 struct wilc_vif *vif = netdev_priv(dev);
1294 struct wilc_priv *priv = &vif->priv;
1297 case NL80211_IFTYPE_STATION:
1298 vif->connecting = false;
1299 dev->ieee80211_ptr->iftype = type;
1300 priv->wdev.iftype = type;
1301 vif->monitor_flag = 0;
1302 if (vif->iftype == WILC_AP_MODE || vif->iftype == WILC_GO_MODE)
1303 wilc_wfi_deinit_mon_interface(wl, true);
1304 vif->iftype = WILC_STATION_MODE;
1306 if (wl->initialized)
1307 wilc_set_operation_mode(vif, wilc_get_vif_idx(vif),
1308 WILC_STATION_MODE, vif->idx);
1310 memset(priv->assoc_stainfo.sta_associated_bss, 0,
1311 WILC_MAX_NUM_STA * ETH_ALEN);
1314 case NL80211_IFTYPE_P2P_CLIENT:
1315 vif->connecting = false;
1316 dev->ieee80211_ptr->iftype = type;
1317 priv->wdev.iftype = type;
1318 vif->monitor_flag = 0;
1319 vif->iftype = WILC_CLIENT_MODE;
1321 if (wl->initialized)
1322 wilc_set_operation_mode(vif, wilc_get_vif_idx(vif),
1323 WILC_STATION_MODE, vif->idx);
1326 case NL80211_IFTYPE_AP:
1327 dev->ieee80211_ptr->iftype = type;
1328 priv->wdev.iftype = type;
1329 vif->iftype = WILC_AP_MODE;
1331 if (wl->initialized)
1332 wilc_set_operation_mode(vif, wilc_get_vif_idx(vif),
1333 WILC_AP_MODE, vif->idx);
1336 case NL80211_IFTYPE_P2P_GO:
1337 dev->ieee80211_ptr->iftype = type;
1338 priv->wdev.iftype = type;
1339 vif->iftype = WILC_GO_MODE;
1341 if (wl->initialized)
1342 wilc_set_operation_mode(vif, wilc_get_vif_idx(vif),
1343 WILC_AP_MODE, vif->idx);
1347 netdev_err(dev, "Unknown interface type= %d\n", type);
1354 static int start_ap(struct wiphy *wiphy, struct net_device *dev,
1355 struct cfg80211_ap_settings *settings)
1357 struct wilc_vif *vif = netdev_priv(dev);
1360 ret = set_channel(wiphy, &settings->chandef);
1362 netdev_err(dev, "Error in setting channel\n");
1364 wilc_wlan_set_bssid(dev, dev->dev_addr, WILC_AP_MODE);
1366 return wilc_add_beacon(vif, settings->beacon_interval,
1367 settings->dtim_period, &settings->beacon);
1370 static int change_beacon(struct wiphy *wiphy, struct net_device *dev,
1371 struct cfg80211_beacon_data *beacon)
1373 struct wilc_vif *vif = netdev_priv(dev);
1375 return wilc_add_beacon(vif, 0, 0, beacon);
1378 static int stop_ap(struct wiphy *wiphy, struct net_device *dev)
1381 struct wilc_vif *vif = netdev_priv(dev);
1383 wilc_wlan_set_bssid(dev, NULL, WILC_AP_MODE);
1385 ret = wilc_del_beacon(vif);
1388 netdev_err(dev, "Host delete beacon fail\n");
1393 static int add_station(struct wiphy *wiphy, struct net_device *dev,
1394 const u8 *mac, struct station_parameters *params)
1397 struct wilc_vif *vif = netdev_priv(dev);
1398 struct wilc_priv *priv = &vif->priv;
1400 if (vif->iftype == WILC_AP_MODE || vif->iftype == WILC_GO_MODE) {
1401 memcpy(priv->assoc_stainfo.sta_associated_bss[params->aid], mac,
1404 ret = wilc_add_station(vif, mac, params);
1406 netdev_err(dev, "Host add station fail\n");
1412 static int del_station(struct wiphy *wiphy, struct net_device *dev,
1413 struct station_del_parameters *params)
1415 const u8 *mac = params->mac;
1417 struct wilc_vif *vif = netdev_priv(dev);
1418 struct wilc_priv *priv = &vif->priv;
1419 struct sta_info *info;
1421 if (!(vif->iftype == WILC_AP_MODE || vif->iftype == WILC_GO_MODE))
1424 info = &priv->assoc_stainfo;
1427 ret = wilc_del_allstation(vif, info->sta_associated_bss);
1429 ret = wilc_del_station(vif, mac);
1431 netdev_err(dev, "Host delete station fail\n");
1435 static int change_station(struct wiphy *wiphy, struct net_device *dev,
1436 const u8 *mac, struct station_parameters *params)
1439 struct wilc_vif *vif = netdev_priv(dev);
1441 if (vif->iftype == WILC_AP_MODE || vif->iftype == WILC_GO_MODE) {
1442 ret = wilc_edit_station(vif, mac, params);
1444 netdev_err(dev, "Host edit station fail\n");
1449 static struct wilc_vif *wilc_get_vif_from_type(struct wilc *wl, int type)
1451 struct wilc_vif *vif;
1453 list_for_each_entry_rcu(vif, &wl->vif_list, list) {
1454 if (vif->iftype == type)
1461 static struct wireless_dev *add_virtual_intf(struct wiphy *wiphy,
1463 unsigned char name_assign_type,
1464 enum nl80211_iftype type,
1465 struct vif_params *params)
1467 struct wilc *wl = wiphy_priv(wiphy);
1468 struct wilc_vif *vif;
1469 struct wireless_dev *wdev;
1472 if (type == NL80211_IFTYPE_MONITOR) {
1473 struct net_device *ndev;
1476 srcu_idx = srcu_read_lock(&wl->srcu);
1477 vif = wilc_get_vif_from_type(wl, WILC_AP_MODE);
1479 vif = wilc_get_vif_from_type(wl, WILC_GO_MODE);
1481 srcu_read_unlock(&wl->srcu, srcu_idx);
1482 goto validate_interface;
1486 if (vif->monitor_flag) {
1487 srcu_read_unlock(&wl->srcu, srcu_idx);
1488 goto validate_interface;
1491 ndev = wilc_wfi_init_mon_interface(wl, name, vif->ndev);
1493 vif->monitor_flag = 1;
1495 srcu_read_unlock(&wl->srcu, srcu_idx);
1496 return ERR_PTR(-EINVAL);
1499 wdev = &vif->priv.wdev;
1500 srcu_read_unlock(&wl->srcu, srcu_idx);
1505 mutex_lock(&wl->vif_mutex);
1506 if (wl->vif_num == WILC_NUM_CONCURRENT_IFC) {
1507 pr_err("Reached maximum number of interface\n");
1508 mutex_unlock(&wl->vif_mutex);
1509 return ERR_PTR(-EINVAL);
1511 mutex_unlock(&wl->vif_mutex);
1514 case NL80211_IFTYPE_STATION:
1515 iftype = WILC_STATION_MODE;
1517 case NL80211_IFTYPE_AP:
1518 iftype = WILC_AP_MODE;
1521 return ERR_PTR(-EOPNOTSUPP);
1524 vif = wilc_netdev_ifc_init(wl, name, iftype, type, true);
1526 return ERR_CAST(vif);
1528 return &vif->priv.wdev;
1531 static int del_virtual_intf(struct wiphy *wiphy, struct wireless_dev *wdev)
1533 struct wilc *wl = wiphy_priv(wiphy);
1534 struct wilc_vif *vif;
1536 if (wdev->iftype == NL80211_IFTYPE_AP ||
1537 wdev->iftype == NL80211_IFTYPE_P2P_GO)
1538 wilc_wfi_deinit_mon_interface(wl, true);
1539 vif = netdev_priv(wdev->netdev);
1540 cfg80211_stop_iface(wiphy, wdev, GFP_KERNEL);
1541 unregister_netdevice(vif->ndev);
1542 vif->monitor_flag = 0;
1544 wilc_set_operation_mode(vif, 0, 0, 0);
1545 mutex_lock(&wl->vif_mutex);
1546 list_del_rcu(&vif->list);
1548 mutex_unlock(&wl->vif_mutex);
1549 synchronize_srcu(&wl->srcu);
1553 static int wilc_suspend(struct wiphy *wiphy, struct cfg80211_wowlan *wow)
1555 struct wilc *wl = wiphy_priv(wiphy);
1557 if (!wow && wilc_wlan_get_num_conn_ifcs(wl))
1558 wl->suspend_event = true;
1560 wl->suspend_event = false;
1565 static int wilc_resume(struct wiphy *wiphy)
1570 static void wilc_set_wakeup(struct wiphy *wiphy, bool enabled)
1572 struct wilc *wl = wiphy_priv(wiphy);
1573 struct wilc_vif *vif;
1576 srcu_idx = srcu_read_lock(&wl->srcu);
1577 vif = wilc_get_wl_to_vif(wl);
1579 srcu_read_unlock(&wl->srcu, srcu_idx);
1583 netdev_info(vif->ndev, "cfg set wake up = %d\n", enabled);
1584 srcu_read_unlock(&wl->srcu, srcu_idx);
1587 static int set_tx_power(struct wiphy *wiphy, struct wireless_dev *wdev,
1588 enum nl80211_tx_power_setting type, int mbm)
1592 s32 tx_power = MBM_TO_DBM(mbm);
1593 struct wilc *wl = wiphy_priv(wiphy);
1594 struct wilc_vif *vif;
1596 if (!wl->initialized)
1599 srcu_idx = srcu_read_lock(&wl->srcu);
1600 vif = wilc_get_wl_to_vif(wl);
1602 srcu_read_unlock(&wl->srcu, srcu_idx);
1606 netdev_info(vif->ndev, "Setting tx power %d\n", tx_power);
1609 else if (tx_power > 18)
1611 ret = wilc_set_tx_power(vif, tx_power);
1613 netdev_err(vif->ndev, "Failed to set tx power\n");
1614 srcu_read_unlock(&wl->srcu, srcu_idx);
1619 static int get_tx_power(struct wiphy *wiphy, struct wireless_dev *wdev,
1623 struct wilc_vif *vif = netdev_priv(wdev->netdev);
1624 struct wilc *wl = vif->wilc;
1626 /* If firmware is not started, return. */
1627 if (!wl->initialized)
1630 ret = wilc_get_tx_power(vif, (u8 *)dbm);
1632 netdev_err(vif->ndev, "Failed to get tx power\n");
1637 static const struct cfg80211_ops wilc_cfg80211_ops = {
1638 .set_monitor_channel = set_channel,
1641 .disconnect = disconnect,
1645 .set_default_key = set_default_key,
1646 .add_virtual_intf = add_virtual_intf,
1647 .del_virtual_intf = del_virtual_intf,
1648 .change_virtual_intf = change_virtual_intf,
1650 .start_ap = start_ap,
1651 .change_beacon = change_beacon,
1653 .add_station = add_station,
1654 .del_station = del_station,
1655 .change_station = change_station,
1656 .get_station = get_station,
1657 .dump_station = dump_station,
1658 .change_bss = change_bss,
1659 .set_wiphy_params = set_wiphy_params,
1661 .set_pmksa = set_pmksa,
1662 .del_pmksa = del_pmksa,
1663 .flush_pmksa = flush_pmksa,
1664 .remain_on_channel = remain_on_channel,
1665 .cancel_remain_on_channel = cancel_remain_on_channel,
1666 .mgmt_tx_cancel_wait = mgmt_tx_cancel_wait,
1668 .update_mgmt_frame_registrations = wilc_update_mgmt_frame_registrations,
1669 .set_power_mgmt = set_power_mgmt,
1670 .set_cqm_rssi_config = set_cqm_rssi_config,
1672 .suspend = wilc_suspend,
1673 .resume = wilc_resume,
1674 .set_wakeup = wilc_set_wakeup,
1675 .set_tx_power = set_tx_power,
1676 .get_tx_power = get_tx_power,
1680 static void wlan_init_locks(struct wilc *wl)
1682 mutex_init(&wl->hif_cs);
1683 mutex_init(&wl->rxq_cs);
1684 mutex_init(&wl->cfg_cmd_lock);
1685 mutex_init(&wl->vif_mutex);
1687 spin_lock_init(&wl->txq_spinlock);
1688 mutex_init(&wl->txq_add_to_head_cs);
1690 init_completion(&wl->txq_event);
1691 init_completion(&wl->cfg_event);
1692 init_completion(&wl->sync_event);
1693 init_completion(&wl->txq_thread_started);
1694 init_srcu_struct(&wl->srcu);
1697 void wlan_deinit_locks(struct wilc *wilc)
1699 mutex_destroy(&wilc->hif_cs);
1700 mutex_destroy(&wilc->rxq_cs);
1701 mutex_destroy(&wilc->cfg_cmd_lock);
1702 mutex_destroy(&wilc->txq_add_to_head_cs);
1703 mutex_destroy(&wilc->vif_mutex);
1704 cleanup_srcu_struct(&wilc->srcu);
1707 int wilc_cfg80211_init(struct wilc **wilc, struct device *dev, int io_type,
1708 const struct wilc_hif_func *ops)
1711 struct wilc_vif *vif;
1714 wl = wilc_create_wiphy(dev);
1718 wlan_init_locks(wl);
1720 ret = wilc_wlan_cfg_init(wl);
1725 wl->io_type = io_type;
1727 wl->chip_ps_state = WILC_CHIP_WAKEDUP;
1729 for (i = 0; i < NQUEUES; i++)
1730 INIT_LIST_HEAD(&wl->txq[i].txq_head.list);
1732 INIT_LIST_HEAD(&wl->rxq_head.list);
1733 INIT_LIST_HEAD(&wl->vif_list);
1735 wl->hif_workqueue = create_singlethread_workqueue("WILC_wq");
1736 if (!wl->hif_workqueue) {
1740 vif = wilc_netdev_ifc_init(wl, "wlan%d", WILC_STATION_MODE,
1741 NL80211_IFTYPE_STATION, false);
1750 destroy_workqueue(wl->hif_workqueue);
1753 wilc_wlan_cfg_deinit(wl);
1756 wlan_deinit_locks(wl);
1757 wiphy_unregister(wl->wiphy);
1758 wiphy_free(wl->wiphy);
1761 EXPORT_SYMBOL_GPL(wilc_cfg80211_init);
1763 struct wilc *wilc_create_wiphy(struct device *dev)
1765 struct wiphy *wiphy;
1769 wiphy = wiphy_new(&wilc_cfg80211_ops, sizeof(*wl));
1773 wl = wiphy_priv(wiphy);
1775 memcpy(wl->bitrates, wilc_bitrates, sizeof(wilc_bitrates));
1776 memcpy(wl->channels, wilc_2ghz_channels, sizeof(wilc_2ghz_channels));
1777 wl->band.bitrates = wl->bitrates;
1778 wl->band.n_bitrates = ARRAY_SIZE(wl->bitrates);
1779 wl->band.channels = wl->channels;
1780 wl->band.n_channels = ARRAY_SIZE(wilc_2ghz_channels);
1782 wl->band.ht_cap.ht_supported = 1;
1783 wl->band.ht_cap.cap |= (1 << IEEE80211_HT_CAP_RX_STBC_SHIFT);
1784 wl->band.ht_cap.mcs.rx_mask[0] = 0xff;
1785 wl->band.ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_8K;
1786 wl->band.ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_NONE;
1788 wiphy->bands[NL80211_BAND_2GHZ] = &wl->band;
1790 wiphy->max_scan_ssids = WILC_MAX_NUM_PROBED_SSID;
1792 wiphy->wowlan = &wowlan_support;
1794 wiphy->max_num_pmkids = WILC_MAX_NUM_PMKIDS;
1795 wiphy->max_scan_ie_len = 1000;
1796 wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM;
1797 memcpy(wl->cipher_suites, wilc_cipher_suites,
1798 sizeof(wilc_cipher_suites));
1799 wiphy->cipher_suites = wl->cipher_suites;
1800 wiphy->n_cipher_suites = ARRAY_SIZE(wilc_cipher_suites);
1801 wiphy->mgmt_stypes = wilc_wfi_cfg80211_mgmt_types;
1803 wiphy->max_remain_on_channel_duration = 500;
1804 wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
1805 BIT(NL80211_IFTYPE_AP) |
1806 BIT(NL80211_IFTYPE_MONITOR) |
1807 BIT(NL80211_IFTYPE_P2P_GO) |
1808 BIT(NL80211_IFTYPE_P2P_CLIENT);
1809 wiphy->flags |= WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL;
1811 set_wiphy_dev(wiphy, dev);
1813 ret = wiphy_register(wiphy);
1821 int wilc_init_host_int(struct net_device *net)
1824 struct wilc_vif *vif = netdev_priv(net);
1825 struct wilc_priv *priv = &vif->priv;
1827 priv->p2p_listen_state = false;
1829 mutex_init(&priv->scan_req_lock);
1830 ret = wilc_init(net, &priv->hif_drv);
1832 netdev_err(net, "Error while initializing hostinterface\n");
1837 void wilc_deinit_host_int(struct net_device *net)
1840 struct wilc_vif *vif = netdev_priv(net);
1841 struct wilc_priv *priv = &vif->priv;
1843 priv->p2p_listen_state = false;
1845 flush_workqueue(vif->wilc->hif_workqueue);
1846 mutex_destroy(&priv->scan_req_lock);
1847 ret = wilc_deinit(vif);
1850 netdev_err(net, "Error while deinitializing host interface\n");