blob: cfdf1a273e8f17cdd8e39bb7b6615beb694ad306 [file] [log] [blame]
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001/*
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
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080017#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
29static 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
36static 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
52static const struct ieee80211_txrx_stypes
53wil_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
80static const u32 wil_cipher_suites[] = {
81 WLAN_CIPHER_SUITE_GCMP,
82};
83
84int 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
Vladimir Kondratievef28afd2014-02-27 16:20:48 +0200107static int wil_cid_fill_sinfo(struct wil6210_priv *wil, int cid,
108 struct station_info *sinfo)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800109{
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800110 struct wmi_notify_req_cmd cmd = {
Vladimir Kondratiev3df2cd362014-02-27 16:20:43 +0200111 .cid = cid,
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800112 .interval_usec = 0,
113 };
Vladimir Kondratievef28afd2014-02-27 16:20:48 +0200114 struct {
115 struct wil6210_mbox_hdr_wmi wmi;
116 struct wmi_notify_req_done_event evt;
117 } __packed reply;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200118 struct wil_net_stats *stats = &wil->sta[cid].stats;
Vladimir Kondratievef28afd2014-02-27 16:20:48 +0200119 int rc;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800120
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800121 rc = wmi_call(wil, WMI_NOTIFY_REQ_CMDID, &cmd, sizeof(cmd),
Vladimir Kondratievef28afd2014-02-27 16:20:48 +0200122 WMI_NOTIFY_REQ_DONE_EVENTID, &reply, sizeof(reply), 20);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800123 if (rc)
124 return rc;
125
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200126 wil_dbg_wmi(wil, "Link status for CID %d: {\n"
127 " MCS %d TSF 0x%016llx\n"
Vladimir Kondratievb8b33a32014-02-27 16:20:52 +0200128 " BF status 0x%08x SNR 0x%08x SQI %d%%\n"
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200129 " 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),
Vladimir Kondratievb8b33a32014-02-27 16:20:52 +0200134 reply.evt.sqi,
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200135 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
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800143 sinfo->generation = wil->sinfo_gen;
144
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200145 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
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800154 sinfo->txrate.flags = RATE_INFO_FLAGS_MCS | RATE_INFO_FLAGS_60G;
Vladimir Kondratievef28afd2014-02-27 16:20:48 +0200155 sinfo->txrate.mcs = le16_to_cpu(reply.evt.bf_mcs);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800156 sinfo->rxrate.flags = RATE_INFO_FLAGS_MCS | RATE_INFO_FLAGS_60G;
Vladimir Kondratievc8b78b52014-02-27 16:20:49 +0200157 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;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800164
165 if (test_bit(wil_status_fwconnected, &wil->status)) {
166 sinfo->filled |= STATION_INFO_SIGNAL;
Vladimir Kondratievb8b33a32014-02-27 16:20:52 +0200167 sinfo->signal = reply.evt.sqi;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800168 }
169
Vladimir Kondratievef28afd2014-02-27 16:20:48 +0200170 return rc;
171}
172
173static int wil_cfg80211_get_station(struct wiphy *wiphy,
174 struct net_device *ndev,
Johannes Berg3b3a0162014-05-19 17:19:31 +0200175 const u8 *mac, struct station_info *sinfo)
Vladimir Kondratievef28afd2014-02-27 16:20:48 +0200176{
177 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
178 int rc;
179
180 int cid = wil_find_cid(wil, mac);
181
Vladimir Kondratievfa4a18e2014-03-17 15:34:16 +0200182 wil_dbg_misc(wil, "%s(%pM) CID %d\n", __func__, mac, cid);
Vladimir Kondratievef28afd2014-02-27 16:20:48 +0200183 if (cid < 0)
Vladimir Kondratievc14c5d92014-03-02 11:20:51 +0200184 return cid;
Vladimir Kondratievef28afd2014-02-27 16:20:48 +0200185
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 */
194static 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
209static 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);
Vladimir Kondratievfa4a18e2014-03-17 15:34:16 +0200221 wil_dbg_misc(wil, "%s(%pM) CID %d\n", __func__, mac, cid);
Vladimir Kondratievef28afd2014-02-27 16:20:48 +0200222
223 rc = wil_cid_fill_sinfo(wil, cid, sinfo);
224
225 return rc;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800226}
227
228static 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
258static 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;
Vladimir Kondratieved6f9dc2014-03-17 15:34:19 +0200268 int rc;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800269
270 if (wil->scan_request) {
271 wil_err(wil, "Already scanning\n");
272 return -EAGAIN;
273 }
274
275 /* check we are client side */
276 switch (wdev->iftype) {
277 case NL80211_IFTYPE_STATION:
278 case NL80211_IFTYPE_P2P_CLIENT:
279 break;
280 default:
281 return -EOPNOTSUPP;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800282 }
283
284 /* FW don't support scan after connection attempt */
285 if (test_bit(wil_status_dontscan, &wil->status)) {
Vladimir Kondratieve83eb2f2014-03-17 15:34:07 +0200286 wil_err(wil, "Can't scan now\n");
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800287 return -EBUSY;
288 }
289
290 wil->scan_request = request;
Vladimir Kondratiev047e5d72014-05-27 14:45:48 +0300291 mod_timer(&wil->scan_timer, jiffies + WIL6210_SCAN_TO);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800292
293 memset(&cmd, 0, sizeof(cmd));
294 cmd.cmd.num_channels = 0;
295 n = min(request->n_channels, 4U);
296 for (i = 0; i < n; i++) {
297 int ch = request->channels[i]->hw_value;
298 if (ch == 0) {
299 wil_err(wil,
300 "Scan requested for unknown frequency %dMhz\n",
301 request->channels[i]->center_freq);
302 continue;
303 }
304 /* 0-based channel indexes */
305 cmd.cmd.channel_list[cmd.cmd.num_channels++].channel = ch - 1;
Vladimir Kondratiev77438822013-01-28 18:31:06 +0200306 wil_dbg_misc(wil, "Scan for ch %d : %d MHz\n", ch,
Vladimir Kondratiev2057ebb2013-01-28 18:30:58 +0200307 request->channels[i]->center_freq);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800308 }
309
Vladimir Kondratieved6f9dc2014-03-17 15:34:19 +0200310 rc = wmi_send(wil, WMI_START_SCAN_CMDID, &cmd, sizeof(cmd.cmd) +
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800311 cmd.cmd.num_channels * sizeof(cmd.cmd.channel_list[0]));
Vladimir Kondratieved6f9dc2014-03-17 15:34:19 +0200312
313 if (rc)
314 wil->scan_request = NULL;
315
316 return rc;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800317}
318
319static int wil_cfg80211_connect(struct wiphy *wiphy,
320 struct net_device *ndev,
321 struct cfg80211_connect_params *sme)
322{
323 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
324 struct cfg80211_bss *bss;
325 struct wmi_connect_cmd conn;
326 const u8 *ssid_eid;
327 const u8 *rsn_eid;
328 int ch;
329 int rc = 0;
330
Vladimir Kondratiev4cd9e832014-03-17 15:34:20 +0200331 if (test_bit(wil_status_fwconnecting, &wil->status) ||
332 test_bit(wil_status_fwconnected, &wil->status))
333 return -EALREADY;
334
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800335 bss = cfg80211_get_bss(wiphy, sme->channel, sme->bssid,
336 sme->ssid, sme->ssid_len,
337 WLAN_CAPABILITY_ESS, WLAN_CAPABILITY_ESS);
338 if (!bss) {
339 wil_err(wil, "Unable to find BSS\n");
340 return -ENOENT;
341 }
342
343 ssid_eid = ieee80211_bss_get_ie(bss, WLAN_EID_SSID);
344 if (!ssid_eid) {
345 wil_err(wil, "No SSID\n");
346 rc = -ENOENT;
347 goto out;
348 }
349
350 rsn_eid = sme->ie ?
351 cfg80211_find_ie(WLAN_EID_RSN, sme->ie, sme->ie_len) :
352 NULL;
353 if (rsn_eid) {
354 if (sme->ie_len > WMI_MAX_IE_LEN) {
355 rc = -ERANGE;
356 wil_err(wil, "IE too large (%td bytes)\n",
357 sme->ie_len);
358 goto out;
359 }
360 /*
361 * For secure assoc, send:
362 * (1) WMI_DELETE_CIPHER_KEY_CMD
363 * (2) WMI_SET_APPIE_CMD
364 */
365 rc = wmi_del_cipher_key(wil, 0, bss->bssid);
366 if (rc) {
367 wil_err(wil, "WMI_DELETE_CIPHER_KEY_CMD failed\n");
368 goto out;
369 }
370 /* WMI_SET_APPIE_CMD */
371 rc = wmi_set_ie(wil, WMI_FRAME_ASSOC_REQ, sme->ie_len, sme->ie);
372 if (rc) {
373 wil_err(wil, "WMI_SET_APPIE_CMD failed\n");
374 goto out;
375 }
376 }
377
378 /* WMI_CONNECT_CMD */
379 memset(&conn, 0, sizeof(conn));
Vladimir Kondratievacc97802013-03-13 14:12:47 +0200380 switch (bss->capability & WLAN_CAPABILITY_DMG_TYPE_MASK) {
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800381 case WLAN_CAPABILITY_DMG_TYPE_AP:
382 conn.network_type = WMI_NETTYPE_INFRA;
383 break;
384 case WLAN_CAPABILITY_DMG_TYPE_PBSS:
385 conn.network_type = WMI_NETTYPE_P2P;
386 break;
387 default:
388 wil_err(wil, "Unsupported BSS type, capability= 0x%04x\n",
389 bss->capability);
390 goto out;
391 }
392 if (rsn_eid) {
393 conn.dot11_auth_mode = WMI_AUTH11_SHARED;
394 conn.auth_mode = WMI_AUTH_WPA2_PSK;
395 conn.pairwise_crypto_type = WMI_CRYPT_AES_GCMP;
396 conn.pairwise_crypto_len = 16;
397 } else {
398 conn.dot11_auth_mode = WMI_AUTH11_OPEN;
399 conn.auth_mode = WMI_AUTH_NONE;
400 }
401
402 conn.ssid_len = min_t(u8, ssid_eid[1], 32);
403 memcpy(conn.ssid, ssid_eid+2, conn.ssid_len);
404
405 ch = bss->channel->hw_value;
406 if (ch == 0) {
407 wil_err(wil, "BSS at unknown frequency %dMhz\n",
408 bss->channel->center_freq);
409 rc = -EOPNOTSUPP;
410 goto out;
411 }
412 conn.channel = ch - 1;
413
Joe Perchesd458cdf2013-10-01 19:04:40 -0700414 memcpy(conn.bssid, bss->bssid, ETH_ALEN);
415 memcpy(conn.dst_mac, bss->bssid, ETH_ALEN);
Vladimir Kondratieve83eb2f2014-03-17 15:34:07 +0200416
Vladimir Kondratievb338f742013-05-28 15:17:53 +0300417 set_bit(wil_status_fwconnecting, &wil->status);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800418
419 rc = wmi_send(wil, WMI_CONNECT_CMDID, &conn, sizeof(conn));
420 if (rc == 0) {
421 /* Connect can take lots of time */
422 mod_timer(&wil->connect_timer,
423 jiffies + msecs_to_jiffies(2000));
Vladimir Kondratievb338f742013-05-28 15:17:53 +0300424 } else {
Vladimir Kondratievb338f742013-05-28 15:17:53 +0300425 clear_bit(wil_status_fwconnecting, &wil->status);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800426 }
427
428 out:
Johannes Berg5b112d32013-02-01 01:49:58 +0100429 cfg80211_put_bss(wiphy, bss);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800430
431 return rc;
432}
433
434static int wil_cfg80211_disconnect(struct wiphy *wiphy,
435 struct net_device *ndev,
436 u16 reason_code)
437{
438 int rc;
439 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
440
441 rc = wmi_send(wil, WMI_DISCONNECT_CMDID, NULL, 0);
442
443 return rc;
444}
445
Vladimir Kondratiev0b39aaf2014-06-16 19:36:59 +0300446int wil_cfg80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
447 struct cfg80211_mgmt_tx_params *params,
448 u64 *cookie)
Vladimir Kondratiev1647f122014-02-27 16:20:40 +0200449{
450 const u8 *buf = params->buf;
451 size_t len = params->len;
452 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
453 int rc;
Vladimir Kondratiev304464f2014-06-16 19:37:00 +0300454 bool tx_status = false;
Vladimir Kondratiev1647f122014-02-27 16:20:40 +0200455 struct ieee80211_mgmt *mgmt_frame = (void *)buf;
456 struct wmi_sw_tx_req_cmd *cmd;
457 struct {
458 struct wil6210_mbox_hdr_wmi wmi;
459 struct wmi_sw_tx_complete_event evt;
460 } __packed evt;
461
462 cmd = kmalloc(sizeof(*cmd) + len, GFP_KERNEL);
Vladimir Kondratiev304464f2014-06-16 19:37:00 +0300463 if (!cmd) {
464 rc = -ENOMEM;
465 goto out;
466 }
Vladimir Kondratiev1647f122014-02-27 16:20:40 +0200467
468 memcpy(cmd->dst_mac, mgmt_frame->da, WMI_MAC_LEN);
469 cmd->len = cpu_to_le16(len);
470 memcpy(cmd->payload, buf, len);
471
472 rc = wmi_call(wil, WMI_SW_TX_REQ_CMDID, cmd, sizeof(*cmd) + len,
473 WMI_SW_TX_COMPLETE_EVENTID, &evt, sizeof(evt), 2000);
474 if (rc == 0)
Vladimir Kondratiev304464f2014-06-16 19:37:00 +0300475 tx_status = !evt.evt.status;
Vladimir Kondratiev1647f122014-02-27 16:20:40 +0200476
477 kfree(cmd);
Vladimir Kondratiev304464f2014-06-16 19:37:00 +0300478 out:
479 cfg80211_mgmt_tx_status(wdev, cookie ? *cookie : 0, buf, len,
480 tx_status, GFP_KERNEL);
Vladimir Kondratiev1647f122014-02-27 16:20:40 +0200481 return rc;
482}
483
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800484static int wil_cfg80211_set_channel(struct wiphy *wiphy,
485 struct cfg80211_chan_def *chandef)
486{
487 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
488 struct wireless_dev *wdev = wil->wdev;
489
490 wdev->preset_chandef = *chandef;
491
492 return 0;
493}
494
495static int wil_cfg80211_add_key(struct wiphy *wiphy,
496 struct net_device *ndev,
497 u8 key_index, bool pairwise,
498 const u8 *mac_addr,
499 struct key_params *params)
500{
501 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
502
503 /* group key is not used */
504 if (!pairwise)
505 return 0;
506
507 return wmi_add_cipher_key(wil, key_index, mac_addr,
508 params->key_len, params->key);
509}
510
511static int wil_cfg80211_del_key(struct wiphy *wiphy,
512 struct net_device *ndev,
513 u8 key_index, bool pairwise,
514 const u8 *mac_addr)
515{
516 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
517
518 /* group key is not used */
519 if (!pairwise)
520 return 0;
521
522 return wmi_del_cipher_key(wil, key_index, mac_addr);
523}
524
525/* Need to be present or wiphy_new() will WARN */
526static int wil_cfg80211_set_default_key(struct wiphy *wiphy,
527 struct net_device *ndev,
528 u8 key_index, bool unicast,
529 bool multicast)
530{
531 return 0;
532}
533
Vladimir Kondratiev1647f122014-02-27 16:20:40 +0200534static int wil_remain_on_channel(struct wiphy *wiphy,
535 struct wireless_dev *wdev,
536 struct ieee80211_channel *chan,
537 unsigned int duration,
538 u64 *cookie)
539{
540 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
541 int rc;
542
543 /* TODO: handle duration */
544 wil_info(wil, "%s(%d, %d ms)\n", __func__, chan->center_freq, duration);
545
546 rc = wmi_set_channel(wil, chan->hw_value);
547 if (rc)
548 return rc;
549
550 rc = wmi_rxon(wil, true);
551
552 return rc;
553}
554
555static int wil_cancel_remain_on_channel(struct wiphy *wiphy,
556 struct wireless_dev *wdev,
557 u64 cookie)
558{
559 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
560 int rc;
561
562 wil_info(wil, "%s()\n", __func__);
563
564 rc = wmi_rxon(wil, false);
565
566 return rc;
567}
568
Vladimir Kondratiev92646c92013-06-09 09:12:53 +0300569static int wil_fix_bcon(struct wil6210_priv *wil,
570 struct cfg80211_beacon_data *bcon)
571{
572 struct ieee80211_mgmt *f = (struct ieee80211_mgmt *)bcon->probe_resp;
573 size_t hlen = offsetof(struct ieee80211_mgmt, u.probe_resp.variable);
574 int rc = 0;
575
576 if (bcon->probe_resp_len <= hlen)
577 return 0;
578
579 if (!bcon->proberesp_ies) {
580 bcon->proberesp_ies = f->u.probe_resp.variable;
581 bcon->proberesp_ies_len = bcon->probe_resp_len - hlen;
582 rc = 1;
583 }
584 if (!bcon->assocresp_ies) {
585 bcon->assocresp_ies = f->u.probe_resp.variable;
586 bcon->assocresp_ies_len = bcon->probe_resp_len - hlen;
587 rc = 1;
588 }
589
590 return rc;
591}
592
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800593static int wil_cfg80211_start_ap(struct wiphy *wiphy,
594 struct net_device *ndev,
595 struct cfg80211_ap_settings *info)
596{
597 int rc = 0;
598 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
599 struct wireless_dev *wdev = ndev->ieee80211_ptr;
600 struct ieee80211_channel *channel = info->chandef.chan;
601 struct cfg80211_beacon_data *bcon = &info->beacon;
602 u8 wmi_nettype = wil_iftype_nl2wmi(wdev->iftype);
603
604 if (!channel) {
605 wil_err(wil, "AP: No channel???\n");
606 return -EINVAL;
607 }
608
Vladimir Kondratiev77438822013-01-28 18:31:06 +0200609 wil_dbg_misc(wil, "AP on Channel %d %d MHz, %s\n", channel->hw_value,
Vladimir Kondratiev2057ebb2013-01-28 18:30:58 +0200610 channel->center_freq, info->privacy ? "secure" : "open");
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800611 print_hex_dump_bytes("SSID ", DUMP_PREFIX_OFFSET,
612 info->ssid, info->ssid_len);
613
Vladimir Kondratiev92646c92013-06-09 09:12:53 +0300614 if (wil_fix_bcon(wil, bcon))
615 wil_dbg_misc(wil, "Fixed bcon\n");
616
Vladimir Kondratiev9c3bde52014-03-17 15:34:21 +0200617 mutex_lock(&wil->mutex);
618
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800619 rc = wil_reset(wil);
620 if (rc)
Vladimir Kondratiev9c3bde52014-03-17 15:34:21 +0200621 goto out;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800622
Vladimir Kondratieve31b2562013-06-09 09:12:55 +0300623 /* Rx VRING. */
624 rc = wil_rx_init(wil);
625 if (rc)
Vladimir Kondratiev9c3bde52014-03-17 15:34:21 +0200626 goto out;
Vladimir Kondratieve31b2562013-06-09 09:12:55 +0300627
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800628 rc = wmi_set_ssid(wil, info->ssid_len, info->ssid);
629 if (rc)
Vladimir Kondratiev9c3bde52014-03-17 15:34:21 +0200630 goto out;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800631
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800632 /* MAC address - pre-requisite for other commands */
633 wmi_set_mac_address(wil, ndev->dev_addr);
634
635 /* IE's */
636 /* bcon 'head IE's are not relevant for 60g band */
Vladimir Kondratievb1defa42013-03-13 14:12:41 +0200637 /*
638 * FW do not form regular beacon, so bcon IE's are not set
639 * For the DMG bcon, when it will be supported, bcon IE's will
640 * be reused; add something like:
641 * wmi_set_ie(wil, WMI_FRAME_BEACON, bcon->beacon_ies_len,
642 * bcon->beacon_ies);
643 */
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800644 wmi_set_ie(wil, WMI_FRAME_PROBE_RESP, bcon->proberesp_ies_len,
645 bcon->proberesp_ies);
646 wmi_set_ie(wil, WMI_FRAME_ASSOC_RESP, bcon->assocresp_ies_len,
647 bcon->assocresp_ies);
648
649 wil->secure_pcp = info->privacy;
650
Vladimir Kondratievb8023172013-03-13 14:12:50 +0200651 rc = wmi_pcp_start(wil, info->beacon_interval, wmi_nettype,
652 channel->hw_value);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800653 if (rc)
Vladimir Kondratiev9c3bde52014-03-17 15:34:21 +0200654 goto out;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800655
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800656
657 netif_carrier_on(ndev);
658
Vladimir Kondratiev9c3bde52014-03-17 15:34:21 +0200659out:
660 mutex_unlock(&wil->mutex);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800661 return rc;
662}
663
664static int wil_cfg80211_stop_ap(struct wiphy *wiphy,
665 struct net_device *ndev)
666{
667 int rc = 0;
668 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800669
Vladimir Kondratiev9c3bde52014-03-17 15:34:21 +0200670 mutex_lock(&wil->mutex);
671
Vladimir Kondratievb8023172013-03-13 14:12:50 +0200672 rc = wmi_pcp_stop(wil);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800673
Vladimir Kondratiev9c3bde52014-03-17 15:34:21 +0200674 mutex_unlock(&wil->mutex);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800675 return rc;
676}
677
Vladimir Kondratiev4d55a0a2014-02-27 16:20:54 +0200678static int wil_cfg80211_del_station(struct wiphy *wiphy,
Johannes Berg3b3a0162014-05-19 17:19:31 +0200679 struct net_device *dev, const u8 *mac)
Vladimir Kondratiev4d55a0a2014-02-27 16:20:54 +0200680{
681 struct wil6210_priv *wil = wiphy_to_wil(wiphy);
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200682
683 mutex_lock(&wil->mutex);
Vladimir Kondratiev4d55a0a2014-02-27 16:20:54 +0200684 wil6210_disconnect(wil, mac);
Vladimir Kondratiev097638a2014-03-17 15:34:25 +0200685 mutex_unlock(&wil->mutex);
686
Vladimir Kondratiev4d55a0a2014-02-27 16:20:54 +0200687 return 0;
688}
689
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800690static struct cfg80211_ops wil_cfg80211_ops = {
691 .scan = wil_cfg80211_scan,
692 .connect = wil_cfg80211_connect,
693 .disconnect = wil_cfg80211_disconnect,
694 .change_virtual_intf = wil_cfg80211_change_iface,
695 .get_station = wil_cfg80211_get_station,
Vladimir Kondratievef28afd2014-02-27 16:20:48 +0200696 .dump_station = wil_cfg80211_dump_station,
Vladimir Kondratiev1647f122014-02-27 16:20:40 +0200697 .remain_on_channel = wil_remain_on_channel,
698 .cancel_remain_on_channel = wil_cancel_remain_on_channel,
699 .mgmt_tx = wil_cfg80211_mgmt_tx,
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800700 .set_monitor_channel = wil_cfg80211_set_channel,
701 .add_key = wil_cfg80211_add_key,
702 .del_key = wil_cfg80211_del_key,
703 .set_default_key = wil_cfg80211_set_default_key,
704 /* AP mode */
705 .start_ap = wil_cfg80211_start_ap,
706 .stop_ap = wil_cfg80211_stop_ap,
Vladimir Kondratiev4d55a0a2014-02-27 16:20:54 +0200707 .del_station = wil_cfg80211_del_station,
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800708};
709
710static void wil_wiphy_init(struct wiphy *wiphy)
711{
712 /* TODO: set real value */
713 wiphy->max_scan_ssids = 10;
714 wiphy->max_num_pmkids = 0 /* TODO: */;
715 wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
716 BIT(NL80211_IFTYPE_AP) |
717 BIT(NL80211_IFTYPE_MONITOR);
718 /* TODO: enable P2P when integrated with supplicant:
719 * BIT(NL80211_IFTYPE_P2P_CLIENT) | BIT(NL80211_IFTYPE_P2P_GO)
720 */
721 wiphy->flags |= WIPHY_FLAG_HAVE_AP_SME |
722 WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD;
723 dev_warn(wiphy_dev(wiphy), "%s : flags = 0x%08x\n",
724 __func__, wiphy->flags);
725 wiphy->probe_resp_offload =
726 NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS |
727 NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2 |
728 NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P;
729
730 wiphy->bands[IEEE80211_BAND_60GHZ] = &wil_band_60ghz;
731
732 /* TODO: figure this out */
Vladimir Kondratievb8b33a32014-02-27 16:20:52 +0200733 wiphy->signal_type = CFG80211_SIGNAL_TYPE_UNSPEC;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800734
735 wiphy->cipher_suites = wil_cipher_suites;
736 wiphy->n_cipher_suites = ARRAY_SIZE(wil_cipher_suites);
737 wiphy->mgmt_stypes = wil_mgmt_stypes;
738}
739
740struct wireless_dev *wil_cfg80211_init(struct device *dev)
741{
742 int rc = 0;
743 struct wireless_dev *wdev;
744
745 wdev = kzalloc(sizeof(struct wireless_dev), GFP_KERNEL);
746 if (!wdev)
747 return ERR_PTR(-ENOMEM);
748
749 wdev->wiphy = wiphy_new(&wil_cfg80211_ops,
750 sizeof(struct wil6210_priv));
751 if (!wdev->wiphy) {
752 rc = -ENOMEM;
753 goto out;
754 }
755
756 set_wiphy_dev(wdev->wiphy, dev);
757 wil_wiphy_init(wdev->wiphy);
758
759 rc = wiphy_register(wdev->wiphy);
760 if (rc < 0)
761 goto out_failed_reg;
762
763 return wdev;
764
765out_failed_reg:
766 wiphy_free(wdev->wiphy);
767out:
768 kfree(wdev);
769
770 return ERR_PTR(rc);
771}
772
773void wil_wdev_free(struct wil6210_priv *wil)
774{
775 struct wireless_dev *wdev = wil_to_wdev(wil);
776
777 if (!wdev)
778 return;
779
780 wiphy_unregister(wdev->wiphy);
781 wiphy_free(wdev->wiphy);
782 kfree(wdev);
783}