wil6210: single station disconnect
[deliverable/linux.git] / drivers / net / wireless / ath / wil6210 / cfg80211.c
1 /*
2 * Copyright (c) 2012 Qualcomm Atheros, Inc.
3 *
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.
7 *
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.
15 */
16
17 #include "wil6210.h"
18 #include "wmi.h"
19
20 #define CHAN60G(_channel, _flags) { \
21 .band = IEEE80211_BAND_60GHZ, \
22 .center_freq = 56160 + (2160 * (_channel)), \
23 .hw_value = (_channel), \
24 .flags = (_flags), \
25 .max_antenna_gain = 0, \
26 .max_power = 40, \
27 }
28
29 static struct ieee80211_channel wil_60ghz_channels[] = {
30 CHAN60G(1, 0),
31 CHAN60G(2, 0),
32 CHAN60G(3, 0),
33 /* channel 4 not supported yet */
34 };
35
36 static struct ieee80211_supported_band wil_band_60ghz = {
37 .channels = wil_60ghz_channels,
38 .n_channels = ARRAY_SIZE(wil_60ghz_channels),
39 .ht_cap = {
40 .ht_supported = true,
41 .cap = 0, /* TODO */
42 .ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K, /* TODO */
43 .ampdu_density = IEEE80211_HT_MPDU_DENSITY_8, /* TODO */
44 .mcs = {
45 /* MCS 1..12 - SC PHY */
46 .rx_mask = {0xfe, 0x1f}, /* 1..12 */
47 .tx_params = IEEE80211_HT_MCS_TX_DEFINED, /* TODO */
48 },
49 },
50 };
51
52 static const struct ieee80211_txrx_stypes
53 wil_mgmt_stypes[NUM_NL80211_IFTYPES] = {
54 [NL80211_IFTYPE_STATION] = {
55 .tx = BIT(IEEE80211_STYPE_ACTION >> 4) |
56 BIT(IEEE80211_STYPE_PROBE_RESP >> 4),
57 .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
58 BIT(IEEE80211_STYPE_PROBE_REQ >> 4)
59 },
60 [NL80211_IFTYPE_AP] = {
61 .tx = BIT(IEEE80211_STYPE_ACTION >> 4) |
62 BIT(IEEE80211_STYPE_PROBE_RESP >> 4),
63 .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
64 BIT(IEEE80211_STYPE_PROBE_REQ >> 4)
65 },
66 [NL80211_IFTYPE_P2P_CLIENT] = {
67 .tx = BIT(IEEE80211_STYPE_ACTION >> 4) |
68 BIT(IEEE80211_STYPE_PROBE_RESP >> 4),
69 .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
70 BIT(IEEE80211_STYPE_PROBE_REQ >> 4)
71 },
72 [NL80211_IFTYPE_P2P_GO] = {
73 .tx = BIT(IEEE80211_STYPE_ACTION >> 4) |
74 BIT(IEEE80211_STYPE_PROBE_RESP >> 4),
75 .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
76 BIT(IEEE80211_STYPE_PROBE_REQ >> 4)
77 },
78 };
79
80 static const u32 wil_cipher_suites[] = {
81 WLAN_CIPHER_SUITE_GCMP,
82 };
83
84 int wil_iftype_nl2wmi(enum nl80211_iftype type)
85 {
86 static const struct {
87 enum nl80211_iftype nl;
88 enum wmi_network_type wmi;
89 } __nl2wmi[] = {
90 {NL80211_IFTYPE_ADHOC, WMI_NETTYPE_ADHOC},
91 {NL80211_IFTYPE_STATION, WMI_NETTYPE_INFRA},
92 {NL80211_IFTYPE_AP, WMI_NETTYPE_AP},
93 {NL80211_IFTYPE_P2P_CLIENT, WMI_NETTYPE_P2P},
94 {NL80211_IFTYPE_P2P_GO, WMI_NETTYPE_P2P},
95 {NL80211_IFTYPE_MONITOR, WMI_NETTYPE_ADHOC}, /* FIXME */
96 };
97 uint i;
98
99 for (i = 0; i < ARRAY_SIZE(__nl2wmi); i++) {
100 if (__nl2wmi[i].nl == type)
101 return __nl2wmi[i].wmi;
102 }
103
104 return -EOPNOTSUPP;
105 }
106
107 static int wil_cid_fill_sinfo(struct wil6210_priv *wil, int cid,
108 struct station_info *sinfo)
109 {
110 struct wmi_notify_req_cmd cmd = {
111 .cid = cid,
112 .interval_usec = 0,
113 };
114 struct {
115 struct wil6210_mbox_hdr_wmi wmi;
116 struct wmi_notify_req_done_event evt;
117 } __packed reply;
118 struct wil_net_stats *stats = &wil->sta[cid].stats;
119 int rc;
120
121 rc = wmi_call(wil, WMI_NOTIFY_REQ_CMDID, &cmd, sizeof(cmd),
122 WMI_NOTIFY_REQ_DONE_EVENTID, &reply, sizeof(reply), 20);
123 if (rc)
124 return rc;
125
126 wil_dbg_wmi(wil, "Link status for CID %d: {\n"
127 " MCS %d TSF 0x%016llx\n"
128 " BF status 0x%08x SNR 0x%08x SQI %d%%\n"
129 " Tx Tpt %d goodput %d Rx goodput %d\n"
130 " Sectors(rx:tx) my %d:%d peer %d:%d\n""}\n",
131 cid, le16_to_cpu(reply.evt.bf_mcs),
132 le64_to_cpu(reply.evt.tsf), reply.evt.status,
133 le32_to_cpu(reply.evt.snr_val),
134 reply.evt.sqi,
135 le32_to_cpu(reply.evt.tx_tpt),
136 le32_to_cpu(reply.evt.tx_goodput),
137 le32_to_cpu(reply.evt.rx_goodput),
138 le16_to_cpu(reply.evt.my_rx_sector),
139 le16_to_cpu(reply.evt.my_tx_sector),
140 le16_to_cpu(reply.evt.other_rx_sector),
141 le16_to_cpu(reply.evt.other_tx_sector));
142
143 sinfo->generation = wil->sinfo_gen;
144
145 sinfo->filled = STATION_INFO_RX_BYTES |
146 STATION_INFO_TX_BYTES |
147 STATION_INFO_RX_PACKETS |
148 STATION_INFO_TX_PACKETS |
149 STATION_INFO_RX_BITRATE |
150 STATION_INFO_TX_BITRATE |
151 STATION_INFO_RX_DROP_MISC |
152 STATION_INFO_TX_FAILED;
153
154 sinfo->txrate.flags = RATE_INFO_FLAGS_MCS | RATE_INFO_FLAGS_60G;
155 sinfo->txrate.mcs = le16_to_cpu(reply.evt.bf_mcs);
156 sinfo->rxrate.flags = RATE_INFO_FLAGS_MCS | RATE_INFO_FLAGS_60G;
157 sinfo->rxrate.mcs = stats->last_mcs_rx;
158 sinfo->rx_bytes = stats->rx_bytes;
159 sinfo->rx_packets = stats->rx_packets;
160 sinfo->rx_dropped_misc = stats->rx_dropped;
161 sinfo->tx_bytes = stats->tx_bytes;
162 sinfo->tx_packets = stats->tx_packets;
163 sinfo->tx_failed = stats->tx_errors;
164
165 if (test_bit(wil_status_fwconnected, &wil->status)) {
166 sinfo->filled |= STATION_INFO_SIGNAL;
167 sinfo->signal = reply.evt.sqi;
168 }
169
170 return rc;
171 }
172
173 static int wil_cfg80211_get_station(struct wiphy *wiphy,
174 struct net_device *ndev,
175 u8 *mac, struct station_info *sinfo)
176 {
177 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
178 int rc;
179
180 int cid = wil_find_cid(wil, mac);
181
182 wil_info(wil, "%s(%pM) CID %d\n", __func__, mac, cid);
183 if (cid < 0)
184 return -ENOENT;
185
186 rc = wil_cid_fill_sinfo(wil, cid, sinfo);
187
188 return rc;
189 }
190
191 /*
192 * Find @idx-th active STA for station dump.
193 */
194 static int wil_find_cid_by_idx(struct wil6210_priv *wil, int idx)
195 {
196 int i;
197
198 for (i = 0; i < ARRAY_SIZE(wil->sta); i++) {
199 if (wil->sta[i].status == wil_sta_unused)
200 continue;
201 if (idx == 0)
202 return i;
203 idx--;
204 }
205
206 return -ENOENT;
207 }
208
209 static int wil_cfg80211_dump_station(struct wiphy *wiphy,
210 struct net_device *dev, int idx,
211 u8 *mac, struct station_info *sinfo)
212 {
213 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
214 int rc;
215 int cid = wil_find_cid_by_idx(wil, idx);
216
217 if (cid < 0)
218 return -ENOENT;
219
220 memcpy(mac, wil->sta[cid].addr, ETH_ALEN);
221 wil_info(wil, "%s(%pM) CID %d\n", __func__, mac, cid);
222
223 rc = wil_cid_fill_sinfo(wil, cid, sinfo);
224
225 return rc;
226 }
227
228 static int wil_cfg80211_change_iface(struct wiphy *wiphy,
229 struct net_device *ndev,
230 enum nl80211_iftype type, u32 *flags,
231 struct vif_params *params)
232 {
233 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
234 struct wireless_dev *wdev = wil->wdev;
235
236 switch (type) {
237 case NL80211_IFTYPE_STATION:
238 case NL80211_IFTYPE_AP:
239 case NL80211_IFTYPE_P2P_CLIENT:
240 case NL80211_IFTYPE_P2P_GO:
241 break;
242 case NL80211_IFTYPE_MONITOR:
243 if (flags)
244 wil->monitor_flags = *flags;
245 else
246 wil->monitor_flags = 0;
247
248 break;
249 default:
250 return -EOPNOTSUPP;
251 }
252
253 wdev->iftype = type;
254
255 return 0;
256 }
257
258 static int wil_cfg80211_scan(struct wiphy *wiphy,
259 struct cfg80211_scan_request *request)
260 {
261 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
262 struct wireless_dev *wdev = wil->wdev;
263 struct {
264 struct wmi_start_scan_cmd cmd;
265 u16 chnl[4];
266 } __packed cmd;
267 uint i, n;
268
269 if (wil->scan_request) {
270 wil_err(wil, "Already scanning\n");
271 return -EAGAIN;
272 }
273
274 /* check we are client side */
275 switch (wdev->iftype) {
276 case NL80211_IFTYPE_STATION:
277 case NL80211_IFTYPE_P2P_CLIENT:
278 break;
279 default:
280 return -EOPNOTSUPP;
281 }
282
283 /* FW don't support scan after connection attempt */
284 if (test_bit(wil_status_dontscan, &wil->status)) {
285 wil_err(wil, "Scan after connect attempt not supported\n");
286 return -EBUSY;
287 }
288
289 wil->scan_request = request;
290
291 memset(&cmd, 0, sizeof(cmd));
292 cmd.cmd.num_channels = 0;
293 n = min(request->n_channels, 4U);
294 for (i = 0; i < n; i++) {
295 int ch = request->channels[i]->hw_value;
296 if (ch == 0) {
297 wil_err(wil,
298 "Scan requested for unknown frequency %dMhz\n",
299 request->channels[i]->center_freq);
300 continue;
301 }
302 /* 0-based channel indexes */
303 cmd.cmd.channel_list[cmd.cmd.num_channels++].channel = ch - 1;
304 wil_dbg_misc(wil, "Scan for ch %d : %d MHz\n", ch,
305 request->channels[i]->center_freq);
306 }
307
308 return wmi_send(wil, WMI_START_SCAN_CMDID, &cmd, sizeof(cmd.cmd) +
309 cmd.cmd.num_channels * sizeof(cmd.cmd.channel_list[0]));
310 }
311
312 static int wil_cfg80211_connect(struct wiphy *wiphy,
313 struct net_device *ndev,
314 struct cfg80211_connect_params *sme)
315 {
316 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
317 struct cfg80211_bss *bss;
318 struct wmi_connect_cmd conn;
319 const u8 *ssid_eid;
320 const u8 *rsn_eid;
321 int ch;
322 int rc = 0;
323
324 bss = cfg80211_get_bss(wiphy, sme->channel, sme->bssid,
325 sme->ssid, sme->ssid_len,
326 WLAN_CAPABILITY_ESS, WLAN_CAPABILITY_ESS);
327 if (!bss) {
328 wil_err(wil, "Unable to find BSS\n");
329 return -ENOENT;
330 }
331
332 ssid_eid = ieee80211_bss_get_ie(bss, WLAN_EID_SSID);
333 if (!ssid_eid) {
334 wil_err(wil, "No SSID\n");
335 rc = -ENOENT;
336 goto out;
337 }
338
339 rsn_eid = sme->ie ?
340 cfg80211_find_ie(WLAN_EID_RSN, sme->ie, sme->ie_len) :
341 NULL;
342 if (rsn_eid) {
343 if (sme->ie_len > WMI_MAX_IE_LEN) {
344 rc = -ERANGE;
345 wil_err(wil, "IE too large (%td bytes)\n",
346 sme->ie_len);
347 goto out;
348 }
349 /*
350 * For secure assoc, send:
351 * (1) WMI_DELETE_CIPHER_KEY_CMD
352 * (2) WMI_SET_APPIE_CMD
353 */
354 rc = wmi_del_cipher_key(wil, 0, bss->bssid);
355 if (rc) {
356 wil_err(wil, "WMI_DELETE_CIPHER_KEY_CMD failed\n");
357 goto out;
358 }
359 /* WMI_SET_APPIE_CMD */
360 rc = wmi_set_ie(wil, WMI_FRAME_ASSOC_REQ, sme->ie_len, sme->ie);
361 if (rc) {
362 wil_err(wil, "WMI_SET_APPIE_CMD failed\n");
363 goto out;
364 }
365 }
366
367 /* WMI_CONNECT_CMD */
368 memset(&conn, 0, sizeof(conn));
369 switch (bss->capability & WLAN_CAPABILITY_DMG_TYPE_MASK) {
370 case WLAN_CAPABILITY_DMG_TYPE_AP:
371 conn.network_type = WMI_NETTYPE_INFRA;
372 break;
373 case WLAN_CAPABILITY_DMG_TYPE_PBSS:
374 conn.network_type = WMI_NETTYPE_P2P;
375 break;
376 default:
377 wil_err(wil, "Unsupported BSS type, capability= 0x%04x\n",
378 bss->capability);
379 goto out;
380 }
381 if (rsn_eid) {
382 conn.dot11_auth_mode = WMI_AUTH11_SHARED;
383 conn.auth_mode = WMI_AUTH_WPA2_PSK;
384 conn.pairwise_crypto_type = WMI_CRYPT_AES_GCMP;
385 conn.pairwise_crypto_len = 16;
386 } else {
387 conn.dot11_auth_mode = WMI_AUTH11_OPEN;
388 conn.auth_mode = WMI_AUTH_NONE;
389 }
390
391 conn.ssid_len = min_t(u8, ssid_eid[1], 32);
392 memcpy(conn.ssid, ssid_eid+2, conn.ssid_len);
393
394 ch = bss->channel->hw_value;
395 if (ch == 0) {
396 wil_err(wil, "BSS at unknown frequency %dMhz\n",
397 bss->channel->center_freq);
398 rc = -EOPNOTSUPP;
399 goto out;
400 }
401 conn.channel = ch - 1;
402
403 memcpy(conn.bssid, bss->bssid, ETH_ALEN);
404 memcpy(conn.dst_mac, bss->bssid, ETH_ALEN);
405 /*
406 * FW don't support scan after connection attempt
407 */
408 set_bit(wil_status_dontscan, &wil->status);
409 set_bit(wil_status_fwconnecting, &wil->status);
410
411 rc = wmi_send(wil, WMI_CONNECT_CMDID, &conn, sizeof(conn));
412 if (rc == 0) {
413 /* Connect can take lots of time */
414 mod_timer(&wil->connect_timer,
415 jiffies + msecs_to_jiffies(2000));
416 } else {
417 clear_bit(wil_status_dontscan, &wil->status);
418 clear_bit(wil_status_fwconnecting, &wil->status);
419 }
420
421 out:
422 cfg80211_put_bss(wiphy, bss);
423
424 return rc;
425 }
426
427 static int wil_cfg80211_disconnect(struct wiphy *wiphy,
428 struct net_device *ndev,
429 u16 reason_code)
430 {
431 int rc;
432 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
433
434 rc = wmi_send(wil, WMI_DISCONNECT_CMDID, NULL, 0);
435
436 return rc;
437 }
438
439 static int wil_cfg80211_mgmt_tx(struct wiphy *wiphy,
440 struct wireless_dev *wdev,
441 struct cfg80211_mgmt_tx_params *params,
442 u64 *cookie)
443 {
444 const u8 *buf = params->buf;
445 size_t len = params->len;
446 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
447 int rc;
448 struct ieee80211_mgmt *mgmt_frame = (void *)buf;
449 struct wmi_sw_tx_req_cmd *cmd;
450 struct {
451 struct wil6210_mbox_hdr_wmi wmi;
452 struct wmi_sw_tx_complete_event evt;
453 } __packed evt;
454
455 cmd = kmalloc(sizeof(*cmd) + len, GFP_KERNEL);
456 if (!cmd)
457 return -ENOMEM;
458
459 memcpy(cmd->dst_mac, mgmt_frame->da, WMI_MAC_LEN);
460 cmd->len = cpu_to_le16(len);
461 memcpy(cmd->payload, buf, len);
462
463 rc = wmi_call(wil, WMI_SW_TX_REQ_CMDID, cmd, sizeof(*cmd) + len,
464 WMI_SW_TX_COMPLETE_EVENTID, &evt, sizeof(evt), 2000);
465 if (rc == 0)
466 rc = evt.evt.status;
467
468 kfree(cmd);
469
470 return rc;
471 }
472
473 static int wil_cfg80211_set_channel(struct wiphy *wiphy,
474 struct cfg80211_chan_def *chandef)
475 {
476 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
477 struct wireless_dev *wdev = wil->wdev;
478
479 wdev->preset_chandef = *chandef;
480
481 return 0;
482 }
483
484 static int wil_cfg80211_add_key(struct wiphy *wiphy,
485 struct net_device *ndev,
486 u8 key_index, bool pairwise,
487 const u8 *mac_addr,
488 struct key_params *params)
489 {
490 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
491
492 /* group key is not used */
493 if (!pairwise)
494 return 0;
495
496 return wmi_add_cipher_key(wil, key_index, mac_addr,
497 params->key_len, params->key);
498 }
499
500 static int wil_cfg80211_del_key(struct wiphy *wiphy,
501 struct net_device *ndev,
502 u8 key_index, bool pairwise,
503 const u8 *mac_addr)
504 {
505 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
506
507 /* group key is not used */
508 if (!pairwise)
509 return 0;
510
511 return wmi_del_cipher_key(wil, key_index, mac_addr);
512 }
513
514 /* Need to be present or wiphy_new() will WARN */
515 static int wil_cfg80211_set_default_key(struct wiphy *wiphy,
516 struct net_device *ndev,
517 u8 key_index, bool unicast,
518 bool multicast)
519 {
520 return 0;
521 }
522
523 static int wil_remain_on_channel(struct wiphy *wiphy,
524 struct wireless_dev *wdev,
525 struct ieee80211_channel *chan,
526 unsigned int duration,
527 u64 *cookie)
528 {
529 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
530 int rc;
531
532 /* TODO: handle duration */
533 wil_info(wil, "%s(%d, %d ms)\n", __func__, chan->center_freq, duration);
534
535 rc = wmi_set_channel(wil, chan->hw_value);
536 if (rc)
537 return rc;
538
539 rc = wmi_rxon(wil, true);
540
541 return rc;
542 }
543
544 static int wil_cancel_remain_on_channel(struct wiphy *wiphy,
545 struct wireless_dev *wdev,
546 u64 cookie)
547 {
548 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
549 int rc;
550
551 wil_info(wil, "%s()\n", __func__);
552
553 rc = wmi_rxon(wil, false);
554
555 return rc;
556 }
557
558 static int wil_fix_bcon(struct wil6210_priv *wil,
559 struct cfg80211_beacon_data *bcon)
560 {
561 struct ieee80211_mgmt *f = (struct ieee80211_mgmt *)bcon->probe_resp;
562 size_t hlen = offsetof(struct ieee80211_mgmt, u.probe_resp.variable);
563 int rc = 0;
564
565 if (bcon->probe_resp_len <= hlen)
566 return 0;
567
568 if (!bcon->proberesp_ies) {
569 bcon->proberesp_ies = f->u.probe_resp.variable;
570 bcon->proberesp_ies_len = bcon->probe_resp_len - hlen;
571 rc = 1;
572 }
573 if (!bcon->assocresp_ies) {
574 bcon->assocresp_ies = f->u.probe_resp.variable;
575 bcon->assocresp_ies_len = bcon->probe_resp_len - hlen;
576 rc = 1;
577 }
578
579 return rc;
580 }
581
582 static int wil_cfg80211_start_ap(struct wiphy *wiphy,
583 struct net_device *ndev,
584 struct cfg80211_ap_settings *info)
585 {
586 int rc = 0;
587 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
588 struct wireless_dev *wdev = ndev->ieee80211_ptr;
589 struct ieee80211_channel *channel = info->chandef.chan;
590 struct cfg80211_beacon_data *bcon = &info->beacon;
591 u8 wmi_nettype = wil_iftype_nl2wmi(wdev->iftype);
592
593 if (!channel) {
594 wil_err(wil, "AP: No channel???\n");
595 return -EINVAL;
596 }
597
598 wil_dbg_misc(wil, "AP on Channel %d %d MHz, %s\n", channel->hw_value,
599 channel->center_freq, info->privacy ? "secure" : "open");
600 print_hex_dump_bytes("SSID ", DUMP_PREFIX_OFFSET,
601 info->ssid, info->ssid_len);
602
603 if (wil_fix_bcon(wil, bcon))
604 wil_dbg_misc(wil, "Fixed bcon\n");
605
606 rc = wil_reset(wil);
607 if (rc)
608 return rc;
609
610 /* Rx VRING. */
611 rc = wil_rx_init(wil);
612 if (rc)
613 return rc;
614
615 rc = wmi_set_ssid(wil, info->ssid_len, info->ssid);
616 if (rc)
617 return rc;
618
619 /* MAC address - pre-requisite for other commands */
620 wmi_set_mac_address(wil, ndev->dev_addr);
621
622 /* IE's */
623 /* bcon 'head IE's are not relevant for 60g band */
624 /*
625 * FW do not form regular beacon, so bcon IE's are not set
626 * For the DMG bcon, when it will be supported, bcon IE's will
627 * be reused; add something like:
628 * wmi_set_ie(wil, WMI_FRAME_BEACON, bcon->beacon_ies_len,
629 * bcon->beacon_ies);
630 */
631 wmi_set_ie(wil, WMI_FRAME_PROBE_RESP, bcon->proberesp_ies_len,
632 bcon->proberesp_ies);
633 wmi_set_ie(wil, WMI_FRAME_ASSOC_RESP, bcon->assocresp_ies_len,
634 bcon->assocresp_ies);
635
636 wil->secure_pcp = info->privacy;
637
638 rc = wmi_pcp_start(wil, info->beacon_interval, wmi_nettype,
639 channel->hw_value);
640 if (rc)
641 return rc;
642
643
644 netif_carrier_on(ndev);
645
646 return rc;
647 }
648
649 static int wil_cfg80211_stop_ap(struct wiphy *wiphy,
650 struct net_device *ndev)
651 {
652 int rc = 0;
653 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
654
655 rc = wmi_pcp_stop(wil);
656
657 return rc;
658 }
659
660 static int wil_cfg80211_del_station(struct wiphy *wiphy,
661 struct net_device *dev, u8 *mac)
662 {
663 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
664 wil6210_disconnect(wil, mac);
665 return 0;
666 }
667
668 static struct cfg80211_ops wil_cfg80211_ops = {
669 .scan = wil_cfg80211_scan,
670 .connect = wil_cfg80211_connect,
671 .disconnect = wil_cfg80211_disconnect,
672 .change_virtual_intf = wil_cfg80211_change_iface,
673 .get_station = wil_cfg80211_get_station,
674 .dump_station = wil_cfg80211_dump_station,
675 .remain_on_channel = wil_remain_on_channel,
676 .cancel_remain_on_channel = wil_cancel_remain_on_channel,
677 .mgmt_tx = wil_cfg80211_mgmt_tx,
678 .set_monitor_channel = wil_cfg80211_set_channel,
679 .add_key = wil_cfg80211_add_key,
680 .del_key = wil_cfg80211_del_key,
681 .set_default_key = wil_cfg80211_set_default_key,
682 /* AP mode */
683 .start_ap = wil_cfg80211_start_ap,
684 .stop_ap = wil_cfg80211_stop_ap,
685 .del_station = wil_cfg80211_del_station,
686 };
687
688 static void wil_wiphy_init(struct wiphy *wiphy)
689 {
690 /* TODO: set real value */
691 wiphy->max_scan_ssids = 10;
692 wiphy->max_num_pmkids = 0 /* TODO: */;
693 wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
694 BIT(NL80211_IFTYPE_AP) |
695 BIT(NL80211_IFTYPE_MONITOR);
696 /* TODO: enable P2P when integrated with supplicant:
697 * BIT(NL80211_IFTYPE_P2P_CLIENT) | BIT(NL80211_IFTYPE_P2P_GO)
698 */
699 wiphy->flags |= WIPHY_FLAG_HAVE_AP_SME |
700 WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD;
701 dev_warn(wiphy_dev(wiphy), "%s : flags = 0x%08x\n",
702 __func__, wiphy->flags);
703 wiphy->probe_resp_offload =
704 NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS |
705 NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2 |
706 NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P;
707
708 wiphy->bands[IEEE80211_BAND_60GHZ] = &wil_band_60ghz;
709
710 /* TODO: figure this out */
711 wiphy->signal_type = CFG80211_SIGNAL_TYPE_UNSPEC;
712
713 wiphy->cipher_suites = wil_cipher_suites;
714 wiphy->n_cipher_suites = ARRAY_SIZE(wil_cipher_suites);
715 wiphy->mgmt_stypes = wil_mgmt_stypes;
716 }
717
718 struct wireless_dev *wil_cfg80211_init(struct device *dev)
719 {
720 int rc = 0;
721 struct wireless_dev *wdev;
722
723 wdev = kzalloc(sizeof(struct wireless_dev), GFP_KERNEL);
724 if (!wdev)
725 return ERR_PTR(-ENOMEM);
726
727 wdev->wiphy = wiphy_new(&wil_cfg80211_ops,
728 sizeof(struct wil6210_priv));
729 if (!wdev->wiphy) {
730 rc = -ENOMEM;
731 goto out;
732 }
733
734 set_wiphy_dev(wdev->wiphy, dev);
735 wil_wiphy_init(wdev->wiphy);
736
737 rc = wiphy_register(wdev->wiphy);
738 if (rc < 0)
739 goto out_failed_reg;
740
741 return wdev;
742
743 out_failed_reg:
744 wiphy_free(wdev->wiphy);
745 out:
746 kfree(wdev);
747
748 return ERR_PTR(rc);
749 }
750
751 void wil_wdev_free(struct wil6210_priv *wil)
752 {
753 struct wireless_dev *wdev = wil_to_wdev(wil);
754
755 if (!wdev)
756 return;
757
758 wiphy_unregister(wdev->wiphy);
759 wiphy_free(wdev->wiphy);
760 kfree(wdev);
761 }
This page took 0.096979 seconds and 5 git commands to generate.