1 // SPDX-License-Identifier: GPL-2.0+
2 /* Copyright (c) 2015-2016 Quantenna Communications. All rights reserved. */
3
4 #include <linux/kernel.h>
5 #include <linux/etherdevice.h>
6 #include <linux/vmalloc.h>
7 #include <linux/ieee80211.h>
8 #include <net/cfg80211.h>
9 #include <net/netlink.h>
10
11 #include "cfg80211.h"
12 #include "commands.h"
13 #include "core.h"
14 #include "util.h"
15 #include "bus.h"
16
17 /* Supported rates to be advertised to the cfg80211 */
18 static struct ieee80211_rate qtnf_rates_2g[] = {
19 {.bitrate = 10, .hw_value = 2, },
20 {.bitrate = 20, .hw_value = 4, },
21 {.bitrate = 55, .hw_value = 11, },
22 {.bitrate = 110, .hw_value = 22, },
23 {.bitrate = 60, .hw_value = 12, },
24 {.bitrate = 90, .hw_value = 18, },
25 {.bitrate = 120, .hw_value = 24, },
26 {.bitrate = 180, .hw_value = 36, },
27 {.bitrate = 240, .hw_value = 48, },
28 {.bitrate = 360, .hw_value = 72, },
29 {.bitrate = 480, .hw_value = 96, },
30 {.bitrate = 540, .hw_value = 108, },
31 };
32
33 /* Supported rates to be advertised to the cfg80211 */
34 static struct ieee80211_rate qtnf_rates_5g[] = {
35 {.bitrate = 60, .hw_value = 12, },
36 {.bitrate = 90, .hw_value = 18, },
37 {.bitrate = 120, .hw_value = 24, },
38 {.bitrate = 180, .hw_value = 36, },
39 {.bitrate = 240, .hw_value = 48, },
40 {.bitrate = 360, .hw_value = 72, },
41 {.bitrate = 480, .hw_value = 96, },
42 {.bitrate = 540, .hw_value = 108, },
43 };
44
45 /* Supported crypto cipher suits to be advertised to cfg80211 */
46 static const u32 qtnf_cipher_suites[] = {
47 WLAN_CIPHER_SUITE_TKIP,
48 WLAN_CIPHER_SUITE_CCMP,
49 WLAN_CIPHER_SUITE_AES_CMAC,
50 };
51
52 /* Supported mgmt frame types to be advertised to cfg80211 */
53 static const struct ieee80211_txrx_stypes
54 qtnf_mgmt_stypes[NUM_NL80211_IFTYPES] = {
55 [NL80211_IFTYPE_STATION] = {
56 .tx = BIT(IEEE80211_STYPE_ACTION >> 4) |
57 BIT(IEEE80211_STYPE_AUTH >> 4),
58 .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
59 BIT(IEEE80211_STYPE_PROBE_REQ >> 4) |
60 BIT(IEEE80211_STYPE_AUTH >> 4),
61 },
62 [NL80211_IFTYPE_AP] = {
63 .tx = BIT(IEEE80211_STYPE_ACTION >> 4) |
64 BIT(IEEE80211_STYPE_AUTH >> 4),
65 .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
66 BIT(IEEE80211_STYPE_PROBE_REQ >> 4) |
67 BIT(IEEE80211_STYPE_ASSOC_REQ >> 4) |
68 BIT(IEEE80211_STYPE_REASSOC_REQ >> 4) |
69 BIT(IEEE80211_STYPE_AUTH >> 4),
70 },
71 };
72
73 static int
qtnf_validate_iface_combinations(struct wiphy * wiphy,struct qtnf_vif * change_vif,enum nl80211_iftype new_type)74 qtnf_validate_iface_combinations(struct wiphy *wiphy,
75 struct qtnf_vif *change_vif,
76 enum nl80211_iftype new_type)
77 {
78 struct qtnf_wmac *mac;
79 struct qtnf_vif *vif;
80 int i;
81 int ret = 0;
82 struct iface_combination_params params = {
83 .num_different_channels = 1,
84 };
85
86 mac = wiphy_priv(wiphy);
87 if (!mac)
88 return -EFAULT;
89
90 for (i = 0; i < QTNF_MAX_INTF; i++) {
91 vif = &mac->iflist[i];
92 if (vif->wdev.iftype != NL80211_IFTYPE_UNSPECIFIED)
93 params.iftype_num[vif->wdev.iftype]++;
94 }
95
96 if (change_vif) {
97 params.iftype_num[new_type]++;
98 params.iftype_num[change_vif->wdev.iftype]--;
99 } else {
100 params.iftype_num[new_type]++;
101 }
102
103 ret = cfg80211_check_combinations(wiphy, ¶ms);
104
105 if (ret)
106 return ret;
107
108 /* Check repeater interface combination: primary VIF should be STA only.
109 * STA (primary) + AP (secondary) is OK.
110 * AP (primary) + STA (secondary) is not supported.
111 */
112 vif = qtnf_mac_get_base_vif(mac);
113 if (vif && vif->wdev.iftype == NL80211_IFTYPE_AP &&
114 vif != change_vif && new_type == NL80211_IFTYPE_STATION) {
115 ret = -EINVAL;
116 pr_err("MAC%u invalid combination: AP as primary repeater interface is not supported\n",
117 mac->macid);
118 }
119
120 return ret;
121 }
122
123 static int
qtnf_change_virtual_intf(struct wiphy * wiphy,struct net_device * dev,enum nl80211_iftype type,struct vif_params * params)124 qtnf_change_virtual_intf(struct wiphy *wiphy,
125 struct net_device *dev,
126 enum nl80211_iftype type,
127 struct vif_params *params)
128 {
129 struct qtnf_vif *vif = qtnf_netdev_get_priv(dev);
130 u8 *mac_addr = NULL;
131 int use4addr = 0;
132 int ret;
133
134 ret = qtnf_validate_iface_combinations(wiphy, vif, type);
135 if (ret) {
136 pr_err("VIF%u.%u combination check: failed to set type %d\n",
137 vif->mac->macid, vif->vifid, type);
138 return ret;
139 }
140
141 if (params) {
142 mac_addr = params->macaddr;
143 use4addr = params->use_4addr;
144 }
145
146 qtnf_scan_done(vif->mac, true);
147
148 ret = qtnf_cmd_send_change_intf_type(vif, type, use4addr, mac_addr);
149 if (ret) {
150 pr_err("VIF%u.%u: failed to change type to %d\n",
151 vif->mac->macid, vif->vifid, type);
152 return ret;
153 }
154
155 vif->wdev.iftype = type;
156 return 0;
157 }
158
qtnf_del_virtual_intf(struct wiphy * wiphy,struct wireless_dev * wdev)159 int qtnf_del_virtual_intf(struct wiphy *wiphy, struct wireless_dev *wdev)
160 {
161 struct net_device *netdev = wdev->netdev;
162 struct qtnf_vif *vif;
163 struct sk_buff *skb;
164
165 if (WARN_ON(!netdev))
166 return -EFAULT;
167
168 vif = qtnf_netdev_get_priv(wdev->netdev);
169
170 qtnf_scan_done(vif->mac, true);
171
172 /* Stop data */
173 netif_tx_stop_all_queues(netdev);
174 if (netif_carrier_ok(netdev))
175 netif_carrier_off(netdev);
176
177 while ((skb = skb_dequeue(&vif->high_pri_tx_queue)))
178 dev_kfree_skb_any(skb);
179
180 cancel_work_sync(&vif->high_pri_tx_work);
181
182 if (netdev->reg_state == NETREG_REGISTERED)
183 cfg80211_unregister_netdevice(netdev);
184
185 if (qtnf_cmd_send_del_intf(vif))
186 pr_err("VIF%u.%u: failed to delete VIF\n", vif->mac->macid,
187 vif->vifid);
188
189 vif->netdev->ieee80211_ptr = NULL;
190 vif->netdev = NULL;
191 vif->wdev.iftype = NL80211_IFTYPE_UNSPECIFIED;
192
193 return 0;
194 }
195
qtnf_add_virtual_intf(struct wiphy * wiphy,const char * name,unsigned char name_assign_t,enum nl80211_iftype type,struct vif_params * params)196 static struct wireless_dev *qtnf_add_virtual_intf(struct wiphy *wiphy,
197 const char *name,
198 unsigned char name_assign_t,
199 enum nl80211_iftype type,
200 struct vif_params *params)
201 {
202 struct qtnf_wmac *mac;
203 struct qtnf_vif *vif;
204 u8 *mac_addr = NULL;
205 int use4addr = 0;
206 int ret;
207
208 mac = wiphy_priv(wiphy);
209
210 if (!mac)
211 return ERR_PTR(-EFAULT);
212
213 ret = qtnf_validate_iface_combinations(wiphy, NULL, type);
214 if (ret) {
215 pr_err("MAC%u invalid combination: failed to add type %d\n",
216 mac->macid, type);
217 return ERR_PTR(ret);
218 }
219
220 switch (type) {
221 case NL80211_IFTYPE_STATION:
222 case NL80211_IFTYPE_AP:
223 vif = qtnf_mac_get_free_vif(mac);
224 if (!vif) {
225 pr_err("MAC%u: no free VIF available\n", mac->macid);
226 return ERR_PTR(-EFAULT);
227 }
228
229 eth_zero_addr(vif->mac_addr);
230 eth_zero_addr(vif->bssid);
231 vif->bss_priority = QTNF_DEF_BSS_PRIORITY;
232 memset(&vif->wdev, 0, sizeof(vif->wdev));
233 vif->wdev.wiphy = wiphy;
234 vif->wdev.iftype = type;
235 break;
236 default:
237 pr_err("MAC%u: unsupported IF type %d\n", mac->macid, type);
238 return ERR_PTR(-ENOTSUPP);
239 }
240
241 if (params) {
242 mac_addr = params->macaddr;
243 use4addr = params->use_4addr;
244 }
245
246 ret = qtnf_cmd_send_add_intf(vif, type, use4addr, mac_addr);
247 if (ret) {
248 pr_err("VIF%u.%u: failed to add VIF %pM\n",
249 mac->macid, vif->vifid, mac_addr);
250 goto err_cmd;
251 }
252
253 if (!is_valid_ether_addr(vif->mac_addr)) {
254 pr_err("VIF%u.%u: FW reported bad MAC: %pM\n",
255 mac->macid, vif->vifid, vif->mac_addr);
256 ret = -EINVAL;
257 goto error_del_vif;
258 }
259
260 ret = qtnf_core_net_attach(mac, vif, name, name_assign_t);
261 if (ret) {
262 pr_err("VIF%u.%u: failed to attach netdev\n", mac->macid,
263 vif->vifid);
264 goto error_del_vif;
265 }
266
267 if (qtnf_hwcap_is_set(&mac->bus->hw_info, QLINK_HW_CAPAB_HW_BRIDGE)) {
268 ret = qtnf_cmd_netdev_changeupper(vif, vif->netdev->ifindex);
269 if (ret) {
270 cfg80211_unregister_netdevice(vif->netdev);
271 vif->netdev = NULL;
272 goto error_del_vif;
273 }
274 }
275
276 vif->wdev.netdev = vif->netdev;
277 return &vif->wdev;
278
279 error_del_vif:
280 qtnf_cmd_send_del_intf(vif);
281 err_cmd:
282 vif->wdev.iftype = NL80211_IFTYPE_UNSPECIFIED;
283
284 return ERR_PTR(ret);
285 }
286
qtnf_mgmt_set_appie(struct qtnf_vif * vif,const struct cfg80211_beacon_data * info)287 static int qtnf_mgmt_set_appie(struct qtnf_vif *vif,
288 const struct cfg80211_beacon_data *info)
289 {
290 int ret = 0;
291
292 if (!info->beacon_ies || !info->beacon_ies_len) {
293 ret = qtnf_cmd_send_mgmt_set_appie(vif, QLINK_IE_SET_BEACON_IES,
294 NULL, 0);
295 } else {
296 ret = qtnf_cmd_send_mgmt_set_appie(vif, QLINK_IE_SET_BEACON_IES,
297 info->beacon_ies,
298 info->beacon_ies_len);
299 }
300
301 if (ret)
302 goto out;
303
304 if (!info->proberesp_ies || !info->proberesp_ies_len) {
305 ret = qtnf_cmd_send_mgmt_set_appie(vif,
306 QLINK_IE_SET_PROBE_RESP_IES,
307 NULL, 0);
308 } else {
309 ret = qtnf_cmd_send_mgmt_set_appie(vif,
310 QLINK_IE_SET_PROBE_RESP_IES,
311 info->proberesp_ies,
312 info->proberesp_ies_len);
313 }
314
315 if (ret)
316 goto out;
317
318 if (!info->assocresp_ies || !info->assocresp_ies_len) {
319 ret = qtnf_cmd_send_mgmt_set_appie(vif,
320 QLINK_IE_SET_ASSOC_RESP,
321 NULL, 0);
322 } else {
323 ret = qtnf_cmd_send_mgmt_set_appie(vif,
324 QLINK_IE_SET_ASSOC_RESP,
325 info->assocresp_ies,
326 info->assocresp_ies_len);
327 }
328
329 out:
330 return ret;
331 }
332
qtnf_change_beacon(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_beacon_data * info)333 static int qtnf_change_beacon(struct wiphy *wiphy, struct net_device *dev,
334 struct cfg80211_beacon_data *info)
335 {
336 struct qtnf_vif *vif = qtnf_netdev_get_priv(dev);
337
338 return qtnf_mgmt_set_appie(vif, info);
339 }
340
qtnf_start_ap(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_ap_settings * settings)341 static int qtnf_start_ap(struct wiphy *wiphy, struct net_device *dev,
342 struct cfg80211_ap_settings *settings)
343 {
344 struct qtnf_vif *vif = qtnf_netdev_get_priv(dev);
345 int ret;
346
347 ret = qtnf_cmd_send_start_ap(vif, settings);
348 if (ret)
349 pr_err("VIF%u.%u: failed to start AP\n", vif->mac->macid,
350 vif->vifid);
351
352 return ret;
353 }
354
qtnf_stop_ap(struct wiphy * wiphy,struct net_device * dev,unsigned int link_id)355 static int qtnf_stop_ap(struct wiphy *wiphy, struct net_device *dev,
356 unsigned int link_id)
357 {
358 struct qtnf_vif *vif = qtnf_netdev_get_priv(dev);
359 int ret;
360
361 qtnf_scan_done(vif->mac, true);
362
363 ret = qtnf_cmd_send_stop_ap(vif);
364 if (ret)
365 pr_err("VIF%u.%u: failed to stop AP operation in FW\n",
366 vif->mac->macid, vif->vifid);
367
368 netif_carrier_off(vif->netdev);
369
370 return ret;
371 }
372
qtnf_set_wiphy_params(struct wiphy * wiphy,u32 changed)373 static int qtnf_set_wiphy_params(struct wiphy *wiphy, u32 changed)
374 {
375 struct qtnf_wmac *mac = wiphy_priv(wiphy);
376 struct qtnf_vif *vif;
377 int ret;
378
379 vif = qtnf_mac_get_base_vif(mac);
380 if (!vif) {
381 pr_err("MAC%u: primary VIF is not configured\n", mac->macid);
382 return -EFAULT;
383 }
384
385 ret = qtnf_cmd_send_update_phy_params(mac, changed);
386 if (ret)
387 pr_err("MAC%u: failed to update PHY params\n", mac->macid);
388
389 return ret;
390 }
391
392 static void
qtnf_update_mgmt_frame_registrations(struct wiphy * wiphy,struct wireless_dev * wdev,struct mgmt_frame_regs * upd)393 qtnf_update_mgmt_frame_registrations(struct wiphy *wiphy,
394 struct wireless_dev *wdev,
395 struct mgmt_frame_regs *upd)
396 {
397 struct qtnf_vif *vif = qtnf_netdev_get_priv(wdev->netdev);
398 u16 new_mask = upd->interface_stypes;
399 u16 old_mask = vif->mgmt_frames_bitmask;
400 static const struct {
401 u16 mask, qlink_type;
402 } updates[] = {
403 {
404 .mask = BIT(IEEE80211_STYPE_REASSOC_REQ >> 4) |
405 BIT(IEEE80211_STYPE_ASSOC_REQ >> 4),
406 .qlink_type = QLINK_MGMT_FRAME_ASSOC_REQ,
407 },
408 {
409 .mask = BIT(IEEE80211_STYPE_AUTH >> 4),
410 .qlink_type = QLINK_MGMT_FRAME_AUTH,
411 },
412 {
413 .mask = BIT(IEEE80211_STYPE_PROBE_REQ >> 4),
414 .qlink_type = QLINK_MGMT_FRAME_PROBE_REQ,
415 },
416 {
417 .mask = BIT(IEEE80211_STYPE_ACTION >> 4),
418 .qlink_type = QLINK_MGMT_FRAME_ACTION,
419 },
420 };
421 unsigned int i;
422
423 if (new_mask == old_mask)
424 return;
425
426 for (i = 0; i < ARRAY_SIZE(updates); i++) {
427 u16 mask = updates[i].mask;
428 u16 qlink_frame_type = updates[i].qlink_type;
429 bool reg;
430
431 /* the ! are here due to the assoc/reassoc merge */
432 if (!(new_mask & mask) == !(old_mask & mask))
433 continue;
434
435 reg = new_mask & mask;
436
437 if (qtnf_cmd_send_register_mgmt(vif, qlink_frame_type, reg))
438 pr_warn("VIF%u.%u: failed to %sregister qlink frame type 0x%x\n",
439 vif->mac->macid, vif->vifid, reg ? "" : "un",
440 qlink_frame_type);
441 }
442
443 vif->mgmt_frames_bitmask = new_mask;
444 }
445
446 static int
qtnf_mgmt_tx(struct wiphy * wiphy,struct wireless_dev * wdev,struct cfg80211_mgmt_tx_params * params,u64 * cookie)447 qtnf_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
448 struct cfg80211_mgmt_tx_params *params, u64 *cookie)
449 {
450 struct qtnf_vif *vif = qtnf_netdev_get_priv(wdev->netdev);
451 const struct ieee80211_mgmt *mgmt_frame = (void *)params->buf;
452 u32 short_cookie = prandom_u32();
453 u16 flags = 0;
454 u16 freq;
455
456 *cookie = short_cookie;
457
458 if (params->offchan)
459 flags |= QLINK_FRAME_TX_FLAG_OFFCHAN;
460
461 if (params->no_cck)
462 flags |= QLINK_FRAME_TX_FLAG_NO_CCK;
463
464 if (params->dont_wait_for_ack)
465 flags |= QLINK_FRAME_TX_FLAG_ACK_NOWAIT;
466
467 /* If channel is not specified, pass "freq = 0" to tell device
468 * firmware to use current channel.
469 */
470 if (params->chan)
471 freq = params->chan->center_freq;
472 else
473 freq = 0;
474
475 pr_debug("%s freq:%u; FC:%.4X; DA:%pM; len:%zu; C:%.8X; FL:%.4X\n",
476 wdev->netdev->name, freq,
477 le16_to_cpu(mgmt_frame->frame_control), mgmt_frame->da,
478 params->len, short_cookie, flags);
479
480 return qtnf_cmd_send_frame(vif, short_cookie, flags,
481 freq, params->buf, params->len);
482 }
483
484 static int
qtnf_get_station(struct wiphy * wiphy,struct net_device * dev,const u8 * mac,struct station_info * sinfo)485 qtnf_get_station(struct wiphy *wiphy, struct net_device *dev,
486 const u8 *mac, struct station_info *sinfo)
487 {
488 struct qtnf_vif *vif = qtnf_netdev_get_priv(dev);
489
490 sinfo->generation = vif->generation;
491 return qtnf_cmd_get_sta_info(vif, mac, sinfo);
492 }
493
494 static int
qtnf_dump_station(struct wiphy * wiphy,struct net_device * dev,int idx,u8 * mac,struct station_info * sinfo)495 qtnf_dump_station(struct wiphy *wiphy, struct net_device *dev,
496 int idx, u8 *mac, struct station_info *sinfo)
497 {
498 struct qtnf_vif *vif = qtnf_netdev_get_priv(dev);
499 const struct qtnf_sta_node *sta_node;
500 int ret;
501
502 switch (vif->wdev.iftype) {
503 case NL80211_IFTYPE_STATION:
504 if (idx != 0 || !vif->wdev.connected)
505 return -ENOENT;
506
507 ether_addr_copy(mac, vif->bssid);
508 break;
509 case NL80211_IFTYPE_AP:
510 sta_node = qtnf_sta_list_lookup_index(&vif->sta_list, idx);
511 if (unlikely(!sta_node))
512 return -ENOENT;
513
514 ether_addr_copy(mac, sta_node->mac_addr);
515 break;
516 default:
517 return -ENOTSUPP;
518 }
519
520 ret = qtnf_cmd_get_sta_info(vif, mac, sinfo);
521
522 if (vif->wdev.iftype == NL80211_IFTYPE_AP) {
523 if (ret == -ENOENT) {
524 cfg80211_del_sta(vif->netdev, mac, GFP_KERNEL);
525 sinfo->filled = 0;
526 }
527 }
528
529 sinfo->generation = vif->generation;
530
531 return ret;
532 }
533
qtnf_add_key(struct wiphy * wiphy,struct net_device * dev,int link_id,u8 key_index,bool pairwise,const u8 * mac_addr,struct key_params * params)534 static int qtnf_add_key(struct wiphy *wiphy, struct net_device *dev,
535 int link_id, u8 key_index, bool pairwise,
536 const u8 *mac_addr, struct key_params *params)
537 {
538 struct qtnf_vif *vif = qtnf_netdev_get_priv(dev);
539 int ret;
540
541 ret = qtnf_cmd_send_add_key(vif, key_index, pairwise, mac_addr, params);
542 if (ret)
543 pr_err("VIF%u.%u: failed to add key: cipher=%x idx=%u pw=%u\n",
544 vif->mac->macid, vif->vifid, params->cipher, key_index,
545 pairwise);
546
547 return ret;
548 }
549
qtnf_del_key(struct wiphy * wiphy,struct net_device * dev,int link_id,u8 key_index,bool pairwise,const u8 * mac_addr)550 static int qtnf_del_key(struct wiphy *wiphy, struct net_device *dev,
551 int link_id, u8 key_index, bool pairwise,
552 const u8 *mac_addr)
553 {
554 struct qtnf_vif *vif = qtnf_netdev_get_priv(dev);
555 int ret;
556
557 ret = qtnf_cmd_send_del_key(vif, key_index, pairwise, mac_addr);
558 if (ret) {
559 if (ret == -ENOENT) {
560 pr_debug("VIF%u.%u: key index %d out of bounds\n",
561 vif->mac->macid, vif->vifid, key_index);
562 } else {
563 pr_err("VIF%u.%u: failed to delete key: idx=%u pw=%u\n",
564 vif->mac->macid, vif->vifid,
565 key_index, pairwise);
566 }
567 }
568
569 return ret;
570 }
571
qtnf_set_default_key(struct wiphy * wiphy,struct net_device * dev,int link_id,u8 key_index,bool unicast,bool multicast)572 static int qtnf_set_default_key(struct wiphy *wiphy, struct net_device *dev,
573 int link_id, u8 key_index, bool unicast,
574 bool multicast)
575 {
576 struct qtnf_vif *vif = qtnf_netdev_get_priv(dev);
577 int ret;
578
579 ret = qtnf_cmd_send_set_default_key(vif, key_index, unicast, multicast);
580 if (ret)
581 pr_err("VIF%u.%u: failed to set dflt key: idx=%u uc=%u mc=%u\n",
582 vif->mac->macid, vif->vifid, key_index, unicast,
583 multicast);
584
585 return ret;
586 }
587
588 static int
qtnf_set_default_mgmt_key(struct wiphy * wiphy,struct net_device * dev,int link_id,u8 key_index)589 qtnf_set_default_mgmt_key(struct wiphy *wiphy, struct net_device *dev,
590 int link_id, u8 key_index)
591 {
592 struct qtnf_vif *vif = qtnf_netdev_get_priv(dev);
593 int ret;
594
595 ret = qtnf_cmd_send_set_default_mgmt_key(vif, key_index);
596 if (ret)
597 pr_err("VIF%u.%u: failed to set default MGMT key: idx=%u\n",
598 vif->mac->macid, vif->vifid, key_index);
599
600 return ret;
601 }
602
603 static int
qtnf_change_station(struct wiphy * wiphy,struct net_device * dev,const u8 * mac,struct station_parameters * params)604 qtnf_change_station(struct wiphy *wiphy, struct net_device *dev,
605 const u8 *mac, struct station_parameters *params)
606 {
607 struct qtnf_vif *vif = qtnf_netdev_get_priv(dev);
608 int ret;
609
610 ret = qtnf_cmd_send_change_sta(vif, mac, params);
611 if (ret)
612 pr_err("VIF%u.%u: failed to change STA %pM\n",
613 vif->mac->macid, vif->vifid, mac);
614
615 return ret;
616 }
617
618 static int
qtnf_del_station(struct wiphy * wiphy,struct net_device * dev,struct station_del_parameters * params)619 qtnf_del_station(struct wiphy *wiphy, struct net_device *dev,
620 struct station_del_parameters *params)
621 {
622 struct qtnf_vif *vif = qtnf_netdev_get_priv(dev);
623 int ret;
624
625 if (params->mac &&
626 (vif->wdev.iftype == NL80211_IFTYPE_AP) &&
627 !is_broadcast_ether_addr(params->mac) &&
628 !qtnf_sta_list_lookup(&vif->sta_list, params->mac))
629 return 0;
630
631 ret = qtnf_cmd_send_del_sta(vif, params);
632 if (ret)
633 pr_err("VIF%u.%u: failed to delete STA %pM\n",
634 vif->mac->macid, vif->vifid, params->mac);
635
636 return ret;
637 }
638
639 static int
qtnf_scan(struct wiphy * wiphy,struct cfg80211_scan_request * request)640 qtnf_scan(struct wiphy *wiphy, struct cfg80211_scan_request *request)
641 {
642 struct qtnf_wmac *mac = wiphy_priv(wiphy);
643 int ret;
644
645 cancel_delayed_work_sync(&mac->scan_timeout);
646
647 mac->scan_req = request;
648
649 ret = qtnf_cmd_send_scan(mac);
650 if (ret) {
651 pr_err("MAC%u: failed to start scan\n", mac->macid);
652 mac->scan_req = NULL;
653 goto out;
654 }
655
656 pr_debug("MAC%u: scan started\n", mac->macid);
657 queue_delayed_work(mac->bus->workqueue, &mac->scan_timeout,
658 QTNF_SCAN_TIMEOUT_SEC * HZ);
659
660 out:
661 return ret;
662 }
663
664 static int
qtnf_connect(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_connect_params * sme)665 qtnf_connect(struct wiphy *wiphy, struct net_device *dev,
666 struct cfg80211_connect_params *sme)
667 {
668 struct qtnf_vif *vif = qtnf_netdev_get_priv(dev);
669 int ret;
670
671 if (vif->wdev.iftype != NL80211_IFTYPE_STATION)
672 return -EOPNOTSUPP;
673
674 if (sme->auth_type == NL80211_AUTHTYPE_SAE &&
675 !(sme->flags & CONNECT_REQ_EXTERNAL_AUTH_SUPPORT)) {
676 pr_err("can not offload authentication to userspace\n");
677 return -EOPNOTSUPP;
678 }
679
680 if (sme->bssid)
681 ether_addr_copy(vif->bssid, sme->bssid);
682 else
683 eth_zero_addr(vif->bssid);
684
685 ret = qtnf_cmd_send_connect(vif, sme);
686 if (ret)
687 pr_err("VIF%u.%u: failed to connect\n",
688 vif->mac->macid, vif->vifid);
689
690 return ret;
691 }
692
693 static int
qtnf_external_auth(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_external_auth_params * auth)694 qtnf_external_auth(struct wiphy *wiphy, struct net_device *dev,
695 struct cfg80211_external_auth_params *auth)
696 {
697 struct qtnf_vif *vif = qtnf_netdev_get_priv(dev);
698 int ret;
699
700 if (vif->wdev.iftype == NL80211_IFTYPE_STATION &&
701 !ether_addr_equal(vif->bssid, auth->bssid))
702 pr_warn("unexpected bssid: %pM", auth->bssid);
703
704 ret = qtnf_cmd_send_external_auth(vif, auth);
705 if (ret)
706 pr_err("VIF%u.%u: failed to report external auth\n",
707 vif->mac->macid, vif->vifid);
708
709 return ret;
710 }
711
712 static int
qtnf_disconnect(struct wiphy * wiphy,struct net_device * dev,u16 reason_code)713 qtnf_disconnect(struct wiphy *wiphy, struct net_device *dev,
714 u16 reason_code)
715 {
716 struct qtnf_wmac *mac = wiphy_priv(wiphy);
717 struct qtnf_vif *vif;
718 int ret = 0;
719
720 vif = qtnf_mac_get_base_vif(mac);
721 if (!vif) {
722 pr_err("MAC%u: primary VIF is not configured\n", mac->macid);
723 return -EFAULT;
724 }
725
726 if (vif->wdev.iftype != NL80211_IFTYPE_STATION) {
727 return -EOPNOTSUPP;
728 }
729
730 ret = qtnf_cmd_send_disconnect(vif, reason_code);
731 if (ret)
732 pr_err("VIF%u.%u: failed to disconnect\n",
733 mac->macid, vif->vifid);
734
735 if (vif->wdev.connected) {
736 netif_carrier_off(vif->netdev);
737 cfg80211_disconnected(vif->netdev, reason_code,
738 NULL, 0, true, GFP_KERNEL);
739 }
740
741 return ret;
742 }
743
744 static int
qtnf_dump_survey(struct wiphy * wiphy,struct net_device * dev,int idx,struct survey_info * survey)745 qtnf_dump_survey(struct wiphy *wiphy, struct net_device *dev,
746 int idx, struct survey_info *survey)
747 {
748 struct qtnf_wmac *mac = wiphy_priv(wiphy);
749 struct wireless_dev *wdev = dev->ieee80211_ptr;
750 struct ieee80211_supported_band *sband;
751 const struct cfg80211_chan_def *chandef = wdev_chandef(wdev, 0);
752 struct ieee80211_channel *chan;
753 int ret;
754
755
756 sband = wiphy->bands[NL80211_BAND_2GHZ];
757 if (sband && idx >= sband->n_channels) {
758 idx -= sband->n_channels;
759 sband = NULL;
760 }
761
762 if (!sband)
763 sband = wiphy->bands[NL80211_BAND_5GHZ];
764
765 if (!sband || idx >= sband->n_channels)
766 return -ENOENT;
767
768 chan = &sband->channels[idx];
769 survey->channel = chan;
770 survey->filled = 0x0;
771
772 if (chandef && chan == chandef->chan)
773 survey->filled = SURVEY_INFO_IN_USE;
774
775 ret = qtnf_cmd_get_chan_stats(mac, chan->center_freq, survey);
776 if (ret)
777 pr_debug("failed to get chan(%d) stats from card\n",
778 chan->hw_value);
779
780 return ret;
781 }
782
783 static int
qtnf_get_channel(struct wiphy * wiphy,struct wireless_dev * wdev,unsigned int link_id,struct cfg80211_chan_def * chandef)784 qtnf_get_channel(struct wiphy *wiphy, struct wireless_dev *wdev,
785 unsigned int link_id, struct cfg80211_chan_def *chandef)
786 {
787 struct net_device *ndev = wdev->netdev;
788 struct qtnf_vif *vif;
789 int ret;
790
791 if (!ndev)
792 return -ENODEV;
793
794 vif = qtnf_netdev_get_priv(wdev->netdev);
795
796 ret = qtnf_cmd_get_channel(vif, chandef);
797 if (ret) {
798 pr_err("%s: failed to get channel: %d\n", ndev->name, ret);
799 ret = -ENODATA;
800 goto out;
801 }
802
803 if (!cfg80211_chandef_valid(chandef)) {
804 pr_err("%s: bad channel freq=%u cf1=%u cf2=%u bw=%u\n",
805 ndev->name, chandef->chan->center_freq,
806 chandef->center_freq1, chandef->center_freq2,
807 chandef->width);
808 ret = -ENODATA;
809 goto out;
810 }
811
812 out:
813 return ret;
814 }
815
qtnf_channel_switch(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_csa_settings * params)816 static int qtnf_channel_switch(struct wiphy *wiphy, struct net_device *dev,
817 struct cfg80211_csa_settings *params)
818 {
819 struct qtnf_vif *vif = qtnf_netdev_get_priv(dev);
820 int ret;
821
822 pr_debug("%s: chan(%u) count(%u) radar(%u) block_tx(%u)\n", dev->name,
823 params->chandef.chan->hw_value, params->count,
824 params->radar_required, params->block_tx);
825
826 if (!cfg80211_chandef_valid(¶ms->chandef)) {
827 pr_err("%s: invalid channel\n", dev->name);
828 return -EINVAL;
829 }
830
831 ret = qtnf_cmd_send_chan_switch(vif, params);
832 if (ret)
833 pr_warn("%s: failed to switch to channel (%u)\n",
834 dev->name, params->chandef.chan->hw_value);
835
836 return ret;
837 }
838
qtnf_start_radar_detection(struct wiphy * wiphy,struct net_device * ndev,struct cfg80211_chan_def * chandef,u32 cac_time_ms)839 static int qtnf_start_radar_detection(struct wiphy *wiphy,
840 struct net_device *ndev,
841 struct cfg80211_chan_def *chandef,
842 u32 cac_time_ms)
843 {
844 struct qtnf_vif *vif = qtnf_netdev_get_priv(ndev);
845 int ret;
846
847 if (wiphy_ext_feature_isset(wiphy, NL80211_EXT_FEATURE_DFS_OFFLOAD))
848 return -ENOTSUPP;
849
850 ret = qtnf_cmd_start_cac(vif, chandef, cac_time_ms);
851 if (ret)
852 pr_err("%s: failed to start CAC ret=%d\n", ndev->name, ret);
853
854 return ret;
855 }
856
qtnf_set_mac_acl(struct wiphy * wiphy,struct net_device * dev,const struct cfg80211_acl_data * params)857 static int qtnf_set_mac_acl(struct wiphy *wiphy,
858 struct net_device *dev,
859 const struct cfg80211_acl_data *params)
860 {
861 struct qtnf_vif *vif = qtnf_netdev_get_priv(dev);
862 int ret;
863
864 ret = qtnf_cmd_set_mac_acl(vif, params);
865 if (ret)
866 pr_err("%s: failed to set mac ACL ret=%d\n", dev->name, ret);
867
868 return ret;
869 }
870
qtnf_set_power_mgmt(struct wiphy * wiphy,struct net_device * dev,bool enabled,int timeout)871 static int qtnf_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
872 bool enabled, int timeout)
873 {
874 struct qtnf_vif *vif = qtnf_netdev_get_priv(dev);
875 int ret;
876
877 ret = qtnf_cmd_send_pm_set(vif, enabled ? QLINK_PM_AUTO_STANDBY :
878 QLINK_PM_OFF, timeout);
879 if (ret)
880 pr_err("%s: failed to set PM mode ret=%d\n", dev->name, ret);
881
882 return ret;
883 }
884
qtnf_get_tx_power(struct wiphy * wiphy,struct wireless_dev * wdev,int * dbm)885 static int qtnf_get_tx_power(struct wiphy *wiphy, struct wireless_dev *wdev,
886 int *dbm)
887 {
888 struct qtnf_vif *vif = qtnf_netdev_get_priv(wdev->netdev);
889 int ret;
890
891 ret = qtnf_cmd_get_tx_power(vif, dbm);
892 if (ret)
893 pr_err("MAC%u: failed to get Tx power\n", vif->mac->macid);
894
895 return ret;
896 }
897
qtnf_set_tx_power(struct wiphy * wiphy,struct wireless_dev * wdev,enum nl80211_tx_power_setting type,int mbm)898 static int qtnf_set_tx_power(struct wiphy *wiphy, struct wireless_dev *wdev,
899 enum nl80211_tx_power_setting type, int mbm)
900 {
901 struct qtnf_vif *vif;
902 int ret;
903
904 if (wdev) {
905 vif = qtnf_netdev_get_priv(wdev->netdev);
906 } else {
907 struct qtnf_wmac *mac = wiphy_priv(wiphy);
908
909 vif = qtnf_mac_get_base_vif(mac);
910 if (!vif) {
911 pr_err("MAC%u: primary VIF is not configured\n",
912 mac->macid);
913 return -EFAULT;
914 }
915 }
916
917 ret = qtnf_cmd_set_tx_power(vif, type, mbm);
918 if (ret)
919 pr_err("MAC%u: failed to set Tx power\n", vif->mac->macid);
920
921 return ret;
922 }
923
qtnf_update_owe_info(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_update_owe_info * owe_info)924 static int qtnf_update_owe_info(struct wiphy *wiphy, struct net_device *dev,
925 struct cfg80211_update_owe_info *owe_info)
926 {
927 struct qtnf_vif *vif = qtnf_netdev_get_priv(dev);
928 int ret;
929
930 if (vif->wdev.iftype != NL80211_IFTYPE_AP)
931 return -EOPNOTSUPP;
932
933 ret = qtnf_cmd_send_update_owe(vif, owe_info);
934 if (ret)
935 pr_err("VIF%u.%u: failed to update owe info\n",
936 vif->mac->macid, vif->vifid);
937
938 return ret;
939 }
940
941 #ifdef CONFIG_PM
qtnf_suspend(struct wiphy * wiphy,struct cfg80211_wowlan * wowlan)942 static int qtnf_suspend(struct wiphy *wiphy, struct cfg80211_wowlan *wowlan)
943 {
944 struct qtnf_wmac *mac = wiphy_priv(wiphy);
945 struct qtnf_vif *vif;
946 int ret = 0;
947
948 vif = qtnf_mac_get_base_vif(mac);
949 if (!vif) {
950 pr_err("MAC%u: primary VIF is not configured\n", mac->macid);
951 ret = -EFAULT;
952 goto exit;
953 }
954
955 if (!wowlan) {
956 pr_debug("WoWLAN triggers are not enabled\n");
957 qtnf_virtual_intf_cleanup(vif->netdev);
958 goto exit;
959 }
960
961 qtnf_scan_done(vif->mac, true);
962
963 ret = qtnf_cmd_send_wowlan_set(vif, wowlan);
964 if (ret) {
965 pr_err("MAC%u: failed to set WoWLAN triggers\n",
966 mac->macid);
967 goto exit;
968 }
969
970 exit:
971 return ret;
972 }
973
qtnf_resume(struct wiphy * wiphy)974 static int qtnf_resume(struct wiphy *wiphy)
975 {
976 struct qtnf_wmac *mac = wiphy_priv(wiphy);
977 struct qtnf_vif *vif;
978 int ret = 0;
979
980 vif = qtnf_mac_get_base_vif(mac);
981 if (!vif) {
982 pr_err("MAC%u: primary VIF is not configured\n", mac->macid);
983 return -EFAULT;
984 }
985
986 ret = qtnf_cmd_send_wowlan_set(vif, NULL);
987 if (ret)
988 pr_err("MAC%u: failed to reset WoWLAN triggers\n",
989 mac->macid);
990
991 return ret;
992 }
993
qtnf_set_wakeup(struct wiphy * wiphy,bool enabled)994 static void qtnf_set_wakeup(struct wiphy *wiphy, bool enabled)
995 {
996 struct qtnf_wmac *mac = wiphy_priv(wiphy);
997 struct qtnf_bus *bus = mac->bus;
998
999 device_set_wakeup_enable(bus->dev, enabled);
1000 }
1001 #endif
1002
1003 static struct cfg80211_ops qtn_cfg80211_ops = {
1004 .add_virtual_intf = qtnf_add_virtual_intf,
1005 .change_virtual_intf = qtnf_change_virtual_intf,
1006 .del_virtual_intf = qtnf_del_virtual_intf,
1007 .start_ap = qtnf_start_ap,
1008 .change_beacon = qtnf_change_beacon,
1009 .stop_ap = qtnf_stop_ap,
1010 .set_wiphy_params = qtnf_set_wiphy_params,
1011 .update_mgmt_frame_registrations =
1012 qtnf_update_mgmt_frame_registrations,
1013 .mgmt_tx = qtnf_mgmt_tx,
1014 .change_station = qtnf_change_station,
1015 .del_station = qtnf_del_station,
1016 .get_station = qtnf_get_station,
1017 .dump_station = qtnf_dump_station,
1018 .add_key = qtnf_add_key,
1019 .del_key = qtnf_del_key,
1020 .set_default_key = qtnf_set_default_key,
1021 .set_default_mgmt_key = qtnf_set_default_mgmt_key,
1022 .scan = qtnf_scan,
1023 .connect = qtnf_connect,
1024 .external_auth = qtnf_external_auth,
1025 .disconnect = qtnf_disconnect,
1026 .dump_survey = qtnf_dump_survey,
1027 .get_channel = qtnf_get_channel,
1028 .channel_switch = qtnf_channel_switch,
1029 .start_radar_detection = qtnf_start_radar_detection,
1030 .set_mac_acl = qtnf_set_mac_acl,
1031 .set_power_mgmt = qtnf_set_power_mgmt,
1032 .get_tx_power = qtnf_get_tx_power,
1033 .set_tx_power = qtnf_set_tx_power,
1034 .update_owe_info = qtnf_update_owe_info,
1035 #ifdef CONFIG_PM
1036 .suspend = qtnf_suspend,
1037 .resume = qtnf_resume,
1038 .set_wakeup = qtnf_set_wakeup,
1039 #endif
1040 };
1041
qtnf_cfg80211_reg_notifier(struct wiphy * wiphy,struct regulatory_request * req)1042 static void qtnf_cfg80211_reg_notifier(struct wiphy *wiphy,
1043 struct regulatory_request *req)
1044 {
1045 struct qtnf_wmac *mac = wiphy_priv(wiphy);
1046 enum nl80211_band band;
1047 int ret;
1048
1049 pr_debug("MAC%u: initiator=%d alpha=%c%c\n", mac->macid, req->initiator,
1050 req->alpha2[0], req->alpha2[1]);
1051
1052 ret = qtnf_cmd_reg_notify(mac, req, qtnf_slave_radar_get(),
1053 qtnf_dfs_offload_get());
1054 if (ret) {
1055 pr_err("MAC%u: failed to update region to %c%c: %d\n",
1056 mac->macid, req->alpha2[0], req->alpha2[1], ret);
1057 return;
1058 }
1059
1060 for (band = 0; band < NUM_NL80211_BANDS; ++band) {
1061 if (!wiphy->bands[band])
1062 continue;
1063
1064 ret = qtnf_cmd_band_info_get(mac, wiphy->bands[band]);
1065 if (ret)
1066 pr_err("MAC%u: failed to update band %u\n",
1067 mac->macid, band);
1068 }
1069 }
1070
qtnf_wiphy_allocate(struct qtnf_bus * bus,struct platform_device * pdev)1071 struct wiphy *qtnf_wiphy_allocate(struct qtnf_bus *bus,
1072 struct platform_device *pdev)
1073 {
1074 struct wiphy *wiphy;
1075
1076 if (qtnf_dfs_offload_get() &&
1077 qtnf_hwcap_is_set(&bus->hw_info, QLINK_HW_CAPAB_DFS_OFFLOAD))
1078 qtn_cfg80211_ops.start_radar_detection = NULL;
1079
1080 if (!qtnf_hwcap_is_set(&bus->hw_info, QLINK_HW_CAPAB_PWR_MGMT))
1081 qtn_cfg80211_ops.set_power_mgmt = NULL;
1082
1083 wiphy = wiphy_new(&qtn_cfg80211_ops, sizeof(struct qtnf_wmac));
1084 if (!wiphy)
1085 return NULL;
1086
1087 if (pdev)
1088 set_wiphy_dev(wiphy, &pdev->dev);
1089 else
1090 set_wiphy_dev(wiphy, bus->dev);
1091
1092 return wiphy;
1093 }
1094
1095 static int
qtnf_wiphy_setup_if_comb(struct wiphy * wiphy,struct qtnf_mac_info * mac_info)1096 qtnf_wiphy_setup_if_comb(struct wiphy *wiphy, struct qtnf_mac_info *mac_info)
1097 {
1098 struct ieee80211_iface_combination *if_comb;
1099 size_t n_if_comb;
1100 u16 interface_modes = 0;
1101 size_t i, j;
1102
1103 if_comb = mac_info->if_comb;
1104 n_if_comb = mac_info->n_if_comb;
1105
1106 if (!if_comb || !n_if_comb)
1107 return -ENOENT;
1108
1109 for (i = 0; i < n_if_comb; i++) {
1110 if_comb[i].radar_detect_widths = mac_info->radar_detect_widths;
1111
1112 for (j = 0; j < if_comb[i].n_limits; j++)
1113 interface_modes |= if_comb[i].limits[j].types;
1114 }
1115
1116 wiphy->iface_combinations = if_comb;
1117 wiphy->n_iface_combinations = n_if_comb;
1118 wiphy->interface_modes = interface_modes;
1119
1120 return 0;
1121 }
1122
qtnf_wiphy_register(struct qtnf_hw_info * hw_info,struct qtnf_wmac * mac)1123 int qtnf_wiphy_register(struct qtnf_hw_info *hw_info, struct qtnf_wmac *mac)
1124 {
1125 struct wiphy *wiphy = priv_to_wiphy(mac);
1126 struct qtnf_mac_info *macinfo = &mac->macinfo;
1127 int ret;
1128 bool regdomain_is_known;
1129
1130 if (!wiphy) {
1131 pr_err("invalid wiphy pointer\n");
1132 return -EFAULT;
1133 }
1134
1135 wiphy->frag_threshold = macinfo->frag_thr;
1136 wiphy->rts_threshold = macinfo->rts_thr;
1137 wiphy->retry_short = macinfo->sretry_limit;
1138 wiphy->retry_long = macinfo->lretry_limit;
1139 wiphy->coverage_class = macinfo->coverage_class;
1140
1141 wiphy->max_scan_ssids =
1142 (macinfo->max_scan_ssids) ? macinfo->max_scan_ssids : 1;
1143 wiphy->max_scan_ie_len = QTNF_MAX_VSIE_LEN;
1144 wiphy->mgmt_stypes = qtnf_mgmt_stypes;
1145 wiphy->max_remain_on_channel_duration = 5000;
1146 wiphy->max_acl_mac_addrs = macinfo->max_acl_mac_addrs;
1147 wiphy->max_num_csa_counters = 2;
1148
1149 ret = qtnf_wiphy_setup_if_comb(wiphy, macinfo);
1150 if (ret)
1151 goto out;
1152
1153 /* Initialize cipher suits */
1154 wiphy->cipher_suites = qtnf_cipher_suites;
1155 wiphy->n_cipher_suites = ARRAY_SIZE(qtnf_cipher_suites);
1156 wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM;
1157 wiphy->flags |= WIPHY_FLAG_HAVE_AP_SME |
1158 WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD |
1159 WIPHY_FLAG_AP_UAPSD |
1160 WIPHY_FLAG_HAS_CHANNEL_SWITCH |
1161 WIPHY_FLAG_4ADDR_STATION |
1162 WIPHY_FLAG_NETNS_OK;
1163 wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
1164
1165 if (qtnf_dfs_offload_get() &&
1166 qtnf_hwcap_is_set(hw_info, QLINK_HW_CAPAB_DFS_OFFLOAD))
1167 wiphy_ext_feature_set(wiphy, NL80211_EXT_FEATURE_DFS_OFFLOAD);
1168
1169 if (qtnf_hwcap_is_set(hw_info, QLINK_HW_CAPAB_SCAN_DWELL))
1170 wiphy_ext_feature_set(wiphy,
1171 NL80211_EXT_FEATURE_SET_SCAN_DWELL);
1172
1173 wiphy->probe_resp_offload = NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS |
1174 NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2;
1175
1176 wiphy->available_antennas_tx = macinfo->num_tx_chain;
1177 wiphy->available_antennas_rx = macinfo->num_rx_chain;
1178
1179 wiphy->max_ap_assoc_sta = macinfo->max_ap_assoc_sta;
1180 wiphy->ht_capa_mod_mask = &macinfo->ht_cap_mod_mask;
1181 wiphy->vht_capa_mod_mask = &macinfo->vht_cap_mod_mask;
1182
1183 ether_addr_copy(wiphy->perm_addr, mac->macaddr);
1184
1185 if (qtnf_hwcap_is_set(hw_info, QLINK_HW_CAPAB_STA_INACT_TIMEOUT))
1186 wiphy->features |= NL80211_FEATURE_INACTIVITY_TIMER;
1187
1188 if (qtnf_hwcap_is_set(hw_info, QLINK_HW_CAPAB_SCAN_RANDOM_MAC_ADDR))
1189 wiphy->features |= NL80211_FEATURE_SCAN_RANDOM_MAC_ADDR;
1190
1191 if (!qtnf_hwcap_is_set(hw_info, QLINK_HW_CAPAB_OBSS_SCAN))
1192 wiphy->features |= NL80211_FEATURE_NEED_OBSS_SCAN;
1193
1194 if (qtnf_hwcap_is_set(hw_info, QLINK_HW_CAPAB_SAE))
1195 wiphy->features |= NL80211_FEATURE_SAE;
1196
1197 #ifdef CONFIG_PM
1198 if (macinfo->wowlan)
1199 wiphy->wowlan = macinfo->wowlan;
1200 #endif
1201
1202 regdomain_is_known = isalpha(mac->rd->alpha2[0]) &&
1203 isalpha(mac->rd->alpha2[1]);
1204
1205 if (qtnf_hwcap_is_set(hw_info, QLINK_HW_CAPAB_REG_UPDATE)) {
1206 wiphy->reg_notifier = qtnf_cfg80211_reg_notifier;
1207
1208 if (mac->rd->alpha2[0] == '9' && mac->rd->alpha2[1] == '9') {
1209 wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG |
1210 REGULATORY_STRICT_REG;
1211 wiphy_apply_custom_regulatory(wiphy, mac->rd);
1212 } else if (regdomain_is_known) {
1213 wiphy->regulatory_flags |= REGULATORY_STRICT_REG;
1214 }
1215 } else {
1216 wiphy->regulatory_flags |= REGULATORY_WIPHY_SELF_MANAGED;
1217 }
1218
1219 if (mac->macinfo.extended_capabilities_len) {
1220 wiphy->extended_capabilities =
1221 mac->macinfo.extended_capabilities;
1222 wiphy->extended_capabilities_mask =
1223 mac->macinfo.extended_capabilities_mask;
1224 wiphy->extended_capabilities_len =
1225 mac->macinfo.extended_capabilities_len;
1226 }
1227
1228 strlcpy(wiphy->fw_version, hw_info->fw_version,
1229 sizeof(wiphy->fw_version));
1230 wiphy->hw_version = hw_info->hw_version;
1231
1232 ret = wiphy_register(wiphy);
1233 if (ret < 0)
1234 goto out;
1235
1236 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED)
1237 ret = regulatory_set_wiphy_regd(wiphy, mac->rd);
1238 else if (regdomain_is_known)
1239 ret = regulatory_hint(wiphy, mac->rd->alpha2);
1240
1241 out:
1242 return ret;
1243 }
1244
qtnf_netdev_updown(struct net_device * ndev,bool up)1245 void qtnf_netdev_updown(struct net_device *ndev, bool up)
1246 {
1247 struct qtnf_vif *vif = qtnf_netdev_get_priv(ndev);
1248
1249 if (qtnf_cmd_send_updown_intf(vif, up))
1250 pr_err("failed to send %s command to VIF%u.%u\n",
1251 up ? "UP" : "DOWN", vif->mac->macid, vif->vifid);
1252 }
1253
qtnf_virtual_intf_cleanup(struct net_device * ndev)1254 void qtnf_virtual_intf_cleanup(struct net_device *ndev)
1255 {
1256 struct qtnf_vif *vif = qtnf_netdev_get_priv(ndev);
1257 struct qtnf_wmac *mac = wiphy_priv(vif->wdev.wiphy);
1258
1259 if (vif->wdev.iftype == NL80211_IFTYPE_STATION)
1260 qtnf_disconnect(vif->wdev.wiphy, ndev,
1261 WLAN_REASON_DEAUTH_LEAVING);
1262
1263 qtnf_scan_done(mac, true);
1264 }
1265
qtnf_cfg80211_vif_reset(struct qtnf_vif * vif)1266 void qtnf_cfg80211_vif_reset(struct qtnf_vif *vif)
1267 {
1268 if (vif->wdev.iftype == NL80211_IFTYPE_STATION)
1269 cfg80211_disconnected(vif->netdev, WLAN_REASON_DEAUTH_LEAVING,
1270 NULL, 0, 1, GFP_KERNEL);
1271
1272 cfg80211_shutdown_all_interfaces(vif->wdev.wiphy);
1273 }
1274
qtnf_band_init_rates(struct ieee80211_supported_band * band)1275 void qtnf_band_init_rates(struct ieee80211_supported_band *band)
1276 {
1277 switch (band->band) {
1278 case NL80211_BAND_2GHZ:
1279 band->bitrates = qtnf_rates_2g;
1280 band->n_bitrates = ARRAY_SIZE(qtnf_rates_2g);
1281 break;
1282 case NL80211_BAND_5GHZ:
1283 band->bitrates = qtnf_rates_5g;
1284 band->n_bitrates = ARRAY_SIZE(qtnf_rates_5g);
1285 break;
1286 default:
1287 band->bitrates = NULL;
1288 band->n_bitrates = 0;
1289 break;
1290 }
1291 }
1292