blob: 6e6066a3ff4f3fcba0805cca299730d994c1d756 [file] [log] [blame]
Arend van Spriel5b435de2011-10-05 13:19:03 +02001/*
2 * Copyright (c) 2010 Broadcom Corporation
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 ANY
11 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
13 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
14 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17/* Toplevel file. Relies on dhd_linux.c to send commands to the dongle. */
18
19#include <linux/kernel.h>
Arend van Spriel5b435de2011-10-05 13:19:03 +020020#include <linux/etherdevice.h>
Hante Meuleman68ca3952014-02-25 20:30:26 +010021#include <linux/module.h>
Franky Lin1bacb042014-06-21 12:11:16 +020022#include <linux/vmalloc.h>
Arend van Spriel5b435de2011-10-05 13:19:03 +020023#include <net/cfg80211.h>
Arend van Sprielcbaa1772012-08-30 19:43:02 +020024#include <net/netlink.h>
Arend van Spriel5b435de2011-10-05 13:19:03 +020025
26#include <brcmu_utils.h>
27#include <defs.h>
28#include <brcmu_wifi.h>
Hante Meuleman122d3d02014-10-28 14:56:18 +010029#include "core.h"
Hante Meulemana8e8ed32014-10-28 14:56:13 +010030#include "debug.h"
Arend van Spriel40c1c242013-04-05 10:57:44 +020031#include "tracepoint.h"
Hante Meuleman7a5c1f62013-02-08 15:53:44 +010032#include "fwil_types.h"
Arend van Spriel9f440b72013-02-08 15:53:36 +010033#include "p2p.h"
Piotr Haber61730d42013-04-23 12:53:12 +020034#include "btcoex.h"
Hante Meulemanbfe81972014-10-28 14:56:16 +010035#include "cfg80211.h"
Arend van Sprielc08437b2014-07-12 08:49:39 +020036#include "feature.h"
Hante Meuleman81f5dcb2012-10-22 10:36:14 -070037#include "fwil.h"
Hante Meuleman8851cce2014-07-30 13:20:02 +020038#include "proto.h"
Franky Lin1bacb042014-06-21 12:11:16 +020039#include "vendor.h"
Hante Meulemand14f78b2014-10-28 14:56:14 +010040#include "bus.h"
Hante Meuleman6b89dcb2014-12-21 12:43:52 +010041#include "common.h"
Arend van Spriel5b435de2011-10-05 13:19:03 +020042
Arend van Spriele5806072012-09-19 22:21:08 +020043#define BRCMF_SCAN_IE_LEN_MAX 2048
44#define BRCMF_PNO_VERSION 2
45#define BRCMF_PNO_TIME 30
46#define BRCMF_PNO_REPEAT 4
47#define BRCMF_PNO_FREQ_EXPO_MAX 3
48#define BRCMF_PNO_MAX_PFN_COUNT 16
49#define BRCMF_PNO_ENABLE_ADAPTSCAN_BIT 6
50#define BRCMF_PNO_HIDDEN_BIT 2
51#define BRCMF_PNO_WPA_AUTH_ANY 0xFFFFFFFF
52#define BRCMF_PNO_SCAN_COMPLETE 1
53#define BRCMF_PNO_SCAN_INCOMPLETE 0
54
Hante Meuleman1a873342012-09-27 14:17:54 +020055#define WPA_OUI "\x00\x50\xF2" /* WPA OUI */
56#define WPA_OUI_TYPE 1
57#define RSN_OUI "\x00\x0F\xAC" /* RSN OUI */
58#define WME_OUI_TYPE 2
Hante Meuleman89286dc2013-02-08 15:53:46 +010059#define WPS_OUI_TYPE 4
Hante Meuleman1a873342012-09-27 14:17:54 +020060
61#define VS_IE_FIXED_HDR_LEN 6
62#define WPA_IE_VERSION_LEN 2
63#define WPA_IE_MIN_OUI_LEN 4
64#define WPA_IE_SUITE_COUNT_LEN 2
65
66#define WPA_CIPHER_NONE 0 /* None */
67#define WPA_CIPHER_WEP_40 1 /* WEP (40-bit) */
68#define WPA_CIPHER_TKIP 2 /* TKIP: default for WPA */
69#define WPA_CIPHER_AES_CCM 4 /* AES (CCM) */
70#define WPA_CIPHER_WEP_104 5 /* WEP (104-bit) */
71
72#define RSN_AKM_NONE 0 /* None (IBSS) */
73#define RSN_AKM_UNSPECIFIED 1 /* Over 802.1x */
74#define RSN_AKM_PSK 2 /* Pre-shared Key */
Hante Meuleman240d61a2016-02-17 11:27:10 +010075#define RSN_AKM_SHA256_1X 5 /* SHA256, 802.1X */
76#define RSN_AKM_SHA256_PSK 6 /* SHA256, Pre-shared Key */
Hante Meuleman1a873342012-09-27 14:17:54 +020077#define RSN_CAP_LEN 2 /* Length of RSN capabilities */
Hante Meuleman240d61a2016-02-17 11:27:10 +010078#define RSN_CAP_PTK_REPLAY_CNTR_MASK (BIT(2) | BIT(3))
79#define RSN_CAP_MFPR_MASK BIT(6)
80#define RSN_CAP_MFPC_MASK BIT(7)
81#define RSN_PMKID_COUNT_LEN 2
Hante Meuleman1a873342012-09-27 14:17:54 +020082
83#define VNDR_IE_CMD_LEN 4 /* length of the set command
84 * string :"add", "del" (+ NUL)
85 */
86#define VNDR_IE_COUNT_OFFSET 4
87#define VNDR_IE_PKTFLAG_OFFSET 8
88#define VNDR_IE_VSIE_OFFSET 12
89#define VNDR_IE_HDR_SIZE 12
Arend van Spriel9f440b72013-02-08 15:53:36 +010090#define VNDR_IE_PARSE_LIMIT 5
Hante Meuleman1a873342012-09-27 14:17:54 +020091
92#define DOT11_MGMT_HDR_LEN 24 /* d11 management header len */
93#define DOT11_BCN_PRB_FIXED_LEN 12 /* beacon/probe fixed length */
Hante Meuleman04012892012-09-27 14:17:49 +020094
Hante Meuleman89286dc2013-02-08 15:53:46 +010095#define BRCMF_SCAN_JOIN_ACTIVE_DWELL_TIME_MS 320
96#define BRCMF_SCAN_JOIN_PASSIVE_DWELL_TIME_MS 400
97#define BRCMF_SCAN_JOIN_PROBE_INTERVAL_MS 20
98
Hante Meuleman1678ba82015-12-10 13:43:00 +010099#define BRCMF_SCAN_CHANNEL_TIME 40
100#define BRCMF_SCAN_UNASSOC_TIME 40
101#define BRCMF_SCAN_PASSIVE_TIME 120
102
Hante Meuleman3021ad92016-01-05 11:05:45 +0100103#define BRCMF_ND_INFO_TIMEOUT msecs_to_jiffies(2000)
104
Arend van Spriel5b435de2011-10-05 13:19:03 +0200105#define BRCMF_ASSOC_PARAMS_FIXED_SIZE \
106 (sizeof(struct brcmf_assoc_params_le) - sizeof(u16))
107
Arend van Sprielce81e312012-10-22 13:55:37 -0700108static bool check_vif_up(struct brcmf_cfg80211_vif *vif)
Arend van Spriel5b435de2011-10-05 13:19:03 +0200109{
Arend van Sprielc1179032012-10-22 13:55:33 -0700110 if (!test_bit(BRCMF_VIF_STATUS_READY, &vif->sme_state)) {
Arend van Spriel647c9ae2012-12-05 15:26:01 +0100111 brcmf_dbg(INFO, "device is not ready : status (%lu)\n",
112 vif->sme_state);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200113 return false;
114 }
115 return true;
116}
117
Arend van Spriel5b435de2011-10-05 13:19:03 +0200118#define RATE_TO_BASE100KBPS(rate) (((rate) * 10) / 2)
119#define RATETAB_ENT(_rateid, _flags) \
120 { \
121 .bitrate = RATE_TO_BASE100KBPS(_rateid), \
122 .hw_value = (_rateid), \
123 .flags = (_flags), \
124 }
125
126static struct ieee80211_rate __wl_rates[] = {
127 RATETAB_ENT(BRCM_RATE_1M, 0),
128 RATETAB_ENT(BRCM_RATE_2M, IEEE80211_RATE_SHORT_PREAMBLE),
129 RATETAB_ENT(BRCM_RATE_5M5, IEEE80211_RATE_SHORT_PREAMBLE),
130 RATETAB_ENT(BRCM_RATE_11M, IEEE80211_RATE_SHORT_PREAMBLE),
131 RATETAB_ENT(BRCM_RATE_6M, 0),
132 RATETAB_ENT(BRCM_RATE_9M, 0),
133 RATETAB_ENT(BRCM_RATE_12M, 0),
134 RATETAB_ENT(BRCM_RATE_18M, 0),
135 RATETAB_ENT(BRCM_RATE_24M, 0),
136 RATETAB_ENT(BRCM_RATE_36M, 0),
137 RATETAB_ENT(BRCM_RATE_48M, 0),
138 RATETAB_ENT(BRCM_RATE_54M, 0),
139};
140
Arend van Spriel5b435de2011-10-05 13:19:03 +0200141#define wl_g_rates (__wl_rates + 0)
Arend van Spriel58de92d2015-04-14 20:10:24 +0200142#define wl_g_rates_size ARRAY_SIZE(__wl_rates)
143#define wl_a_rates (__wl_rates + 4)
144#define wl_a_rates_size (wl_g_rates_size - 4)
145
146#define CHAN2G(_channel, _freq) { \
Johannes Berg57fbcce2016-04-12 15:56:15 +0200147 .band = NL80211_BAND_2GHZ, \
Arend van Spriel58de92d2015-04-14 20:10:24 +0200148 .center_freq = (_freq), \
149 .hw_value = (_channel), \
150 .flags = IEEE80211_CHAN_DISABLED, \
151 .max_antenna_gain = 0, \
152 .max_power = 30, \
153}
154
155#define CHAN5G(_channel) { \
Johannes Berg57fbcce2016-04-12 15:56:15 +0200156 .band = NL80211_BAND_5GHZ, \
Arend van Spriel58de92d2015-04-14 20:10:24 +0200157 .center_freq = 5000 + (5 * (_channel)), \
158 .hw_value = (_channel), \
159 .flags = IEEE80211_CHAN_DISABLED, \
160 .max_antenna_gain = 0, \
161 .max_power = 30, \
162}
163
164static struct ieee80211_channel __wl_2ghz_channels[] = {
165 CHAN2G(1, 2412), CHAN2G(2, 2417), CHAN2G(3, 2422), CHAN2G(4, 2427),
166 CHAN2G(5, 2432), CHAN2G(6, 2437), CHAN2G(7, 2442), CHAN2G(8, 2447),
167 CHAN2G(9, 2452), CHAN2G(10, 2457), CHAN2G(11, 2462), CHAN2G(12, 2467),
168 CHAN2G(13, 2472), CHAN2G(14, 2484)
169};
170
171static struct ieee80211_channel __wl_5ghz_channels[] = {
172 CHAN5G(34), CHAN5G(36), CHAN5G(38), CHAN5G(40), CHAN5G(42),
173 CHAN5G(44), CHAN5G(46), CHAN5G(48), CHAN5G(52), CHAN5G(56),
174 CHAN5G(60), CHAN5G(64), CHAN5G(100), CHAN5G(104), CHAN5G(108),
175 CHAN5G(112), CHAN5G(116), CHAN5G(120), CHAN5G(124), CHAN5G(128),
176 CHAN5G(132), CHAN5G(136), CHAN5G(140), CHAN5G(144), CHAN5G(149),
177 CHAN5G(153), CHAN5G(157), CHAN5G(161), CHAN5G(165)
178};
Arend van Spriel5b435de2011-10-05 13:19:03 +0200179
Arend van Sprielb48d8912014-07-12 08:49:41 +0200180/* Band templates duplicated per wiphy. The channel info
Arend van Spriel58de92d2015-04-14 20:10:24 +0200181 * above is added to the band during setup.
Arend van Sprielb48d8912014-07-12 08:49:41 +0200182 */
183static const struct ieee80211_supported_band __wl_band_2ghz = {
Johannes Berg57fbcce2016-04-12 15:56:15 +0200184 .band = NL80211_BAND_2GHZ,
Arend van Spriel5b435de2011-10-05 13:19:03 +0200185 .bitrates = wl_g_rates,
186 .n_bitrates = wl_g_rates_size,
187};
188
Arend van Spriel58de92d2015-04-14 20:10:24 +0200189static const struct ieee80211_supported_band __wl_band_5ghz = {
Johannes Berg57fbcce2016-04-12 15:56:15 +0200190 .band = NL80211_BAND_5GHZ,
Arend van Spriel5b435de2011-10-05 13:19:03 +0200191 .bitrates = wl_a_rates,
192 .n_bitrates = wl_a_rates_size,
193};
194
Hante Meulemand48200b2013-04-03 12:40:29 +0200195/* This is to override regulatory domains defined in cfg80211 module (reg.c)
196 * By default world regulatory domain defined in reg.c puts the flags
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200197 * NL80211_RRF_NO_IR for 5GHz channels (for * 36..48 and 149..165).
198 * With respect to these flags, wpa_supplicant doesn't * start p2p
199 * operations on 5GHz channels. All the changes in world regulatory
Hante Meulemand48200b2013-04-03 12:40:29 +0200200 * domain are to be done here.
201 */
202static const struct ieee80211_regdomain brcmf_regdom = {
203 .n_reg_rules = 4,
204 .alpha2 = "99",
205 .reg_rules = {
206 /* IEEE 802.11b/g, channels 1..11 */
207 REG_RULE(2412-10, 2472+10, 40, 6, 20, 0),
208 /* If any */
209 /* IEEE 802.11 channel 14 - Only JP enables
210 * this and for 802.11b only
211 */
212 REG_RULE(2484-10, 2484+10, 20, 6, 20, 0),
213 /* IEEE 802.11a, channel 36..64 */
Arend van Sprielc555ecd2014-05-12 10:47:36 +0200214 REG_RULE(5150-10, 5350+10, 80, 6, 20, 0),
Hante Meulemand48200b2013-04-03 12:40:29 +0200215 /* IEEE 802.11a, channel 100..165 */
Arend van Sprielc555ecd2014-05-12 10:47:36 +0200216 REG_RULE(5470-10, 5850+10, 80, 6, 20, 0), }
Arend van Spriel5b435de2011-10-05 13:19:03 +0200217};
218
Hante Meuleman240d61a2016-02-17 11:27:10 +0100219/* Note: brcmf_cipher_suites is an array of int defining which cipher suites
220 * are supported. A pointer to this array and the number of entries is passed
221 * on to upper layers. AES_CMAC defines whether or not the driver supports MFP.
222 * So the cipher suite AES_CMAC has to be the last one in the array, and when
223 * device does not support MFP then the number of suites will be decreased by 1
224 */
225static const u32 brcmf_cipher_suites[] = {
Arend van Spriel5b435de2011-10-05 13:19:03 +0200226 WLAN_CIPHER_SUITE_WEP40,
227 WLAN_CIPHER_SUITE_WEP104,
228 WLAN_CIPHER_SUITE_TKIP,
229 WLAN_CIPHER_SUITE_CCMP,
Hante Meuleman240d61a2016-02-17 11:27:10 +0100230 /* Keep as last entry: */
231 WLAN_CIPHER_SUITE_AES_CMAC
Arend van Spriel5b435de2011-10-05 13:19:03 +0200232};
233
Hante Meuleman1a873342012-09-27 14:17:54 +0200234/* Vendor specific ie. id = 221, oui and type defines exact ie */
235struct brcmf_vs_tlv {
236 u8 id;
237 u8 len;
238 u8 oui[3];
239 u8 oui_type;
240};
241
242struct parsed_vndr_ie_info {
243 u8 *ie_ptr;
244 u32 ie_len; /* total length including id & length field */
245 struct brcmf_vs_tlv vndrie;
246};
247
248struct parsed_vndr_ies {
249 u32 count;
Arend van Spriel9f440b72013-02-08 15:53:36 +0100250 struct parsed_vndr_ie_info ie_info[VNDR_IE_PARSE_LIMIT];
Hante Meuleman1a873342012-09-27 14:17:54 +0200251};
252
Arend van Spriel7705ba62016-04-17 16:44:58 +0200253static u8 nl80211_band_to_fwil(enum nl80211_band band)
254{
255 switch (band) {
256 case NL80211_BAND_2GHZ:
257 return WLC_BAND_2G;
258 case NL80211_BAND_5GHZ:
259 return WLC_BAND_5G;
260 default:
261 WARN_ON(1);
262 break;
263 }
264 return 0;
265}
266
Arend van Spriel5a394eb2014-05-27 12:56:15 +0200267static u16 chandef_to_chanspec(struct brcmu_d11inf *d11inf,
268 struct cfg80211_chan_def *ch)
Arend van Spriel600a8972014-05-12 10:47:39 +0200269{
270 struct brcmu_chan ch_inf;
271 s32 primary_offset;
272
273 brcmf_dbg(TRACE, "chandef: control %d center %d width %d\n",
274 ch->chan->center_freq, ch->center_freq1, ch->width);
275 ch_inf.chnum = ieee80211_frequency_to_channel(ch->center_freq1);
Rafał Miłecki36e80722016-01-20 16:46:04 +0100276 primary_offset = ch->chan->center_freq - ch->center_freq1;
Arend van Spriel600a8972014-05-12 10:47:39 +0200277 switch (ch->width) {
278 case NL80211_CHAN_WIDTH_20:
Arend van Spriel0cd75b12014-11-11 13:58:44 +0100279 case NL80211_CHAN_WIDTH_20_NOHT:
Arend van Spriel600a8972014-05-12 10:47:39 +0200280 ch_inf.bw = BRCMU_CHAN_BW_20;
281 WARN_ON(primary_offset != 0);
282 break;
283 case NL80211_CHAN_WIDTH_40:
284 ch_inf.bw = BRCMU_CHAN_BW_40;
Rafał Miłecki36e80722016-01-20 16:46:04 +0100285 if (primary_offset > 0)
Arend van Spriel600a8972014-05-12 10:47:39 +0200286 ch_inf.sb = BRCMU_CHAN_SB_U;
287 else
288 ch_inf.sb = BRCMU_CHAN_SB_L;
289 break;
290 case NL80211_CHAN_WIDTH_80:
291 ch_inf.bw = BRCMU_CHAN_BW_80;
Rafał Miłecki36e80722016-01-20 16:46:04 +0100292 if (primary_offset == -30)
293 ch_inf.sb = BRCMU_CHAN_SB_LL;
294 else if (primary_offset == -10)
295 ch_inf.sb = BRCMU_CHAN_SB_LU;
296 else if (primary_offset == 10)
297 ch_inf.sb = BRCMU_CHAN_SB_UL;
298 else
299 ch_inf.sb = BRCMU_CHAN_SB_UU;
Arend van Spriel600a8972014-05-12 10:47:39 +0200300 break;
Arend van Spriel0cd75b12014-11-11 13:58:44 +0100301 case NL80211_CHAN_WIDTH_80P80:
302 case NL80211_CHAN_WIDTH_160:
303 case NL80211_CHAN_WIDTH_5:
304 case NL80211_CHAN_WIDTH_10:
Arend van Spriel600a8972014-05-12 10:47:39 +0200305 default:
306 WARN_ON_ONCE(1);
307 }
308 switch (ch->chan->band) {
Johannes Berg57fbcce2016-04-12 15:56:15 +0200309 case NL80211_BAND_2GHZ:
Arend van Spriel600a8972014-05-12 10:47:39 +0200310 ch_inf.band = BRCMU_CHAN_BAND_2G;
311 break;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200312 case NL80211_BAND_5GHZ:
Arend van Spriel600a8972014-05-12 10:47:39 +0200313 ch_inf.band = BRCMU_CHAN_BAND_5G;
314 break;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200315 case NL80211_BAND_60GHZ:
Arend van Spriel600a8972014-05-12 10:47:39 +0200316 default:
317 WARN_ON_ONCE(1);
318 }
319 d11inf->encchspec(&ch_inf);
320
321 return ch_inf.chspec;
322}
323
Franky Lin83cf17a2013-04-11 13:28:50 +0200324u16 channel_to_chanspec(struct brcmu_d11inf *d11inf,
325 struct ieee80211_channel *ch)
Arend van Spriel6e186162012-10-22 10:36:22 -0700326{
Franky Lin83cf17a2013-04-11 13:28:50 +0200327 struct brcmu_chan ch_inf;
Arend van Spriel6e186162012-10-22 10:36:22 -0700328
Franky Lin83cf17a2013-04-11 13:28:50 +0200329 ch_inf.chnum = ieee80211_frequency_to_channel(ch->center_freq);
330 ch_inf.bw = BRCMU_CHAN_BW_20;
331 d11inf->encchspec(&ch_inf);
Arend van Spriel6e186162012-10-22 10:36:22 -0700332
Franky Lin83cf17a2013-04-11 13:28:50 +0200333 return ch_inf.chspec;
Arend van Spriel6e186162012-10-22 10:36:22 -0700334}
335
Hante Meuleman89286dc2013-02-08 15:53:46 +0100336/* Traverse a string of 1-byte tag/1-byte length/variable-length value
337 * triples, returning a pointer to the substring whose first element
338 * matches tag
339 */
Johannes Berg4b5800f2014-01-15 14:55:59 +0100340const struct brcmf_tlv *
341brcmf_parse_tlvs(const void *buf, int buflen, uint key)
Hante Meuleman89286dc2013-02-08 15:53:46 +0100342{
Johannes Berg4b5800f2014-01-15 14:55:59 +0100343 const struct brcmf_tlv *elt = buf;
344 int totlen = buflen;
Hante Meuleman89286dc2013-02-08 15:53:46 +0100345
346 /* find tagged parameter */
347 while (totlen >= TLV_HDR_LEN) {
348 int len = elt->len;
349
350 /* validate remaining totlen */
351 if ((elt->id == key) && (totlen >= (len + TLV_HDR_LEN)))
352 return elt;
353
354 elt = (struct brcmf_tlv *)((u8 *)elt + (len + TLV_HDR_LEN));
355 totlen -= (len + TLV_HDR_LEN);
356 }
357
358 return NULL;
359}
360
361/* Is any of the tlvs the expected entry? If
362 * not update the tlvs buffer pointer/length.
363 */
364static bool
Johannes Berg4b5800f2014-01-15 14:55:59 +0100365brcmf_tlv_has_ie(const u8 *ie, const u8 **tlvs, u32 *tlvs_len,
366 const u8 *oui, u32 oui_len, u8 type)
Hante Meuleman89286dc2013-02-08 15:53:46 +0100367{
368 /* If the contents match the OUI and the type */
369 if (ie[TLV_LEN_OFF] >= oui_len + 1 &&
370 !memcmp(&ie[TLV_BODY_OFF], oui, oui_len) &&
371 type == ie[TLV_BODY_OFF + oui_len]) {
372 return true;
373 }
374
375 if (tlvs == NULL)
376 return false;
377 /* point to the next ie */
378 ie += ie[TLV_LEN_OFF] + TLV_HDR_LEN;
379 /* calculate the length of the rest of the buffer */
380 *tlvs_len -= (int)(ie - *tlvs);
381 /* update the pointer to the start of the buffer */
382 *tlvs = ie;
383
384 return false;
385}
386
387static struct brcmf_vs_tlv *
Johannes Berg4b5800f2014-01-15 14:55:59 +0100388brcmf_find_wpaie(const u8 *parse, u32 len)
Hante Meuleman89286dc2013-02-08 15:53:46 +0100389{
Johannes Berg4b5800f2014-01-15 14:55:59 +0100390 const struct brcmf_tlv *ie;
Hante Meuleman89286dc2013-02-08 15:53:46 +0100391
392 while ((ie = brcmf_parse_tlvs(parse, len, WLAN_EID_VENDOR_SPECIFIC))) {
Johannes Berg4b5800f2014-01-15 14:55:59 +0100393 if (brcmf_tlv_has_ie((const u8 *)ie, &parse, &len,
Hante Meuleman89286dc2013-02-08 15:53:46 +0100394 WPA_OUI, TLV_OUI_LEN, WPA_OUI_TYPE))
395 return (struct brcmf_vs_tlv *)ie;
396 }
397 return NULL;
398}
399
400static struct brcmf_vs_tlv *
Johannes Berg4b5800f2014-01-15 14:55:59 +0100401brcmf_find_wpsie(const u8 *parse, u32 len)
Hante Meuleman89286dc2013-02-08 15:53:46 +0100402{
Johannes Berg4b5800f2014-01-15 14:55:59 +0100403 const struct brcmf_tlv *ie;
Hante Meuleman89286dc2013-02-08 15:53:46 +0100404
405 while ((ie = brcmf_parse_tlvs(parse, len, WLAN_EID_VENDOR_SPECIFIC))) {
406 if (brcmf_tlv_has_ie((u8 *)ie, &parse, &len,
407 WPA_OUI, TLV_OUI_LEN, WPS_OUI_TYPE))
408 return (struct brcmf_vs_tlv *)ie;
409 }
410 return NULL;
411}
412
Arend van Spriel39504a22015-08-20 22:06:05 +0200413static int brcmf_vif_change_validate(struct brcmf_cfg80211_info *cfg,
414 struct brcmf_cfg80211_vif *vif,
415 enum nl80211_iftype new_type)
416{
417 int iftype_num[NUM_NL80211_IFTYPES];
418 struct brcmf_cfg80211_vif *pos;
Arend van Spriel353c46a2015-12-10 13:43:06 +0100419 bool check_combos = false;
420 int ret = 0;
Arend van Spriel39504a22015-08-20 22:06:05 +0200421
422 memset(&iftype_num[0], 0, sizeof(iftype_num));
423 list_for_each_entry(pos, &cfg->vif_list, list)
Arend van Spriel353c46a2015-12-10 13:43:06 +0100424 if (pos == vif) {
Arend van Spriel39504a22015-08-20 22:06:05 +0200425 iftype_num[new_type]++;
Arend van Spriel353c46a2015-12-10 13:43:06 +0100426 } else {
427 /* concurrent interfaces so need check combinations */
428 check_combos = true;
Arend van Spriel39504a22015-08-20 22:06:05 +0200429 iftype_num[pos->wdev.iftype]++;
Arend van Spriel353c46a2015-12-10 13:43:06 +0100430 }
Arend van Spriel39504a22015-08-20 22:06:05 +0200431
Arend van Spriel353c46a2015-12-10 13:43:06 +0100432 if (check_combos)
433 ret = cfg80211_check_combinations(cfg->wiphy, 1, 0, iftype_num);
434
435 return ret;
Arend van Spriel39504a22015-08-20 22:06:05 +0200436}
437
438static int brcmf_vif_add_validate(struct brcmf_cfg80211_info *cfg,
439 enum nl80211_iftype new_type)
440{
441 int iftype_num[NUM_NL80211_IFTYPES];
442 struct brcmf_cfg80211_vif *pos;
443
444 memset(&iftype_num[0], 0, sizeof(iftype_num));
445 list_for_each_entry(pos, &cfg->vif_list, list)
446 iftype_num[pos->wdev.iftype]++;
447
448 iftype_num[new_type]++;
449 return cfg80211_check_combinations(cfg->wiphy, 1, 0, iftype_num);
450}
Hante Meuleman89286dc2013-02-08 15:53:46 +0100451
Arend van Spriel5b435de2011-10-05 13:19:03 +0200452static void convert_key_from_CPU(struct brcmf_wsec_key *key,
453 struct brcmf_wsec_key_le *key_le)
454{
455 key_le->index = cpu_to_le32(key->index);
456 key_le->len = cpu_to_le32(key->len);
457 key_le->algo = cpu_to_le32(key->algo);
458 key_le->flags = cpu_to_le32(key->flags);
459 key_le->rxiv.hi = cpu_to_le32(key->rxiv.hi);
460 key_le->rxiv.lo = cpu_to_le16(key->rxiv.lo);
461 key_le->iv_initialized = cpu_to_le32(key->iv_initialized);
462 memcpy(key_le->data, key->data, sizeof(key->data));
463 memcpy(key_le->ea, key->ea, sizeof(key->ea));
464}
465
Hante Meulemanf09d0c02012-09-27 14:17:48 +0200466static int
Hante Meuleman118eb302014-12-21 12:43:49 +0100467send_key_to_dongle(struct brcmf_if *ifp, struct brcmf_wsec_key *key)
Arend van Spriel5b435de2011-10-05 13:19:03 +0200468{
469 int err;
470 struct brcmf_wsec_key_le key_le;
471
472 convert_key_from_CPU(key, &key_le);
Hante Meulemanf09d0c02012-09-27 14:17:48 +0200473
Hante Meuleman118eb302014-12-21 12:43:49 +0100474 brcmf_netdev_wait_pend8021x(ifp);
Hante Meuleman81f5dcb2012-10-22 10:36:14 -0700475
Hante Meuleman118eb302014-12-21 12:43:49 +0100476 err = brcmf_fil_bsscfg_data_set(ifp, "wsec_key", &key_le,
Hante Meuleman81f5dcb2012-10-22 10:36:14 -0700477 sizeof(key_le));
Hante Meulemanf09d0c02012-09-27 14:17:48 +0200478
Arend van Spriel5b435de2011-10-05 13:19:03 +0200479 if (err)
Arend van Spriel57d6e912012-12-05 15:26:00 +0100480 brcmf_err("wsec_key error (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200481 return err;
482}
483
Hante Meulemanb3657452013-05-27 21:09:53 +0200484static s32
Franky Lin52f22fb2016-02-17 11:26:55 +0100485brcmf_configure_arp_nd_offload(struct brcmf_if *ifp, bool enable)
Hante Meulemanb3657452013-05-27 21:09:53 +0200486{
487 s32 err;
488 u32 mode;
489
490 if (enable)
491 mode = BRCMF_ARP_OL_AGENT | BRCMF_ARP_OL_PEER_AUTO_REPLY;
492 else
493 mode = 0;
494
495 /* Try to set and enable ARP offload feature, this may fail, then it */
496 /* is simply not supported and err 0 will be returned */
497 err = brcmf_fil_iovar_int_set(ifp, "arp_ol", mode);
498 if (err) {
499 brcmf_dbg(TRACE, "failed to set ARP offload mode to 0x%x, err = %d\n",
500 mode, err);
501 err = 0;
502 } else {
503 err = brcmf_fil_iovar_int_set(ifp, "arpoe", enable);
504 if (err) {
505 brcmf_dbg(TRACE, "failed to configure (%d) ARP offload err = %d\n",
506 enable, err);
507 err = 0;
508 } else
509 brcmf_dbg(TRACE, "successfully configured (%d) ARP offload to 0x%x\n",
510 enable, mode);
511 }
512
Franky Lin52f22fb2016-02-17 11:26:55 +0100513 err = brcmf_fil_iovar_int_set(ifp, "ndoe", enable);
514 if (err) {
515 brcmf_dbg(TRACE, "failed to configure (%d) ND offload err = %d\n",
516 enable, err);
517 err = 0;
518 } else
519 brcmf_dbg(TRACE, "successfully configured (%d) ND offload to 0x%x\n",
520 enable, mode);
521
Hante Meulemanb3657452013-05-27 21:09:53 +0200522 return err;
523}
524
Hante Meuleman8851cce2014-07-30 13:20:02 +0200525static void
526brcmf_cfg80211_update_proto_addr_mode(struct wireless_dev *wdev)
527{
Arend van Spriel8f2b4592014-09-11 22:51:32 +0200528 struct brcmf_cfg80211_vif *vif;
529 struct brcmf_if *ifp;
530
531 vif = container_of(wdev, struct brcmf_cfg80211_vif, wdev);
532 ifp = vif->ifp;
Hante Meuleman8851cce2014-07-30 13:20:02 +0200533
534 if ((wdev->iftype == NL80211_IFTYPE_ADHOC) ||
535 (wdev->iftype == NL80211_IFTYPE_AP) ||
536 (wdev->iftype == NL80211_IFTYPE_P2P_GO))
537 brcmf_proto_configure_addr_mode(ifp->drvr, ifp->ifidx,
538 ADDR_DIRECT);
539 else
540 brcmf_proto_configure_addr_mode(ifp->drvr, ifp->ifidx,
541 ADDR_INDIRECT);
542}
543
Rafał Miłeckid02fb8f2016-05-26 01:44:27 +0200544static int brcmf_get_first_free_bsscfgidx(struct brcmf_pub *drvr)
545{
546 int bsscfgidx;
547
548 for (bsscfgidx = 0; bsscfgidx < BRCMF_MAX_IFS; bsscfgidx++) {
549 /* bsscfgidx 1 is reserved for legacy P2P */
550 if (bsscfgidx == 1)
551 continue;
552 if (!drvr->iflist[bsscfgidx])
553 return bsscfgidx;
554 }
555
556 return -ENOMEM;
557}
558
Hante Meulemana44aa402014-12-03 21:05:33 +0100559static int brcmf_cfg80211_request_ap_if(struct brcmf_if *ifp)
560{
561 struct brcmf_mbss_ssid_le mbss_ssid_le;
562 int bsscfgidx;
563 int err;
564
565 memset(&mbss_ssid_le, 0, sizeof(mbss_ssid_le));
Rafał Miłeckid02fb8f2016-05-26 01:44:27 +0200566 bsscfgidx = brcmf_get_first_free_bsscfgidx(ifp->drvr);
Hante Meulemana44aa402014-12-03 21:05:33 +0100567 if (bsscfgidx < 0)
568 return bsscfgidx;
569
570 mbss_ssid_le.bsscfgidx = cpu_to_le32(bsscfgidx);
571 mbss_ssid_le.SSID_len = cpu_to_le32(5);
572 sprintf(mbss_ssid_le.SSID, "ssid%d" , bsscfgidx);
573
574 err = brcmf_fil_bsscfg_data_set(ifp, "bsscfg:ssid", &mbss_ssid_le,
575 sizeof(mbss_ssid_le));
576 if (err < 0)
577 brcmf_err("setting ssid failed %d\n", err);
578
579 return err;
580}
581
582/**
583 * brcmf_ap_add_vif() - create a new AP virtual interface for multiple BSS
584 *
585 * @wiphy: wiphy device of new interface.
586 * @name: name of the new interface.
587 * @flags: not used.
588 * @params: contains mac address for AP device.
589 */
590static
591struct wireless_dev *brcmf_ap_add_vif(struct wiphy *wiphy, const char *name,
592 u32 *flags, struct vif_params *params)
593{
594 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
595 struct brcmf_if *ifp = netdev_priv(cfg_to_ndev(cfg));
596 struct brcmf_cfg80211_vif *vif;
597 int err;
598
599 if (brcmf_cfg80211_vif_event_armed(cfg))
600 return ERR_PTR(-EBUSY);
601
602 brcmf_dbg(INFO, "Adding vif \"%s\"\n", name);
603
Rafał Miłecki26072332016-06-06 23:03:55 +0200604 vif = brcmf_alloc_vif(cfg, NL80211_IFTYPE_AP);
Hante Meulemana44aa402014-12-03 21:05:33 +0100605 if (IS_ERR(vif))
606 return (struct wireless_dev *)vif;
607
608 brcmf_cfg80211_arm_vif_event(cfg, vif);
609
610 err = brcmf_cfg80211_request_ap_if(ifp);
611 if (err) {
612 brcmf_cfg80211_arm_vif_event(cfg, NULL);
613 goto fail;
614 }
615
616 /* wait for firmware event */
Arend van Spriela9eb0c42016-02-17 11:26:50 +0100617 err = brcmf_cfg80211_wait_vif_event(cfg, BRCMF_E_IF_ADD,
618 BRCMF_VIF_EVENT_TIMEOUT);
Hante Meulemana44aa402014-12-03 21:05:33 +0100619 brcmf_cfg80211_arm_vif_event(cfg, NULL);
620 if (!err) {
621 brcmf_err("timeout occurred\n");
622 err = -EIO;
623 goto fail;
624 }
625
626 /* interface created in firmware */
627 ifp = vif->ifp;
628 if (!ifp) {
629 brcmf_err("no if pointer provided\n");
630 err = -ENOENT;
631 goto fail;
632 }
633
634 strncpy(ifp->ndev->name, name, sizeof(ifp->ndev->name) - 1);
635 err = brcmf_net_attach(ifp, true);
636 if (err) {
637 brcmf_err("Registering netdevice failed\n");
638 goto fail;
639 }
640
641 return &ifp->vif->wdev;
642
643fail:
644 brcmf_free_vif(vif);
645 return ERR_PTR(err);
646}
647
Arend van Spriel967fe2c2014-03-15 17:18:21 +0100648static bool brcmf_is_apmode(struct brcmf_cfg80211_vif *vif)
649{
650 enum nl80211_iftype iftype;
651
652 iftype = vif->wdev.iftype;
653 return iftype == NL80211_IFTYPE_AP || iftype == NL80211_IFTYPE_P2P_GO;
654}
655
656static bool brcmf_is_ibssmode(struct brcmf_cfg80211_vif *vif)
657{
658 return vif->wdev.iftype == NL80211_IFTYPE_ADHOC;
659}
660
Arend van Spriel9f440b72013-02-08 15:53:36 +0100661static struct wireless_dev *brcmf_cfg80211_add_iface(struct wiphy *wiphy,
662 const char *name,
Tom Gundersen6bab2e192015-03-18 11:13:39 +0100663 unsigned char name_assign_type,
Arend van Spriel9f440b72013-02-08 15:53:36 +0100664 enum nl80211_iftype type,
665 u32 *flags,
666 struct vif_params *params)
667{
Hante Meuleman8851cce2014-07-30 13:20:02 +0200668 struct wireless_dev *wdev;
Arend van Spriel39504a22015-08-20 22:06:05 +0200669 int err;
Hante Meuleman8851cce2014-07-30 13:20:02 +0200670
Arend van Spriel9f440b72013-02-08 15:53:36 +0100671 brcmf_dbg(TRACE, "enter: %s type %d\n", name, type);
Arend van Spriel39504a22015-08-20 22:06:05 +0200672 err = brcmf_vif_add_validate(wiphy_to_cfg(wiphy), type);
673 if (err) {
674 brcmf_err("iface validation failed: err=%d\n", err);
675 return ERR_PTR(err);
676 }
Arend van Spriel9f440b72013-02-08 15:53:36 +0100677 switch (type) {
678 case NL80211_IFTYPE_ADHOC:
679 case NL80211_IFTYPE_STATION:
Arend van Spriel9f440b72013-02-08 15:53:36 +0100680 case NL80211_IFTYPE_AP_VLAN:
681 case NL80211_IFTYPE_WDS:
682 case NL80211_IFTYPE_MONITOR:
683 case NL80211_IFTYPE_MESH_POINT:
684 return ERR_PTR(-EOPNOTSUPP);
Hante Meulemana44aa402014-12-03 21:05:33 +0100685 case NL80211_IFTYPE_AP:
686 wdev = brcmf_ap_add_vif(wiphy, name, flags, params);
Rafał Miłecki0cd33c22016-05-27 10:54:28 +0200687 break;
Arend van Spriel9f440b72013-02-08 15:53:36 +0100688 case NL80211_IFTYPE_P2P_CLIENT:
689 case NL80211_IFTYPE_P2P_GO:
Arend van Spriel27f10e32013-04-05 10:57:50 +0200690 case NL80211_IFTYPE_P2P_DEVICE:
Tom Gundersen6bab2e192015-03-18 11:13:39 +0100691 wdev = brcmf_p2p_add_vif(wiphy, name, name_assign_type, type, flags, params);
Rafał Miłecki0cd33c22016-05-27 10:54:28 +0200692 break;
Arend van Spriel9f440b72013-02-08 15:53:36 +0100693 case NL80211_IFTYPE_UNSPECIFIED:
Arend van Spriel9f440b72013-02-08 15:53:36 +0100694 default:
695 return ERR_PTR(-EINVAL);
696 }
Rafał Miłecki0cd33c22016-05-27 10:54:28 +0200697
698 if (IS_ERR(wdev))
699 brcmf_err("add iface %s type %d failed: err=%d\n",
700 name, type, (int)PTR_ERR(wdev));
701 else
702 brcmf_cfg80211_update_proto_addr_mode(wdev);
703
704 return wdev;
Arend van Spriel9f440b72013-02-08 15:53:36 +0100705}
706
Daniel Kim5e787f72014-06-21 12:11:18 +0200707static void brcmf_scan_config_mpc(struct brcmf_if *ifp, int mpc)
708{
Arend van Sprielc08437b2014-07-12 08:49:39 +0200709 if (brcmf_feat_is_quirk_enabled(ifp, BRCMF_FEAT_QUIRK_NEED_MPC))
Daniel Kim5e787f72014-06-21 12:11:18 +0200710 brcmf_set_mpc(ifp, mpc);
711}
712
Arend van Sprielf96aa072013-04-05 10:57:48 +0200713void brcmf_set_mpc(struct brcmf_if *ifp, int mpc)
Arend van Spriel5f4f9f12013-02-08 15:53:41 +0100714{
Arend van Spriel5f4f9f12013-02-08 15:53:41 +0100715 s32 err = 0;
716
717 if (check_vif_up(ifp->vif)) {
718 err = brcmf_fil_iovar_int_set(ifp, "mpc", mpc);
719 if (err) {
720 brcmf_err("fail to set mpc\n");
721 return;
722 }
723 brcmf_dbg(INFO, "MPC : %d\n", mpc);
724 }
725}
726
Arend van Spriela0f472a2013-04-05 10:57:49 +0200727s32 brcmf_notify_escan_complete(struct brcmf_cfg80211_info *cfg,
728 struct brcmf_if *ifp, bool aborted,
729 bool fw_abort)
Arend van Spriel5f4f9f12013-02-08 15:53:41 +0100730{
731 struct brcmf_scan_params_le params_le;
732 struct cfg80211_scan_request *scan_request;
733 s32 err = 0;
734
735 brcmf_dbg(SCAN, "Enter\n");
736
737 /* clear scan request, because the FW abort can cause a second call */
738 /* to this functon and might cause a double cfg80211_scan_done */
739 scan_request = cfg->scan_request;
740 cfg->scan_request = NULL;
741
742 if (timer_pending(&cfg->escan_timeout))
743 del_timer_sync(&cfg->escan_timeout);
744
745 if (fw_abort) {
746 /* Do a scan abort to stop the driver's scan engine */
747 brcmf_dbg(SCAN, "ABORT scan in firmware\n");
748 memset(&params_le, 0, sizeof(params_le));
Joe Perches93803b32015-03-02 19:54:49 -0800749 eth_broadcast_addr(params_le.bssid);
Arend van Spriel5f4f9f12013-02-08 15:53:41 +0100750 params_le.bss_type = DOT11_BSSTYPE_ANY;
751 params_le.scan_type = 0;
752 params_le.channel_num = cpu_to_le32(1);
753 params_le.nprobes = cpu_to_le32(1);
754 params_le.active_time = cpu_to_le32(-1);
755 params_le.passive_time = cpu_to_le32(-1);
756 params_le.home_time = cpu_to_le32(-1);
757 /* Scan is aborted by setting channel_list[0] to -1 */
758 params_le.channel_list[0] = cpu_to_le16(-1);
759 /* E-Scan (or anyother type) can be aborted by SCAN */
Arend van Sprielf96aa072013-04-05 10:57:48 +0200760 err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SCAN,
Arend van Spriel5f4f9f12013-02-08 15:53:41 +0100761 &params_le, sizeof(params_le));
762 if (err)
763 brcmf_err("Scan abort failed\n");
764 }
Arend van Spriel0f0fe992014-05-27 12:56:14 +0200765
Daniel Kim5e787f72014-06-21 12:11:18 +0200766 brcmf_scan_config_mpc(ifp, 1);
Arend van Spriel0f0fe992014-05-27 12:56:14 +0200767
Arend van Spriel5f4f9f12013-02-08 15:53:41 +0100768 /*
769 * e-scan can be initiated by scheduled scan
770 * which takes precedence.
771 */
772 if (cfg->sched_escan) {
773 brcmf_dbg(SCAN, "scheduled scan completed\n");
774 cfg->sched_escan = false;
775 if (!aborted)
776 cfg80211_sched_scan_results(cfg_to_wiphy(cfg));
Arend van Spriel5f4f9f12013-02-08 15:53:41 +0100777 } else if (scan_request) {
778 brcmf_dbg(SCAN, "ESCAN Completed scan: %s\n",
779 aborted ? "Aborted" : "Done");
780 cfg80211_scan_done(scan_request, aborted);
Arend van Spriel5f4f9f12013-02-08 15:53:41 +0100781 }
Hante Meuleman6eda4e22013-02-08 15:54:02 +0100782 if (!test_and_clear_bit(BRCMF_SCAN_STATUS_BUSY, &cfg->scan_status))
783 brcmf_dbg(SCAN, "Scan complete, probably P2P scan\n");
Arend van Spriel5f4f9f12013-02-08 15:53:41 +0100784
785 return err;
786}
787
Rafał Miłeckidba8fbc2016-06-29 21:54:27 +0200788static int brcmf_cfg80211_del_ap_iface(struct wiphy *wiphy,
789 struct wireless_dev *wdev)
790{
791 struct brcmf_cfg80211_info *cfg = wiphy_priv(wiphy);
792 struct net_device *ndev = wdev->netdev;
793 struct brcmf_if *ifp = netdev_priv(ndev);
794 int ret;
795 int err;
796
797 brcmf_cfg80211_arm_vif_event(cfg, ifp->vif);
798
799 err = brcmf_fil_bsscfg_data_set(ifp, "interface_remove", NULL, 0);
800 if (err) {
801 brcmf_err("interface_remove failed %d\n", err);
802 goto err_unarm;
803 }
804
805 /* wait for firmware event */
806 ret = brcmf_cfg80211_wait_vif_event(cfg, BRCMF_E_IF_DEL,
807 BRCMF_VIF_EVENT_TIMEOUT);
808 if (!ret) {
809 brcmf_err("timeout occurred\n");
810 err = -EIO;
811 goto err_unarm;
812 }
813
814 brcmf_remove_interface(ifp, true);
815
816err_unarm:
817 brcmf_cfg80211_arm_vif_event(cfg, NULL);
818 return err;
819}
820
Arend van Spriel9f440b72013-02-08 15:53:36 +0100821static
822int brcmf_cfg80211_del_iface(struct wiphy *wiphy, struct wireless_dev *wdev)
823{
Arend van Spriel5f4f9f12013-02-08 15:53:41 +0100824 struct brcmf_cfg80211_info *cfg = wiphy_priv(wiphy);
825 struct net_device *ndev = wdev->netdev;
826
Rafał Miłeckidba8fbc2016-06-29 21:54:27 +0200827 if (ndev && ndev == cfg_to_ndev(cfg))
828 return -ENOTSUPP;
829
Arend van Spriel5f4f9f12013-02-08 15:53:41 +0100830 /* vif event pending in firmware */
831 if (brcmf_cfg80211_vif_event_armed(cfg))
832 return -EBUSY;
833
834 if (ndev) {
835 if (test_bit(BRCMF_SCAN_STATUS_BUSY, &cfg->scan_status) &&
Arend van Spriela0f472a2013-04-05 10:57:49 +0200836 cfg->escan_info.ifp == netdev_priv(ndev))
837 brcmf_notify_escan_complete(cfg, netdev_priv(ndev),
838 true, true);
Arend van Spriel5f4f9f12013-02-08 15:53:41 +0100839
840 brcmf_fil_iovar_int_set(netdev_priv(ndev), "mpc", 1);
841 }
842
Arend van Spriel9f440b72013-02-08 15:53:36 +0100843 switch (wdev->iftype) {
844 case NL80211_IFTYPE_ADHOC:
845 case NL80211_IFTYPE_STATION:
Arend van Spriel9f440b72013-02-08 15:53:36 +0100846 case NL80211_IFTYPE_AP_VLAN:
847 case NL80211_IFTYPE_WDS:
848 case NL80211_IFTYPE_MONITOR:
849 case NL80211_IFTYPE_MESH_POINT:
850 return -EOPNOTSUPP;
Rafał Miłeckidba8fbc2016-06-29 21:54:27 +0200851 case NL80211_IFTYPE_AP:
852 return brcmf_cfg80211_del_ap_iface(wiphy, wdev);
Arend van Spriel9f440b72013-02-08 15:53:36 +0100853 case NL80211_IFTYPE_P2P_CLIENT:
854 case NL80211_IFTYPE_P2P_GO:
Arend van Spriel27f10e32013-04-05 10:57:50 +0200855 case NL80211_IFTYPE_P2P_DEVICE:
Arend van Spriel9f440b72013-02-08 15:53:36 +0100856 return brcmf_p2p_del_vif(wiphy, wdev);
857 case NL80211_IFTYPE_UNSPECIFIED:
Arend van Spriel9f440b72013-02-08 15:53:36 +0100858 default:
859 return -EINVAL;
860 }
861 return -EOPNOTSUPP;
862}
863
Arend van Spriel5b435de2011-10-05 13:19:03 +0200864static s32
865brcmf_cfg80211_change_iface(struct wiphy *wiphy, struct net_device *ndev,
866 enum nl80211_iftype type, u32 *flags,
867 struct vif_params *params)
868{
Hante Meuleman7a5c1f62013-02-08 15:53:44 +0100869 struct brcmf_cfg80211_info *cfg = wiphy_priv(wiphy);
Arend van Sprielc1179032012-10-22 13:55:33 -0700870 struct brcmf_if *ifp = netdev_priv(ndev);
Arend van Spriel128ce3b2012-11-28 21:44:12 +0100871 struct brcmf_cfg80211_vif *vif = ifp->vif;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200872 s32 infra = 0;
Hante Meuleman1a873342012-09-27 14:17:54 +0200873 s32 ap = 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200874 s32 err = 0;
875
Hante Meuleman37a869e2015-10-29 20:33:17 +0100876 brcmf_dbg(TRACE, "Enter, bsscfgidx=%d, type=%d\n", ifp->bsscfgidx,
877 type);
Hante Meuleman178e9ef2015-09-18 22:08:11 +0200878
879 /* WAR: There are a number of p2p interface related problems which
880 * need to be handled initially (before doing the validate).
881 * wpa_supplicant tends to do iface changes on p2p device/client/go
882 * which are not always possible/allowed. However we need to return
883 * OK otherwise the wpa_supplicant wont start. The situation differs
884 * on configuration and setup (p2pon=1 module param). The first check
885 * is to see if the request is a change to station for p2p iface.
886 */
887 if ((type == NL80211_IFTYPE_STATION) &&
888 ((vif->wdev.iftype == NL80211_IFTYPE_P2P_CLIENT) ||
889 (vif->wdev.iftype == NL80211_IFTYPE_P2P_GO) ||
890 (vif->wdev.iftype == NL80211_IFTYPE_P2P_DEVICE))) {
891 brcmf_dbg(TRACE, "Ignoring cmd for p2p if\n");
892 /* Now depending on whether module param p2pon=1 was used the
893 * response needs to be either 0 or EOPNOTSUPP. The reason is
894 * that if p2pon=1 is used, but a newer supplicant is used then
895 * we should return an error, as this combination wont work.
896 * In other situations 0 is returned and supplicant will start
897 * normally. It will give a trace in cfg80211, but it is the
898 * only way to get it working. Unfortunately this will result
899 * in situation where we wont support new supplicant in
900 * combination with module param p2pon=1, but that is the way
901 * it is. If the user tries this then unloading of driver might
902 * fail/lock.
903 */
904 if (cfg->p2p.p2pdev_dynamically)
905 return -EOPNOTSUPP;
906 else
907 return 0;
908 }
Arend van Spriel39504a22015-08-20 22:06:05 +0200909 err = brcmf_vif_change_validate(wiphy_to_cfg(wiphy), vif, type);
910 if (err) {
911 brcmf_err("iface validation failed: err=%d\n", err);
912 return err;
913 }
Arend van Spriel5b435de2011-10-05 13:19:03 +0200914 switch (type) {
915 case NL80211_IFTYPE_MONITOR:
916 case NL80211_IFTYPE_WDS:
Arend van Spriel57d6e912012-12-05 15:26:00 +0100917 brcmf_err("type (%d) : currently we do not support this type\n",
918 type);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200919 return -EOPNOTSUPP;
920 case NL80211_IFTYPE_ADHOC:
Arend van Spriel5b435de2011-10-05 13:19:03 +0200921 infra = 0;
922 break;
923 case NL80211_IFTYPE_STATION:
Arend van Spriel5b435de2011-10-05 13:19:03 +0200924 infra = 1;
925 break;
Hante Meuleman1a873342012-09-27 14:17:54 +0200926 case NL80211_IFTYPE_AP:
Hante Meuleman7a5c1f62013-02-08 15:53:44 +0100927 case NL80211_IFTYPE_P2P_GO:
Hante Meuleman1a873342012-09-27 14:17:54 +0200928 ap = 1;
929 break;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200930 default:
931 err = -EINVAL;
932 goto done;
933 }
934
Hante Meuleman1a873342012-09-27 14:17:54 +0200935 if (ap) {
Hante Meuleman7a5c1f62013-02-08 15:53:44 +0100936 if (type == NL80211_IFTYPE_P2P_GO) {
937 brcmf_dbg(INFO, "IF Type = P2P GO\n");
938 err = brcmf_p2p_ifchange(cfg, BRCMF_FIL_P2P_IF_GO);
939 }
940 if (!err) {
Hante Meuleman7a5c1f62013-02-08 15:53:44 +0100941 brcmf_dbg(INFO, "IF Type = AP\n");
942 }
Arend van Spriel5b435de2011-10-05 13:19:03 +0200943 } else {
Arend van Spriel128ce3b2012-11-28 21:44:12 +0100944 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_INFRA, infra);
Hante Meuleman1a873342012-09-27 14:17:54 +0200945 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +0100946 brcmf_err("WLC_SET_INFRA error (%d)\n", err);
Hante Meuleman1a873342012-09-27 14:17:54 +0200947 err = -EAGAIN;
948 goto done;
949 }
Arend van Spriel967fe2c2014-03-15 17:18:21 +0100950 brcmf_dbg(INFO, "IF Type = %s\n", brcmf_is_ibssmode(vif) ?
Arend van Spriel647c9ae2012-12-05 15:26:01 +0100951 "Adhoc" : "Infra");
Arend van Spriel5b435de2011-10-05 13:19:03 +0200952 }
Hante Meuleman1a873342012-09-27 14:17:54 +0200953 ndev->ieee80211_ptr->iftype = type;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200954
Hante Meuleman8851cce2014-07-30 13:20:02 +0200955 brcmf_cfg80211_update_proto_addr_mode(&vif->wdev);
956
Arend van Spriel5b435de2011-10-05 13:19:03 +0200957done:
Arend van Sprield96b8012012-12-05 15:26:02 +0100958 brcmf_dbg(TRACE, "Exit\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +0200959
960 return err;
961}
962
Franky Lin83cf17a2013-04-11 13:28:50 +0200963static void brcmf_escan_prep(struct brcmf_cfg80211_info *cfg,
964 struct brcmf_scan_params_le *params_le,
Hante Meulemane756af52012-09-11 21:18:52 +0200965 struct cfg80211_scan_request *request)
966{
967 u32 n_ssids;
968 u32 n_channels;
969 s32 i;
970 s32 offset;
Arend van Spriel029591f2012-09-19 22:21:06 +0200971 u16 chanspec;
Hante Meulemane756af52012-09-11 21:18:52 +0200972 char *ptr;
Arend van Spriel029591f2012-09-19 22:21:06 +0200973 struct brcmf_ssid_le ssid_le;
Hante Meulemane756af52012-09-11 21:18:52 +0200974
Joe Perches93803b32015-03-02 19:54:49 -0800975 eth_broadcast_addr(params_le->bssid);
Hante Meulemane756af52012-09-11 21:18:52 +0200976 params_le->bss_type = DOT11_BSSTYPE_ANY;
977 params_le->scan_type = 0;
978 params_le->channel_num = 0;
979 params_le->nprobes = cpu_to_le32(-1);
980 params_le->active_time = cpu_to_le32(-1);
981 params_le->passive_time = cpu_to_le32(-1);
982 params_le->home_time = cpu_to_le32(-1);
983 memset(&params_le->ssid_le, 0, sizeof(params_le->ssid_le));
984
985 /* if request is null exit so it will be all channel broadcast scan */
986 if (!request)
987 return;
988
989 n_ssids = request->n_ssids;
990 n_channels = request->n_channels;
991 /* Copy channel array if applicable */
Arend van Spriel4e8a0082012-12-05 15:26:03 +0100992 brcmf_dbg(SCAN, "### List of channelspecs to scan ### %d\n",
993 n_channels);
Hante Meulemane756af52012-09-11 21:18:52 +0200994 if (n_channels > 0) {
995 for (i = 0; i < n_channels; i++) {
Franky Lin83cf17a2013-04-11 13:28:50 +0200996 chanspec = channel_to_chanspec(&cfg->d11inf,
997 request->channels[i]);
Arend van Spriel4e8a0082012-12-05 15:26:03 +0100998 brcmf_dbg(SCAN, "Chan : %d, Channel spec: %x\n",
999 request->channels[i]->hw_value, chanspec);
Arend van Spriel029591f2012-09-19 22:21:06 +02001000 params_le->channel_list[i] = cpu_to_le16(chanspec);
Hante Meulemane756af52012-09-11 21:18:52 +02001001 }
1002 } else {
Arend van Spriel4e8a0082012-12-05 15:26:03 +01001003 brcmf_dbg(SCAN, "Scanning all channels\n");
Hante Meulemane756af52012-09-11 21:18:52 +02001004 }
1005 /* Copy ssid array if applicable */
Arend van Spriel4e8a0082012-12-05 15:26:03 +01001006 brcmf_dbg(SCAN, "### List of SSIDs to scan ### %d\n", n_ssids);
Hante Meulemane756af52012-09-11 21:18:52 +02001007 if (n_ssids > 0) {
1008 offset = offsetof(struct brcmf_scan_params_le, channel_list) +
1009 n_channels * sizeof(u16);
1010 offset = roundup(offset, sizeof(u32));
1011 ptr = (char *)params_le + offset;
1012 for (i = 0; i < n_ssids; i++) {
Arend van Spriel029591f2012-09-19 22:21:06 +02001013 memset(&ssid_le, 0, sizeof(ssid_le));
1014 ssid_le.SSID_len =
1015 cpu_to_le32(request->ssids[i].ssid_len);
1016 memcpy(ssid_le.SSID, request->ssids[i].ssid,
1017 request->ssids[i].ssid_len);
1018 if (!ssid_le.SSID_len)
Arend van Spriel4e8a0082012-12-05 15:26:03 +01001019 brcmf_dbg(SCAN, "%d: Broadcast scan\n", i);
Hante Meulemane756af52012-09-11 21:18:52 +02001020 else
Arend van Spriel4e8a0082012-12-05 15:26:03 +01001021 brcmf_dbg(SCAN, "%d: scan for %s size =%d\n",
1022 i, ssid_le.SSID, ssid_le.SSID_len);
Arend van Spriel029591f2012-09-19 22:21:06 +02001023 memcpy(ptr, &ssid_le, sizeof(ssid_le));
1024 ptr += sizeof(ssid_le);
Hante Meulemane756af52012-09-11 21:18:52 +02001025 }
1026 } else {
Arend van Spriel4e8a0082012-12-05 15:26:03 +01001027 brcmf_dbg(SCAN, "Broadcast scan %p\n", request->ssids);
Hante Meulemane756af52012-09-11 21:18:52 +02001028 if ((request->ssids) && request->ssids->ssid_len) {
Arend van Spriel4e8a0082012-12-05 15:26:03 +01001029 brcmf_dbg(SCAN, "SSID %s len=%d\n",
1030 params_le->ssid_le.SSID,
1031 request->ssids->ssid_len);
Hante Meulemane756af52012-09-11 21:18:52 +02001032 params_le->ssid_le.SSID_len =
1033 cpu_to_le32(request->ssids->ssid_len);
1034 memcpy(&params_le->ssid_le.SSID, request->ssids->ssid,
1035 request->ssids->ssid_len);
1036 }
1037 }
1038 /* Adding mask to channel numbers */
1039 params_le->channel_num =
1040 cpu_to_le32((n_ssids << BRCMF_SCAN_PARAMS_NSSID_SHIFT) |
1041 (n_channels & BRCMF_SCAN_PARAMS_COUNT_MASK));
1042}
1043
1044static s32
Arend van Spriela0f472a2013-04-05 10:57:49 +02001045brcmf_run_escan(struct brcmf_cfg80211_info *cfg, struct brcmf_if *ifp,
Hante Meulemanc4958102015-11-25 11:32:41 +01001046 struct cfg80211_scan_request *request)
Hante Meulemane756af52012-09-11 21:18:52 +02001047{
1048 s32 params_size = BRCMF_SCAN_PARAMS_FIXED_SIZE +
1049 offsetof(struct brcmf_escan_params_le, params_le);
1050 struct brcmf_escan_params_le *params;
1051 s32 err = 0;
1052
Arend van Spriel4e8a0082012-12-05 15:26:03 +01001053 brcmf_dbg(SCAN, "E-SCAN START\n");
Hante Meulemane756af52012-09-11 21:18:52 +02001054
1055 if (request != NULL) {
1056 /* Allocate space for populating ssids in struct */
1057 params_size += sizeof(u32) * ((request->n_channels + 1) / 2);
1058
1059 /* Allocate space for populating ssids in struct */
Hante Meulemane9a6ca82015-11-25 11:32:37 +01001060 params_size += sizeof(struct brcmf_ssid_le) * request->n_ssids;
Hante Meulemane756af52012-09-11 21:18:52 +02001061 }
1062
1063 params = kzalloc(params_size, GFP_KERNEL);
1064 if (!params) {
1065 err = -ENOMEM;
1066 goto exit;
1067 }
1068 BUG_ON(params_size + sizeof("escan") >= BRCMF_DCMD_MEDLEN);
Franky Lin83cf17a2013-04-11 13:28:50 +02001069 brcmf_escan_prep(cfg, &params->params_le, request);
Hante Meulemane756af52012-09-11 21:18:52 +02001070 params->version = cpu_to_le32(BRCMF_ESCAN_REQ_VERSION);
Hante Meulemanc4958102015-11-25 11:32:41 +01001071 params->action = cpu_to_le16(WL_ESCAN_ACTION_START);
Hante Meulemane756af52012-09-11 21:18:52 +02001072 params->sync_id = cpu_to_le16(0x1234);
1073
Arend van Spriela0f472a2013-04-05 10:57:49 +02001074 err = brcmf_fil_iovar_data_set(ifp, "escan", params, params_size);
Hante Meulemane756af52012-09-11 21:18:52 +02001075 if (err) {
1076 if (err == -EBUSY)
Arend van Spriel647c9ae2012-12-05 15:26:01 +01001077 brcmf_dbg(INFO, "system busy : escan canceled\n");
Hante Meulemane756af52012-09-11 21:18:52 +02001078 else
Arend van Spriel57d6e912012-12-05 15:26:00 +01001079 brcmf_err("error (%d)\n", err);
Hante Meulemane756af52012-09-11 21:18:52 +02001080 }
1081
1082 kfree(params);
1083exit:
1084 return err;
1085}
1086
1087static s32
Arend van Spriel27a68fe2012-09-27 14:17:55 +02001088brcmf_do_escan(struct brcmf_cfg80211_info *cfg, struct wiphy *wiphy,
Arend van Spriela0f472a2013-04-05 10:57:49 +02001089 struct brcmf_if *ifp, struct cfg80211_scan_request *request)
Hante Meulemane756af52012-09-11 21:18:52 +02001090{
1091 s32 err;
Hante Meuleman81f5dcb2012-10-22 10:36:14 -07001092 u32 passive_scan;
Hante Meulemane756af52012-09-11 21:18:52 +02001093 struct brcmf_scan_results *results;
Arend van Spriel9f440b72013-02-08 15:53:36 +01001094 struct escan_info *escan = &cfg->escan_info;
Hante Meulemane756af52012-09-11 21:18:52 +02001095
Arend van Spriel4e8a0082012-12-05 15:26:03 +01001096 brcmf_dbg(SCAN, "Enter\n");
Arend van Spriela0f472a2013-04-05 10:57:49 +02001097 escan->ifp = ifp;
Arend van Spriel9f440b72013-02-08 15:53:36 +01001098 escan->wiphy = wiphy;
1099 escan->escan_state = WL_ESCAN_STATE_SCANNING;
Hante Meuleman81f5dcb2012-10-22 10:36:14 -07001100 passive_scan = cfg->active_scan ? 0 : 1;
Arend van Sprielf96aa072013-04-05 10:57:48 +02001101 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_PASSIVE_SCAN,
Hante Meuleman81f5dcb2012-10-22 10:36:14 -07001102 passive_scan);
Hante Meulemane756af52012-09-11 21:18:52 +02001103 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01001104 brcmf_err("error (%d)\n", err);
Hante Meulemane756af52012-09-11 21:18:52 +02001105 return err;
1106 }
Daniel Kim5e787f72014-06-21 12:11:18 +02001107 brcmf_scan_config_mpc(ifp, 0);
Arend van Spriel27a68fe2012-09-27 14:17:55 +02001108 results = (struct brcmf_scan_results *)cfg->escan_info.escan_buf;
Hante Meulemane756af52012-09-11 21:18:52 +02001109 results->version = 0;
1110 results->count = 0;
1111 results->buflen = WL_ESCAN_RESULTS_FIXED_SIZE;
1112
Hante Meulemanc4958102015-11-25 11:32:41 +01001113 err = escan->run(cfg, ifp, request);
Hante Meulemane756af52012-09-11 21:18:52 +02001114 if (err)
Daniel Kim5e787f72014-06-21 12:11:18 +02001115 brcmf_scan_config_mpc(ifp, 1);
Hante Meulemane756af52012-09-11 21:18:52 +02001116 return err;
1117}
1118
1119static s32
Arend van Spriela0f472a2013-04-05 10:57:49 +02001120brcmf_cfg80211_escan(struct wiphy *wiphy, struct brcmf_cfg80211_vif *vif,
Hante Meulemane756af52012-09-11 21:18:52 +02001121 struct cfg80211_scan_request *request,
1122 struct cfg80211_ssid *this_ssid)
1123{
Arend van Spriela0f472a2013-04-05 10:57:49 +02001124 struct brcmf_if *ifp = vif->ifp;
1125 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
Hante Meulemane756af52012-09-11 21:18:52 +02001126 struct cfg80211_ssid *ssids;
Hante Meuleman81f5dcb2012-10-22 10:36:14 -07001127 u32 passive_scan;
Hante Meulemane756af52012-09-11 21:18:52 +02001128 bool escan_req;
1129 bool spec_scan;
1130 s32 err;
Hante Meuleman675f5d82015-12-10 13:43:01 +01001131 struct brcmf_ssid_le ssid_le;
Hante Meulemane756af52012-09-11 21:18:52 +02001132 u32 SSID_len;
1133
Arend van Spriel4e8a0082012-12-05 15:26:03 +01001134 brcmf_dbg(SCAN, "START ESCAN\n");
Hante Meulemane756af52012-09-11 21:18:52 +02001135
Arend van Sprielc1179032012-10-22 13:55:33 -07001136 if (test_bit(BRCMF_SCAN_STATUS_BUSY, &cfg->scan_status)) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01001137 brcmf_err("Scanning already: status (%lu)\n", cfg->scan_status);
Hante Meulemane756af52012-09-11 21:18:52 +02001138 return -EAGAIN;
1139 }
Arend van Sprielc1179032012-10-22 13:55:33 -07001140 if (test_bit(BRCMF_SCAN_STATUS_ABORT, &cfg->scan_status)) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01001141 brcmf_err("Scanning being aborted: status (%lu)\n",
1142 cfg->scan_status);
Hante Meulemane756af52012-09-11 21:18:52 +02001143 return -EAGAIN;
1144 }
Arend van Spriel1687eee2013-04-23 12:53:11 +02001145 if (test_bit(BRCMF_SCAN_STATUS_SUPPRESS, &cfg->scan_status)) {
1146 brcmf_err("Scanning suppressed: status (%lu)\n",
1147 cfg->scan_status);
1148 return -EAGAIN;
1149 }
Arend van Sprielc1179032012-10-22 13:55:33 -07001150 if (test_bit(BRCMF_VIF_STATUS_CONNECTING, &ifp->vif->sme_state)) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01001151 brcmf_err("Connecting: status (%lu)\n", ifp->vif->sme_state);
Hante Meulemane756af52012-09-11 21:18:52 +02001152 return -EAGAIN;
1153 }
1154
Hante Meuleman0f8ffe12013-02-08 15:53:42 +01001155 /* If scan req comes for p2p0, send it over primary I/F */
Arend van Spriela0f472a2013-04-05 10:57:49 +02001156 if (vif == cfg->p2p.bss_idx[P2PAPI_BSSCFG_DEVICE].vif)
1157 vif = cfg->p2p.bss_idx[P2PAPI_BSSCFG_PRIMARY].vif;
Hante Meuleman0f8ffe12013-02-08 15:53:42 +01001158
Hante Meulemane756af52012-09-11 21:18:52 +02001159 escan_req = false;
1160 if (request) {
1161 /* scan bss */
1162 ssids = request->ssids;
1163 escan_req = true;
1164 } else {
1165 /* scan in ibss */
1166 /* we don't do escan in ibss */
1167 ssids = this_ssid;
1168 }
1169
Arend van Spriel27a68fe2012-09-27 14:17:55 +02001170 cfg->scan_request = request;
Arend van Sprielc1179032012-10-22 13:55:33 -07001171 set_bit(BRCMF_SCAN_STATUS_BUSY, &cfg->scan_status);
Hante Meulemane756af52012-09-11 21:18:52 +02001172 if (escan_req) {
Arend van Spriel9f440b72013-02-08 15:53:36 +01001173 cfg->escan_info.run = brcmf_run_escan;
Arend van Spriela0f472a2013-04-05 10:57:49 +02001174 err = brcmf_p2p_scan_prep(wiphy, request, vif);
Arend van Spriel9f440b72013-02-08 15:53:36 +01001175 if (err)
1176 goto scan_out;
1177
Arend van Spriela0f472a2013-04-05 10:57:49 +02001178 err = brcmf_do_escan(cfg, wiphy, vif->ifp, request);
Arend van Spriel2cb941c2012-11-05 16:22:10 -08001179 if (err)
Hante Meulemane756af52012-09-11 21:18:52 +02001180 goto scan_out;
1181 } else {
Arend van Spriel4e8a0082012-12-05 15:26:03 +01001182 brcmf_dbg(SCAN, "ssid \"%s\", ssid_len (%d)\n",
1183 ssids->ssid, ssids->ssid_len);
Hante Meuleman675f5d82015-12-10 13:43:01 +01001184 memset(&ssid_le, 0, sizeof(ssid_le));
1185 SSID_len = min_t(u8, sizeof(ssid_le.SSID), ssids->ssid_len);
1186 ssid_le.SSID_len = cpu_to_le32(0);
Hante Meulemane756af52012-09-11 21:18:52 +02001187 spec_scan = false;
1188 if (SSID_len) {
Hante Meuleman675f5d82015-12-10 13:43:01 +01001189 memcpy(ssid_le.SSID, ssids->ssid, SSID_len);
1190 ssid_le.SSID_len = cpu_to_le32(SSID_len);
Hante Meulemane756af52012-09-11 21:18:52 +02001191 spec_scan = true;
1192 } else
Arend van Spriel4e8a0082012-12-05 15:26:03 +01001193 brcmf_dbg(SCAN, "Broadcast scan\n");
Hante Meulemane756af52012-09-11 21:18:52 +02001194
Hante Meuleman81f5dcb2012-10-22 10:36:14 -07001195 passive_scan = cfg->active_scan ? 0 : 1;
Arend van Sprielc1179032012-10-22 13:55:33 -07001196 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_PASSIVE_SCAN,
Hante Meuleman81f5dcb2012-10-22 10:36:14 -07001197 passive_scan);
Hante Meulemane756af52012-09-11 21:18:52 +02001198 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01001199 brcmf_err("WLC_SET_PASSIVE_SCAN error (%d)\n", err);
Hante Meulemane756af52012-09-11 21:18:52 +02001200 goto scan_out;
1201 }
Daniel Kim5e787f72014-06-21 12:11:18 +02001202 brcmf_scan_config_mpc(ifp, 0);
Hante Meuleman675f5d82015-12-10 13:43:01 +01001203 err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SCAN, &ssid_le,
1204 sizeof(ssid_le));
Hante Meulemane756af52012-09-11 21:18:52 +02001205 if (err) {
1206 if (err == -EBUSY)
Arend van Spriel647c9ae2012-12-05 15:26:01 +01001207 brcmf_dbg(INFO, "BUSY: scan for \"%s\" canceled\n",
Hante Meuleman675f5d82015-12-10 13:43:01 +01001208 ssid_le.SSID);
Hante Meulemane756af52012-09-11 21:18:52 +02001209 else
Arend van Spriel57d6e912012-12-05 15:26:00 +01001210 brcmf_err("WLC_SCAN error (%d)\n", err);
Hante Meulemane756af52012-09-11 21:18:52 +02001211
Daniel Kim5e787f72014-06-21 12:11:18 +02001212 brcmf_scan_config_mpc(ifp, 1);
Hante Meulemane756af52012-09-11 21:18:52 +02001213 goto scan_out;
1214 }
1215 }
1216
Hante Meuleman661fa952015-02-06 18:36:47 +01001217 /* Arm scan timeout timer */
1218 mod_timer(&cfg->escan_timeout, jiffies +
Hante Meulemand5367332016-02-17 11:26:51 +01001219 BRCMF_ESCAN_TIMER_INTERVAL_MS * HZ / 1000);
Hante Meuleman661fa952015-02-06 18:36:47 +01001220
Hante Meulemane756af52012-09-11 21:18:52 +02001221 return 0;
1222
1223scan_out:
Arend van Sprielc1179032012-10-22 13:55:33 -07001224 clear_bit(BRCMF_SCAN_STATUS_BUSY, &cfg->scan_status);
Arend van Spriel27a68fe2012-09-27 14:17:55 +02001225 cfg->scan_request = NULL;
Hante Meulemane756af52012-09-11 21:18:52 +02001226 return err;
1227}
1228
Arend van Spriel5b435de2011-10-05 13:19:03 +02001229static s32
Arend van Spriel0abb5f212012-10-22 13:55:32 -07001230brcmf_cfg80211_scan(struct wiphy *wiphy, struct cfg80211_scan_request *request)
Arend van Spriel5b435de2011-10-05 13:19:03 +02001231{
Arend van Spriela0f472a2013-04-05 10:57:49 +02001232 struct brcmf_cfg80211_vif *vif;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001233 s32 err = 0;
1234
Arend van Sprield96b8012012-12-05 15:26:02 +01001235 brcmf_dbg(TRACE, "Enter\n");
Arend van Spriela0f472a2013-04-05 10:57:49 +02001236 vif = container_of(request->wdev, struct brcmf_cfg80211_vif, wdev);
1237 if (!check_vif_up(vif))
Arend van Spriel5b435de2011-10-05 13:19:03 +02001238 return -EIO;
1239
Arend van Spriela0f472a2013-04-05 10:57:49 +02001240 err = brcmf_cfg80211_escan(wiphy, vif, request, NULL);
Hante Meulemane756af52012-09-11 21:18:52 +02001241
Arend van Spriel5b435de2011-10-05 13:19:03 +02001242 if (err)
Arend van Spriel57d6e912012-12-05 15:26:00 +01001243 brcmf_err("scan error (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001244
Arend van Sprield96b8012012-12-05 15:26:02 +01001245 brcmf_dbg(TRACE, "Exit\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02001246 return err;
1247}
1248
1249static s32 brcmf_set_rts(struct net_device *ndev, u32 rts_threshold)
1250{
1251 s32 err = 0;
1252
Arend van Sprielac24be62012-10-22 10:36:23 -07001253 err = brcmf_fil_iovar_int_set(netdev_priv(ndev), "rtsthresh",
1254 rts_threshold);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001255 if (err)
Arend van Spriel57d6e912012-12-05 15:26:00 +01001256 brcmf_err("Error (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001257
1258 return err;
1259}
1260
1261static s32 brcmf_set_frag(struct net_device *ndev, u32 frag_threshold)
1262{
1263 s32 err = 0;
1264
Arend van Sprielac24be62012-10-22 10:36:23 -07001265 err = brcmf_fil_iovar_int_set(netdev_priv(ndev), "fragthresh",
1266 frag_threshold);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001267 if (err)
Arend van Spriel57d6e912012-12-05 15:26:00 +01001268 brcmf_err("Error (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001269
1270 return err;
1271}
1272
1273static s32 brcmf_set_retry(struct net_device *ndev, u32 retry, bool l)
1274{
1275 s32 err = 0;
Hante Meulemanb87e2c42012-11-14 18:46:23 -08001276 u32 cmd = (l ? BRCMF_C_SET_LRL : BRCMF_C_SET_SRL);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001277
Arend van Sprielac24be62012-10-22 10:36:23 -07001278 err = brcmf_fil_cmd_int_set(netdev_priv(ndev), cmd, retry);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001279 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01001280 brcmf_err("cmd (%d) , error (%d)\n", cmd, err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001281 return err;
1282 }
1283 return err;
1284}
1285
1286static s32 brcmf_cfg80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
1287{
Arend van Spriel27a68fe2012-09-27 14:17:55 +02001288 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
1289 struct net_device *ndev = cfg_to_ndev(cfg);
Arend van Spriel0abb5f212012-10-22 13:55:32 -07001290 struct brcmf_if *ifp = netdev_priv(ndev);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001291 s32 err = 0;
1292
Arend van Sprield96b8012012-12-05 15:26:02 +01001293 brcmf_dbg(TRACE, "Enter\n");
Arend van Sprielce81e312012-10-22 13:55:37 -07001294 if (!check_vif_up(ifp->vif))
Arend van Spriel5b435de2011-10-05 13:19:03 +02001295 return -EIO;
1296
1297 if (changed & WIPHY_PARAM_RTS_THRESHOLD &&
Arend van Spriel27a68fe2012-09-27 14:17:55 +02001298 (cfg->conf->rts_threshold != wiphy->rts_threshold)) {
1299 cfg->conf->rts_threshold = wiphy->rts_threshold;
1300 err = brcmf_set_rts(ndev, cfg->conf->rts_threshold);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001301 if (!err)
1302 goto done;
1303 }
1304 if (changed & WIPHY_PARAM_FRAG_THRESHOLD &&
Arend van Spriel27a68fe2012-09-27 14:17:55 +02001305 (cfg->conf->frag_threshold != wiphy->frag_threshold)) {
1306 cfg->conf->frag_threshold = wiphy->frag_threshold;
1307 err = brcmf_set_frag(ndev, cfg->conf->frag_threshold);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001308 if (!err)
1309 goto done;
1310 }
1311 if (changed & WIPHY_PARAM_RETRY_LONG
Arend van Spriel27a68fe2012-09-27 14:17:55 +02001312 && (cfg->conf->retry_long != wiphy->retry_long)) {
1313 cfg->conf->retry_long = wiphy->retry_long;
1314 err = brcmf_set_retry(ndev, cfg->conf->retry_long, true);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001315 if (!err)
1316 goto done;
1317 }
1318 if (changed & WIPHY_PARAM_RETRY_SHORT
Arend van Spriel27a68fe2012-09-27 14:17:55 +02001319 && (cfg->conf->retry_short != wiphy->retry_short)) {
1320 cfg->conf->retry_short = wiphy->retry_short;
1321 err = brcmf_set_retry(ndev, cfg->conf->retry_short, false);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001322 if (!err)
1323 goto done;
1324 }
1325
1326done:
Arend van Sprield96b8012012-12-05 15:26:02 +01001327 brcmf_dbg(TRACE, "Exit\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02001328 return err;
1329}
1330
Arend van Spriel5b435de2011-10-05 13:19:03 +02001331static void brcmf_init_prof(struct brcmf_cfg80211_profile *prof)
1332{
1333 memset(prof, 0, sizeof(*prof));
1334}
1335
Arend van Spriel9b7a0dd2015-01-25 20:31:33 +01001336static u16 brcmf_map_fw_linkdown_reason(const struct brcmf_event_msg *e)
1337{
1338 u16 reason;
1339
1340 switch (e->event_code) {
1341 case BRCMF_E_DEAUTH:
1342 case BRCMF_E_DEAUTH_IND:
1343 case BRCMF_E_DISASSOC_IND:
1344 reason = e->reason;
1345 break;
1346 case BRCMF_E_LINK:
1347 default:
1348 reason = 0;
1349 break;
1350 }
1351 return reason;
1352}
1353
1354static void brcmf_link_down(struct brcmf_cfg80211_vif *vif, u16 reason)
Arend van Spriel5b435de2011-10-05 13:19:03 +02001355{
Piotr Haber61730d42013-04-23 12:53:12 +02001356 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(vif->wdev.wiphy);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001357 s32 err = 0;
1358
Arend van Sprield96b8012012-12-05 15:26:02 +01001359 brcmf_dbg(TRACE, "Enter\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02001360
Hante Meulemanb0a79082015-12-10 13:43:07 +01001361 if (test_and_clear_bit(BRCMF_VIF_STATUS_CONNECTED, &vif->sme_state)) {
Arend van Spriel647c9ae2012-12-05 15:26:01 +01001362 brcmf_dbg(INFO, "Call WLC_DISASSOC to stop excess roaming\n ");
Arend van Spriel903e0ee2012-11-28 21:44:11 +01001363 err = brcmf_fil_cmd_data_set(vif->ifp,
Arend van Sprielac24be62012-10-22 10:36:23 -07001364 BRCMF_C_DISASSOC, NULL, 0);
Arend van Spriela538ae32013-07-25 23:01:34 +02001365 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01001366 brcmf_err("WLC_DISASSOC failed (%d)\n", err);
Arend van Spriela538ae32013-07-25 23:01:34 +02001367 }
Hante Meulemanb0a79082015-12-10 13:43:07 +01001368 if ((vif->wdev.iftype == NL80211_IFTYPE_STATION) ||
1369 (vif->wdev.iftype == NL80211_IFTYPE_P2P_CLIENT))
1370 cfg80211_disconnected(vif->wdev.netdev, reason, NULL, 0,
1371 true, GFP_KERNEL);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001372 }
Arend van Spriel903e0ee2012-11-28 21:44:11 +01001373 clear_bit(BRCMF_VIF_STATUS_CONNECTING, &vif->sme_state);
Piotr Haber61730d42013-04-23 12:53:12 +02001374 clear_bit(BRCMF_SCAN_STATUS_SUPPRESS, &cfg->scan_status);
1375 brcmf_btcoex_set_mode(vif, BRCMF_BTCOEX_ENABLED, 0);
Arend van Sprield96b8012012-12-05 15:26:02 +01001376 brcmf_dbg(TRACE, "Exit\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02001377}
1378
1379static s32
1380brcmf_cfg80211_join_ibss(struct wiphy *wiphy, struct net_device *ndev,
1381 struct cfg80211_ibss_params *params)
1382{
Arend van Spriel27a68fe2012-09-27 14:17:55 +02001383 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
Arend van Spriel0abb5f212012-10-22 13:55:32 -07001384 struct brcmf_if *ifp = netdev_priv(ndev);
1385 struct brcmf_cfg80211_profile *profile = &ifp->vif->profile;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001386 struct brcmf_join_params join_params;
1387 size_t join_params_size = 0;
1388 s32 err = 0;
1389 s32 wsec = 0;
1390 s32 bcnprd;
Hante Meuleman17012612013-02-06 18:40:44 +01001391 u16 chanspec;
Hante Meulemane9a6ca82015-11-25 11:32:37 +01001392 u32 ssid_len;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001393
Arend van Sprield96b8012012-12-05 15:26:02 +01001394 brcmf_dbg(TRACE, "Enter\n");
Arend van Sprielce81e312012-10-22 13:55:37 -07001395 if (!check_vif_up(ifp->vif))
Arend van Spriel5b435de2011-10-05 13:19:03 +02001396 return -EIO;
1397
1398 if (params->ssid)
Arend van Spriel16886732012-12-05 15:26:04 +01001399 brcmf_dbg(CONN, "SSID: %s\n", params->ssid);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001400 else {
Arend van Spriel16886732012-12-05 15:26:04 +01001401 brcmf_dbg(CONN, "SSID: NULL, Not supported\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02001402 return -EOPNOTSUPP;
1403 }
1404
Arend van Sprielc1179032012-10-22 13:55:33 -07001405 set_bit(BRCMF_VIF_STATUS_CONNECTING, &ifp->vif->sme_state);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001406
1407 if (params->bssid)
Arend van Spriel16886732012-12-05 15:26:04 +01001408 brcmf_dbg(CONN, "BSSID: %pM\n", params->bssid);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001409 else
Arend van Spriel16886732012-12-05 15:26:04 +01001410 brcmf_dbg(CONN, "No BSSID specified\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02001411
Johannes Berg683b6d32012-11-08 21:25:48 +01001412 if (params->chandef.chan)
Arend van Spriel16886732012-12-05 15:26:04 +01001413 brcmf_dbg(CONN, "channel: %d\n",
1414 params->chandef.chan->center_freq);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001415 else
Arend van Spriel16886732012-12-05 15:26:04 +01001416 brcmf_dbg(CONN, "no channel specified\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02001417
1418 if (params->channel_fixed)
Arend van Spriel16886732012-12-05 15:26:04 +01001419 brcmf_dbg(CONN, "fixed channel required\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02001420 else
Arend van Spriel16886732012-12-05 15:26:04 +01001421 brcmf_dbg(CONN, "no fixed channel required\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02001422
1423 if (params->ie && params->ie_len)
Arend van Spriel16886732012-12-05 15:26:04 +01001424 brcmf_dbg(CONN, "ie len: %d\n", params->ie_len);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001425 else
Arend van Spriel16886732012-12-05 15:26:04 +01001426 brcmf_dbg(CONN, "no ie specified\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02001427
1428 if (params->beacon_interval)
Arend van Spriel16886732012-12-05 15:26:04 +01001429 brcmf_dbg(CONN, "beacon interval: %d\n",
1430 params->beacon_interval);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001431 else
Arend van Spriel16886732012-12-05 15:26:04 +01001432 brcmf_dbg(CONN, "no beacon interval specified\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02001433
1434 if (params->basic_rates)
Arend van Spriel16886732012-12-05 15:26:04 +01001435 brcmf_dbg(CONN, "basic rates: %08X\n", params->basic_rates);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001436 else
Arend van Spriel16886732012-12-05 15:26:04 +01001437 brcmf_dbg(CONN, "no basic rates specified\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02001438
1439 if (params->privacy)
Arend van Spriel16886732012-12-05 15:26:04 +01001440 brcmf_dbg(CONN, "privacy required\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02001441 else
Arend van Spriel16886732012-12-05 15:26:04 +01001442 brcmf_dbg(CONN, "no privacy required\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02001443
1444 /* Configure Privacy for starter */
1445 if (params->privacy)
1446 wsec |= WEP_ENABLED;
1447
Arend van Sprielc1179032012-10-22 13:55:33 -07001448 err = brcmf_fil_iovar_int_set(ifp, "wsec", wsec);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001449 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01001450 brcmf_err("wsec failed (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001451 goto done;
1452 }
1453
1454 /* Configure Beacon Interval for starter */
1455 if (params->beacon_interval)
1456 bcnprd = params->beacon_interval;
1457 else
1458 bcnprd = 100;
1459
Hante Meulemanb87e2c42012-11-14 18:46:23 -08001460 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_BCNPRD, bcnprd);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001461 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01001462 brcmf_err("WLC_SET_BCNPRD failed (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001463 goto done;
1464 }
1465
1466 /* Configure required join parameter */
1467 memset(&join_params, 0, sizeof(struct brcmf_join_params));
1468
1469 /* SSID */
Hante Meulemane9a6ca82015-11-25 11:32:37 +01001470 ssid_len = min_t(u32, params->ssid_len, IEEE80211_MAX_SSID_LEN);
1471 memcpy(join_params.ssid_le.SSID, params->ssid, ssid_len);
1472 join_params.ssid_le.SSID_len = cpu_to_le32(ssid_len);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001473 join_params_size = sizeof(join_params.ssid_le);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001474
1475 /* BSSID */
1476 if (params->bssid) {
1477 memcpy(join_params.params_le.bssid, params->bssid, ETH_ALEN);
Hante Meulemane9a6ca82015-11-25 11:32:37 +01001478 join_params_size += BRCMF_ASSOC_PARAMS_FIXED_SIZE;
Arend van Spriel6c8c4f72012-09-27 14:17:57 +02001479 memcpy(profile->bssid, params->bssid, ETH_ALEN);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001480 } else {
Joe Perches93803b32015-03-02 19:54:49 -08001481 eth_broadcast_addr(join_params.params_le.bssid);
1482 eth_zero_addr(profile->bssid);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001483 }
1484
Arend van Spriel5b435de2011-10-05 13:19:03 +02001485 /* Channel */
Johannes Berg683b6d32012-11-08 21:25:48 +01001486 if (params->chandef.chan) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02001487 u32 target_channel;
1488
Arend van Spriel27a68fe2012-09-27 14:17:55 +02001489 cfg->channel =
Arend van Spriel5b435de2011-10-05 13:19:03 +02001490 ieee80211_frequency_to_channel(
Johannes Berg683b6d32012-11-08 21:25:48 +01001491 params->chandef.chan->center_freq);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001492 if (params->channel_fixed) {
1493 /* adding chanspec */
Arend van Spriel600a8972014-05-12 10:47:39 +02001494 chanspec = chandef_to_chanspec(&cfg->d11inf,
1495 &params->chandef);
Hante Meuleman17012612013-02-06 18:40:44 +01001496 join_params.params_le.chanspec_list[0] =
1497 cpu_to_le16(chanspec);
1498 join_params.params_le.chanspec_num = cpu_to_le32(1);
1499 join_params_size += sizeof(join_params.params_le);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001500 }
1501
1502 /* set channel for starter */
Arend van Spriel27a68fe2012-09-27 14:17:55 +02001503 target_channel = cfg->channel;
Hante Meulemanb87e2c42012-11-14 18:46:23 -08001504 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_CHANNEL,
Hante Meuleman81f5dcb2012-10-22 10:36:14 -07001505 target_channel);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001506 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01001507 brcmf_err("WLC_SET_CHANNEL failed (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001508 goto done;
1509 }
1510 } else
Arend van Spriel27a68fe2012-09-27 14:17:55 +02001511 cfg->channel = 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001512
Arend van Spriel27a68fe2012-09-27 14:17:55 +02001513 cfg->ibss_starter = false;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001514
1515
Arend van Sprielc1179032012-10-22 13:55:33 -07001516 err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_SSID,
Hante Meuleman81f5dcb2012-10-22 10:36:14 -07001517 &join_params, join_params_size);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001518 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01001519 brcmf_err("WLC_SET_SSID failed (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001520 goto done;
1521 }
1522
1523done:
1524 if (err)
Arend van Sprielc1179032012-10-22 13:55:33 -07001525 clear_bit(BRCMF_VIF_STATUS_CONNECTING, &ifp->vif->sme_state);
Arend van Sprield96b8012012-12-05 15:26:02 +01001526 brcmf_dbg(TRACE, "Exit\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02001527 return err;
1528}
1529
1530static s32
1531brcmf_cfg80211_leave_ibss(struct wiphy *wiphy, struct net_device *ndev)
1532{
Arend van Spriel0abb5f212012-10-22 13:55:32 -07001533 struct brcmf_if *ifp = netdev_priv(ndev);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001534
Arend van Sprield96b8012012-12-05 15:26:02 +01001535 brcmf_dbg(TRACE, "Enter\n");
Hante Meuleman6a98d642016-01-02 09:41:40 +01001536 if (!check_vif_up(ifp->vif)) {
1537 /* When driver is being unloaded, it can end up here. If an
1538 * error is returned then later on a debug trace in the wireless
1539 * core module will be printed. To avoid this 0 is returned.
1540 */
1541 return 0;
1542 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02001543
Arend van Spriel9b7a0dd2015-01-25 20:31:33 +01001544 brcmf_link_down(ifp->vif, WLAN_REASON_DEAUTH_LEAVING);
Hante Meuleman42e0ed02016-01-05 11:05:50 +01001545 brcmf_net_setcarrier(ifp, false);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001546
Arend van Sprield96b8012012-12-05 15:26:02 +01001547 brcmf_dbg(TRACE, "Exit\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02001548
Peter Senna Tschudin12f32372014-05-31 10:14:06 -03001549 return 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001550}
1551
1552static s32 brcmf_set_wpa_version(struct net_device *ndev,
1553 struct cfg80211_connect_params *sme)
1554{
Arend van Spriel6ac4f4e2012-10-22 13:55:31 -07001555 struct brcmf_cfg80211_profile *profile = ndev_to_prof(ndev);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001556 struct brcmf_cfg80211_security *sec;
1557 s32 val = 0;
1558 s32 err = 0;
1559
1560 if (sme->crypto.wpa_versions & NL80211_WPA_VERSION_1)
1561 val = WPA_AUTH_PSK | WPA_AUTH_UNSPECIFIED;
1562 else if (sme->crypto.wpa_versions & NL80211_WPA_VERSION_2)
1563 val = WPA2_AUTH_PSK | WPA2_AUTH_UNSPECIFIED;
1564 else
1565 val = WPA_AUTH_DISABLED;
Arend van Spriel16886732012-12-05 15:26:04 +01001566 brcmf_dbg(CONN, "setting wpa_auth to 0x%0x\n", val);
Hante Meuleman89286dc2013-02-08 15:53:46 +01001567 err = brcmf_fil_bsscfg_int_set(netdev_priv(ndev), "wpa_auth", val);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001568 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01001569 brcmf_err("set wpa_auth failed (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001570 return err;
1571 }
Arend van Spriel06bb1232012-09-27 14:17:56 +02001572 sec = &profile->sec;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001573 sec->wpa_versions = sme->crypto.wpa_versions;
1574 return err;
1575}
1576
1577static s32 brcmf_set_auth_type(struct net_device *ndev,
1578 struct cfg80211_connect_params *sme)
1579{
Arend van Spriel6ac4f4e2012-10-22 13:55:31 -07001580 struct brcmf_cfg80211_profile *profile = ndev_to_prof(ndev);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001581 struct brcmf_cfg80211_security *sec;
1582 s32 val = 0;
1583 s32 err = 0;
1584
1585 switch (sme->auth_type) {
1586 case NL80211_AUTHTYPE_OPEN_SYSTEM:
1587 val = 0;
Arend van Spriel16886732012-12-05 15:26:04 +01001588 brcmf_dbg(CONN, "open system\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02001589 break;
1590 case NL80211_AUTHTYPE_SHARED_KEY:
1591 val = 1;
Arend van Spriel16886732012-12-05 15:26:04 +01001592 brcmf_dbg(CONN, "shared key\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02001593 break;
1594 case NL80211_AUTHTYPE_AUTOMATIC:
1595 val = 2;
Arend van Spriel16886732012-12-05 15:26:04 +01001596 brcmf_dbg(CONN, "automatic\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02001597 break;
1598 case NL80211_AUTHTYPE_NETWORK_EAP:
Arend van Spriel16886732012-12-05 15:26:04 +01001599 brcmf_dbg(CONN, "network eap\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02001600 default:
1601 val = 2;
Arend van Spriel57d6e912012-12-05 15:26:00 +01001602 brcmf_err("invalid auth type (%d)\n", sme->auth_type);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001603 break;
1604 }
1605
Hante Meuleman89286dc2013-02-08 15:53:46 +01001606 err = brcmf_fil_bsscfg_int_set(netdev_priv(ndev), "auth", val);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001607 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01001608 brcmf_err("set auth failed (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001609 return err;
1610 }
Arend van Spriel06bb1232012-09-27 14:17:56 +02001611 sec = &profile->sec;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001612 sec->auth_type = sme->auth_type;
1613 return err;
1614}
1615
1616static s32
Daniel Kim87b7e9e2014-03-25 21:45:09 +01001617brcmf_set_wsec_mode(struct net_device *ndev,
Hante Meuleman240d61a2016-02-17 11:27:10 +01001618 struct cfg80211_connect_params *sme)
Arend van Spriel5b435de2011-10-05 13:19:03 +02001619{
Arend van Spriel6ac4f4e2012-10-22 13:55:31 -07001620 struct brcmf_cfg80211_profile *profile = ndev_to_prof(ndev);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001621 struct brcmf_cfg80211_security *sec;
1622 s32 pval = 0;
1623 s32 gval = 0;
Daniel Kim87b7e9e2014-03-25 21:45:09 +01001624 s32 wsec;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001625 s32 err = 0;
1626
1627 if (sme->crypto.n_ciphers_pairwise) {
1628 switch (sme->crypto.ciphers_pairwise[0]) {
1629 case WLAN_CIPHER_SUITE_WEP40:
1630 case WLAN_CIPHER_SUITE_WEP104:
1631 pval = WEP_ENABLED;
1632 break;
1633 case WLAN_CIPHER_SUITE_TKIP:
1634 pval = TKIP_ENABLED;
1635 break;
1636 case WLAN_CIPHER_SUITE_CCMP:
1637 pval = AES_ENABLED;
1638 break;
1639 case WLAN_CIPHER_SUITE_AES_CMAC:
1640 pval = AES_ENABLED;
1641 break;
1642 default:
Arend van Spriel57d6e912012-12-05 15:26:00 +01001643 brcmf_err("invalid cipher pairwise (%d)\n",
1644 sme->crypto.ciphers_pairwise[0]);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001645 return -EINVAL;
1646 }
1647 }
1648 if (sme->crypto.cipher_group) {
1649 switch (sme->crypto.cipher_group) {
1650 case WLAN_CIPHER_SUITE_WEP40:
1651 case WLAN_CIPHER_SUITE_WEP104:
1652 gval = WEP_ENABLED;
1653 break;
1654 case WLAN_CIPHER_SUITE_TKIP:
1655 gval = TKIP_ENABLED;
1656 break;
1657 case WLAN_CIPHER_SUITE_CCMP:
1658 gval = AES_ENABLED;
1659 break;
1660 case WLAN_CIPHER_SUITE_AES_CMAC:
1661 gval = AES_ENABLED;
1662 break;
1663 default:
Arend van Spriel57d6e912012-12-05 15:26:00 +01001664 brcmf_err("invalid cipher group (%d)\n",
1665 sme->crypto.cipher_group);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001666 return -EINVAL;
1667 }
1668 }
1669
Arend van Spriel16886732012-12-05 15:26:04 +01001670 brcmf_dbg(CONN, "pval (%d) gval (%d)\n", pval, gval);
Hante Meuleman89286dc2013-02-08 15:53:46 +01001671 /* In case of privacy, but no security and WPS then simulate */
1672 /* setting AES. WPS-2.0 allows no security */
1673 if (brcmf_find_wpsie(sme->ie, sme->ie_len) && !pval && !gval &&
1674 sme->privacy)
1675 pval = AES_ENABLED;
Daniel Kim87b7e9e2014-03-25 21:45:09 +01001676
Hante Meuleman240d61a2016-02-17 11:27:10 +01001677 wsec = pval | gval;
Daniel Kim87b7e9e2014-03-25 21:45:09 +01001678 err = brcmf_fil_bsscfg_int_set(netdev_priv(ndev), "wsec", wsec);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001679 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01001680 brcmf_err("error (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001681 return err;
1682 }
1683
Arend van Spriel06bb1232012-09-27 14:17:56 +02001684 sec = &profile->sec;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001685 sec->cipher_pairwise = sme->crypto.ciphers_pairwise[0];
1686 sec->cipher_group = sme->crypto.cipher_group;
1687
1688 return err;
1689}
1690
1691static s32
1692brcmf_set_key_mgmt(struct net_device *ndev, struct cfg80211_connect_params *sme)
1693{
Hante Meuleman240d61a2016-02-17 11:27:10 +01001694 struct brcmf_if *ifp = netdev_priv(ndev);
1695 s32 val;
1696 s32 err;
1697 const struct brcmf_tlv *rsn_ie;
1698 const u8 *ie;
1699 u32 ie_len;
1700 u32 offset;
1701 u16 rsn_cap;
1702 u32 mfp;
1703 u16 count;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001704
Hante Meuleman240d61a2016-02-17 11:27:10 +01001705 if (!sme->crypto.n_akm_suites)
1706 return 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001707
Hante Meuleman240d61a2016-02-17 11:27:10 +01001708 err = brcmf_fil_bsscfg_int_get(netdev_priv(ndev), "wpa_auth", &val);
1709 if (err) {
1710 brcmf_err("could not get wpa_auth (%d)\n", err);
1711 return err;
1712 }
1713 if (val & (WPA_AUTH_PSK | WPA_AUTH_UNSPECIFIED)) {
1714 switch (sme->crypto.akm_suites[0]) {
1715 case WLAN_AKM_SUITE_8021X:
1716 val = WPA_AUTH_UNSPECIFIED;
1717 break;
1718 case WLAN_AKM_SUITE_PSK:
1719 val = WPA_AUTH_PSK;
1720 break;
1721 default:
1722 brcmf_err("invalid cipher group (%d)\n",
1723 sme->crypto.cipher_group);
1724 return -EINVAL;
1725 }
1726 } else if (val & (WPA2_AUTH_PSK | WPA2_AUTH_UNSPECIFIED)) {
1727 switch (sme->crypto.akm_suites[0]) {
1728 case WLAN_AKM_SUITE_8021X:
1729 val = WPA2_AUTH_UNSPECIFIED;
1730 break;
1731 case WLAN_AKM_SUITE_8021X_SHA256:
1732 val = WPA2_AUTH_1X_SHA256;
1733 break;
1734 case WLAN_AKM_SUITE_PSK_SHA256:
1735 val = WPA2_AUTH_PSK_SHA256;
1736 break;
1737 case WLAN_AKM_SUITE_PSK:
1738 val = WPA2_AUTH_PSK;
1739 break;
1740 default:
1741 brcmf_err("invalid cipher group (%d)\n",
1742 sme->crypto.cipher_group);
1743 return -EINVAL;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001744 }
1745 }
Hante Meuleman240d61a2016-02-17 11:27:10 +01001746
1747 if (!brcmf_feat_is_enabled(ifp, BRCMF_FEAT_MFP))
1748 goto skip_mfp_config;
1749 /* The MFP mode (1 or 2) needs to be determined, parse IEs. The
1750 * IE will not be verified, just a quick search for MFP config
1751 */
1752 rsn_ie = brcmf_parse_tlvs((const u8 *)sme->ie, sme->ie_len,
1753 WLAN_EID_RSN);
1754 if (!rsn_ie)
1755 goto skip_mfp_config;
1756 ie = (const u8 *)rsn_ie;
1757 ie_len = rsn_ie->len + TLV_HDR_LEN;
1758 /* Skip unicast suite */
1759 offset = TLV_HDR_LEN + WPA_IE_VERSION_LEN + WPA_IE_MIN_OUI_LEN;
1760 if (offset + WPA_IE_SUITE_COUNT_LEN >= ie_len)
1761 goto skip_mfp_config;
1762 /* Skip multicast suite */
1763 count = ie[offset] + (ie[offset + 1] << 8);
1764 offset += WPA_IE_SUITE_COUNT_LEN + (count * WPA_IE_MIN_OUI_LEN);
1765 if (offset + WPA_IE_SUITE_COUNT_LEN >= ie_len)
1766 goto skip_mfp_config;
1767 /* Skip auth key management suite(s) */
1768 count = ie[offset] + (ie[offset + 1] << 8);
1769 offset += WPA_IE_SUITE_COUNT_LEN + (count * WPA_IE_MIN_OUI_LEN);
1770 if (offset + WPA_IE_SUITE_COUNT_LEN > ie_len)
1771 goto skip_mfp_config;
1772 /* Ready to read capabilities */
1773 mfp = BRCMF_MFP_NONE;
1774 rsn_cap = ie[offset] + (ie[offset + 1] << 8);
1775 if (rsn_cap & RSN_CAP_MFPR_MASK)
1776 mfp = BRCMF_MFP_REQUIRED;
1777 else if (rsn_cap & RSN_CAP_MFPC_MASK)
1778 mfp = BRCMF_MFP_CAPABLE;
1779 brcmf_fil_bsscfg_int_set(netdev_priv(ndev), "mfp", mfp);
1780
1781skip_mfp_config:
1782 brcmf_dbg(CONN, "setting wpa_auth to %d\n", val);
1783 err = brcmf_fil_bsscfg_int_set(netdev_priv(ndev), "wpa_auth", val);
1784 if (err) {
1785 brcmf_err("could not set wpa_auth (%d)\n", err);
1786 return err;
1787 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02001788
1789 return err;
1790}
1791
1792static s32
Hante Meulemanf09d0c02012-09-27 14:17:48 +02001793brcmf_set_sharedkey(struct net_device *ndev,
1794 struct cfg80211_connect_params *sme)
Arend van Spriel5b435de2011-10-05 13:19:03 +02001795{
Arend van Spriel6ac4f4e2012-10-22 13:55:31 -07001796 struct brcmf_cfg80211_profile *profile = ndev_to_prof(ndev);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001797 struct brcmf_cfg80211_security *sec;
1798 struct brcmf_wsec_key key;
1799 s32 val;
1800 s32 err = 0;
1801
Arend van Spriel16886732012-12-05 15:26:04 +01001802 brcmf_dbg(CONN, "key len (%d)\n", sme->key_len);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001803
Roland Vossena718e2f2011-10-12 20:51:24 +02001804 if (sme->key_len == 0)
1805 return 0;
1806
Arend van Spriel06bb1232012-09-27 14:17:56 +02001807 sec = &profile->sec;
Arend van Spriel16886732012-12-05 15:26:04 +01001808 brcmf_dbg(CONN, "wpa_versions 0x%x cipher_pairwise 0x%x\n",
1809 sec->wpa_versions, sec->cipher_pairwise);
Roland Vossena718e2f2011-10-12 20:51:24 +02001810
1811 if (sec->wpa_versions & (NL80211_WPA_VERSION_1 | NL80211_WPA_VERSION_2))
1812 return 0;
1813
Hante Meulemanf09d0c02012-09-27 14:17:48 +02001814 if (!(sec->cipher_pairwise &
1815 (WLAN_CIPHER_SUITE_WEP40 | WLAN_CIPHER_SUITE_WEP104)))
1816 return 0;
Roland Vossena718e2f2011-10-12 20:51:24 +02001817
Hante Meulemanf09d0c02012-09-27 14:17:48 +02001818 memset(&key, 0, sizeof(key));
1819 key.len = (u32) sme->key_len;
1820 key.index = (u32) sme->key_idx;
1821 if (key.len > sizeof(key.data)) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01001822 brcmf_err("Too long key length (%u)\n", key.len);
Hante Meulemanf09d0c02012-09-27 14:17:48 +02001823 return -EINVAL;
1824 }
1825 memcpy(key.data, sme->key, key.len);
1826 key.flags = BRCMF_PRIMARY_KEY;
1827 switch (sec->cipher_pairwise) {
1828 case WLAN_CIPHER_SUITE_WEP40:
1829 key.algo = CRYPTO_ALGO_WEP1;
1830 break;
1831 case WLAN_CIPHER_SUITE_WEP104:
1832 key.algo = CRYPTO_ALGO_WEP128;
1833 break;
1834 default:
Arend van Spriel57d6e912012-12-05 15:26:00 +01001835 brcmf_err("Invalid algorithm (%d)\n",
1836 sme->crypto.ciphers_pairwise[0]);
Hante Meulemanf09d0c02012-09-27 14:17:48 +02001837 return -EINVAL;
1838 }
1839 /* Set the new key/index */
Arend van Spriel16886732012-12-05 15:26:04 +01001840 brcmf_dbg(CONN, "key length (%d) key index (%d) algo (%d)\n",
1841 key.len, key.index, key.algo);
1842 brcmf_dbg(CONN, "key \"%s\"\n", key.data);
Hante Meuleman118eb302014-12-21 12:43:49 +01001843 err = send_key_to_dongle(netdev_priv(ndev), &key);
Hante Meulemanf09d0c02012-09-27 14:17:48 +02001844 if (err)
1845 return err;
1846
1847 if (sec->auth_type == NL80211_AUTHTYPE_SHARED_KEY) {
Arend van Spriel16886732012-12-05 15:26:04 +01001848 brcmf_dbg(CONN, "set auth_type to shared key\n");
Hante Meulemanf09d0c02012-09-27 14:17:48 +02001849 val = WL_AUTH_SHARED_KEY; /* shared key */
Arend van Sprielac24be62012-10-22 10:36:23 -07001850 err = brcmf_fil_bsscfg_int_set(netdev_priv(ndev), "auth", val);
Hante Meulemanf09d0c02012-09-27 14:17:48 +02001851 if (err)
Arend van Spriel57d6e912012-12-05 15:26:00 +01001852 brcmf_err("set auth failed (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001853 }
1854 return err;
1855}
1856
Arend van Sprielcbb1ec92013-02-06 18:40:47 +01001857static
1858enum nl80211_auth_type brcmf_war_auth_type(struct brcmf_if *ifp,
1859 enum nl80211_auth_type type)
1860{
Arend van Sprielc08437b2014-07-12 08:49:39 +02001861 if (type == NL80211_AUTHTYPE_AUTOMATIC &&
1862 brcmf_feat_is_quirk_enabled(ifp, BRCMF_FEAT_QUIRK_AUTO_AUTH)) {
1863 brcmf_dbg(CONN, "WAR: use OPEN instead of AUTO\n");
1864 type = NL80211_AUTHTYPE_OPEN_SYSTEM;
Arend van Sprielcbb1ec92013-02-06 18:40:47 +01001865 }
1866 return type;
1867}
1868
Arend van Spriel7705ba62016-04-17 16:44:58 +02001869static void brcmf_set_join_pref(struct brcmf_if *ifp,
1870 struct cfg80211_bss_selection *bss_select)
1871{
1872 struct brcmf_join_pref_params join_pref_params[2];
1873 enum nl80211_band band;
1874 int err, i = 0;
1875
1876 join_pref_params[i].len = 2;
1877 join_pref_params[i].rssi_gain = 0;
1878
1879 if (bss_select->behaviour != NL80211_BSS_SELECT_ATTR_BAND_PREF)
1880 brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_ASSOC_PREFER, WLC_BAND_AUTO);
1881
1882 switch (bss_select->behaviour) {
1883 case __NL80211_BSS_SELECT_ATTR_INVALID:
1884 brcmf_c_set_joinpref_default(ifp);
1885 return;
1886 case NL80211_BSS_SELECT_ATTR_BAND_PREF:
1887 join_pref_params[i].type = BRCMF_JOIN_PREF_BAND;
1888 band = bss_select->param.band_pref;
1889 join_pref_params[i].band = nl80211_band_to_fwil(band);
1890 i++;
1891 break;
1892 case NL80211_BSS_SELECT_ATTR_RSSI_ADJUST:
1893 join_pref_params[i].type = BRCMF_JOIN_PREF_RSSI_DELTA;
1894 band = bss_select->param.adjust.band;
1895 join_pref_params[i].band = nl80211_band_to_fwil(band);
1896 join_pref_params[i].rssi_gain = bss_select->param.adjust.delta;
1897 i++;
1898 break;
1899 case NL80211_BSS_SELECT_ATTR_RSSI:
1900 default:
1901 break;
1902 }
1903 join_pref_params[i].type = BRCMF_JOIN_PREF_RSSI;
1904 join_pref_params[i].len = 2;
1905 join_pref_params[i].rssi_gain = 0;
1906 join_pref_params[i].band = 0;
1907 err = brcmf_fil_iovar_data_set(ifp, "join_pref", join_pref_params,
1908 sizeof(join_pref_params));
1909 if (err)
1910 brcmf_err("Set join_pref error (%d)\n", err);
1911}
1912
Arend van Spriel5b435de2011-10-05 13:19:03 +02001913static s32
1914brcmf_cfg80211_connect(struct wiphy *wiphy, struct net_device *ndev,
Arend van Sprielcbb1ec92013-02-06 18:40:47 +01001915 struct cfg80211_connect_params *sme)
Arend van Spriel5b435de2011-10-05 13:19:03 +02001916{
Arend van Spriel27a68fe2012-09-27 14:17:55 +02001917 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
Arend van Spriel0abb5f212012-10-22 13:55:32 -07001918 struct brcmf_if *ifp = netdev_priv(ndev);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001919 struct ieee80211_channel *chan = sme->channel;
1920 struct brcmf_join_params join_params;
1921 size_t join_params_size;
Johannes Berg4b5800f2014-01-15 14:55:59 +01001922 const struct brcmf_tlv *rsn_ie;
1923 const struct brcmf_vs_tlv *wpa_ie;
1924 const void *ie;
Hante Meuleman89286dc2013-02-08 15:53:46 +01001925 u32 ie_len;
1926 struct brcmf_ext_join_params_le *ext_join_params;
Hante Meuleman17012612013-02-06 18:40:44 +01001927 u16 chanspec;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001928 s32 err = 0;
Hante Meulemane9a6ca82015-11-25 11:32:37 +01001929 u32 ssid_len;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001930
Arend van Sprield96b8012012-12-05 15:26:02 +01001931 brcmf_dbg(TRACE, "Enter\n");
Arend van Sprielce81e312012-10-22 13:55:37 -07001932 if (!check_vif_up(ifp->vif))
Arend van Spriel5b435de2011-10-05 13:19:03 +02001933 return -EIO;
1934
1935 if (!sme->ssid) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01001936 brcmf_err("Invalid ssid\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02001937 return -EOPNOTSUPP;
1938 }
1939
Hante Meuleman89286dc2013-02-08 15:53:46 +01001940 if (ifp->vif == cfg->p2p.bss_idx[P2PAPI_BSSCFG_PRIMARY].vif) {
1941 /* A normal (non P2P) connection request setup. */
1942 ie = NULL;
1943 ie_len = 0;
1944 /* find the WPA_IE */
1945 wpa_ie = brcmf_find_wpaie((u8 *)sme->ie, sme->ie_len);
1946 if (wpa_ie) {
1947 ie = wpa_ie;
1948 ie_len = wpa_ie->len + TLV_HDR_LEN;
1949 } else {
1950 /* find the RSN_IE */
Johannes Berg4b5800f2014-01-15 14:55:59 +01001951 rsn_ie = brcmf_parse_tlvs((const u8 *)sme->ie,
1952 sme->ie_len,
Hante Meuleman89286dc2013-02-08 15:53:46 +01001953 WLAN_EID_RSN);
1954 if (rsn_ie) {
1955 ie = rsn_ie;
1956 ie_len = rsn_ie->len + TLV_HDR_LEN;
1957 }
1958 }
1959 brcmf_fil_iovar_data_set(ifp, "wpaie", ie, ie_len);
1960 }
1961
1962 err = brcmf_vif_set_mgmt_ie(ifp->vif, BRCMF_VNDR_IE_ASSOCREQ_FLAG,
1963 sme->ie, sme->ie_len);
1964 if (err)
1965 brcmf_err("Set Assoc REQ IE Failed\n");
1966 else
1967 brcmf_dbg(TRACE, "Applied Vndr IEs for Assoc request\n");
1968
Arend van Sprielc1179032012-10-22 13:55:33 -07001969 set_bit(BRCMF_VIF_STATUS_CONNECTING, &ifp->vif->sme_state);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001970
1971 if (chan) {
Arend van Spriel27a68fe2012-09-27 14:17:55 +02001972 cfg->channel =
Arend van Spriel5b435de2011-10-05 13:19:03 +02001973 ieee80211_frequency_to_channel(chan->center_freq);
Franky Lin83cf17a2013-04-11 13:28:50 +02001974 chanspec = channel_to_chanspec(&cfg->d11inf, chan);
Hante Meuleman17012612013-02-06 18:40:44 +01001975 brcmf_dbg(CONN, "channel=%d, center_req=%d, chanspec=0x%04x\n",
1976 cfg->channel, chan->center_freq, chanspec);
1977 } else {
Arend van Spriel27a68fe2012-09-27 14:17:55 +02001978 cfg->channel = 0;
Hante Meuleman17012612013-02-06 18:40:44 +01001979 chanspec = 0;
1980 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02001981
Arend van Spriel647c9ae2012-12-05 15:26:01 +01001982 brcmf_dbg(INFO, "ie (%p), ie_len (%zd)\n", sme->ie, sme->ie_len);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001983
1984 err = brcmf_set_wpa_version(ndev, sme);
1985 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01001986 brcmf_err("wl_set_wpa_version failed (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001987 goto done;
1988 }
1989
Arend van Sprielcbb1ec92013-02-06 18:40:47 +01001990 sme->auth_type = brcmf_war_auth_type(ifp, sme->auth_type);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001991 err = brcmf_set_auth_type(ndev, sme);
1992 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01001993 brcmf_err("wl_set_auth_type failed (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001994 goto done;
1995 }
1996
Hante Meuleman240d61a2016-02-17 11:27:10 +01001997 err = brcmf_set_wsec_mode(ndev, sme);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001998 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01001999 brcmf_err("wl_set_set_cipher failed (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002000 goto done;
2001 }
2002
2003 err = brcmf_set_key_mgmt(ndev, sme);
2004 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01002005 brcmf_err("wl_set_key_mgmt failed (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002006 goto done;
2007 }
2008
Hante Meulemanf09d0c02012-09-27 14:17:48 +02002009 err = brcmf_set_sharedkey(ndev, sme);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002010 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01002011 brcmf_err("brcmf_set_sharedkey failed (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002012 goto done;
2013 }
2014
Hante Meuleman89286dc2013-02-08 15:53:46 +01002015 /* Join with specific BSSID and cached SSID
2016 * If SSID is zero join based on BSSID only
2017 */
2018 join_params_size = offsetof(struct brcmf_ext_join_params_le, assoc_le) +
2019 offsetof(struct brcmf_assoc_params_le, chanspec_list);
2020 if (cfg->channel)
2021 join_params_size += sizeof(u16);
2022 ext_join_params = kzalloc(join_params_size, GFP_KERNEL);
2023 if (ext_join_params == NULL) {
2024 err = -ENOMEM;
2025 goto done;
2026 }
Hante Meulemane9a6ca82015-11-25 11:32:37 +01002027 ssid_len = min_t(u32, sme->ssid_len, IEEE80211_MAX_SSID_LEN);
2028 ext_join_params->ssid_le.SSID_len = cpu_to_le32(ssid_len);
2029 memcpy(&ext_join_params->ssid_le.SSID, sme->ssid, ssid_len);
2030 if (ssid_len < IEEE80211_MAX_SSID_LEN)
2031 brcmf_dbg(CONN, "SSID \"%s\", len (%d)\n",
2032 ext_join_params->ssid_le.SSID, ssid_len);
Hante Meuleman63dd99e2014-03-15 17:18:19 +01002033
Hante Meuleman89286dc2013-02-08 15:53:46 +01002034 /* Set up join scan parameters */
2035 ext_join_params->scan_le.scan_type = -1;
Hante Meuleman89286dc2013-02-08 15:53:46 +01002036 ext_join_params->scan_le.home_time = cpu_to_le32(-1);
2037
2038 if (sme->bssid)
2039 memcpy(&ext_join_params->assoc_le.bssid, sme->bssid, ETH_ALEN);
2040 else
Joe Perches93803b32015-03-02 19:54:49 -08002041 eth_broadcast_addr(ext_join_params->assoc_le.bssid);
Hante Meuleman89286dc2013-02-08 15:53:46 +01002042
2043 if (cfg->channel) {
2044 ext_join_params->assoc_le.chanspec_num = cpu_to_le32(1);
2045
2046 ext_join_params->assoc_le.chanspec_list[0] =
2047 cpu_to_le16(chanspec);
Hante Meuleman63dd99e2014-03-15 17:18:19 +01002048 /* Increase dwell time to receive probe response or detect
2049 * beacon from target AP at a noisy air only during connect
2050 * command.
2051 */
2052 ext_join_params->scan_le.active_time =
2053 cpu_to_le32(BRCMF_SCAN_JOIN_ACTIVE_DWELL_TIME_MS);
2054 ext_join_params->scan_le.passive_time =
2055 cpu_to_le32(BRCMF_SCAN_JOIN_PASSIVE_DWELL_TIME_MS);
2056 /* To sync with presence period of VSDB GO send probe request
2057 * more frequently. Probe request will be stopped when it gets
2058 * probe response from target AP/GO.
2059 */
2060 ext_join_params->scan_le.nprobes =
2061 cpu_to_le32(BRCMF_SCAN_JOIN_ACTIVE_DWELL_TIME_MS /
2062 BRCMF_SCAN_JOIN_PROBE_INTERVAL_MS);
2063 } else {
2064 ext_join_params->scan_le.active_time = cpu_to_le32(-1);
2065 ext_join_params->scan_le.passive_time = cpu_to_le32(-1);
2066 ext_join_params->scan_le.nprobes = cpu_to_le32(-1);
Hante Meuleman89286dc2013-02-08 15:53:46 +01002067 }
2068
Arend van Spriel7705ba62016-04-17 16:44:58 +02002069 brcmf_set_join_pref(ifp, &sme->bss_select);
2070
Hante Meuleman89286dc2013-02-08 15:53:46 +01002071 err = brcmf_fil_bsscfg_data_set(ifp, "join", ext_join_params,
2072 join_params_size);
2073 kfree(ext_join_params);
2074 if (!err)
2075 /* This is it. join command worked, we are done */
2076 goto done;
2077
2078 /* join command failed, fallback to set ssid */
Arend van Spriel5b435de2011-10-05 13:19:03 +02002079 memset(&join_params, 0, sizeof(join_params));
2080 join_params_size = sizeof(join_params.ssid_le);
2081
Hante Meulemane9a6ca82015-11-25 11:32:37 +01002082 memcpy(&join_params.ssid_le.SSID, sme->ssid, ssid_len);
2083 join_params.ssid_le.SSID_len = cpu_to_le32(ssid_len);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002084
Hante Meuleman89286dc2013-02-08 15:53:46 +01002085 if (sme->bssid)
2086 memcpy(join_params.params_le.bssid, sme->bssid, ETH_ALEN);
2087 else
Joe Perches93803b32015-03-02 19:54:49 -08002088 eth_broadcast_addr(join_params.params_le.bssid);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002089
Hante Meuleman17012612013-02-06 18:40:44 +01002090 if (cfg->channel) {
2091 join_params.params_le.chanspec_list[0] = cpu_to_le16(chanspec);
2092 join_params.params_le.chanspec_num = cpu_to_le32(1);
2093 join_params_size += sizeof(join_params.params_le);
2094 }
Arend van Sprielc1179032012-10-22 13:55:33 -07002095 err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_SSID,
Hante Meuleman81f5dcb2012-10-22 10:36:14 -07002096 &join_params, join_params_size);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002097 if (err)
Hante Meuleman89286dc2013-02-08 15:53:46 +01002098 brcmf_err("BRCMF_C_SET_SSID failed (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002099
2100done:
2101 if (err)
Arend van Sprielc1179032012-10-22 13:55:33 -07002102 clear_bit(BRCMF_VIF_STATUS_CONNECTING, &ifp->vif->sme_state);
Arend van Sprield96b8012012-12-05 15:26:02 +01002103 brcmf_dbg(TRACE, "Exit\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002104 return err;
2105}
2106
2107static s32
2108brcmf_cfg80211_disconnect(struct wiphy *wiphy, struct net_device *ndev,
2109 u16 reason_code)
2110{
Arend van Spriel0abb5f212012-10-22 13:55:32 -07002111 struct brcmf_if *ifp = netdev_priv(ndev);
2112 struct brcmf_cfg80211_profile *profile = &ifp->vif->profile;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002113 struct brcmf_scb_val_le scbval;
2114 s32 err = 0;
2115
Arend van Sprield96b8012012-12-05 15:26:02 +01002116 brcmf_dbg(TRACE, "Enter. Reason code = %d\n", reason_code);
Arend van Sprielce81e312012-10-22 13:55:37 -07002117 if (!check_vif_up(ifp->vif))
Arend van Spriel5b435de2011-10-05 13:19:03 +02002118 return -EIO;
2119
Arend van Sprielc1179032012-10-22 13:55:33 -07002120 clear_bit(BRCMF_VIF_STATUS_CONNECTED, &ifp->vif->sme_state);
Arend van Spriel4f3fff12014-11-20 22:27:02 +01002121 clear_bit(BRCMF_VIF_STATUS_CONNECTING, &ifp->vif->sme_state);
Johannes Berg80279fb2015-05-22 16:22:20 +02002122 cfg80211_disconnected(ndev, reason_code, NULL, 0, true, GFP_KERNEL);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002123
Arend van Spriel06bb1232012-09-27 14:17:56 +02002124 memcpy(&scbval.ea, &profile->bssid, ETH_ALEN);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002125 scbval.val = cpu_to_le32(reason_code);
Arend van Sprielc1179032012-10-22 13:55:33 -07002126 err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_DISASSOC,
Arend van Sprielac24be62012-10-22 10:36:23 -07002127 &scbval, sizeof(scbval));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002128 if (err)
Arend van Spriel57d6e912012-12-05 15:26:00 +01002129 brcmf_err("error (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002130
Arend van Sprield96b8012012-12-05 15:26:02 +01002131 brcmf_dbg(TRACE, "Exit\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002132 return err;
2133}
2134
2135static s32
Johannes Bergc8442112012-10-24 10:17:18 +02002136brcmf_cfg80211_set_tx_power(struct wiphy *wiphy, struct wireless_dev *wdev,
Luis R. Rodriguezd3f31132011-11-28 16:38:48 -05002137 enum nl80211_tx_power_setting type, s32 mbm)
Arend van Spriel5b435de2011-10-05 13:19:03 +02002138{
Arend van Spriel27a68fe2012-09-27 14:17:55 +02002139 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
Arend van Spriel0abb5f212012-10-22 13:55:32 -07002140 struct net_device *ndev = cfg_to_ndev(cfg);
2141 struct brcmf_if *ifp = netdev_priv(ndev);
Hante Meuleman60dc35e2015-09-18 22:08:06 +02002142 s32 err;
2143 s32 disable;
2144 u32 qdbm = 127;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002145
Hante Meuleman60dc35e2015-09-18 22:08:06 +02002146 brcmf_dbg(TRACE, "Enter %d %d\n", type, mbm);
Arend van Sprielce81e312012-10-22 13:55:37 -07002147 if (!check_vif_up(ifp->vif))
Arend van Spriel5b435de2011-10-05 13:19:03 +02002148 return -EIO;
2149
2150 switch (type) {
2151 case NL80211_TX_POWER_AUTOMATIC:
2152 break;
2153 case NL80211_TX_POWER_LIMITED:
Arend van Spriel5b435de2011-10-05 13:19:03 +02002154 case NL80211_TX_POWER_FIXED:
Hante Meuleman60dc35e2015-09-18 22:08:06 +02002155 if (mbm < 0) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01002156 brcmf_err("TX_POWER_FIXED - dbm is negative\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002157 err = -EINVAL;
2158 goto done;
2159 }
Hante Meuleman60dc35e2015-09-18 22:08:06 +02002160 qdbm = MBM_TO_DBM(4 * mbm);
2161 if (qdbm > 127)
2162 qdbm = 127;
2163 qdbm |= WL_TXPWR_OVERRIDE;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002164 break;
Hante Meuleman60dc35e2015-09-18 22:08:06 +02002165 default:
2166 brcmf_err("Unsupported type %d\n", type);
2167 err = -EINVAL;
2168 goto done;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002169 }
2170 /* Make sure radio is off or on as far as software is concerned */
2171 disable = WL_RADIO_SW_DISABLE << 16;
Arend van Sprielac24be62012-10-22 10:36:23 -07002172 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_RADIO, disable);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002173 if (err)
Arend van Spriel57d6e912012-12-05 15:26:00 +01002174 brcmf_err("WLC_SET_RADIO error (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002175
Hante Meuleman60dc35e2015-09-18 22:08:06 +02002176 err = brcmf_fil_iovar_int_set(ifp, "qtxpower", qdbm);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002177 if (err)
Arend van Spriel57d6e912012-12-05 15:26:00 +01002178 brcmf_err("qtxpower error (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002179
2180done:
Hante Meuleman60dc35e2015-09-18 22:08:06 +02002181 brcmf_dbg(TRACE, "Exit %d (qdbm)\n", qdbm & ~WL_TXPWR_OVERRIDE);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002182 return err;
2183}
2184
Hante Meuleman60dc35e2015-09-18 22:08:06 +02002185static s32
2186brcmf_cfg80211_get_tx_power(struct wiphy *wiphy, struct wireless_dev *wdev,
2187 s32 *dbm)
Arend van Spriel5b435de2011-10-05 13:19:03 +02002188{
Arend van Spriel27a68fe2012-09-27 14:17:55 +02002189 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
Hante Meuleman60dc35e2015-09-18 22:08:06 +02002190 struct net_device *ndev = cfg_to_ndev(cfg);
2191 struct brcmf_if *ifp = netdev_priv(ndev);
2192 s32 qdbm = 0;
2193 s32 err;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002194
Arend van Sprield96b8012012-12-05 15:26:02 +01002195 brcmf_dbg(TRACE, "Enter\n");
Arend van Sprielce81e312012-10-22 13:55:37 -07002196 if (!check_vif_up(ifp->vif))
Arend van Spriel5b435de2011-10-05 13:19:03 +02002197 return -EIO;
2198
Hante Meuleman60dc35e2015-09-18 22:08:06 +02002199 err = brcmf_fil_iovar_int_get(ifp, "qtxpower", &qdbm);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002200 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01002201 brcmf_err("error (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002202 goto done;
2203 }
Hante Meuleman60dc35e2015-09-18 22:08:06 +02002204 *dbm = (qdbm & ~WL_TXPWR_OVERRIDE) / 4;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002205
2206done:
Hante Meuleman60dc35e2015-09-18 22:08:06 +02002207 brcmf_dbg(TRACE, "Exit (0x%x %d)\n", qdbm, *dbm);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002208 return err;
2209}
2210
2211static s32
2212brcmf_cfg80211_config_default_key(struct wiphy *wiphy, struct net_device *ndev,
Hante Meuleman60dc35e2015-09-18 22:08:06 +02002213 u8 key_idx, bool unicast, bool multicast)
Arend van Spriel5b435de2011-10-05 13:19:03 +02002214{
Arend van Spriel0abb5f212012-10-22 13:55:32 -07002215 struct brcmf_if *ifp = netdev_priv(ndev);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002216 u32 index;
2217 u32 wsec;
2218 s32 err = 0;
2219
Arend van Sprield96b8012012-12-05 15:26:02 +01002220 brcmf_dbg(TRACE, "Enter\n");
Arend van Spriel16886732012-12-05 15:26:04 +01002221 brcmf_dbg(CONN, "key index (%d)\n", key_idx);
Arend van Sprielce81e312012-10-22 13:55:37 -07002222 if (!check_vif_up(ifp->vif))
Arend van Spriel5b435de2011-10-05 13:19:03 +02002223 return -EIO;
2224
Arend van Spriel0abb5f212012-10-22 13:55:32 -07002225 err = brcmf_fil_bsscfg_int_get(ifp, "wsec", &wsec);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002226 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01002227 brcmf_err("WLC_GET_WSEC error (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002228 goto done;
2229 }
2230
2231 if (wsec & WEP_ENABLED) {
2232 /* Just select a new current key */
2233 index = key_idx;
Arend van Spriel0abb5f212012-10-22 13:55:32 -07002234 err = brcmf_fil_cmd_int_set(ifp,
Arend van Sprielac24be62012-10-22 10:36:23 -07002235 BRCMF_C_SET_KEY_PRIMARY, index);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002236 if (err)
Arend van Spriel57d6e912012-12-05 15:26:00 +01002237 brcmf_err("error (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002238 }
2239done:
Arend van Sprield96b8012012-12-05 15:26:02 +01002240 brcmf_dbg(TRACE, "Exit\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002241 return err;
2242}
2243
2244static s32
Hante Meuleman219e0f72016-02-17 11:27:09 +01002245brcmf_cfg80211_del_key(struct wiphy *wiphy, struct net_device *ndev,
2246 u8 key_idx, bool pairwise, const u8 *mac_addr)
Arend van Spriel5b435de2011-10-05 13:19:03 +02002247{
Hante Meuleman992f6062013-04-02 21:06:17 +02002248 struct brcmf_if *ifp = netdev_priv(ndev);
Hante Meuleman240d61a2016-02-17 11:27:10 +01002249 struct brcmf_wsec_key *key;
2250 s32 err;
Hante Meuleman219e0f72016-02-17 11:27:09 +01002251
2252 brcmf_dbg(TRACE, "Enter\n");
Hante Meuleman240d61a2016-02-17 11:27:10 +01002253 brcmf_dbg(CONN, "key index (%d)\n", key_idx);
2254
Hante Meuleman219e0f72016-02-17 11:27:09 +01002255 if (!check_vif_up(ifp->vif))
2256 return -EIO;
2257
2258 if (key_idx >= BRCMF_MAX_DEFAULT_KEYS) {
2259 /* we ignore this key index in this case */
2260 return -EINVAL;
2261 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02002262
Hante Meuleman240d61a2016-02-17 11:27:10 +01002263 key = &ifp->vif->profile.key[key_idx];
Arend van Spriel5b435de2011-10-05 13:19:03 +02002264
Hante Meuleman240d61a2016-02-17 11:27:10 +01002265 if (key->algo == CRYPTO_ALGO_OFF) {
2266 brcmf_dbg(CONN, "Ignore clearing of (never configured) key\n");
2267 return -EINVAL;
2268 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02002269
Hante Meuleman240d61a2016-02-17 11:27:10 +01002270 memset(key, 0, sizeof(*key));
2271 key->index = (u32)key_idx;
2272 key->flags = BRCMF_PRIMARY_KEY;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002273
Hante Meuleman240d61a2016-02-17 11:27:10 +01002274 /* Clear the key/index */
2275 err = send_key_to_dongle(ifp, key);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002276
Hante Meuleman219e0f72016-02-17 11:27:09 +01002277 brcmf_dbg(TRACE, "Exit\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002278 return err;
2279}
2280
2281static s32
2282brcmf_cfg80211_add_key(struct wiphy *wiphy, struct net_device *ndev,
Hante Meuleman240d61a2016-02-17 11:27:10 +01002283 u8 key_idx, bool pairwise, const u8 *mac_addr,
2284 struct key_params *params)
Arend van Spriel5b435de2011-10-05 13:19:03 +02002285{
Arend van Spriel0abb5f212012-10-22 13:55:32 -07002286 struct brcmf_if *ifp = netdev_priv(ndev);
Hante Meuleman118eb302014-12-21 12:43:49 +01002287 struct brcmf_wsec_key *key;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002288 s32 val;
2289 s32 wsec;
Hante Meuleman219e0f72016-02-17 11:27:09 +01002290 s32 err;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002291 u8 keybuf[8];
Hante Meuleman219e0f72016-02-17 11:27:09 +01002292 bool ext_key;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002293
Arend van Sprield96b8012012-12-05 15:26:02 +01002294 brcmf_dbg(TRACE, "Enter\n");
Arend van Spriel16886732012-12-05 15:26:04 +01002295 brcmf_dbg(CONN, "key index (%d)\n", key_idx);
Arend van Sprielce81e312012-10-22 13:55:37 -07002296 if (!check_vif_up(ifp->vif))
Arend van Spriel5b435de2011-10-05 13:19:03 +02002297 return -EIO;
2298
Hante Meuleman118eb302014-12-21 12:43:49 +01002299 if (key_idx >= BRCMF_MAX_DEFAULT_KEYS) {
2300 /* we ignore this key index in this case */
2301 brcmf_err("invalid key index (%d)\n", key_idx);
2302 return -EINVAL;
2303 }
2304
Hante Meuleman219e0f72016-02-17 11:27:09 +01002305 if (params->key_len == 0)
2306 return brcmf_cfg80211_del_key(wiphy, ndev, key_idx, pairwise,
2307 mac_addr);
2308
2309 if (params->key_len > sizeof(key->data)) {
2310 brcmf_err("Too long key length (%u)\n", params->key_len);
2311 return -EINVAL;
2312 }
2313
2314 ext_key = false;
2315 if (mac_addr && (params->cipher != WLAN_CIPHER_SUITE_WEP40) &&
2316 (params->cipher != WLAN_CIPHER_SUITE_WEP104)) {
2317 brcmf_dbg(TRACE, "Ext key, mac %pM", mac_addr);
2318 ext_key = true;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002319 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02002320
Hante Meuleman118eb302014-12-21 12:43:49 +01002321 key = &ifp->vif->profile.key[key_idx];
2322 memset(key, 0, sizeof(*key));
Hante Meuleman219e0f72016-02-17 11:27:09 +01002323 if ((ext_key) && (!is_multicast_ether_addr(mac_addr)))
2324 memcpy((char *)&key->ea, (void *)mac_addr, ETH_ALEN);
Hante Meuleman118eb302014-12-21 12:43:49 +01002325 key->len = params->key_len;
2326 key->index = key_idx;
Hante Meuleman118eb302014-12-21 12:43:49 +01002327 memcpy(key->data, params->key, key->len);
Hante Meuleman219e0f72016-02-17 11:27:09 +01002328 if (!ext_key)
2329 key->flags = BRCMF_PRIMARY_KEY;
Hante Meuleman118eb302014-12-21 12:43:49 +01002330
Arend van Spriel5b435de2011-10-05 13:19:03 +02002331 switch (params->cipher) {
2332 case WLAN_CIPHER_SUITE_WEP40:
Hante Meuleman118eb302014-12-21 12:43:49 +01002333 key->algo = CRYPTO_ALGO_WEP1;
Hante Meulemanf09d0c02012-09-27 14:17:48 +02002334 val = WEP_ENABLED;
Arend van Spriel16886732012-12-05 15:26:04 +01002335 brcmf_dbg(CONN, "WLAN_CIPHER_SUITE_WEP40\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002336 break;
2337 case WLAN_CIPHER_SUITE_WEP104:
Hante Meuleman118eb302014-12-21 12:43:49 +01002338 key->algo = CRYPTO_ALGO_WEP128;
Hante Meulemanf09d0c02012-09-27 14:17:48 +02002339 val = WEP_ENABLED;
Arend van Spriel16886732012-12-05 15:26:04 +01002340 brcmf_dbg(CONN, "WLAN_CIPHER_SUITE_WEP104\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002341 break;
2342 case WLAN_CIPHER_SUITE_TKIP:
Arend van Spriel967fe2c2014-03-15 17:18:21 +01002343 if (!brcmf_is_apmode(ifp->vif)) {
Hante Meuleman992f6062013-04-02 21:06:17 +02002344 brcmf_dbg(CONN, "Swapping RX/TX MIC key\n");
Hante Meuleman118eb302014-12-21 12:43:49 +01002345 memcpy(keybuf, &key->data[24], sizeof(keybuf));
2346 memcpy(&key->data[24], &key->data[16], sizeof(keybuf));
2347 memcpy(&key->data[16], keybuf, sizeof(keybuf));
Hante Meuleman1a873342012-09-27 14:17:54 +02002348 }
Hante Meuleman118eb302014-12-21 12:43:49 +01002349 key->algo = CRYPTO_ALGO_TKIP;
Hante Meulemanf09d0c02012-09-27 14:17:48 +02002350 val = TKIP_ENABLED;
Arend van Spriel16886732012-12-05 15:26:04 +01002351 brcmf_dbg(CONN, "WLAN_CIPHER_SUITE_TKIP\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002352 break;
2353 case WLAN_CIPHER_SUITE_AES_CMAC:
Hante Meuleman118eb302014-12-21 12:43:49 +01002354 key->algo = CRYPTO_ALGO_AES_CCM;
Hante Meulemanf09d0c02012-09-27 14:17:48 +02002355 val = AES_ENABLED;
Arend van Spriel16886732012-12-05 15:26:04 +01002356 brcmf_dbg(CONN, "WLAN_CIPHER_SUITE_AES_CMAC\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002357 break;
2358 case WLAN_CIPHER_SUITE_CCMP:
Hante Meuleman118eb302014-12-21 12:43:49 +01002359 key->algo = CRYPTO_ALGO_AES_CCM;
Hante Meulemanf09d0c02012-09-27 14:17:48 +02002360 val = AES_ENABLED;
Arend van Spriel16886732012-12-05 15:26:04 +01002361 brcmf_dbg(CONN, "WLAN_CIPHER_SUITE_CCMP\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002362 break;
2363 default:
Arend van Spriel57d6e912012-12-05 15:26:00 +01002364 brcmf_err("Invalid cipher (0x%x)\n", params->cipher);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002365 err = -EINVAL;
2366 goto done;
2367 }
2368
Hante Meuleman118eb302014-12-21 12:43:49 +01002369 err = send_key_to_dongle(ifp, key);
Hante Meuleman219e0f72016-02-17 11:27:09 +01002370 if (ext_key || err)
Arend van Spriel5b435de2011-10-05 13:19:03 +02002371 goto done;
2372
Arend van Spriel0abb5f212012-10-22 13:55:32 -07002373 err = brcmf_fil_bsscfg_int_get(ifp, "wsec", &wsec);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002374 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01002375 brcmf_err("get wsec error (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002376 goto done;
2377 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02002378 wsec |= val;
Arend van Spriel0abb5f212012-10-22 13:55:32 -07002379 err = brcmf_fil_bsscfg_int_set(ifp, "wsec", wsec);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002380 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01002381 brcmf_err("set wsec error (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002382 goto done;
2383 }
2384
Arend van Spriel5b435de2011-10-05 13:19:03 +02002385done:
Arend van Sprield96b8012012-12-05 15:26:02 +01002386 brcmf_dbg(TRACE, "Exit\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002387 return err;
2388}
2389
2390static s32
Hante Meuleman240d61a2016-02-17 11:27:10 +01002391brcmf_cfg80211_get_key(struct wiphy *wiphy, struct net_device *ndev, u8 key_idx,
2392 bool pairwise, const u8 *mac_addr, void *cookie,
2393 void (*callback)(void *cookie,
2394 struct key_params *params))
Arend van Spriel5b435de2011-10-05 13:19:03 +02002395{
2396 struct key_params params;
Arend van Spriel0abb5f212012-10-22 13:55:32 -07002397 struct brcmf_if *ifp = netdev_priv(ndev);
2398 struct brcmf_cfg80211_profile *profile = &ifp->vif->profile;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002399 struct brcmf_cfg80211_security *sec;
2400 s32 wsec;
2401 s32 err = 0;
2402
Arend van Sprield96b8012012-12-05 15:26:02 +01002403 brcmf_dbg(TRACE, "Enter\n");
Arend van Spriel16886732012-12-05 15:26:04 +01002404 brcmf_dbg(CONN, "key index (%d)\n", key_idx);
Arend van Sprielce81e312012-10-22 13:55:37 -07002405 if (!check_vif_up(ifp->vif))
Arend van Spriel5b435de2011-10-05 13:19:03 +02002406 return -EIO;
2407
2408 memset(&params, 0, sizeof(params));
2409
Arend van Spriel0abb5f212012-10-22 13:55:32 -07002410 err = brcmf_fil_bsscfg_int_get(ifp, "wsec", &wsec);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002411 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01002412 brcmf_err("WLC_GET_WSEC error (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002413 /* Ignore this error, may happen during DISASSOC */
2414 err = -EAGAIN;
2415 goto done;
2416 }
Hante Meulemanc5bf53a2013-04-02 21:06:19 +02002417 if (wsec & WEP_ENABLED) {
Arend van Spriel06bb1232012-09-27 14:17:56 +02002418 sec = &profile->sec;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002419 if (sec->cipher_pairwise & WLAN_CIPHER_SUITE_WEP40) {
2420 params.cipher = WLAN_CIPHER_SUITE_WEP40;
Arend van Spriel16886732012-12-05 15:26:04 +01002421 brcmf_dbg(CONN, "WLAN_CIPHER_SUITE_WEP40\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002422 } else if (sec->cipher_pairwise & WLAN_CIPHER_SUITE_WEP104) {
2423 params.cipher = WLAN_CIPHER_SUITE_WEP104;
Arend van Spriel16886732012-12-05 15:26:04 +01002424 brcmf_dbg(CONN, "WLAN_CIPHER_SUITE_WEP104\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002425 }
Hante Meulemanc5bf53a2013-04-02 21:06:19 +02002426 } else if (wsec & TKIP_ENABLED) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02002427 params.cipher = WLAN_CIPHER_SUITE_TKIP;
Arend van Spriel16886732012-12-05 15:26:04 +01002428 brcmf_dbg(CONN, "WLAN_CIPHER_SUITE_TKIP\n");
Hante Meulemanc5bf53a2013-04-02 21:06:19 +02002429 } else if (wsec & AES_ENABLED) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02002430 params.cipher = WLAN_CIPHER_SUITE_AES_CMAC;
Arend van Spriel16886732012-12-05 15:26:04 +01002431 brcmf_dbg(CONN, "WLAN_CIPHER_SUITE_AES_CMAC\n");
Hante Meulemanc5bf53a2013-04-02 21:06:19 +02002432 } else {
Arend van Spriel57d6e912012-12-05 15:26:00 +01002433 brcmf_err("Invalid algo (0x%x)\n", wsec);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002434 err = -EINVAL;
2435 goto done;
2436 }
2437 callback(cookie, &params);
2438
2439done:
Arend van Sprield96b8012012-12-05 15:26:02 +01002440 brcmf_dbg(TRACE, "Exit\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002441 return err;
2442}
2443
2444static s32
2445brcmf_cfg80211_config_default_mgmt_key(struct wiphy *wiphy,
Hante Meuleman240d61a2016-02-17 11:27:10 +01002446 struct net_device *ndev, u8 key_idx)
Arend van Spriel5b435de2011-10-05 13:19:03 +02002447{
Hante Meuleman240d61a2016-02-17 11:27:10 +01002448 struct brcmf_if *ifp = netdev_priv(ndev);
2449
2450 brcmf_dbg(TRACE, "Enter key_idx %d\n", key_idx);
2451
2452 if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_MFP))
2453 return 0;
2454
Arend van Spriel647c9ae2012-12-05 15:26:01 +01002455 brcmf_dbg(INFO, "Not supported\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002456
2457 return -EOPNOTSUPP;
2458}
2459
Hante Meuleman118eb302014-12-21 12:43:49 +01002460static void
2461brcmf_cfg80211_reconfigure_wep(struct brcmf_if *ifp)
2462{
2463 s32 err;
2464 u8 key_idx;
2465 struct brcmf_wsec_key *key;
2466 s32 wsec;
2467
2468 for (key_idx = 0; key_idx < BRCMF_MAX_DEFAULT_KEYS; key_idx++) {
2469 key = &ifp->vif->profile.key[key_idx];
2470 if ((key->algo == CRYPTO_ALGO_WEP1) ||
2471 (key->algo == CRYPTO_ALGO_WEP128))
2472 break;
2473 }
2474 if (key_idx == BRCMF_MAX_DEFAULT_KEYS)
2475 return;
2476
2477 err = send_key_to_dongle(ifp, key);
2478 if (err) {
2479 brcmf_err("Setting WEP key failed (%d)\n", err);
2480 return;
2481 }
2482 err = brcmf_fil_bsscfg_int_get(ifp, "wsec", &wsec);
2483 if (err) {
2484 brcmf_err("get wsec error (%d)\n", err);
2485 return;
2486 }
2487 wsec |= WEP_ENABLED;
2488 err = brcmf_fil_bsscfg_int_set(ifp, "wsec", wsec);
2489 if (err)
2490 brcmf_err("set wsec error (%d)\n", err);
2491}
2492
Arend van Spriel1f0dc592015-06-11 00:12:19 +02002493static void brcmf_convert_sta_flags(u32 fw_sta_flags, struct station_info *si)
2494{
2495 struct nl80211_sta_flag_update *sfu;
2496
2497 brcmf_dbg(TRACE, "flags %08x\n", fw_sta_flags);
2498 si->filled |= BIT(NL80211_STA_INFO_STA_FLAGS);
2499 sfu = &si->sta_flags;
2500 sfu->mask = BIT(NL80211_STA_FLAG_WME) |
2501 BIT(NL80211_STA_FLAG_AUTHENTICATED) |
2502 BIT(NL80211_STA_FLAG_ASSOCIATED) |
2503 BIT(NL80211_STA_FLAG_AUTHORIZED);
2504 if (fw_sta_flags & BRCMF_STA_WME)
2505 sfu->set |= BIT(NL80211_STA_FLAG_WME);
2506 if (fw_sta_flags & BRCMF_STA_AUTHE)
2507 sfu->set |= BIT(NL80211_STA_FLAG_AUTHENTICATED);
2508 if (fw_sta_flags & BRCMF_STA_ASSOC)
2509 sfu->set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
2510 if (fw_sta_flags & BRCMF_STA_AUTHO)
2511 sfu->set |= BIT(NL80211_STA_FLAG_AUTHORIZED);
2512}
2513
2514static void brcmf_fill_bss_param(struct brcmf_if *ifp, struct station_info *si)
2515{
2516 struct {
2517 __le32 len;
2518 struct brcmf_bss_info_le bss_le;
2519 } *buf;
2520 u16 capability;
2521 int err;
2522
2523 buf = kzalloc(WL_BSS_INFO_MAX, GFP_KERNEL);
2524 if (!buf)
2525 return;
2526
2527 buf->len = cpu_to_le32(WL_BSS_INFO_MAX);
2528 err = brcmf_fil_cmd_data_get(ifp, BRCMF_C_GET_BSS_INFO, buf,
2529 WL_BSS_INFO_MAX);
2530 if (err) {
2531 brcmf_err("Failed to get bss info (%d)\n", err);
2532 return;
2533 }
2534 si->filled |= BIT(NL80211_STA_INFO_BSS_PARAM);
2535 si->bss_param.beacon_interval = le16_to_cpu(buf->bss_le.beacon_period);
2536 si->bss_param.dtim_period = buf->bss_le.dtim_period;
2537 capability = le16_to_cpu(buf->bss_le.capability);
2538 if (capability & IEEE80211_HT_STBC_PARAM_DUAL_CTS_PROT)
2539 si->bss_param.flags |= BSS_PARAM_FLAGS_CTS_PROT;
2540 if (capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
2541 si->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_PREAMBLE;
2542 if (capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
2543 si->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_SLOT_TIME;
2544}
2545
Arend van Spriel5b435de2011-10-05 13:19:03 +02002546static s32
Hante Meuleman3f5893d2016-01-02 09:41:37 +01002547brcmf_cfg80211_get_station_ibss(struct brcmf_if *ifp,
2548 struct station_info *sinfo)
2549{
2550 struct brcmf_scb_val_le scbval;
2551 struct brcmf_pktcnt_le pktcnt;
2552 s32 err;
2553 u32 rate;
2554 u32 rssi;
2555
2556 /* Get the current tx rate */
2557 err = brcmf_fil_cmd_int_get(ifp, BRCMF_C_GET_RATE, &rate);
2558 if (err < 0) {
2559 brcmf_err("BRCMF_C_GET_RATE error (%d)\n", err);
2560 return err;
2561 }
2562 sinfo->filled |= BIT(NL80211_STA_INFO_TX_BITRATE);
2563 sinfo->txrate.legacy = rate * 5;
2564
2565 memset(&scbval, 0, sizeof(scbval));
2566 err = brcmf_fil_cmd_data_get(ifp, BRCMF_C_GET_RSSI, &scbval,
2567 sizeof(scbval));
2568 if (err) {
2569 brcmf_err("BRCMF_C_GET_RSSI error (%d)\n", err);
2570 return err;
2571 }
2572 rssi = le32_to_cpu(scbval.val);
2573 sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL);
2574 sinfo->signal = rssi;
2575
2576 err = brcmf_fil_cmd_data_get(ifp, BRCMF_C_GET_GET_PKTCNTS, &pktcnt,
2577 sizeof(pktcnt));
2578 if (err) {
2579 brcmf_err("BRCMF_C_GET_GET_PKTCNTS error (%d)\n", err);
2580 return err;
2581 }
2582 sinfo->filled |= BIT(NL80211_STA_INFO_RX_PACKETS) |
2583 BIT(NL80211_STA_INFO_RX_DROP_MISC) |
2584 BIT(NL80211_STA_INFO_TX_PACKETS) |
2585 BIT(NL80211_STA_INFO_TX_FAILED);
2586 sinfo->rx_packets = le32_to_cpu(pktcnt.rx_good_pkt);
2587 sinfo->rx_dropped_misc = le32_to_cpu(pktcnt.rx_bad_pkt);
2588 sinfo->tx_packets = le32_to_cpu(pktcnt.tx_good_pkt);
2589 sinfo->tx_failed = le32_to_cpu(pktcnt.tx_bad_pkt);
2590
2591 return 0;
2592}
2593
2594static s32
Arend van Spriel5b435de2011-10-05 13:19:03 +02002595brcmf_cfg80211_get_station(struct wiphy *wiphy, struct net_device *ndev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02002596 const u8 *mac, struct station_info *sinfo)
Arend van Spriel5b435de2011-10-05 13:19:03 +02002597{
Arend van Spriel0abb5f212012-10-22 13:55:32 -07002598 struct brcmf_if *ifp = netdev_priv(ndev);
Jaap Jan Meijer94abd772016-05-12 18:25:08 +02002599 struct brcmf_scb_val_le scb_val;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002600 s32 err = 0;
Hante Meuleman81f5dcb2012-10-22 10:36:14 -07002601 struct brcmf_sta_info_le sta_info_le;
Arend van Spriel1f0dc592015-06-11 00:12:19 +02002602 u32 sta_flags;
2603 u32 is_tdls_peer;
Hante Meulemancae355d2015-10-08 20:33:17 +02002604 s32 total_rssi;
2605 s32 count_rssi;
Jaap Jan Meijer94abd772016-05-12 18:25:08 +02002606 int rssi;
Hante Meulemancae355d2015-10-08 20:33:17 +02002607 u32 i;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002608
Arend van Sprield96b8012012-12-05 15:26:02 +01002609 brcmf_dbg(TRACE, "Enter, MAC %pM\n", mac);
Arend van Sprielce81e312012-10-22 13:55:37 -07002610 if (!check_vif_up(ifp->vif))
Arend van Spriel5b435de2011-10-05 13:19:03 +02002611 return -EIO;
2612
Hante Meuleman3f5893d2016-01-02 09:41:37 +01002613 if (brcmf_is_ibssmode(ifp->vif))
2614 return brcmf_cfg80211_get_station_ibss(ifp, sinfo);
2615
Arend van Spriel1f0dc592015-06-11 00:12:19 +02002616 memset(&sta_info_le, 0, sizeof(sta_info_le));
2617 memcpy(&sta_info_le, mac, ETH_ALEN);
2618 err = brcmf_fil_iovar_data_get(ifp, "tdls_sta_info",
2619 &sta_info_le,
2620 sizeof(sta_info_le));
2621 is_tdls_peer = !err;
2622 if (err) {
Arend van Spriel0abb5f212012-10-22 13:55:32 -07002623 err = brcmf_fil_iovar_data_get(ifp, "sta_info",
Arend van Sprielac24be62012-10-22 10:36:23 -07002624 &sta_info_le,
Hante Meuleman81f5dcb2012-10-22 10:36:14 -07002625 sizeof(sta_info_le));
Hante Meuleman1a873342012-09-27 14:17:54 +02002626 if (err < 0) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01002627 brcmf_err("GET STA INFO failed, %d\n", err);
Hante Meuleman1a873342012-09-27 14:17:54 +02002628 goto done;
Hante Meuleman7f6c5622012-08-30 10:05:37 +02002629 }
Arend van Spriel1f0dc592015-06-11 00:12:19 +02002630 }
2631 brcmf_dbg(TRACE, "version %d\n", le16_to_cpu(sta_info_le.ver));
2632 sinfo->filled = BIT(NL80211_STA_INFO_INACTIVE_TIME);
2633 sinfo->inactive_time = le32_to_cpu(sta_info_le.idle) * 1000;
2634 sta_flags = le32_to_cpu(sta_info_le.flags);
2635 brcmf_convert_sta_flags(sta_flags, sinfo);
2636 sinfo->sta_flags.mask |= BIT(NL80211_STA_FLAG_TDLS_PEER);
2637 if (is_tdls_peer)
2638 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_TDLS_PEER);
2639 else
2640 sinfo->sta_flags.set &= ~BIT(NL80211_STA_FLAG_TDLS_PEER);
2641 if (sta_flags & BRCMF_STA_ASSOC) {
2642 sinfo->filled |= BIT(NL80211_STA_INFO_CONNECTED_TIME);
2643 sinfo->connected_time = le32_to_cpu(sta_info_le.in);
2644 brcmf_fill_bss_param(ifp, sinfo);
2645 }
2646 if (sta_flags & BRCMF_STA_SCBSTATS) {
2647 sinfo->filled |= BIT(NL80211_STA_INFO_TX_FAILED);
2648 sinfo->tx_failed = le32_to_cpu(sta_info_le.tx_failures);
2649 sinfo->filled |= BIT(NL80211_STA_INFO_TX_PACKETS);
2650 sinfo->tx_packets = le32_to_cpu(sta_info_le.tx_pkts);
2651 sinfo->tx_packets += le32_to_cpu(sta_info_le.tx_mcast_pkts);
2652 sinfo->filled |= BIT(NL80211_STA_INFO_RX_PACKETS);
2653 sinfo->rx_packets = le32_to_cpu(sta_info_le.rx_ucast_pkts);
2654 sinfo->rx_packets += le32_to_cpu(sta_info_le.rx_mcast_pkts);
2655 if (sinfo->tx_packets) {
Johannes Berg319090b2014-11-17 14:08:11 +01002656 sinfo->filled |= BIT(NL80211_STA_INFO_TX_BITRATE);
Hante Meuleman124d5172015-10-08 20:33:16 +02002657 sinfo->txrate.legacy =
2658 le32_to_cpu(sta_info_le.tx_rate) / 100;
Hante Meuleman1a873342012-09-27 14:17:54 +02002659 }
Arend van Spriel1f0dc592015-06-11 00:12:19 +02002660 if (sinfo->rx_packets) {
2661 sinfo->filled |= BIT(NL80211_STA_INFO_RX_BITRATE);
Hante Meuleman124d5172015-10-08 20:33:16 +02002662 sinfo->rxrate.legacy =
2663 le32_to_cpu(sta_info_le.rx_rate) / 100;
Hante Meuleman1a873342012-09-27 14:17:54 +02002664 }
Arend van Spriel1f0dc592015-06-11 00:12:19 +02002665 if (le16_to_cpu(sta_info_le.ver) >= 4) {
2666 sinfo->filled |= BIT(NL80211_STA_INFO_TX_BYTES);
2667 sinfo->tx_bytes = le64_to_cpu(sta_info_le.tx_tot_bytes);
2668 sinfo->filled |= BIT(NL80211_STA_INFO_RX_BYTES);
2669 sinfo->rx_bytes = le64_to_cpu(sta_info_le.rx_tot_bytes);
2670 }
Hante Meulemancae355d2015-10-08 20:33:17 +02002671 total_rssi = 0;
2672 count_rssi = 0;
2673 for (i = 0; i < BRCMF_ANT_MAX; i++) {
2674 if (sta_info_le.rssi[i]) {
2675 sinfo->chain_signal_avg[count_rssi] =
2676 sta_info_le.rssi[i];
2677 sinfo->chain_signal[count_rssi] =
2678 sta_info_le.rssi[i];
2679 total_rssi += sta_info_le.rssi[i];
2680 count_rssi++;
2681 }
2682 }
2683 if (count_rssi) {
2684 sinfo->filled |= BIT(NL80211_STA_INFO_CHAIN_SIGNAL);
2685 sinfo->chains = count_rssi;
2686
2687 sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL);
2688 total_rssi /= count_rssi;
2689 sinfo->signal = total_rssi;
Jaap Jan Meijer94abd772016-05-12 18:25:08 +02002690 } else if (test_bit(BRCMF_VIF_STATUS_CONNECTED,
2691 &ifp->vif->sme_state)) {
2692 memset(&scb_val, 0, sizeof(scb_val));
2693 err = brcmf_fil_cmd_data_get(ifp, BRCMF_C_GET_RSSI,
2694 &scb_val, sizeof(scb_val));
2695 if (err) {
2696 brcmf_err("Could not get rssi (%d)\n", err);
2697 goto done;
2698 } else {
2699 rssi = le32_to_cpu(scb_val.val);
2700 sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL);
2701 sinfo->signal = rssi;
2702 brcmf_dbg(CONN, "RSSI %d dBm\n", rssi);
2703 }
Hante Meulemancae355d2015-10-08 20:33:17 +02002704 }
Arend van Spriel1f0dc592015-06-11 00:12:19 +02002705 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02002706done:
Arend van Sprield96b8012012-12-05 15:26:02 +01002707 brcmf_dbg(TRACE, "Exit\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002708 return err;
2709}
2710
Hante Meulemanbf2a7e02015-10-08 20:33:18 +02002711static int
2712brcmf_cfg80211_dump_station(struct wiphy *wiphy, struct net_device *ndev,
2713 int idx, u8 *mac, struct station_info *sinfo)
2714{
2715 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
2716 struct brcmf_if *ifp = netdev_priv(ndev);
2717 s32 err;
2718
2719 brcmf_dbg(TRACE, "Enter, idx %d\n", idx);
2720
2721 if (idx == 0) {
2722 cfg->assoclist.count = cpu_to_le32(BRCMF_MAX_ASSOCLIST);
2723 err = brcmf_fil_cmd_data_get(ifp, BRCMF_C_GET_ASSOCLIST,
2724 &cfg->assoclist,
2725 sizeof(cfg->assoclist));
2726 if (err) {
2727 brcmf_err("BRCMF_C_GET_ASSOCLIST unsupported, err=%d\n",
2728 err);
2729 cfg->assoclist.count = 0;
2730 return -EOPNOTSUPP;
2731 }
2732 }
2733 if (idx < le32_to_cpu(cfg->assoclist.count)) {
2734 memcpy(mac, cfg->assoclist.mac[idx], ETH_ALEN);
2735 return brcmf_cfg80211_get_station(wiphy, ndev, mac, sinfo);
2736 }
2737 return -ENOENT;
2738}
2739
Arend van Spriel5b435de2011-10-05 13:19:03 +02002740static s32
2741brcmf_cfg80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *ndev,
2742 bool enabled, s32 timeout)
2743{
2744 s32 pm;
2745 s32 err = 0;
Arend van Spriel27a68fe2012-09-27 14:17:55 +02002746 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
Arend van Sprielc1179032012-10-22 13:55:33 -07002747 struct brcmf_if *ifp = netdev_priv(ndev);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002748
Arend van Sprield96b8012012-12-05 15:26:02 +01002749 brcmf_dbg(TRACE, "Enter\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002750
2751 /*
2752 * Powersave enable/disable request is coming from the
2753 * cfg80211 even before the interface is up. In that
2754 * scenario, driver will be storing the power save
Arend van Spriel27a68fe2012-09-27 14:17:55 +02002755 * preference in cfg struct to apply this to
Arend van Spriel5b435de2011-10-05 13:19:03 +02002756 * FW later while initializing the dongle
2757 */
Arend van Spriel27a68fe2012-09-27 14:17:55 +02002758 cfg->pwr_save = enabled;
Arend van Sprielce81e312012-10-22 13:55:37 -07002759 if (!check_vif_up(ifp->vif)) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02002760
Arend van Spriel647c9ae2012-12-05 15:26:01 +01002761 brcmf_dbg(INFO, "Device is not ready, storing the value in cfg_info struct\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002762 goto done;
2763 }
2764
2765 pm = enabled ? PM_FAST : PM_OFF;
Hante Meuleman102fd0d2013-05-27 21:09:59 +02002766 /* Do not enable the power save after assoc if it is a p2p interface */
2767 if (ifp->vif->wdev.iftype == NL80211_IFTYPE_P2P_CLIENT) {
2768 brcmf_dbg(INFO, "Do not enable power save for P2P clients\n");
2769 pm = PM_OFF;
2770 }
Arend van Spriel647c9ae2012-12-05 15:26:01 +01002771 brcmf_dbg(INFO, "power save %s\n", (pm ? "enabled" : "disabled"));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002772
Arend van Sprielc1179032012-10-22 13:55:33 -07002773 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_PM, pm);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002774 if (err) {
2775 if (err == -ENODEV)
Arend van Spriel57d6e912012-12-05 15:26:00 +01002776 brcmf_err("net_device is not ready yet\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002777 else
Arend van Spriel57d6e912012-12-05 15:26:00 +01002778 brcmf_err("error (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002779 }
2780done:
Arend van Sprield96b8012012-12-05 15:26:02 +01002781 brcmf_dbg(TRACE, "Exit\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002782 return err;
2783}
2784
Arend van Spriel27a68fe2012-09-27 14:17:55 +02002785static s32 brcmf_inform_single_bss(struct brcmf_cfg80211_info *cfg,
Roland Vossend34bf642011-10-18 14:03:01 +02002786 struct brcmf_bss_info_le *bi)
Arend van Spriel5b435de2011-10-05 13:19:03 +02002787{
Arend van Spriel27a68fe2012-09-27 14:17:55 +02002788 struct wiphy *wiphy = cfg_to_wiphy(cfg);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002789 struct ieee80211_channel *notify_channel;
2790 struct cfg80211_bss *bss;
2791 struct ieee80211_supported_band *band;
Franky Lin83cf17a2013-04-11 13:28:50 +02002792 struct brcmu_chan ch;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002793 u16 channel;
2794 u32 freq;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002795 u16 notify_capability;
2796 u16 notify_interval;
2797 u8 *notify_ie;
2798 size_t notify_ielen;
2799 s32 notify_signal;
2800
2801 if (le32_to_cpu(bi->length) > WL_BSS_INFO_MAX) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01002802 brcmf_err("Bss info is larger than buffer. Discarding\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002803 return 0;
2804 }
2805
Franky Lin83cf17a2013-04-11 13:28:50 +02002806 if (!bi->ctl_ch) {
2807 ch.chspec = le16_to_cpu(bi->chanspec);
2808 cfg->d11inf.decchspec(&ch);
Rafał Miłecki4712d882016-05-20 13:38:57 +02002809 bi->ctl_ch = ch.control_ch_num;
Franky Lin83cf17a2013-04-11 13:28:50 +02002810 }
2811 channel = bi->ctl_ch;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002812
2813 if (channel <= CH_MAX_2G_CHANNEL)
Johannes Berg57fbcce2016-04-12 15:56:15 +02002814 band = wiphy->bands[NL80211_BAND_2GHZ];
Arend van Spriel5b435de2011-10-05 13:19:03 +02002815 else
Johannes Berg57fbcce2016-04-12 15:56:15 +02002816 band = wiphy->bands[NL80211_BAND_5GHZ];
Arend van Spriel5b435de2011-10-05 13:19:03 +02002817
2818 freq = ieee80211_channel_to_frequency(channel, band->band);
2819 notify_channel = ieee80211_get_channel(wiphy, freq);
2820
Arend van Spriel5b435de2011-10-05 13:19:03 +02002821 notify_capability = le16_to_cpu(bi->capability);
2822 notify_interval = le16_to_cpu(bi->beacon_period);
2823 notify_ie = (u8 *)bi + le16_to_cpu(bi->ie_offset);
2824 notify_ielen = le32_to_cpu(bi->ie_length);
2825 notify_signal = (s16)le16_to_cpu(bi->RSSI) * 100;
2826
Arend van Spriel16886732012-12-05 15:26:04 +01002827 brcmf_dbg(CONN, "bssid: %pM\n", bi->BSSID);
2828 brcmf_dbg(CONN, "Channel: %d(%d)\n", channel, freq);
2829 brcmf_dbg(CONN, "Capability: %X\n", notify_capability);
2830 brcmf_dbg(CONN, "Beacon interval: %d\n", notify_interval);
2831 brcmf_dbg(CONN, "Signal: %d\n", notify_signal);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002832
Johannes Berg5bc8c1f2014-08-12 21:01:28 +02002833 bss = cfg80211_inform_bss(wiphy, notify_channel,
2834 CFG80211_BSS_FTYPE_UNKNOWN,
2835 (const u8 *)bi->BSSID,
2836 0, notify_capability,
2837 notify_interval, notify_ie,
2838 notify_ielen, notify_signal,
2839 GFP_KERNEL);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002840
Franky Line78946e2011-11-10 20:30:34 +01002841 if (!bss)
2842 return -ENOMEM;
2843
Johannes Berg5b112d32013-02-01 01:49:58 +01002844 cfg80211_put_bss(wiphy, bss);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002845
Peter Senna Tschudin12f32372014-05-31 10:14:06 -03002846 return 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002847}
2848
Roland Vossen6f09be02011-10-18 14:03:02 +02002849static struct brcmf_bss_info_le *
2850next_bss_le(struct brcmf_scan_results *list, struct brcmf_bss_info_le *bss)
2851{
2852 if (bss == NULL)
2853 return list->bss_info_le;
2854 return (struct brcmf_bss_info_le *)((unsigned long)bss +
2855 le32_to_cpu(bss->length));
2856}
2857
Arend van Spriel27a68fe2012-09-27 14:17:55 +02002858static s32 brcmf_inform_bss(struct brcmf_cfg80211_info *cfg)
Arend van Spriel5b435de2011-10-05 13:19:03 +02002859{
2860 struct brcmf_scan_results *bss_list;
Roland Vossend34bf642011-10-18 14:03:01 +02002861 struct brcmf_bss_info_le *bi = NULL; /* must be initialized */
Arend van Spriel5b435de2011-10-05 13:19:03 +02002862 s32 err = 0;
2863 int i;
2864
Hante Meulemanef8596e2014-09-30 10:23:13 +02002865 bss_list = (struct brcmf_scan_results *)cfg->escan_info.escan_buf;
Arend van Spriel0ecd8162012-11-05 16:22:11 -08002866 if (bss_list->count != 0 &&
2867 bss_list->version != BRCMF_BSS_INFO_VERSION) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01002868 brcmf_err("Version %d != WL_BSS_INFO_VERSION\n",
2869 bss_list->version);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002870 return -EOPNOTSUPP;
2871 }
Arend van Spriel4e8a0082012-12-05 15:26:03 +01002872 brcmf_dbg(SCAN, "scanned AP count (%d)\n", bss_list->count);
Hante Meulemanf07998952012-11-05 16:22:13 -08002873 for (i = 0; i < bss_list->count; i++) {
Roland Vossen6f09be02011-10-18 14:03:02 +02002874 bi = next_bss_le(bss_list, bi);
Arend van Spriel27a68fe2012-09-27 14:17:55 +02002875 err = brcmf_inform_single_bss(cfg, bi);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002876 if (err)
2877 break;
2878 }
2879 return err;
2880}
2881
Hante Meulemanb0a79082015-12-10 13:43:07 +01002882static s32 brcmf_inform_ibss(struct brcmf_cfg80211_info *cfg,
2883 struct net_device *ndev, const u8 *bssid)
Arend van Spriel5b435de2011-10-05 13:19:03 +02002884{
Arend van Spriel27a68fe2012-09-27 14:17:55 +02002885 struct wiphy *wiphy = cfg_to_wiphy(cfg);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002886 struct ieee80211_channel *notify_channel;
Roland Vossend34bf642011-10-18 14:03:01 +02002887 struct brcmf_bss_info_le *bi = NULL;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002888 struct ieee80211_supported_band *band;
Franky Line78946e2011-11-10 20:30:34 +01002889 struct cfg80211_bss *bss;
Franky Lin83cf17a2013-04-11 13:28:50 +02002890 struct brcmu_chan ch;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002891 u8 *buf = NULL;
2892 s32 err = 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002893 u32 freq;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002894 u16 notify_capability;
2895 u16 notify_interval;
2896 u8 *notify_ie;
2897 size_t notify_ielen;
2898 s32 notify_signal;
2899
Arend van Sprield96b8012012-12-05 15:26:02 +01002900 brcmf_dbg(TRACE, "Enter\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002901
2902 buf = kzalloc(WL_BSS_INFO_MAX, GFP_KERNEL);
2903 if (buf == NULL) {
2904 err = -ENOMEM;
2905 goto CleanUp;
2906 }
2907
2908 *(__le32 *)buf = cpu_to_le32(WL_BSS_INFO_MAX);
2909
Arend van Sprielac24be62012-10-22 10:36:23 -07002910 err = brcmf_fil_cmd_data_get(netdev_priv(ndev), BRCMF_C_GET_BSS_INFO,
2911 buf, WL_BSS_INFO_MAX);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002912 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01002913 brcmf_err("WLC_GET_BSS_INFO failed: %d\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002914 goto CleanUp;
2915 }
2916
Roland Vossend34bf642011-10-18 14:03:01 +02002917 bi = (struct brcmf_bss_info_le *)(buf + 4);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002918
Franky Lin83cf17a2013-04-11 13:28:50 +02002919 ch.chspec = le16_to_cpu(bi->chanspec);
2920 cfg->d11inf.decchspec(&ch);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002921
Franky Lin83cf17a2013-04-11 13:28:50 +02002922 if (ch.band == BRCMU_CHAN_BAND_2G)
Johannes Berg57fbcce2016-04-12 15:56:15 +02002923 band = wiphy->bands[NL80211_BAND_2GHZ];
Arend van Spriel5b435de2011-10-05 13:19:03 +02002924 else
Johannes Berg57fbcce2016-04-12 15:56:15 +02002925 band = wiphy->bands[NL80211_BAND_5GHZ];
Arend van Spriel5b435de2011-10-05 13:19:03 +02002926
Rafał Miłecki4712d882016-05-20 13:38:57 +02002927 freq = ieee80211_channel_to_frequency(ch.control_ch_num, band->band);
Hante Meulemanb0a79082015-12-10 13:43:07 +01002928 cfg->channel = freq;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002929 notify_channel = ieee80211_get_channel(wiphy, freq);
2930
Arend van Spriel5b435de2011-10-05 13:19:03 +02002931 notify_capability = le16_to_cpu(bi->capability);
2932 notify_interval = le16_to_cpu(bi->beacon_period);
2933 notify_ie = (u8 *)bi + le16_to_cpu(bi->ie_offset);
2934 notify_ielen = le32_to_cpu(bi->ie_length);
2935 notify_signal = (s16)le16_to_cpu(bi->RSSI) * 100;
2936
Rafał Miłecki4712d882016-05-20 13:38:57 +02002937 brcmf_dbg(CONN, "channel: %d(%d)\n", ch.control_ch_num, freq);
Arend van Spriel16886732012-12-05 15:26:04 +01002938 brcmf_dbg(CONN, "capability: %X\n", notify_capability);
2939 brcmf_dbg(CONN, "beacon interval: %d\n", notify_interval);
2940 brcmf_dbg(CONN, "signal: %d\n", notify_signal);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002941
Johannes Berg5bc8c1f2014-08-12 21:01:28 +02002942 bss = cfg80211_inform_bss(wiphy, notify_channel,
2943 CFG80211_BSS_FTYPE_UNKNOWN, bssid, 0,
2944 notify_capability, notify_interval,
2945 notify_ie, notify_ielen, notify_signal,
2946 GFP_KERNEL);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002947
Franky Line78946e2011-11-10 20:30:34 +01002948 if (!bss) {
2949 err = -ENOMEM;
2950 goto CleanUp;
2951 }
2952
Johannes Berg5b112d32013-02-01 01:49:58 +01002953 cfg80211_put_bss(wiphy, bss);
Franky Line78946e2011-11-10 20:30:34 +01002954
Arend van Spriel5b435de2011-10-05 13:19:03 +02002955CleanUp:
2956
2957 kfree(buf);
2958
Arend van Sprield96b8012012-12-05 15:26:02 +01002959 brcmf_dbg(TRACE, "Exit\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02002960
2961 return err;
2962}
2963
Hante Meuleman89286dc2013-02-08 15:53:46 +01002964static s32 brcmf_update_bss_info(struct brcmf_cfg80211_info *cfg,
2965 struct brcmf_if *ifp)
Alwin Beukersf8e4b412011-10-12 20:51:28 +02002966{
Roland Vossend34bf642011-10-18 14:03:01 +02002967 struct brcmf_bss_info_le *bi;
Johannes Berg4b5800f2014-01-15 14:55:59 +01002968 const struct brcmf_tlv *tim;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002969 u16 beacon_interval;
2970 u8 dtim_period;
2971 size_t ie_len;
2972 u8 *ie;
2973 s32 err = 0;
2974
Arend van Sprield96b8012012-12-05 15:26:02 +01002975 brcmf_dbg(TRACE, "Enter\n");
Arend van Spriel128ce3b2012-11-28 21:44:12 +01002976 if (brcmf_is_ibssmode(ifp->vif))
Arend van Spriel5b435de2011-10-05 13:19:03 +02002977 return err;
2978
Arend van Spriel27a68fe2012-09-27 14:17:55 +02002979 *(__le32 *)cfg->extra_buf = cpu_to_le32(WL_EXTRA_BUF_MAX);
Arend van Sprielac24be62012-10-22 10:36:23 -07002980 err = brcmf_fil_cmd_data_get(ifp, BRCMF_C_GET_BSS_INFO,
Hante Meuleman81f5dcb2012-10-22 10:36:14 -07002981 cfg->extra_buf, WL_EXTRA_BUF_MAX);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002982 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01002983 brcmf_err("Could not get bss info %d\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002984 goto update_bss_info_out;
2985 }
2986
Arend van Spriel27a68fe2012-09-27 14:17:55 +02002987 bi = (struct brcmf_bss_info_le *)(cfg->extra_buf + 4);
2988 err = brcmf_inform_single_bss(cfg, bi);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002989 if (err)
2990 goto update_bss_info_out;
2991
2992 ie = ((u8 *)bi) + le16_to_cpu(bi->ie_offset);
2993 ie_len = le32_to_cpu(bi->ie_length);
2994 beacon_interval = le16_to_cpu(bi->beacon_period);
2995
Alwin Beukersf8e4b412011-10-12 20:51:28 +02002996 tim = brcmf_parse_tlvs(ie, ie_len, WLAN_EID_TIM);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002997 if (tim)
2998 dtim_period = tim->data[1];
2999 else {
3000 /*
3001 * active scan was done so we could not get dtim
3002 * information out of probe response.
3003 * so we speficially query dtim information to dongle.
3004 */
3005 u32 var;
Arend van Sprielac24be62012-10-22 10:36:23 -07003006 err = brcmf_fil_iovar_int_get(ifp, "dtim_assoc", &var);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003007 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01003008 brcmf_err("wl dtim_assoc failed (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003009 goto update_bss_info_out;
3010 }
3011 dtim_period = (u8)var;
3012 }
3013
Arend van Spriel5b435de2011-10-05 13:19:03 +02003014update_bss_info_out:
Arend van Sprield96b8012012-12-05 15:26:02 +01003015 brcmf_dbg(TRACE, "Exit");
Arend van Spriel5b435de2011-10-05 13:19:03 +02003016 return err;
3017}
3018
Hante Meuleman18e2f612013-02-08 15:53:49 +01003019void brcmf_abort_scanning(struct brcmf_cfg80211_info *cfg)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003020{
Arend van Spriel27a68fe2012-09-27 14:17:55 +02003021 struct escan_info *escan = &cfg->escan_info;
Arend van Spriel5b435de2011-10-05 13:19:03 +02003022
Arend van Sprielc1179032012-10-22 13:55:33 -07003023 set_bit(BRCMF_SCAN_STATUS_ABORT, &cfg->scan_status);
Hante Meulemanf07998952012-11-05 16:22:13 -08003024 if (cfg->scan_request) {
Arend van Spriel108a4be2012-09-19 22:21:07 +02003025 escan->escan_state = WL_ESCAN_STATE_IDLE;
Arend van Spriela0f472a2013-04-05 10:57:49 +02003026 brcmf_notify_escan_complete(cfg, escan->ifp, true, true);
Arend van Spriel108a4be2012-09-19 22:21:07 +02003027 }
Arend van Sprielc1179032012-10-22 13:55:33 -07003028 clear_bit(BRCMF_SCAN_STATUS_BUSY, &cfg->scan_status);
3029 clear_bit(BRCMF_SCAN_STATUS_ABORT, &cfg->scan_status);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003030}
3031
Hante Meulemane756af52012-09-11 21:18:52 +02003032static void brcmf_cfg80211_escan_timeout_worker(struct work_struct *work)
3033{
Arend van Spriel27a68fe2012-09-27 14:17:55 +02003034 struct brcmf_cfg80211_info *cfg =
3035 container_of(work, struct brcmf_cfg80211_info,
Hante Meulemane756af52012-09-11 21:18:52 +02003036 escan_timeout_work);
3037
Hante Meulemanef8596e2014-09-30 10:23:13 +02003038 brcmf_inform_bss(cfg);
Arend van Spriela0f472a2013-04-05 10:57:49 +02003039 brcmf_notify_escan_complete(cfg, cfg->escan_info.ifp, true, true);
Hante Meulemane756af52012-09-11 21:18:52 +02003040}
3041
3042static void brcmf_escan_timeout(unsigned long data)
3043{
Arend van Spriel27a68fe2012-09-27 14:17:55 +02003044 struct brcmf_cfg80211_info *cfg =
3045 (struct brcmf_cfg80211_info *)data;
Hante Meulemane756af52012-09-11 21:18:52 +02003046
Arend van Spriel27a68fe2012-09-27 14:17:55 +02003047 if (cfg->scan_request) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01003048 brcmf_err("timer expired\n");
Hante Meulemanf07998952012-11-05 16:22:13 -08003049 schedule_work(&cfg->escan_timeout_work);
Hante Meulemane756af52012-09-11 21:18:52 +02003050 }
3051}
3052
3053static s32
Franky Lin83cf17a2013-04-11 13:28:50 +02003054brcmf_compare_update_same_bss(struct brcmf_cfg80211_info *cfg,
3055 struct brcmf_bss_info_le *bss,
Hante Meulemane756af52012-09-11 21:18:52 +02003056 struct brcmf_bss_info_le *bss_info_le)
3057{
Franky Lin83cf17a2013-04-11 13:28:50 +02003058 struct brcmu_chan ch_bss, ch_bss_info_le;
3059
3060 ch_bss.chspec = le16_to_cpu(bss->chanspec);
3061 cfg->d11inf.decchspec(&ch_bss);
3062 ch_bss_info_le.chspec = le16_to_cpu(bss_info_le->chanspec);
3063 cfg->d11inf.decchspec(&ch_bss_info_le);
3064
Hante Meulemane756af52012-09-11 21:18:52 +02003065 if (!memcmp(&bss_info_le->BSSID, &bss->BSSID, ETH_ALEN) &&
Franky Lin83cf17a2013-04-11 13:28:50 +02003066 ch_bss.band == ch_bss_info_le.band &&
Hante Meulemane756af52012-09-11 21:18:52 +02003067 bss_info_le->SSID_len == bss->SSID_len &&
3068 !memcmp(bss_info_le->SSID, bss->SSID, bss_info_le->SSID_len)) {
Arend van Spriel6f5838a2013-11-29 12:25:19 +01003069 if ((bss->flags & BRCMF_BSS_RSSI_ON_CHANNEL) ==
3070 (bss_info_le->flags & BRCMF_BSS_RSSI_ON_CHANNEL)) {
Arend van Spriel029591f2012-09-19 22:21:06 +02003071 s16 bss_rssi = le16_to_cpu(bss->RSSI);
3072 s16 bss_info_rssi = le16_to_cpu(bss_info_le->RSSI);
3073
Hante Meulemane756af52012-09-11 21:18:52 +02003074 /* preserve max RSSI if the measurements are
3075 * both on-channel or both off-channel
3076 */
Arend van Spriel029591f2012-09-19 22:21:06 +02003077 if (bss_info_rssi > bss_rssi)
Hante Meulemane756af52012-09-11 21:18:52 +02003078 bss->RSSI = bss_info_le->RSSI;
Arend van Spriel6f5838a2013-11-29 12:25:19 +01003079 } else if ((bss->flags & BRCMF_BSS_RSSI_ON_CHANNEL) &&
3080 (bss_info_le->flags & BRCMF_BSS_RSSI_ON_CHANNEL) == 0) {
Hante Meulemane756af52012-09-11 21:18:52 +02003081 /* preserve the on-channel rssi measurement
3082 * if the new measurement is off channel
3083 */
3084 bss->RSSI = bss_info_le->RSSI;
Arend van Spriel6f5838a2013-11-29 12:25:19 +01003085 bss->flags |= BRCMF_BSS_RSSI_ON_CHANNEL;
Hante Meulemane756af52012-09-11 21:18:52 +02003086 }
3087 return 1;
3088 }
3089 return 0;
3090}
3091
3092static s32
Arend van Spriel19937322012-11-05 16:22:32 -08003093brcmf_cfg80211_escan_handler(struct brcmf_if *ifp,
Hante Meulemane756af52012-09-11 21:18:52 +02003094 const struct brcmf_event_msg *e, void *data)
3095{
Arend van Spriel19937322012-11-05 16:22:32 -08003096 struct brcmf_cfg80211_info *cfg = ifp->drvr->config;
Hante Meulemane756af52012-09-11 21:18:52 +02003097 s32 status;
Hante Meulemane756af52012-09-11 21:18:52 +02003098 struct brcmf_escan_result_le *escan_result_le;
3099 struct brcmf_bss_info_le *bss_info_le;
3100 struct brcmf_bss_info_le *bss = NULL;
3101 u32 bi_length;
3102 struct brcmf_scan_results *list;
3103 u32 i;
Arend van Spriel97ed15c2012-09-13 21:12:06 +02003104 bool aborted;
Hante Meulemane756af52012-09-11 21:18:52 +02003105
Arend van Spriel5c36b992012-11-14 18:46:05 -08003106 status = e->status;
Hante Meulemane756af52012-09-11 21:18:52 +02003107
Arend van Spriela0f472a2013-04-05 10:57:49 +02003108 if (!test_bit(BRCMF_SCAN_STATUS_BUSY, &cfg->scan_status)) {
Hante Meuleman37a869e2015-10-29 20:33:17 +01003109 brcmf_err("scan not ready, bsscfgidx=%d\n", ifp->bsscfgidx);
Hante Meulemane756af52012-09-11 21:18:52 +02003110 return -EPERM;
3111 }
3112
3113 if (status == BRCMF_E_STATUS_PARTIAL) {
Arend van Spriel4e8a0082012-12-05 15:26:03 +01003114 brcmf_dbg(SCAN, "ESCAN Partial result\n");
Hante Meulemane756af52012-09-11 21:18:52 +02003115 escan_result_le = (struct brcmf_escan_result_le *) data;
3116 if (!escan_result_le) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01003117 brcmf_err("Invalid escan result (NULL pointer)\n");
Hante Meulemane756af52012-09-11 21:18:52 +02003118 goto exit;
3119 }
Hante Meulemane756af52012-09-11 21:18:52 +02003120 if (le16_to_cpu(escan_result_le->bss_count) != 1) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01003121 brcmf_err("Invalid bss_count %d: ignoring\n",
3122 escan_result_le->bss_count);
Hante Meulemane756af52012-09-11 21:18:52 +02003123 goto exit;
3124 }
3125 bss_info_le = &escan_result_le->bss_info_le;
3126
Hante Meuleman6eda4e22013-02-08 15:54:02 +01003127 if (brcmf_p2p_scan_finding_common_channel(cfg, bss_info_le))
3128 goto exit;
3129
3130 if (!cfg->scan_request) {
3131 brcmf_dbg(SCAN, "result without cfg80211 request\n");
3132 goto exit;
3133 }
3134
Hante Meulemane756af52012-09-11 21:18:52 +02003135 bi_length = le32_to_cpu(bss_info_le->length);
3136 if (bi_length != (le32_to_cpu(escan_result_le->buflen) -
3137 WL_ESCAN_RESULTS_FIXED_SIZE)) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01003138 brcmf_err("Invalid bss_info length %d: ignoring\n",
3139 bi_length);
Hante Meulemane756af52012-09-11 21:18:52 +02003140 goto exit;
3141 }
3142
Arend van Spriel27a68fe2012-09-27 14:17:55 +02003143 if (!(cfg_to_wiphy(cfg)->interface_modes &
Hante Meulemane756af52012-09-11 21:18:52 +02003144 BIT(NL80211_IFTYPE_ADHOC))) {
3145 if (le16_to_cpu(bss_info_le->capability) &
3146 WLAN_CAPABILITY_IBSS) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01003147 brcmf_err("Ignoring IBSS result\n");
Hante Meulemane756af52012-09-11 21:18:52 +02003148 goto exit;
3149 }
3150 }
3151
3152 list = (struct brcmf_scan_results *)
Arend van Spriel27a68fe2012-09-27 14:17:55 +02003153 cfg->escan_info.escan_buf;
Hante Meulemand5367332016-02-17 11:26:51 +01003154 if (bi_length > BRCMF_ESCAN_BUF_SIZE - list->buflen) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01003155 brcmf_err("Buffer is too small: ignoring\n");
Hante Meulemane756af52012-09-11 21:18:52 +02003156 goto exit;
3157 }
3158
3159 for (i = 0; i < list->count; i++) {
3160 bss = bss ? (struct brcmf_bss_info_le *)
3161 ((unsigned char *)bss +
3162 le32_to_cpu(bss->length)) : list->bss_info_le;
Franky Lin83cf17a2013-04-11 13:28:50 +02003163 if (brcmf_compare_update_same_bss(cfg, bss,
3164 bss_info_le))
Hante Meulemane756af52012-09-11 21:18:52 +02003165 goto exit;
3166 }
Hante Meulemand5367332016-02-17 11:26:51 +01003167 memcpy(&cfg->escan_info.escan_buf[list->buflen], bss_info_le,
3168 bi_length);
Hante Meulemane756af52012-09-11 21:18:52 +02003169 list->version = le32_to_cpu(bss_info_le->version);
3170 list->buflen += bi_length;
3171 list->count++;
3172 } else {
Arend van Spriel27a68fe2012-09-27 14:17:55 +02003173 cfg->escan_info.escan_state = WL_ESCAN_STATE_IDLE;
Hante Meuleman6eda4e22013-02-08 15:54:02 +01003174 if (brcmf_p2p_scan_finding_common_channel(cfg, NULL))
3175 goto exit;
Arend van Spriel27a68fe2012-09-27 14:17:55 +02003176 if (cfg->scan_request) {
Arend van Spriel27a68fe2012-09-27 14:17:55 +02003177 brcmf_inform_bss(cfg);
Arend van Spriel97ed15c2012-09-13 21:12:06 +02003178 aborted = status != BRCMF_E_STATUS_SUCCESS;
Hante Meulemanef8596e2014-09-30 10:23:13 +02003179 brcmf_notify_escan_complete(cfg, ifp, aborted, false);
Hante Meulemane756af52012-09-11 21:18:52 +02003180 } else
Hante Meuleman6eda4e22013-02-08 15:54:02 +01003181 brcmf_dbg(SCAN, "Ignored scan complete result 0x%x\n",
3182 status);
Hante Meulemane756af52012-09-11 21:18:52 +02003183 }
3184exit:
Peter Senna Tschudin12f32372014-05-31 10:14:06 -03003185 return 0;
Hante Meulemane756af52012-09-11 21:18:52 +02003186}
3187
Arend van Spriel27a68fe2012-09-27 14:17:55 +02003188static void brcmf_init_escan(struct brcmf_cfg80211_info *cfg)
Hante Meulemane756af52012-09-11 21:18:52 +02003189{
Arend van Spriel5c36b992012-11-14 18:46:05 -08003190 brcmf_fweh_register(cfg->pub, BRCMF_E_ESCAN_RESULT,
3191 brcmf_cfg80211_escan_handler);
Hante Meulemanf07998952012-11-05 16:22:13 -08003192 cfg->escan_info.escan_state = WL_ESCAN_STATE_IDLE;
3193 /* Init scan_timeout timer */
3194 init_timer(&cfg->escan_timeout);
3195 cfg->escan_timeout.data = (unsigned long) cfg;
3196 cfg->escan_timeout.function = brcmf_escan_timeout;
3197 INIT_WORK(&cfg->escan_timeout_work,
3198 brcmf_cfg80211_escan_timeout_worker);
Hante Meulemane756af52012-09-11 21:18:52 +02003199}
3200
Hante Meuleman5419f7f2016-01-05 11:05:46 +01003201/* PFN result doesn't have all the info which are required by the supplicant
3202 * (For e.g IEs) Do a target Escan so that sched scan results are reported
3203 * via wl_inform_single_bss in the required format. Escan does require the
3204 * scan request in the form of cfg80211_scan_request. For timebeing, create
3205 * cfg80211_scan_request one out of the received PNO event.
3206 */
3207static s32
3208brcmf_notify_sched_scan_results(struct brcmf_if *ifp,
3209 const struct brcmf_event_msg *e, void *data)
3210{
3211 struct brcmf_cfg80211_info *cfg = ifp->drvr->config;
3212 struct brcmf_pno_net_info_le *netinfo, *netinfo_start;
3213 struct cfg80211_scan_request *request = NULL;
3214 struct cfg80211_ssid *ssid = NULL;
3215 struct ieee80211_channel *channel = NULL;
3216 struct wiphy *wiphy = cfg_to_wiphy(cfg);
3217 int err = 0;
3218 int channel_req = 0;
3219 int band = 0;
3220 struct brcmf_pno_scanresults_le *pfn_result;
3221 u32 result_count;
3222 u32 status;
3223
3224 brcmf_dbg(SCAN, "Enter\n");
3225
Hante Meuleman0aedbca2016-02-17 11:26:54 +01003226 if (e->datalen < (sizeof(*pfn_result) + sizeof(*netinfo))) {
3227 brcmf_dbg(SCAN, "Event data to small. Ignore\n");
3228 return 0;
3229 }
3230
Hante Meuleman5419f7f2016-01-05 11:05:46 +01003231 if (e->event_code == BRCMF_E_PFN_NET_LOST) {
3232 brcmf_dbg(SCAN, "PFN NET LOST event. Do Nothing\n");
3233 return 0;
3234 }
3235
3236 pfn_result = (struct brcmf_pno_scanresults_le *)data;
3237 result_count = le32_to_cpu(pfn_result->count);
3238 status = le32_to_cpu(pfn_result->status);
3239
3240 /* PFN event is limited to fit 512 bytes so we may get
3241 * multiple NET_FOUND events. For now place a warning here.
3242 */
3243 WARN_ON(status != BRCMF_PNO_SCAN_COMPLETE);
3244 brcmf_dbg(SCAN, "PFN NET FOUND event. count: %d\n", result_count);
3245 if (result_count > 0) {
3246 int i;
3247
3248 request = kzalloc(sizeof(*request), GFP_KERNEL);
3249 ssid = kcalloc(result_count, sizeof(*ssid), GFP_KERNEL);
3250 channel = kcalloc(result_count, sizeof(*channel), GFP_KERNEL);
3251 if (!request || !ssid || !channel) {
3252 err = -ENOMEM;
3253 goto out_err;
3254 }
3255
3256 request->wiphy = wiphy;
3257 data += sizeof(struct brcmf_pno_scanresults_le);
3258 netinfo_start = (struct brcmf_pno_net_info_le *)data;
3259
3260 for (i = 0; i < result_count; i++) {
3261 netinfo = &netinfo_start[i];
3262 if (!netinfo) {
3263 brcmf_err("Invalid netinfo ptr. index: %d\n",
3264 i);
3265 err = -EINVAL;
3266 goto out_err;
3267 }
3268
3269 brcmf_dbg(SCAN, "SSID:%s Channel:%d\n",
3270 netinfo->SSID, netinfo->channel);
3271 memcpy(ssid[i].ssid, netinfo->SSID, netinfo->SSID_len);
3272 ssid[i].ssid_len = netinfo->SSID_len;
3273 request->n_ssids++;
3274
3275 channel_req = netinfo->channel;
3276 if (channel_req <= CH_MAX_2G_CHANNEL)
3277 band = NL80211_BAND_2GHZ;
3278 else
3279 band = NL80211_BAND_5GHZ;
3280 channel[i].center_freq =
3281 ieee80211_channel_to_frequency(channel_req,
3282 band);
3283 channel[i].band = band;
3284 channel[i].flags |= IEEE80211_CHAN_NO_HT40;
3285 request->channels[i] = &channel[i];
3286 request->n_channels++;
3287 }
3288
3289 /* assign parsed ssid array */
3290 if (request->n_ssids)
3291 request->ssids = &ssid[0];
3292
3293 if (test_bit(BRCMF_SCAN_STATUS_BUSY, &cfg->scan_status)) {
3294 /* Abort any on-going scan */
3295 brcmf_abort_scanning(cfg);
3296 }
3297
3298 set_bit(BRCMF_SCAN_STATUS_BUSY, &cfg->scan_status);
3299 cfg->escan_info.run = brcmf_run_escan;
3300 err = brcmf_do_escan(cfg, wiphy, ifp, request);
3301 if (err) {
3302 clear_bit(BRCMF_SCAN_STATUS_BUSY, &cfg->scan_status);
3303 goto out_err;
3304 }
3305 cfg->sched_escan = true;
3306 cfg->scan_request = request;
3307 } else {
3308 brcmf_err("FALSE PNO Event. (pfn_count == 0)\n");
3309 goto out_err;
3310 }
3311
3312 kfree(ssid);
3313 kfree(channel);
3314 kfree(request);
3315 return 0;
3316
3317out_err:
3318 kfree(ssid);
3319 kfree(channel);
3320 kfree(request);
3321 cfg80211_sched_scan_stopped(wiphy);
3322 return err;
3323}
3324
3325static int brcmf_dev_pno_clean(struct net_device *ndev)
3326{
3327 int ret;
3328
3329 /* Disable pfn */
3330 ret = brcmf_fil_iovar_int_set(netdev_priv(ndev), "pfn", 0);
3331 if (ret == 0) {
3332 /* clear pfn */
3333 ret = brcmf_fil_iovar_data_set(netdev_priv(ndev), "pfnclear",
3334 NULL, 0);
3335 }
3336 if (ret < 0)
3337 brcmf_err("failed code %d\n", ret);
3338
3339 return ret;
3340}
3341
3342static int brcmf_dev_pno_config(struct brcmf_if *ifp,
3343 struct cfg80211_sched_scan_request *request)
3344{
3345 struct brcmf_pno_param_le pfn_param;
3346 struct brcmf_pno_macaddr_le pfn_mac;
3347 s32 err;
3348 u8 *mac_mask;
3349 int i;
3350
3351 memset(&pfn_param, 0, sizeof(pfn_param));
3352 pfn_param.version = cpu_to_le32(BRCMF_PNO_VERSION);
3353
3354 /* set extra pno params */
3355 pfn_param.flags = cpu_to_le16(1 << BRCMF_PNO_ENABLE_ADAPTSCAN_BIT);
3356 pfn_param.repeat = BRCMF_PNO_REPEAT;
3357 pfn_param.exp = BRCMF_PNO_FREQ_EXPO_MAX;
3358
3359 /* set up pno scan fr */
3360 pfn_param.scan_freq = cpu_to_le32(BRCMF_PNO_TIME);
3361
3362 err = brcmf_fil_iovar_data_set(ifp, "pfn_set", &pfn_param,
3363 sizeof(pfn_param));
3364 if (err) {
3365 brcmf_err("pfn_set failed, err=%d\n", err);
3366 return err;
3367 }
3368
3369 /* Find out if mac randomization should be turned on */
3370 if (!(request->flags & NL80211_SCAN_FLAG_RANDOM_ADDR))
3371 return 0;
3372
3373 pfn_mac.version = BRCMF_PFN_MACADDR_CFG_VER;
3374 pfn_mac.flags = BRCMF_PFN_MAC_OUI_ONLY | BRCMF_PFN_SET_MAC_UNASSOC;
3375
3376 memcpy(pfn_mac.mac, request->mac_addr, ETH_ALEN);
3377 mac_mask = request->mac_addr_mask;
3378 for (i = 0; i < ETH_ALEN; i++) {
3379 pfn_mac.mac[i] &= mac_mask[i];
3380 pfn_mac.mac[i] |= get_random_int() & ~(mac_mask[i]);
3381 }
3382 /* Clear multi bit */
3383 pfn_mac.mac[0] &= 0xFE;
3384 /* Set locally administered */
3385 pfn_mac.mac[0] |= 0x02;
3386
3387 err = brcmf_fil_iovar_data_set(ifp, "pfn_macaddr", &pfn_mac,
3388 sizeof(pfn_mac));
3389 if (err)
3390 brcmf_err("pfn_macaddr failed, err=%d\n", err);
3391
3392 return err;
3393}
3394
3395static int
3396brcmf_cfg80211_sched_scan_start(struct wiphy *wiphy,
3397 struct net_device *ndev,
3398 struct cfg80211_sched_scan_request *request)
3399{
3400 struct brcmf_if *ifp = netdev_priv(ndev);
3401 struct brcmf_cfg80211_info *cfg = wiphy_priv(wiphy);
3402 struct brcmf_pno_net_param_le pfn;
3403 int i;
3404 int ret = 0;
3405
3406 brcmf_dbg(SCAN, "Enter n_match_sets:%d n_ssids:%d\n",
3407 request->n_match_sets, request->n_ssids);
3408 if (test_bit(BRCMF_SCAN_STATUS_BUSY, &cfg->scan_status)) {
3409 brcmf_err("Scanning already: status (%lu)\n", cfg->scan_status);
3410 return -EAGAIN;
3411 }
3412 if (test_bit(BRCMF_SCAN_STATUS_SUPPRESS, &cfg->scan_status)) {
3413 brcmf_err("Scanning suppressed: status (%lu)\n",
3414 cfg->scan_status);
3415 return -EAGAIN;
3416 }
3417
3418 if (!request->n_ssids || !request->n_match_sets) {
3419 brcmf_dbg(SCAN, "Invalid sched scan req!! n_ssids:%d\n",
3420 request->n_ssids);
3421 return -EINVAL;
3422 }
3423
3424 if (request->n_ssids > 0) {
3425 for (i = 0; i < request->n_ssids; i++) {
3426 /* Active scan req for ssids */
3427 brcmf_dbg(SCAN, ">>> Active scan req for ssid (%s)\n",
3428 request->ssids[i].ssid);
3429
3430 /* match_set ssids is a supert set of n_ssid list,
3431 * so we need not add these set separately.
3432 */
3433 }
3434 }
3435
3436 if (request->n_match_sets > 0) {
3437 /* clean up everything */
3438 ret = brcmf_dev_pno_clean(ndev);
3439 if (ret < 0) {
3440 brcmf_err("failed error=%d\n", ret);
3441 return ret;
3442 }
3443
3444 /* configure pno */
3445 if (brcmf_dev_pno_config(ifp, request))
3446 return -EINVAL;
3447
3448 /* configure each match set */
3449 for (i = 0; i < request->n_match_sets; i++) {
3450 struct cfg80211_ssid *ssid;
3451 u32 ssid_len;
3452
3453 ssid = &request->match_sets[i].ssid;
3454 ssid_len = ssid->ssid_len;
3455
3456 if (!ssid_len) {
3457 brcmf_err("skip broadcast ssid\n");
3458 continue;
3459 }
3460 pfn.auth = cpu_to_le32(WLAN_AUTH_OPEN);
3461 pfn.wpa_auth = cpu_to_le32(BRCMF_PNO_WPA_AUTH_ANY);
3462 pfn.wsec = cpu_to_le32(0);
3463 pfn.infra = cpu_to_le32(1);
3464 pfn.flags = cpu_to_le32(1 << BRCMF_PNO_HIDDEN_BIT);
3465 pfn.ssid.SSID_len = cpu_to_le32(ssid_len);
3466 memcpy(pfn.ssid.SSID, ssid->ssid, ssid_len);
3467 ret = brcmf_fil_iovar_data_set(ifp, "pfn_add", &pfn,
3468 sizeof(pfn));
3469 brcmf_dbg(SCAN, ">>> PNO filter %s for ssid (%s)\n",
3470 ret == 0 ? "set" : "failed", ssid->ssid);
3471 }
3472 /* Enable the PNO */
3473 if (brcmf_fil_iovar_int_set(ifp, "pfn", 1) < 0) {
3474 brcmf_err("PNO enable failed!! ret=%d\n", ret);
3475 return -EINVAL;
3476 }
3477 } else {
3478 return -EINVAL;
3479 }
3480
3481 return 0;
3482}
3483
3484static int brcmf_cfg80211_sched_scan_stop(struct wiphy *wiphy,
3485 struct net_device *ndev)
3486{
3487 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
3488
3489 brcmf_dbg(SCAN, "enter\n");
3490 brcmf_dev_pno_clean(ndev);
3491 if (cfg->sched_escan)
3492 brcmf_notify_escan_complete(cfg, netdev_priv(ndev), true, true);
3493 return 0;
3494}
3495
Alexandre Oliva5addc0d2012-01-16 14:00:12 -05003496static __always_inline void brcmf_delay(u32 ms)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003497{
3498 if (ms < 1000 / HZ) {
3499 cond_resched();
3500 mdelay(ms);
3501 } else {
3502 msleep(ms);
3503 }
3504}
3505
Hante Meulemanb9a82f82014-10-28 14:56:06 +01003506static s32 brcmf_config_wowl_pattern(struct brcmf_if *ifp, u8 cmd[4],
3507 u8 *pattern, u32 patternsize, u8 *mask,
3508 u32 packet_offset)
3509{
3510 struct brcmf_fil_wowl_pattern_le *filter;
3511 u32 masksize;
3512 u32 patternoffset;
3513 u8 *buf;
3514 u32 bufsize;
3515 s32 ret;
3516
3517 masksize = (patternsize + 7) / 8;
3518 patternoffset = sizeof(*filter) - sizeof(filter->cmd) + masksize;
3519
3520 bufsize = sizeof(*filter) + patternsize + masksize;
3521 buf = kzalloc(bufsize, GFP_KERNEL);
3522 if (!buf)
3523 return -ENOMEM;
3524 filter = (struct brcmf_fil_wowl_pattern_le *)buf;
3525
3526 memcpy(filter->cmd, cmd, 4);
3527 filter->masksize = cpu_to_le32(masksize);
3528 filter->offset = cpu_to_le32(packet_offset);
3529 filter->patternoffset = cpu_to_le32(patternoffset);
3530 filter->patternsize = cpu_to_le32(patternsize);
3531 filter->type = cpu_to_le32(BRCMF_WOWL_PATTERN_TYPE_BITMAP);
3532
3533 if ((mask) && (masksize))
3534 memcpy(buf + sizeof(*filter), mask, masksize);
3535 if ((pattern) && (patternsize))
3536 memcpy(buf + sizeof(*filter) + masksize, pattern, patternsize);
3537
3538 ret = brcmf_fil_iovar_data_set(ifp, "wowl_pattern", buf, bufsize);
3539
3540 kfree(buf);
3541 return ret;
3542}
3543
Hante Meuleman3021ad92016-01-05 11:05:45 +01003544static s32
3545brcmf_wowl_nd_results(struct brcmf_if *ifp, const struct brcmf_event_msg *e,
3546 void *data)
3547{
3548 struct brcmf_cfg80211_info *cfg = ifp->drvr->config;
3549 struct brcmf_pno_scanresults_le *pfn_result;
3550 struct brcmf_pno_net_info_le *netinfo;
3551
3552 brcmf_dbg(SCAN, "Enter\n");
3553
Hante Meuleman0aedbca2016-02-17 11:26:54 +01003554 if (e->datalen < (sizeof(*pfn_result) + sizeof(*netinfo))) {
3555 brcmf_dbg(SCAN, "Event data to small. Ignore\n");
3556 return 0;
3557 }
3558
Hante Meuleman3021ad92016-01-05 11:05:45 +01003559 pfn_result = (struct brcmf_pno_scanresults_le *)data;
3560
3561 if (e->event_code == BRCMF_E_PFN_NET_LOST) {
3562 brcmf_dbg(SCAN, "PFN NET LOST event. Ignore\n");
3563 return 0;
3564 }
3565
3566 if (le32_to_cpu(pfn_result->count) < 1) {
3567 brcmf_err("Invalid result count, expected 1 (%d)\n",
3568 le32_to_cpu(pfn_result->count));
3569 return -EINVAL;
3570 }
3571
3572 data += sizeof(struct brcmf_pno_scanresults_le);
3573 netinfo = (struct brcmf_pno_net_info_le *)data;
3574 memcpy(cfg->wowl.nd->ssid.ssid, netinfo->SSID, netinfo->SSID_len);
3575 cfg->wowl.nd->ssid.ssid_len = netinfo->SSID_len;
3576 cfg->wowl.nd->n_channels = 1;
3577 cfg->wowl.nd->channels[0] =
3578 ieee80211_channel_to_frequency(netinfo->channel,
3579 netinfo->channel <= CH_MAX_2G_CHANNEL ?
3580 NL80211_BAND_2GHZ : NL80211_BAND_5GHZ);
3581 cfg->wowl.nd_info->n_matches = 1;
3582 cfg->wowl.nd_info->matches[0] = cfg->wowl.nd;
3583
3584 /* Inform (the resume task) that the net detect information was recvd */
3585 cfg->wowl.nd_data_completed = true;
3586 wake_up(&cfg->wowl.nd_data_wait);
3587
3588 return 0;
3589}
3590
Hante Meulemanaeb64222015-10-29 20:33:19 +01003591#ifdef CONFIG_PM
3592
3593static void brcmf_report_wowl_wakeind(struct wiphy *wiphy, struct brcmf_if *ifp)
3594{
Hante Meuleman3021ad92016-01-05 11:05:45 +01003595 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
Hante Meulemanaeb64222015-10-29 20:33:19 +01003596 struct brcmf_wowl_wakeind_le wake_ind_le;
3597 struct cfg80211_wowlan_wakeup wakeup_data;
3598 struct cfg80211_wowlan_wakeup *wakeup;
3599 u32 wakeind;
3600 s32 err;
Hante Meuleman3021ad92016-01-05 11:05:45 +01003601 int timeout;
Hante Meulemanaeb64222015-10-29 20:33:19 +01003602
3603 err = brcmf_fil_iovar_data_get(ifp, "wowl_wakeind", &wake_ind_le,
3604 sizeof(wake_ind_le));
Hante Meuleman3021ad92016-01-05 11:05:45 +01003605 if (err) {
Hante Meulemanaeb64222015-10-29 20:33:19 +01003606 brcmf_err("Get wowl_wakeind failed, err = %d\n", err);
3607 return;
3608 }
3609
3610 wakeind = le32_to_cpu(wake_ind_le.ucode_wakeind);
3611 if (wakeind & (BRCMF_WOWL_MAGIC | BRCMF_WOWL_DIS | BRCMF_WOWL_BCN |
Hante Meuleman3021ad92016-01-05 11:05:45 +01003612 BRCMF_WOWL_RETR | BRCMF_WOWL_NET |
3613 BRCMF_WOWL_PFN_FOUND)) {
Hante Meulemanaeb64222015-10-29 20:33:19 +01003614 wakeup = &wakeup_data;
3615 memset(&wakeup_data, 0, sizeof(wakeup_data));
3616 wakeup_data.pattern_idx = -1;
3617
3618 if (wakeind & BRCMF_WOWL_MAGIC) {
3619 brcmf_dbg(INFO, "WOWL Wake indicator: BRCMF_WOWL_MAGIC\n");
3620 wakeup_data.magic_pkt = true;
3621 }
3622 if (wakeind & BRCMF_WOWL_DIS) {
3623 brcmf_dbg(INFO, "WOWL Wake indicator: BRCMF_WOWL_DIS\n");
3624 wakeup_data.disconnect = true;
3625 }
3626 if (wakeind & BRCMF_WOWL_BCN) {
3627 brcmf_dbg(INFO, "WOWL Wake indicator: BRCMF_WOWL_BCN\n");
3628 wakeup_data.disconnect = true;
3629 }
3630 if (wakeind & BRCMF_WOWL_RETR) {
3631 brcmf_dbg(INFO, "WOWL Wake indicator: BRCMF_WOWL_RETR\n");
3632 wakeup_data.disconnect = true;
3633 }
3634 if (wakeind & BRCMF_WOWL_NET) {
3635 brcmf_dbg(INFO, "WOWL Wake indicator: BRCMF_WOWL_NET\n");
3636 /* For now always map to pattern 0, no API to get
3637 * correct information available at the moment.
3638 */
3639 wakeup_data.pattern_idx = 0;
3640 }
Hante Meuleman3021ad92016-01-05 11:05:45 +01003641 if (wakeind & BRCMF_WOWL_PFN_FOUND) {
3642 brcmf_dbg(INFO, "WOWL Wake indicator: BRCMF_WOWL_PFN_FOUND\n");
3643 timeout = wait_event_timeout(cfg->wowl.nd_data_wait,
3644 cfg->wowl.nd_data_completed,
3645 BRCMF_ND_INFO_TIMEOUT);
3646 if (!timeout)
3647 brcmf_err("No result for wowl net detect\n");
3648 else
3649 wakeup_data.net_detect = cfg->wowl.nd_info;
3650 }
Hante Meuleman5c22fb82016-02-17 11:27:03 +01003651 if (wakeind & BRCMF_WOWL_GTK_FAILURE) {
3652 brcmf_dbg(INFO, "WOWL Wake indicator: BRCMF_WOWL_GTK_FAILURE\n");
3653 wakeup_data.gtk_rekey_failure = true;
3654 }
Hante Meulemanaeb64222015-10-29 20:33:19 +01003655 } else {
3656 wakeup = NULL;
3657 }
3658 cfg80211_report_wowlan_wakeup(&ifp->vif->wdev, wakeup, GFP_KERNEL);
3659}
3660
3661#else
3662
3663static void brcmf_report_wowl_wakeind(struct wiphy *wiphy, struct brcmf_if *ifp)
3664{
3665}
3666
3667#endif /* CONFIG_PM */
3668
Arend van Spriel5b435de2011-10-05 13:19:03 +02003669static s32 brcmf_cfg80211_resume(struct wiphy *wiphy)
3670{
Hante Meuleman4eb3af72014-09-30 10:23:18 +02003671 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
3672 struct net_device *ndev = cfg_to_ndev(cfg);
3673 struct brcmf_if *ifp = netdev_priv(ndev);
3674
Arend van Sprield96b8012012-12-05 15:26:02 +01003675 brcmf_dbg(TRACE, "Enter\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02003676
Hante Meuleman3021ad92016-01-05 11:05:45 +01003677 if (cfg->wowl.active) {
Hante Meulemanaeb64222015-10-29 20:33:19 +01003678 brcmf_report_wowl_wakeind(wiphy, ifp);
3679 brcmf_fil_iovar_int_set(ifp, "wowl_clear", 0);
3680 brcmf_config_wowl_pattern(ifp, "clr", NULL, 0, NULL, 0);
Hante Meuleman73ef9e62016-02-17 11:27:05 +01003681 if (!brcmf_feat_is_enabled(ifp, BRCMF_FEAT_WOWL_ARP_ND))
3682 brcmf_configure_arp_nd_offload(ifp, true);
Hante Meuleman4eb3af72014-09-30 10:23:18 +02003683 brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_PM,
Hante Meuleman3021ad92016-01-05 11:05:45 +01003684 cfg->wowl.pre_pmmode);
3685 cfg->wowl.active = false;
3686 if (cfg->wowl.nd_enabled) {
3687 brcmf_cfg80211_sched_scan_stop(cfg->wiphy, ifp->ndev);
3688 brcmf_fweh_unregister(cfg->pub, BRCMF_E_PFN_NET_FOUND);
3689 brcmf_fweh_register(cfg->pub, BRCMF_E_PFN_NET_FOUND,
3690 brcmf_notify_sched_scan_results);
3691 cfg->wowl.nd_enabled = false;
3692 }
Hante Meuleman4eb3af72014-09-30 10:23:18 +02003693 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02003694 return 0;
3695}
3696
Hante Meuleman4eb3af72014-09-30 10:23:18 +02003697static void brcmf_configure_wowl(struct brcmf_cfg80211_info *cfg,
3698 struct brcmf_if *ifp,
3699 struct cfg80211_wowlan *wowl)
3700{
3701 u32 wowl_config;
Hante Meulemanb9a82f82014-10-28 14:56:06 +01003702 u32 i;
Hante Meuleman4eb3af72014-09-30 10:23:18 +02003703
3704 brcmf_dbg(TRACE, "Suspend, wowl config.\n");
3705
Hante Meuleman73ef9e62016-02-17 11:27:05 +01003706 if (!brcmf_feat_is_enabled(ifp, BRCMF_FEAT_WOWL_ARP_ND))
3707 brcmf_configure_arp_nd_offload(ifp, false);
Hante Meuleman3021ad92016-01-05 11:05:45 +01003708 brcmf_fil_cmd_int_get(ifp, BRCMF_C_GET_PM, &cfg->wowl.pre_pmmode);
Hante Meuleman4eb3af72014-09-30 10:23:18 +02003709 brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_PM, PM_MAX);
3710
3711 wowl_config = 0;
3712 if (wowl->disconnect)
Hante Meulemanb9a82f82014-10-28 14:56:06 +01003713 wowl_config = BRCMF_WOWL_DIS | BRCMF_WOWL_BCN | BRCMF_WOWL_RETR;
Hante Meuleman4eb3af72014-09-30 10:23:18 +02003714 if (wowl->magic_pkt)
Hante Meulemanb9a82f82014-10-28 14:56:06 +01003715 wowl_config |= BRCMF_WOWL_MAGIC;
3716 if ((wowl->patterns) && (wowl->n_patterns)) {
3717 wowl_config |= BRCMF_WOWL_NET;
3718 for (i = 0; i < wowl->n_patterns; i++) {
3719 brcmf_config_wowl_pattern(ifp, "add",
3720 (u8 *)wowl->patterns[i].pattern,
3721 wowl->patterns[i].pattern_len,
3722 (u8 *)wowl->patterns[i].mask,
3723 wowl->patterns[i].pkt_offset);
3724 }
3725 }
Hante Meuleman3021ad92016-01-05 11:05:45 +01003726 if (wowl->nd_config) {
3727 brcmf_cfg80211_sched_scan_start(cfg->wiphy, ifp->ndev,
3728 wowl->nd_config);
3729 wowl_config |= BRCMF_WOWL_PFN_FOUND;
3730
3731 cfg->wowl.nd_data_completed = false;
3732 cfg->wowl.nd_enabled = true;
3733 /* Now reroute the event for PFN to the wowl function. */
3734 brcmf_fweh_unregister(cfg->pub, BRCMF_E_PFN_NET_FOUND);
3735 brcmf_fweh_register(cfg->pub, BRCMF_E_PFN_NET_FOUND,
3736 brcmf_wowl_nd_results);
3737 }
Hante Meuleman5c22fb82016-02-17 11:27:03 +01003738 if (wowl->gtk_rekey_failure)
3739 wowl_config |= BRCMF_WOWL_GTK_FAILURE;
Hante Meuleman3021ad92016-01-05 11:05:45 +01003740 if (!test_bit(BRCMF_VIF_STATUS_CONNECTED, &ifp->vif->sme_state))
3741 wowl_config |= BRCMF_WOWL_UNASSOC;
3742
Hante Meuleman28b285a2016-04-11 11:35:22 +02003743 brcmf_fil_iovar_data_set(ifp, "wowl_wakeind", "clear",
3744 sizeof(struct brcmf_wowl_wakeind_le));
Hante Meuleman4eb3af72014-09-30 10:23:18 +02003745 brcmf_fil_iovar_int_set(ifp, "wowl", wowl_config);
3746 brcmf_fil_iovar_int_set(ifp, "wowl_activate", 1);
3747 brcmf_bus_wowl_config(cfg->pub->bus_if, true);
Hante Meuleman3021ad92016-01-05 11:05:45 +01003748 cfg->wowl.active = true;
Hante Meuleman4eb3af72014-09-30 10:23:18 +02003749}
3750
Arend van Spriel5b435de2011-10-05 13:19:03 +02003751static s32 brcmf_cfg80211_suspend(struct wiphy *wiphy,
Hante Meuleman4eb3af72014-09-30 10:23:18 +02003752 struct cfg80211_wowlan *wowl)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003753{
Arend van Spriel27a68fe2012-09-27 14:17:55 +02003754 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
3755 struct net_device *ndev = cfg_to_ndev(cfg);
Hante Meuleman4eb3af72014-09-30 10:23:18 +02003756 struct brcmf_if *ifp = netdev_priv(ndev);
Arend van Spriel7d641072012-10-22 13:55:39 -07003757 struct brcmf_cfg80211_vif *vif;
Arend van Spriel5b435de2011-10-05 13:19:03 +02003758
Arend van Sprield96b8012012-12-05 15:26:02 +01003759 brcmf_dbg(TRACE, "Enter\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02003760
Hante Meuleman4eb3af72014-09-30 10:23:18 +02003761 /* if the primary net_device is not READY there is nothing
Arend van Spriel7d641072012-10-22 13:55:39 -07003762 * we can do but pray resume goes smoothly.
Arend van Spriel5b435de2011-10-05 13:19:03 +02003763 */
Hante Meuleman4eb3af72014-09-30 10:23:18 +02003764 if (!check_vif_up(ifp->vif))
Arend van Spriel7d641072012-10-22 13:55:39 -07003765 goto exit;
Arend van Spriel5b435de2011-10-05 13:19:03 +02003766
Hante Meuleman3021ad92016-01-05 11:05:45 +01003767 /* Stop scheduled scan */
3768 if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_PNO))
3769 brcmf_cfg80211_sched_scan_stop(wiphy, ndev);
3770
Arend van Spriel7d641072012-10-22 13:55:39 -07003771 /* end any scanning */
3772 if (test_bit(BRCMF_SCAN_STATUS_BUSY, &cfg->scan_status))
Arend van Spriel27a68fe2012-09-27 14:17:55 +02003773 brcmf_abort_scanning(cfg);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003774
Hante Meuleman4eb3af72014-09-30 10:23:18 +02003775 if (wowl == NULL) {
3776 brcmf_bus_wowl_config(cfg->pub->bus_if, false);
3777 list_for_each_entry(vif, &cfg->vif_list, list) {
3778 if (!test_bit(BRCMF_VIF_STATUS_READY, &vif->sme_state))
3779 continue;
3780 /* While going to suspend if associated with AP
3781 * disassociate from AP to save power while system is
3782 * in suspended state
3783 */
Arend van Spriel9b7a0dd2015-01-25 20:31:33 +01003784 brcmf_link_down(vif, WLAN_REASON_UNSPECIFIED);
Hante Meuleman4eb3af72014-09-30 10:23:18 +02003785 /* Make sure WPA_Supplicant receives all the event
3786 * generated due to DISASSOC call to the fw to keep
3787 * the state fw and WPA_Supplicant state consistent
3788 */
3789 brcmf_delay(500);
3790 }
3791 /* Configure MPC */
3792 brcmf_set_mpc(ifp, 1);
3793
3794 } else {
3795 /* Configure WOWL paramaters */
3796 brcmf_configure_wowl(cfg, ifp, wowl);
3797 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02003798
Arend van Spriel7d641072012-10-22 13:55:39 -07003799exit:
Arend van Sprield96b8012012-12-05 15:26:02 +01003800 brcmf_dbg(TRACE, "Exit\n");
Arend van Spriel7d641072012-10-22 13:55:39 -07003801 /* clear any scanning activity */
3802 cfg->scan_status = 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02003803 return 0;
3804}
3805
3806static __used s32
Hante Meuleman6c404f32015-12-10 13:43:03 +01003807brcmf_update_pmklist(struct brcmf_cfg80211_info *cfg, struct brcmf_if *ifp)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003808{
Hante Meuleman6c404f32015-12-10 13:43:03 +01003809 struct brcmf_pmk_list_le *pmk_list;
3810 int i;
3811 u32 npmk;
3812 s32 err;
Arend van Spriel5b435de2011-10-05 13:19:03 +02003813
Hante Meuleman6c404f32015-12-10 13:43:03 +01003814 pmk_list = &cfg->pmk_list;
3815 npmk = le32_to_cpu(pmk_list->npmk);
Arend van Spriel40c8e952011-10-12 20:51:20 +02003816
Hante Meuleman6c404f32015-12-10 13:43:03 +01003817 brcmf_dbg(CONN, "No of elements %d\n", npmk);
3818 for (i = 0; i < npmk; i++)
3819 brcmf_dbg(CONN, "PMK[%d]: %pM\n", i, &pmk_list->pmk[i].bssid);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003820
Hante Meuleman6c404f32015-12-10 13:43:03 +01003821 err = brcmf_fil_iovar_data_set(ifp, "pmkid_info", pmk_list,
3822 sizeof(*pmk_list));
Arend van Spriel5b435de2011-10-05 13:19:03 +02003823
3824 return err;
3825}
3826
3827static s32
3828brcmf_cfg80211_set_pmksa(struct wiphy *wiphy, struct net_device *ndev,
3829 struct cfg80211_pmksa *pmksa)
3830{
Arend van Spriel27a68fe2012-09-27 14:17:55 +02003831 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
Arend van Spriel0abb5f212012-10-22 13:55:32 -07003832 struct brcmf_if *ifp = netdev_priv(ndev);
Hante Meuleman6c404f32015-12-10 13:43:03 +01003833 struct brcmf_pmksa *pmk = &cfg->pmk_list.pmk[0];
3834 s32 err;
3835 u32 npmk, i;
Arend van Spriel5b435de2011-10-05 13:19:03 +02003836
Arend van Sprield96b8012012-12-05 15:26:02 +01003837 brcmf_dbg(TRACE, "Enter\n");
Arend van Sprielce81e312012-10-22 13:55:37 -07003838 if (!check_vif_up(ifp->vif))
Arend van Spriel5b435de2011-10-05 13:19:03 +02003839 return -EIO;
3840
Hante Meuleman6c404f32015-12-10 13:43:03 +01003841 npmk = le32_to_cpu(cfg->pmk_list.npmk);
3842 for (i = 0; i < npmk; i++)
3843 if (!memcmp(pmksa->bssid, pmk[i].bssid, ETH_ALEN))
Arend van Spriel5b435de2011-10-05 13:19:03 +02003844 break;
Hante Meuleman6c404f32015-12-10 13:43:03 +01003845 if (i < BRCMF_MAXPMKID) {
3846 memcpy(pmk[i].bssid, pmksa->bssid, ETH_ALEN);
3847 memcpy(pmk[i].pmkid, pmksa->pmkid, WLAN_PMKID_LEN);
3848 if (i == npmk) {
3849 npmk++;
3850 cfg->pmk_list.npmk = cpu_to_le32(npmk);
Arend van Spriel40c8e952011-10-12 20:51:20 +02003851 }
Hante Meuleman6c404f32015-12-10 13:43:03 +01003852 } else {
3853 brcmf_err("Too many PMKSA entries cached %d\n", npmk);
3854 return -EINVAL;
3855 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02003856
Hante Meuleman6c404f32015-12-10 13:43:03 +01003857 brcmf_dbg(CONN, "set_pmksa - PMK bssid: %pM =\n", pmk[npmk].bssid);
3858 for (i = 0; i < WLAN_PMKID_LEN; i += 4)
3859 brcmf_dbg(CONN, "%02x %02x %02x %02x\n", pmk[npmk].pmkid[i],
3860 pmk[npmk].pmkid[i + 1], pmk[npmk].pmkid[i + 2],
3861 pmk[npmk].pmkid[i + 3]);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003862
Hante Meuleman6c404f32015-12-10 13:43:03 +01003863 err = brcmf_update_pmklist(cfg, ifp);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003864
Arend van Sprield96b8012012-12-05 15:26:02 +01003865 brcmf_dbg(TRACE, "Exit\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02003866 return err;
3867}
3868
3869static s32
3870brcmf_cfg80211_del_pmksa(struct wiphy *wiphy, struct net_device *ndev,
Hante Meuleman6c404f32015-12-10 13:43:03 +01003871 struct cfg80211_pmksa *pmksa)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003872{
Arend van Spriel27a68fe2012-09-27 14:17:55 +02003873 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
Arend van Spriel0abb5f212012-10-22 13:55:32 -07003874 struct brcmf_if *ifp = netdev_priv(ndev);
Hante Meuleman6c404f32015-12-10 13:43:03 +01003875 struct brcmf_pmksa *pmk = &cfg->pmk_list.pmk[0];
3876 s32 err;
3877 u32 npmk, i;
Arend van Spriel5b435de2011-10-05 13:19:03 +02003878
Arend van Sprield96b8012012-12-05 15:26:02 +01003879 brcmf_dbg(TRACE, "Enter\n");
Arend van Sprielce81e312012-10-22 13:55:37 -07003880 if (!check_vif_up(ifp->vif))
Arend van Spriel5b435de2011-10-05 13:19:03 +02003881 return -EIO;
3882
Hante Meuleman6c404f32015-12-10 13:43:03 +01003883 brcmf_dbg(CONN, "del_pmksa - PMK bssid = %pM\n", &pmksa->bssid);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003884
Hante Meuleman6c404f32015-12-10 13:43:03 +01003885 npmk = le32_to_cpu(cfg->pmk_list.npmk);
3886 for (i = 0; i < npmk; i++)
3887 if (!memcmp(&pmksa->bssid, &pmk[i].bssid, ETH_ALEN))
Arend van Spriel5b435de2011-10-05 13:19:03 +02003888 break;
3889
Hante Meuleman6c404f32015-12-10 13:43:03 +01003890 if ((npmk > 0) && (i < npmk)) {
3891 for (; i < (npmk - 1); i++) {
3892 memcpy(&pmk[i].bssid, &pmk[i + 1].bssid, ETH_ALEN);
3893 memcpy(&pmk[i].pmkid, &pmk[i + 1].pmkid,
Arend van Spriel5b435de2011-10-05 13:19:03 +02003894 WLAN_PMKID_LEN);
3895 }
Hante Meuleman6c404f32015-12-10 13:43:03 +01003896 memset(&pmk[i], 0, sizeof(*pmk));
3897 cfg->pmk_list.npmk = cpu_to_le32(npmk - 1);
3898 } else {
3899 brcmf_err("Cache entry not found\n");
3900 return -EINVAL;
3901 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02003902
Hante Meuleman6c404f32015-12-10 13:43:03 +01003903 err = brcmf_update_pmklist(cfg, ifp);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003904
Arend van Sprield96b8012012-12-05 15:26:02 +01003905 brcmf_dbg(TRACE, "Exit\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02003906 return err;
3907
3908}
3909
3910static s32
3911brcmf_cfg80211_flush_pmksa(struct wiphy *wiphy, struct net_device *ndev)
3912{
Arend van Spriel27a68fe2012-09-27 14:17:55 +02003913 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
Arend van Spriel0abb5f212012-10-22 13:55:32 -07003914 struct brcmf_if *ifp = netdev_priv(ndev);
Hante Meuleman6c404f32015-12-10 13:43:03 +01003915 s32 err;
Arend van Spriel5b435de2011-10-05 13:19:03 +02003916
Arend van Sprield96b8012012-12-05 15:26:02 +01003917 brcmf_dbg(TRACE, "Enter\n");
Arend van Sprielce81e312012-10-22 13:55:37 -07003918 if (!check_vif_up(ifp->vif))
Arend van Spriel5b435de2011-10-05 13:19:03 +02003919 return -EIO;
3920
Hante Meuleman6c404f32015-12-10 13:43:03 +01003921 memset(&cfg->pmk_list, 0, sizeof(cfg->pmk_list));
3922 err = brcmf_update_pmklist(cfg, ifp);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003923
Arend van Sprield96b8012012-12-05 15:26:02 +01003924 brcmf_dbg(TRACE, "Exit\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02003925 return err;
3926
3927}
3928
Hante Meuleman1f170112013-02-06 18:40:38 +01003929static s32 brcmf_configure_opensecurity(struct brcmf_if *ifp)
Hante Meuleman1a873342012-09-27 14:17:54 +02003930{
3931 s32 err;
3932
3933 /* set auth */
Arend van Sprielac24be62012-10-22 10:36:23 -07003934 err = brcmf_fil_bsscfg_int_set(ifp, "auth", 0);
Hante Meuleman1a873342012-09-27 14:17:54 +02003935 if (err < 0) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01003936 brcmf_err("auth error %d\n", err);
Hante Meuleman1a873342012-09-27 14:17:54 +02003937 return err;
3938 }
3939 /* set wsec */
Arend van Sprielac24be62012-10-22 10:36:23 -07003940 err = brcmf_fil_bsscfg_int_set(ifp, "wsec", 0);
Hante Meuleman1a873342012-09-27 14:17:54 +02003941 if (err < 0) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01003942 brcmf_err("wsec error %d\n", err);
Hante Meuleman1a873342012-09-27 14:17:54 +02003943 return err;
3944 }
3945 /* set upper-layer auth */
Arend van Sprielac24be62012-10-22 10:36:23 -07003946 err = brcmf_fil_bsscfg_int_set(ifp, "wpa_auth", WPA_AUTH_NONE);
Hante Meuleman1a873342012-09-27 14:17:54 +02003947 if (err < 0) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01003948 brcmf_err("wpa_auth error %d\n", err);
Hante Meuleman1a873342012-09-27 14:17:54 +02003949 return err;
3950 }
3951
3952 return 0;
3953}
3954
3955static bool brcmf_valid_wpa_oui(u8 *oui, bool is_rsn_ie)
3956{
3957 if (is_rsn_ie)
3958 return (memcmp(oui, RSN_OUI, TLV_OUI_LEN) == 0);
3959
3960 return (memcmp(oui, WPA_OUI, TLV_OUI_LEN) == 0);
3961}
3962
3963static s32
Hante Meulemana44aa402014-12-03 21:05:33 +01003964brcmf_configure_wpaie(struct brcmf_if *ifp,
Johannes Berg4b5800f2014-01-15 14:55:59 +01003965 const struct brcmf_vs_tlv *wpa_ie,
3966 bool is_rsn_ie)
Hante Meuleman1a873342012-09-27 14:17:54 +02003967{
3968 u32 auth = 0; /* d11 open authentication */
3969 u16 count;
3970 s32 err = 0;
Hante Meuleman240d61a2016-02-17 11:27:10 +01003971 s32 len;
Hante Meuleman1a873342012-09-27 14:17:54 +02003972 u32 i;
3973 u32 wsec;
3974 u32 pval = 0;
3975 u32 gval = 0;
3976 u32 wpa_auth = 0;
3977 u32 offset;
3978 u8 *data;
3979 u16 rsn_cap;
3980 u32 wme_bss_disable;
Hante Meuleman240d61a2016-02-17 11:27:10 +01003981 u32 mfp;
Hante Meuleman1a873342012-09-27 14:17:54 +02003982
Arend van Sprield96b8012012-12-05 15:26:02 +01003983 brcmf_dbg(TRACE, "Enter\n");
Hante Meuleman1a873342012-09-27 14:17:54 +02003984 if (wpa_ie == NULL)
3985 goto exit;
3986
3987 len = wpa_ie->len + TLV_HDR_LEN;
3988 data = (u8 *)wpa_ie;
Hante Meuleman619c5a92013-01-02 15:12:39 +01003989 offset = TLV_HDR_LEN;
Hante Meuleman1a873342012-09-27 14:17:54 +02003990 if (!is_rsn_ie)
3991 offset += VS_IE_FIXED_HDR_LEN;
Hante Meuleman619c5a92013-01-02 15:12:39 +01003992 else
3993 offset += WPA_IE_VERSION_LEN;
Hante Meuleman1a873342012-09-27 14:17:54 +02003994
3995 /* check for multicast cipher suite */
3996 if (offset + WPA_IE_MIN_OUI_LEN > len) {
3997 err = -EINVAL;
Arend van Spriel57d6e912012-12-05 15:26:00 +01003998 brcmf_err("no multicast cipher suite\n");
Hante Meuleman1a873342012-09-27 14:17:54 +02003999 goto exit;
4000 }
4001
4002 if (!brcmf_valid_wpa_oui(&data[offset], is_rsn_ie)) {
4003 err = -EINVAL;
Arend van Spriel57d6e912012-12-05 15:26:00 +01004004 brcmf_err("ivalid OUI\n");
Hante Meuleman1a873342012-09-27 14:17:54 +02004005 goto exit;
4006 }
4007 offset += TLV_OUI_LEN;
4008
4009 /* pick up multicast cipher */
4010 switch (data[offset]) {
4011 case WPA_CIPHER_NONE:
4012 gval = 0;
4013 break;
4014 case WPA_CIPHER_WEP_40:
4015 case WPA_CIPHER_WEP_104:
4016 gval = WEP_ENABLED;
4017 break;
4018 case WPA_CIPHER_TKIP:
4019 gval = TKIP_ENABLED;
4020 break;
4021 case WPA_CIPHER_AES_CCM:
4022 gval = AES_ENABLED;
4023 break;
4024 default:
4025 err = -EINVAL;
Arend van Spriel57d6e912012-12-05 15:26:00 +01004026 brcmf_err("Invalid multi cast cipher info\n");
Hante Meuleman1a873342012-09-27 14:17:54 +02004027 goto exit;
4028 }
4029
4030 offset++;
4031 /* walk thru unicast cipher list and pick up what we recognize */
4032 count = data[offset] + (data[offset + 1] << 8);
4033 offset += WPA_IE_SUITE_COUNT_LEN;
4034 /* Check for unicast suite(s) */
4035 if (offset + (WPA_IE_MIN_OUI_LEN * count) > len) {
4036 err = -EINVAL;
Arend van Spriel57d6e912012-12-05 15:26:00 +01004037 brcmf_err("no unicast cipher suite\n");
Hante Meuleman1a873342012-09-27 14:17:54 +02004038 goto exit;
4039 }
4040 for (i = 0; i < count; i++) {
4041 if (!brcmf_valid_wpa_oui(&data[offset], is_rsn_ie)) {
4042 err = -EINVAL;
Arend van Spriel57d6e912012-12-05 15:26:00 +01004043 brcmf_err("ivalid OUI\n");
Hante Meuleman1a873342012-09-27 14:17:54 +02004044 goto exit;
4045 }
4046 offset += TLV_OUI_LEN;
4047 switch (data[offset]) {
4048 case WPA_CIPHER_NONE:
4049 break;
4050 case WPA_CIPHER_WEP_40:
4051 case WPA_CIPHER_WEP_104:
4052 pval |= WEP_ENABLED;
4053 break;
4054 case WPA_CIPHER_TKIP:
4055 pval |= TKIP_ENABLED;
4056 break;
4057 case WPA_CIPHER_AES_CCM:
4058 pval |= AES_ENABLED;
4059 break;
4060 default:
Arend van Spriel57d6e912012-12-05 15:26:00 +01004061 brcmf_err("Ivalid unicast security info\n");
Hante Meuleman1a873342012-09-27 14:17:54 +02004062 }
4063 offset++;
4064 }
4065 /* walk thru auth management suite list and pick up what we recognize */
4066 count = data[offset] + (data[offset + 1] << 8);
4067 offset += WPA_IE_SUITE_COUNT_LEN;
4068 /* Check for auth key management suite(s) */
4069 if (offset + (WPA_IE_MIN_OUI_LEN * count) > len) {
4070 err = -EINVAL;
Arend van Spriel57d6e912012-12-05 15:26:00 +01004071 brcmf_err("no auth key mgmt suite\n");
Hante Meuleman1a873342012-09-27 14:17:54 +02004072 goto exit;
4073 }
4074 for (i = 0; i < count; i++) {
4075 if (!brcmf_valid_wpa_oui(&data[offset], is_rsn_ie)) {
4076 err = -EINVAL;
Arend van Spriel57d6e912012-12-05 15:26:00 +01004077 brcmf_err("ivalid OUI\n");
Hante Meuleman1a873342012-09-27 14:17:54 +02004078 goto exit;
4079 }
4080 offset += TLV_OUI_LEN;
4081 switch (data[offset]) {
4082 case RSN_AKM_NONE:
Arend van Sprield96b8012012-12-05 15:26:02 +01004083 brcmf_dbg(TRACE, "RSN_AKM_NONE\n");
Hante Meuleman1a873342012-09-27 14:17:54 +02004084 wpa_auth |= WPA_AUTH_NONE;
4085 break;
4086 case RSN_AKM_UNSPECIFIED:
Arend van Sprield96b8012012-12-05 15:26:02 +01004087 brcmf_dbg(TRACE, "RSN_AKM_UNSPECIFIED\n");
Hante Meuleman1a873342012-09-27 14:17:54 +02004088 is_rsn_ie ? (wpa_auth |= WPA2_AUTH_UNSPECIFIED) :
4089 (wpa_auth |= WPA_AUTH_UNSPECIFIED);
4090 break;
4091 case RSN_AKM_PSK:
Arend van Sprield96b8012012-12-05 15:26:02 +01004092 brcmf_dbg(TRACE, "RSN_AKM_PSK\n");
Hante Meuleman1a873342012-09-27 14:17:54 +02004093 is_rsn_ie ? (wpa_auth |= WPA2_AUTH_PSK) :
4094 (wpa_auth |= WPA_AUTH_PSK);
4095 break;
Hante Meuleman240d61a2016-02-17 11:27:10 +01004096 case RSN_AKM_SHA256_PSK:
4097 brcmf_dbg(TRACE, "RSN_AKM_MFP_PSK\n");
4098 wpa_auth |= WPA2_AUTH_PSK_SHA256;
4099 break;
4100 case RSN_AKM_SHA256_1X:
4101 brcmf_dbg(TRACE, "RSN_AKM_MFP_1X\n");
4102 wpa_auth |= WPA2_AUTH_1X_SHA256;
4103 break;
Hante Meuleman1a873342012-09-27 14:17:54 +02004104 default:
Arend van Spriel57d6e912012-12-05 15:26:00 +01004105 brcmf_err("Ivalid key mgmt info\n");
Hante Meuleman1a873342012-09-27 14:17:54 +02004106 }
4107 offset++;
4108 }
4109
Hante Meuleman240d61a2016-02-17 11:27:10 +01004110 mfp = BRCMF_MFP_NONE;
Hante Meuleman1a873342012-09-27 14:17:54 +02004111 if (is_rsn_ie) {
4112 wme_bss_disable = 1;
4113 if ((offset + RSN_CAP_LEN) <= len) {
4114 rsn_cap = data[offset] + (data[offset + 1] << 8);
4115 if (rsn_cap & RSN_CAP_PTK_REPLAY_CNTR_MASK)
4116 wme_bss_disable = 0;
Hante Meuleman240d61a2016-02-17 11:27:10 +01004117 if (rsn_cap & RSN_CAP_MFPR_MASK) {
4118 brcmf_dbg(TRACE, "MFP Required\n");
4119 mfp = BRCMF_MFP_REQUIRED;
4120 /* Firmware only supports mfp required in
4121 * combination with WPA2_AUTH_PSK_SHA256 or
4122 * WPA2_AUTH_1X_SHA256.
4123 */
4124 if (!(wpa_auth & (WPA2_AUTH_PSK_SHA256 |
4125 WPA2_AUTH_1X_SHA256))) {
4126 err = -EINVAL;
4127 goto exit;
4128 }
4129 /* Firmware has requirement that WPA2_AUTH_PSK/
4130 * WPA2_AUTH_UNSPECIFIED be set, if SHA256 OUI
4131 * is to be included in the rsn ie.
4132 */
4133 if (wpa_auth & WPA2_AUTH_PSK_SHA256)
4134 wpa_auth |= WPA2_AUTH_PSK;
4135 else if (wpa_auth & WPA2_AUTH_1X_SHA256)
4136 wpa_auth |= WPA2_AUTH_UNSPECIFIED;
4137 } else if (rsn_cap & RSN_CAP_MFPC_MASK) {
4138 brcmf_dbg(TRACE, "MFP Capable\n");
4139 mfp = BRCMF_MFP_CAPABLE;
4140 }
Hante Meuleman1a873342012-09-27 14:17:54 +02004141 }
Hante Meuleman240d61a2016-02-17 11:27:10 +01004142 offset += RSN_CAP_LEN;
Hante Meuleman1a873342012-09-27 14:17:54 +02004143 /* set wme_bss_disable to sync RSN Capabilities */
Arend van Sprielac24be62012-10-22 10:36:23 -07004144 err = brcmf_fil_bsscfg_int_set(ifp, "wme_bss_disable",
Hante Meuleman81f5dcb2012-10-22 10:36:14 -07004145 wme_bss_disable);
Hante Meuleman1a873342012-09-27 14:17:54 +02004146 if (err < 0) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01004147 brcmf_err("wme_bss_disable error %d\n", err);
Hante Meuleman1a873342012-09-27 14:17:54 +02004148 goto exit;
4149 }
Hante Meuleman240d61a2016-02-17 11:27:10 +01004150
4151 /* Skip PMKID cnt as it is know to be 0 for AP. */
4152 offset += RSN_PMKID_COUNT_LEN;
4153
4154 /* See if there is BIP wpa suite left for MFP */
4155 if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_MFP) &&
4156 ((offset + WPA_IE_MIN_OUI_LEN) <= len)) {
4157 err = brcmf_fil_bsscfg_data_set(ifp, "bip",
4158 &data[offset],
4159 WPA_IE_MIN_OUI_LEN);
4160 if (err < 0) {
4161 brcmf_err("bip error %d\n", err);
4162 goto exit;
4163 }
4164 }
Hante Meuleman1a873342012-09-27 14:17:54 +02004165 }
4166 /* FOR WPS , set SES_OW_ENABLED */
4167 wsec = (pval | gval | SES_OW_ENABLED);
4168
4169 /* set auth */
Arend van Sprielac24be62012-10-22 10:36:23 -07004170 err = brcmf_fil_bsscfg_int_set(ifp, "auth", auth);
Hante Meuleman1a873342012-09-27 14:17:54 +02004171 if (err < 0) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01004172 brcmf_err("auth error %d\n", err);
Hante Meuleman1a873342012-09-27 14:17:54 +02004173 goto exit;
4174 }
4175 /* set wsec */
Arend van Sprielac24be62012-10-22 10:36:23 -07004176 err = brcmf_fil_bsscfg_int_set(ifp, "wsec", wsec);
Hante Meuleman1a873342012-09-27 14:17:54 +02004177 if (err < 0) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01004178 brcmf_err("wsec error %d\n", err);
Hante Meuleman1a873342012-09-27 14:17:54 +02004179 goto exit;
4180 }
Hante Meuleman240d61a2016-02-17 11:27:10 +01004181 /* Configure MFP, this needs to go after wsec otherwise the wsec command
4182 * will overwrite the values set by MFP
4183 */
4184 if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_MFP)) {
4185 err = brcmf_fil_bsscfg_int_set(ifp, "mfp", mfp);
4186 if (err < 0) {
4187 brcmf_err("mfp error %d\n", err);
4188 goto exit;
4189 }
4190 }
Hante Meuleman1a873342012-09-27 14:17:54 +02004191 /* set upper-layer auth */
Arend van Sprielac24be62012-10-22 10:36:23 -07004192 err = brcmf_fil_bsscfg_int_set(ifp, "wpa_auth", wpa_auth);
Hante Meuleman1a873342012-09-27 14:17:54 +02004193 if (err < 0) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01004194 brcmf_err("wpa_auth error %d\n", err);
Hante Meuleman1a873342012-09-27 14:17:54 +02004195 goto exit;
4196 }
4197
4198exit:
4199 return err;
4200}
4201
4202static s32
Arend van Spriel3082b9b2012-11-05 16:22:12 -08004203brcmf_parse_vndr_ies(const u8 *vndr_ie_buf, u32 vndr_ie_len,
Hante Meuleman1a873342012-09-27 14:17:54 +02004204 struct parsed_vndr_ies *vndr_ies)
4205{
Hante Meuleman1a873342012-09-27 14:17:54 +02004206 struct brcmf_vs_tlv *vndrie;
4207 struct brcmf_tlv *ie;
4208 struct parsed_vndr_ie_info *parsed_info;
4209 s32 remaining_len;
4210
4211 remaining_len = (s32)vndr_ie_len;
4212 memset(vndr_ies, 0, sizeof(*vndr_ies));
4213
4214 ie = (struct brcmf_tlv *)vndr_ie_buf;
4215 while (ie) {
4216 if (ie->id != WLAN_EID_VENDOR_SPECIFIC)
4217 goto next;
4218 vndrie = (struct brcmf_vs_tlv *)ie;
4219 /* len should be bigger than OUI length + one */
4220 if (vndrie->len < (VS_IE_FIXED_HDR_LEN - TLV_HDR_LEN + 1)) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01004221 brcmf_err("invalid vndr ie. length is too small %d\n",
4222 vndrie->len);
Hante Meuleman1a873342012-09-27 14:17:54 +02004223 goto next;
4224 }
4225 /* if wpa or wme ie, do not add ie */
4226 if (!memcmp(vndrie->oui, (u8 *)WPA_OUI, TLV_OUI_LEN) &&
4227 ((vndrie->oui_type == WPA_OUI_TYPE) ||
4228 (vndrie->oui_type == WME_OUI_TYPE))) {
Arend van Sprield96b8012012-12-05 15:26:02 +01004229 brcmf_dbg(TRACE, "Found WPA/WME oui. Do not add it\n");
Hante Meuleman1a873342012-09-27 14:17:54 +02004230 goto next;
4231 }
4232
4233 parsed_info = &vndr_ies->ie_info[vndr_ies->count];
4234
4235 /* save vndr ie information */
4236 parsed_info->ie_ptr = (char *)vndrie;
4237 parsed_info->ie_len = vndrie->len + TLV_HDR_LEN;
4238 memcpy(&parsed_info->vndrie, vndrie, sizeof(*vndrie));
4239
4240 vndr_ies->count++;
4241
Arend van Sprield96b8012012-12-05 15:26:02 +01004242 brcmf_dbg(TRACE, "** OUI %02x %02x %02x, type 0x%02x\n",
4243 parsed_info->vndrie.oui[0],
4244 parsed_info->vndrie.oui[1],
4245 parsed_info->vndrie.oui[2],
4246 parsed_info->vndrie.oui_type);
Hante Meuleman1a873342012-09-27 14:17:54 +02004247
Arend van Spriel9f440b72013-02-08 15:53:36 +01004248 if (vndr_ies->count >= VNDR_IE_PARSE_LIMIT)
Hante Meuleman1a873342012-09-27 14:17:54 +02004249 break;
4250next:
Hante Meulemanb41fc3d2012-11-28 21:44:13 +01004251 remaining_len -= (ie->len + TLV_HDR_LEN);
4252 if (remaining_len <= TLV_HDR_LEN)
Hante Meuleman1a873342012-09-27 14:17:54 +02004253 ie = NULL;
4254 else
Hante Meulemanb41fc3d2012-11-28 21:44:13 +01004255 ie = (struct brcmf_tlv *)(((u8 *)ie) + ie->len +
4256 TLV_HDR_LEN);
Hante Meuleman1a873342012-09-27 14:17:54 +02004257 }
Peter Senna Tschudin12f32372014-05-31 10:14:06 -03004258 return 0;
Hante Meuleman1a873342012-09-27 14:17:54 +02004259}
4260
4261static u32
4262brcmf_vndr_ie(u8 *iebuf, s32 pktflag, u8 *ie_ptr, u32 ie_len, s8 *add_del_cmd)
4263{
4264
Hante Meuleman1a873342012-09-27 14:17:54 +02004265 strncpy(iebuf, add_del_cmd, VNDR_IE_CMD_LEN - 1);
4266 iebuf[VNDR_IE_CMD_LEN - 1] = '\0';
4267
Vaishali Thakkar362126c2015-01-16 21:36:14 +05304268 put_unaligned_le32(1, &iebuf[VNDR_IE_COUNT_OFFSET]);
Hante Meuleman1a873342012-09-27 14:17:54 +02004269
Vaishali Thakkar362126c2015-01-16 21:36:14 +05304270 put_unaligned_le32(pktflag, &iebuf[VNDR_IE_PKTFLAG_OFFSET]);
Hante Meuleman1a873342012-09-27 14:17:54 +02004271
4272 memcpy(&iebuf[VNDR_IE_VSIE_OFFSET], ie_ptr, ie_len);
4273
4274 return ie_len + VNDR_IE_HDR_SIZE;
4275}
4276
Arend van Spriel1332e262012-11-05 16:22:18 -08004277s32 brcmf_vif_set_mgmt_ie(struct brcmf_cfg80211_vif *vif, s32 pktflag,
4278 const u8 *vndr_ie_buf, u32 vndr_ie_len)
Hante Meuleman1a873342012-09-27 14:17:54 +02004279{
Arend van Spriel1332e262012-11-05 16:22:18 -08004280 struct brcmf_if *ifp;
4281 struct vif_saved_ie *saved_ie;
Hante Meuleman1a873342012-09-27 14:17:54 +02004282 s32 err = 0;
4283 u8 *iovar_ie_buf;
4284 u8 *curr_ie_buf;
4285 u8 *mgmt_ie_buf = NULL;
Dan Carpenter3e4f3192012-10-10 11:13:12 -07004286 int mgmt_ie_buf_len;
Dan Carpenter81118d12012-10-10 11:13:07 -07004287 u32 *mgmt_ie_len;
Hante Meuleman1a873342012-09-27 14:17:54 +02004288 u32 del_add_ie_buf_len = 0;
4289 u32 total_ie_buf_len = 0;
4290 u32 parsed_ie_buf_len = 0;
4291 struct parsed_vndr_ies old_vndr_ies;
4292 struct parsed_vndr_ies new_vndr_ies;
4293 struct parsed_vndr_ie_info *vndrie_info;
4294 s32 i;
4295 u8 *ptr;
Dan Carpenter3e4f3192012-10-10 11:13:12 -07004296 int remained_buf_len;
Hante Meuleman1a873342012-09-27 14:17:54 +02004297
Arend van Spriel1332e262012-11-05 16:22:18 -08004298 if (!vif)
4299 return -ENODEV;
4300 ifp = vif->ifp;
4301 saved_ie = &vif->saved_ie;
4302
Hante Meuleman37a869e2015-10-29 20:33:17 +01004303 brcmf_dbg(TRACE, "bsscfgidx %d, pktflag : 0x%02X\n", ifp->bsscfgidx,
4304 pktflag);
Hante Meuleman1a873342012-09-27 14:17:54 +02004305 iovar_ie_buf = kzalloc(WL_EXTRA_BUF_MAX, GFP_KERNEL);
4306 if (!iovar_ie_buf)
4307 return -ENOMEM;
4308 curr_ie_buf = iovar_ie_buf;
Hante Meuleman89286dc2013-02-08 15:53:46 +01004309 switch (pktflag) {
4310 case BRCMF_VNDR_IE_PRBREQ_FLAG:
4311 mgmt_ie_buf = saved_ie->probe_req_ie;
4312 mgmt_ie_len = &saved_ie->probe_req_ie_len;
4313 mgmt_ie_buf_len = sizeof(saved_ie->probe_req_ie);
4314 break;
4315 case BRCMF_VNDR_IE_PRBRSP_FLAG:
4316 mgmt_ie_buf = saved_ie->probe_res_ie;
4317 mgmt_ie_len = &saved_ie->probe_res_ie_len;
4318 mgmt_ie_buf_len = sizeof(saved_ie->probe_res_ie);
4319 break;
4320 case BRCMF_VNDR_IE_BEACON_FLAG:
4321 mgmt_ie_buf = saved_ie->beacon_ie;
4322 mgmt_ie_len = &saved_ie->beacon_ie_len;
4323 mgmt_ie_buf_len = sizeof(saved_ie->beacon_ie);
4324 break;
4325 case BRCMF_VNDR_IE_ASSOCREQ_FLAG:
4326 mgmt_ie_buf = saved_ie->assoc_req_ie;
4327 mgmt_ie_len = &saved_ie->assoc_req_ie_len;
4328 mgmt_ie_buf_len = sizeof(saved_ie->assoc_req_ie);
4329 break;
4330 default:
4331 err = -EPERM;
4332 brcmf_err("not suitable type\n");
4333 goto exit;
Hante Meuleman1a873342012-09-27 14:17:54 +02004334 }
4335
4336 if (vndr_ie_len > mgmt_ie_buf_len) {
4337 err = -ENOMEM;
Arend van Spriel57d6e912012-12-05 15:26:00 +01004338 brcmf_err("extra IE size too big\n");
Hante Meuleman1a873342012-09-27 14:17:54 +02004339 goto exit;
4340 }
4341
4342 /* parse and save new vndr_ie in curr_ie_buff before comparing it */
4343 if (vndr_ie_buf && vndr_ie_len && curr_ie_buf) {
4344 ptr = curr_ie_buf;
4345 brcmf_parse_vndr_ies(vndr_ie_buf, vndr_ie_len, &new_vndr_ies);
4346 for (i = 0; i < new_vndr_ies.count; i++) {
4347 vndrie_info = &new_vndr_ies.ie_info[i];
4348 memcpy(ptr + parsed_ie_buf_len, vndrie_info->ie_ptr,
4349 vndrie_info->ie_len);
4350 parsed_ie_buf_len += vndrie_info->ie_len;
4351 }
4352 }
4353
Hante Meulemanb41fc3d2012-11-28 21:44:13 +01004354 if (mgmt_ie_buf && *mgmt_ie_len) {
Hante Meuleman1a873342012-09-27 14:17:54 +02004355 if (parsed_ie_buf_len && (parsed_ie_buf_len == *mgmt_ie_len) &&
4356 (memcmp(mgmt_ie_buf, curr_ie_buf,
4357 parsed_ie_buf_len) == 0)) {
Arend van Sprield96b8012012-12-05 15:26:02 +01004358 brcmf_dbg(TRACE, "Previous mgmt IE equals to current IE\n");
Hante Meuleman1a873342012-09-27 14:17:54 +02004359 goto exit;
4360 }
4361
4362 /* parse old vndr_ie */
4363 brcmf_parse_vndr_ies(mgmt_ie_buf, *mgmt_ie_len, &old_vndr_ies);
4364
4365 /* make a command to delete old ie */
4366 for (i = 0; i < old_vndr_ies.count; i++) {
4367 vndrie_info = &old_vndr_ies.ie_info[i];
4368
Arend van Sprield96b8012012-12-05 15:26:02 +01004369 brcmf_dbg(TRACE, "DEL ID : %d, Len: %d , OUI:%02x:%02x:%02x\n",
4370 vndrie_info->vndrie.id,
4371 vndrie_info->vndrie.len,
4372 vndrie_info->vndrie.oui[0],
4373 vndrie_info->vndrie.oui[1],
4374 vndrie_info->vndrie.oui[2]);
Hante Meuleman1a873342012-09-27 14:17:54 +02004375
4376 del_add_ie_buf_len = brcmf_vndr_ie(curr_ie_buf, pktflag,
4377 vndrie_info->ie_ptr,
4378 vndrie_info->ie_len,
4379 "del");
4380 curr_ie_buf += del_add_ie_buf_len;
4381 total_ie_buf_len += del_add_ie_buf_len;
4382 }
4383 }
4384
4385 *mgmt_ie_len = 0;
4386 /* Add if there is any extra IE */
4387 if (mgmt_ie_buf && parsed_ie_buf_len) {
4388 ptr = mgmt_ie_buf;
4389
4390 remained_buf_len = mgmt_ie_buf_len;
4391
4392 /* make a command to add new ie */
4393 for (i = 0; i < new_vndr_ies.count; i++) {
4394 vndrie_info = &new_vndr_ies.ie_info[i];
4395
Hante Meulemanb41fc3d2012-11-28 21:44:13 +01004396 /* verify remained buf size before copy data */
4397 if (remained_buf_len < (vndrie_info->vndrie.len +
4398 VNDR_IE_VSIE_OFFSET)) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01004399 brcmf_err("no space in mgmt_ie_buf: len left %d",
4400 remained_buf_len);
Hante Meulemanb41fc3d2012-11-28 21:44:13 +01004401 break;
4402 }
4403 remained_buf_len -= (vndrie_info->ie_len +
4404 VNDR_IE_VSIE_OFFSET);
4405
Arend van Sprield96b8012012-12-05 15:26:02 +01004406 brcmf_dbg(TRACE, "ADDED ID : %d, Len: %d, OUI:%02x:%02x:%02x\n",
4407 vndrie_info->vndrie.id,
4408 vndrie_info->vndrie.len,
4409 vndrie_info->vndrie.oui[0],
4410 vndrie_info->vndrie.oui[1],
4411 vndrie_info->vndrie.oui[2]);
Hante Meuleman1a873342012-09-27 14:17:54 +02004412
4413 del_add_ie_buf_len = brcmf_vndr_ie(curr_ie_buf, pktflag,
4414 vndrie_info->ie_ptr,
4415 vndrie_info->ie_len,
4416 "add");
Hante Meuleman1a873342012-09-27 14:17:54 +02004417
4418 /* save the parsed IE in wl struct */
4419 memcpy(ptr + (*mgmt_ie_len), vndrie_info->ie_ptr,
4420 vndrie_info->ie_len);
4421 *mgmt_ie_len += vndrie_info->ie_len;
4422
4423 curr_ie_buf += del_add_ie_buf_len;
4424 total_ie_buf_len += del_add_ie_buf_len;
4425 }
4426 }
4427 if (total_ie_buf_len) {
Arend van Sprielc1179032012-10-22 13:55:33 -07004428 err = brcmf_fil_bsscfg_data_set(ifp, "vndr_ie", iovar_ie_buf,
Hante Meuleman81f5dcb2012-10-22 10:36:14 -07004429 total_ie_buf_len);
Hante Meuleman1a873342012-09-27 14:17:54 +02004430 if (err)
Arend van Spriel57d6e912012-12-05 15:26:00 +01004431 brcmf_err("vndr ie set error : %d\n", err);
Hante Meuleman1a873342012-09-27 14:17:54 +02004432 }
4433
4434exit:
4435 kfree(iovar_ie_buf);
4436 return err;
4437}
4438
Arend van Spriel5f4f9f12013-02-08 15:53:41 +01004439s32 brcmf_vif_clear_mgmt_ies(struct brcmf_cfg80211_vif *vif)
4440{
4441 s32 pktflags[] = {
4442 BRCMF_VNDR_IE_PRBREQ_FLAG,
4443 BRCMF_VNDR_IE_PRBRSP_FLAG,
4444 BRCMF_VNDR_IE_BEACON_FLAG
4445 };
4446 int i;
4447
4448 for (i = 0; i < ARRAY_SIZE(pktflags); i++)
4449 brcmf_vif_set_mgmt_ie(vif, pktflags[i], NULL, 0);
4450
4451 memset(&vif->saved_ie, 0, sizeof(vif->saved_ie));
4452 return 0;
4453}
4454
Hante Meuleman1a873342012-09-27 14:17:54 +02004455static s32
Hante Meulemana0f07952013-02-08 15:53:47 +01004456brcmf_config_ap_mgmt_ie(struct brcmf_cfg80211_vif *vif,
4457 struct cfg80211_beacon_data *beacon)
4458{
4459 s32 err;
4460
4461 /* Set Beacon IEs to FW */
4462 err = brcmf_vif_set_mgmt_ie(vif, BRCMF_VNDR_IE_BEACON_FLAG,
4463 beacon->tail, beacon->tail_len);
4464 if (err) {
4465 brcmf_err("Set Beacon IE Failed\n");
4466 return err;
4467 }
4468 brcmf_dbg(TRACE, "Applied Vndr IEs for Beacon\n");
4469
4470 /* Set Probe Response IEs to FW */
4471 err = brcmf_vif_set_mgmt_ie(vif, BRCMF_VNDR_IE_PRBRSP_FLAG,
4472 beacon->proberesp_ies,
4473 beacon->proberesp_ies_len);
4474 if (err)
4475 brcmf_err("Set Probe Resp IE Failed\n");
4476 else
4477 brcmf_dbg(TRACE, "Applied Vndr IEs for Probe Resp\n");
4478
4479 return err;
4480}
4481
4482static s32
Hante Meuleman1a873342012-09-27 14:17:54 +02004483brcmf_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *ndev,
4484 struct cfg80211_ap_settings *settings)
4485{
4486 s32 ie_offset;
Hante Meuleman1c9d30c2013-05-27 21:09:58 +02004487 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
Arend van Sprielac24be62012-10-22 10:36:23 -07004488 struct brcmf_if *ifp = netdev_priv(ndev);
Johannes Berg4b5800f2014-01-15 14:55:59 +01004489 const struct brcmf_tlv *ssid_ie;
Arend van Spriel98027762014-12-21 12:43:53 +01004490 const struct brcmf_tlv *country_ie;
Hante Meuleman1a873342012-09-27 14:17:54 +02004491 struct brcmf_ssid_le ssid_le;
Hante Meuleman1a873342012-09-27 14:17:54 +02004492 s32 err = -EPERM;
Johannes Berg4b5800f2014-01-15 14:55:59 +01004493 const struct brcmf_tlv *rsn_ie;
4494 const struct brcmf_vs_tlv *wpa_ie;
Hante Meuleman1a873342012-09-27 14:17:54 +02004495 struct brcmf_join_params join_params;
Hante Meulemana0f07952013-02-08 15:53:47 +01004496 enum nl80211_iftype dev_role;
4497 struct brcmf_fil_bss_enable_le bss_enable;
Rafał Miłecki8707e082016-05-27 21:07:19 +02004498 u16 chanspec = chandef_to_chanspec(&cfg->d11inf, &settings->chandef);
Hante Meulemana44aa402014-12-03 21:05:33 +01004499 bool mbss;
Arend van Spriel98027762014-12-21 12:43:53 +01004500 int is_11d;
Hante Meuleman1a873342012-09-27 14:17:54 +02004501
Arend van Spriel06c01582014-05-12 10:47:37 +02004502 brcmf_dbg(TRACE, "ctrlchn=%d, center=%d, bw=%d, beacon_interval=%d, dtim_period=%d,\n",
4503 settings->chandef.chan->hw_value,
4504 settings->chandef.center_freq1, settings->chandef.width,
Arend van Spriela9a56872014-05-12 10:47:33 +02004505 settings->beacon_interval, settings->dtim_period);
Arend van Sprield96b8012012-12-05 15:26:02 +01004506 brcmf_dbg(TRACE, "ssid=%s(%zu), auth_type=%d, inactivity_timeout=%d\n",
4507 settings->ssid, settings->ssid_len, settings->auth_type,
4508 settings->inactivity_timeout);
Hante Meuleman426d0a52013-02-08 15:53:53 +01004509 dev_role = ifp->vif->wdev.iftype;
Hante Meulemana44aa402014-12-03 21:05:33 +01004510 mbss = ifp->vif->mbss;
Hante Meuleman1a873342012-09-27 14:17:54 +02004511
Arend van Spriel98027762014-12-21 12:43:53 +01004512 /* store current 11d setting */
4513 brcmf_fil_cmd_int_get(ifp, BRCMF_C_GET_REGULATORY, &ifp->vif->is_11d);
4514 country_ie = brcmf_parse_tlvs((u8 *)settings->beacon.tail,
4515 settings->beacon.tail_len,
4516 WLAN_EID_COUNTRY);
4517 is_11d = country_ie ? 1 : 0;
4518
Hante Meuleman1a873342012-09-27 14:17:54 +02004519 memset(&ssid_le, 0, sizeof(ssid_le));
4520 if (settings->ssid == NULL || settings->ssid_len == 0) {
4521 ie_offset = DOT11_MGMT_HDR_LEN + DOT11_BCN_PRB_FIXED_LEN;
4522 ssid_ie = brcmf_parse_tlvs(
4523 (u8 *)&settings->beacon.head[ie_offset],
4524 settings->beacon.head_len - ie_offset,
4525 WLAN_EID_SSID);
4526 if (!ssid_ie)
4527 return -EINVAL;
4528
4529 memcpy(ssid_le.SSID, ssid_ie->data, ssid_ie->len);
4530 ssid_le.SSID_len = cpu_to_le32(ssid_ie->len);
Arend van Sprield96b8012012-12-05 15:26:02 +01004531 brcmf_dbg(TRACE, "SSID is (%s) in Head\n", ssid_le.SSID);
Hante Meuleman1a873342012-09-27 14:17:54 +02004532 } else {
4533 memcpy(ssid_le.SSID, settings->ssid, settings->ssid_len);
4534 ssid_le.SSID_len = cpu_to_le32((u32)settings->ssid_len);
4535 }
4536
Hante Meulemana44aa402014-12-03 21:05:33 +01004537 if (!mbss) {
4538 brcmf_set_mpc(ifp, 0);
Franky Lin52f22fb2016-02-17 11:26:55 +01004539 brcmf_configure_arp_nd_offload(ifp, false);
Hante Meulemana44aa402014-12-03 21:05:33 +01004540 }
Hante Meuleman1a873342012-09-27 14:17:54 +02004541
4542 /* find the RSN_IE */
4543 rsn_ie = brcmf_parse_tlvs((u8 *)settings->beacon.tail,
4544 settings->beacon.tail_len, WLAN_EID_RSN);
4545
4546 /* find the WPA_IE */
4547 wpa_ie = brcmf_find_wpaie((u8 *)settings->beacon.tail,
4548 settings->beacon.tail_len);
4549
Hante Meuleman1a873342012-09-27 14:17:54 +02004550 if ((wpa_ie != NULL || rsn_ie != NULL)) {
Arend van Sprield96b8012012-12-05 15:26:02 +01004551 brcmf_dbg(TRACE, "WPA(2) IE is found\n");
Hante Meuleman1a873342012-09-27 14:17:54 +02004552 if (wpa_ie != NULL) {
4553 /* WPA IE */
Hante Meulemana44aa402014-12-03 21:05:33 +01004554 err = brcmf_configure_wpaie(ifp, wpa_ie, false);
Hante Meuleman1a873342012-09-27 14:17:54 +02004555 if (err < 0)
4556 goto exit;
Hante Meuleman1a873342012-09-27 14:17:54 +02004557 } else {
Hante Meulemana44aa402014-12-03 21:05:33 +01004558 struct brcmf_vs_tlv *tmp_ie;
4559
4560 tmp_ie = (struct brcmf_vs_tlv *)rsn_ie;
4561
Hante Meuleman1a873342012-09-27 14:17:54 +02004562 /* RSN IE */
Hante Meulemana44aa402014-12-03 21:05:33 +01004563 err = brcmf_configure_wpaie(ifp, tmp_ie, true);
Hante Meuleman1a873342012-09-27 14:17:54 +02004564 if (err < 0)
4565 goto exit;
Hante Meuleman1a873342012-09-27 14:17:54 +02004566 }
Hante Meuleman1a873342012-09-27 14:17:54 +02004567 } else {
Arend van Sprield96b8012012-12-05 15:26:02 +01004568 brcmf_dbg(TRACE, "No WPA(2) IEs found\n");
Hante Meuleman1f170112013-02-06 18:40:38 +01004569 brcmf_configure_opensecurity(ifp);
Hante Meuleman1a873342012-09-27 14:17:54 +02004570 }
Hante Meuleman1a873342012-09-27 14:17:54 +02004571
Hante Meulemana0f07952013-02-08 15:53:47 +01004572 brcmf_config_ap_mgmt_ie(ifp->vif, &settings->beacon);
Hante Meuleman1a873342012-09-27 14:17:54 +02004573
Rafał Miłecki8707e082016-05-27 21:07:19 +02004574 /* Parameters shared by all radio interfaces */
Hante Meulemana44aa402014-12-03 21:05:33 +01004575 if (!mbss) {
Arend van Spriel98027762014-12-21 12:43:53 +01004576 if (is_11d != ifp->vif->is_11d) {
4577 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_REGULATORY,
4578 is_11d);
4579 if (err < 0) {
4580 brcmf_err("Regulatory Set Error, %d\n", err);
4581 goto exit;
4582 }
4583 }
Hante Meulemana44aa402014-12-03 21:05:33 +01004584 if (settings->beacon_interval) {
4585 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_BCNPRD,
4586 settings->beacon_interval);
4587 if (err < 0) {
4588 brcmf_err("Beacon Interval Set Error, %d\n",
4589 err);
4590 goto exit;
4591 }
4592 }
4593 if (settings->dtim_period) {
4594 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_DTIMPRD,
4595 settings->dtim_period);
4596 if (err < 0) {
4597 brcmf_err("DTIM Interval Set Error, %d\n", err);
4598 goto exit;
4599 }
4600 }
4601
Hante Meuleman8abffd82015-10-29 20:33:16 +01004602 if ((dev_role == NL80211_IFTYPE_AP) &&
4603 ((ifp->ifidx == 0) ||
4604 !brcmf_feat_is_enabled(ifp, BRCMF_FEAT_RSDB))) {
Hante Meulemana44aa402014-12-03 21:05:33 +01004605 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_DOWN, 1);
4606 if (err < 0) {
4607 brcmf_err("BRCMF_C_DOWN error %d\n", err);
4608 goto exit;
4609 }
4610 brcmf_fil_iovar_int_set(ifp, "apsta", 0);
4611 }
4612
4613 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_INFRA, 1);
Hante Meuleman1a873342012-09-27 14:17:54 +02004614 if (err < 0) {
Hante Meulemana44aa402014-12-03 21:05:33 +01004615 brcmf_err("SET INFRA error %d\n", err);
Hante Meuleman1a873342012-09-27 14:17:54 +02004616 goto exit;
4617 }
Arend van Spriel98027762014-12-21 12:43:53 +01004618 } else if (WARN_ON(is_11d != ifp->vif->is_11d)) {
4619 /* Multiple-BSS should use same 11d configuration */
4620 err = -EINVAL;
4621 goto exit;
Hante Meuleman1a873342012-09-27 14:17:54 +02004622 }
Rafał Miłecki8707e082016-05-27 21:07:19 +02004623
4624 /* Interface specific setup */
Hante Meulemana0f07952013-02-08 15:53:47 +01004625 if (dev_role == NL80211_IFTYPE_AP) {
Hante Meulemana44aa402014-12-03 21:05:33 +01004626 if ((brcmf_feat_is_enabled(ifp, BRCMF_FEAT_MBSS)) && (!mbss))
4627 brcmf_fil_iovar_int_set(ifp, "mbss", 1);
4628
Hante Meulemana0f07952013-02-08 15:53:47 +01004629 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_AP, 1);
4630 if (err < 0) {
4631 brcmf_err("setting AP mode failed %d\n", err);
4632 goto exit;
4633 }
Rafał Miłecki8707e082016-05-27 21:07:19 +02004634 if (!mbss) {
4635 /* Firmware 10.x requires setting channel after enabling
4636 * AP and before bringing interface up.
4637 */
4638 err = brcmf_fil_iovar_int_set(ifp, "chanspec", chanspec);
4639 if (err < 0) {
4640 brcmf_err("Set Channel failed: chspec=%d, %d\n",
4641 chanspec, err);
4642 goto exit;
4643 }
4644 }
Hante Meulemana0f07952013-02-08 15:53:47 +01004645 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_UP, 1);
4646 if (err < 0) {
4647 brcmf_err("BRCMF_C_UP error (%d)\n", err);
4648 goto exit;
4649 }
Hante Meuleman118eb302014-12-21 12:43:49 +01004650 /* On DOWN the firmware removes the WEP keys, reconfigure
4651 * them if they were set.
4652 */
4653 brcmf_cfg80211_reconfigure_wep(ifp);
Hante Meulemana0f07952013-02-08 15:53:47 +01004654
4655 memset(&join_params, 0, sizeof(join_params));
4656 /* join parameters starts with ssid */
4657 memcpy(&join_params.ssid_le, &ssid_le, sizeof(ssid_le));
4658 /* create softap */
4659 err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_SSID,
4660 &join_params, sizeof(join_params));
4661 if (err < 0) {
4662 brcmf_err("SET SSID error (%d)\n", err);
4663 goto exit;
4664 }
4665 brcmf_dbg(TRACE, "AP mode configuration complete\n");
Rafał Miłecki8707e082016-05-27 21:07:19 +02004666 } else if (dev_role == NL80211_IFTYPE_P2P_GO) {
4667 err = brcmf_fil_iovar_int_set(ifp, "chanspec", chanspec);
4668 if (err < 0) {
4669 brcmf_err("Set Channel failed: chspec=%d, %d\n",
4670 chanspec, err);
4671 goto exit;
4672 }
Hante Meulemana0f07952013-02-08 15:53:47 +01004673 err = brcmf_fil_bsscfg_data_set(ifp, "ssid", &ssid_le,
4674 sizeof(ssid_le));
4675 if (err < 0) {
4676 brcmf_err("setting ssid failed %d\n", err);
4677 goto exit;
4678 }
Hante Meuleman37a869e2015-10-29 20:33:17 +01004679 bss_enable.bsscfgidx = cpu_to_le32(ifp->bsscfgidx);
Hante Meulemana0f07952013-02-08 15:53:47 +01004680 bss_enable.enable = cpu_to_le32(1);
4681 err = brcmf_fil_iovar_data_set(ifp, "bss", &bss_enable,
4682 sizeof(bss_enable));
4683 if (err < 0) {
4684 brcmf_err("bss_enable config failed %d\n", err);
4685 goto exit;
4686 }
4687
4688 brcmf_dbg(TRACE, "GO mode configuration complete\n");
Rafał Miłecki8707e082016-05-27 21:07:19 +02004689 } else {
4690 WARN_ON(1);
Hante Meulemana0f07952013-02-08 15:53:47 +01004691 }
Rafał Miłecki8707e082016-05-27 21:07:19 +02004692
Arend van Sprielc1179032012-10-22 13:55:33 -07004693 set_bit(BRCMF_VIF_STATUS_AP_CREATED, &ifp->vif->sme_state);
Hante Meuleman92121e62015-10-08 20:33:21 +02004694 brcmf_net_setcarrier(ifp, true);
Hante Meuleman1a873342012-09-27 14:17:54 +02004695
4696exit:
Hante Meulemana44aa402014-12-03 21:05:33 +01004697 if ((err) && (!mbss)) {
Arend van Sprielf96aa072013-04-05 10:57:48 +02004698 brcmf_set_mpc(ifp, 1);
Franky Lin52f22fb2016-02-17 11:26:55 +01004699 brcmf_configure_arp_nd_offload(ifp, true);
Hante Meulemanb3657452013-05-27 21:09:53 +02004700 }
Hante Meuleman1a873342012-09-27 14:17:54 +02004701 return err;
4702}
4703
4704static int brcmf_cfg80211_stop_ap(struct wiphy *wiphy, struct net_device *ndev)
4705{
Arend van Sprielc1179032012-10-22 13:55:33 -07004706 struct brcmf_if *ifp = netdev_priv(ndev);
Hante Meuleman5c33a942013-04-02 21:06:18 +02004707 s32 err;
Hante Meuleman426d0a52013-02-08 15:53:53 +01004708 struct brcmf_fil_bss_enable_le bss_enable;
Hante Meuleman5c33a942013-04-02 21:06:18 +02004709 struct brcmf_join_params join_params;
Hante Meuleman1a873342012-09-27 14:17:54 +02004710
Arend van Sprield96b8012012-12-05 15:26:02 +01004711 brcmf_dbg(TRACE, "Enter\n");
Hante Meuleman1a873342012-09-27 14:17:54 +02004712
Hante Meuleman426d0a52013-02-08 15:53:53 +01004713 if (ifp->vif->wdev.iftype == NL80211_IFTYPE_AP) {
Hante Meuleman1a873342012-09-27 14:17:54 +02004714 /* Due to most likely deauths outstanding we sleep */
4715 /* first to make sure they get processed by fw. */
4716 msleep(400);
Hante Meuleman5c33a942013-04-02 21:06:18 +02004717
Hante Meulemana44aa402014-12-03 21:05:33 +01004718 if (ifp->vif->mbss) {
4719 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_DOWN, 1);
4720 return err;
4721 }
4722
Hante Meuleman5c33a942013-04-02 21:06:18 +02004723 memset(&join_params, 0, sizeof(join_params));
4724 err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_SSID,
4725 &join_params, sizeof(join_params));
4726 if (err < 0)
4727 brcmf_err("SET SSID error (%d)\n", err);
Hante Meulemana44aa402014-12-03 21:05:33 +01004728 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_DOWN, 1);
Hante Meuleman5c33a942013-04-02 21:06:18 +02004729 if (err < 0)
Hante Meulemana44aa402014-12-03 21:05:33 +01004730 brcmf_err("BRCMF_C_DOWN error %d\n", err);
Hante Meuleman5c33a942013-04-02 21:06:18 +02004731 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_AP, 0);
4732 if (err < 0)
4733 brcmf_err("setting AP mode failed %d\n", err);
4734 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_INFRA, 0);
4735 if (err < 0)
4736 brcmf_err("setting INFRA mode failed %d\n", err);
Hante Meulemana44aa402014-12-03 21:05:33 +01004737 if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_MBSS))
4738 brcmf_fil_iovar_int_set(ifp, "mbss", 0);
Arend van Spriel98027762014-12-21 12:43:53 +01004739 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_REGULATORY,
4740 ifp->vif->is_11d);
4741 if (err < 0)
4742 brcmf_err("restoring REGULATORY setting failed %d\n",
4743 err);
Hante Meulemana44aa402014-12-03 21:05:33 +01004744 /* Bring device back up so it can be used again */
4745 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_UP, 1);
4746 if (err < 0)
4747 brcmf_err("BRCMF_C_UP error %d\n", err);
Hante Meuleman426d0a52013-02-08 15:53:53 +01004748 } else {
Hante Meuleman37a869e2015-10-29 20:33:17 +01004749 bss_enable.bsscfgidx = cpu_to_le32(ifp->bsscfgidx);
Hante Meuleman426d0a52013-02-08 15:53:53 +01004750 bss_enable.enable = cpu_to_le32(0);
4751 err = brcmf_fil_iovar_data_set(ifp, "bss", &bss_enable,
4752 sizeof(bss_enable));
4753 if (err < 0)
4754 brcmf_err("bss_enable config failed %d\n", err);
Hante Meuleman1a873342012-09-27 14:17:54 +02004755 }
Arend van Sprielf96aa072013-04-05 10:57:48 +02004756 brcmf_set_mpc(ifp, 1);
Franky Lin52f22fb2016-02-17 11:26:55 +01004757 brcmf_configure_arp_nd_offload(ifp, true);
Hante Meuleman426d0a52013-02-08 15:53:53 +01004758 clear_bit(BRCMF_VIF_STATUS_AP_CREATED, &ifp->vif->sme_state);
Hante Meuleman92121e62015-10-08 20:33:21 +02004759 brcmf_net_setcarrier(ifp, false);
Hante Meuleman426d0a52013-02-08 15:53:53 +01004760
Hante Meuleman1a873342012-09-27 14:17:54 +02004761 return err;
4762}
4763
Hante Meulemana0f07952013-02-08 15:53:47 +01004764static s32
4765brcmf_cfg80211_change_beacon(struct wiphy *wiphy, struct net_device *ndev,
4766 struct cfg80211_beacon_data *info)
4767{
Hante Meulemana0f07952013-02-08 15:53:47 +01004768 struct brcmf_if *ifp = netdev_priv(ndev);
4769 s32 err;
4770
4771 brcmf_dbg(TRACE, "Enter\n");
4772
Hante Meulemana0f07952013-02-08 15:53:47 +01004773 err = brcmf_config_ap_mgmt_ie(ifp->vif, info);
4774
4775 return err;
4776}
4777
Hante Meuleman1a873342012-09-27 14:17:54 +02004778static int
4779brcmf_cfg80211_del_station(struct wiphy *wiphy, struct net_device *ndev,
Jouni Malinen89c771e2014-10-10 20:52:40 +03004780 struct station_del_parameters *params)
Hante Meuleman1a873342012-09-27 14:17:54 +02004781{
Hante Meulemana0f07952013-02-08 15:53:47 +01004782 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
Hante Meuleman1a873342012-09-27 14:17:54 +02004783 struct brcmf_scb_val_le scbval;
Arend van Spriel0abb5f212012-10-22 13:55:32 -07004784 struct brcmf_if *ifp = netdev_priv(ndev);
Hante Meuleman1a873342012-09-27 14:17:54 +02004785 s32 err;
4786
Jouni Malinen89c771e2014-10-10 20:52:40 +03004787 if (!params->mac)
Hante Meuleman1a873342012-09-27 14:17:54 +02004788 return -EFAULT;
4789
Jouni Malinen89c771e2014-10-10 20:52:40 +03004790 brcmf_dbg(TRACE, "Enter %pM\n", params->mac);
Hante Meuleman1a873342012-09-27 14:17:54 +02004791
Hante Meulemana0f07952013-02-08 15:53:47 +01004792 if (ifp->vif == cfg->p2p.bss_idx[P2PAPI_BSSCFG_DEVICE].vif)
4793 ifp = cfg->p2p.bss_idx[P2PAPI_BSSCFG_PRIMARY].vif->ifp;
Arend van Sprielce81e312012-10-22 13:55:37 -07004794 if (!check_vif_up(ifp->vif))
Hante Meuleman1a873342012-09-27 14:17:54 +02004795 return -EIO;
4796
Jouni Malinen89c771e2014-10-10 20:52:40 +03004797 memcpy(&scbval.ea, params->mac, ETH_ALEN);
Rafał Miłeckiba8b6ae2015-02-08 11:51:47 +01004798 scbval.val = cpu_to_le32(params->reason_code);
Arend van Spriel0abb5f212012-10-22 13:55:32 -07004799 err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SCB_DEAUTHENTICATE_FOR_REASON,
Hante Meuleman81f5dcb2012-10-22 10:36:14 -07004800 &scbval, sizeof(scbval));
Hante Meuleman1a873342012-09-27 14:17:54 +02004801 if (err)
Arend van Spriel57d6e912012-12-05 15:26:00 +01004802 brcmf_err("SCB_DEAUTHENTICATE_FOR_REASON failed %d\n", err);
Hante Meuleman7ab6acd2013-02-08 15:53:58 +01004803
Arend van Sprield96b8012012-12-05 15:26:02 +01004804 brcmf_dbg(TRACE, "Exit\n");
Hante Meuleman1a873342012-09-27 14:17:54 +02004805 return err;
4806}
4807
Hante Meuleman6b89dcb2014-12-21 12:43:52 +01004808static int
4809brcmf_cfg80211_change_station(struct wiphy *wiphy, struct net_device *ndev,
4810 const u8 *mac, struct station_parameters *params)
4811{
4812 struct brcmf_if *ifp = netdev_priv(ndev);
4813 s32 err;
4814
4815 brcmf_dbg(TRACE, "Enter, MAC %pM, mask 0x%04x set 0x%04x\n", mac,
4816 params->sta_flags_mask, params->sta_flags_set);
4817
4818 /* Ignore all 00 MAC */
4819 if (is_zero_ether_addr(mac))
4820 return 0;
4821
4822 if (!(params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED)))
4823 return 0;
4824
4825 if (params->sta_flags_set & BIT(NL80211_STA_FLAG_AUTHORIZED))
4826 err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_SCB_AUTHORIZE,
4827 (void *)mac, ETH_ALEN);
4828 else
4829 err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_SCB_DEAUTHORIZE,
4830 (void *)mac, ETH_ALEN);
4831 if (err < 0)
4832 brcmf_err("Setting SCB (de-)authorize failed, %d\n", err);
4833
4834 return err;
4835}
Hante Meuleman0de8aac2013-02-08 15:53:38 +01004836
4837static void
4838brcmf_cfg80211_mgmt_frame_register(struct wiphy *wiphy,
4839 struct wireless_dev *wdev,
4840 u16 frame_type, bool reg)
4841{
Arend van Spriel7fa2e352013-04-05 10:57:47 +02004842 struct brcmf_cfg80211_vif *vif;
Hante Meuleman0de8aac2013-02-08 15:53:38 +01004843 u16 mgmt_type;
4844
4845 brcmf_dbg(TRACE, "Enter, frame_type %04x, reg=%d\n", frame_type, reg);
4846
4847 mgmt_type = (frame_type & IEEE80211_FCTL_STYPE) >> 4;
Arend van Spriel7fa2e352013-04-05 10:57:47 +02004848 vif = container_of(wdev, struct brcmf_cfg80211_vif, wdev);
Hante Meuleman0de8aac2013-02-08 15:53:38 +01004849 if (reg)
4850 vif->mgmt_rx_reg |= BIT(mgmt_type);
4851 else
Hante Meuleman318a64c2013-02-08 15:53:45 +01004852 vif->mgmt_rx_reg &= ~BIT(mgmt_type);
Hante Meuleman0de8aac2013-02-08 15:53:38 +01004853}
4854
4855
4856static int
4857brcmf_cfg80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02004858 struct cfg80211_mgmt_tx_params *params, u64 *cookie)
Hante Meuleman0de8aac2013-02-08 15:53:38 +01004859{
4860 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02004861 struct ieee80211_channel *chan = params->chan;
4862 const u8 *buf = params->buf;
4863 size_t len = params->len;
Hante Meuleman0de8aac2013-02-08 15:53:38 +01004864 const struct ieee80211_mgmt *mgmt;
4865 struct brcmf_cfg80211_vif *vif;
4866 s32 err = 0;
4867 s32 ie_offset;
4868 s32 ie_len;
Hante Meuleman18e2f612013-02-08 15:53:49 +01004869 struct brcmf_fil_action_frame_le *action_frame;
4870 struct brcmf_fil_af_params_le *af_params;
4871 bool ack;
4872 s32 chan_nr;
Antonio Quartullic2ff8ca2013-06-11 14:20:01 +02004873 u32 freq;
Hante Meuleman0de8aac2013-02-08 15:53:38 +01004874
4875 brcmf_dbg(TRACE, "Enter\n");
4876
4877 *cookie = 0;
4878
4879 mgmt = (const struct ieee80211_mgmt *)buf;
4880
Hante Meulemana0f07952013-02-08 15:53:47 +01004881 if (!ieee80211_is_mgmt(mgmt->frame_control)) {
4882 brcmf_err("Driver only allows MGMT packet type\n");
4883 return -EPERM;
Hante Meuleman0de8aac2013-02-08 15:53:38 +01004884 }
Hante Meulemana0f07952013-02-08 15:53:47 +01004885
Antonio Quartullic2ff8ca2013-06-11 14:20:01 +02004886 vif = container_of(wdev, struct brcmf_cfg80211_vif, wdev);
4887
Hante Meulemana0f07952013-02-08 15:53:47 +01004888 if (ieee80211_is_probe_resp(mgmt->frame_control)) {
4889 /* Right now the only reason to get a probe response */
4890 /* is for p2p listen response or for p2p GO from */
4891 /* wpa_supplicant. Unfortunately the probe is send */
4892 /* on primary ndev, while dongle wants it on the p2p */
4893 /* vif. Since this is only reason for a probe */
4894 /* response to be sent, the vif is taken from cfg. */
4895 /* If ever desired to send proberesp for non p2p */
4896 /* response then data should be checked for */
4897 /* "DIRECT-". Note in future supplicant will take */
4898 /* dedicated p2p wdev to do this and then this 'hack'*/
4899 /* is not needed anymore. */
4900 ie_offset = DOT11_MGMT_HDR_LEN +
4901 DOT11_BCN_PRB_FIXED_LEN;
4902 ie_len = len - ie_offset;
Hante Meulemana0f07952013-02-08 15:53:47 +01004903 if (vif == cfg->p2p.bss_idx[P2PAPI_BSSCFG_PRIMARY].vif)
4904 vif = cfg->p2p.bss_idx[P2PAPI_BSSCFG_DEVICE].vif;
4905 err = brcmf_vif_set_mgmt_ie(vif,
4906 BRCMF_VNDR_IE_PRBRSP_FLAG,
4907 &buf[ie_offset],
4908 ie_len);
4909 cfg80211_mgmt_tx_status(wdev, *cookie, buf, len, true,
4910 GFP_KERNEL);
Hante Meuleman18e2f612013-02-08 15:53:49 +01004911 } else if (ieee80211_is_action(mgmt->frame_control)) {
4912 af_params = kzalloc(sizeof(*af_params), GFP_KERNEL);
4913 if (af_params == NULL) {
4914 brcmf_err("unable to allocate frame\n");
4915 err = -ENOMEM;
4916 goto exit;
4917 }
4918 action_frame = &af_params->action_frame;
4919 /* Add the packet Id */
4920 action_frame->packet_id = cpu_to_le32(*cookie);
4921 /* Add BSSID */
4922 memcpy(&action_frame->da[0], &mgmt->da[0], ETH_ALEN);
4923 memcpy(&af_params->bssid[0], &mgmt->bssid[0], ETH_ALEN);
4924 /* Add the length exepted for 802.11 header */
4925 action_frame->len = cpu_to_le16(len - DOT11_MGMT_HDR_LEN);
Antonio Quartullic2ff8ca2013-06-11 14:20:01 +02004926 /* Add the channel. Use the one specified as parameter if any or
4927 * the current one (got from the firmware) otherwise
4928 */
4929 if (chan)
4930 freq = chan->center_freq;
4931 else
4932 brcmf_fil_cmd_int_get(vif->ifp, BRCMF_C_GET_CHANNEL,
4933 &freq);
4934 chan_nr = ieee80211_frequency_to_channel(freq);
Hante Meuleman18e2f612013-02-08 15:53:49 +01004935 af_params->channel = cpu_to_le32(chan_nr);
4936
4937 memcpy(action_frame->data, &buf[DOT11_MGMT_HDR_LEN],
4938 le16_to_cpu(action_frame->len));
4939
4940 brcmf_dbg(TRACE, "Action frame, cookie=%lld, len=%d, freq=%d\n",
Antonio Quartulli86a9c4a2013-06-19 13:35:31 +02004941 *cookie, le16_to_cpu(action_frame->len), freq);
Hante Meuleman18e2f612013-02-08 15:53:49 +01004942
Arend van Spriel7fa2e352013-04-05 10:57:47 +02004943 ack = brcmf_p2p_send_action_frame(cfg, cfg_to_ndev(cfg),
Hante Meuleman18e2f612013-02-08 15:53:49 +01004944 af_params);
4945
4946 cfg80211_mgmt_tx_status(wdev, *cookie, buf, len, ack,
4947 GFP_KERNEL);
4948 kfree(af_params);
Hante Meulemana0f07952013-02-08 15:53:47 +01004949 } else {
4950 brcmf_dbg(TRACE, "Unhandled, fc=%04x!!\n", mgmt->frame_control);
4951 brcmf_dbg_hex_dump(true, buf, len, "payload, len=%Zu\n", len);
4952 }
4953
Hante Meuleman18e2f612013-02-08 15:53:49 +01004954exit:
Hante Meuleman0de8aac2013-02-08 15:53:38 +01004955 return err;
4956}
4957
4958
4959static int
4960brcmf_cfg80211_cancel_remain_on_channel(struct wiphy *wiphy,
4961 struct wireless_dev *wdev,
4962 u64 cookie)
4963{
4964 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
4965 struct brcmf_cfg80211_vif *vif;
4966 int err = 0;
4967
4968 brcmf_dbg(TRACE, "Enter p2p listen cancel\n");
4969
4970 vif = cfg->p2p.bss_idx[P2PAPI_BSSCFG_DEVICE].vif;
4971 if (vif == NULL) {
4972 brcmf_err("No p2p device available for probe response\n");
4973 err = -ENODEV;
4974 goto exit;
4975 }
4976 brcmf_p2p_cancel_remain_on_channel(vif->ifp);
4977exit:
4978 return err;
4979}
4980
Rafał Miłeckiee6e7aa2016-05-20 13:38:58 +02004981static int brcmf_cfg80211_get_channel(struct wiphy *wiphy,
4982 struct wireless_dev *wdev,
4983 struct cfg80211_chan_def *chandef)
4984{
4985 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
4986 struct net_device *ndev = wdev->netdev;
4987 struct brcmf_if *ifp;
4988 struct brcmu_chan ch;
4989 enum nl80211_band band = 0;
4990 enum nl80211_chan_width width = 0;
4991 u32 chanspec;
4992 int freq, err;
4993
4994 if (!ndev)
4995 return -ENODEV;
4996 ifp = netdev_priv(ndev);
4997
4998 err = brcmf_fil_iovar_int_get(ifp, "chanspec", &chanspec);
4999 if (err) {
5000 brcmf_err("chanspec failed (%d)\n", err);
5001 return err;
5002 }
5003
5004 ch.chspec = chanspec;
5005 cfg->d11inf.decchspec(&ch);
5006
5007 switch (ch.band) {
5008 case BRCMU_CHAN_BAND_2G:
5009 band = NL80211_BAND_2GHZ;
5010 break;
5011 case BRCMU_CHAN_BAND_5G:
5012 band = NL80211_BAND_5GHZ;
5013 break;
5014 }
5015
5016 switch (ch.bw) {
5017 case BRCMU_CHAN_BW_80:
5018 width = NL80211_CHAN_WIDTH_80;
5019 break;
5020 case BRCMU_CHAN_BW_40:
5021 width = NL80211_CHAN_WIDTH_40;
5022 break;
5023 case BRCMU_CHAN_BW_20:
5024 width = NL80211_CHAN_WIDTH_20;
5025 break;
5026 case BRCMU_CHAN_BW_80P80:
5027 width = NL80211_CHAN_WIDTH_80P80;
5028 break;
5029 case BRCMU_CHAN_BW_160:
5030 width = NL80211_CHAN_WIDTH_160;
5031 break;
5032 }
5033
5034 freq = ieee80211_channel_to_frequency(ch.control_ch_num, band);
5035 chandef->chan = ieee80211_get_channel(wiphy, freq);
5036 chandef->width = width;
5037 chandef->center_freq1 = ieee80211_channel_to_frequency(ch.chnum, band);
5038 chandef->center_freq2 = 0;
5039
5040 return 0;
5041}
5042
Piotr Haber61730d42013-04-23 12:53:12 +02005043static int brcmf_cfg80211_crit_proto_start(struct wiphy *wiphy,
5044 struct wireless_dev *wdev,
5045 enum nl80211_crit_proto_id proto,
5046 u16 duration)
5047{
5048 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
5049 struct brcmf_cfg80211_vif *vif;
5050
5051 vif = container_of(wdev, struct brcmf_cfg80211_vif, wdev);
5052
5053 /* only DHCP support for now */
5054 if (proto != NL80211_CRIT_PROTO_DHCP)
5055 return -EINVAL;
5056
5057 /* suppress and abort scanning */
5058 set_bit(BRCMF_SCAN_STATUS_SUPPRESS, &cfg->scan_status);
5059 brcmf_abort_scanning(cfg);
5060
5061 return brcmf_btcoex_set_mode(vif, BRCMF_BTCOEX_DISABLED, duration);
5062}
5063
5064static void brcmf_cfg80211_crit_proto_stop(struct wiphy *wiphy,
5065 struct wireless_dev *wdev)
5066{
5067 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
5068 struct brcmf_cfg80211_vif *vif;
5069
5070 vif = container_of(wdev, struct brcmf_cfg80211_vif, wdev);
5071
5072 brcmf_btcoex_set_mode(vif, BRCMF_BTCOEX_ENABLED, 0);
5073 clear_bit(BRCMF_SCAN_STATUS_SUPPRESS, &cfg->scan_status);
5074}
5075
Hante Meuleman70b7d942014-07-30 13:20:07 +02005076static s32
5077brcmf_notify_tdls_peer_event(struct brcmf_if *ifp,
5078 const struct brcmf_event_msg *e, void *data)
5079{
5080 switch (e->reason) {
5081 case BRCMF_E_REASON_TDLS_PEER_DISCOVERED:
5082 brcmf_dbg(TRACE, "TDLS Peer Discovered\n");
5083 break;
5084 case BRCMF_E_REASON_TDLS_PEER_CONNECTED:
5085 brcmf_dbg(TRACE, "TDLS Peer Connected\n");
5086 brcmf_proto_add_tdls_peer(ifp->drvr, ifp->ifidx, (u8 *)e->addr);
5087 break;
5088 case BRCMF_E_REASON_TDLS_PEER_DISCONNECTED:
5089 brcmf_dbg(TRACE, "TDLS Peer Disconnected\n");
5090 brcmf_proto_delete_peer(ifp->drvr, ifp->ifidx, (u8 *)e->addr);
5091 break;
5092 }
5093
5094 return 0;
5095}
5096
Arend van Spriel89c2f382013-08-10 12:27:25 +02005097static int brcmf_convert_nl80211_tdls_oper(enum nl80211_tdls_operation oper)
5098{
5099 int ret;
5100
5101 switch (oper) {
5102 case NL80211_TDLS_DISCOVERY_REQ:
5103 ret = BRCMF_TDLS_MANUAL_EP_DISCOVERY;
5104 break;
5105 case NL80211_TDLS_SETUP:
5106 ret = BRCMF_TDLS_MANUAL_EP_CREATE;
5107 break;
5108 case NL80211_TDLS_TEARDOWN:
5109 ret = BRCMF_TDLS_MANUAL_EP_DELETE;
5110 break;
5111 default:
5112 brcmf_err("unsupported operation: %d\n", oper);
5113 ret = -EOPNOTSUPP;
5114 }
5115 return ret;
5116}
5117
5118static int brcmf_cfg80211_tdls_oper(struct wiphy *wiphy,
Johannes Berg3b3a0162014-05-19 17:19:31 +02005119 struct net_device *ndev, const u8 *peer,
Arend van Spriel89c2f382013-08-10 12:27:25 +02005120 enum nl80211_tdls_operation oper)
5121{
5122 struct brcmf_if *ifp;
5123 struct brcmf_tdls_iovar_le info;
5124 int ret = 0;
5125
5126 ret = brcmf_convert_nl80211_tdls_oper(oper);
5127 if (ret < 0)
5128 return ret;
5129
5130 ifp = netdev_priv(ndev);
5131 memset(&info, 0, sizeof(info));
5132 info.mode = (u8)ret;
5133 if (peer)
5134 memcpy(info.ea, peer, ETH_ALEN);
5135
5136 ret = brcmf_fil_iovar_data_set(ifp, "tdls_endpoint",
5137 &info, sizeof(info));
5138 if (ret < 0)
5139 brcmf_err("tdls_endpoint iovar failed: ret=%d\n", ret);
5140
5141 return ret;
5142}
5143
Hante Meuleman5c22fb82016-02-17 11:27:03 +01005144#ifdef CONFIG_PM
5145static int
5146brcmf_cfg80211_set_rekey_data(struct wiphy *wiphy, struct net_device *ndev,
5147 struct cfg80211_gtk_rekey_data *gtk)
5148{
5149 struct brcmf_if *ifp = netdev_priv(ndev);
5150 struct brcmf_gtk_keyinfo_le gtk_le;
5151 int ret;
5152
5153 brcmf_dbg(TRACE, "Enter, bssidx=%d\n", ifp->bsscfgidx);
5154
5155 memcpy(gtk_le.kck, gtk->kck, sizeof(gtk_le.kck));
5156 memcpy(gtk_le.kek, gtk->kek, sizeof(gtk_le.kek));
5157 memcpy(gtk_le.replay_counter, gtk->replay_ctr,
5158 sizeof(gtk_le.replay_counter));
5159
5160 ret = brcmf_fil_iovar_data_set(ifp, "gtk_key_info", &gtk_le,
5161 sizeof(gtk_le));
5162 if (ret < 0)
5163 brcmf_err("gtk_key_info iovar failed: ret=%d\n", ret);
5164
5165 return ret;
5166}
5167#endif
5168
5169static struct cfg80211_ops brcmf_cfg80211_ops = {
Arend van Spriel9f440b72013-02-08 15:53:36 +01005170 .add_virtual_intf = brcmf_cfg80211_add_iface,
5171 .del_virtual_intf = brcmf_cfg80211_del_iface,
Arend van Spriel5b435de2011-10-05 13:19:03 +02005172 .change_virtual_intf = brcmf_cfg80211_change_iface,
5173 .scan = brcmf_cfg80211_scan,
5174 .set_wiphy_params = brcmf_cfg80211_set_wiphy_params,
5175 .join_ibss = brcmf_cfg80211_join_ibss,
5176 .leave_ibss = brcmf_cfg80211_leave_ibss,
5177 .get_station = brcmf_cfg80211_get_station,
Hante Meulemanbf2a7e02015-10-08 20:33:18 +02005178 .dump_station = brcmf_cfg80211_dump_station,
Arend van Spriel5b435de2011-10-05 13:19:03 +02005179 .set_tx_power = brcmf_cfg80211_set_tx_power,
5180 .get_tx_power = brcmf_cfg80211_get_tx_power,
5181 .add_key = brcmf_cfg80211_add_key,
5182 .del_key = brcmf_cfg80211_del_key,
5183 .get_key = brcmf_cfg80211_get_key,
5184 .set_default_key = brcmf_cfg80211_config_default_key,
5185 .set_default_mgmt_key = brcmf_cfg80211_config_default_mgmt_key,
5186 .set_power_mgmt = brcmf_cfg80211_set_power_mgmt,
Arend van Spriel5b435de2011-10-05 13:19:03 +02005187 .connect = brcmf_cfg80211_connect,
5188 .disconnect = brcmf_cfg80211_disconnect,
5189 .suspend = brcmf_cfg80211_suspend,
5190 .resume = brcmf_cfg80211_resume,
5191 .set_pmksa = brcmf_cfg80211_set_pmksa,
5192 .del_pmksa = brcmf_cfg80211_del_pmksa,
Arend van Sprielcbaa1772012-08-30 19:43:02 +02005193 .flush_pmksa = brcmf_cfg80211_flush_pmksa,
Hante Meuleman1a873342012-09-27 14:17:54 +02005194 .start_ap = brcmf_cfg80211_start_ap,
5195 .stop_ap = brcmf_cfg80211_stop_ap,
Hante Meulemana0f07952013-02-08 15:53:47 +01005196 .change_beacon = brcmf_cfg80211_change_beacon,
Hante Meuleman1a873342012-09-27 14:17:54 +02005197 .del_station = brcmf_cfg80211_del_station,
Hante Meuleman6b89dcb2014-12-21 12:43:52 +01005198 .change_station = brcmf_cfg80211_change_station,
Arend van Spriele5806072012-09-19 22:21:08 +02005199 .sched_scan_start = brcmf_cfg80211_sched_scan_start,
5200 .sched_scan_stop = brcmf_cfg80211_sched_scan_stop,
Hante Meuleman0de8aac2013-02-08 15:53:38 +01005201 .mgmt_frame_register = brcmf_cfg80211_mgmt_frame_register,
5202 .mgmt_tx = brcmf_cfg80211_mgmt_tx,
5203 .remain_on_channel = brcmf_p2p_remain_on_channel,
5204 .cancel_remain_on_channel = brcmf_cfg80211_cancel_remain_on_channel,
Rafał Miłeckiee6e7aa2016-05-20 13:38:58 +02005205 .get_channel = brcmf_cfg80211_get_channel,
Arend van Spriel27f10e32013-04-05 10:57:50 +02005206 .start_p2p_device = brcmf_p2p_start_device,
5207 .stop_p2p_device = brcmf_p2p_stop_device,
Piotr Haber61730d42013-04-23 12:53:12 +02005208 .crit_proto_start = brcmf_cfg80211_crit_proto_start,
5209 .crit_proto_stop = brcmf_cfg80211_crit_proto_stop,
Arend van Spriel89c2f382013-08-10 12:27:25 +02005210 .tdls_oper = brcmf_cfg80211_tdls_oper,
Arend van Spriel5b435de2011-10-05 13:19:03 +02005211};
5212
Arend van Spriel3eacf862012-10-22 13:55:30 -07005213struct brcmf_cfg80211_vif *brcmf_alloc_vif(struct brcmf_cfg80211_info *cfg,
Rafał Miłecki26072332016-06-06 23:03:55 +02005214 enum nl80211_iftype type)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005215{
Hante Meulemana44aa402014-12-03 21:05:33 +01005216 struct brcmf_cfg80211_vif *vif_walk;
Arend van Spriel3eacf862012-10-22 13:55:30 -07005217 struct brcmf_cfg80211_vif *vif;
Hante Meulemana44aa402014-12-03 21:05:33 +01005218 bool mbss;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005219
Arend van Spriel33a6b152013-02-08 15:53:39 +01005220 brcmf_dbg(TRACE, "allocating virtual interface (size=%zu)\n",
Arend van Spriel9f440b72013-02-08 15:53:36 +01005221 sizeof(*vif));
Arend van Spriel3eacf862012-10-22 13:55:30 -07005222 vif = kzalloc(sizeof(*vif), GFP_KERNEL);
5223 if (!vif)
5224 return ERR_PTR(-ENOMEM);
5225
5226 vif->wdev.wiphy = cfg->wiphy;
Arend van Spriel9f440b72013-02-08 15:53:36 +01005227 vif->wdev.iftype = type;
Arend van Spriel3eacf862012-10-22 13:55:30 -07005228
Arend van Spriel6ac4f4e2012-10-22 13:55:31 -07005229 brcmf_init_prof(&vif->profile);
5230
Hante Meulemana44aa402014-12-03 21:05:33 +01005231 if (type == NL80211_IFTYPE_AP) {
5232 mbss = false;
5233 list_for_each_entry(vif_walk, &cfg->vif_list, list) {
5234 if (vif_walk->wdev.iftype == NL80211_IFTYPE_AP) {
5235 mbss = true;
5236 break;
5237 }
5238 }
5239 vif->mbss = mbss;
5240 }
5241
Arend van Spriel3eacf862012-10-22 13:55:30 -07005242 list_add_tail(&vif->list, &cfg->vif_list);
Arend van Spriel3eacf862012-10-22 13:55:30 -07005243 return vif;
5244}
5245
Arend van Spriel427dec52014-01-06 12:40:47 +01005246void brcmf_free_vif(struct brcmf_cfg80211_vif *vif)
Arend van Spriel3eacf862012-10-22 13:55:30 -07005247{
Arend van Spriel3eacf862012-10-22 13:55:30 -07005248 list_del(&vif->list);
Arend van Spriel3eacf862012-10-22 13:55:30 -07005249 kfree(vif);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005250}
5251
Arend van Spriel9df4d542014-01-06 12:40:49 +01005252void brcmf_cfg80211_free_netdev(struct net_device *ndev)
5253{
5254 struct brcmf_cfg80211_vif *vif;
5255 struct brcmf_if *ifp;
5256
5257 ifp = netdev_priv(ndev);
5258 vif = ifp->vif;
5259
Arend van Spriel95ef1232015-08-26 22:15:04 +02005260 if (vif)
5261 brcmf_free_vif(vif);
Arend van Spriel9df4d542014-01-06 12:40:49 +01005262 free_netdev(ndev);
5263}
5264
Arend van Spriel903e0ee2012-11-28 21:44:11 +01005265static bool brcmf_is_linkup(const struct brcmf_event_msg *e)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005266{
Arend van Spriel5c36b992012-11-14 18:46:05 -08005267 u32 event = e->event_code;
5268 u32 status = e->status;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005269
5270 if (event == BRCMF_E_SET_SSID && status == BRCMF_E_STATUS_SUCCESS) {
Arend van Spriel16886732012-12-05 15:26:04 +01005271 brcmf_dbg(CONN, "Processing set ssid\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02005272 return true;
5273 }
5274
5275 return false;
5276}
5277
Arend van Spriel903e0ee2012-11-28 21:44:11 +01005278static bool brcmf_is_linkdown(const struct brcmf_event_msg *e)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005279{
Arend van Spriel5c36b992012-11-14 18:46:05 -08005280 u32 event = e->event_code;
5281 u16 flags = e->flags;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005282
Hante Meuleman68ca3952014-02-25 20:30:26 +01005283 if ((event == BRCMF_E_DEAUTH) || (event == BRCMF_E_DEAUTH_IND) ||
5284 (event == BRCMF_E_DISASSOC_IND) ||
5285 ((event == BRCMF_E_LINK) && (!(flags & BRCMF_EVENT_MSG_LINK)))) {
Arend van Spriel16886732012-12-05 15:26:04 +01005286 brcmf_dbg(CONN, "Processing link down\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02005287 return true;
5288 }
5289 return false;
5290}
5291
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005292static bool brcmf_is_nonetwork(struct brcmf_cfg80211_info *cfg,
Arend van Spriel5b435de2011-10-05 13:19:03 +02005293 const struct brcmf_event_msg *e)
5294{
Arend van Spriel5c36b992012-11-14 18:46:05 -08005295 u32 event = e->event_code;
5296 u32 status = e->status;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005297
5298 if (event == BRCMF_E_LINK && status == BRCMF_E_STATUS_NO_NETWORKS) {
Arend van Spriel16886732012-12-05 15:26:04 +01005299 brcmf_dbg(CONN, "Processing Link %s & no network found\n",
5300 e->flags & BRCMF_EVENT_MSG_LINK ? "up" : "down");
Arend van Spriel5b435de2011-10-05 13:19:03 +02005301 return true;
5302 }
5303
5304 if (event == BRCMF_E_SET_SSID && status != BRCMF_E_STATUS_SUCCESS) {
Arend van Spriel16886732012-12-05 15:26:04 +01005305 brcmf_dbg(CONN, "Processing connecting & no network found\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02005306 return true;
5307 }
5308
5309 return false;
5310}
5311
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005312static void brcmf_clear_assoc_ies(struct brcmf_cfg80211_info *cfg)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005313{
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005314 struct brcmf_cfg80211_connect_info *conn_info = cfg_to_conn(cfg);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005315
5316 kfree(conn_info->req_ie);
5317 conn_info->req_ie = NULL;
5318 conn_info->req_ie_len = 0;
5319 kfree(conn_info->resp_ie);
5320 conn_info->resp_ie = NULL;
5321 conn_info->resp_ie_len = 0;
5322}
5323
Hante Meuleman89286dc2013-02-08 15:53:46 +01005324static s32 brcmf_get_assoc_ies(struct brcmf_cfg80211_info *cfg,
5325 struct brcmf_if *ifp)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005326{
Arend van Sprielc4e382d2011-10-12 20:51:21 +02005327 struct brcmf_cfg80211_assoc_ielen_le *assoc_info;
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005328 struct brcmf_cfg80211_connect_info *conn_info = cfg_to_conn(cfg);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005329 u32 req_len;
5330 u32 resp_len;
5331 s32 err = 0;
5332
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005333 brcmf_clear_assoc_ies(cfg);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005334
Arend van Sprielac24be62012-10-22 10:36:23 -07005335 err = brcmf_fil_iovar_data_get(ifp, "assoc_info",
5336 cfg->extra_buf, WL_ASSOC_INFO_MAX);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005337 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01005338 brcmf_err("could not get assoc info (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005339 return err;
5340 }
Arend van Sprielc4e382d2011-10-12 20:51:21 +02005341 assoc_info =
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005342 (struct brcmf_cfg80211_assoc_ielen_le *)cfg->extra_buf;
Arend van Sprielc4e382d2011-10-12 20:51:21 +02005343 req_len = le32_to_cpu(assoc_info->req_len);
5344 resp_len = le32_to_cpu(assoc_info->resp_len);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005345 if (req_len) {
Arend van Sprielac24be62012-10-22 10:36:23 -07005346 err = brcmf_fil_iovar_data_get(ifp, "assoc_req_ies",
Hante Meuleman81f5dcb2012-10-22 10:36:14 -07005347 cfg->extra_buf,
5348 WL_ASSOC_INFO_MAX);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005349 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01005350 brcmf_err("could not get assoc req (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005351 return err;
5352 }
5353 conn_info->req_ie_len = req_len;
5354 conn_info->req_ie =
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005355 kmemdup(cfg->extra_buf, conn_info->req_ie_len,
Arend van Spriel5b435de2011-10-05 13:19:03 +02005356 GFP_KERNEL);
5357 } else {
5358 conn_info->req_ie_len = 0;
5359 conn_info->req_ie = NULL;
5360 }
5361 if (resp_len) {
Arend van Sprielac24be62012-10-22 10:36:23 -07005362 err = brcmf_fil_iovar_data_get(ifp, "assoc_resp_ies",
Hante Meuleman81f5dcb2012-10-22 10:36:14 -07005363 cfg->extra_buf,
5364 WL_ASSOC_INFO_MAX);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005365 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01005366 brcmf_err("could not get assoc resp (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005367 return err;
5368 }
5369 conn_info->resp_ie_len = resp_len;
5370 conn_info->resp_ie =
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005371 kmemdup(cfg->extra_buf, conn_info->resp_ie_len,
Arend van Spriel5b435de2011-10-05 13:19:03 +02005372 GFP_KERNEL);
5373 } else {
5374 conn_info->resp_ie_len = 0;
5375 conn_info->resp_ie = NULL;
5376 }
Arend van Spriel16886732012-12-05 15:26:04 +01005377 brcmf_dbg(CONN, "req len (%d) resp len (%d)\n",
5378 conn_info->req_ie_len, conn_info->resp_ie_len);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005379
5380 return err;
5381}
5382
5383static s32
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005384brcmf_bss_roaming_done(struct brcmf_cfg80211_info *cfg,
Arend van Spriel5b435de2011-10-05 13:19:03 +02005385 struct net_device *ndev,
5386 const struct brcmf_event_msg *e)
5387{
Arend van Sprielc1179032012-10-22 13:55:33 -07005388 struct brcmf_if *ifp = netdev_priv(ndev);
5389 struct brcmf_cfg80211_profile *profile = &ifp->vif->profile;
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005390 struct brcmf_cfg80211_connect_info *conn_info = cfg_to_conn(cfg);
5391 struct wiphy *wiphy = cfg_to_wiphy(cfg);
Franky Lina180b832012-10-10 11:13:09 -07005392 struct ieee80211_channel *notify_channel = NULL;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005393 struct ieee80211_supported_band *band;
Franky Lina180b832012-10-10 11:13:09 -07005394 struct brcmf_bss_info_le *bi;
Franky Lin83cf17a2013-04-11 13:28:50 +02005395 struct brcmu_chan ch;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005396 u32 freq;
5397 s32 err = 0;
Franky Lina180b832012-10-10 11:13:09 -07005398 u8 *buf;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005399
Arend van Sprield96b8012012-12-05 15:26:02 +01005400 brcmf_dbg(TRACE, "Enter\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02005401
Hante Meuleman89286dc2013-02-08 15:53:46 +01005402 brcmf_get_assoc_ies(cfg, ifp);
Arend van Spriel6c8c4f72012-09-27 14:17:57 +02005403 memcpy(profile->bssid, e->addr, ETH_ALEN);
Hante Meuleman89286dc2013-02-08 15:53:46 +01005404 brcmf_update_bss_info(cfg, ifp);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005405
Franky Lina180b832012-10-10 11:13:09 -07005406 buf = kzalloc(WL_BSS_INFO_MAX, GFP_KERNEL);
5407 if (buf == NULL) {
5408 err = -ENOMEM;
5409 goto done;
5410 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02005411
Franky Lina180b832012-10-10 11:13:09 -07005412 /* data sent to dongle has to be little endian */
5413 *(__le32 *)buf = cpu_to_le32(WL_BSS_INFO_MAX);
Arend van Sprielc1179032012-10-22 13:55:33 -07005414 err = brcmf_fil_cmd_data_get(ifp, BRCMF_C_GET_BSS_INFO,
Arend van Sprielac24be62012-10-22 10:36:23 -07005415 buf, WL_BSS_INFO_MAX);
Franky Lina180b832012-10-10 11:13:09 -07005416
5417 if (err)
5418 goto done;
5419
5420 bi = (struct brcmf_bss_info_le *)(buf + 4);
Franky Lin83cf17a2013-04-11 13:28:50 +02005421 ch.chspec = le16_to_cpu(bi->chanspec);
5422 cfg->d11inf.decchspec(&ch);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005423
Franky Lin83cf17a2013-04-11 13:28:50 +02005424 if (ch.band == BRCMU_CHAN_BAND_2G)
Johannes Berg57fbcce2016-04-12 15:56:15 +02005425 band = wiphy->bands[NL80211_BAND_2GHZ];
Arend van Spriel5b435de2011-10-05 13:19:03 +02005426 else
Johannes Berg57fbcce2016-04-12 15:56:15 +02005427 band = wiphy->bands[NL80211_BAND_5GHZ];
Arend van Spriel5b435de2011-10-05 13:19:03 +02005428
Rafał Miłecki4712d882016-05-20 13:38:57 +02005429 freq = ieee80211_channel_to_frequency(ch.control_ch_num, band->band);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005430 notify_channel = ieee80211_get_channel(wiphy, freq);
5431
Franky Lina180b832012-10-10 11:13:09 -07005432done:
5433 kfree(buf);
Arend van Spriel06bb1232012-09-27 14:17:56 +02005434 cfg80211_roamed(ndev, notify_channel, (u8 *)profile->bssid,
Arend van Spriel5b435de2011-10-05 13:19:03 +02005435 conn_info->req_ie, conn_info->req_ie_len,
5436 conn_info->resp_ie, conn_info->resp_ie_len, GFP_KERNEL);
Arend van Spriel16886732012-12-05 15:26:04 +01005437 brcmf_dbg(CONN, "Report roaming result\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02005438
Arend van Sprielc1179032012-10-22 13:55:33 -07005439 set_bit(BRCMF_VIF_STATUS_CONNECTED, &ifp->vif->sme_state);
Arend van Sprield96b8012012-12-05 15:26:02 +01005440 brcmf_dbg(TRACE, "Exit\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02005441 return err;
5442}
5443
5444static s32
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005445brcmf_bss_connect_done(struct brcmf_cfg80211_info *cfg,
Arend van Spriel5b435de2011-10-05 13:19:03 +02005446 struct net_device *ndev, const struct brcmf_event_msg *e,
5447 bool completed)
5448{
Arend van Sprielc1179032012-10-22 13:55:33 -07005449 struct brcmf_if *ifp = netdev_priv(ndev);
5450 struct brcmf_cfg80211_profile *profile = &ifp->vif->profile;
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005451 struct brcmf_cfg80211_connect_info *conn_info = cfg_to_conn(cfg);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005452
Arend van Sprield96b8012012-12-05 15:26:02 +01005453 brcmf_dbg(TRACE, "Enter\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02005454
Arend van Sprielc1179032012-10-22 13:55:33 -07005455 if (test_and_clear_bit(BRCMF_VIF_STATUS_CONNECTING,
5456 &ifp->vif->sme_state)) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02005457 if (completed) {
Hante Meuleman89286dc2013-02-08 15:53:46 +01005458 brcmf_get_assoc_ies(cfg, ifp);
Arend van Spriel6c8c4f72012-09-27 14:17:57 +02005459 memcpy(profile->bssid, e->addr, ETH_ALEN);
Hante Meuleman89286dc2013-02-08 15:53:46 +01005460 brcmf_update_bss_info(cfg, ifp);
5461 set_bit(BRCMF_VIF_STATUS_CONNECTED,
5462 &ifp->vif->sme_state);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005463 }
5464 cfg80211_connect_result(ndev,
Arend van Spriel06bb1232012-09-27 14:17:56 +02005465 (u8 *)profile->bssid,
Arend van Spriel5b435de2011-10-05 13:19:03 +02005466 conn_info->req_ie,
5467 conn_info->req_ie_len,
5468 conn_info->resp_ie,
5469 conn_info->resp_ie_len,
5470 completed ? WLAN_STATUS_SUCCESS :
5471 WLAN_STATUS_AUTH_TIMEOUT,
5472 GFP_KERNEL);
Arend van Spriel16886732012-12-05 15:26:04 +01005473 brcmf_dbg(CONN, "Report connect result - connection %s\n",
5474 completed ? "succeeded" : "failed");
Arend van Spriel5b435de2011-10-05 13:19:03 +02005475 }
Arend van Sprield96b8012012-12-05 15:26:02 +01005476 brcmf_dbg(TRACE, "Exit\n");
Peter Senna Tschudin12f32372014-05-31 10:14:06 -03005477 return 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005478}
5479
5480static s32
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005481brcmf_notify_connect_status_ap(struct brcmf_cfg80211_info *cfg,
Hante Meuleman1a873342012-09-27 14:17:54 +02005482 struct net_device *ndev,
5483 const struct brcmf_event_msg *e, void *data)
5484{
Hante Meuleman7ee29602013-02-06 18:40:43 +01005485 static int generation;
Arend van Spriel5c36b992012-11-14 18:46:05 -08005486 u32 event = e->event_code;
5487 u32 reason = e->reason;
Hante Meuleman1a873342012-09-27 14:17:54 +02005488 struct station_info sinfo;
5489
Arend van Spriel16886732012-12-05 15:26:04 +01005490 brcmf_dbg(CONN, "event %d, reason %d\n", event, reason);
Arend van Spriel5f4f9f12013-02-08 15:53:41 +01005491 if (event == BRCMF_E_LINK && reason == BRCMF_E_REASON_LINK_BSSCFG_DIS &&
5492 ndev != cfg_to_ndev(cfg)) {
5493 brcmf_dbg(CONN, "AP mode link down\n");
5494 complete(&cfg->vif_disabled);
5495 return 0;
5496 }
Hante Meuleman1a873342012-09-27 14:17:54 +02005497
Hante Meuleman1a873342012-09-27 14:17:54 +02005498 if (((event == BRCMF_E_ASSOC_IND) || (event == BRCMF_E_REASSOC_IND)) &&
Hante Meuleman7ee29602013-02-06 18:40:43 +01005499 (reason == BRCMF_E_STATUS_SUCCESS)) {
5500 memset(&sinfo, 0, sizeof(sinfo));
Hante Meuleman1a873342012-09-27 14:17:54 +02005501 if (!data) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01005502 brcmf_err("No IEs present in ASSOC/REASSOC_IND");
Hante Meuleman1a873342012-09-27 14:17:54 +02005503 return -EINVAL;
5504 }
5505 sinfo.assoc_req_ies = data;
Hante Meuleman7ee29602013-02-06 18:40:43 +01005506 sinfo.assoc_req_ies_len = e->datalen;
Hante Meuleman1a873342012-09-27 14:17:54 +02005507 generation++;
5508 sinfo.generation = generation;
Hante Meuleman7ee29602013-02-06 18:40:43 +01005509 cfg80211_new_sta(ndev, e->addr, &sinfo, GFP_KERNEL);
Hante Meuleman1a873342012-09-27 14:17:54 +02005510 } else if ((event == BRCMF_E_DISASSOC_IND) ||
5511 (event == BRCMF_E_DEAUTH_IND) ||
5512 (event == BRCMF_E_DEAUTH)) {
Hante Meuleman7ee29602013-02-06 18:40:43 +01005513 cfg80211_del_sta(ndev, e->addr, GFP_KERNEL);
Hante Meuleman1a873342012-09-27 14:17:54 +02005514 }
Hante Meuleman7ee29602013-02-06 18:40:43 +01005515 return 0;
Hante Meuleman1a873342012-09-27 14:17:54 +02005516}
5517
5518static s32
Arend van Spriel19937322012-11-05 16:22:32 -08005519brcmf_notify_connect_status(struct brcmf_if *ifp,
Arend van Spriel5b435de2011-10-05 13:19:03 +02005520 const struct brcmf_event_msg *e, void *data)
5521{
Arend van Spriel19937322012-11-05 16:22:32 -08005522 struct brcmf_cfg80211_info *cfg = ifp->drvr->config;
5523 struct net_device *ndev = ifp->ndev;
Arend van Sprielc1179032012-10-22 13:55:33 -07005524 struct brcmf_cfg80211_profile *profile = &ifp->vif->profile;
Antonio Quartullife94f3a2014-01-29 17:53:43 +01005525 struct ieee80211_channel *chan;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005526 s32 err = 0;
5527
Hante Meuleman8851cce2014-07-30 13:20:02 +02005528 if ((e->event_code == BRCMF_E_DEAUTH) ||
5529 (e->event_code == BRCMF_E_DEAUTH_IND) ||
5530 (e->event_code == BRCMF_E_DISASSOC_IND) ||
5531 ((e->event_code == BRCMF_E_LINK) && (!e->flags))) {
5532 brcmf_proto_delete_peer(ifp->drvr, ifp->ifidx, (u8 *)e->addr);
5533 }
5534
Arend van Spriel967fe2c2014-03-15 17:18:21 +01005535 if (brcmf_is_apmode(ifp->vif)) {
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005536 err = brcmf_notify_connect_status_ap(cfg, ndev, e, data);
Arend van Spriel903e0ee2012-11-28 21:44:11 +01005537 } else if (brcmf_is_linkup(e)) {
Arend van Spriel16886732012-12-05 15:26:04 +01005538 brcmf_dbg(CONN, "Linkup\n");
Arend van Spriel128ce3b2012-11-28 21:44:12 +01005539 if (brcmf_is_ibssmode(ifp->vif)) {
Hante Meulemanb0a79082015-12-10 13:43:07 +01005540 brcmf_inform_ibss(cfg, ndev, e->addr);
Antonio Quartullife94f3a2014-01-29 17:53:43 +01005541 chan = ieee80211_get_channel(cfg->wiphy, cfg->channel);
Arend van Spriel6c8c4f72012-09-27 14:17:57 +02005542 memcpy(profile->bssid, e->addr, ETH_ALEN);
Antonio Quartullife94f3a2014-01-29 17:53:43 +01005543 cfg80211_ibss_joined(ndev, e->addr, chan, GFP_KERNEL);
Arend van Sprielc1179032012-10-22 13:55:33 -07005544 clear_bit(BRCMF_VIF_STATUS_CONNECTING,
5545 &ifp->vif->sme_state);
5546 set_bit(BRCMF_VIF_STATUS_CONNECTED,
5547 &ifp->vif->sme_state);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005548 } else
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005549 brcmf_bss_connect_done(cfg, ndev, e, true);
Hante Meuleman92121e62015-10-08 20:33:21 +02005550 brcmf_net_setcarrier(ifp, true);
Arend van Spriel903e0ee2012-11-28 21:44:11 +01005551 } else if (brcmf_is_linkdown(e)) {
Arend van Spriel16886732012-12-05 15:26:04 +01005552 brcmf_dbg(CONN, "Linkdown\n");
Arend van Spriel128ce3b2012-11-28 21:44:12 +01005553 if (!brcmf_is_ibssmode(ifp->vif)) {
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005554 brcmf_bss_connect_done(cfg, ndev, e, false);
Hante Meuleman42e0ed02016-01-05 11:05:50 +01005555 brcmf_link_down(ifp->vif,
5556 brcmf_map_fw_linkdown_reason(e));
5557 brcmf_init_prof(ndev_to_prof(ndev));
5558 if (ndev != cfg_to_ndev(cfg))
5559 complete(&cfg->vif_disabled);
5560 brcmf_net_setcarrier(ifp, false);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005561 }
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005562 } else if (brcmf_is_nonetwork(cfg, e)) {
Arend van Spriel128ce3b2012-11-28 21:44:12 +01005563 if (brcmf_is_ibssmode(ifp->vif))
Arend van Sprielc1179032012-10-22 13:55:33 -07005564 clear_bit(BRCMF_VIF_STATUS_CONNECTING,
5565 &ifp->vif->sme_state);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005566 else
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005567 brcmf_bss_connect_done(cfg, ndev, e, false);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005568 }
5569
5570 return err;
5571}
5572
5573static s32
Arend van Spriel19937322012-11-05 16:22:32 -08005574brcmf_notify_roaming_status(struct brcmf_if *ifp,
Arend van Spriel5b435de2011-10-05 13:19:03 +02005575 const struct brcmf_event_msg *e, void *data)
5576{
Arend van Spriel19937322012-11-05 16:22:32 -08005577 struct brcmf_cfg80211_info *cfg = ifp->drvr->config;
Arend van Spriel5c36b992012-11-14 18:46:05 -08005578 u32 event = e->event_code;
5579 u32 status = e->status;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005580
5581 if (event == BRCMF_E_ROAM && status == BRCMF_E_STATUS_SUCCESS) {
Arend van Sprielc1179032012-10-22 13:55:33 -07005582 if (test_bit(BRCMF_VIF_STATUS_CONNECTED, &ifp->vif->sme_state))
Arend van Spriel19937322012-11-05 16:22:32 -08005583 brcmf_bss_roaming_done(cfg, ifp->ndev, e);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005584 else
Arend van Spriel19937322012-11-05 16:22:32 -08005585 brcmf_bss_connect_done(cfg, ifp->ndev, e, true);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005586 }
5587
Peter Senna Tschudin12f32372014-05-31 10:14:06 -03005588 return 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005589}
5590
5591static s32
Arend van Spriel19937322012-11-05 16:22:32 -08005592brcmf_notify_mic_status(struct brcmf_if *ifp,
Arend van Spriel5b435de2011-10-05 13:19:03 +02005593 const struct brcmf_event_msg *e, void *data)
5594{
Arend van Spriel5c36b992012-11-14 18:46:05 -08005595 u16 flags = e->flags;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005596 enum nl80211_key_type key_type;
5597
5598 if (flags & BRCMF_EVENT_MSG_GROUP)
5599 key_type = NL80211_KEYTYPE_GROUP;
5600 else
5601 key_type = NL80211_KEYTYPE_PAIRWISE;
5602
Arend van Spriel19937322012-11-05 16:22:32 -08005603 cfg80211_michael_mic_failure(ifp->ndev, (u8 *)&e->addr, key_type, -1,
Arend van Spriel5b435de2011-10-05 13:19:03 +02005604 NULL, GFP_KERNEL);
5605
5606 return 0;
5607}
5608
Arend van Sprield3c0b632013-02-08 15:53:37 +01005609static s32 brcmf_notify_vif_event(struct brcmf_if *ifp,
5610 const struct brcmf_event_msg *e, void *data)
5611{
5612 struct brcmf_cfg80211_info *cfg = ifp->drvr->config;
5613 struct brcmf_if_event *ifevent = (struct brcmf_if_event *)data;
5614 struct brcmf_cfg80211_vif_event *event = &cfg->vif_event;
5615 struct brcmf_cfg80211_vif *vif;
5616
Hante Meuleman37a869e2015-10-29 20:33:17 +01005617 brcmf_dbg(TRACE, "Enter: action %u flags %u ifidx %u bsscfgidx %u\n",
Arend van Sprield3c0b632013-02-08 15:53:37 +01005618 ifevent->action, ifevent->flags, ifevent->ifidx,
Hante Meuleman37a869e2015-10-29 20:33:17 +01005619 ifevent->bsscfgidx);
Arend van Sprield3c0b632013-02-08 15:53:37 +01005620
Arend van Sprield3c0b632013-02-08 15:53:37 +01005621 mutex_lock(&event->vif_event_lock);
5622 event->action = ifevent->action;
5623 vif = event->vif;
5624
5625 switch (ifevent->action) {
5626 case BRCMF_E_IF_ADD:
5627 /* waiting process may have timed out */
Wei Yongjundc4a7872013-02-22 21:32:20 +08005628 if (!cfg->vif_event.vif) {
5629 mutex_unlock(&event->vif_event_lock);
Arend van Sprield3c0b632013-02-08 15:53:37 +01005630 return -EBADF;
Wei Yongjundc4a7872013-02-22 21:32:20 +08005631 }
Arend van Sprield3c0b632013-02-08 15:53:37 +01005632
5633 ifp->vif = vif;
5634 vif->ifp = ifp;
Arend van Spriel01b8e7d2013-04-05 10:57:51 +02005635 if (ifp->ndev) {
5636 vif->wdev.netdev = ifp->ndev;
5637 ifp->ndev->ieee80211_ptr = &vif->wdev;
5638 SET_NETDEV_DEV(ifp->ndev, wiphy_dev(cfg->wiphy));
5639 }
Arend van Sprield3c0b632013-02-08 15:53:37 +01005640 mutex_unlock(&event->vif_event_lock);
5641 wake_up(&event->vif_wq);
Hante Meuleman4b3a89d2013-02-08 15:54:01 +01005642 return 0;
Arend van Sprield3c0b632013-02-08 15:53:37 +01005643
5644 case BRCMF_E_IF_DEL:
Arend van Sprield3c0b632013-02-08 15:53:37 +01005645 mutex_unlock(&event->vif_event_lock);
5646 /* event may not be upon user request */
5647 if (brcmf_cfg80211_vif_event_armed(cfg))
5648 wake_up(&event->vif_wq);
5649 return 0;
5650
Hante Meuleman7a5c1f62013-02-08 15:53:44 +01005651 case BRCMF_E_IF_CHANGE:
5652 mutex_unlock(&event->vif_event_lock);
5653 wake_up(&event->vif_wq);
5654 return 0;
5655
Arend van Sprield3c0b632013-02-08 15:53:37 +01005656 default:
5657 mutex_unlock(&event->vif_event_lock);
5658 break;
5659 }
5660 return -EINVAL;
5661}
5662
Arend van Spriel5b435de2011-10-05 13:19:03 +02005663static void brcmf_init_conf(struct brcmf_cfg80211_conf *conf)
5664{
Arend van Spriel5b435de2011-10-05 13:19:03 +02005665 conf->frag_threshold = (u32)-1;
5666 conf->rts_threshold = (u32)-1;
5667 conf->retry_short = (u32)-1;
5668 conf->retry_long = (u32)-1;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005669}
5670
Arend van Spriel5c36b992012-11-14 18:46:05 -08005671static void brcmf_register_event_handlers(struct brcmf_cfg80211_info *cfg)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005672{
Arend van Spriel5c36b992012-11-14 18:46:05 -08005673 brcmf_fweh_register(cfg->pub, BRCMF_E_LINK,
5674 brcmf_notify_connect_status);
5675 brcmf_fweh_register(cfg->pub, BRCMF_E_DEAUTH_IND,
5676 brcmf_notify_connect_status);
5677 brcmf_fweh_register(cfg->pub, BRCMF_E_DEAUTH,
5678 brcmf_notify_connect_status);
5679 brcmf_fweh_register(cfg->pub, BRCMF_E_DISASSOC_IND,
5680 brcmf_notify_connect_status);
5681 brcmf_fweh_register(cfg->pub, BRCMF_E_ASSOC_IND,
5682 brcmf_notify_connect_status);
5683 brcmf_fweh_register(cfg->pub, BRCMF_E_REASSOC_IND,
5684 brcmf_notify_connect_status);
5685 brcmf_fweh_register(cfg->pub, BRCMF_E_ROAM,
5686 brcmf_notify_roaming_status);
5687 brcmf_fweh_register(cfg->pub, BRCMF_E_MIC_ERROR,
5688 brcmf_notify_mic_status);
5689 brcmf_fweh_register(cfg->pub, BRCMF_E_SET_SSID,
5690 brcmf_notify_connect_status);
5691 brcmf_fweh_register(cfg->pub, BRCMF_E_PFN_NET_FOUND,
5692 brcmf_notify_sched_scan_results);
Arend van Sprield3c0b632013-02-08 15:53:37 +01005693 brcmf_fweh_register(cfg->pub, BRCMF_E_IF,
5694 brcmf_notify_vif_event);
Hante Meuleman0de8aac2013-02-08 15:53:38 +01005695 brcmf_fweh_register(cfg->pub, BRCMF_E_P2P_PROBEREQ_MSG,
Hante Meuleman6eda4e22013-02-08 15:54:02 +01005696 brcmf_p2p_notify_rx_mgmt_p2p_probereq);
Hante Meuleman0de8aac2013-02-08 15:53:38 +01005697 brcmf_fweh_register(cfg->pub, BRCMF_E_P2P_DISC_LISTEN_COMPLETE,
5698 brcmf_p2p_notify_listen_complete);
Hante Meulemane6da3402013-02-08 15:53:48 +01005699 brcmf_fweh_register(cfg->pub, BRCMF_E_ACTION_FRAME_RX,
5700 brcmf_p2p_notify_action_frame_rx);
Hante Meuleman18e2f612013-02-08 15:53:49 +01005701 brcmf_fweh_register(cfg->pub, BRCMF_E_ACTION_FRAME_COMPLETE,
5702 brcmf_p2p_notify_action_tx_complete);
Hante Meuleman6eda4e22013-02-08 15:54:02 +01005703 brcmf_fweh_register(cfg->pub, BRCMF_E_ACTION_FRAME_OFF_CHAN_COMPLETE,
5704 brcmf_p2p_notify_action_tx_complete);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005705}
5706
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005707static void brcmf_deinit_priv_mem(struct brcmf_cfg80211_info *cfg)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005708{
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005709 kfree(cfg->conf);
5710 cfg->conf = NULL;
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005711 kfree(cfg->extra_buf);
5712 cfg->extra_buf = NULL;
Hante Meuleman3021ad92016-01-05 11:05:45 +01005713 kfree(cfg->wowl.nd);
5714 cfg->wowl.nd = NULL;
5715 kfree(cfg->wowl.nd_info);
5716 cfg->wowl.nd_info = NULL;
Hante Meulemand5367332016-02-17 11:26:51 +01005717 kfree(cfg->escan_info.escan_buf);
5718 cfg->escan_info.escan_buf = NULL;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005719}
5720
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005721static s32 brcmf_init_priv_mem(struct brcmf_cfg80211_info *cfg)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005722{
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005723 cfg->conf = kzalloc(sizeof(*cfg->conf), GFP_KERNEL);
5724 if (!cfg->conf)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005725 goto init_priv_mem_out;
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005726 cfg->extra_buf = kzalloc(WL_EXTRA_BUF_MAX, GFP_KERNEL);
5727 if (!cfg->extra_buf)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005728 goto init_priv_mem_out;
Hante Meuleman3021ad92016-01-05 11:05:45 +01005729 cfg->wowl.nd = kzalloc(sizeof(*cfg->wowl.nd) + sizeof(u32), GFP_KERNEL);
5730 if (!cfg->wowl.nd)
5731 goto init_priv_mem_out;
5732 cfg->wowl.nd_info = kzalloc(sizeof(*cfg->wowl.nd_info) +
5733 sizeof(struct cfg80211_wowlan_nd_match *),
5734 GFP_KERNEL);
5735 if (!cfg->wowl.nd_info)
5736 goto init_priv_mem_out;
Hante Meulemand5367332016-02-17 11:26:51 +01005737 cfg->escan_info.escan_buf = kzalloc(BRCMF_ESCAN_BUF_SIZE, GFP_KERNEL);
5738 if (!cfg->escan_info.escan_buf)
5739 goto init_priv_mem_out;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005740
5741 return 0;
5742
5743init_priv_mem_out:
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005744 brcmf_deinit_priv_mem(cfg);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005745
5746 return -ENOMEM;
5747}
5748
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005749static s32 wl_init_priv(struct brcmf_cfg80211_info *cfg)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005750{
5751 s32 err = 0;
5752
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005753 cfg->scan_request = NULL;
5754 cfg->pwr_save = true;
Hante Meuleman68ca3952014-02-25 20:30:26 +01005755 cfg->active_scan = true; /* we do active scan per default */
5756 cfg->dongle_up = false; /* dongle is not up yet */
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005757 err = brcmf_init_priv_mem(cfg);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005758 if (err)
5759 return err;
Arend van Spriel5c36b992012-11-14 18:46:05 -08005760 brcmf_register_event_handlers(cfg);
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005761 mutex_init(&cfg->usr_sync);
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005762 brcmf_init_escan(cfg);
5763 brcmf_init_conf(cfg->conf);
Arend van Spriel5f4f9f12013-02-08 15:53:41 +01005764 init_completion(&cfg->vif_disabled);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005765 return err;
5766}
5767
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005768static void wl_deinit_priv(struct brcmf_cfg80211_info *cfg)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005769{
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005770 cfg->dongle_up = false; /* dongle down */
Arend van Spriel27a68fe2012-09-27 14:17:55 +02005771 brcmf_abort_scanning(cfg);
5772 brcmf_deinit_priv_mem(cfg);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005773}
5774
Arend van Sprield3c0b632013-02-08 15:53:37 +01005775static void init_vif_event(struct brcmf_cfg80211_vif_event *event)
5776{
5777 init_waitqueue_head(&event->vif_wq);
Arend van Sprield3c0b632013-02-08 15:53:37 +01005778 mutex_init(&event->vif_event_lock);
5779}
5780
Hante Meuleman1119e232015-11-25 11:32:42 +01005781static s32 brcmf_dongle_roam(struct brcmf_if *ifp)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005782{
Hante Meuleman1119e232015-11-25 11:32:42 +01005783 s32 err;
5784 u32 bcn_timeout;
Arend van Sprielf588bc02011-10-12 20:51:22 +02005785 __le32 roamtrigger[2];
5786 __le32 roam_delta[2];
Arend van Spriel5b435de2011-10-05 13:19:03 +02005787
Hante Meuleman1119e232015-11-25 11:32:42 +01005788 /* Configure beacon timeout value based upon roaming setting */
Hante Meuleman7d34b052016-01-02 09:41:41 +01005789 if (ifp->drvr->settings->roamoff)
Hante Meuleman1119e232015-11-25 11:32:42 +01005790 bcn_timeout = BRCMF_DEFAULT_BCN_TIMEOUT_ROAM_OFF;
5791 else
5792 bcn_timeout = BRCMF_DEFAULT_BCN_TIMEOUT_ROAM_ON;
5793 err = brcmf_fil_iovar_int_set(ifp, "bcn_timeout", bcn_timeout);
5794 if (err) {
5795 brcmf_err("bcn_timeout error (%d)\n", err);
5796 goto roam_setup_done;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005797 }
5798
Hante Meuleman1119e232015-11-25 11:32:42 +01005799 /* Enable/Disable built-in roaming to allow supplicant to take care of
5800 * roaming.
Arend van Spriel5b435de2011-10-05 13:19:03 +02005801 */
Hante Meuleman68ca3952014-02-25 20:30:26 +01005802 brcmf_dbg(INFO, "Internal Roaming = %s\n",
Hante Meuleman7d34b052016-01-02 09:41:41 +01005803 ifp->drvr->settings->roamoff ? "Off" : "On");
5804 err = brcmf_fil_iovar_int_set(ifp, "roam_off",
5805 ifp->drvr->settings->roamoff);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005806 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01005807 brcmf_err("roam_off error (%d)\n", err);
Hante Meuleman1119e232015-11-25 11:32:42 +01005808 goto roam_setup_done;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005809 }
5810
Arend van Sprielf588bc02011-10-12 20:51:22 +02005811 roamtrigger[0] = cpu_to_le32(WL_ROAM_TRIGGER_LEVEL);
5812 roamtrigger[1] = cpu_to_le32(BRCM_BAND_ALL);
Arend van Sprielac24be62012-10-22 10:36:23 -07005813 err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_ROAM_TRIGGER,
Hante Meuleman81f5dcb2012-10-22 10:36:14 -07005814 (void *)roamtrigger, sizeof(roamtrigger));
Arend van Spriel5b435de2011-10-05 13:19:03 +02005815 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01005816 brcmf_err("WLC_SET_ROAM_TRIGGER error (%d)\n", err);
Hante Meuleman1119e232015-11-25 11:32:42 +01005817 goto roam_setup_done;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005818 }
5819
Arend van Sprielf588bc02011-10-12 20:51:22 +02005820 roam_delta[0] = cpu_to_le32(WL_ROAM_DELTA);
5821 roam_delta[1] = cpu_to_le32(BRCM_BAND_ALL);
Arend van Sprielac24be62012-10-22 10:36:23 -07005822 err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_ROAM_DELTA,
Hante Meuleman81f5dcb2012-10-22 10:36:14 -07005823 (void *)roam_delta, sizeof(roam_delta));
Arend van Spriel5b435de2011-10-05 13:19:03 +02005824 if (err) {
Arend van Spriel57d6e912012-12-05 15:26:00 +01005825 brcmf_err("WLC_SET_ROAM_DELTA error (%d)\n", err);
Hante Meuleman1119e232015-11-25 11:32:42 +01005826 goto roam_setup_done;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005827 }
5828
Hante Meuleman1119e232015-11-25 11:32:42 +01005829roam_setup_done:
Arend van Spriel5b435de2011-10-05 13:19:03 +02005830 return err;
5831}
5832
5833static s32
Hante Meuleman1678ba82015-12-10 13:43:00 +01005834brcmf_dongle_scantime(struct brcmf_if *ifp)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005835{
5836 s32 err = 0;
5837
Arend van Sprielac24be62012-10-22 10:36:23 -07005838 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_SCAN_CHANNEL_TIME,
Hante Meuleman1678ba82015-12-10 13:43:00 +01005839 BRCMF_SCAN_CHANNEL_TIME);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005840 if (err) {
Hante Meuleman1678ba82015-12-10 13:43:00 +01005841 brcmf_err("Scan assoc time error (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005842 goto dongle_scantime_out;
5843 }
Arend van Sprielac24be62012-10-22 10:36:23 -07005844 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_SCAN_UNASSOC_TIME,
Hante Meuleman1678ba82015-12-10 13:43:00 +01005845 BRCMF_SCAN_UNASSOC_TIME);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005846 if (err) {
Hante Meuleman1678ba82015-12-10 13:43:00 +01005847 brcmf_err("Scan unassoc time error (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005848 goto dongle_scantime_out;
5849 }
5850
Arend van Sprielac24be62012-10-22 10:36:23 -07005851 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_SCAN_PASSIVE_TIME,
Hante Meuleman1678ba82015-12-10 13:43:00 +01005852 BRCMF_SCAN_PASSIVE_TIME);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005853 if (err) {
Hante Meuleman1678ba82015-12-10 13:43:00 +01005854 brcmf_err("Scan passive time error (%d)\n", err);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005855 goto dongle_scantime_out;
5856 }
5857
5858dongle_scantime_out:
5859 return err;
5860}
5861
Arend van Sprielb48d8912014-07-12 08:49:41 +02005862static void brcmf_update_bw40_channel_flag(struct ieee80211_channel *channel,
5863 struct brcmu_chan *ch)
5864{
5865 u32 ht40_flag;
5866
5867 ht40_flag = channel->flags & IEEE80211_CHAN_NO_HT40;
5868 if (ch->sb == BRCMU_CHAN_SB_U) {
5869 if (ht40_flag == IEEE80211_CHAN_NO_HT40)
5870 channel->flags &= ~IEEE80211_CHAN_NO_HT40;
5871 channel->flags |= IEEE80211_CHAN_NO_HT40PLUS;
5872 } else {
5873 /* It should be one of
5874 * IEEE80211_CHAN_NO_HT40 or
5875 * IEEE80211_CHAN_NO_HT40PLUS
5876 */
5877 channel->flags &= ~IEEE80211_CHAN_NO_HT40;
5878 if (ht40_flag == IEEE80211_CHAN_NO_HT40)
5879 channel->flags |= IEEE80211_CHAN_NO_HT40MINUS;
5880 }
5881}
5882
5883static int brcmf_construct_chaninfo(struct brcmf_cfg80211_info *cfg,
5884 u32 bw_cap[])
Hante Meulemand48200b2013-04-03 12:40:29 +02005885{
5886 struct brcmf_if *ifp = netdev_priv(cfg_to_ndev(cfg));
Arend van Sprielb48d8912014-07-12 08:49:41 +02005887 struct ieee80211_supported_band *band;
5888 struct ieee80211_channel *channel;
5889 struct wiphy *wiphy;
Hante Meulemand48200b2013-04-03 12:40:29 +02005890 struct brcmf_chanspec_list *list;
Franky Lin83cf17a2013-04-11 13:28:50 +02005891 struct brcmu_chan ch;
Arend van Sprielb48d8912014-07-12 08:49:41 +02005892 int err;
Hante Meulemand48200b2013-04-03 12:40:29 +02005893 u8 *pbuf;
5894 u32 i, j;
5895 u32 total;
Arend van Sprielb48d8912014-07-12 08:49:41 +02005896 u32 chaninfo;
Hante Meulemand48200b2013-04-03 12:40:29 +02005897 u32 index;
Hante Meulemand48200b2013-04-03 12:40:29 +02005898
5899 pbuf = kzalloc(BRCMF_DCMD_MEDLEN, GFP_KERNEL);
5900
5901 if (pbuf == NULL)
5902 return -ENOMEM;
5903
5904 list = (struct brcmf_chanspec_list *)pbuf;
5905
5906 err = brcmf_fil_iovar_data_get(ifp, "chanspecs", pbuf,
5907 BRCMF_DCMD_MEDLEN);
5908 if (err) {
5909 brcmf_err("get chanspecs error (%d)\n", err);
Arend van Sprielb48d8912014-07-12 08:49:41 +02005910 goto fail_pbuf;
Hante Meulemand48200b2013-04-03 12:40:29 +02005911 }
5912
Arend van Sprielb48d8912014-07-12 08:49:41 +02005913 wiphy = cfg_to_wiphy(cfg);
Johannes Berg57fbcce2016-04-12 15:56:15 +02005914 band = wiphy->bands[NL80211_BAND_2GHZ];
Arend van Spriel58de92d2015-04-14 20:10:24 +02005915 if (band)
5916 for (i = 0; i < band->n_channels; i++)
5917 band->channels[i].flags = IEEE80211_CHAN_DISABLED;
Johannes Berg57fbcce2016-04-12 15:56:15 +02005918 band = wiphy->bands[NL80211_BAND_5GHZ];
Arend van Spriel58de92d2015-04-14 20:10:24 +02005919 if (band)
5920 for (i = 0; i < band->n_channels; i++)
5921 band->channels[i].flags = IEEE80211_CHAN_DISABLED;
Hante Meulemand48200b2013-04-03 12:40:29 +02005922
5923 total = le32_to_cpu(list->count);
5924 for (i = 0; i < total; i++) {
Franky Lin83cf17a2013-04-11 13:28:50 +02005925 ch.chspec = (u16)le32_to_cpu(list->element[i]);
5926 cfg->d11inf.decchspec(&ch);
Hante Meulemand48200b2013-04-03 12:40:29 +02005927
Franky Lin83cf17a2013-04-11 13:28:50 +02005928 if (ch.band == BRCMU_CHAN_BAND_2G) {
Johannes Berg57fbcce2016-04-12 15:56:15 +02005929 band = wiphy->bands[NL80211_BAND_2GHZ];
Franky Lin83cf17a2013-04-11 13:28:50 +02005930 } else if (ch.band == BRCMU_CHAN_BAND_5G) {
Johannes Berg57fbcce2016-04-12 15:56:15 +02005931 band = wiphy->bands[NL80211_BAND_5GHZ];
Hante Meulemand48200b2013-04-03 12:40:29 +02005932 } else {
Arend van Spriel2375d972014-01-06 12:40:41 +01005933 brcmf_err("Invalid channel Spec. 0x%x.\n", ch.chspec);
Hante Meulemand48200b2013-04-03 12:40:29 +02005934 continue;
5935 }
Arend van Spriel58de92d2015-04-14 20:10:24 +02005936 if (!band)
5937 continue;
Arend van Sprielb48d8912014-07-12 08:49:41 +02005938 if (!(bw_cap[band->band] & WLC_BW_40MHZ_BIT) &&
Arend van Spriel2375d972014-01-06 12:40:41 +01005939 ch.bw == BRCMU_CHAN_BW_40)
Hante Meulemand48200b2013-04-03 12:40:29 +02005940 continue;
Arend van Sprielb48d8912014-07-12 08:49:41 +02005941 if (!(bw_cap[band->band] & WLC_BW_80MHZ_BIT) &&
Arend van Sprielee942ec2014-05-12 10:47:38 +02005942 ch.bw == BRCMU_CHAN_BW_80)
5943 continue;
Arend van Sprielb48d8912014-07-12 08:49:41 +02005944
5945 channel = band->channels;
5946 index = band->n_channels;
5947 for (j = 0; j < band->n_channels; j++) {
Rafał Miłecki4712d882016-05-20 13:38:57 +02005948 if (channel[j].hw_value == ch.control_ch_num) {
Arend van Sprielb48d8912014-07-12 08:49:41 +02005949 index = j;
Hante Meulemand48200b2013-04-03 12:40:29 +02005950 break;
5951 }
5952 }
Arend van Sprielb48d8912014-07-12 08:49:41 +02005953 channel[index].center_freq =
Rafał Miłecki4712d882016-05-20 13:38:57 +02005954 ieee80211_channel_to_frequency(ch.control_ch_num,
5955 band->band);
5956 channel[index].hw_value = ch.control_ch_num;
Hante Meulemand48200b2013-04-03 12:40:29 +02005957
Arend van Sprielb48d8912014-07-12 08:49:41 +02005958 /* assuming the chanspecs order is HT20,
5959 * HT40 upper, HT40 lower, and VHT80.
5960 */
5961 if (ch.bw == BRCMU_CHAN_BW_80) {
5962 channel[index].flags &= ~IEEE80211_CHAN_NO_80MHZ;
5963 } else if (ch.bw == BRCMU_CHAN_BW_40) {
5964 brcmf_update_bw40_channel_flag(&channel[index], &ch);
5965 } else {
Arend van Spriel58de92d2015-04-14 20:10:24 +02005966 /* enable the channel and disable other bandwidths
5967 * for now as mentioned order assure they are enabled
5968 * for subsequent chanspecs.
Arend van Sprielee942ec2014-05-12 10:47:38 +02005969 */
Arend van Sprielb48d8912014-07-12 08:49:41 +02005970 channel[index].flags = IEEE80211_CHAN_NO_HT40 |
5971 IEEE80211_CHAN_NO_80MHZ;
5972 ch.bw = BRCMU_CHAN_BW_20;
5973 cfg->d11inf.encchspec(&ch);
5974 chaninfo = ch.chspec;
5975 err = brcmf_fil_bsscfg_int_get(ifp, "per_chan_info",
5976 &chaninfo);
5977 if (!err) {
5978 if (chaninfo & WL_CHAN_RADAR)
5979 channel[index].flags |=
5980 (IEEE80211_CHAN_RADAR |
5981 IEEE80211_CHAN_NO_IR);
5982 if (chaninfo & WL_CHAN_PASSIVE)
5983 channel[index].flags |=
5984 IEEE80211_CHAN_NO_IR;
Hante Meulemand48200b2013-04-03 12:40:29 +02005985 }
Hante Meulemand48200b2013-04-03 12:40:29 +02005986 }
5987 }
Arend van Sprielb48d8912014-07-12 08:49:41 +02005988
Arend van Sprielb48d8912014-07-12 08:49:41 +02005989fail_pbuf:
Hante Meulemand48200b2013-04-03 12:40:29 +02005990 kfree(pbuf);
5991 return err;
5992}
5993
Arend van Sprielb48d8912014-07-12 08:49:41 +02005994static int brcmf_enable_bw40_2g(struct brcmf_cfg80211_info *cfg)
Arend van Sprielaa70b4f2014-07-12 08:49:40 +02005995{
Arend van Sprielb48d8912014-07-12 08:49:41 +02005996 struct brcmf_if *ifp = netdev_priv(cfg_to_ndev(cfg));
5997 struct ieee80211_supported_band *band;
Arend van Sprielaa70b4f2014-07-12 08:49:40 +02005998 struct brcmf_fil_bwcap_le band_bwcap;
Arend van Sprielb48d8912014-07-12 08:49:41 +02005999 struct brcmf_chanspec_list *list;
6000 u8 *pbuf;
Arend van Sprielaa70b4f2014-07-12 08:49:40 +02006001 u32 val;
6002 int err;
Arend van Sprielb48d8912014-07-12 08:49:41 +02006003 struct brcmu_chan ch;
6004 u32 num_chan;
6005 int i, j;
Arend van Sprielaa70b4f2014-07-12 08:49:40 +02006006
6007 /* verify support for bw_cap command */
6008 val = WLC_BAND_5G;
6009 err = brcmf_fil_iovar_int_get(ifp, "bw_cap", &val);
6010
6011 if (!err) {
6012 /* only set 2G bandwidth using bw_cap command */
6013 band_bwcap.band = cpu_to_le32(WLC_BAND_2G);
6014 band_bwcap.bw_cap = cpu_to_le32(WLC_BW_CAP_40MHZ);
6015 err = brcmf_fil_iovar_data_set(ifp, "bw_cap", &band_bwcap,
6016 sizeof(band_bwcap));
6017 } else {
6018 brcmf_dbg(INFO, "fallback to mimo_bw_cap\n");
6019 val = WLC_N_BW_40ALL;
6020 err = brcmf_fil_iovar_int_set(ifp, "mimo_bw_cap", val);
6021 }
Arend van Sprielb48d8912014-07-12 08:49:41 +02006022
6023 if (!err) {
6024 /* update channel info in 2G band */
6025 pbuf = kzalloc(BRCMF_DCMD_MEDLEN, GFP_KERNEL);
6026
6027 if (pbuf == NULL)
6028 return -ENOMEM;
6029
6030 ch.band = BRCMU_CHAN_BAND_2G;
6031 ch.bw = BRCMU_CHAN_BW_40;
Hante Meulemanfac7d2a2014-09-11 22:51:30 +02006032 ch.sb = BRCMU_CHAN_SB_NONE;
Arend van Sprielb48d8912014-07-12 08:49:41 +02006033 ch.chnum = 0;
6034 cfg->d11inf.encchspec(&ch);
6035
6036 /* pass encoded chanspec in query */
6037 *(__le16 *)pbuf = cpu_to_le16(ch.chspec);
6038
6039 err = brcmf_fil_iovar_data_get(ifp, "chanspecs", pbuf,
6040 BRCMF_DCMD_MEDLEN);
6041 if (err) {
6042 brcmf_err("get chanspecs error (%d)\n", err);
6043 kfree(pbuf);
6044 return err;
6045 }
6046
Johannes Berg57fbcce2016-04-12 15:56:15 +02006047 band = cfg_to_wiphy(cfg)->bands[NL80211_BAND_2GHZ];
Arend van Sprielb48d8912014-07-12 08:49:41 +02006048 list = (struct brcmf_chanspec_list *)pbuf;
6049 num_chan = le32_to_cpu(list->count);
6050 for (i = 0; i < num_chan; i++) {
6051 ch.chspec = (u16)le32_to_cpu(list->element[i]);
6052 cfg->d11inf.decchspec(&ch);
6053 if (WARN_ON(ch.band != BRCMU_CHAN_BAND_2G))
6054 continue;
6055 if (WARN_ON(ch.bw != BRCMU_CHAN_BW_40))
6056 continue;
6057 for (j = 0; j < band->n_channels; j++) {
Rafał Miłecki4712d882016-05-20 13:38:57 +02006058 if (band->channels[j].hw_value == ch.control_ch_num)
Arend van Sprielb48d8912014-07-12 08:49:41 +02006059 break;
6060 }
6061 if (WARN_ON(j == band->n_channels))
6062 continue;
6063
6064 brcmf_update_bw40_channel_flag(&band->channels[j], &ch);
6065 }
Hante Meulemanfac7d2a2014-09-11 22:51:30 +02006066 kfree(pbuf);
Arend van Sprielb48d8912014-07-12 08:49:41 +02006067 }
Arend van Sprielaa70b4f2014-07-12 08:49:40 +02006068 return err;
6069}
6070
Arend van Spriel2375d972014-01-06 12:40:41 +01006071static void brcmf_get_bwcap(struct brcmf_if *ifp, u32 bw_cap[])
6072{
6073 u32 band, mimo_bwcap;
6074 int err;
6075
6076 band = WLC_BAND_2G;
6077 err = brcmf_fil_iovar_int_get(ifp, "bw_cap", &band);
6078 if (!err) {
Johannes Berg57fbcce2016-04-12 15:56:15 +02006079 bw_cap[NL80211_BAND_2GHZ] = band;
Arend van Spriel2375d972014-01-06 12:40:41 +01006080 band = WLC_BAND_5G;
6081 err = brcmf_fil_iovar_int_get(ifp, "bw_cap", &band);
6082 if (!err) {
Johannes Berg57fbcce2016-04-12 15:56:15 +02006083 bw_cap[NL80211_BAND_5GHZ] = band;
Arend van Spriel2375d972014-01-06 12:40:41 +01006084 return;
6085 }
6086 WARN_ON(1);
6087 return;
6088 }
6089 brcmf_dbg(INFO, "fallback to mimo_bw_cap info\n");
6090 mimo_bwcap = 0;
6091 err = brcmf_fil_iovar_int_get(ifp, "mimo_bw_cap", &mimo_bwcap);
6092 if (err)
6093 /* assume 20MHz if firmware does not give a clue */
6094 mimo_bwcap = WLC_N_BW_20ALL;
6095
6096 switch (mimo_bwcap) {
6097 case WLC_N_BW_40ALL:
Johannes Berg57fbcce2016-04-12 15:56:15 +02006098 bw_cap[NL80211_BAND_2GHZ] |= WLC_BW_40MHZ_BIT;
Arend van Spriel2375d972014-01-06 12:40:41 +01006099 /* fall-thru */
6100 case WLC_N_BW_20IN2G_40IN5G:
Johannes Berg57fbcce2016-04-12 15:56:15 +02006101 bw_cap[NL80211_BAND_5GHZ] |= WLC_BW_40MHZ_BIT;
Arend van Spriel2375d972014-01-06 12:40:41 +01006102 /* fall-thru */
6103 case WLC_N_BW_20ALL:
Johannes Berg57fbcce2016-04-12 15:56:15 +02006104 bw_cap[NL80211_BAND_2GHZ] |= WLC_BW_20MHZ_BIT;
6105 bw_cap[NL80211_BAND_5GHZ] |= WLC_BW_20MHZ_BIT;
Arend van Spriel2375d972014-01-06 12:40:41 +01006106 break;
6107 default:
6108 brcmf_err("invalid mimo_bw_cap value\n");
6109 }
6110}
Hante Meulemand48200b2013-04-03 12:40:29 +02006111
Arend van Spriel18d6c532014-05-12 10:47:35 +02006112static void brcmf_update_ht_cap(struct ieee80211_supported_band *band,
6113 u32 bw_cap[2], u32 nchain)
6114{
6115 band->ht_cap.ht_supported = true;
6116 if (bw_cap[band->band] & WLC_BW_40MHZ_BIT) {
6117 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_40;
6118 band->ht_cap.cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
6119 }
6120 band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_20;
6121 band->ht_cap.cap |= IEEE80211_HT_CAP_DSSSCCK40;
6122 band->ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
6123 band->ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_16;
6124 memset(band->ht_cap.mcs.rx_mask, 0xff, nchain);
6125 band->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
6126}
6127
6128static __le16 brcmf_get_mcs_map(u32 nchain, enum ieee80211_vht_mcs_support supp)
6129{
6130 u16 mcs_map;
6131 int i;
6132
6133 for (i = 0, mcs_map = 0xFFFF; i < nchain; i++)
6134 mcs_map = (mcs_map << 2) | supp;
6135
6136 return cpu_to_le16(mcs_map);
6137}
6138
6139static void brcmf_update_vht_cap(struct ieee80211_supported_band *band,
Hante Meuleman7bf65aa2015-11-25 11:32:43 +01006140 u32 bw_cap[2], u32 nchain, u32 txstreams,
6141 u32 txbf_bfe_cap, u32 txbf_bfr_cap)
Arend van Spriel18d6c532014-05-12 10:47:35 +02006142{
6143 __le16 mcs_map;
6144
6145 /* not allowed in 2.4G band */
Johannes Berg57fbcce2016-04-12 15:56:15 +02006146 if (band->band == NL80211_BAND_2GHZ)
Arend van Spriel18d6c532014-05-12 10:47:35 +02006147 return;
6148
6149 band->vht_cap.vht_supported = true;
6150 /* 80MHz is mandatory */
6151 band->vht_cap.cap |= IEEE80211_VHT_CAP_SHORT_GI_80;
6152 if (bw_cap[band->band] & WLC_BW_160MHZ_BIT) {
6153 band->vht_cap.cap |= IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
6154 band->vht_cap.cap |= IEEE80211_VHT_CAP_SHORT_GI_160;
6155 }
6156 /* all support 256-QAM */
6157 mcs_map = brcmf_get_mcs_map(nchain, IEEE80211_VHT_MCS_SUPPORT_0_9);
6158 band->vht_cap.vht_mcs.rx_mcs_map = mcs_map;
6159 band->vht_cap.vht_mcs.tx_mcs_map = mcs_map;
Hante Meuleman7bf65aa2015-11-25 11:32:43 +01006160
6161 /* Beamforming support information */
6162 if (txbf_bfe_cap & BRCMF_TXBF_SU_BFE_CAP)
6163 band->vht_cap.cap |= IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE;
6164 if (txbf_bfe_cap & BRCMF_TXBF_MU_BFE_CAP)
6165 band->vht_cap.cap |= IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE;
6166 if (txbf_bfr_cap & BRCMF_TXBF_SU_BFR_CAP)
6167 band->vht_cap.cap |= IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE;
6168 if (txbf_bfr_cap & BRCMF_TXBF_MU_BFR_CAP)
6169 band->vht_cap.cap |= IEEE80211_VHT_CAP_MU_BEAMFORMER_CAPABLE;
6170
6171 if ((txbf_bfe_cap || txbf_bfr_cap) && (txstreams > 1)) {
6172 band->vht_cap.cap |=
6173 (2 << IEEE80211_VHT_CAP_BEAMFORMEE_STS_SHIFT);
6174 band->vht_cap.cap |= ((txstreams - 1) <<
6175 IEEE80211_VHT_CAP_SOUNDING_DIMENSIONS_SHIFT);
6176 band->vht_cap.cap |=
6177 IEEE80211_VHT_CAP_VHT_LINK_ADAPTATION_VHT_MRQ_MFB;
6178 }
Arend van Spriel18d6c532014-05-12 10:47:35 +02006179}
6180
Arend van Sprielb48d8912014-07-12 08:49:41 +02006181static int brcmf_setup_wiphybands(struct wiphy *wiphy)
Arend van Spriel5b435de2011-10-05 13:19:03 +02006182{
Arend van Sprielb48d8912014-07-12 08:49:41 +02006183 struct brcmf_cfg80211_info *cfg = wiphy_priv(wiphy);
Arend van Sprielac24be62012-10-22 10:36:23 -07006184 struct brcmf_if *ifp = netdev_priv(cfg_to_ndev(cfg));
Arend van Spriel18d6c532014-05-12 10:47:35 +02006185 u32 nmode = 0;
6186 u32 vhtmode = 0;
Arend van Sprielb48d8912014-07-12 08:49:41 +02006187 u32 bw_cap[2] = { WLC_BW_20MHZ_BIT, WLC_BW_20MHZ_BIT };
Daniel Kim4aca7a12014-02-25 20:30:36 +01006188 u32 rxchain;
6189 u32 nchain;
Arend van Sprielb48d8912014-07-12 08:49:41 +02006190 int err;
Hante Meulemand48200b2013-04-03 12:40:29 +02006191 s32 i;
Arend van Spriel2375d972014-01-06 12:40:41 +01006192 struct ieee80211_supported_band *band;
Hante Meuleman7bf65aa2015-11-25 11:32:43 +01006193 u32 txstreams = 0;
6194 u32 txbf_bfe_cap = 0;
6195 u32 txbf_bfr_cap = 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02006196
Arend van Spriel18d6c532014-05-12 10:47:35 +02006197 (void)brcmf_fil_iovar_int_get(ifp, "vhtmode", &vhtmode);
Hante Meulemand48200b2013-04-03 12:40:29 +02006198 err = brcmf_fil_iovar_int_get(ifp, "nmode", &nmode);
6199 if (err) {
6200 brcmf_err("nmode error (%d)\n", err);
6201 } else {
Arend van Spriel2375d972014-01-06 12:40:41 +01006202 brcmf_get_bwcap(ifp, bw_cap);
Hante Meulemand48200b2013-04-03 12:40:29 +02006203 }
Arend van Spriel18d6c532014-05-12 10:47:35 +02006204 brcmf_dbg(INFO, "nmode=%d, vhtmode=%d, bw_cap=(%d, %d)\n",
Johannes Berg57fbcce2016-04-12 15:56:15 +02006205 nmode, vhtmode, bw_cap[NL80211_BAND_2GHZ],
6206 bw_cap[NL80211_BAND_5GHZ]);
Hante Meulemand48200b2013-04-03 12:40:29 +02006207
Daniel Kim4aca7a12014-02-25 20:30:36 +01006208 err = brcmf_fil_iovar_int_get(ifp, "rxchain", &rxchain);
6209 if (err) {
6210 brcmf_err("rxchain error (%d)\n", err);
6211 nchain = 1;
6212 } else {
6213 for (nchain = 0; rxchain; nchain++)
6214 rxchain = rxchain & (rxchain - 1);
6215 }
6216 brcmf_dbg(INFO, "nchain=%d\n", nchain);
6217
Arend van Sprielb48d8912014-07-12 08:49:41 +02006218 err = brcmf_construct_chaninfo(cfg, bw_cap);
Hante Meulemand48200b2013-04-03 12:40:29 +02006219 if (err) {
Arend van Sprielb48d8912014-07-12 08:49:41 +02006220 brcmf_err("brcmf_construct_chaninfo failed (%d)\n", err);
Hante Meulemand48200b2013-04-03 12:40:29 +02006221 return err;
6222 }
6223
Hante Meuleman7bf65aa2015-11-25 11:32:43 +01006224 if (vhtmode) {
6225 (void)brcmf_fil_iovar_int_get(ifp, "txstreams", &txstreams);
6226 (void)brcmf_fil_iovar_int_get(ifp, "txbf_bfe_cap",
6227 &txbf_bfe_cap);
6228 (void)brcmf_fil_iovar_int_get(ifp, "txbf_bfr_cap",
6229 &txbf_bfr_cap);
6230 }
6231
Arend van Sprielb48d8912014-07-12 08:49:41 +02006232 wiphy = cfg_to_wiphy(cfg);
6233 for (i = 0; i < ARRAY_SIZE(wiphy->bands); i++) {
6234 band = wiphy->bands[i];
6235 if (band == NULL)
Arend van Spriel2375d972014-01-06 12:40:41 +01006236 continue;
Hante Meulemand48200b2013-04-03 12:40:29 +02006237
Arend van Spriel18d6c532014-05-12 10:47:35 +02006238 if (nmode)
6239 brcmf_update_ht_cap(band, bw_cap, nchain);
6240 if (vhtmode)
Hante Meuleman7bf65aa2015-11-25 11:32:43 +01006241 brcmf_update_vht_cap(band, bw_cap, nchain, txstreams,
6242 txbf_bfe_cap, txbf_bfr_cap);
Hante Meulemand48200b2013-04-03 12:40:29 +02006243 }
6244
Arend van Sprielb48d8912014-07-12 08:49:41 +02006245 return 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02006246}
6247
Arend van Sprielaa70b4f2014-07-12 08:49:40 +02006248static const struct ieee80211_txrx_stypes
6249brcmf_txrx_stypes[NUM_NL80211_IFTYPES] = {
6250 [NL80211_IFTYPE_STATION] = {
6251 .tx = 0xffff,
6252 .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
6253 BIT(IEEE80211_STYPE_PROBE_REQ >> 4)
6254 },
6255 [NL80211_IFTYPE_P2P_CLIENT] = {
6256 .tx = 0xffff,
6257 .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
6258 BIT(IEEE80211_STYPE_PROBE_REQ >> 4)
6259 },
6260 [NL80211_IFTYPE_P2P_GO] = {
6261 .tx = 0xffff,
6262 .rx = BIT(IEEE80211_STYPE_ASSOC_REQ >> 4) |
6263 BIT(IEEE80211_STYPE_REASSOC_REQ >> 4) |
6264 BIT(IEEE80211_STYPE_PROBE_REQ >> 4) |
6265 BIT(IEEE80211_STYPE_DISASSOC >> 4) |
6266 BIT(IEEE80211_STYPE_AUTH >> 4) |
6267 BIT(IEEE80211_STYPE_DEAUTH >> 4) |
6268 BIT(IEEE80211_STYPE_ACTION >> 4)
6269 },
6270 [NL80211_IFTYPE_P2P_DEVICE] = {
6271 .tx = 0xffff,
6272 .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
6273 BIT(IEEE80211_STYPE_PROBE_REQ >> 4)
6274 }
6275};
6276
Arend van Spriel0882dda2015-08-20 22:06:03 +02006277/**
6278 * brcmf_setup_ifmodes() - determine interface modes and combinations.
6279 *
6280 * @wiphy: wiphy object.
6281 * @ifp: interface object needed for feat module api.
6282 *
6283 * The interface modes and combinations are determined dynamically here
6284 * based on firmware functionality.
6285 *
6286 * no p2p and no mbss:
6287 *
6288 * #STA <= 1, #AP <= 1, channels = 1, 2 total
6289 *
6290 * no p2p and mbss:
6291 *
6292 * #STA <= 1, #AP <= 1, channels = 1, 2 total
6293 * #AP <= 4, matching BI, channels = 1, 4 total
6294 *
6295 * p2p, no mchan, and mbss:
6296 *
6297 * #STA <= 1, #P2P-DEV <= 1, #{P2P-CL, P2P-GO} <= 1, channels = 1, 3 total
6298 * #STA <= 1, #P2P-DEV <= 1, #AP <= 1, #P2P-CL <= 1, channels = 1, 4 total
6299 * #AP <= 4, matching BI, channels = 1, 4 total
6300 *
6301 * p2p, mchan, and mbss:
6302 *
6303 * #STA <= 1, #P2P-DEV <= 1, #{P2P-CL, P2P-GO} <= 1, channels = 2, 3 total
6304 * #STA <= 1, #P2P-DEV <= 1, #AP <= 1, #P2P-CL <= 1, channels = 1, 4 total
6305 * #AP <= 4, matching BI, channels = 1, 4 total
6306 */
Pontus Fuchs2e5f66f2015-06-11 00:12:18 +02006307static int brcmf_setup_ifmodes(struct wiphy *wiphy, struct brcmf_if *ifp)
6308{
6309 struct ieee80211_iface_combination *combo = NULL;
Arend van Spriel0882dda2015-08-20 22:06:03 +02006310 struct ieee80211_iface_limit *c0_limits = NULL;
6311 struct ieee80211_iface_limit *p2p_limits = NULL;
6312 struct ieee80211_iface_limit *mbss_limits = NULL;
6313 bool mbss, p2p;
6314 int i, c, n_combos;
Pontus Fuchs2e5f66f2015-06-11 00:12:18 +02006315
Arend van Spriel0882dda2015-08-20 22:06:03 +02006316 mbss = brcmf_feat_is_enabled(ifp, BRCMF_FEAT_MBSS);
6317 p2p = brcmf_feat_is_enabled(ifp, BRCMF_FEAT_P2P);
6318
6319 n_combos = 1 + !!p2p + !!mbss;
6320 combo = kcalloc(n_combos, sizeof(*combo), GFP_KERNEL);
Pontus Fuchs2e5f66f2015-06-11 00:12:18 +02006321 if (!combo)
6322 goto err;
6323
Pontus Fuchs2e5f66f2015-06-11 00:12:18 +02006324 wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
6325 BIT(NL80211_IFTYPE_ADHOC) |
6326 BIT(NL80211_IFTYPE_AP);
6327
Arend van Spriel0882dda2015-08-20 22:06:03 +02006328 c = 0;
6329 i = 0;
Rafał Miłeckif568ada2016-06-07 21:10:18 +02006330 c0_limits = kcalloc(p2p ? 3 : 2, sizeof(*c0_limits), GFP_KERNEL);
6331 if (!c0_limits)
6332 goto err;
Arend van Spriel0882dda2015-08-20 22:06:03 +02006333 c0_limits[i].max = 1;
6334 c0_limits[i++].types = BIT(NL80211_IFTYPE_STATION);
6335 if (p2p) {
6336 if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_MCHAN))
6337 combo[c].num_different_channels = 2;
Pontus Fuchs2e5f66f2015-06-11 00:12:18 +02006338 wiphy->interface_modes |= BIT(NL80211_IFTYPE_P2P_CLIENT) |
6339 BIT(NL80211_IFTYPE_P2P_GO) |
6340 BIT(NL80211_IFTYPE_P2P_DEVICE);
Arend van Spriel0882dda2015-08-20 22:06:03 +02006341 c0_limits[i].max = 1;
6342 c0_limits[i++].types = BIT(NL80211_IFTYPE_P2P_DEVICE);
6343 c0_limits[i].max = 1;
6344 c0_limits[i++].types = BIT(NL80211_IFTYPE_P2P_CLIENT) |
6345 BIT(NL80211_IFTYPE_P2P_GO);
6346 } else {
6347 c0_limits[i].max = 1;
6348 c0_limits[i++].types = BIT(NL80211_IFTYPE_AP);
Pontus Fuchs2e5f66f2015-06-11 00:12:18 +02006349 }
Rafał Miłeckif568ada2016-06-07 21:10:18 +02006350 combo[c].num_different_channels = 1;
Arend van Spriel0882dda2015-08-20 22:06:03 +02006351 combo[c].max_interfaces = i;
6352 combo[c].n_limits = i;
6353 combo[c].limits = c0_limits;
Pontus Fuchs2e5f66f2015-06-11 00:12:18 +02006354
Arend van Spriel0882dda2015-08-20 22:06:03 +02006355 if (p2p) {
6356 c++;
6357 i = 0;
Rafał Miłeckif568ada2016-06-07 21:10:18 +02006358 p2p_limits = kcalloc(4, sizeof(*p2p_limits), GFP_KERNEL);
6359 if (!p2p_limits)
6360 goto err;
Arend van Spriel0882dda2015-08-20 22:06:03 +02006361 p2p_limits[i].max = 1;
6362 p2p_limits[i++].types = BIT(NL80211_IFTYPE_STATION);
6363 p2p_limits[i].max = 1;
6364 p2p_limits[i++].types = BIT(NL80211_IFTYPE_AP);
6365 p2p_limits[i].max = 1;
6366 p2p_limits[i++].types = BIT(NL80211_IFTYPE_P2P_CLIENT);
6367 p2p_limits[i].max = 1;
6368 p2p_limits[i++].types = BIT(NL80211_IFTYPE_P2P_DEVICE);
Rafał Miłeckif568ada2016-06-07 21:10:18 +02006369 combo[c].num_different_channels = 1;
Arend van Spriel0882dda2015-08-20 22:06:03 +02006370 combo[c].max_interfaces = i;
6371 combo[c].n_limits = i;
6372 combo[c].limits = p2p_limits;
6373 }
6374
6375 if (mbss) {
6376 c++;
Rafał Miłeckif568ada2016-06-07 21:10:18 +02006377 i = 0;
6378 mbss_limits = kcalloc(1, sizeof(*mbss_limits), GFP_KERNEL);
6379 if (!mbss_limits)
6380 goto err;
6381 mbss_limits[i].max = 4;
6382 mbss_limits[i++].types = BIT(NL80211_IFTYPE_AP);
Arend van Spriel0882dda2015-08-20 22:06:03 +02006383 combo[c].beacon_int_infra_match = true;
6384 combo[c].num_different_channels = 1;
Arend van Spriel0882dda2015-08-20 22:06:03 +02006385 combo[c].max_interfaces = 4;
Rafał Miłeckif568ada2016-06-07 21:10:18 +02006386 combo[c].n_limits = i;
Arend van Spriel0882dda2015-08-20 22:06:03 +02006387 combo[c].limits = mbss_limits;
6388 }
Rafał Miłeckif568ada2016-06-07 21:10:18 +02006389
Arend van Spriel0882dda2015-08-20 22:06:03 +02006390 wiphy->n_iface_combinations = n_combos;
Pontus Fuchs2e5f66f2015-06-11 00:12:18 +02006391 wiphy->iface_combinations = combo;
Pontus Fuchs2e5f66f2015-06-11 00:12:18 +02006392 return 0;
6393
6394err:
Arend van Spriel0882dda2015-08-20 22:06:03 +02006395 kfree(c0_limits);
6396 kfree(p2p_limits);
6397 kfree(mbss_limits);
Pontus Fuchs2e5f66f2015-06-11 00:12:18 +02006398 kfree(combo);
6399 return -ENOMEM;
6400}
6401
Arend van Sprielaa70b4f2014-07-12 08:49:40 +02006402static void brcmf_wiphy_pno_params(struct wiphy *wiphy)
6403{
6404 /* scheduled scan settings */
6405 wiphy->max_sched_scan_ssids = BRCMF_PNO_MAX_PFN_COUNT;
6406 wiphy->max_match_sets = BRCMF_PNO_MAX_PFN_COUNT;
6407 wiphy->max_sched_scan_ie_len = BRCMF_SCAN_IE_LEN_MAX;
6408 wiphy->flags |= WIPHY_FLAG_SUPPORTS_SCHED_SCAN;
6409}
6410
Hante Meuleman4eb3af72014-09-30 10:23:18 +02006411#ifdef CONFIG_PM
Hante Meuleman3021ad92016-01-05 11:05:45 +01006412static struct wiphy_wowlan_support brcmf_wowlan_support = {
Hante Meuleman4eb3af72014-09-30 10:23:18 +02006413 .flags = WIPHY_WOWLAN_MAGIC_PKT | WIPHY_WOWLAN_DISCONNECT,
Hante Meulemanb9a82f82014-10-28 14:56:06 +01006414 .n_patterns = BRCMF_WOWL_MAXPATTERNS,
6415 .pattern_max_len = BRCMF_WOWL_MAXPATTERNSIZE,
6416 .pattern_min_len = 1,
6417 .max_pkt_offset = 1500,
Hante Meuleman4eb3af72014-09-30 10:23:18 +02006418};
6419#endif
6420
Hante Meuleman3021ad92016-01-05 11:05:45 +01006421static void brcmf_wiphy_wowl_params(struct wiphy *wiphy, struct brcmf_if *ifp)
Hante Meuleman4eb3af72014-09-30 10:23:18 +02006422{
6423#ifdef CONFIG_PM
Hante Meuleman3021ad92016-01-05 11:05:45 +01006424 struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
Hante Meuleman3021ad92016-01-05 11:05:45 +01006425
6426 if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_PNO)) {
Hante Meuleman5c22fb82016-02-17 11:27:03 +01006427 if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_WOWL_ND)) {
6428 brcmf_wowlan_support.flags |= WIPHY_WOWLAN_NET_DETECT;
6429 init_waitqueue_head(&cfg->wowl.nd_data_wait);
Hante Meuleman3021ad92016-01-05 11:05:45 +01006430 }
6431 }
Hante Meuleman5c22fb82016-02-17 11:27:03 +01006432 if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_WOWL_GTK)) {
6433 brcmf_wowlan_support.flags |= WIPHY_WOWLAN_SUPPORTS_GTK_REKEY;
6434 brcmf_wowlan_support.flags |= WIPHY_WOWLAN_GTK_REKEY_FAILURE;
6435 }
6436
Hante Meuleman4eb3af72014-09-30 10:23:18 +02006437 wiphy->wowlan = &brcmf_wowlan_support;
6438#endif
6439}
6440
Arend van Sprielb48d8912014-07-12 08:49:41 +02006441static int brcmf_setup_wiphy(struct wiphy *wiphy, struct brcmf_if *ifp)
Arend van Sprielaa70b4f2014-07-12 08:49:40 +02006442{
Rafa? Mi?eckie3faa862015-07-09 17:07:08 +02006443 struct brcmf_pub *drvr = ifp->drvr;
Rafał Miłecki50f32e22015-08-20 00:16:42 +02006444 const struct ieee80211_iface_combination *combo;
Arend van Spriel58de92d2015-04-14 20:10:24 +02006445 struct ieee80211_supported_band *band;
Rafał Miłecki50f32e22015-08-20 00:16:42 +02006446 u16 max_interfaces = 0;
Arend van Spriel58de92d2015-04-14 20:10:24 +02006447 __le32 bandlist[3];
6448 u32 n_bands;
6449 int err, i;
6450
Arend van Sprielaa70b4f2014-07-12 08:49:40 +02006451 wiphy->max_scan_ssids = WL_NUM_SCAN_MAX;
6452 wiphy->max_scan_ie_len = BRCMF_SCAN_IE_LEN_MAX;
Hante Meuleman6c404f32015-12-10 13:43:03 +01006453 wiphy->max_num_pmkids = BRCMF_MAXPMKID;
Pontus Fuchs2e5f66f2015-06-11 00:12:18 +02006454
6455 err = brcmf_setup_ifmodes(wiphy, ifp);
6456 if (err)
6457 return err;
6458
Rafał Miłecki50f32e22015-08-20 00:16:42 +02006459 for (i = 0, combo = wiphy->iface_combinations;
6460 i < wiphy->n_iface_combinations; i++, combo++) {
6461 max_interfaces = max(max_interfaces, combo->max_interfaces);
6462 }
6463
6464 for (i = 0; i < max_interfaces && i < ARRAY_SIZE(drvr->addresses);
6465 i++) {
Rafa? Mi?eckie3faa862015-07-09 17:07:08 +02006466 u8 *addr = drvr->addresses[i].addr;
6467
6468 memcpy(addr, drvr->mac, ETH_ALEN);
6469 if (i) {
6470 addr[0] |= BIT(1);
6471 addr[ETH_ALEN - 1] ^= i;
6472 }
6473 }
6474 wiphy->addresses = drvr->addresses;
6475 wiphy->n_addresses = i;
6476
Arend van Sprielaa70b4f2014-07-12 08:49:40 +02006477 wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM;
Hante Meuleman240d61a2016-02-17 11:27:10 +01006478 wiphy->cipher_suites = brcmf_cipher_suites;
6479 wiphy->n_cipher_suites = ARRAY_SIZE(brcmf_cipher_suites);
6480 if (!brcmf_feat_is_enabled(ifp, BRCMF_FEAT_MFP))
6481 wiphy->n_cipher_suites--;
Arend van Spriel7705ba62016-04-17 16:44:58 +02006482 wiphy->bss_select_support = BIT(NL80211_BSS_SELECT_ATTR_RSSI) |
6483 BIT(NL80211_BSS_SELECT_ATTR_BAND_PREF) |
6484 BIT(NL80211_BSS_SELECT_ATTR_RSSI_ADJUST);
6485
Arend van Sprielaa70b4f2014-07-12 08:49:40 +02006486 wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT |
6487 WIPHY_FLAG_OFFCHAN_TX |
Hante Meulemana7b82d42015-12-10 13:43:04 +01006488 WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL;
6489 if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_TDLS))
6490 wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS;
Hante Meuleman7d34b052016-01-02 09:41:41 +01006491 if (!ifp->drvr->settings->roamoff)
Arend van Sprielaa70b4f2014-07-12 08:49:40 +02006492 wiphy->flags |= WIPHY_FLAG_SUPPORTS_FW_ROAM;
6493 wiphy->mgmt_stypes = brcmf_txrx_stypes;
6494 wiphy->max_remain_on_channel_duration = 5000;
Arend van Spriel7a7a87d2015-04-14 20:10:27 +02006495 if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_PNO))
6496 brcmf_wiphy_pno_params(wiphy);
Arend van Sprielaa70b4f2014-07-12 08:49:40 +02006497
6498 /* vendor commands/events support */
6499 wiphy->vendor_commands = brcmf_vendor_cmds;
6500 wiphy->n_vendor_commands = BRCMF_VNDR_CMDS_LAST - 1;
6501
Hante Meuleman4eb3af72014-09-30 10:23:18 +02006502 if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_WOWL))
Hante Meuleman3021ad92016-01-05 11:05:45 +01006503 brcmf_wiphy_wowl_params(wiphy, ifp);
Arend van Spriel58de92d2015-04-14 20:10:24 +02006504 err = brcmf_fil_cmd_data_get(ifp, BRCMF_C_GET_BANDLIST, &bandlist,
6505 sizeof(bandlist));
6506 if (err) {
6507 brcmf_err("could not obtain band info: err=%d\n", err);
6508 return err;
6509 }
6510 /* first entry in bandlist is number of bands */
6511 n_bands = le32_to_cpu(bandlist[0]);
6512 for (i = 1; i <= n_bands && i < ARRAY_SIZE(bandlist); i++) {
6513 if (bandlist[i] == cpu_to_le32(WLC_BAND_2G)) {
6514 band = kmemdup(&__wl_band_2ghz, sizeof(__wl_band_2ghz),
6515 GFP_KERNEL);
6516 if (!band)
6517 return -ENOMEM;
6518
6519 band->channels = kmemdup(&__wl_2ghz_channels,
6520 sizeof(__wl_2ghz_channels),
6521 GFP_KERNEL);
6522 if (!band->channels) {
6523 kfree(band);
6524 return -ENOMEM;
6525 }
6526
6527 band->n_channels = ARRAY_SIZE(__wl_2ghz_channels);
Johannes Berg57fbcce2016-04-12 15:56:15 +02006528 wiphy->bands[NL80211_BAND_2GHZ] = band;
Arend van Spriel58de92d2015-04-14 20:10:24 +02006529 }
6530 if (bandlist[i] == cpu_to_le32(WLC_BAND_5G)) {
6531 band = kmemdup(&__wl_band_5ghz, sizeof(__wl_band_5ghz),
6532 GFP_KERNEL);
6533 if (!band)
6534 return -ENOMEM;
6535
6536 band->channels = kmemdup(&__wl_5ghz_channels,
6537 sizeof(__wl_5ghz_channels),
6538 GFP_KERNEL);
6539 if (!band->channels) {
6540 kfree(band);
6541 return -ENOMEM;
6542 }
6543
6544 band->n_channels = ARRAY_SIZE(__wl_5ghz_channels);
Johannes Berg57fbcce2016-04-12 15:56:15 +02006545 wiphy->bands[NL80211_BAND_5GHZ] = band;
Arend van Spriel58de92d2015-04-14 20:10:24 +02006546 }
6547 }
6548 err = brcmf_setup_wiphybands(wiphy);
6549 return err;
Arend van Spriel5b435de2011-10-05 13:19:03 +02006550}
6551
Arend van Spriel27a68fe2012-09-27 14:17:55 +02006552static s32 brcmf_config_dongle(struct brcmf_cfg80211_info *cfg)
Arend van Spriel5b435de2011-10-05 13:19:03 +02006553{
6554 struct net_device *ndev;
6555 struct wireless_dev *wdev;
Hante Meuleman40a23292013-01-02 15:22:51 +01006556 struct brcmf_if *ifp;
Arend van Spriel5b435de2011-10-05 13:19:03 +02006557 s32 power_mode;
6558 s32 err = 0;
6559
Arend van Spriel27a68fe2012-09-27 14:17:55 +02006560 if (cfg->dongle_up)
Arend van Spriel5b435de2011-10-05 13:19:03 +02006561 return err;
6562
Arend van Spriel27a68fe2012-09-27 14:17:55 +02006563 ndev = cfg_to_ndev(cfg);
Arend van Spriel5b435de2011-10-05 13:19:03 +02006564 wdev = ndev->ieee80211_ptr;
Hante Meuleman40a23292013-01-02 15:22:51 +01006565 ifp = netdev_priv(ndev);
Arend van Spriel5b435de2011-10-05 13:19:03 +02006566
Hante Meuleman40a23292013-01-02 15:22:51 +01006567 /* make sure RF is ready for work */
6568 brcmf_fil_cmd_int_set(ifp, BRCMF_C_UP, 0);
6569
Hante Meuleman1678ba82015-12-10 13:43:00 +01006570 brcmf_dongle_scantime(ifp);
Arend van Spriel5b435de2011-10-05 13:19:03 +02006571
Arend van Spriel27a68fe2012-09-27 14:17:55 +02006572 power_mode = cfg->pwr_save ? PM_FAST : PM_OFF;
Hante Meuleman40a23292013-01-02 15:22:51 +01006573 err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_PM, power_mode);
Arend van Spriel5b435de2011-10-05 13:19:03 +02006574 if (err)
6575 goto default_conf_out;
Arend van Spriel647c9ae2012-12-05 15:26:01 +01006576 brcmf_dbg(INFO, "power save set to %s\n",
6577 (power_mode ? "enabled" : "disabled"));
Arend van Spriel5b435de2011-10-05 13:19:03 +02006578
Hante Meuleman1119e232015-11-25 11:32:42 +01006579 err = brcmf_dongle_roam(ifp);
Arend van Spriel5b435de2011-10-05 13:19:03 +02006580 if (err)
6581 goto default_conf_out;
Franky Lin5dd161f2012-10-10 11:13:10 -07006582 err = brcmf_cfg80211_change_iface(wdev->wiphy, ndev, wdev->iftype,
6583 NULL, NULL);
Hante Meuleman40a23292013-01-02 15:22:51 +01006584 if (err)
Arend van Spriel5b435de2011-10-05 13:19:03 +02006585 goto default_conf_out;
Arend van Spriel5b435de2011-10-05 13:19:03 +02006586
Franky Lin52f22fb2016-02-17 11:26:55 +01006587 brcmf_configure_arp_nd_offload(ifp, true);
Hante Meulemanb3657452013-05-27 21:09:53 +02006588
Arend van Spriel27a68fe2012-09-27 14:17:55 +02006589 cfg->dongle_up = true;
Hante Meuleman40a23292013-01-02 15:22:51 +01006590default_conf_out:
Arend van Spriel5b435de2011-10-05 13:19:03 +02006591
6592 return err;
6593
6594}
6595
Arend van Sprielbdf5ff52012-11-14 18:46:09 -08006596static s32 __brcmf_cfg80211_up(struct brcmf_if *ifp)
Arend van Spriel5b435de2011-10-05 13:19:03 +02006597{
Arend van Sprielc1179032012-10-22 13:55:33 -07006598 set_bit(BRCMF_VIF_STATUS_READY, &ifp->vif->sme_state);
Arend van Spriel5b435de2011-10-05 13:19:03 +02006599
Arend van Sprielbdf5ff52012-11-14 18:46:09 -08006600 return brcmf_config_dongle(ifp->drvr->config);
Arend van Spriel5b435de2011-10-05 13:19:03 +02006601}
6602
Arend van Sprielbdf5ff52012-11-14 18:46:09 -08006603static s32 __brcmf_cfg80211_down(struct brcmf_if *ifp)
Arend van Spriel5b435de2011-10-05 13:19:03 +02006604{
Arend van Sprielbdf5ff52012-11-14 18:46:09 -08006605 struct brcmf_cfg80211_info *cfg = ifp->drvr->config;
Arend van Sprielc1179032012-10-22 13:55:33 -07006606
Arend van Spriel5b435de2011-10-05 13:19:03 +02006607 /*
6608 * While going down, if associated with AP disassociate
6609 * from AP to save power
6610 */
Arend van Spriel903e0ee2012-11-28 21:44:11 +01006611 if (check_vif_up(ifp->vif)) {
Arend van Spriel9b7a0dd2015-01-25 20:31:33 +01006612 brcmf_link_down(ifp->vif, WLAN_REASON_UNSPECIFIED);
Arend van Spriel5b435de2011-10-05 13:19:03 +02006613
6614 /* Make sure WPA_Supplicant receives all the event
6615 generated due to DISASSOC call to the fw to keep
6616 the state fw and WPA_Supplicant state consistent
6617 */
6618 brcmf_delay(500);
6619 }
6620
Arend van Spriel27a68fe2012-09-27 14:17:55 +02006621 brcmf_abort_scanning(cfg);
Arend van Sprielc1179032012-10-22 13:55:33 -07006622 clear_bit(BRCMF_VIF_STATUS_READY, &ifp->vif->sme_state);
Arend van Spriel5b435de2011-10-05 13:19:03 +02006623
Arend van Spriel5b435de2011-10-05 13:19:03 +02006624 return 0;
6625}
6626
Arend van Sprielbdf5ff52012-11-14 18:46:09 -08006627s32 brcmf_cfg80211_up(struct net_device *ndev)
Arend van Spriel5b435de2011-10-05 13:19:03 +02006628{
Arend van Sprielbdf5ff52012-11-14 18:46:09 -08006629 struct brcmf_if *ifp = netdev_priv(ndev);
6630 struct brcmf_cfg80211_info *cfg = ifp->drvr->config;
Arend van Spriel5b435de2011-10-05 13:19:03 +02006631 s32 err = 0;
6632
Arend van Spriel27a68fe2012-09-27 14:17:55 +02006633 mutex_lock(&cfg->usr_sync);
Arend van Sprielbdf5ff52012-11-14 18:46:09 -08006634 err = __brcmf_cfg80211_up(ifp);
Arend van Spriel27a68fe2012-09-27 14:17:55 +02006635 mutex_unlock(&cfg->usr_sync);
Arend van Spriel5b435de2011-10-05 13:19:03 +02006636
6637 return err;
6638}
6639
Arend van Sprielbdf5ff52012-11-14 18:46:09 -08006640s32 brcmf_cfg80211_down(struct net_device *ndev)
Arend van Spriel5b435de2011-10-05 13:19:03 +02006641{
Arend van Sprielbdf5ff52012-11-14 18:46:09 -08006642 struct brcmf_if *ifp = netdev_priv(ndev);
6643 struct brcmf_cfg80211_info *cfg = ifp->drvr->config;
Arend van Spriel5b435de2011-10-05 13:19:03 +02006644 s32 err = 0;
6645
Arend van Spriel27a68fe2012-09-27 14:17:55 +02006646 mutex_lock(&cfg->usr_sync);
Arend van Sprielbdf5ff52012-11-14 18:46:09 -08006647 err = __brcmf_cfg80211_down(ifp);
Arend van Spriel27a68fe2012-09-27 14:17:55 +02006648 mutex_unlock(&cfg->usr_sync);
Arend van Spriel5b435de2011-10-05 13:19:03 +02006649
6650 return err;
6651}
6652
Arend van Spriela7965fb2013-04-11 17:08:37 +02006653enum nl80211_iftype brcmf_cfg80211_get_iftype(struct brcmf_if *ifp)
6654{
6655 struct wireless_dev *wdev = &ifp->vif->wdev;
6656
6657 return wdev->iftype;
6658}
6659
Hante Meulemanbfe81972014-10-28 14:56:16 +01006660bool brcmf_get_vif_state_any(struct brcmf_cfg80211_info *cfg,
6661 unsigned long state)
Arend van Spriel9f440b72013-02-08 15:53:36 +01006662{
6663 struct brcmf_cfg80211_vif *vif;
Arend van Spriel9f440b72013-02-08 15:53:36 +01006664
6665 list_for_each_entry(vif, &cfg->vif_list, list) {
6666 if (test_bit(state, &vif->sme_state))
Rasmus Villemoese843bb12014-06-22 20:50:40 +02006667 return true;
Arend van Spriel9f440b72013-02-08 15:53:36 +01006668 }
Rasmus Villemoese843bb12014-06-22 20:50:40 +02006669 return false;
Arend van Spriel9f440b72013-02-08 15:53:36 +01006670}
Arend van Sprield3c0b632013-02-08 15:53:37 +01006671
6672static inline bool vif_event_equals(struct brcmf_cfg80211_vif_event *event,
6673 u8 action)
6674{
6675 u8 evt_action;
6676
6677 mutex_lock(&event->vif_event_lock);
6678 evt_action = event->action;
6679 mutex_unlock(&event->vif_event_lock);
6680 return evt_action == action;
6681}
6682
6683void brcmf_cfg80211_arm_vif_event(struct brcmf_cfg80211_info *cfg,
6684 struct brcmf_cfg80211_vif *vif)
6685{
6686 struct brcmf_cfg80211_vif_event *event = &cfg->vif_event;
6687
6688 mutex_lock(&event->vif_event_lock);
6689 event->vif = vif;
6690 event->action = 0;
6691 mutex_unlock(&event->vif_event_lock);
6692}
6693
6694bool brcmf_cfg80211_vif_event_armed(struct brcmf_cfg80211_info *cfg)
6695{
6696 struct brcmf_cfg80211_vif_event *event = &cfg->vif_event;
6697 bool armed;
6698
6699 mutex_lock(&event->vif_event_lock);
6700 armed = event->vif != NULL;
6701 mutex_unlock(&event->vif_event_lock);
6702
6703 return armed;
6704}
Arend van Spriela9eb0c42016-02-17 11:26:50 +01006705
6706int brcmf_cfg80211_wait_vif_event(struct brcmf_cfg80211_info *cfg,
6707 u8 action, ulong timeout)
Arend van Sprield3c0b632013-02-08 15:53:37 +01006708{
6709 struct brcmf_cfg80211_vif_event *event = &cfg->vif_event;
6710
6711 return wait_event_timeout(event->vif_wq,
6712 vif_event_equals(event, action), timeout);
6713}
6714
Hante Meuleman73345fd2016-02-17 11:26:53 +01006715static s32 brcmf_translate_country_code(struct brcmf_pub *drvr, char alpha2[2],
6716 struct brcmf_fil_country_le *ccreq)
6717{
Hante Meuleman4d792892016-02-17 11:27:07 +01006718 struct brcmfmac_pd_cc *country_codes;
6719 struct brcmfmac_pd_cc_entry *cc;
Hante Meuleman73345fd2016-02-17 11:26:53 +01006720 s32 found_index;
6721 int i;
6722
6723 country_codes = drvr->settings->country_codes;
6724 if (!country_codes) {
6725 brcmf_dbg(TRACE, "No country codes configured for device\n");
6726 return -EINVAL;
6727 }
6728
6729 if ((alpha2[0] == ccreq->country_abbrev[0]) &&
6730 (alpha2[1] == ccreq->country_abbrev[1])) {
6731 brcmf_dbg(TRACE, "Country code already set\n");
6732 return -EAGAIN;
6733 }
6734
6735 found_index = -1;
6736 for (i = 0; i < country_codes->table_size; i++) {
6737 cc = &country_codes->table[i];
6738 if ((cc->iso3166[0] == '\0') && (found_index == -1))
6739 found_index = i;
6740 if ((cc->iso3166[0] == alpha2[0]) &&
6741 (cc->iso3166[1] == alpha2[1])) {
6742 found_index = i;
6743 break;
6744 }
6745 }
6746 if (found_index == -1) {
6747 brcmf_dbg(TRACE, "No country code match found\n");
6748 return -EINVAL;
6749 }
6750 memset(ccreq, 0, sizeof(*ccreq));
6751 ccreq->rev = cpu_to_le32(country_codes->table[found_index].rev);
6752 memcpy(ccreq->ccode, country_codes->table[found_index].cc,
6753 BRCMF_COUNTRY_BUF_SZ);
6754 ccreq->country_abbrev[0] = alpha2[0];
6755 ccreq->country_abbrev[1] = alpha2[1];
6756 ccreq->country_abbrev[2] = 0;
6757
6758 return 0;
6759}
6760
Arend van Spriel63db1a42014-12-21 12:43:51 +01006761static void brcmf_cfg80211_reg_notifier(struct wiphy *wiphy,
6762 struct regulatory_request *req)
6763{
6764 struct brcmf_cfg80211_info *cfg = wiphy_priv(wiphy);
6765 struct brcmf_if *ifp = netdev_priv(cfg_to_ndev(cfg));
6766 struct brcmf_fil_country_le ccreq;
Hante Meuleman73345fd2016-02-17 11:26:53 +01006767 s32 err;
Arend van Spriel63db1a42014-12-21 12:43:51 +01006768 int i;
6769
Arend van Spriel63db1a42014-12-21 12:43:51 +01006770 /* ignore non-ISO3166 country codes */
6771 for (i = 0; i < sizeof(req->alpha2); i++)
6772 if (req->alpha2[i] < 'A' || req->alpha2[i] > 'Z') {
Hante Meuleman73345fd2016-02-17 11:26:53 +01006773 brcmf_err("not a ISO3166 code (0x%02x 0x%02x)\n",
6774 req->alpha2[0], req->alpha2[1]);
Arend van Spriel63db1a42014-12-21 12:43:51 +01006775 return;
6776 }
Hante Meuleman73345fd2016-02-17 11:26:53 +01006777
6778 brcmf_dbg(TRACE, "Enter: initiator=%d, alpha=%c%c\n", req->initiator,
6779 req->alpha2[0], req->alpha2[1]);
6780
6781 err = brcmf_fil_iovar_data_get(ifp, "country", &ccreq, sizeof(ccreq));
6782 if (err) {
6783 brcmf_err("Country code iovar returned err = %d\n", err);
6784 return;
6785 }
6786
6787 err = brcmf_translate_country_code(ifp->drvr, req->alpha2, &ccreq);
6788 if (err)
6789 return;
6790
6791 err = brcmf_fil_iovar_data_set(ifp, "country", &ccreq, sizeof(ccreq));
6792 if (err) {
6793 brcmf_err("Firmware rejected country setting\n");
Arend van Spriel8afe0ec2015-04-14 20:10:25 +02006794 return;
6795 }
6796 brcmf_setup_wiphybands(wiphy);
Arend van Spriel63db1a42014-12-21 12:43:51 +01006797}
6798
Arend van Sprielb48d8912014-07-12 08:49:41 +02006799static void brcmf_free_wiphy(struct wiphy *wiphy)
6800{
Arend van Spriel0882dda2015-08-20 22:06:03 +02006801 int i;
6802
Arend van Spriel58de92d2015-04-14 20:10:24 +02006803 if (!wiphy)
6804 return;
6805
Arend van Spriel0882dda2015-08-20 22:06:03 +02006806 if (wiphy->iface_combinations) {
6807 for (i = 0; i < wiphy->n_iface_combinations; i++)
6808 kfree(wiphy->iface_combinations[i].limits);
6809 }
Arend van Sprielb48d8912014-07-12 08:49:41 +02006810 kfree(wiphy->iface_combinations);
Johannes Berg57fbcce2016-04-12 15:56:15 +02006811 if (wiphy->bands[NL80211_BAND_2GHZ]) {
6812 kfree(wiphy->bands[NL80211_BAND_2GHZ]->channels);
6813 kfree(wiphy->bands[NL80211_BAND_2GHZ]);
Arend van Sprielb48d8912014-07-12 08:49:41 +02006814 }
Johannes Berg57fbcce2016-04-12 15:56:15 +02006815 if (wiphy->bands[NL80211_BAND_5GHZ]) {
6816 kfree(wiphy->bands[NL80211_BAND_5GHZ]->channels);
6817 kfree(wiphy->bands[NL80211_BAND_5GHZ]);
Arend van Sprielb48d8912014-07-12 08:49:41 +02006818 }
6819 wiphy_free(wiphy);
6820}
6821
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006822struct brcmf_cfg80211_info *brcmf_cfg80211_attach(struct brcmf_pub *drvr,
Hante Meulemanae7c03f2015-09-18 22:08:08 +02006823 struct device *busdev,
6824 bool p2pdev_forced)
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006825{
Arend van Spriel46f3b6e2015-08-26 22:14:58 +02006826 struct net_device *ndev = brcmf_get_ifp(drvr, 0)->ndev;
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006827 struct brcmf_cfg80211_info *cfg;
6828 struct wiphy *wiphy;
Hante Meuleman5c22fb82016-02-17 11:27:03 +01006829 struct cfg80211_ops *ops;
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006830 struct brcmf_cfg80211_vif *vif;
6831 struct brcmf_if *ifp;
6832 s32 err = 0;
6833 s32 io_type;
Arend van Sprielb48d8912014-07-12 08:49:41 +02006834 u16 *cap = NULL;
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006835
6836 if (!ndev) {
6837 brcmf_err("ndev is invalid\n");
6838 return NULL;
6839 }
6840
Muhammad Falak R Wanid464fd82016-05-19 19:29:03 +05306841 ops = kmemdup(&brcmf_cfg80211_ops, sizeof(*ops), GFP_KERNEL);
Hante Meuleman5c22fb82016-02-17 11:27:03 +01006842 if (!ops)
6843 return NULL;
6844
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006845 ifp = netdev_priv(ndev);
Hante Meuleman5c22fb82016-02-17 11:27:03 +01006846#ifdef CONFIG_PM
6847 if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_WOWL_GTK))
6848 ops->set_rekey_data = brcmf_cfg80211_set_rekey_data;
6849#endif
6850 wiphy = wiphy_new(ops, sizeof(struct brcmf_cfg80211_info));
Arend van Sprielb48d8912014-07-12 08:49:41 +02006851 if (!wiphy) {
6852 brcmf_err("Could not allocate wiphy device\n");
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006853 return NULL;
Arend van Sprielb48d8912014-07-12 08:49:41 +02006854 }
Rafał Miłecki6896f4f2015-05-31 02:52:26 +02006855 memcpy(wiphy->perm_addr, drvr->mac, ETH_ALEN);
Arend van Sprielb48d8912014-07-12 08:49:41 +02006856 set_wiphy_dev(wiphy, busdev);
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006857
6858 cfg = wiphy_priv(wiphy);
6859 cfg->wiphy = wiphy;
Hante Meuleman5c22fb82016-02-17 11:27:03 +01006860 cfg->ops = ops;
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006861 cfg->pub = drvr;
6862 init_vif_event(&cfg->vif_event);
6863 INIT_LIST_HEAD(&cfg->vif_list);
6864
Rafał Miłecki26072332016-06-06 23:03:55 +02006865 vif = brcmf_alloc_vif(cfg, NL80211_IFTYPE_STATION);
Arend van Sprielb48d8912014-07-12 08:49:41 +02006866 if (IS_ERR(vif))
6867 goto wiphy_out;
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006868
6869 vif->ifp = ifp;
6870 vif->wdev.netdev = ndev;
6871 ndev->ieee80211_ptr = &vif->wdev;
6872 SET_NETDEV_DEV(ndev, wiphy_dev(cfg->wiphy));
6873
6874 err = wl_init_priv(cfg);
6875 if (err) {
6876 brcmf_err("Failed to init iwm_priv (%d)\n", err);
Arend van Sprielb48d8912014-07-12 08:49:41 +02006877 brcmf_free_vif(vif);
6878 goto wiphy_out;
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006879 }
6880 ifp->vif = vif;
6881
Arend van Sprielb48d8912014-07-12 08:49:41 +02006882 /* determine d11 io type before wiphy setup */
6883 err = brcmf_fil_cmd_int_get(ifp, BRCMF_C_GET_VERSION, &io_type);
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006884 if (err) {
Arend van Sprielb48d8912014-07-12 08:49:41 +02006885 brcmf_err("Failed to get D11 version (%d)\n", err);
6886 goto priv_out;
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006887 }
Arend van Sprielb48d8912014-07-12 08:49:41 +02006888 cfg->d11inf.io_type = (u8)io_type;
6889 brcmu_d11_attach(&cfg->d11inf);
6890
6891 err = brcmf_setup_wiphy(wiphy, ifp);
6892 if (err < 0)
6893 goto priv_out;
6894
6895 brcmf_dbg(INFO, "Registering custom regulatory\n");
Arend van Spriel63db1a42014-12-21 12:43:51 +01006896 wiphy->reg_notifier = brcmf_cfg80211_reg_notifier;
Arend van Sprielb48d8912014-07-12 08:49:41 +02006897 wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG;
6898 wiphy_apply_custom_regulatory(wiphy, &brcmf_regdom);
6899
6900 /* firmware defaults to 40MHz disabled in 2G band. We signal
6901 * cfg80211 here that we do and have it decide we can enable
6902 * it. But first check if device does support 2G operation.
6903 */
Johannes Berg57fbcce2016-04-12 15:56:15 +02006904 if (wiphy->bands[NL80211_BAND_2GHZ]) {
6905 cap = &wiphy->bands[NL80211_BAND_2GHZ]->ht_cap.cap;
Arend van Sprielb48d8912014-07-12 08:49:41 +02006906 *cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
6907 }
6908 err = wiphy_register(wiphy);
6909 if (err < 0) {
6910 brcmf_err("Could not register wiphy device (%d)\n", err);
6911 goto priv_out;
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006912 }
6913
6914 /* If cfg80211 didn't disable 40MHz HT CAP in wiphy_register(),
6915 * setup 40MHz in 2GHz band and enable OBSS scanning.
6916 */
Arend van Sprielb48d8912014-07-12 08:49:41 +02006917 if (cap && (*cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40)) {
6918 err = brcmf_enable_bw40_2g(cfg);
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006919 if (!err)
6920 err = brcmf_fil_iovar_int_set(ifp, "obss_coex",
6921 BRCMF_OBSS_COEX_AUTO);
Arend van Sprielb48d8912014-07-12 08:49:41 +02006922 else
6923 *cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006924 }
Hante Meuleman2b76acd2015-10-08 20:33:15 +02006925 /* p2p might require that "if-events" get processed by fweh. So
6926 * activate the already registered event handlers now and activate
6927 * the rest when initialization has completed. drvr->config needs to
6928 * be assigned before activating events.
6929 */
6930 drvr->config = cfg;
6931 err = brcmf_fweh_activate_events(ifp);
6932 if (err) {
6933 brcmf_err("FWEH activation failed (%d)\n", err);
6934 goto wiphy_unreg_out;
6935 }
Arend van Sprielb48d8912014-07-12 08:49:41 +02006936
Hante Meulemanae7c03f2015-09-18 22:08:08 +02006937 err = brcmf_p2p_attach(cfg, p2pdev_forced);
Arend van Sprielb48d8912014-07-12 08:49:41 +02006938 if (err) {
6939 brcmf_err("P2P initilisation failed (%d)\n", err);
6940 goto wiphy_unreg_out;
6941 }
6942 err = brcmf_btcoex_attach(cfg);
6943 if (err) {
6944 brcmf_err("BT-coex initialisation failed (%d)\n", err);
6945 brcmf_p2p_detach(&cfg->p2p);
6946 goto wiphy_unreg_out;
6947 }
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006948
Hante Meulemana7b82d42015-12-10 13:43:04 +01006949 if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_TDLS)) {
6950 err = brcmf_fil_iovar_int_set(ifp, "tdls_enable", 1);
6951 if (err) {
6952 brcmf_dbg(INFO, "TDLS not enabled (%d)\n", err);
6953 wiphy->flags &= ~WIPHY_FLAG_SUPPORTS_TDLS;
6954 } else {
6955 brcmf_fweh_register(cfg->pub, BRCMF_E_TDLS_PEER_EVENT,
6956 brcmf_notify_tdls_peer_event);
6957 }
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006958 }
6959
Hante Meuleman2b76acd2015-10-08 20:33:15 +02006960 /* (re-) activate FWEH event handling */
6961 err = brcmf_fweh_activate_events(ifp);
6962 if (err) {
6963 brcmf_err("FWEH activation failed (%d)\n", err);
6964 goto wiphy_unreg_out;
6965 }
6966
Hante Meuleman48ed16e2016-01-02 09:41:38 +01006967 /* Fill in some of the advertised nl80211 supported features */
6968 if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_SCAN_RANDOM_MAC)) {
6969 wiphy->features |= NL80211_FEATURE_SCHED_SCAN_RANDOM_MAC_ADDR;
6970#ifdef CONFIG_PM
Franky Lin6ea09152016-02-17 11:26:52 +01006971 if (wiphy->wowlan &&
6972 wiphy->wowlan->flags & WIPHY_WOWLAN_NET_DETECT)
Hante Meuleman48ed16e2016-01-02 09:41:38 +01006973 wiphy->features |= NL80211_FEATURE_ND_RANDOM_MAC_ADDR;
6974#endif
6975 }
6976
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006977 return cfg;
6978
Arend van Sprielb48d8912014-07-12 08:49:41 +02006979wiphy_unreg_out:
6980 wiphy_unregister(cfg->wiphy);
6981priv_out:
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006982 wl_deinit_priv(cfg);
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006983 brcmf_free_vif(vif);
Hante Meuleman2b5d3482015-09-18 22:08:04 +02006984 ifp->vif = NULL;
Arend van Sprielb48d8912014-07-12 08:49:41 +02006985wiphy_out:
6986 brcmf_free_wiphy(wiphy);
Hante Meuleman5c22fb82016-02-17 11:27:03 +01006987 kfree(ops);
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006988 return NULL;
6989}
6990
6991void brcmf_cfg80211_detach(struct brcmf_cfg80211_info *cfg)
6992{
6993 if (!cfg)
6994 return;
6995
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006996 brcmf_btcoex_detach(cfg);
Arend van Sprielf7a40872015-06-11 00:12:23 +02006997 wiphy_unregister(cfg->wiphy);
Hante Meuleman5c22fb82016-02-17 11:27:03 +01006998 kfree(cfg->ops);
Arend van Sprielccfd1e82014-07-12 08:49:38 +02006999 wl_deinit_priv(cfg);
Arend van Sprielb48d8912014-07-12 08:49:41 +02007000 brcmf_free_wiphy(cfg->wiphy);
Arend van Sprielccfd1e82014-07-12 08:49:38 +02007001}