blob: 787dbe2aa4085dbcee9ad94a608cdd28f93758d3 [file] [log] [blame]
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001/*
2 * Marvell Wireless LAN device driver: CFG80211
3 *
4 * Copyright (C) 2011, Marvell International Ltd.
5 *
6 * This software file (the "File") is distributed by Marvell International
7 * Ltd. under the terms of the GNU General Public License Version 2, June 1991
8 * (the "License"). You may use, redistribute and/or modify this File in
9 * accordance with the terms and conditions of the License, a copy of which
10 * is available by writing to the Free Software Foundation, Inc.,
11 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
12 * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
13 *
14 * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
16 * ARE EXPRESSLY DISCLAIMED. The License provides additional details about
17 * this warranty disclaimer.
18 */
19
20#include "cfg80211.h"
21#include "main.h"
22
23/*
24 * This function maps the nl802.11 channel type into driver channel type.
25 *
26 * The mapping is as follows -
27 * NL80211_CHAN_NO_HT -> NO_SEC_CHANNEL
28 * NL80211_CHAN_HT20 -> NO_SEC_CHANNEL
29 * NL80211_CHAN_HT40PLUS -> SEC_CHANNEL_ABOVE
30 * NL80211_CHAN_HT40MINUS -> SEC_CHANNEL_BELOW
31 * Others -> NO_SEC_CHANNEL
32 */
33static int
34mwifiex_cfg80211_channel_type_to_mwifiex_channels(enum nl80211_channel_type
35 channel_type)
36{
Bing Zhao5e6e3a92011-03-21 18:00:50 -070037 switch (channel_type) {
38 case NL80211_CHAN_NO_HT:
39 case NL80211_CHAN_HT20:
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -070040 return NO_SEC_CHANNEL;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070041 case NL80211_CHAN_HT40PLUS:
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -070042 return SEC_CHANNEL_ABOVE;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070043 case NL80211_CHAN_HT40MINUS:
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -070044 return SEC_CHANNEL_BELOW;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070045 default:
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -070046 return NO_SEC_CHANNEL;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070047 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -070048}
49
50/*
51 * This function maps the driver channel type into nl802.11 channel type.
52 *
53 * The mapping is as follows -
54 * NO_SEC_CHANNEL -> NL80211_CHAN_HT20
55 * SEC_CHANNEL_ABOVE -> NL80211_CHAN_HT40PLUS
56 * SEC_CHANNEL_BELOW -> NL80211_CHAN_HT40MINUS
57 * Others -> NL80211_CHAN_HT20
58 */
59static enum nl80211_channel_type
60mwifiex_channels_to_cfg80211_channel_type(int channel_type)
61{
Bing Zhao5e6e3a92011-03-21 18:00:50 -070062 switch (channel_type) {
63 case NO_SEC_CHANNEL:
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -070064 return NL80211_CHAN_HT20;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070065 case SEC_CHANNEL_ABOVE:
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -070066 return NL80211_CHAN_HT40PLUS;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070067 case SEC_CHANNEL_BELOW:
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -070068 return NL80211_CHAN_HT40MINUS;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070069 default:
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -070070 return NL80211_CHAN_HT20;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070071 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -070072}
73
74/*
75 * This function checks whether WEP is set.
76 */
77static int
78mwifiex_is_alg_wep(u32 cipher)
79{
Bing Zhao5e6e3a92011-03-21 18:00:50 -070080 switch (cipher) {
Yogesh Ashok Powar2be50b82011-04-01 18:36:47 -070081 case WLAN_CIPHER_SUITE_WEP40:
82 case WLAN_CIPHER_SUITE_WEP104:
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -070083 return 1;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070084 default:
Bing Zhao5e6e3a92011-03-21 18:00:50 -070085 break;
86 }
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -070087
88 return 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070089}
90
91/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -070092 * This function retrieves the private structure from kernel wiphy structure.
93 */
94static void *mwifiex_cfg80211_get_priv(struct wiphy *wiphy)
95{
96 return (void *) (*(unsigned long *) wiphy_priv(wiphy));
97}
98
99/*
100 * CFG802.11 operation handler to delete a network key.
101 */
102static int
103mwifiex_cfg80211_del_key(struct wiphy *wiphy, struct net_device *netdev,
104 u8 key_index, bool pairwise, const u8 *mac_addr)
105{
106 struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700107
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700108 if (mwifiex_set_encode(priv, NULL, 0, key_index, 1)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700109 wiphy_err(wiphy, "deleting the crypto keys\n");
110 return -EFAULT;
111 }
112
113 wiphy_dbg(wiphy, "info: crypto keys deleted\n");
114 return 0;
115}
116
117/*
118 * CFG802.11 operation handler to set Tx power.
119 */
120static int
121mwifiex_cfg80211_set_tx_power(struct wiphy *wiphy,
122 enum nl80211_tx_power_setting type,
Luis R. Rodriguez742c29f2011-11-28 16:38:50 -0500123 int mbm)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700124{
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700125 struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700126 struct mwifiex_power_cfg power_cfg;
Luis R. Rodriguez742c29f2011-11-28 16:38:50 -0500127 int dbm = MBM_TO_DBM(mbm);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700128
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700129 if (type == NL80211_TX_POWER_FIXED) {
130 power_cfg.is_power_auto = 0;
131 power_cfg.power_level = dbm;
132 } else {
133 power_cfg.is_power_auto = 1;
134 }
135
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700136 return mwifiex_set_tx_power(priv, &power_cfg);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700137}
138
139/*
140 * CFG802.11 operation handler to set Power Save option.
141 *
142 * The timeout value, if provided, is currently ignored.
143 */
144static int
145mwifiex_cfg80211_set_power_mgmt(struct wiphy *wiphy,
146 struct net_device *dev,
147 bool enabled, int timeout)
148{
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700149 struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700150 u32 ps_mode;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700151
152 if (timeout)
153 wiphy_dbg(wiphy,
154 "info: ignoring the timeout value"
155 " for IEEE power save\n");
156
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700157 ps_mode = enabled;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700158
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700159 return mwifiex_drv_set_power(priv, &ps_mode);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700160}
161
162/*
163 * CFG802.11 operation handler to set the default network key.
164 */
165static int
166mwifiex_cfg80211_set_default_key(struct wiphy *wiphy, struct net_device *netdev,
167 u8 key_index, bool unicast,
168 bool multicast)
169{
170 struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700171
Amitkumar Karwar2d3d0a82011-04-01 18:36:46 -0700172 /* Return if WEP key not configured */
173 if (priv->sec_info.wep_status == MWIFIEX_802_11_WEP_DISABLED)
174 return 0;
175
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700176 if (mwifiex_set_encode(priv, NULL, 0, key_index, 0)) {
177 wiphy_err(wiphy, "set default Tx key index\n");
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700178 return -EFAULT;
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700179 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700180
181 return 0;
182}
183
184/*
185 * CFG802.11 operation handler to add a network key.
186 */
187static int
188mwifiex_cfg80211_add_key(struct wiphy *wiphy, struct net_device *netdev,
189 u8 key_index, bool pairwise, const u8 *mac_addr,
190 struct key_params *params)
191{
192 struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700193
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700194 if (mwifiex_set_encode(priv, params->key, params->key_len,
195 key_index, 0)) {
196 wiphy_err(wiphy, "crypto keys added\n");
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700197 return -EFAULT;
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700198 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700199
200 return 0;
201}
202
203/*
204 * This function sends domain information to the firmware.
205 *
206 * The following information are passed to the firmware -
207 * - Country codes
208 * - Sub bands (first channel, number of channels, maximum Tx power)
209 */
210static int mwifiex_send_domain_info_cmd_fw(struct wiphy *wiphy)
211{
212 u8 no_of_triplet = 0;
213 struct ieee80211_country_ie_triplet *t;
214 u8 no_of_parsed_chan = 0;
215 u8 first_chan = 0, next_chan = 0, max_pwr = 0;
216 u8 i, flag = 0;
217 enum ieee80211_band band;
218 struct ieee80211_supported_band *sband;
219 struct ieee80211_channel *ch;
220 struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
221 struct mwifiex_adapter *adapter = priv->adapter;
222 struct mwifiex_802_11d_domain_reg *domain_info = &adapter->domain_reg;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700223
224 /* Set country code */
225 domain_info->country_code[0] = priv->country_code[0];
226 domain_info->country_code[1] = priv->country_code[1];
227 domain_info->country_code[2] = ' ';
228
229 band = mwifiex_band_to_radio_type(adapter->config_bands);
230 if (!wiphy->bands[band]) {
231 wiphy_err(wiphy, "11D: setting domain info in FW\n");
232 return -1;
233 }
234
235 sband = wiphy->bands[band];
236
237 for (i = 0; i < sband->n_channels ; i++) {
238 ch = &sband->channels[i];
239 if (ch->flags & IEEE80211_CHAN_DISABLED)
240 continue;
241
242 if (!flag) {
243 flag = 1;
244 first_chan = (u32) ch->hw_value;
245 next_chan = first_chan;
246 max_pwr = ch->max_power;
247 no_of_parsed_chan = 1;
248 continue;
249 }
250
251 if (ch->hw_value == next_chan + 1 &&
252 ch->max_power == max_pwr) {
253 next_chan++;
254 no_of_parsed_chan++;
255 } else {
256 t = &domain_info->triplet[no_of_triplet];
257 t->chans.first_channel = first_chan;
258 t->chans.num_channels = no_of_parsed_chan;
259 t->chans.max_power = max_pwr;
260 no_of_triplet++;
261 first_chan = (u32) ch->hw_value;
262 next_chan = first_chan;
263 max_pwr = ch->max_power;
264 no_of_parsed_chan = 1;
265 }
266 }
267
268 if (flag) {
269 t = &domain_info->triplet[no_of_triplet];
270 t->chans.first_channel = first_chan;
271 t->chans.num_channels = no_of_parsed_chan;
272 t->chans.max_power = max_pwr;
273 no_of_triplet++;
274 }
275
276 domain_info->no_of_triplet = no_of_triplet;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700277
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700278 if (mwifiex_send_cmd_async(priv, HostCmd_CMD_802_11D_DOMAIN_INFO,
279 HostCmd_ACT_GEN_SET, 0, NULL)) {
280 wiphy_err(wiphy, "11D: setting domain info in FW\n");
281 return -1;
282 }
283
284 return 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700285}
286
287/*
288 * CFG802.11 regulatory domain callback function.
289 *
290 * This function is called when the regulatory domain is changed due to the
291 * following reasons -
292 * - Set by driver
293 * - Set by system core
294 * - Set by user
295 * - Set bt Country IE
296 */
297static int mwifiex_reg_notifier(struct wiphy *wiphy,
298 struct regulatory_request *request)
299{
300 struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
301
302 wiphy_dbg(wiphy, "info: cfg80211 regulatory domain callback for domain"
303 " %c%c\n", request->alpha2[0], request->alpha2[1]);
304
305 memcpy(priv->country_code, request->alpha2, sizeof(request->alpha2));
306
307 switch (request->initiator) {
308 case NL80211_REGDOM_SET_BY_DRIVER:
309 case NL80211_REGDOM_SET_BY_CORE:
310 case NL80211_REGDOM_SET_BY_USER:
311 break;
312 /* Todo: apply driver specific changes in channel flags based
313 on the request initiator if necessary. */
314 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
315 break;
316 }
317 mwifiex_send_domain_info_cmd_fw(wiphy);
318
319 return 0;
320}
321
322/*
323 * This function sets the RF channel.
324 *
325 * This function creates multiple IOCTL requests, populates them accordingly
326 * and issues them to set the band/channel and frequency.
327 */
328static int
329mwifiex_set_rf_channel(struct mwifiex_private *priv,
330 struct ieee80211_channel *chan,
331 enum nl80211_channel_type channel_type)
332{
333 struct mwifiex_chan_freq_power cfp;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700334 struct mwifiex_ds_band_cfg band_cfg;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700335 u32 config_bands = 0;
336 struct wiphy *wiphy = priv->wdev->wiphy;
337
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700338 if (chan) {
339 memset(&band_cfg, 0, sizeof(band_cfg));
340 /* Set appropriate bands */
341 if (chan->band == IEEE80211_BAND_2GHZ)
342 config_bands = BAND_B | BAND_G | BAND_GN;
343 else
344 config_bands = BAND_AN | BAND_A;
Bing Zhaoeecd8252011-03-28 17:55:41 -0700345 if (priv->bss_mode == NL80211_IFTYPE_STATION
346 || priv->bss_mode == NL80211_IFTYPE_UNSPECIFIED) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700347 band_cfg.config_bands = config_bands;
Bing Zhaoeecd8252011-03-28 17:55:41 -0700348 } else if (priv->bss_mode == NL80211_IFTYPE_ADHOC) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700349 band_cfg.config_bands = config_bands;
350 band_cfg.adhoc_start_band = config_bands;
351 }
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700352
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700353 band_cfg.sec_chan_offset =
354 mwifiex_cfg80211_channel_type_to_mwifiex_channels
355 (channel_type);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700356
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700357 if (mwifiex_set_radio_band_cfg(priv, &band_cfg))
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700358 return -EFAULT;
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700359
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700360 mwifiex_send_domain_info_cmd_fw(wiphy);
361 }
362
363 wiphy_dbg(wiphy, "info: setting band %d, channel offset %d and "
Bing Zhaoeecd8252011-03-28 17:55:41 -0700364 "mode %d\n", config_bands, band_cfg.sec_chan_offset,
365 priv->bss_mode);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700366 if (!chan)
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700367 return 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700368
369 memset(&cfp, 0, sizeof(cfp));
370 cfp.freq = chan->center_freq;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700371 cfp.channel = ieee80211_frequency_to_channel(chan->center_freq);
372
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700373 if (mwifiex_bss_set_channel(priv, &cfp))
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700374 return -EFAULT;
375
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700376 return mwifiex_drv_change_adhoc_chan(priv, cfp.channel);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700377}
378
379/*
380 * CFG802.11 operation handler to set channel.
381 *
382 * This function can only be used when station is not connected.
383 */
384static int
385mwifiex_cfg80211_set_channel(struct wiphy *wiphy, struct net_device *dev,
386 struct ieee80211_channel *chan,
387 enum nl80211_channel_type channel_type)
388{
389 struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
390
391 if (priv->media_connected) {
392 wiphy_err(wiphy, "This setting is valid only when station "
393 "is not connected\n");
394 return -EINVAL;
395 }
396
397 return mwifiex_set_rf_channel(priv, chan, channel_type);
398}
399
400/*
401 * This function sets the fragmentation threshold.
402 *
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700403 * The fragmentation threshold value must lie between MWIFIEX_FRAG_MIN_VALUE
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700404 * and MWIFIEX_FRAG_MAX_VALUE.
405 */
406static int
407mwifiex_set_frag(struct mwifiex_private *priv, u32 frag_thr)
408{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700409 int ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700410
411 if (frag_thr < MWIFIEX_FRAG_MIN_VALUE
412 || frag_thr > MWIFIEX_FRAG_MAX_VALUE)
413 return -EINVAL;
414
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700415 /* Send request to firmware */
416 ret = mwifiex_send_cmd_sync(priv, HostCmd_CMD_802_11_SNMP_MIB,
417 HostCmd_ACT_GEN_SET, FRAG_THRESH_I,
418 &frag_thr);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700419
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700420 return ret;
421}
422
423/*
424 * This function sets the RTS threshold.
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700425
426 * The rts value must lie between MWIFIEX_RTS_MIN_VALUE
427 * and MWIFIEX_RTS_MAX_VALUE.
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700428 */
429static int
430mwifiex_set_rts(struct mwifiex_private *priv, u32 rts_thr)
431{
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700432 if (rts_thr < MWIFIEX_RTS_MIN_VALUE || rts_thr > MWIFIEX_RTS_MAX_VALUE)
433 rts_thr = MWIFIEX_RTS_MAX_VALUE;
434
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700435 return mwifiex_send_cmd_sync(priv, HostCmd_CMD_802_11_SNMP_MIB,
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700436 HostCmd_ACT_GEN_SET, RTS_THRESH_I,
437 &rts_thr);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700438}
439
440/*
441 * CFG802.11 operation handler to set wiphy parameters.
442 *
443 * This function can be used to set the RTS threshold and the
444 * Fragmentation threshold of the driver.
445 */
446static int
447mwifiex_cfg80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
448{
449 struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700450 int ret = 0;
451
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700452 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700453 ret = mwifiex_set_rts(priv, wiphy->rts_threshold);
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700454 if (ret)
455 return ret;
456 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700457
458 if (changed & WIPHY_PARAM_FRAG_THRESHOLD)
459 ret = mwifiex_set_frag(priv, wiphy->frag_threshold);
460
461 return ret;
462}
463
464/*
465 * CFG802.11 operation handler to change interface type.
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700466 */
467static int
468mwifiex_cfg80211_change_virtual_intf(struct wiphy *wiphy,
469 struct net_device *dev,
470 enum nl80211_iftype type, u32 *flags,
471 struct vif_params *params)
472{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700473 int ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700474 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Bing Zhaoeecd8252011-03-28 17:55:41 -0700475
476 if (priv->bss_mode == type) {
477 wiphy_warn(wiphy, "already set to required type\n");
478 return 0;
479 }
480
481 priv->bss_mode = type;
482
483 switch (type) {
484 case NL80211_IFTYPE_ADHOC:
485 dev->ieee80211_ptr->iftype = NL80211_IFTYPE_ADHOC;
486 wiphy_dbg(wiphy, "info: setting interface type to adhoc\n");
487 break;
488 case NL80211_IFTYPE_STATION:
489 dev->ieee80211_ptr->iftype = NL80211_IFTYPE_STATION;
490 wiphy_dbg(wiphy, "info: setting interface type to managed\n");
491 break;
492 case NL80211_IFTYPE_UNSPECIFIED:
493 dev->ieee80211_ptr->iftype = NL80211_IFTYPE_STATION;
494 wiphy_dbg(wiphy, "info: setting interface type to auto\n");
495 return 0;
496 default:
497 wiphy_err(wiphy, "unknown interface type: %d\n", type);
498 return -EINVAL;
499 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700500
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700501 mwifiex_deauthenticate(priv, NULL);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700502
Marc Yangf986b6d2011-03-28 17:55:42 -0700503 priv->sec_info.authentication_mode = NL80211_AUTHTYPE_OPEN_SYSTEM;
Bing Zhaoeecd8252011-03-28 17:55:41 -0700504
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700505 ret = mwifiex_send_cmd_sync(priv, HostCmd_CMD_SET_BSS_MODE,
506 HostCmd_ACT_GEN_SET, 0, NULL);
Bing Zhaoeecd8252011-03-28 17:55:41 -0700507
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700508 return ret;
509}
510
511/*
512 * This function dumps the station information on a buffer.
513 *
514 * The following information are shown -
515 * - Total bytes transmitted
516 * - Total bytes received
517 * - Total packets transmitted
518 * - Total packets received
519 * - Signal quality level
520 * - Transmission rate
521 */
522static int
523mwifiex_dump_station_info(struct mwifiex_private *priv,
524 struct station_info *sinfo)
525{
526 struct mwifiex_ds_get_signal signal;
527 struct mwifiex_rate_cfg rate;
528 int ret = 0;
529
530 sinfo->filled = STATION_INFO_RX_BYTES | STATION_INFO_TX_BYTES |
531 STATION_INFO_RX_PACKETS |
532 STATION_INFO_TX_PACKETS
533 | STATION_INFO_SIGNAL | STATION_INFO_TX_BITRATE;
534
535 /* Get signal information from the firmware */
536 memset(&signal, 0, sizeof(struct mwifiex_ds_get_signal));
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700537 if (mwifiex_get_signal_info(priv, &signal)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700538 dev_err(priv->adapter->dev, "getting signal information\n");
539 ret = -EFAULT;
540 }
541
542 if (mwifiex_drv_get_data_rate(priv, &rate)) {
543 dev_err(priv->adapter->dev, "getting data rate\n");
544 ret = -EFAULT;
545 }
546
Amitkumar Karwar4ec6f9c2011-09-26 20:37:25 -0700547 /*
548 * Bit 0 in tx_htinfo indicates that current Tx rate is 11n rate. Valid
549 * MCS index values for us are 0 to 7.
550 */
551 if ((priv->tx_htinfo & BIT(0)) && (priv->tx_rate < 8)) {
552 sinfo->txrate.mcs = priv->tx_rate;
553 sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS;
554 /* 40MHz rate */
555 if (priv->tx_htinfo & BIT(1))
556 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
557 /* SGI enabled */
558 if (priv->tx_htinfo & BIT(2))
559 sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
560 }
561
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700562 sinfo->rx_bytes = priv->stats.rx_bytes;
563 sinfo->tx_bytes = priv->stats.tx_bytes;
564 sinfo->rx_packets = priv->stats.rx_packets;
565 sinfo->tx_packets = priv->stats.tx_packets;
Bing Zhao67a50032011-07-13 18:38:34 -0700566 sinfo->signal = priv->qual_level;
Amitkumar Karwar4ec6f9c2011-09-26 20:37:25 -0700567 /* bit rate is in 500 kb/s units. Convert it to 100kb/s units */
568 sinfo->txrate.legacy = rate.rate * 5;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700569
570 return ret;
571}
572
573/*
574 * CFG802.11 operation handler to get station information.
575 *
576 * This function only works in connected mode, and dumps the
577 * requested station information, if available.
578 */
579static int
580mwifiex_cfg80211_get_station(struct wiphy *wiphy, struct net_device *dev,
581 u8 *mac, struct station_info *sinfo)
582{
583 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700584
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700585 if (!priv->media_connected)
586 return -ENOENT;
587 if (memcmp(mac, priv->cfg_bssid, ETH_ALEN))
588 return -ENOENT;
589
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700590 return mwifiex_dump_station_info(priv, sinfo);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700591}
592
593/* Supported rates to be advertised to the cfg80211 */
594
595static struct ieee80211_rate mwifiex_rates[] = {
596 {.bitrate = 10, .hw_value = 2, },
597 {.bitrate = 20, .hw_value = 4, },
598 {.bitrate = 55, .hw_value = 11, },
599 {.bitrate = 110, .hw_value = 22, },
600 {.bitrate = 220, .hw_value = 44, },
601 {.bitrate = 60, .hw_value = 12, },
602 {.bitrate = 90, .hw_value = 18, },
603 {.bitrate = 120, .hw_value = 24, },
604 {.bitrate = 180, .hw_value = 36, },
605 {.bitrate = 240, .hw_value = 48, },
606 {.bitrate = 360, .hw_value = 72, },
607 {.bitrate = 480, .hw_value = 96, },
608 {.bitrate = 540, .hw_value = 108, },
609 {.bitrate = 720, .hw_value = 144, },
610};
611
612/* Channel definitions to be advertised to cfg80211 */
613
614static struct ieee80211_channel mwifiex_channels_2ghz[] = {
615 {.center_freq = 2412, .hw_value = 1, },
616 {.center_freq = 2417, .hw_value = 2, },
617 {.center_freq = 2422, .hw_value = 3, },
618 {.center_freq = 2427, .hw_value = 4, },
619 {.center_freq = 2432, .hw_value = 5, },
620 {.center_freq = 2437, .hw_value = 6, },
621 {.center_freq = 2442, .hw_value = 7, },
622 {.center_freq = 2447, .hw_value = 8, },
623 {.center_freq = 2452, .hw_value = 9, },
624 {.center_freq = 2457, .hw_value = 10, },
625 {.center_freq = 2462, .hw_value = 11, },
626 {.center_freq = 2467, .hw_value = 12, },
627 {.center_freq = 2472, .hw_value = 13, },
628 {.center_freq = 2484, .hw_value = 14, },
629};
630
631static struct ieee80211_supported_band mwifiex_band_2ghz = {
632 .channels = mwifiex_channels_2ghz,
633 .n_channels = ARRAY_SIZE(mwifiex_channels_2ghz),
634 .bitrates = mwifiex_rates,
635 .n_bitrates = 14,
636};
637
638static struct ieee80211_channel mwifiex_channels_5ghz[] = {
639 {.center_freq = 5040, .hw_value = 8, },
640 {.center_freq = 5060, .hw_value = 12, },
641 {.center_freq = 5080, .hw_value = 16, },
642 {.center_freq = 5170, .hw_value = 34, },
643 {.center_freq = 5190, .hw_value = 38, },
644 {.center_freq = 5210, .hw_value = 42, },
645 {.center_freq = 5230, .hw_value = 46, },
646 {.center_freq = 5180, .hw_value = 36, },
647 {.center_freq = 5200, .hw_value = 40, },
648 {.center_freq = 5220, .hw_value = 44, },
649 {.center_freq = 5240, .hw_value = 48, },
650 {.center_freq = 5260, .hw_value = 52, },
651 {.center_freq = 5280, .hw_value = 56, },
652 {.center_freq = 5300, .hw_value = 60, },
653 {.center_freq = 5320, .hw_value = 64, },
654 {.center_freq = 5500, .hw_value = 100, },
655 {.center_freq = 5520, .hw_value = 104, },
656 {.center_freq = 5540, .hw_value = 108, },
657 {.center_freq = 5560, .hw_value = 112, },
658 {.center_freq = 5580, .hw_value = 116, },
659 {.center_freq = 5600, .hw_value = 120, },
660 {.center_freq = 5620, .hw_value = 124, },
661 {.center_freq = 5640, .hw_value = 128, },
662 {.center_freq = 5660, .hw_value = 132, },
663 {.center_freq = 5680, .hw_value = 136, },
664 {.center_freq = 5700, .hw_value = 140, },
665 {.center_freq = 5745, .hw_value = 149, },
666 {.center_freq = 5765, .hw_value = 153, },
667 {.center_freq = 5785, .hw_value = 157, },
668 {.center_freq = 5805, .hw_value = 161, },
669 {.center_freq = 5825, .hw_value = 165, },
670};
671
672static struct ieee80211_supported_band mwifiex_band_5ghz = {
673 .channels = mwifiex_channels_5ghz,
674 .n_channels = ARRAY_SIZE(mwifiex_channels_5ghz),
675 .bitrates = mwifiex_rates - 4,
676 .n_bitrates = ARRAY_SIZE(mwifiex_rates) + 4,
677};
678
679
680/* Supported crypto cipher suits to be advertised to cfg80211 */
681
682static const u32 mwifiex_cipher_suites[] = {
683 WLAN_CIPHER_SUITE_WEP40,
684 WLAN_CIPHER_SUITE_WEP104,
685 WLAN_CIPHER_SUITE_TKIP,
686 WLAN_CIPHER_SUITE_CCMP,
687};
688
689/*
Yogesh Ashok Powar5d82c532011-07-11 20:04:44 -0700690 * CFG802.11 operation handler for setting bit rates.
691 *
692 * Function selects legacy bang B/G/BG from corresponding bitrates selection.
693 * Currently only 2.4GHz band is supported.
694 */
695static int mwifiex_cfg80211_set_bitrate_mask(struct wiphy *wiphy,
696 struct net_device *dev,
697 const u8 *peer,
698 const struct cfg80211_bitrate_mask *mask)
699{
700 struct mwifiex_ds_band_cfg band_cfg;
701 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
702 int index = 0, mode = 0, i;
703
704 /* Currently only 2.4GHz is supported */
705 for (i = 0; i < mwifiex_band_2ghz.n_bitrates; i++) {
706 /*
707 * Rates below 6 Mbps in the table are CCK rates; 802.11b
708 * and from 6 they are OFDM; 802.11G
709 */
710 if (mwifiex_rates[i].bitrate == 60) {
711 index = 1 << i;
712 break;
713 }
714 }
715
716 if (mask->control[IEEE80211_BAND_2GHZ].legacy < index) {
717 mode = BAND_B;
718 } else {
719 mode = BAND_G;
720 if (mask->control[IEEE80211_BAND_2GHZ].legacy % index)
721 mode |= BAND_B;
722 }
723
724 memset(&band_cfg, 0, sizeof(band_cfg));
725 band_cfg.config_bands = mode;
726
727 if (priv->bss_mode == NL80211_IFTYPE_ADHOC)
728 band_cfg.adhoc_start_band = mode;
729
730 band_cfg.sec_chan_offset = NO_SEC_CHANNEL;
731
732 if (mwifiex_set_radio_band_cfg(priv, &band_cfg))
733 return -EFAULT;
734
735 wiphy_debug(wiphy, "info: device configured in 802.11%s%s mode\n",
736 (mode & BAND_B) ? "b" : "",
737 (mode & BAND_G) ? "g" : "");
738
739 return 0;
740}
741
742/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700743 * CFG802.11 operation handler for disconnection request.
744 *
745 * This function does not work when there is already a disconnection
746 * procedure going on.
747 */
748static int
749mwifiex_cfg80211_disconnect(struct wiphy *wiphy, struct net_device *dev,
750 u16 reason_code)
751{
752 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
753
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700754 if (mwifiex_deauthenticate(priv, NULL))
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700755 return -EFAULT;
756
757 wiphy_dbg(wiphy, "info: successfully disconnected from %pM:"
758 " reason code %d\n", priv->cfg_bssid, reason_code);
759
Amitkumar Karwar38c9d662011-12-13 20:43:17 -0800760 memset(priv->cfg_bssid, 0, ETH_ALEN);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700761
762 return 0;
763}
764
765/*
766 * This function informs the CFG802.11 subsystem of a new IBSS.
767 *
768 * The following information are sent to the CFG802.11 subsystem
769 * to register the new IBSS. If we do not register the new IBSS,
770 * a kernel panic will result.
771 * - SSID
772 * - SSID length
773 * - BSSID
774 * - Channel
775 */
776static int mwifiex_cfg80211_inform_ibss_bss(struct mwifiex_private *priv)
777{
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700778 struct ieee80211_channel *chan;
779 struct mwifiex_bss_info bss_info;
Amitkumar Karwaraa95a482011-11-07 21:41:12 -0800780 struct cfg80211_bss *bss;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700781 int ie_len;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700782 u8 ie_buf[IEEE80211_MAX_SSID_LEN + sizeof(struct ieee_types_header)];
Amitkumar Karwar4ed5d522011-09-21 21:43:24 -0700783 enum ieee80211_band band;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700784
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700785 if (mwifiex_get_bss_info(priv, &bss_info))
786 return -1;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700787
788 ie_buf[0] = WLAN_EID_SSID;
789 ie_buf[1] = bss_info.ssid.ssid_len;
790
791 memcpy(&ie_buf[sizeof(struct ieee_types_header)],
792 &bss_info.ssid.ssid,
793 bss_info.ssid.ssid_len);
794 ie_len = ie_buf[1] + sizeof(struct ieee_types_header);
795
Amitkumar Karwar4ed5d522011-09-21 21:43:24 -0700796 band = mwifiex_band_to_radio_type(priv->curr_bss_params.band);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700797 chan = __ieee80211_get_channel(priv->wdev->wiphy,
798 ieee80211_channel_to_frequency(bss_info.bss_chan,
Amitkumar Karwar4ed5d522011-09-21 21:43:24 -0700799 band));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700800
Amitkumar Karwaraa95a482011-11-07 21:41:12 -0800801 bss = cfg80211_inform_bss(priv->wdev->wiphy, chan,
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700802 bss_info.bssid, 0, WLAN_CAPABILITY_IBSS,
803 0, ie_buf, ie_len, 0, GFP_KERNEL);
Amitkumar Karwaraa95a482011-11-07 21:41:12 -0800804 cfg80211_put_bss(bss);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700805 memcpy(priv->cfg_bssid, bss_info.bssid, ETH_ALEN);
806
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700807 return 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700808}
809
810/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700811 * This function connects with a BSS.
812 *
813 * This function handles both Infra and Ad-Hoc modes. It also performs
814 * validity checking on the provided parameters, disconnects from the
815 * current BSS (if any), sets up the association/scan parameters,
816 * including security settings, and performs specific SSID scan before
817 * trying to connect.
818 *
819 * For Infra mode, the function returns failure if the specified SSID
820 * is not found in scan table. However, for Ad-Hoc mode, it can create
821 * the IBSS if it does not exist. On successful completion in either case,
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700822 * the function notifies the CFG802.11 subsystem of the new BSS connection.
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700823 */
824static int
825mwifiex_cfg80211_assoc(struct mwifiex_private *priv, size_t ssid_len, u8 *ssid,
826 u8 *bssid, int mode, struct ieee80211_channel *channel,
827 struct cfg80211_connect_params *sme, bool privacy)
828{
829 struct mwifiex_802_11_ssid req_ssid;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700830 int ret, auth_type = 0;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700831 struct cfg80211_bss *bss = NULL;
832 u8 is_scanning_required = 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700833
834 memset(&req_ssid, 0, sizeof(struct mwifiex_802_11_ssid));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700835
836 req_ssid.ssid_len = ssid_len;
837 if (ssid_len > IEEE80211_MAX_SSID_LEN) {
838 dev_err(priv->adapter->dev, "invalid SSID - aborting\n");
839 return -EINVAL;
840 }
841
842 memcpy(req_ssid.ssid, ssid, ssid_len);
843 if (!req_ssid.ssid_len || req_ssid.ssid[0] < 0x20) {
844 dev_err(priv->adapter->dev, "invalid SSID - aborting\n");
845 return -EINVAL;
846 }
847
848 /* disconnect before try to associate */
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700849 mwifiex_deauthenticate(priv, NULL);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700850
851 if (channel)
852 ret = mwifiex_set_rf_channel(priv, channel,
853 mwifiex_channels_to_cfg80211_channel_type
854 (priv->adapter->chan_offset));
855
856 ret = mwifiex_set_encode(priv, NULL, 0, 0, 1); /* Disable keys */
857
Bing Zhaoeecd8252011-03-28 17:55:41 -0700858 if (mode == NL80211_IFTYPE_ADHOC) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700859 /* "privacy" is set only for ad-hoc mode */
860 if (privacy) {
861 /*
Yogesh Ashok Powar2be50b82011-04-01 18:36:47 -0700862 * Keep WLAN_CIPHER_SUITE_WEP104 for now so that
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700863 * the firmware can find a matching network from the
864 * scan. The cfg80211 does not give us the encryption
865 * mode at this stage so just setting it to WEP here.
866 */
Marc Yang203afec2011-03-24 20:49:39 -0700867 priv->sec_info.encryption_mode =
Yogesh Ashok Powar2be50b82011-04-01 18:36:47 -0700868 WLAN_CIPHER_SUITE_WEP104;
Marc Yang203afec2011-03-24 20:49:39 -0700869 priv->sec_info.authentication_mode =
Marc Yangf986b6d2011-03-28 17:55:42 -0700870 NL80211_AUTHTYPE_OPEN_SYSTEM;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700871 }
872
873 goto done;
874 }
875
876 /* Now handle infra mode. "sme" is valid for infra mode only */
877 if (sme->auth_type == NL80211_AUTHTYPE_AUTOMATIC
878 || sme->auth_type == NL80211_AUTHTYPE_OPEN_SYSTEM)
Marc Yangf986b6d2011-03-28 17:55:42 -0700879 auth_type = NL80211_AUTHTYPE_OPEN_SYSTEM;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700880 else if (sme->auth_type == NL80211_AUTHTYPE_SHARED_KEY)
Marc Yangf986b6d2011-03-28 17:55:42 -0700881 auth_type = NL80211_AUTHTYPE_SHARED_KEY;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700882
883 if (sme->crypto.n_ciphers_pairwise) {
Yogesh Ashok Powar2be50b82011-04-01 18:36:47 -0700884 priv->sec_info.encryption_mode =
885 sme->crypto.ciphers_pairwise[0];
Marc Yang203afec2011-03-24 20:49:39 -0700886 priv->sec_info.authentication_mode = auth_type;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700887 }
888
889 if (sme->crypto.cipher_group) {
Yogesh Ashok Powar2be50b82011-04-01 18:36:47 -0700890 priv->sec_info.encryption_mode = sme->crypto.cipher_group;
Marc Yang203afec2011-03-24 20:49:39 -0700891 priv->sec_info.authentication_mode = auth_type;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700892 }
893 if (sme->ie)
894 ret = mwifiex_set_gen_ie(priv, sme->ie, sme->ie_len);
895
896 if (sme->key) {
Amitkumar Karware6faada2011-07-07 17:33:19 -0700897 if (mwifiex_is_alg_wep(priv->sec_info.encryption_mode)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700898 dev_dbg(priv->adapter->dev,
899 "info: setting wep encryption"
900 " with key len %d\n", sme->key_len);
901 ret = mwifiex_set_encode(priv, sme->key, sme->key_len,
902 sme->key_idx, 0);
903 }
904 }
905done:
906 /* Do specific SSID scanning */
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700907 if (mwifiex_request_scan(priv, &req_ssid)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700908 dev_err(priv->adapter->dev, "scan error\n");
909 return -EFAULT;
910 }
911
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700912 /*
913 * Scan entries are valid for some time (15 sec). So we can save one
914 * active scan time if we just try cfg80211_get_bss first. If it fails
915 * then request scan and cfg80211_get_bss() again for final output.
916 */
917 while (1) {
918 if (is_scanning_required) {
919 /* Do specific SSID scanning */
920 if (mwifiex_request_scan(priv, &req_ssid)) {
921 dev_err(priv->adapter->dev, "scan error\n");
922 return -EFAULT;
923 }
924 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700925
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700926 /* Find the BSS we want using available scan results */
927 if (mode == NL80211_IFTYPE_ADHOC)
928 bss = cfg80211_get_bss(priv->wdev->wiphy, channel,
929 bssid, ssid, ssid_len,
930 WLAN_CAPABILITY_IBSS,
931 WLAN_CAPABILITY_IBSS);
932 else
933 bss = cfg80211_get_bss(priv->wdev->wiphy, channel,
934 bssid, ssid, ssid_len,
935 WLAN_CAPABILITY_ESS,
936 WLAN_CAPABILITY_ESS);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700937
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700938 if (!bss) {
939 if (is_scanning_required) {
940 dev_warn(priv->adapter->dev, "assoc: requested "
941 "bss not found in scan results\n");
942 break;
943 }
944 is_scanning_required = 1;
945 } else {
946 dev_dbg(priv->adapter->dev, "info: trying to associate to %s and bssid %pM\n",
947 (char *) req_ssid.ssid, bss->bssid);
948 memcpy(&priv->cfg_bssid, bss->bssid, ETH_ALEN);
949 break;
950 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700951 }
952
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700953 if (mwifiex_bss_start(priv, bss, &req_ssid))
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700954 return -EFAULT;
955
Bing Zhaoeecd8252011-03-28 17:55:41 -0700956 if (mode == NL80211_IFTYPE_ADHOC) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700957 /* Inform the BSS information to kernel, otherwise
958 * kernel will give a panic after successful assoc */
959 if (mwifiex_cfg80211_inform_ibss_bss(priv))
960 return -EFAULT;
961 }
962
963 return ret;
964}
965
966/*
967 * CFG802.11 operation handler for association request.
968 *
969 * This function does not work when the current mode is set to Ad-Hoc, or
970 * when there is already an association procedure going on. The given BSS
971 * information is used to associate.
972 */
973static int
974mwifiex_cfg80211_connect(struct wiphy *wiphy, struct net_device *dev,
975 struct cfg80211_connect_params *sme)
976{
977 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
978 int ret = 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700979
Bing Zhaoeecd8252011-03-28 17:55:41 -0700980 if (priv->bss_mode == NL80211_IFTYPE_ADHOC) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700981 wiphy_err(wiphy, "received infra assoc request "
982 "when station is in ibss mode\n");
983 goto done;
984 }
985
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700986 wiphy_dbg(wiphy, "info: Trying to associate to %s and bssid %pM\n",
987 (char *) sme->ssid, sme->bssid);
988
989 ret = mwifiex_cfg80211_assoc(priv, sme->ssid_len, sme->ssid, sme->bssid,
Bing Zhaoeecd8252011-03-28 17:55:41 -0700990 priv->bss_mode, sme->channel, sme, 0);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700991done:
Amitkumar Karwar38c9d662011-12-13 20:43:17 -0800992 if (!ret) {
993 cfg80211_connect_result(priv->netdev, priv->cfg_bssid, NULL, 0,
994 NULL, 0, WLAN_STATUS_SUCCESS,
995 GFP_KERNEL);
996 dev_dbg(priv->adapter->dev,
997 "info: associated to bssid %pM successfully\n",
998 priv->cfg_bssid);
999 } else {
1000 dev_dbg(priv->adapter->dev,
1001 "info: association to bssid %pM failed\n",
1002 priv->cfg_bssid);
1003 memset(priv->cfg_bssid, 0, ETH_ALEN);
1004 }
1005
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001006 return ret;
1007}
1008
1009/*
1010 * CFG802.11 operation handler to join an IBSS.
1011 *
1012 * This function does not work in any mode other than Ad-Hoc, or if
1013 * a join operation is already in progress.
1014 */
1015static int
1016mwifiex_cfg80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
1017 struct cfg80211_ibss_params *params)
1018{
1019 struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
1020 int ret = 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001021
Bing Zhaoeecd8252011-03-28 17:55:41 -07001022 if (priv->bss_mode != NL80211_IFTYPE_ADHOC) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001023 wiphy_err(wiphy, "request to join ibss received "
1024 "when station is not in ibss mode\n");
1025 goto done;
1026 }
1027
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001028 wiphy_dbg(wiphy, "info: trying to join to %s and bssid %pM\n",
1029 (char *) params->ssid, params->bssid);
1030
1031 ret = mwifiex_cfg80211_assoc(priv, params->ssid_len, params->ssid,
Bing Zhaoeecd8252011-03-28 17:55:41 -07001032 params->bssid, priv->bss_mode,
1033 params->channel, NULL, params->privacy);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001034done:
Amitkumar Karwar38c9d662011-12-13 20:43:17 -08001035 if (!ret) {
1036 cfg80211_ibss_joined(priv->netdev, priv->cfg_bssid, GFP_KERNEL);
1037 dev_dbg(priv->adapter->dev,
1038 "info: joined/created adhoc network with bssid"
1039 " %pM successfully\n", priv->cfg_bssid);
1040 } else {
1041 dev_dbg(priv->adapter->dev,
1042 "info: failed creating/joining adhoc network\n");
1043 }
1044
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001045 return ret;
1046}
1047
1048/*
1049 * CFG802.11 operation handler to leave an IBSS.
1050 *
1051 * This function does not work if a leave operation is
1052 * already in progress.
1053 */
1054static int
1055mwifiex_cfg80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
1056{
1057 struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
1058
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001059 wiphy_dbg(wiphy, "info: disconnecting from essid %pM\n",
1060 priv->cfg_bssid);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001061 if (mwifiex_deauthenticate(priv, NULL))
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001062 return -EFAULT;
1063
Amitkumar Karwar38c9d662011-12-13 20:43:17 -08001064 memset(priv->cfg_bssid, 0, ETH_ALEN);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001065
1066 return 0;
1067}
1068
1069/*
1070 * CFG802.11 operation handler for scan request.
1071 *
1072 * This function issues a scan request to the firmware based upon
1073 * the user specified scan configuration. On successfull completion,
1074 * it also informs the results.
1075 */
1076static int
1077mwifiex_cfg80211_scan(struct wiphy *wiphy, struct net_device *dev,
1078 struct cfg80211_scan_request *request)
1079{
1080 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Amitkumar Karwar38c9d662011-12-13 20:43:17 -08001081 int i;
1082 struct ieee80211_channel *chan;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001083
1084 wiphy_dbg(wiphy, "info: received scan request on %s\n", dev->name);
1085
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001086 priv->scan_request = request;
1087
Amitkumar Karwar38c9d662011-12-13 20:43:17 -08001088 priv->user_scan_cfg = kzalloc(sizeof(struct mwifiex_user_scan_cfg),
1089 GFP_KERNEL);
1090 if (!priv->user_scan_cfg) {
1091 dev_err(priv->adapter->dev, "failed to alloc scan_req\n");
1092 return -ENOMEM;
1093 }
1094 for (i = 0; i < request->n_ssids; i++) {
1095 memcpy(priv->user_scan_cfg->ssid_list[i].ssid,
1096 request->ssids[i].ssid, request->ssids[i].ssid_len);
1097 priv->user_scan_cfg->ssid_list[i].max_len =
1098 request->ssids[i].ssid_len;
1099 }
1100 for (i = 0; i < request->n_channels; i++) {
1101 chan = request->channels[i];
1102 priv->user_scan_cfg->chan_list[i].chan_number = chan->hw_value;
1103 priv->user_scan_cfg->chan_list[i].radio_type = chan->band;
1104
1105 if (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN)
1106 priv->user_scan_cfg->chan_list[i].scan_type =
1107 MWIFIEX_SCAN_TYPE_PASSIVE;
1108 else
1109 priv->user_scan_cfg->chan_list[i].scan_type =
1110 MWIFIEX_SCAN_TYPE_ACTIVE;
1111
1112 priv->user_scan_cfg->chan_list[i].scan_time = 0;
1113 }
1114 if (mwifiex_set_user_scan_ioctl(priv, priv->user_scan_cfg))
1115 return -EFAULT;
1116
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001117 return 0;
1118}
1119
1120/*
1121 * This function sets up the CFG802.11 specific HT capability fields
1122 * with default values.
1123 *
1124 * The following default values are set -
1125 * - HT Supported = True
Amitkumar Karwara46b7b52011-04-27 19:13:12 -07001126 * - Maximum AMPDU length factor = IEEE80211_HT_MAX_AMPDU_64K
1127 * - Minimum AMPDU spacing = IEEE80211_HT_MPDU_DENSITY_NONE
1128 * - HT Capabilities supported by firmware
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001129 * - MCS information, Rx mask = 0xff
1130 * - MCD information, Tx parameters = IEEE80211_HT_MCS_TX_DEFINED (0x01)
1131 */
1132static void
1133mwifiex_setup_ht_caps(struct ieee80211_sta_ht_cap *ht_info,
1134 struct mwifiex_private *priv)
1135{
1136 int rx_mcs_supp;
1137 struct ieee80211_mcs_info mcs_set;
1138 u8 *mcs = (u8 *)&mcs_set;
1139 struct mwifiex_adapter *adapter = priv->adapter;
1140
1141 ht_info->ht_supported = true;
Amitkumar Karwara46b7b52011-04-27 19:13:12 -07001142 ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
1143 ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_NONE;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001144
1145 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001146
Amitkumar Karwara46b7b52011-04-27 19:13:12 -07001147 /* Fill HT capability information */
1148 if (ISSUPP_CHANWIDTH40(adapter->hw_dot_11n_dev_cap))
1149 ht_info->cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
1150 else
1151 ht_info->cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
1152
1153 if (ISSUPP_SHORTGI20(adapter->hw_dot_11n_dev_cap))
1154 ht_info->cap |= IEEE80211_HT_CAP_SGI_20;
1155 else
1156 ht_info->cap &= ~IEEE80211_HT_CAP_SGI_20;
1157
1158 if (ISSUPP_SHORTGI40(adapter->hw_dot_11n_dev_cap))
1159 ht_info->cap |= IEEE80211_HT_CAP_SGI_40;
1160 else
1161 ht_info->cap &= ~IEEE80211_HT_CAP_SGI_40;
1162
1163 if (ISSUPP_RXSTBC(adapter->hw_dot_11n_dev_cap))
1164 ht_info->cap |= 1 << IEEE80211_HT_CAP_RX_STBC_SHIFT;
1165 else
1166 ht_info->cap &= ~(3 << IEEE80211_HT_CAP_RX_STBC_SHIFT);
1167
1168 if (ISSUPP_TXSTBC(adapter->hw_dot_11n_dev_cap))
1169 ht_info->cap |= IEEE80211_HT_CAP_TX_STBC;
1170 else
1171 ht_info->cap &= ~IEEE80211_HT_CAP_TX_STBC;
1172
1173 ht_info->cap &= ~IEEE80211_HT_CAP_MAX_AMSDU;
1174 ht_info->cap |= IEEE80211_HT_CAP_SM_PS;
1175
1176 rx_mcs_supp = GET_RXMCSSUPP(adapter->hw_dev_mcs_support);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001177 /* Set MCS for 1x1 */
1178 memset(mcs, 0xff, rx_mcs_supp);
1179 /* Clear all the other values */
1180 memset(&mcs[rx_mcs_supp], 0,
1181 sizeof(struct ieee80211_mcs_info) - rx_mcs_supp);
Bing Zhaoeecd8252011-03-28 17:55:41 -07001182 if (priv->bss_mode == NL80211_IFTYPE_STATION ||
Marc Yang6d2bd912011-03-25 19:47:02 -07001183 ISSUPP_CHANWIDTH40(adapter->hw_dot_11n_dev_cap))
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001184 /* Set MCS32 for infra mode or ad-hoc mode with 40MHz support */
1185 SETHT_MCS32(mcs_set.rx_mask);
1186
1187 memcpy((u8 *) &ht_info->mcs, mcs, sizeof(struct ieee80211_mcs_info));
1188
1189 ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
1190}
1191
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07001192/*
1193 * create a new virtual interface with the given name
1194 */
1195struct net_device *mwifiex_add_virtual_intf(struct wiphy *wiphy,
1196 char *name,
1197 enum nl80211_iftype type,
1198 u32 *flags,
1199 struct vif_params *params)
1200{
1201 struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
1202 struct mwifiex_adapter *adapter;
1203 struct net_device *dev;
1204 void *mdev_priv;
1205
1206 if (!priv)
1207 return NULL;
1208
1209 adapter = priv->adapter;
1210 if (!adapter)
1211 return NULL;
1212
1213 switch (type) {
1214 case NL80211_IFTYPE_UNSPECIFIED:
1215 case NL80211_IFTYPE_STATION:
1216 case NL80211_IFTYPE_ADHOC:
1217 if (priv->bss_mode) {
1218 wiphy_err(wiphy, "cannot create multiple"
1219 " station/adhoc interfaces\n");
1220 return NULL;
1221 }
1222
1223 if (type == NL80211_IFTYPE_UNSPECIFIED)
1224 priv->bss_mode = NL80211_IFTYPE_STATION;
1225 else
1226 priv->bss_mode = type;
1227
1228 priv->bss_type = MWIFIEX_BSS_TYPE_STA;
1229 priv->frame_type = MWIFIEX_DATA_FRAME_TYPE_ETH_II;
1230 priv->bss_priority = 0;
1231 priv->bss_role = MWIFIEX_BSS_ROLE_STA;
1232 priv->bss_index = 0;
1233 priv->bss_num = 0;
1234
1235 break;
1236 default:
1237 wiphy_err(wiphy, "type not supported\n");
1238 return NULL;
1239 }
1240
1241 dev = alloc_netdev_mq(sizeof(struct mwifiex_private *), name,
1242 ether_setup, 1);
1243 if (!dev) {
1244 wiphy_err(wiphy, "no memory available for netdevice\n");
1245 goto error;
1246 }
1247
1248 dev_net_set(dev, wiphy_net(wiphy));
1249 dev->ieee80211_ptr = priv->wdev;
1250 dev->ieee80211_ptr->iftype = priv->bss_mode;
1251 memcpy(dev->dev_addr, wiphy->perm_addr, ETH_ALEN);
1252 memcpy(dev->perm_addr, wiphy->perm_addr, ETH_ALEN);
1253 SET_NETDEV_DEV(dev, wiphy_dev(wiphy));
1254
1255 dev->flags |= IFF_BROADCAST | IFF_MULTICAST;
1256 dev->watchdog_timeo = MWIFIEX_DEFAULT_WATCHDOG_TIMEOUT;
1257 dev->hard_header_len += MWIFIEX_MIN_DATA_HEADER_LEN;
1258
1259 mdev_priv = netdev_priv(dev);
1260 *((unsigned long *) mdev_priv) = (unsigned long) priv;
1261
1262 priv->netdev = dev;
1263 mwifiex_init_priv_params(priv, dev);
1264
1265 SET_NETDEV_DEV(dev, adapter->dev);
1266
1267 /* Register network device */
1268 if (register_netdevice(dev)) {
1269 wiphy_err(wiphy, "cannot register virtual network device\n");
1270 goto error;
1271 }
1272
1273 sema_init(&priv->async_sem, 1);
1274 priv->scan_pending_on_block = false;
1275
1276 dev_dbg(adapter->dev, "info: %s: Marvell 802.11 Adapter\n", dev->name);
1277
1278#ifdef CONFIG_DEBUG_FS
1279 mwifiex_dev_debugfs_init(priv);
1280#endif
1281 return dev;
1282error:
1283 if (dev && (dev->reg_state == NETREG_UNREGISTERED))
1284 free_netdev(dev);
1285 priv->bss_mode = NL80211_IFTYPE_UNSPECIFIED;
1286
1287 return NULL;
1288}
1289EXPORT_SYMBOL_GPL(mwifiex_add_virtual_intf);
1290
1291/*
1292 * del_virtual_intf: remove the virtual interface determined by dev
1293 */
1294int mwifiex_del_virtual_intf(struct wiphy *wiphy, struct net_device *dev)
1295{
1296 struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
1297
1298 if (!priv || !dev)
1299 return 0;
1300
1301#ifdef CONFIG_DEBUG_FS
1302 mwifiex_dev_debugfs_remove(priv);
1303#endif
1304
1305 if (!netif_queue_stopped(priv->netdev))
1306 netif_stop_queue(priv->netdev);
1307
1308 if (netif_carrier_ok(priv->netdev))
1309 netif_carrier_off(priv->netdev);
1310
1311 if (dev->reg_state == NETREG_REGISTERED)
1312 unregister_netdevice(dev);
1313
1314 if (dev->reg_state == NETREG_UNREGISTERED)
1315 free_netdev(dev);
1316
1317 /* Clear the priv in adapter */
1318 priv->netdev = NULL;
1319
1320 priv->media_connected = false;
1321
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07001322 priv->bss_mode = NL80211_IFTYPE_UNSPECIFIED;
1323
1324 return 0;
1325}
1326EXPORT_SYMBOL_GPL(mwifiex_del_virtual_intf);
1327
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001328/* station cfg80211 operations */
1329static struct cfg80211_ops mwifiex_cfg80211_ops = {
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07001330 .add_virtual_intf = mwifiex_add_virtual_intf,
1331 .del_virtual_intf = mwifiex_del_virtual_intf,
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001332 .change_virtual_intf = mwifiex_cfg80211_change_virtual_intf,
1333 .scan = mwifiex_cfg80211_scan,
1334 .connect = mwifiex_cfg80211_connect,
1335 .disconnect = mwifiex_cfg80211_disconnect,
1336 .get_station = mwifiex_cfg80211_get_station,
1337 .set_wiphy_params = mwifiex_cfg80211_set_wiphy_params,
1338 .set_channel = mwifiex_cfg80211_set_channel,
1339 .join_ibss = mwifiex_cfg80211_join_ibss,
1340 .leave_ibss = mwifiex_cfg80211_leave_ibss,
1341 .add_key = mwifiex_cfg80211_add_key,
1342 .del_key = mwifiex_cfg80211_del_key,
1343 .set_default_key = mwifiex_cfg80211_set_default_key,
1344 .set_power_mgmt = mwifiex_cfg80211_set_power_mgmt,
1345 .set_tx_power = mwifiex_cfg80211_set_tx_power,
Yogesh Ashok Powar5d82c532011-07-11 20:04:44 -07001346 .set_bitrate_mask = mwifiex_cfg80211_set_bitrate_mask,
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001347};
1348
1349/*
1350 * This function registers the device with CFG802.11 subsystem.
1351 *
1352 * The function creates the wireless device/wiphy, populates it with
1353 * default parameters and handler function pointers, and finally
1354 * registers the device.
1355 */
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07001356int mwifiex_register_cfg80211(struct mwifiex_private *priv)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001357{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -07001358 int ret;
1359 void *wdev_priv;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001360 struct wireless_dev *wdev;
1361
1362 wdev = kzalloc(sizeof(struct wireless_dev), GFP_KERNEL);
1363 if (!wdev) {
1364 dev_err(priv->adapter->dev, "%s: allocating wireless device\n",
1365 __func__);
1366 return -ENOMEM;
1367 }
1368 wdev->wiphy =
1369 wiphy_new(&mwifiex_cfg80211_ops,
1370 sizeof(struct mwifiex_private *));
Christoph Fritzb53575e2011-05-08 22:50:09 +02001371 if (!wdev->wiphy) {
1372 kfree(wdev);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001373 return -ENOMEM;
Christoph Fritzb53575e2011-05-08 22:50:09 +02001374 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001375 wdev->iftype = NL80211_IFTYPE_STATION;
1376 wdev->wiphy->max_scan_ssids = 10;
1377 wdev->wiphy->interface_modes =
1378 BIT(NL80211_IFTYPE_STATION) | BIT(NL80211_IFTYPE_ADHOC);
Amitkumar Karwaradc89592011-04-27 19:13:11 -07001379
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001380 wdev->wiphy->bands[IEEE80211_BAND_2GHZ] = &mwifiex_band_2ghz;
Amitkumar Karwaradc89592011-04-27 19:13:11 -07001381 mwifiex_setup_ht_caps(
1382 &wdev->wiphy->bands[IEEE80211_BAND_2GHZ]->ht_cap, priv);
1383
1384 if (priv->adapter->config_bands & BAND_A) {
1385 wdev->wiphy->bands[IEEE80211_BAND_5GHZ] = &mwifiex_band_5ghz;
1386 mwifiex_setup_ht_caps(
1387 &wdev->wiphy->bands[IEEE80211_BAND_5GHZ]->ht_cap, priv);
1388 } else {
1389 wdev->wiphy->bands[IEEE80211_BAND_5GHZ] = NULL;
1390 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001391
1392 /* Initialize cipher suits */
1393 wdev->wiphy->cipher_suites = mwifiex_cipher_suites;
1394 wdev->wiphy->n_cipher_suites = ARRAY_SIZE(mwifiex_cipher_suites);
1395
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07001396 memcpy(wdev->wiphy->perm_addr, priv->curr_addr, ETH_ALEN);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001397 wdev->wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM;
1398
Amitkumar Karwar5116f3c2011-09-21 21:43:23 -07001399 /* Reserve space for bss band information */
1400 wdev->wiphy->bss_priv_size = sizeof(u8);
1401
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001402 wdev->wiphy->reg_notifier = mwifiex_reg_notifier;
1403
1404 /* Set struct mwifiex_private pointer in wiphy_priv */
1405 wdev_priv = wiphy_priv(wdev->wiphy);
1406
1407 *(unsigned long *) wdev_priv = (unsigned long) priv;
1408
Yogesh Ashok Powara7b21162011-06-13 09:49:27 +05301409 set_wiphy_dev(wdev->wiphy, (struct device *) priv->adapter->dev);
1410
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001411 ret = wiphy_register(wdev->wiphy);
1412 if (ret < 0) {
1413 dev_err(priv->adapter->dev, "%s: registering cfg80211 device\n",
1414 __func__);
1415 wiphy_free(wdev->wiphy);
Christoph Fritzb53575e2011-05-08 22:50:09 +02001416 kfree(wdev);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001417 return ret;
1418 } else {
1419 dev_dbg(priv->adapter->dev,
1420 "info: successfully registered wiphy device\n");
1421 }
1422
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001423 priv->wdev = wdev;
1424
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001425 return ret;
1426}