2 * Copyright (c) 2012-2016 Qualcomm Atheros, Inc.
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 #include <linux/etherdevice.h>
21 #define WIL_MAX_ROC_DURATION_MS 5000
23 #define CHAN60G(_channel, _flags) { \
24 .band = NL80211_BAND_60GHZ, \
25 .center_freq = 56160 + (2160 * (_channel)), \
26 .hw_value = (_channel), \
28 .max_antenna_gain = 0, \
32 static struct ieee80211_channel wil_60ghz_channels
[] = {
36 /* channel 4 not supported yet */
39 static struct ieee80211_supported_band wil_band_60ghz
= {
40 .channels
= wil_60ghz_channels
,
41 .n_channels
= ARRAY_SIZE(wil_60ghz_channels
),
45 .ampdu_factor
= IEEE80211_HT_MAX_AMPDU_64K
, /* TODO */
46 .ampdu_density
= IEEE80211_HT_MPDU_DENSITY_8
, /* TODO */
48 /* MCS 1..12 - SC PHY */
49 .rx_mask
= {0xfe, 0x1f}, /* 1..12 */
50 .tx_params
= IEEE80211_HT_MCS_TX_DEFINED
, /* TODO */
55 static const struct ieee80211_txrx_stypes
56 wil_mgmt_stypes
[NUM_NL80211_IFTYPES
] = {
57 [NL80211_IFTYPE_STATION
] = {
58 .tx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
59 BIT(IEEE80211_STYPE_PROBE_RESP
>> 4),
60 .rx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
61 BIT(IEEE80211_STYPE_PROBE_REQ
>> 4)
63 [NL80211_IFTYPE_AP
] = {
64 .tx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
65 BIT(IEEE80211_STYPE_PROBE_RESP
>> 4),
66 .rx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
67 BIT(IEEE80211_STYPE_PROBE_REQ
>> 4)
69 [NL80211_IFTYPE_P2P_CLIENT
] = {
70 .tx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
71 BIT(IEEE80211_STYPE_PROBE_RESP
>> 4),
72 .rx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
73 BIT(IEEE80211_STYPE_PROBE_REQ
>> 4)
75 [NL80211_IFTYPE_P2P_GO
] = {
76 .tx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
77 BIT(IEEE80211_STYPE_PROBE_RESP
>> 4),
78 .rx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
79 BIT(IEEE80211_STYPE_PROBE_REQ
>> 4)
81 [NL80211_IFTYPE_P2P_DEVICE
] = {
82 .tx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
83 BIT(IEEE80211_STYPE_PROBE_RESP
>> 4),
84 .rx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
85 BIT(IEEE80211_STYPE_PROBE_REQ
>> 4)
89 static const u32 wil_cipher_suites
[] = {
90 WLAN_CIPHER_SUITE_GCMP
,
93 static const char * const key_usage_str
[] = {
94 [WMI_KEY_USE_PAIRWISE
] = "PTK",
95 [WMI_KEY_USE_RX_GROUP
] = "RX_GTK",
96 [WMI_KEY_USE_TX_GROUP
] = "TX_GTK",
99 int wil_iftype_nl2wmi(enum nl80211_iftype type
)
101 static const struct {
102 enum nl80211_iftype nl
;
103 enum wmi_network_type wmi
;
105 {NL80211_IFTYPE_ADHOC
, WMI_NETTYPE_ADHOC
},
106 {NL80211_IFTYPE_STATION
, WMI_NETTYPE_INFRA
},
107 {NL80211_IFTYPE_AP
, WMI_NETTYPE_AP
},
108 {NL80211_IFTYPE_P2P_CLIENT
, WMI_NETTYPE_P2P
},
109 {NL80211_IFTYPE_P2P_GO
, WMI_NETTYPE_P2P
},
110 {NL80211_IFTYPE_MONITOR
, WMI_NETTYPE_ADHOC
}, /* FIXME */
114 for (i
= 0; i
< ARRAY_SIZE(__nl2wmi
); i
++) {
115 if (__nl2wmi
[i
].nl
== type
)
116 return __nl2wmi
[i
].wmi
;
122 int wil_cid_fill_sinfo(struct wil6210_priv
*wil
, int cid
,
123 struct station_info
*sinfo
)
125 struct wmi_notify_req_cmd cmd
= {
130 struct wmi_cmd_hdr wmi
;
131 struct wmi_notify_req_done_event evt
;
133 struct wil_net_stats
*stats
= &wil
->sta
[cid
].stats
;
136 rc
= wmi_call(wil
, WMI_NOTIFY_REQ_CMDID
, &cmd
, sizeof(cmd
),
137 WMI_NOTIFY_REQ_DONE_EVENTID
, &reply
, sizeof(reply
), 20);
141 wil_dbg_wmi(wil
, "Link status for CID %d: {\n"
142 " MCS %d TSF 0x%016llx\n"
143 " BF status 0x%08x SNR 0x%08x SQI %d%%\n"
144 " Tx Tpt %d goodput %d Rx goodput %d\n"
145 " Sectors(rx:tx) my %d:%d peer %d:%d\n""}\n",
146 cid
, le16_to_cpu(reply
.evt
.bf_mcs
),
147 le64_to_cpu(reply
.evt
.tsf
), reply
.evt
.status
,
148 le32_to_cpu(reply
.evt
.snr_val
),
150 le32_to_cpu(reply
.evt
.tx_tpt
),
151 le32_to_cpu(reply
.evt
.tx_goodput
),
152 le32_to_cpu(reply
.evt
.rx_goodput
),
153 le16_to_cpu(reply
.evt
.my_rx_sector
),
154 le16_to_cpu(reply
.evt
.my_tx_sector
),
155 le16_to_cpu(reply
.evt
.other_rx_sector
),
156 le16_to_cpu(reply
.evt
.other_tx_sector
));
158 sinfo
->generation
= wil
->sinfo_gen
;
160 sinfo
->filled
= BIT(NL80211_STA_INFO_RX_BYTES
) |
161 BIT(NL80211_STA_INFO_TX_BYTES
) |
162 BIT(NL80211_STA_INFO_RX_PACKETS
) |
163 BIT(NL80211_STA_INFO_TX_PACKETS
) |
164 BIT(NL80211_STA_INFO_RX_BITRATE
) |
165 BIT(NL80211_STA_INFO_TX_BITRATE
) |
166 BIT(NL80211_STA_INFO_RX_DROP_MISC
) |
167 BIT(NL80211_STA_INFO_TX_FAILED
);
169 sinfo
->txrate
.flags
= RATE_INFO_FLAGS_MCS
| RATE_INFO_FLAGS_60G
;
170 sinfo
->txrate
.mcs
= le16_to_cpu(reply
.evt
.bf_mcs
);
171 sinfo
->rxrate
.flags
= RATE_INFO_FLAGS_MCS
| RATE_INFO_FLAGS_60G
;
172 sinfo
->rxrate
.mcs
= stats
->last_mcs_rx
;
173 sinfo
->rx_bytes
= stats
->rx_bytes
;
174 sinfo
->rx_packets
= stats
->rx_packets
;
175 sinfo
->rx_dropped_misc
= stats
->rx_dropped
;
176 sinfo
->tx_bytes
= stats
->tx_bytes
;
177 sinfo
->tx_packets
= stats
->tx_packets
;
178 sinfo
->tx_failed
= stats
->tx_errors
;
180 if (test_bit(wil_status_fwconnected
, wil
->status
)) {
181 sinfo
->filled
|= BIT(NL80211_STA_INFO_SIGNAL
);
182 sinfo
->signal
= reply
.evt
.sqi
;
188 static int wil_cfg80211_get_station(struct wiphy
*wiphy
,
189 struct net_device
*ndev
,
190 const u8
*mac
, struct station_info
*sinfo
)
192 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
195 int cid
= wil_find_cid(wil
, mac
);
197 wil_dbg_misc(wil
, "%s(%pM) CID %d\n", __func__
, mac
, cid
);
201 rc
= wil_cid_fill_sinfo(wil
, cid
, sinfo
);
207 * Find @idx-th active STA for station dump.
209 static int wil_find_cid_by_idx(struct wil6210_priv
*wil
, int idx
)
213 for (i
= 0; i
< ARRAY_SIZE(wil
->sta
); i
++) {
214 if (wil
->sta
[i
].status
== wil_sta_unused
)
224 static int wil_cfg80211_dump_station(struct wiphy
*wiphy
,
225 struct net_device
*dev
, int idx
,
226 u8
*mac
, struct station_info
*sinfo
)
228 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
230 int cid
= wil_find_cid_by_idx(wil
, idx
);
235 ether_addr_copy(mac
, wil
->sta
[cid
].addr
);
236 wil_dbg_misc(wil
, "%s(%pM) CID %d\n", __func__
, mac
, cid
);
238 rc
= wil_cid_fill_sinfo(wil
, cid
, sinfo
);
243 static struct wireless_dev
*
244 wil_cfg80211_add_iface(struct wiphy
*wiphy
, const char *name
,
245 unsigned char name_assign_type
,
246 enum nl80211_iftype type
,
247 u32
*flags
, struct vif_params
*params
)
249 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
250 struct net_device
*ndev
= wil_to_ndev(wil
);
251 struct wireless_dev
*p2p_wdev
;
253 wil_dbg_misc(wil
, "%s()\n", __func__
);
255 if (type
!= NL80211_IFTYPE_P2P_DEVICE
) {
256 wil_err(wil
, "%s: unsupported iftype %d\n", __func__
, type
);
257 return ERR_PTR(-EINVAL
);
261 wil_err(wil
, "%s: P2P_DEVICE interface already created\n",
263 return ERR_PTR(-EINVAL
);
266 p2p_wdev
= kzalloc(sizeof(*p2p_wdev
), GFP_KERNEL
);
268 return ERR_PTR(-ENOMEM
);
270 p2p_wdev
->iftype
= type
;
271 p2p_wdev
->wiphy
= wiphy
;
272 /* use our primary ethernet address */
273 ether_addr_copy(p2p_wdev
->address
, ndev
->perm_addr
);
275 wil
->p2p_wdev
= p2p_wdev
;
280 static int wil_cfg80211_del_iface(struct wiphy
*wiphy
,
281 struct wireless_dev
*wdev
)
283 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
285 wil_dbg_misc(wil
, "%s()\n", __func__
);
287 if (wdev
!= wil
->p2p_wdev
) {
288 wil_err(wil
, "%s: delete of incorrect interface 0x%p\n",
293 wil_p2p_wdev_free(wil
);
298 static int wil_cfg80211_change_iface(struct wiphy
*wiphy
,
299 struct net_device
*ndev
,
300 enum nl80211_iftype type
, u32
*flags
,
301 struct vif_params
*params
)
303 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
304 struct wireless_dev
*wdev
= wil_to_wdev(wil
);
307 wil_dbg_misc(wil
, "%s() type=%d\n", __func__
, type
);
309 if (netif_running(wil_to_ndev(wil
)) && !wil_is_recovery_blocked(wil
)) {
310 wil_dbg_misc(wil
, "interface is up. resetting...\n");
311 mutex_lock(&wil
->mutex
);
314 mutex_unlock(&wil
->mutex
);
321 case NL80211_IFTYPE_STATION
:
322 case NL80211_IFTYPE_AP
:
323 case NL80211_IFTYPE_P2P_CLIENT
:
324 case NL80211_IFTYPE_P2P_GO
:
326 case NL80211_IFTYPE_MONITOR
:
328 wil
->monitor_flags
= *flags
;
330 wil
->monitor_flags
= 0;
342 static int wil_cfg80211_scan(struct wiphy
*wiphy
,
343 struct cfg80211_scan_request
*request
)
345 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
346 struct wireless_dev
*wdev
= request
->wdev
;
348 struct wmi_start_scan_cmd cmd
;
354 wil_dbg_misc(wil
, "%s(), wdev=0x%p iftype=%d\n",
355 __func__
, wdev
, wdev
->iftype
);
357 mutex_lock(&wil
->p2p_wdev_mutex
);
358 if (wil
->scan_request
) {
359 wil_err(wil
, "Already scanning\n");
360 mutex_unlock(&wil
->p2p_wdev_mutex
);
363 mutex_unlock(&wil
->p2p_wdev_mutex
);
365 /* check we are client side */
366 switch (wdev
->iftype
) {
367 case NL80211_IFTYPE_STATION
:
368 case NL80211_IFTYPE_P2P_CLIENT
:
369 case NL80211_IFTYPE_P2P_DEVICE
:
375 /* FW don't support scan after connection attempt */
376 if (test_bit(wil_status_dontscan
, wil
->status
)) {
377 wil_err(wil
, "Can't scan now\n");
381 /* social scan on P2P_DEVICE is handled as p2p search */
382 if (wdev
->iftype
== NL80211_IFTYPE_P2P_DEVICE
&&
383 wil_p2p_is_social_scan(request
)) {
384 if (!wil
->p2p
.p2p_dev_started
) {
385 wil_err(wil
, "P2P search requested on stopped P2P device\n");
388 wil
->scan_request
= request
;
389 wil
->radio_wdev
= wdev
;
390 rc
= wil_p2p_search(wil
, request
);
392 wil
->radio_wdev
= wil_to_wdev(wil
);
393 wil
->scan_request
= NULL
;
398 (void)wil_p2p_stop_discovery(wil
);
400 wil_dbg_misc(wil
, "Start scan_request 0x%p\n", request
);
401 wil_dbg_misc(wil
, "SSID count: %d", request
->n_ssids
);
403 for (i
= 0; i
< request
->n_ssids
; i
++) {
404 wil_dbg_misc(wil
, "SSID[%d]", i
);
405 print_hex_dump_bytes("SSID ", DUMP_PREFIX_OFFSET
,
406 request
->ssids
[i
].ssid
,
407 request
->ssids
[i
].ssid_len
);
410 if (request
->n_ssids
)
411 rc
= wmi_set_ssid(wil
, request
->ssids
[0].ssid_len
,
412 request
->ssids
[0].ssid
);
414 rc
= wmi_set_ssid(wil
, 0, NULL
);
417 wil_err(wil
, "set SSID for scan request failed: %d\n", rc
);
421 wil
->scan_request
= request
;
422 mod_timer(&wil
->scan_timer
, jiffies
+ WIL6210_SCAN_TO
);
424 memset(&cmd
, 0, sizeof(cmd
));
425 cmd
.cmd
.scan_type
= WMI_ACTIVE_SCAN
;
426 cmd
.cmd
.num_channels
= 0;
427 n
= min(request
->n_channels
, 4U);
428 for (i
= 0; i
< n
; i
++) {
429 int ch
= request
->channels
[i
]->hw_value
;
433 "Scan requested for unknown frequency %dMhz\n",
434 request
->channels
[i
]->center_freq
);
437 /* 0-based channel indexes */
438 cmd
.cmd
.channel_list
[cmd
.cmd
.num_channels
++].channel
= ch
- 1;
439 wil_dbg_misc(wil
, "Scan for ch %d : %d MHz\n", ch
,
440 request
->channels
[i
]->center_freq
);
444 print_hex_dump_bytes("Scan IE ", DUMP_PREFIX_OFFSET
,
445 request
->ie
, request
->ie_len
);
447 wil_dbg_misc(wil
, "Scan has no IE's\n");
449 rc
= wmi_set_ie(wil
, WMI_FRAME_PROBE_REQ
, request
->ie_len
, request
->ie
);
453 if (wil
->discovery_mode
&& cmd
.cmd
.scan_type
== WMI_ACTIVE_SCAN
) {
454 cmd
.cmd
.discovery_mode
= 1;
455 wil_dbg_misc(wil
, "active scan with discovery_mode=1\n");
458 wil
->radio_wdev
= wdev
;
459 rc
= wmi_send(wil
, WMI_START_SCAN_CMDID
, &cmd
, sizeof(cmd
.cmd
) +
460 cmd
.cmd
.num_channels
* sizeof(cmd
.cmd
.channel_list
[0]));
464 del_timer_sync(&wil
->scan_timer
);
465 wil
->radio_wdev
= wil_to_wdev(wil
);
466 wil
->scan_request
= NULL
;
472 static void wil_print_crypto(struct wil6210_priv
*wil
,
473 struct cfg80211_crypto_settings
*c
)
477 wil_dbg_misc(wil
, "WPA versions: 0x%08x cipher group 0x%08x\n",
478 c
->wpa_versions
, c
->cipher_group
);
479 wil_dbg_misc(wil
, "Pairwise ciphers [%d] {\n", c
->n_ciphers_pairwise
);
480 n
= min_t(int, c
->n_ciphers_pairwise
, ARRAY_SIZE(c
->ciphers_pairwise
));
481 for (i
= 0; i
< n
; i
++)
482 wil_dbg_misc(wil
, " [%d] = 0x%08x\n", i
,
483 c
->ciphers_pairwise
[i
]);
484 wil_dbg_misc(wil
, "}\n");
485 wil_dbg_misc(wil
, "AKM suites [%d] {\n", c
->n_akm_suites
);
486 n
= min_t(int, c
->n_akm_suites
, ARRAY_SIZE(c
->akm_suites
));
487 for (i
= 0; i
< n
; i
++)
488 wil_dbg_misc(wil
, " [%d] = 0x%08x\n", i
,
490 wil_dbg_misc(wil
, "}\n");
491 wil_dbg_misc(wil
, "Control port : %d, eth_type 0x%04x no_encrypt %d\n",
492 c
->control_port
, be16_to_cpu(c
->control_port_ethertype
),
493 c
->control_port_no_encrypt
);
496 static void wil_print_connect_params(struct wil6210_priv
*wil
,
497 struct cfg80211_connect_params
*sme
)
499 wil_info(wil
, "Connecting to:\n");
501 wil_info(wil
, " Channel: %d freq %d\n",
502 sme
->channel
->hw_value
, sme
->channel
->center_freq
);
505 wil_info(wil
, " BSSID: %pM\n", sme
->bssid
);
507 print_hex_dump(KERN_INFO
, " SSID: ", DUMP_PREFIX_OFFSET
,
508 16, 1, sme
->ssid
, sme
->ssid_len
, true);
509 wil_info(wil
, " Privacy: %s\n", sme
->privacy
? "secure" : "open");
510 wil_info(wil
, " PBSS: %d\n", sme
->pbss
);
511 wil_print_crypto(wil
, &sme
->crypto
);
514 static int wil_cfg80211_connect(struct wiphy
*wiphy
,
515 struct net_device
*ndev
,
516 struct cfg80211_connect_params
*sme
)
518 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
519 struct cfg80211_bss
*bss
;
520 struct wmi_connect_cmd conn
;
525 enum ieee80211_bss_type bss_type
= IEEE80211_BSS_TYPE_ESS
;
527 wil_dbg_misc(wil
, "%s()\n", __func__
);
528 wil_print_connect_params(wil
, sme
);
530 if (test_bit(wil_status_fwconnecting
, wil
->status
) ||
531 test_bit(wil_status_fwconnected
, wil
->status
))
534 if (sme
->ie_len
> WMI_MAX_IE_LEN
) {
535 wil_err(wil
, "IE too large (%td bytes)\n", sme
->ie_len
);
540 cfg80211_find_ie(WLAN_EID_RSN
, sme
->ie
, sme
->ie_len
) :
542 if (sme
->privacy
&& !rsn_eid
)
543 wil_info(wil
, "WSC connection\n");
546 bss_type
= IEEE80211_BSS_TYPE_PBSS
;
548 bss
= cfg80211_get_bss(wiphy
, sme
->channel
, sme
->bssid
,
549 sme
->ssid
, sme
->ssid_len
,
550 bss_type
, IEEE80211_PRIVACY_ANY
);
552 wil_err(wil
, "Unable to find BSS\n");
556 ssid_eid
= ieee80211_bss_get_ie(bss
, WLAN_EID_SSID
);
558 wil_err(wil
, "No SSID\n");
562 wil
->privacy
= sme
->privacy
;
565 /* For secure assoc, remove old keys */
566 rc
= wmi_del_cipher_key(wil
, 0, bss
->bssid
,
567 WMI_KEY_USE_PAIRWISE
);
569 wil_err(wil
, "WMI_DELETE_CIPHER_KEY_CMD(PTK) failed\n");
572 rc
= wmi_del_cipher_key(wil
, 0, bss
->bssid
,
573 WMI_KEY_USE_RX_GROUP
);
575 wil_err(wil
, "WMI_DELETE_CIPHER_KEY_CMD(GTK) failed\n");
580 /* WMI_SET_APPIE_CMD. ie may contain rsn info as well as other info
581 * elements. Send it also in case it's empty, to erase previously set
584 rc
= wmi_set_ie(wil
, WMI_FRAME_ASSOC_REQ
, sme
->ie_len
, sme
->ie
);
588 /* WMI_CONNECT_CMD */
589 memset(&conn
, 0, sizeof(conn
));
590 switch (bss
->capability
& WLAN_CAPABILITY_DMG_TYPE_MASK
) {
591 case WLAN_CAPABILITY_DMG_TYPE_AP
:
592 conn
.network_type
= WMI_NETTYPE_INFRA
;
594 case WLAN_CAPABILITY_DMG_TYPE_PBSS
:
595 conn
.network_type
= WMI_NETTYPE_P2P
;
598 wil_err(wil
, "Unsupported BSS type, capability= 0x%04x\n",
603 if (rsn_eid
) { /* regular secure connection */
604 conn
.dot11_auth_mode
= WMI_AUTH11_SHARED
;
605 conn
.auth_mode
= WMI_AUTH_WPA2_PSK
;
606 conn
.pairwise_crypto_type
= WMI_CRYPT_AES_GCMP
;
607 conn
.pairwise_crypto_len
= 16;
608 conn
.group_crypto_type
= WMI_CRYPT_AES_GCMP
;
609 conn
.group_crypto_len
= 16;
611 conn
.dot11_auth_mode
= WMI_AUTH11_WSC
;
612 conn
.auth_mode
= WMI_AUTH_NONE
;
614 } else { /* insecure connection */
615 conn
.dot11_auth_mode
= WMI_AUTH11_OPEN
;
616 conn
.auth_mode
= WMI_AUTH_NONE
;
619 conn
.ssid_len
= min_t(u8
, ssid_eid
[1], 32);
620 memcpy(conn
.ssid
, ssid_eid
+2, conn
.ssid_len
);
622 ch
= bss
->channel
->hw_value
;
624 wil_err(wil
, "BSS at unknown frequency %dMhz\n",
625 bss
->channel
->center_freq
);
629 conn
.channel
= ch
- 1;
631 ether_addr_copy(conn
.bssid
, bss
->bssid
);
632 ether_addr_copy(conn
.dst_mac
, bss
->bssid
);
634 set_bit(wil_status_fwconnecting
, wil
->status
);
636 rc
= wmi_send(wil
, WMI_CONNECT_CMDID
, &conn
, sizeof(conn
));
638 netif_carrier_on(ndev
);
639 /* Connect can take lots of time */
640 mod_timer(&wil
->connect_timer
,
641 jiffies
+ msecs_to_jiffies(2000));
643 clear_bit(wil_status_fwconnecting
, wil
->status
);
647 cfg80211_put_bss(wiphy
, bss
);
652 static int wil_cfg80211_disconnect(struct wiphy
*wiphy
,
653 struct net_device
*ndev
,
657 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
659 wil_dbg_misc(wil
, "%s(reason=%d)\n", __func__
, reason_code
);
661 if (!(test_bit(wil_status_fwconnecting
, wil
->status
) ||
662 test_bit(wil_status_fwconnected
, wil
->status
))) {
663 wil_err(wil
, "%s: Disconnect was called while disconnected\n",
668 rc
= wmi_call(wil
, WMI_DISCONNECT_CMDID
, NULL
, 0,
669 WMI_DISCONNECT_EVENTID
, NULL
, 0,
670 WIL6210_DISCONNECT_TO_MS
);
672 wil_err(wil
, "%s: disconnect error %d\n", __func__
, rc
);
677 int wil_cfg80211_mgmt_tx(struct wiphy
*wiphy
, struct wireless_dev
*wdev
,
678 struct cfg80211_mgmt_tx_params
*params
,
681 const u8
*buf
= params
->buf
;
682 size_t len
= params
->len
;
683 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
685 bool tx_status
= false;
686 struct ieee80211_mgmt
*mgmt_frame
= (void *)buf
;
687 struct wmi_sw_tx_req_cmd
*cmd
;
689 struct wmi_cmd_hdr wmi
;
690 struct wmi_sw_tx_complete_event evt
;
693 /* Note, currently we do not support the "wait" parameter, user-space
694 * must call remain_on_channel before mgmt_tx or listen on a channel
695 * another way (AP/PCP or connected station)
696 * in addition we need to check if specified "chan" argument is
697 * different from currently "listened" channel and fail if it is.
700 wil_dbg_misc(wil
, "%s()\n", __func__
);
701 print_hex_dump_bytes("mgmt tx frame ", DUMP_PREFIX_OFFSET
, buf
, len
);
703 cmd
= kmalloc(sizeof(*cmd
) + len
, GFP_KERNEL
);
709 memcpy(cmd
->dst_mac
, mgmt_frame
->da
, WMI_MAC_LEN
);
710 cmd
->len
= cpu_to_le16(len
);
711 memcpy(cmd
->payload
, buf
, len
);
713 rc
= wmi_call(wil
, WMI_SW_TX_REQ_CMDID
, cmd
, sizeof(*cmd
) + len
,
714 WMI_SW_TX_COMPLETE_EVENTID
, &evt
, sizeof(evt
), 2000);
716 tx_status
= !evt
.evt
.status
;
720 cfg80211_mgmt_tx_status(wdev
, cookie
? *cookie
: 0, buf
, len
,
721 tx_status
, GFP_KERNEL
);
725 static int wil_cfg80211_set_channel(struct wiphy
*wiphy
,
726 struct cfg80211_chan_def
*chandef
)
728 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
729 struct wireless_dev
*wdev
= wil_to_wdev(wil
);
731 wdev
->preset_chandef
= *chandef
;
736 static enum wmi_key_usage
wil_detect_key_usage(struct wil6210_priv
*wil
,
739 struct wireless_dev
*wdev
= wil_to_wdev(wil
);
740 enum wmi_key_usage rc
;
743 rc
= WMI_KEY_USE_PAIRWISE
;
745 switch (wdev
->iftype
) {
746 case NL80211_IFTYPE_STATION
:
747 case NL80211_IFTYPE_P2P_CLIENT
:
748 rc
= WMI_KEY_USE_RX_GROUP
;
750 case NL80211_IFTYPE_AP
:
751 case NL80211_IFTYPE_P2P_GO
:
752 rc
= WMI_KEY_USE_TX_GROUP
;
755 /* TODO: Rx GTK or Tx GTK? */
756 wil_err(wil
, "Can't determine GTK type\n");
757 rc
= WMI_KEY_USE_RX_GROUP
;
761 wil_dbg_misc(wil
, "%s() -> %s\n", __func__
, key_usage_str
[rc
]);
766 static struct wil_sta_info
*
767 wil_find_sta_by_key_usage(struct wil6210_priv
*wil
,
768 enum wmi_key_usage key_usage
, const u8
*mac_addr
)
772 if (key_usage
== WMI_KEY_USE_TX_GROUP
)
773 return NULL
; /* not needed */
775 /* supplicant provides Rx group key in STA mode with NULL MAC address */
777 cid
= wil_find_cid(wil
, mac_addr
);
778 else if (key_usage
== WMI_KEY_USE_RX_GROUP
)
779 cid
= wil_find_cid_by_idx(wil
, 0);
781 wil_err(wil
, "No CID for %pM %s\n", mac_addr
,
782 key_usage_str
[key_usage
]);
786 return &wil
->sta
[cid
];
789 static void wil_set_crypto_rx(u8 key_index
, enum wmi_key_usage key_usage
,
790 struct wil_sta_info
*cs
,
791 struct key_params
*params
)
793 struct wil_tid_crypto_rx_single
*cc
;
800 case WMI_KEY_USE_PAIRWISE
:
801 for (tid
= 0; tid
< WIL_STA_TID_NUM
; tid
++) {
802 cc
= &cs
->tid_crypto_rx
[tid
].key_id
[key_index
];
804 memcpy(cc
->pn
, params
->seq
,
805 IEEE80211_GCMP_PN_LEN
);
807 memset(cc
->pn
, 0, IEEE80211_GCMP_PN_LEN
);
811 case WMI_KEY_USE_RX_GROUP
:
812 cc
= &cs
->group_crypto_rx
.key_id
[key_index
];
814 memcpy(cc
->pn
, params
->seq
, IEEE80211_GCMP_PN_LEN
);
816 memset(cc
->pn
, 0, IEEE80211_GCMP_PN_LEN
);
824 static void wil_del_rx_key(u8 key_index
, enum wmi_key_usage key_usage
,
825 struct wil_sta_info
*cs
)
827 struct wil_tid_crypto_rx_single
*cc
;
834 case WMI_KEY_USE_PAIRWISE
:
835 for (tid
= 0; tid
< WIL_STA_TID_NUM
; tid
++) {
836 cc
= &cs
->tid_crypto_rx
[tid
].key_id
[key_index
];
840 case WMI_KEY_USE_RX_GROUP
:
841 cc
= &cs
->group_crypto_rx
.key_id
[key_index
];
849 static int wil_cfg80211_add_key(struct wiphy
*wiphy
,
850 struct net_device
*ndev
,
851 u8 key_index
, bool pairwise
,
853 struct key_params
*params
)
856 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
857 enum wmi_key_usage key_usage
= wil_detect_key_usage(wil
, pairwise
);
858 struct wil_sta_info
*cs
= wil_find_sta_by_key_usage(wil
, key_usage
,
862 wil_err(wil
, "NULL params\n");
866 wil_dbg_misc(wil
, "%s(%pM %s[%d] PN %*phN)\n", __func__
,
867 mac_addr
, key_usage_str
[key_usage
], key_index
,
868 params
->seq_len
, params
->seq
);
871 wil_err(wil
, "Not connected, %s(%pM %s[%d] PN %*phN)\n",
872 __func__
, mac_addr
, key_usage_str
[key_usage
], key_index
,
873 params
->seq_len
, params
->seq
);
877 wil_del_rx_key(key_index
, key_usage
, cs
);
879 if (params
->seq
&& params
->seq_len
!= IEEE80211_GCMP_PN_LEN
) {
881 "Wrong PN len %d, %s(%pM %s[%d] PN %*phN)\n",
882 params
->seq_len
, __func__
, mac_addr
,
883 key_usage_str
[key_usage
], key_index
,
884 params
->seq_len
, params
->seq
);
888 rc
= wmi_add_cipher_key(wil
, key_index
, mac_addr
, params
->key_len
,
889 params
->key
, key_usage
);
891 wil_set_crypto_rx(key_index
, key_usage
, cs
, params
);
896 static int wil_cfg80211_del_key(struct wiphy
*wiphy
,
897 struct net_device
*ndev
,
898 u8 key_index
, bool pairwise
,
901 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
902 enum wmi_key_usage key_usage
= wil_detect_key_usage(wil
, pairwise
);
903 struct wil_sta_info
*cs
= wil_find_sta_by_key_usage(wil
, key_usage
,
906 wil_dbg_misc(wil
, "%s(%pM %s[%d])\n", __func__
, mac_addr
,
907 key_usage_str
[key_usage
], key_index
);
910 wil_info(wil
, "Not connected, %s(%pM %s[%d])\n", __func__
,
911 mac_addr
, key_usage_str
[key_usage
], key_index
);
913 if (!IS_ERR_OR_NULL(cs
))
914 wil_del_rx_key(key_index
, key_usage
, cs
);
916 return wmi_del_cipher_key(wil
, key_index
, mac_addr
, key_usage
);
919 /* Need to be present or wiphy_new() will WARN */
920 static int wil_cfg80211_set_default_key(struct wiphy
*wiphy
,
921 struct net_device
*ndev
,
922 u8 key_index
, bool unicast
,
925 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
927 wil_dbg_misc(wil
, "%s: entered\n", __func__
);
931 static int wil_remain_on_channel(struct wiphy
*wiphy
,
932 struct wireless_dev
*wdev
,
933 struct ieee80211_channel
*chan
,
934 unsigned int duration
,
937 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
940 wil_dbg_misc(wil
, "%s() center_freq=%d, duration=%d iftype=%d\n",
941 __func__
, chan
->center_freq
, duration
, wdev
->iftype
);
943 rc
= wil_p2p_listen(wil
, duration
, chan
, cookie
);
947 wil
->radio_wdev
= wdev
;
949 cfg80211_ready_on_channel(wdev
, *cookie
, chan
, duration
,
955 static int wil_cancel_remain_on_channel(struct wiphy
*wiphy
,
956 struct wireless_dev
*wdev
,
959 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
961 wil_dbg_misc(wil
, "%s()\n", __func__
);
963 return wil_p2p_cancel_listen(wil
, cookie
);
967 * find a specific IE in a list of IEs
968 * return a pointer to the beginning of IE in the list
969 * or NULL if not found
971 static const u8
*_wil_cfg80211_find_ie(const u8
*ies
, u16 ies_len
, const u8
*ie
,
974 struct ieee80211_vendor_ie
*vie
;
977 /* IE tag at offset 0, length at offset 1 */
978 if (ie_len
< 2 || 2 + ie
[1] > ie_len
)
981 if (ie
[0] != WLAN_EID_VENDOR_SPECIFIC
)
982 return cfg80211_find_ie(ie
[0], ies
, ies_len
);
984 /* make sure there is room for 3 bytes OUI + 1 byte OUI type */
987 vie
= (struct ieee80211_vendor_ie
*)ie
;
988 oui
= vie
->oui
[0] << 16 | vie
->oui
[1] << 8 | vie
->oui
[2];
989 return cfg80211_find_vendor_ie(oui
, vie
->oui_type
, ies
,
994 * merge the IEs in two lists into a single list.
995 * do not include IEs from the second list which exist in the first list.
996 * add only vendor specific IEs from second list to keep
997 * the merged list sorted (since vendor-specific IE has the
998 * highest tag number)
999 * caller must free the allocated memory for merged IEs
1001 static int _wil_cfg80211_merge_extra_ies(const u8
*ies1
, u16 ies1_len
,
1002 const u8
*ies2
, u16 ies2_len
,
1003 u8
**merged_ies
, u16
*merged_len
)
1008 if (ies1_len
== 0 && ies2_len
== 0) {
1014 buf
= kmalloc(ies1_len
+ ies2_len
, GFP_KERNEL
);
1017 memcpy(buf
, ies1
, ies1_len
);
1018 dpos
= buf
+ ies1_len
;
1020 while (spos
+ 1 < ies2
+ ies2_len
) {
1021 /* IE tag at offset 0, length at offset 1 */
1022 u16 ielen
= 2 + spos
[1];
1024 if (spos
+ ielen
> ies2
+ ies2_len
)
1026 if (spos
[0] == WLAN_EID_VENDOR_SPECIFIC
&&
1027 !_wil_cfg80211_find_ie(ies1
, ies1_len
, spos
, ielen
)) {
1028 memcpy(dpos
, spos
, ielen
);
1035 *merged_len
= dpos
- buf
;
1039 static void wil_print_bcon_data(struct cfg80211_beacon_data
*b
)
1041 print_hex_dump_bytes("head ", DUMP_PREFIX_OFFSET
,
1042 b
->head
, b
->head_len
);
1043 print_hex_dump_bytes("tail ", DUMP_PREFIX_OFFSET
,
1044 b
->tail
, b
->tail_len
);
1045 print_hex_dump_bytes("BCON IE ", DUMP_PREFIX_OFFSET
,
1046 b
->beacon_ies
, b
->beacon_ies_len
);
1047 print_hex_dump_bytes("PROBE ", DUMP_PREFIX_OFFSET
,
1048 b
->probe_resp
, b
->probe_resp_len
);
1049 print_hex_dump_bytes("PROBE IE ", DUMP_PREFIX_OFFSET
,
1050 b
->proberesp_ies
, b
->proberesp_ies_len
);
1051 print_hex_dump_bytes("ASSOC IE ", DUMP_PREFIX_OFFSET
,
1052 b
->assocresp_ies
, b
->assocresp_ies_len
);
1055 /* internal functions for device reset and starting AP */
1056 static int _wil_cfg80211_set_ies(struct wiphy
*wiphy
,
1057 struct cfg80211_beacon_data
*bcon
)
1060 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
1061 u16 len
= 0, proberesp_len
= 0;
1062 u8
*ies
= NULL
, *proberesp
= NULL
;
1064 if (bcon
->probe_resp
) {
1065 struct ieee80211_mgmt
*f
=
1066 (struct ieee80211_mgmt
*)bcon
->probe_resp
;
1067 size_t hlen
= offsetof(struct ieee80211_mgmt
,
1068 u
.probe_resp
.variable
);
1069 proberesp
= f
->u
.probe_resp
.variable
;
1070 proberesp_len
= bcon
->probe_resp_len
- hlen
;
1072 rc
= _wil_cfg80211_merge_extra_ies(proberesp
,
1074 bcon
->proberesp_ies
,
1075 bcon
->proberesp_ies_len
,
1081 rc
= wmi_set_ie(wil
, WMI_FRAME_PROBE_RESP
, len
, ies
);
1085 if (bcon
->assocresp_ies
)
1086 rc
= wmi_set_ie(wil
, WMI_FRAME_ASSOC_RESP
,
1087 bcon
->assocresp_ies_len
, bcon
->assocresp_ies
);
1089 rc
= wmi_set_ie(wil
, WMI_FRAME_ASSOC_RESP
, len
, ies
);
1090 #if 0 /* to use beacon IE's, remove this #if 0 */
1094 rc
= wmi_set_ie(wil
, WMI_FRAME_BEACON
, bcon
->tail_len
, bcon
->tail
);
1101 static int _wil_cfg80211_start_ap(struct wiphy
*wiphy
,
1102 struct net_device
*ndev
,
1103 const u8
*ssid
, size_t ssid_len
, u32 privacy
,
1105 struct cfg80211_beacon_data
*bcon
,
1106 u8 hidden_ssid
, u32 pbss
)
1108 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
1110 struct wireless_dev
*wdev
= ndev
->ieee80211_ptr
;
1111 u8 wmi_nettype
= wil_iftype_nl2wmi(wdev
->iftype
);
1112 u8 is_go
= (wdev
->iftype
== NL80211_IFTYPE_P2P_GO
);
1115 wmi_nettype
= WMI_NETTYPE_P2P
;
1117 wil_dbg_misc(wil
, "%s: is_go=%d\n", __func__
, is_go
);
1118 if (is_go
&& !pbss
) {
1119 wil_err(wil
, "%s: P2P GO must be in PBSS\n", __func__
);
1123 wil_set_recovery_state(wil
, fw_recovery_idle
);
1125 mutex_lock(&wil
->mutex
);
1132 rc
= wmi_set_ssid(wil
, ssid_len
, ssid
);
1136 rc
= _wil_cfg80211_set_ies(wiphy
, bcon
);
1140 wil
->privacy
= privacy
;
1141 wil
->channel
= chan
;
1142 wil
->hidden_ssid
= hidden_ssid
;
1145 netif_carrier_on(ndev
);
1147 rc
= wmi_pcp_start(wil
, bi
, wmi_nettype
, chan
, hidden_ssid
, is_go
);
1151 rc
= wil_bcast_init(wil
);
1155 goto out
; /* success */
1160 netif_carrier_off(ndev
);
1162 mutex_unlock(&wil
->mutex
);
1166 static int wil_cfg80211_change_beacon(struct wiphy
*wiphy
,
1167 struct net_device
*ndev
,
1168 struct cfg80211_beacon_data
*bcon
)
1170 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
1174 wil_dbg_misc(wil
, "%s()\n", __func__
);
1175 wil_print_bcon_data(bcon
);
1178 cfg80211_find_ie(WLAN_EID_RSN
, bcon
->tail
,
1182 /* in case privacy has changed, need to restart the AP */
1183 if (wil
->privacy
!= privacy
) {
1184 struct wireless_dev
*wdev
= ndev
->ieee80211_ptr
;
1186 wil_dbg_misc(wil
, "privacy changed %d=>%d. Restarting AP\n",
1187 wil
->privacy
, privacy
);
1189 rc
= _wil_cfg80211_start_ap(wiphy
, ndev
, wdev
->ssid
,
1190 wdev
->ssid_len
, privacy
,
1191 wdev
->beacon_interval
,
1196 rc
= _wil_cfg80211_set_ies(wiphy
, bcon
);
1202 static int wil_cfg80211_start_ap(struct wiphy
*wiphy
,
1203 struct net_device
*ndev
,
1204 struct cfg80211_ap_settings
*info
)
1207 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
1208 struct ieee80211_channel
*channel
= info
->chandef
.chan
;
1209 struct cfg80211_beacon_data
*bcon
= &info
->beacon
;
1210 struct cfg80211_crypto_settings
*crypto
= &info
->crypto
;
1213 wil_dbg_misc(wil
, "%s()\n", __func__
);
1216 wil_err(wil
, "AP: No channel???\n");
1220 switch (info
->hidden_ssid
) {
1221 case NL80211_HIDDEN_SSID_NOT_IN_USE
:
1222 hidden_ssid
= WMI_HIDDEN_SSID_DISABLED
;
1225 case NL80211_HIDDEN_SSID_ZERO_LEN
:
1226 hidden_ssid
= WMI_HIDDEN_SSID_SEND_EMPTY
;
1229 case NL80211_HIDDEN_SSID_ZERO_CONTENTS
:
1230 hidden_ssid
= WMI_HIDDEN_SSID_CLEAR
;
1234 wil_err(wil
, "AP: Invalid hidden SSID %d\n", info
->hidden_ssid
);
1237 wil_dbg_misc(wil
, "AP on Channel %d %d MHz, %s\n", channel
->hw_value
,
1238 channel
->center_freq
, info
->privacy
? "secure" : "open");
1239 wil_dbg_misc(wil
, "Privacy: %d auth_type %d\n",
1240 info
->privacy
, info
->auth_type
);
1241 wil_dbg_misc(wil
, "Hidden SSID mode: %d\n",
1243 wil_dbg_misc(wil
, "BI %d DTIM %d\n", info
->beacon_interval
,
1245 wil_dbg_misc(wil
, "PBSS %d\n", info
->pbss
);
1246 print_hex_dump_bytes("SSID ", DUMP_PREFIX_OFFSET
,
1247 info
->ssid
, info
->ssid_len
);
1248 wil_print_bcon_data(bcon
);
1249 wil_print_crypto(wil
, crypto
);
1251 rc
= _wil_cfg80211_start_ap(wiphy
, ndev
,
1252 info
->ssid
, info
->ssid_len
, info
->privacy
,
1253 info
->beacon_interval
, channel
->hw_value
,
1254 bcon
, hidden_ssid
, info
->pbss
);
1259 static int wil_cfg80211_stop_ap(struct wiphy
*wiphy
,
1260 struct net_device
*ndev
)
1262 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
1264 wil_dbg_misc(wil
, "%s()\n", __func__
);
1266 netif_carrier_off(ndev
);
1267 wil_set_recovery_state(wil
, fw_recovery_idle
);
1269 mutex_lock(&wil
->mutex
);
1275 mutex_unlock(&wil
->mutex
);
1280 static int wil_cfg80211_del_station(struct wiphy
*wiphy
,
1281 struct net_device
*dev
,
1282 struct station_del_parameters
*params
)
1284 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
1286 wil_dbg_misc(wil
, "%s(%pM, reason=%d)\n", __func__
, params
->mac
,
1287 params
->reason_code
);
1289 mutex_lock(&wil
->mutex
);
1290 wil6210_disconnect(wil
, params
->mac
, params
->reason_code
, false);
1291 mutex_unlock(&wil
->mutex
);
1296 /* probe_client handling */
1297 static void wil_probe_client_handle(struct wil6210_priv
*wil
,
1298 struct wil_probe_client_req
*req
)
1300 struct net_device
*ndev
= wil_to_ndev(wil
);
1301 struct wil_sta_info
*sta
= &wil
->sta
[req
->cid
];
1302 /* assume STA is alive if it is still connected,
1303 * else FW will disconnect it
1305 bool alive
= (sta
->status
== wil_sta_connected
);
1307 cfg80211_probe_status(ndev
, sta
->addr
, req
->cookie
, alive
, GFP_KERNEL
);
1310 static struct list_head
*next_probe_client(struct wil6210_priv
*wil
)
1312 struct list_head
*ret
= NULL
;
1314 mutex_lock(&wil
->probe_client_mutex
);
1316 if (!list_empty(&wil
->probe_client_pending
)) {
1317 ret
= wil
->probe_client_pending
.next
;
1321 mutex_unlock(&wil
->probe_client_mutex
);
1326 void wil_probe_client_worker(struct work_struct
*work
)
1328 struct wil6210_priv
*wil
= container_of(work
, struct wil6210_priv
,
1329 probe_client_worker
);
1330 struct wil_probe_client_req
*req
;
1331 struct list_head
*lh
;
1333 while ((lh
= next_probe_client(wil
)) != NULL
) {
1334 req
= list_entry(lh
, struct wil_probe_client_req
, list
);
1336 wil_probe_client_handle(wil
, req
);
1341 void wil_probe_client_flush(struct wil6210_priv
*wil
)
1343 struct wil_probe_client_req
*req
, *t
;
1345 wil_dbg_misc(wil
, "%s()\n", __func__
);
1347 mutex_lock(&wil
->probe_client_mutex
);
1349 list_for_each_entry_safe(req
, t
, &wil
->probe_client_pending
, list
) {
1350 list_del(&req
->list
);
1354 mutex_unlock(&wil
->probe_client_mutex
);
1357 static int wil_cfg80211_probe_client(struct wiphy
*wiphy
,
1358 struct net_device
*dev
,
1359 const u8
*peer
, u64
*cookie
)
1361 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
1362 struct wil_probe_client_req
*req
;
1363 int cid
= wil_find_cid(wil
, peer
);
1365 wil_dbg_misc(wil
, "%s(%pM => CID %d)\n", __func__
, peer
, cid
);
1370 req
= kzalloc(sizeof(*req
), GFP_KERNEL
);
1377 mutex_lock(&wil
->probe_client_mutex
);
1378 list_add_tail(&req
->list
, &wil
->probe_client_pending
);
1379 mutex_unlock(&wil
->probe_client_mutex
);
1381 *cookie
= req
->cookie
;
1382 queue_work(wil
->wq_service
, &wil
->probe_client_worker
);
1386 static int wil_cfg80211_change_bss(struct wiphy
*wiphy
,
1387 struct net_device
*dev
,
1388 struct bss_parameters
*params
)
1390 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
1392 if (params
->ap_isolate
>= 0) {
1393 wil_dbg_misc(wil
, "%s(ap_isolate %d => %d)\n", __func__
,
1394 wil
->ap_isolate
, params
->ap_isolate
);
1395 wil
->ap_isolate
= params
->ap_isolate
;
1401 static int wil_cfg80211_start_p2p_device(struct wiphy
*wiphy
,
1402 struct wireless_dev
*wdev
)
1404 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
1406 wil_dbg_misc(wil
, "%s: entered\n", __func__
);
1407 wil
->p2p
.p2p_dev_started
= 1;
1411 static void wil_cfg80211_stop_p2p_device(struct wiphy
*wiphy
,
1412 struct wireless_dev
*wdev
)
1414 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
1415 struct wil_p2p_info
*p2p
= &wil
->p2p
;
1417 if (!p2p
->p2p_dev_started
)
1420 wil_dbg_misc(wil
, "%s: entered\n", __func__
);
1421 mutex_lock(&wil
->mutex
);
1422 wil_p2p_stop_radio_operations(wil
);
1423 p2p
->p2p_dev_started
= 0;
1424 mutex_unlock(&wil
->mutex
);
1427 static struct cfg80211_ops wil_cfg80211_ops
= {
1428 .add_virtual_intf
= wil_cfg80211_add_iface
,
1429 .del_virtual_intf
= wil_cfg80211_del_iface
,
1430 .scan
= wil_cfg80211_scan
,
1431 .connect
= wil_cfg80211_connect
,
1432 .disconnect
= wil_cfg80211_disconnect
,
1433 .change_virtual_intf
= wil_cfg80211_change_iface
,
1434 .get_station
= wil_cfg80211_get_station
,
1435 .dump_station
= wil_cfg80211_dump_station
,
1436 .remain_on_channel
= wil_remain_on_channel
,
1437 .cancel_remain_on_channel
= wil_cancel_remain_on_channel
,
1438 .mgmt_tx
= wil_cfg80211_mgmt_tx
,
1439 .set_monitor_channel
= wil_cfg80211_set_channel
,
1440 .add_key
= wil_cfg80211_add_key
,
1441 .del_key
= wil_cfg80211_del_key
,
1442 .set_default_key
= wil_cfg80211_set_default_key
,
1444 .change_beacon
= wil_cfg80211_change_beacon
,
1445 .start_ap
= wil_cfg80211_start_ap
,
1446 .stop_ap
= wil_cfg80211_stop_ap
,
1447 .del_station
= wil_cfg80211_del_station
,
1448 .probe_client
= wil_cfg80211_probe_client
,
1449 .change_bss
= wil_cfg80211_change_bss
,
1451 .start_p2p_device
= wil_cfg80211_start_p2p_device
,
1452 .stop_p2p_device
= wil_cfg80211_stop_p2p_device
,
1455 static void wil_wiphy_init(struct wiphy
*wiphy
)
1457 wiphy
->max_scan_ssids
= 1;
1458 wiphy
->max_scan_ie_len
= WMI_MAX_IE_LEN
;
1459 wiphy
->max_remain_on_channel_duration
= WIL_MAX_ROC_DURATION_MS
;
1460 wiphy
->max_num_pmkids
= 0 /* TODO: */;
1461 wiphy
->interface_modes
= BIT(NL80211_IFTYPE_STATION
) |
1462 BIT(NL80211_IFTYPE_AP
) |
1463 BIT(NL80211_IFTYPE_P2P_CLIENT
) |
1464 BIT(NL80211_IFTYPE_P2P_GO
) |
1465 BIT(NL80211_IFTYPE_P2P_DEVICE
) |
1466 BIT(NL80211_IFTYPE_MONITOR
);
1467 wiphy
->flags
|= WIPHY_FLAG_HAVE_AP_SME
|
1468 WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL
|
1469 WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD
;
1470 dev_dbg(wiphy_dev(wiphy
), "%s : flags = 0x%08x\n",
1471 __func__
, wiphy
->flags
);
1472 wiphy
->probe_resp_offload
=
1473 NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS
|
1474 NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2
|
1475 NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P
;
1477 wiphy
->bands
[NL80211_BAND_60GHZ
] = &wil_band_60ghz
;
1479 /* TODO: figure this out */
1480 wiphy
->signal_type
= CFG80211_SIGNAL_TYPE_UNSPEC
;
1482 wiphy
->cipher_suites
= wil_cipher_suites
;
1483 wiphy
->n_cipher_suites
= ARRAY_SIZE(wil_cipher_suites
);
1484 wiphy
->mgmt_stypes
= wil_mgmt_stypes
;
1485 wiphy
->features
|= NL80211_FEATURE_SK_TX_STATUS
;
1488 struct wireless_dev
*wil_cfg80211_init(struct device
*dev
)
1491 struct wireless_dev
*wdev
;
1493 dev_dbg(dev
, "%s()\n", __func__
);
1495 wdev
= kzalloc(sizeof(*wdev
), GFP_KERNEL
);
1497 return ERR_PTR(-ENOMEM
);
1499 wdev
->wiphy
= wiphy_new(&wil_cfg80211_ops
,
1500 sizeof(struct wil6210_priv
));
1506 set_wiphy_dev(wdev
->wiphy
, dev
);
1507 wil_wiphy_init(wdev
->wiphy
);
1517 void wil_wdev_free(struct wil6210_priv
*wil
)
1519 struct wireless_dev
*wdev
= wil_to_wdev(wil
);
1521 dev_dbg(wil_to_dev(wil
), "%s()\n", __func__
);
1526 wiphy_free(wdev
->wiphy
);
1530 void wil_p2p_wdev_free(struct wil6210_priv
*wil
)
1532 struct wireless_dev
*p2p_wdev
;
1534 mutex_lock(&wil
->p2p_wdev_mutex
);
1535 p2p_wdev
= wil
->p2p_wdev
;
1536 wil
->p2p_wdev
= NULL
;
1537 wil
->radio_wdev
= wil_to_wdev(wil
);
1538 mutex_unlock(&wil
->p2p_wdev_mutex
);
1540 cfg80211_unregister_wdev(p2p_wdev
);