blob: 8e829b251d83c74e30a1593bcf161f86c511a221 [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
Avinash Patilcd8440d2012-05-08 18:30:16 -070023static const struct ieee80211_iface_limit mwifiex_ap_sta_limits[] = {
24 {
Stone Piao197f4a22012-09-25 20:23:40 -070025 .max = 2, .types = BIT(NL80211_IFTYPE_STATION),
Avinash Patilcd8440d2012-05-08 18:30:16 -070026 },
27 {
28 .max = 1, .types = BIT(NL80211_IFTYPE_AP),
29 },
30};
31
32static const struct ieee80211_iface_combination mwifiex_iface_comb_ap_sta = {
33 .limits = mwifiex_ap_sta_limits,
34 .num_different_channels = 1,
35 .n_limits = ARRAY_SIZE(mwifiex_ap_sta_limits),
36 .max_interfaces = MWIFIEX_MAX_BSS_NUM,
37 .beacon_int_infra_match = true,
38};
39
Amitkumar Karwarcc0ba0d2012-09-10 18:30:47 -070040static const struct ieee80211_regdomain mwifiex_world_regdom_custom = {
41 .n_reg_rules = 7,
42 .alpha2 = "99",
43 .reg_rules = {
44 /* Channel 1 - 11 */
45 REG_RULE(2412-10, 2462+10, 40, 3, 20, 0),
46 /* Channel 12 - 13 */
47 REG_RULE(2467-10, 2472+10, 20, 3, 20,
48 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS),
49 /* Channel 14 */
50 REG_RULE(2484-10, 2484+10, 20, 3, 20,
51 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS |
52 NL80211_RRF_NO_OFDM),
53 /* Channel 36 - 48 */
54 REG_RULE(5180-10, 5240+10, 40, 3, 20,
55 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS),
56 /* Channel 149 - 165 */
57 REG_RULE(5745-10, 5825+10, 40, 3, 20,
58 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS),
59 /* Channel 52 - 64 */
60 REG_RULE(5260-10, 5320+10, 40, 3, 30,
61 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS |
62 NL80211_RRF_DFS),
63 /* Channel 100 - 140 */
64 REG_RULE(5500-10, 5700+10, 40, 3, 30,
65 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS |
66 NL80211_RRF_DFS),
67 }
68};
69
Bing Zhao5e6e3a92011-03-21 18:00:50 -070070/*
71 * This function maps the nl802.11 channel type into driver channel type.
72 *
73 * The mapping is as follows -
Amitkumar Karwar21c3ba32011-12-20 23:47:21 -080074 * NL80211_CHAN_NO_HT -> IEEE80211_HT_PARAM_CHA_SEC_NONE
75 * NL80211_CHAN_HT20 -> IEEE80211_HT_PARAM_CHA_SEC_NONE
76 * NL80211_CHAN_HT40PLUS -> IEEE80211_HT_PARAM_CHA_SEC_ABOVE
77 * NL80211_CHAN_HT40MINUS -> IEEE80211_HT_PARAM_CHA_SEC_BELOW
78 * Others -> IEEE80211_HT_PARAM_CHA_SEC_NONE
Bing Zhao5e6e3a92011-03-21 18:00:50 -070079 */
Stone Piao7feb4c42012-09-25 20:23:36 -070080u8 mwifiex_chan_type_to_sec_chan_offset(enum nl80211_channel_type chan_type)
Bing Zhao5e6e3a92011-03-21 18:00:50 -070081{
Amitkumar Karwar05910f42012-07-13 20:09:32 -070082 switch (chan_type) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -070083 case NL80211_CHAN_NO_HT:
84 case NL80211_CHAN_HT20:
Amitkumar Karwar21c3ba32011-12-20 23:47:21 -080085 return IEEE80211_HT_PARAM_CHA_SEC_NONE;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070086 case NL80211_CHAN_HT40PLUS:
Amitkumar Karwar21c3ba32011-12-20 23:47:21 -080087 return IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070088 case NL80211_CHAN_HT40MINUS:
Amitkumar Karwar21c3ba32011-12-20 23:47:21 -080089 return IEEE80211_HT_PARAM_CHA_SEC_BELOW;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070090 default:
Amitkumar Karwar21c3ba32011-12-20 23:47:21 -080091 return IEEE80211_HT_PARAM_CHA_SEC_NONE;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070092 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -070093}
94
95/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -070096 * This function checks whether WEP is set.
97 */
98static int
99mwifiex_is_alg_wep(u32 cipher)
100{
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700101 switch (cipher) {
Yogesh Ashok Powar2be50b82011-04-01 18:36:47 -0700102 case WLAN_CIPHER_SUITE_WEP40:
103 case WLAN_CIPHER_SUITE_WEP104:
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700104 return 1;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700105 default:
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700106 break;
107 }
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700108
109 return 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700110}
111
112/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700113 * This function retrieves the private structure from kernel wiphy structure.
114 */
Avinash Patil67fdf392012-05-08 18:30:17 -0700115static void *mwifiex_cfg80211_get_adapter(struct wiphy *wiphy)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700116{
117 return (void *) (*(unsigned long *) wiphy_priv(wiphy));
118}
119
120/*
121 * CFG802.11 operation handler to delete a network key.
122 */
123static int
124mwifiex_cfg80211_del_key(struct wiphy *wiphy, struct net_device *netdev,
125 u8 key_index, bool pairwise, const u8 *mac_addr)
126{
Yogesh Ashok Powarf540f9f2012-01-11 20:06:12 -0800127 struct mwifiex_private *priv = mwifiex_netdev_get_priv(netdev);
Avinash Patil75edd2c2012-05-08 18:30:18 -0700128 const u8 bc_mac[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
129 const u8 *peer_mac = pairwise ? mac_addr : bc_mac;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700130
Ying Luo53b11232012-08-03 18:06:13 -0700131 if (mwifiex_set_encode(priv, NULL, NULL, 0, key_index, peer_mac, 1)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700132 wiphy_err(wiphy, "deleting the crypto keys\n");
133 return -EFAULT;
134 }
135
136 wiphy_dbg(wiphy, "info: crypto keys deleted\n");
137 return 0;
138}
139
140/*
Stone Piaoe39faa72012-09-25 20:23:32 -0700141 * This function forms an skb for management frame.
142 */
143static int
144mwifiex_form_mgmt_frame(struct sk_buff *skb, const u8 *buf, size_t len)
145{
146 u8 addr[ETH_ALEN] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
147 u16 pkt_len;
148 u32 tx_control = 0, pkt_type = PKT_TYPE_MGMT;
149 struct timeval tv;
150
151 pkt_len = len + ETH_ALEN;
152
153 skb_reserve(skb, MWIFIEX_MIN_DATA_HEADER_LEN +
154 MWIFIEX_MGMT_FRAME_HEADER_SIZE + sizeof(pkt_len));
155 memcpy(skb_push(skb, sizeof(pkt_len)), &pkt_len, sizeof(pkt_len));
156
157 memcpy(skb_push(skb, sizeof(tx_control)),
158 &tx_control, sizeof(tx_control));
159
160 memcpy(skb_push(skb, sizeof(pkt_type)), &pkt_type, sizeof(pkt_type));
161
162 /* Add packet data and address4 */
163 memcpy(skb_put(skb, sizeof(struct ieee80211_hdr_3addr)), buf,
164 sizeof(struct ieee80211_hdr_3addr));
165 memcpy(skb_put(skb, ETH_ALEN), addr, ETH_ALEN);
166 memcpy(skb_put(skb, len - sizeof(struct ieee80211_hdr_3addr)),
167 buf + sizeof(struct ieee80211_hdr_3addr),
168 len - sizeof(struct ieee80211_hdr_3addr));
169
170 skb->priority = LOW_PRIO_TID;
171 do_gettimeofday(&tv);
172 skb->tstamp = timeval_to_ktime(tv);
173
174 return 0;
175}
176
177/*
178 * CFG802.11 operation handler to transmit a management frame.
179 */
180static int
181mwifiex_cfg80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
182 struct ieee80211_channel *chan, bool offchan,
183 enum nl80211_channel_type channel_type,
184 bool channel_type_valid, unsigned int wait,
185 const u8 *buf, size_t len, bool no_cck,
186 bool dont_wait_for_ack, u64 *cookie)
187{
188 struct sk_buff *skb;
189 u16 pkt_len;
190 const struct ieee80211_mgmt *mgmt;
191 struct mwifiex_private *priv = mwifiex_netdev_get_priv(wdev->netdev);
192
193 if (!buf || !len) {
194 wiphy_err(wiphy, "invalid buffer and length\n");
195 return -EFAULT;
196 }
197
198 mgmt = (const struct ieee80211_mgmt *)buf;
199 if (GET_BSS_ROLE(priv) != MWIFIEX_BSS_ROLE_STA &&
200 ieee80211_is_probe_resp(mgmt->frame_control)) {
201 /* Since we support offload probe resp, we need to skip probe
202 * resp in AP or GO mode */
203 wiphy_dbg(wiphy,
204 "info: skip to send probe resp in AP or GO mode\n");
205 return 0;
206 }
207
208 pkt_len = len + ETH_ALEN;
209 skb = dev_alloc_skb(MWIFIEX_MIN_DATA_HEADER_LEN +
210 MWIFIEX_MGMT_FRAME_HEADER_SIZE +
211 pkt_len + sizeof(pkt_len));
212
213 if (!skb) {
214 wiphy_err(wiphy, "allocate skb failed for management frame\n");
215 return -ENOMEM;
216 }
217
218 mwifiex_form_mgmt_frame(skb, buf, len);
219 mwifiex_queue_tx_pkt(priv, skb);
220
221 *cookie = random32() | 1;
222 cfg80211_mgmt_tx_status(wdev, *cookie, buf, len, true, GFP_ATOMIC);
223
224 wiphy_dbg(wiphy, "info: management frame transmitted\n");
225 return 0;
226}
227
228/*
Stone Piao3cec6872012-09-25 20:23:34 -0700229 * CFG802.11 operation handler to register a mgmt frame.
230 */
231static void
232mwifiex_cfg80211_mgmt_frame_register(struct wiphy *wiphy,
233 struct wireless_dev *wdev,
234 u16 frame_type, bool reg)
235{
236 struct mwifiex_private *priv = mwifiex_netdev_get_priv(wdev->netdev);
237
238 if (reg)
239 priv->mgmt_frame_mask |= BIT(frame_type >> 4);
240 else
241 priv->mgmt_frame_mask &= ~BIT(frame_type >> 4);
242
243 mwifiex_send_cmd_async(priv, HostCmd_CMD_MGMT_FRAME_REG,
244 HostCmd_ACT_GEN_SET, 0, &priv->mgmt_frame_mask);
245
246 wiphy_dbg(wiphy, "info: mgmt frame registered\n");
247}
248
249/*
Stone Piao7feb4c42012-09-25 20:23:36 -0700250 * CFG802.11 operation handler to remain on channel.
251 */
252static int
253mwifiex_cfg80211_remain_on_channel(struct wiphy *wiphy,
254 struct wireless_dev *wdev,
255 struct ieee80211_channel *chan,
256 enum nl80211_channel_type channel_type,
257 unsigned int duration, u64 *cookie)
258{
259 struct mwifiex_private *priv = mwifiex_netdev_get_priv(wdev->netdev);
260 int ret;
261
262 if (!chan || !cookie) {
263 wiphy_err(wiphy, "Invalid parameter for ROC\n");
264 return -EINVAL;
265 }
266
267 if (priv->roc_cfg.cookie) {
268 wiphy_dbg(wiphy, "info: ongoing ROC, cookie = 0x%llu\n",
269 priv->roc_cfg.cookie);
270 return -EBUSY;
271 }
272
273 ret = mwifiex_remain_on_chan_cfg(priv, HostCmd_ACT_GEN_SET, chan,
274 &channel_type, duration);
275
276 if (!ret) {
277 *cookie = random32() | 1;
278 priv->roc_cfg.cookie = *cookie;
279 priv->roc_cfg.chan = *chan;
280 priv->roc_cfg.chan_type = channel_type;
281
282 cfg80211_ready_on_channel(wdev, *cookie, chan, channel_type,
283 duration, GFP_ATOMIC);
284
285 wiphy_dbg(wiphy, "info: ROC, cookie = 0x%llx\n", *cookie);
286 }
287
288 return ret;
289}
290
291/*
292 * CFG802.11 operation handler to cancel remain on channel.
293 */
294static int
295mwifiex_cfg80211_cancel_remain_on_channel(struct wiphy *wiphy,
296 struct wireless_dev *wdev, u64 cookie)
297{
298 struct mwifiex_private *priv = mwifiex_netdev_get_priv(wdev->netdev);
299 int ret;
300
301 if (cookie != priv->roc_cfg.cookie)
302 return -ENOENT;
303
304 ret = mwifiex_remain_on_chan_cfg(priv, HostCmd_ACT_GEN_REMOVE,
305 &priv->roc_cfg.chan,
306 &priv->roc_cfg.chan_type, 0);
307
308 if (!ret) {
309 cfg80211_remain_on_channel_expired(wdev, cookie,
310 &priv->roc_cfg.chan,
311 priv->roc_cfg.chan_type,
312 GFP_ATOMIC);
313
314 memset(&priv->roc_cfg, 0, sizeof(struct mwifiex_roc_cfg));
315
316 wiphy_dbg(wiphy, "info: cancel ROC, cookie = 0x%llx\n", cookie);
317 }
318
319 return ret;
320}
321
322/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700323 * CFG802.11 operation handler to set Tx power.
324 */
325static int
326mwifiex_cfg80211_set_tx_power(struct wiphy *wiphy,
Johannes Bergc8442112012-10-24 10:17:18 +0200327 struct wireless_dev *wdev,
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700328 enum nl80211_tx_power_setting type,
Luis R. Rodriguez742c29f2011-11-28 16:38:50 -0500329 int mbm)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700330{
Avinash Patil67fdf392012-05-08 18:30:17 -0700331 struct mwifiex_adapter *adapter = mwifiex_cfg80211_get_adapter(wiphy);
332 struct mwifiex_private *priv;
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700333 struct mwifiex_power_cfg power_cfg;
Luis R. Rodriguez742c29f2011-11-28 16:38:50 -0500334 int dbm = MBM_TO_DBM(mbm);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700335
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700336 if (type == NL80211_TX_POWER_FIXED) {
337 power_cfg.is_power_auto = 0;
338 power_cfg.power_level = dbm;
339 } else {
340 power_cfg.is_power_auto = 1;
341 }
342
Avinash Patil67fdf392012-05-08 18:30:17 -0700343 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
344
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700345 return mwifiex_set_tx_power(priv, &power_cfg);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700346}
347
348/*
349 * CFG802.11 operation handler to set Power Save option.
350 *
351 * The timeout value, if provided, is currently ignored.
352 */
353static int
354mwifiex_cfg80211_set_power_mgmt(struct wiphy *wiphy,
355 struct net_device *dev,
356 bool enabled, int timeout)
357{
Yogesh Ashok Powarf540f9f2012-01-11 20:06:12 -0800358 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700359 u32 ps_mode;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700360
361 if (timeout)
362 wiphy_dbg(wiphy,
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700363 "info: ignore timeout value for IEEE Power Save\n");
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700364
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700365 ps_mode = enabled;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700366
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700367 return mwifiex_drv_set_power(priv, &ps_mode);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700368}
369
370/*
371 * CFG802.11 operation handler to set the default network key.
372 */
373static int
374mwifiex_cfg80211_set_default_key(struct wiphy *wiphy, struct net_device *netdev,
375 u8 key_index, bool unicast,
376 bool multicast)
377{
Yogesh Ashok Powarf540f9f2012-01-11 20:06:12 -0800378 struct mwifiex_private *priv = mwifiex_netdev_get_priv(netdev);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700379
Amitkumar Karwar2d3d0a82011-04-01 18:36:46 -0700380 /* Return if WEP key not configured */
Amitkumar Karwar5eb02e42012-02-24 21:36:04 -0800381 if (!priv->sec_info.wep_enabled)
Amitkumar Karwar2d3d0a82011-04-01 18:36:46 -0700382 return 0;
383
Avinash Patil96893532012-06-15 12:21:55 -0700384 if (priv->bss_type == MWIFIEX_BSS_TYPE_UAP) {
385 priv->wep_key_curr_index = key_index;
Ying Luo53b11232012-08-03 18:06:13 -0700386 } else if (mwifiex_set_encode(priv, NULL, NULL, 0, key_index,
387 NULL, 0)) {
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700388 wiphy_err(wiphy, "set default Tx key index\n");
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700389 return -EFAULT;
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700390 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700391
392 return 0;
393}
394
395/*
396 * CFG802.11 operation handler to add a network key.
397 */
398static int
399mwifiex_cfg80211_add_key(struct wiphy *wiphy, struct net_device *netdev,
400 u8 key_index, bool pairwise, const u8 *mac_addr,
401 struct key_params *params)
402{
Yogesh Ashok Powarf540f9f2012-01-11 20:06:12 -0800403 struct mwifiex_private *priv = mwifiex_netdev_get_priv(netdev);
Avinash Patil96893532012-06-15 12:21:55 -0700404 struct mwifiex_wep_key *wep_key;
Avinash Patil75edd2c2012-05-08 18:30:18 -0700405 const u8 bc_mac[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
406 const u8 *peer_mac = pairwise ? mac_addr : bc_mac;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700407
Avinash Patil96893532012-06-15 12:21:55 -0700408 if (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_UAP &&
409 (params->cipher == WLAN_CIPHER_SUITE_WEP40 ||
410 params->cipher == WLAN_CIPHER_SUITE_WEP104)) {
411 if (params->key && params->key_len) {
412 wep_key = &priv->wep_key[key_index];
413 memset(wep_key, 0, sizeof(struct mwifiex_wep_key));
414 memcpy(wep_key->key_material, params->key,
415 params->key_len);
416 wep_key->key_index = key_index;
417 wep_key->key_length = params->key_len;
418 priv->sec_info.wep_enabled = 1;
419 }
420 return 0;
421 }
422
Ying Luo53b11232012-08-03 18:06:13 -0700423 if (mwifiex_set_encode(priv, params, params->key, params->key_len,
Avinash Patil75edd2c2012-05-08 18:30:18 -0700424 key_index, peer_mac, 0)) {
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700425 wiphy_err(wiphy, "crypto keys added\n");
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700426 return -EFAULT;
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700427 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700428
429 return 0;
430}
431
432/*
433 * This function sends domain information to the firmware.
434 *
435 * The following information are passed to the firmware -
436 * - Country codes
437 * - Sub bands (first channel, number of channels, maximum Tx power)
438 */
439static int mwifiex_send_domain_info_cmd_fw(struct wiphy *wiphy)
440{
441 u8 no_of_triplet = 0;
442 struct ieee80211_country_ie_triplet *t;
443 u8 no_of_parsed_chan = 0;
444 u8 first_chan = 0, next_chan = 0, max_pwr = 0;
445 u8 i, flag = 0;
446 enum ieee80211_band band;
447 struct ieee80211_supported_band *sband;
448 struct ieee80211_channel *ch;
Avinash Patil67fdf392012-05-08 18:30:17 -0700449 struct mwifiex_adapter *adapter = mwifiex_cfg80211_get_adapter(wiphy);
450 struct mwifiex_private *priv;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700451 struct mwifiex_802_11d_domain_reg *domain_info = &adapter->domain_reg;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700452
453 /* Set country code */
Avinash Patil67fdf392012-05-08 18:30:17 -0700454 domain_info->country_code[0] = adapter->country_code[0];
455 domain_info->country_code[1] = adapter->country_code[1];
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700456 domain_info->country_code[2] = ' ';
457
458 band = mwifiex_band_to_radio_type(adapter->config_bands);
459 if (!wiphy->bands[band]) {
460 wiphy_err(wiphy, "11D: setting domain info in FW\n");
461 return -1;
462 }
463
464 sband = wiphy->bands[band];
465
466 for (i = 0; i < sband->n_channels ; i++) {
467 ch = &sband->channels[i];
468 if (ch->flags & IEEE80211_CHAN_DISABLED)
469 continue;
470
471 if (!flag) {
472 flag = 1;
473 first_chan = (u32) ch->hw_value;
474 next_chan = first_chan;
Amitkumar Karwar22db2492012-10-19 19:19:19 -0700475 max_pwr = ch->max_power;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700476 no_of_parsed_chan = 1;
477 continue;
478 }
479
480 if (ch->hw_value == next_chan + 1 &&
Amitkumar Karwar22db2492012-10-19 19:19:19 -0700481 ch->max_power == max_pwr) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700482 next_chan++;
483 no_of_parsed_chan++;
484 } else {
485 t = &domain_info->triplet[no_of_triplet];
486 t->chans.first_channel = first_chan;
487 t->chans.num_channels = no_of_parsed_chan;
488 t->chans.max_power = max_pwr;
489 no_of_triplet++;
490 first_chan = (u32) ch->hw_value;
491 next_chan = first_chan;
Amitkumar Karwar22db2492012-10-19 19:19:19 -0700492 max_pwr = ch->max_power;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700493 no_of_parsed_chan = 1;
494 }
495 }
496
497 if (flag) {
498 t = &domain_info->triplet[no_of_triplet];
499 t->chans.first_channel = first_chan;
500 t->chans.num_channels = no_of_parsed_chan;
501 t->chans.max_power = max_pwr;
502 no_of_triplet++;
503 }
504
505 domain_info->no_of_triplet = no_of_triplet;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700506
Avinash Patil67fdf392012-05-08 18:30:17 -0700507 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
508
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700509 if (mwifiex_send_cmd_async(priv, HostCmd_CMD_802_11D_DOMAIN_INFO,
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700510 HostCmd_ACT_GEN_SET, 0, NULL)) {
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700511 wiphy_err(wiphy, "11D: setting domain info in FW\n");
512 return -1;
513 }
514
515 return 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700516}
517
518/*
519 * CFG802.11 regulatory domain callback function.
520 *
521 * This function is called when the regulatory domain is changed due to the
522 * following reasons -
523 * - Set by driver
524 * - Set by system core
525 * - Set by user
526 * - Set bt Country IE
527 */
528static int mwifiex_reg_notifier(struct wiphy *wiphy,
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700529 struct regulatory_request *request)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700530{
Avinash Patil67fdf392012-05-08 18:30:17 -0700531 struct mwifiex_adapter *adapter = mwifiex_cfg80211_get_adapter(wiphy);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700532
Avinash Patil67fdf392012-05-08 18:30:17 -0700533 wiphy_dbg(wiphy, "info: cfg80211 regulatory domain callback for %c%c\n",
534 request->alpha2[0], request->alpha2[1]);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700535
Avinash Patil67fdf392012-05-08 18:30:17 -0700536 memcpy(adapter->country_code, request->alpha2, sizeof(request->alpha2));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700537
538 switch (request->initiator) {
539 case NL80211_REGDOM_SET_BY_DRIVER:
540 case NL80211_REGDOM_SET_BY_CORE:
541 case NL80211_REGDOM_SET_BY_USER:
542 break;
543 /* Todo: apply driver specific changes in channel flags based
544 on the request initiator if necessary. */
545 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
546 break;
547 }
548 mwifiex_send_domain_info_cmd_fw(wiphy);
549
550 return 0;
551}
552
553/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700554 * This function sets the fragmentation threshold.
555 *
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700556 * The fragmentation threshold value must lie between MWIFIEX_FRAG_MIN_VALUE
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700557 * and MWIFIEX_FRAG_MAX_VALUE.
558 */
559static int
560mwifiex_set_frag(struct mwifiex_private *priv, u32 frag_thr)
561{
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700562 if (frag_thr < MWIFIEX_FRAG_MIN_VALUE ||
563 frag_thr > MWIFIEX_FRAG_MAX_VALUE)
Avinash Patil9b930ea2012-05-08 18:30:23 -0700564 frag_thr = MWIFIEX_FRAG_MAX_VALUE;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700565
Avinash Patil9b930ea2012-05-08 18:30:23 -0700566 return mwifiex_send_cmd_sync(priv, HostCmd_CMD_802_11_SNMP_MIB,
567 HostCmd_ACT_GEN_SET, FRAG_THRESH_I,
568 &frag_thr);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700569}
570
571/*
572 * This function sets the RTS threshold.
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700573
574 * The rts value must lie between MWIFIEX_RTS_MIN_VALUE
575 * and MWIFIEX_RTS_MAX_VALUE.
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700576 */
577static int
578mwifiex_set_rts(struct mwifiex_private *priv, u32 rts_thr)
579{
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700580 if (rts_thr < MWIFIEX_RTS_MIN_VALUE || rts_thr > MWIFIEX_RTS_MAX_VALUE)
581 rts_thr = MWIFIEX_RTS_MAX_VALUE;
582
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700583 return mwifiex_send_cmd_sync(priv, HostCmd_CMD_802_11_SNMP_MIB,
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700584 HostCmd_ACT_GEN_SET, RTS_THRESH_I,
585 &rts_thr);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700586}
587
588/*
589 * CFG802.11 operation handler to set wiphy parameters.
590 *
591 * This function can be used to set the RTS threshold and the
592 * Fragmentation threshold of the driver.
593 */
594static int
595mwifiex_cfg80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
596{
Avinash Patil67fdf392012-05-08 18:30:17 -0700597 struct mwifiex_adapter *adapter = mwifiex_cfg80211_get_adapter(wiphy);
Avinash Patil9b930ea2012-05-08 18:30:23 -0700598 struct mwifiex_private *priv;
599 struct mwifiex_uap_bss_param *bss_cfg;
600 int ret, bss_started, i;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700601
Avinash Patil9b930ea2012-05-08 18:30:23 -0700602 for (i = 0; i < adapter->priv_num; i++) {
603 priv = adapter->priv[i];
604
605 switch (priv->bss_role) {
606 case MWIFIEX_BSS_ROLE_UAP:
607 bss_cfg = kzalloc(sizeof(struct mwifiex_uap_bss_param),
608 GFP_KERNEL);
609 if (!bss_cfg)
610 return -ENOMEM;
611
612 mwifiex_set_sys_config_invalid_data(bss_cfg);
613
614 if (changed & WIPHY_PARAM_RTS_THRESHOLD)
615 bss_cfg->rts_threshold = wiphy->rts_threshold;
616 if (changed & WIPHY_PARAM_FRAG_THRESHOLD)
617 bss_cfg->frag_threshold = wiphy->frag_threshold;
618 if (changed & WIPHY_PARAM_RETRY_LONG)
619 bss_cfg->retry_limit = wiphy->retry_long;
620
621 bss_started = priv->bss_started;
622
623 ret = mwifiex_send_cmd_sync(priv,
624 HostCmd_CMD_UAP_BSS_STOP,
625 HostCmd_ACT_GEN_SET, 0,
626 NULL);
627 if (ret) {
628 wiphy_err(wiphy, "Failed to stop the BSS\n");
629 kfree(bss_cfg);
630 return ret;
631 }
632
633 ret = mwifiex_send_cmd_async(priv,
634 HostCmd_CMD_UAP_SYS_CONFIG,
635 HostCmd_ACT_GEN_SET,
Avinash Patile76268d2012-05-08 18:30:27 -0700636 UAP_BSS_PARAMS_I, bss_cfg);
Avinash Patil9b930ea2012-05-08 18:30:23 -0700637
638 kfree(bss_cfg);
639
640 if (ret) {
641 wiphy_err(wiphy, "Failed to set bss config\n");
642 return ret;
643 }
644
645 if (!bss_started)
646 break;
647
648 ret = mwifiex_send_cmd_async(priv,
649 HostCmd_CMD_UAP_BSS_START,
650 HostCmd_ACT_GEN_SET, 0,
651 NULL);
652 if (ret) {
653 wiphy_err(wiphy, "Failed to start BSS\n");
654 return ret;
655 }
656
657 break;
658 case MWIFIEX_BSS_ROLE_STA:
659 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
660 ret = mwifiex_set_rts(priv,
661 wiphy->rts_threshold);
662 if (ret)
663 return ret;
664 }
665 if (changed & WIPHY_PARAM_FRAG_THRESHOLD) {
666 ret = mwifiex_set_frag(priv,
667 wiphy->frag_threshold);
668 if (ret)
669 return ret;
670 }
671 break;
672 }
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700673 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700674
Avinash Patil9b930ea2012-05-08 18:30:23 -0700675 return 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700676}
677
Stone Piaoe1a2b7a2012-09-25 20:23:41 -0700678static int
679mwifiex_cfg80211_deinit_p2p(struct mwifiex_private *priv)
680{
681 u16 mode = P2P_MODE_DISABLE;
682
Stone Piao9197ab92012-09-25 20:23:42 -0700683 if (GET_BSS_ROLE(priv) != MWIFIEX_BSS_ROLE_STA)
684 mwifiex_set_bss_role(priv, MWIFIEX_BSS_ROLE_STA);
685
Stone Piaoe1a2b7a2012-09-25 20:23:41 -0700686 if (mwifiex_send_cmd_sync(priv, HostCmd_CMD_P2P_MODE_CFG,
687 HostCmd_ACT_GEN_SET, 0, &mode))
688 return -1;
689
690 return 0;
691}
692
693/*
694 * This function initializes the functionalities for P2P client.
695 * The P2P client initialization sequence is:
696 * disable -> device -> client
697 */
698static int
699mwifiex_cfg80211_init_p2p_client(struct mwifiex_private *priv)
700{
701 u16 mode;
702
703 if (mwifiex_cfg80211_deinit_p2p(priv))
704 return -1;
705
706 mode = P2P_MODE_DEVICE;
707 if (mwifiex_send_cmd_sync(priv, HostCmd_CMD_P2P_MODE_CFG,
708 HostCmd_ACT_GEN_SET, 0, &mode))
709 return -1;
710
711 mode = P2P_MODE_CLIENT;
712 if (mwifiex_send_cmd_sync(priv, HostCmd_CMD_P2P_MODE_CFG,
713 HostCmd_ACT_GEN_SET, 0, &mode))
714 return -1;
715
716 return 0;
717}
718
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700719/*
Stone Piao9197ab92012-09-25 20:23:42 -0700720 * This function initializes the functionalities for P2P GO.
721 * The P2P GO initialization sequence is:
722 * disable -> device -> GO
723 */
724static int
725mwifiex_cfg80211_init_p2p_go(struct mwifiex_private *priv)
726{
727 u16 mode;
728
729 if (mwifiex_cfg80211_deinit_p2p(priv))
730 return -1;
731
732 mode = P2P_MODE_DEVICE;
733 if (mwifiex_send_cmd_sync(priv, HostCmd_CMD_P2P_MODE_CFG,
734 HostCmd_ACT_GEN_SET, 0, &mode))
735 return -1;
736
737 mode = P2P_MODE_GO;
738 if (mwifiex_send_cmd_sync(priv, HostCmd_CMD_P2P_MODE_CFG,
739 HostCmd_ACT_GEN_SET, 0, &mode))
740 return -1;
741
742 if (GET_BSS_ROLE(priv) != MWIFIEX_BSS_ROLE_UAP)
743 mwifiex_set_bss_role(priv, MWIFIEX_BSS_ROLE_UAP);
744
745 return 0;
746}
747
748/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700749 * CFG802.11 operation handler to change interface type.
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700750 */
751static int
752mwifiex_cfg80211_change_virtual_intf(struct wiphy *wiphy,
753 struct net_device *dev,
754 enum nl80211_iftype type, u32 *flags,
755 struct vif_params *params)
756{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700757 int ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700758 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Bing Zhaoeecd8252011-03-28 17:55:41 -0700759
Avinash Patil4f023412012-05-08 18:30:22 -0700760 switch (dev->ieee80211_ptr->iftype) {
Bing Zhaoeecd8252011-03-28 17:55:41 -0700761 case NL80211_IFTYPE_ADHOC:
Avinash Patil4f023412012-05-08 18:30:22 -0700762 switch (type) {
763 case NL80211_IFTYPE_STATION:
764 break;
765 case NL80211_IFTYPE_UNSPECIFIED:
766 wiphy_warn(wiphy, "%s: kept type as IBSS\n", dev->name);
767 case NL80211_IFTYPE_ADHOC: /* This shouldn't happen */
768 return 0;
769 case NL80211_IFTYPE_AP:
770 default:
771 wiphy_err(wiphy, "%s: changing to %d not supported\n",
772 dev->name, type);
773 return -EOPNOTSUPP;
774 }
Bing Zhaoeecd8252011-03-28 17:55:41 -0700775 break;
776 case NL80211_IFTYPE_STATION:
Avinash Patil4f023412012-05-08 18:30:22 -0700777 switch (type) {
778 case NL80211_IFTYPE_ADHOC:
779 break;
Stone Piaoe1a2b7a2012-09-25 20:23:41 -0700780 case NL80211_IFTYPE_P2P_CLIENT:
781 if (mwifiex_cfg80211_init_p2p_client(priv))
782 return -EFAULT;
783 dev->ieee80211_ptr->iftype = type;
784 return 0;
Stone Piao9197ab92012-09-25 20:23:42 -0700785 case NL80211_IFTYPE_P2P_GO:
786 if (mwifiex_cfg80211_init_p2p_go(priv))
787 return -EFAULT;
788 dev->ieee80211_ptr->iftype = type;
789 return 0;
Avinash Patil4f023412012-05-08 18:30:22 -0700790 case NL80211_IFTYPE_UNSPECIFIED:
791 wiphy_warn(wiphy, "%s: kept type as STA\n", dev->name);
792 case NL80211_IFTYPE_STATION: /* This shouldn't happen */
793 return 0;
794 case NL80211_IFTYPE_AP:
795 default:
796 wiphy_err(wiphy, "%s: changing to %d not supported\n",
797 dev->name, type);
798 return -EOPNOTSUPP;
799 }
Bing Zhaoeecd8252011-03-28 17:55:41 -0700800 break;
Avinash Patil4f023412012-05-08 18:30:22 -0700801 case NL80211_IFTYPE_AP:
802 switch (type) {
803 case NL80211_IFTYPE_UNSPECIFIED:
804 wiphy_warn(wiphy, "%s: kept type as AP\n", dev->name);
805 case NL80211_IFTYPE_AP: /* This shouldn't happen */
806 return 0;
807 case NL80211_IFTYPE_ADHOC:
808 case NL80211_IFTYPE_STATION:
809 default:
810 wiphy_err(wiphy, "%s: changing to %d not supported\n",
811 dev->name, type);
812 return -EOPNOTSUPP;
813 }
814 break;
Stone Piaoe1a2b7a2012-09-25 20:23:41 -0700815 case NL80211_IFTYPE_P2P_CLIENT:
Stone Piao9197ab92012-09-25 20:23:42 -0700816 case NL80211_IFTYPE_P2P_GO:
Stone Piaoe1a2b7a2012-09-25 20:23:41 -0700817 switch (type) {
818 case NL80211_IFTYPE_STATION:
819 if (mwifiex_cfg80211_deinit_p2p(priv))
820 return -EFAULT;
821 dev->ieee80211_ptr->iftype = type;
822 return 0;
823 default:
824 return -EOPNOTSUPP;
825 }
826 break;
Bing Zhaoeecd8252011-03-28 17:55:41 -0700827 default:
Avinash Patil4f023412012-05-08 18:30:22 -0700828 wiphy_err(wiphy, "%s: unknown iftype: %d\n",
829 dev->name, dev->ieee80211_ptr->iftype);
830 return -EOPNOTSUPP;
Bing Zhaoeecd8252011-03-28 17:55:41 -0700831 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700832
Avinash Patil4f023412012-05-08 18:30:22 -0700833 dev->ieee80211_ptr->iftype = type;
834 priv->bss_mode = type;
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700835 mwifiex_deauthenticate(priv, NULL);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700836
Marc Yangf986b6d2011-03-28 17:55:42 -0700837 priv->sec_info.authentication_mode = NL80211_AUTHTYPE_OPEN_SYSTEM;
Bing Zhaoeecd8252011-03-28 17:55:41 -0700838
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700839 ret = mwifiex_send_cmd_sync(priv, HostCmd_CMD_SET_BSS_MODE,
840 HostCmd_ACT_GEN_SET, 0, NULL);
Bing Zhaoeecd8252011-03-28 17:55:41 -0700841
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700842 return ret;
843}
844
845/*
846 * This function dumps the station information on a buffer.
847 *
848 * The following information are shown -
849 * - Total bytes transmitted
850 * - Total bytes received
851 * - Total packets transmitted
852 * - Total packets received
853 * - Signal quality level
854 * - Transmission rate
855 */
856static int
857mwifiex_dump_station_info(struct mwifiex_private *priv,
858 struct station_info *sinfo)
859{
Amitkumar Karwar006606c2012-07-13 20:09:31 -0700860 u32 rate;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700861
862 sinfo->filled = STATION_INFO_RX_BYTES | STATION_INFO_TX_BYTES |
Amitkumar Karwar7013d3e2012-03-15 20:51:50 -0700863 STATION_INFO_RX_PACKETS | STATION_INFO_TX_PACKETS |
864 STATION_INFO_TX_BITRATE |
865 STATION_INFO_SIGNAL | STATION_INFO_SIGNAL_AVG;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700866
867 /* Get signal information from the firmware */
Amitkumar Karwar958a4a82012-03-15 20:51:49 -0700868 if (mwifiex_send_cmd_sync(priv, HostCmd_CMD_RSSI_INFO,
869 HostCmd_ACT_GEN_GET, 0, NULL)) {
870 dev_err(priv->adapter->dev, "failed to get signal information\n");
871 return -EFAULT;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700872 }
873
874 if (mwifiex_drv_get_data_rate(priv, &rate)) {
875 dev_err(priv->adapter->dev, "getting data rate\n");
Amitkumar Karwar958a4a82012-03-15 20:51:49 -0700876 return -EFAULT;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700877 }
878
Amitkumar Karwarcaf60a62012-02-02 20:48:58 -0800879 /* Get DTIM period information from firmware */
880 mwifiex_send_cmd_sync(priv, HostCmd_CMD_802_11_SNMP_MIB,
881 HostCmd_ACT_GEN_GET, DTIM_PERIOD_I,
882 &priv->dtim_period);
883
Amitkumar Karwar4ec6f9c2011-09-26 20:37:25 -0700884 /*
885 * Bit 0 in tx_htinfo indicates that current Tx rate is 11n rate. Valid
Amitkumar Karwarfe020122012-07-11 18:12:57 -0700886 * MCS index values for us are 0 to 15.
Amitkumar Karwar4ec6f9c2011-09-26 20:37:25 -0700887 */
Amitkumar Karwarfe020122012-07-11 18:12:57 -0700888 if ((priv->tx_htinfo & BIT(0)) && (priv->tx_rate < 16)) {
Amitkumar Karwar4ec6f9c2011-09-26 20:37:25 -0700889 sinfo->txrate.mcs = priv->tx_rate;
890 sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS;
891 /* 40MHz rate */
892 if (priv->tx_htinfo & BIT(1))
893 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
894 /* SGI enabled */
895 if (priv->tx_htinfo & BIT(2))
896 sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
897 }
898
Amitkumar Karwar7013d3e2012-03-15 20:51:50 -0700899 sinfo->signal_avg = priv->bcn_rssi_avg;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700900 sinfo->rx_bytes = priv->stats.rx_bytes;
901 sinfo->tx_bytes = priv->stats.tx_bytes;
902 sinfo->rx_packets = priv->stats.rx_packets;
903 sinfo->tx_packets = priv->stats.tx_packets;
Amitkumar Karwar958a4a82012-03-15 20:51:49 -0700904 sinfo->signal = priv->bcn_rssi_avg;
Amitkumar Karwar4ec6f9c2011-09-26 20:37:25 -0700905 /* bit rate is in 500 kb/s units. Convert it to 100kb/s units */
Amitkumar Karwar006606c2012-07-13 20:09:31 -0700906 sinfo->txrate.legacy = rate * 5;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700907
Amitkumar Karwarc4f3b972012-01-24 20:50:25 -0800908 if (priv->bss_mode == NL80211_IFTYPE_STATION) {
909 sinfo->filled |= STATION_INFO_BSS_PARAM;
910 sinfo->bss_param.flags = 0;
911 if (priv->curr_bss_params.bss_descriptor.cap_info_bitmap &
912 WLAN_CAPABILITY_SHORT_PREAMBLE)
913 sinfo->bss_param.flags |=
914 BSS_PARAM_FLAGS_SHORT_PREAMBLE;
915 if (priv->curr_bss_params.bss_descriptor.cap_info_bitmap &
916 WLAN_CAPABILITY_SHORT_SLOT_TIME)
917 sinfo->bss_param.flags |=
918 BSS_PARAM_FLAGS_SHORT_SLOT_TIME;
Amitkumar Karwarcaf60a62012-02-02 20:48:58 -0800919 sinfo->bss_param.dtim_period = priv->dtim_period;
Amitkumar Karwarc4f3b972012-01-24 20:50:25 -0800920 sinfo->bss_param.beacon_interval =
921 priv->curr_bss_params.bss_descriptor.beacon_period;
922 }
923
Amitkumar Karwar958a4a82012-03-15 20:51:49 -0700924 return 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700925}
926
927/*
928 * CFG802.11 operation handler to get station information.
929 *
930 * This function only works in connected mode, and dumps the
931 * requested station information, if available.
932 */
933static int
934mwifiex_cfg80211_get_station(struct wiphy *wiphy, struct net_device *dev,
935 u8 *mac, struct station_info *sinfo)
936{
937 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700938
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700939 if (!priv->media_connected)
940 return -ENOENT;
941 if (memcmp(mac, priv->cfg_bssid, ETH_ALEN))
942 return -ENOENT;
943
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700944 return mwifiex_dump_station_info(priv, sinfo);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700945}
946
Amitkumar Karwarf85aae62012-03-15 20:51:48 -0700947/*
948 * CFG802.11 operation handler to dump station information.
949 */
950static int
951mwifiex_cfg80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
952 int idx, u8 *mac, struct station_info *sinfo)
953{
954 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
955
956 if (!priv->media_connected || idx)
957 return -ENOENT;
958
959 memcpy(mac, priv->cfg_bssid, ETH_ALEN);
960
961 return mwifiex_dump_station_info(priv, sinfo);
962}
963
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700964/* Supported rates to be advertised to the cfg80211 */
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700965static struct ieee80211_rate mwifiex_rates[] = {
966 {.bitrate = 10, .hw_value = 2, },
967 {.bitrate = 20, .hw_value = 4, },
968 {.bitrate = 55, .hw_value = 11, },
969 {.bitrate = 110, .hw_value = 22, },
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700970 {.bitrate = 60, .hw_value = 12, },
971 {.bitrate = 90, .hw_value = 18, },
972 {.bitrate = 120, .hw_value = 24, },
973 {.bitrate = 180, .hw_value = 36, },
974 {.bitrate = 240, .hw_value = 48, },
975 {.bitrate = 360, .hw_value = 72, },
976 {.bitrate = 480, .hw_value = 96, },
977 {.bitrate = 540, .hw_value = 108, },
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700978};
979
980/* Channel definitions to be advertised to cfg80211 */
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700981static struct ieee80211_channel mwifiex_channels_2ghz[] = {
982 {.center_freq = 2412, .hw_value = 1, },
983 {.center_freq = 2417, .hw_value = 2, },
984 {.center_freq = 2422, .hw_value = 3, },
985 {.center_freq = 2427, .hw_value = 4, },
986 {.center_freq = 2432, .hw_value = 5, },
987 {.center_freq = 2437, .hw_value = 6, },
988 {.center_freq = 2442, .hw_value = 7, },
989 {.center_freq = 2447, .hw_value = 8, },
990 {.center_freq = 2452, .hw_value = 9, },
991 {.center_freq = 2457, .hw_value = 10, },
992 {.center_freq = 2462, .hw_value = 11, },
993 {.center_freq = 2467, .hw_value = 12, },
994 {.center_freq = 2472, .hw_value = 13, },
995 {.center_freq = 2484, .hw_value = 14, },
996};
997
998static struct ieee80211_supported_band mwifiex_band_2ghz = {
999 .channels = mwifiex_channels_2ghz,
1000 .n_channels = ARRAY_SIZE(mwifiex_channels_2ghz),
1001 .bitrates = mwifiex_rates,
Amitkumar Karwar87638482012-03-07 19:36:07 -08001002 .n_bitrates = ARRAY_SIZE(mwifiex_rates),
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001003};
1004
1005static struct ieee80211_channel mwifiex_channels_5ghz[] = {
1006 {.center_freq = 5040, .hw_value = 8, },
1007 {.center_freq = 5060, .hw_value = 12, },
1008 {.center_freq = 5080, .hw_value = 16, },
1009 {.center_freq = 5170, .hw_value = 34, },
1010 {.center_freq = 5190, .hw_value = 38, },
1011 {.center_freq = 5210, .hw_value = 42, },
1012 {.center_freq = 5230, .hw_value = 46, },
1013 {.center_freq = 5180, .hw_value = 36, },
1014 {.center_freq = 5200, .hw_value = 40, },
1015 {.center_freq = 5220, .hw_value = 44, },
1016 {.center_freq = 5240, .hw_value = 48, },
1017 {.center_freq = 5260, .hw_value = 52, },
1018 {.center_freq = 5280, .hw_value = 56, },
1019 {.center_freq = 5300, .hw_value = 60, },
1020 {.center_freq = 5320, .hw_value = 64, },
1021 {.center_freq = 5500, .hw_value = 100, },
1022 {.center_freq = 5520, .hw_value = 104, },
1023 {.center_freq = 5540, .hw_value = 108, },
1024 {.center_freq = 5560, .hw_value = 112, },
1025 {.center_freq = 5580, .hw_value = 116, },
1026 {.center_freq = 5600, .hw_value = 120, },
1027 {.center_freq = 5620, .hw_value = 124, },
1028 {.center_freq = 5640, .hw_value = 128, },
1029 {.center_freq = 5660, .hw_value = 132, },
1030 {.center_freq = 5680, .hw_value = 136, },
1031 {.center_freq = 5700, .hw_value = 140, },
1032 {.center_freq = 5745, .hw_value = 149, },
1033 {.center_freq = 5765, .hw_value = 153, },
1034 {.center_freq = 5785, .hw_value = 157, },
1035 {.center_freq = 5805, .hw_value = 161, },
1036 {.center_freq = 5825, .hw_value = 165, },
1037};
1038
1039static struct ieee80211_supported_band mwifiex_band_5ghz = {
1040 .channels = mwifiex_channels_5ghz,
1041 .n_channels = ARRAY_SIZE(mwifiex_channels_5ghz),
Avinash Patileb416ad2012-02-27 22:04:11 -08001042 .bitrates = mwifiex_rates + 4,
1043 .n_bitrates = ARRAY_SIZE(mwifiex_rates) - 4,
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001044};
1045
1046
1047/* Supported crypto cipher suits to be advertised to cfg80211 */
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001048static const u32 mwifiex_cipher_suites[] = {
1049 WLAN_CIPHER_SUITE_WEP40,
1050 WLAN_CIPHER_SUITE_WEP104,
1051 WLAN_CIPHER_SUITE_TKIP,
1052 WLAN_CIPHER_SUITE_CCMP,
Ying Luo53b11232012-08-03 18:06:13 -07001053 WLAN_CIPHER_SUITE_AES_CMAC,
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001054};
1055
Stone Piao83719be2012-09-25 20:23:33 -07001056/* Supported mgmt frame types to be advertised to cfg80211 */
1057static const struct ieee80211_txrx_stypes
1058mwifiex_mgmt_stypes[NUM_NL80211_IFTYPES] = {
1059 [NL80211_IFTYPE_STATION] = {
1060 .tx = BIT(IEEE80211_STYPE_ACTION >> 4) |
1061 BIT(IEEE80211_STYPE_PROBE_RESP >> 4),
1062 .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
1063 BIT(IEEE80211_STYPE_PROBE_REQ >> 4),
1064 },
1065 [NL80211_IFTYPE_AP] = {
1066 .tx = BIT(IEEE80211_STYPE_ACTION >> 4) |
1067 BIT(IEEE80211_STYPE_PROBE_RESP >> 4),
1068 .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
1069 BIT(IEEE80211_STYPE_PROBE_REQ >> 4),
1070 },
1071 [NL80211_IFTYPE_P2P_CLIENT] = {
1072 .tx = BIT(IEEE80211_STYPE_ACTION >> 4) |
1073 BIT(IEEE80211_STYPE_PROBE_RESP >> 4),
1074 .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
1075 BIT(IEEE80211_STYPE_PROBE_REQ >> 4),
1076 },
1077 [NL80211_IFTYPE_P2P_GO] = {
1078 .tx = BIT(IEEE80211_STYPE_ACTION >> 4) |
1079 BIT(IEEE80211_STYPE_PROBE_RESP >> 4),
1080 .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
1081 BIT(IEEE80211_STYPE_PROBE_REQ >> 4),
1082 },
1083};
1084
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001085/*
Yogesh Ashok Powar5d82c532011-07-11 20:04:44 -07001086 * CFG802.11 operation handler for setting bit rates.
1087 *
Amitkumar Karwar433c3992012-07-13 20:09:33 -07001088 * Function configures data rates to firmware using bitrate mask
1089 * provided by cfg80211.
Yogesh Ashok Powar5d82c532011-07-11 20:04:44 -07001090 */
1091static int mwifiex_cfg80211_set_bitrate_mask(struct wiphy *wiphy,
1092 struct net_device *dev,
1093 const u8 *peer,
1094 const struct cfg80211_bitrate_mask *mask)
1095{
Yogesh Ashok Powar5d82c532011-07-11 20:04:44 -07001096 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Amitkumar Karwar433c3992012-07-13 20:09:33 -07001097 u16 bitmap_rates[MAX_BITMAP_RATES_SIZE];
1098 enum ieee80211_band band;
Yogesh Ashok Powar5d82c532011-07-11 20:04:44 -07001099
Amitkumar Karwar433c3992012-07-13 20:09:33 -07001100 if (!priv->media_connected) {
1101 dev_err(priv->adapter->dev,
1102 "Can not set Tx data rate in disconnected state\n");
1103 return -EINVAL;
Yogesh Ashok Powar5d82c532011-07-11 20:04:44 -07001104 }
1105
Amitkumar Karwar433c3992012-07-13 20:09:33 -07001106 band = mwifiex_band_to_radio_type(priv->curr_bss_params.band);
Yogesh Ashok Powar5d82c532011-07-11 20:04:44 -07001107
Amitkumar Karwar433c3992012-07-13 20:09:33 -07001108 memset(bitmap_rates, 0, sizeof(bitmap_rates));
Yogesh Ashok Powar5d82c532011-07-11 20:04:44 -07001109
Amitkumar Karwar433c3992012-07-13 20:09:33 -07001110 /* Fill HR/DSSS rates. */
1111 if (band == IEEE80211_BAND_2GHZ)
1112 bitmap_rates[0] = mask->control[band].legacy & 0x000f;
Yogesh Ashok Powar5d82c532011-07-11 20:04:44 -07001113
Amitkumar Karwar433c3992012-07-13 20:09:33 -07001114 /* Fill OFDM rates */
1115 if (band == IEEE80211_BAND_2GHZ)
1116 bitmap_rates[1] = (mask->control[band].legacy & 0x0ff0) >> 4;
1117 else
1118 bitmap_rates[1] = mask->control[band].legacy;
1119
1120 /* Fill MCS rates */
1121 bitmap_rates[2] = mask->control[band].mcs[0];
1122 if (priv->adapter->hw_dev_mcs_support == HT_STREAM_2X2)
1123 bitmap_rates[2] |= mask->control[band].mcs[1] << 8;
1124
1125 return mwifiex_send_cmd_sync(priv, HostCmd_CMD_TX_RATE_CFG,
1126 HostCmd_ACT_GEN_SET, 0, bitmap_rates);
Yogesh Ashok Powar5d82c532011-07-11 20:04:44 -07001127}
1128
1129/*
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001130 * CFG802.11 operation handler for connection quality monitoring.
1131 *
1132 * This function subscribes/unsubscribes HIGH_RSSI and LOW_RSSI
1133 * events to FW.
1134 */
1135static int mwifiex_cfg80211_set_cqm_rssi_config(struct wiphy *wiphy,
1136 struct net_device *dev,
1137 s32 rssi_thold, u32 rssi_hyst)
1138{
1139 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
1140 struct mwifiex_ds_misc_subsc_evt subsc_evt;
1141
1142 priv->cqm_rssi_thold = rssi_thold;
1143 priv->cqm_rssi_hyst = rssi_hyst;
1144
1145 memset(&subsc_evt, 0x00, sizeof(struct mwifiex_ds_misc_subsc_evt));
1146 subsc_evt.events = BITMASK_BCN_RSSI_LOW | BITMASK_BCN_RSSI_HIGH;
1147
1148 /* Subscribe/unsubscribe low and high rssi events */
1149 if (rssi_thold && rssi_hyst) {
1150 subsc_evt.action = HostCmd_ACT_BITWISE_SET;
1151 subsc_evt.bcn_l_rssi_cfg.abs_value = abs(rssi_thold);
1152 subsc_evt.bcn_h_rssi_cfg.abs_value = abs(rssi_thold);
1153 subsc_evt.bcn_l_rssi_cfg.evt_freq = 1;
1154 subsc_evt.bcn_h_rssi_cfg.evt_freq = 1;
1155 return mwifiex_send_cmd_sync(priv,
1156 HostCmd_CMD_802_11_SUBSCRIBE_EVENT,
1157 0, 0, &subsc_evt);
1158 } else {
1159 subsc_evt.action = HostCmd_ACT_BITWISE_CLR;
1160 return mwifiex_send_cmd_sync(priv,
1161 HostCmd_CMD_802_11_SUBSCRIBE_EVENT,
1162 0, 0, &subsc_evt);
1163 }
1164
1165 return 0;
1166}
1167
Avinash Patil5370c832012-06-28 20:30:28 -07001168/* cfg80211 operation handler for change_beacon.
1169 * Function retrieves and sets modified management IEs to FW.
1170 */
1171static int mwifiex_cfg80211_change_beacon(struct wiphy *wiphy,
1172 struct net_device *dev,
1173 struct cfg80211_beacon_data *data)
1174{
1175 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
1176
Stone Piao9197ab92012-09-25 20:23:42 -07001177 if (GET_BSS_ROLE(priv) != MWIFIEX_BSS_ROLE_UAP) {
Avinash Patil5370c832012-06-28 20:30:28 -07001178 wiphy_err(wiphy, "%s: bss_type mismatched\n", __func__);
1179 return -EINVAL;
1180 }
1181
1182 if (!priv->bss_started) {
1183 wiphy_err(wiphy, "%s: bss not started\n", __func__);
1184 return -EINVAL;
1185 }
1186
1187 if (mwifiex_set_mgmt_ies(priv, data)) {
1188 wiphy_err(wiphy, "%s: setting mgmt ies failed\n", __func__);
1189 return -EFAULT;
1190 }
1191
1192 return 0;
1193}
1194
Amitkumar Karwar8a279d52012-07-02 19:32:33 -07001195static int
1196mwifiex_cfg80211_set_antenna(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant)
1197{
1198 struct mwifiex_adapter *adapter = mwifiex_cfg80211_get_adapter(wiphy);
1199 struct mwifiex_private *priv = mwifiex_get_priv(adapter,
1200 MWIFIEX_BSS_ROLE_ANY);
1201 struct mwifiex_ds_ant_cfg ant_cfg;
1202
1203 if (!tx_ant || !rx_ant)
1204 return -EOPNOTSUPP;
1205
1206 if (adapter->hw_dev_mcs_support != HT_STREAM_2X2) {
1207 /* Not a MIMO chip. User should provide specific antenna number
1208 * for Tx/Rx path or enable all antennas for diversity
1209 */
1210 if (tx_ant != rx_ant)
1211 return -EOPNOTSUPP;
1212
1213 if ((tx_ant & (tx_ant - 1)) &&
1214 (tx_ant != BIT(adapter->number_of_antenna) - 1))
1215 return -EOPNOTSUPP;
1216
1217 if ((tx_ant == BIT(adapter->number_of_antenna) - 1) &&
1218 (priv->adapter->number_of_antenna > 1)) {
1219 tx_ant = RF_ANTENNA_AUTO;
1220 rx_ant = RF_ANTENNA_AUTO;
1221 }
1222 }
1223
1224 ant_cfg.tx_ant = tx_ant;
1225 ant_cfg.rx_ant = rx_ant;
1226
1227 return mwifiex_send_cmd_sync(priv, HostCmd_CMD_RF_ANTENNA,
1228 HostCmd_ACT_GEN_SET, 0, &ant_cfg);
1229}
1230
Avinash Patil12190c52012-05-08 18:30:24 -07001231/* cfg80211 operation handler for stop ap.
1232 * Function stops BSS running at uAP interface.
1233 */
1234static int mwifiex_cfg80211_stop_ap(struct wiphy *wiphy, struct net_device *dev)
1235{
1236 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
1237
Avinash Patil40bbc212012-05-08 18:30:30 -07001238 if (mwifiex_del_mgmt_ies(priv))
1239 wiphy_err(wiphy, "Failed to delete mgmt IEs!\n");
1240
Avinash Patilc8258912012-08-03 18:06:05 -07001241 priv->ap_11n_enabled = 0;
1242
Avinash Patil12190c52012-05-08 18:30:24 -07001243 if (mwifiex_send_cmd_sync(priv, HostCmd_CMD_UAP_BSS_STOP,
1244 HostCmd_ACT_GEN_SET, 0, NULL)) {
1245 wiphy_err(wiphy, "Failed to stop the BSS\n");
1246 return -1;
1247 }
1248
1249 return 0;
1250}
1251
1252/* cfg80211 operation handler for start_ap.
1253 * Function sets beacon period, DTIM period, SSID and security into
1254 * AP config structure.
1255 * AP is configured with these settings and BSS is started.
1256 */
1257static int mwifiex_cfg80211_start_ap(struct wiphy *wiphy,
1258 struct net_device *dev,
1259 struct cfg80211_ap_settings *params)
1260{
1261 struct mwifiex_uap_bss_param *bss_cfg;
1262 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Amitkumar Karwar05910f42012-07-13 20:09:32 -07001263 u8 config_bands = 0;
Avinash Patil12190c52012-05-08 18:30:24 -07001264
Stone Piao9197ab92012-09-25 20:23:42 -07001265 if (GET_BSS_ROLE(priv) != MWIFIEX_BSS_ROLE_UAP)
Avinash Patilf752dcd2012-05-08 18:30:26 -07001266 return -1;
Avinash Patiladb6ed02012-06-28 20:30:25 -07001267 if (mwifiex_set_mgmt_ies(priv, &params->beacon))
Avinash Patilf31acab2012-05-08 18:30:29 -07001268 return -1;
Avinash Patilf752dcd2012-05-08 18:30:26 -07001269
Avinash Patil12190c52012-05-08 18:30:24 -07001270 bss_cfg = kzalloc(sizeof(struct mwifiex_uap_bss_param), GFP_KERNEL);
1271 if (!bss_cfg)
1272 return -ENOMEM;
1273
1274 mwifiex_set_sys_config_invalid_data(bss_cfg);
1275
1276 if (params->beacon_interval)
1277 bss_cfg->beacon_period = params->beacon_interval;
1278 if (params->dtim_period)
1279 bss_cfg->dtim_period = params->dtim_period;
1280
1281 if (params->ssid && params->ssid_len) {
1282 memcpy(bss_cfg->ssid.ssid, params->ssid, params->ssid_len);
1283 bss_cfg->ssid.ssid_len = params->ssid_len;
1284 }
1285
Avinash Patil7a1c9932012-05-29 15:39:05 -07001286 switch (params->hidden_ssid) {
1287 case NL80211_HIDDEN_SSID_NOT_IN_USE:
1288 bss_cfg->bcast_ssid_ctl = 1;
1289 break;
1290 case NL80211_HIDDEN_SSID_ZERO_LEN:
1291 bss_cfg->bcast_ssid_ctl = 0;
1292 break;
1293 case NL80211_HIDDEN_SSID_ZERO_CONTENTS:
1294 /* firmware doesn't support this type of hidden SSID */
1295 default:
Bing Zhaob3190462012-07-03 15:53:13 -07001296 kfree(bss_cfg);
Avinash Patil7a1c9932012-05-29 15:39:05 -07001297 return -EINVAL;
1298 }
1299
Avinash Patil0abd79e2012-06-15 12:21:51 -07001300 bss_cfg->channel =
1301 (u8)ieee80211_frequency_to_channel(params->channel->center_freq);
Avinash Patil0abd79e2012-06-15 12:21:51 -07001302
Amitkumar Karwar05910f42012-07-13 20:09:32 -07001303 /* Set appropriate bands */
1304 if (params->channel->band == IEEE80211_BAND_2GHZ) {
Avinash Patila3c2c4f2012-08-27 20:32:53 -07001305 bss_cfg->band_cfg = BAND_CONFIG_BG;
1306
Amitkumar Karwar05910f42012-07-13 20:09:32 -07001307 if (params->channel_type == NL80211_CHAN_NO_HT)
1308 config_bands = BAND_B | BAND_G;
1309 else
1310 config_bands = BAND_B | BAND_G | BAND_GN;
1311 } else {
Avinash Patila3c2c4f2012-08-27 20:32:53 -07001312 bss_cfg->band_cfg = BAND_CONFIG_A;
1313
Amitkumar Karwar05910f42012-07-13 20:09:32 -07001314 if (params->channel_type == NL80211_CHAN_NO_HT)
1315 config_bands = BAND_A;
1316 else
1317 config_bands = BAND_AN | BAND_A;
Avinash Patil0abd79e2012-06-15 12:21:51 -07001318 }
1319
Amitkumar Karwar05910f42012-07-13 20:09:32 -07001320 if (!((config_bands | priv->adapter->fw_bands) &
1321 ~priv->adapter->fw_bands))
1322 priv->adapter->config_bands = config_bands;
1323
Avinash Patila3c2c4f2012-08-27 20:32:53 -07001324 mwifiex_set_uap_rates(bss_cfg, params);
Amitkumar Karwar05910f42012-07-13 20:09:32 -07001325 mwifiex_send_domain_info_cmd_fw(wiphy);
1326
Avinash Patilf752dcd2012-05-08 18:30:26 -07001327 if (mwifiex_set_secure_params(priv, bss_cfg, params)) {
1328 kfree(bss_cfg);
1329 wiphy_err(wiphy, "Failed to parse secuirty parameters!\n");
1330 return -1;
1331 }
1332
Avinash Patil22281252012-06-15 12:21:53 -07001333 mwifiex_set_ht_params(priv, bss_cfg, params);
1334
Kevin Gan8b4509f2012-09-25 20:23:45 -07001335 if (params->inactivity_timeout > 0) {
1336 /* sta_ao_timer/ps_sta_ao_timer is in unit of 100ms */
1337 bss_cfg->sta_ao_timer = 10 * params->inactivity_timeout;
1338 bss_cfg->ps_sta_ao_timer = 10 * params->inactivity_timeout;
1339 }
1340
Avinash Patil12190c52012-05-08 18:30:24 -07001341 if (mwifiex_send_cmd_sync(priv, HostCmd_CMD_UAP_BSS_STOP,
1342 HostCmd_ACT_GEN_SET, 0, NULL)) {
1343 wiphy_err(wiphy, "Failed to stop the BSS\n");
1344 kfree(bss_cfg);
1345 return -1;
1346 }
1347
1348 if (mwifiex_send_cmd_async(priv, HostCmd_CMD_UAP_SYS_CONFIG,
Avinash Patile76268d2012-05-08 18:30:27 -07001349 HostCmd_ACT_GEN_SET,
1350 UAP_BSS_PARAMS_I, bss_cfg)) {
Avinash Patil12190c52012-05-08 18:30:24 -07001351 wiphy_err(wiphy, "Failed to set the SSID\n");
1352 kfree(bss_cfg);
1353 return -1;
1354 }
1355
1356 kfree(bss_cfg);
1357
1358 if (mwifiex_send_cmd_async(priv, HostCmd_CMD_UAP_BSS_START,
1359 HostCmd_ACT_GEN_SET, 0, NULL)) {
1360 wiphy_err(wiphy, "Failed to start the BSS\n");
1361 return -1;
1362 }
1363
Avinash Patil96893532012-06-15 12:21:55 -07001364 if (priv->sec_info.wep_enabled)
1365 priv->curr_pkt_filter |= HostCmd_ACT_MAC_WEP_ENABLE;
1366 else
1367 priv->curr_pkt_filter &= ~HostCmd_ACT_MAC_WEP_ENABLE;
1368
1369 if (mwifiex_send_cmd_sync(priv, HostCmd_CMD_MAC_CONTROL,
1370 HostCmd_ACT_GEN_SET, 0,
1371 &priv->curr_pkt_filter))
1372 return -1;
1373
Avinash Patil12190c52012-05-08 18:30:24 -07001374 return 0;
1375}
1376
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001377/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001378 * CFG802.11 operation handler for disconnection request.
1379 *
1380 * This function does not work when there is already a disconnection
1381 * procedure going on.
1382 */
1383static int
1384mwifiex_cfg80211_disconnect(struct wiphy *wiphy, struct net_device *dev,
1385 u16 reason_code)
1386{
1387 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
1388
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001389 if (mwifiex_deauthenticate(priv, NULL))
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001390 return -EFAULT;
1391
1392 wiphy_dbg(wiphy, "info: successfully disconnected from %pM:"
1393 " reason code %d\n", priv->cfg_bssid, reason_code);
1394
Amitkumar Karwar38c9d662011-12-13 20:43:17 -08001395 memset(priv->cfg_bssid, 0, ETH_ALEN);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001396
1397 return 0;
1398}
1399
1400/*
1401 * This function informs the CFG802.11 subsystem of a new IBSS.
1402 *
1403 * The following information are sent to the CFG802.11 subsystem
1404 * to register the new IBSS. If we do not register the new IBSS,
1405 * a kernel panic will result.
1406 * - SSID
1407 * - SSID length
1408 * - BSSID
1409 * - Channel
1410 */
1411static int mwifiex_cfg80211_inform_ibss_bss(struct mwifiex_private *priv)
1412{
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001413 struct ieee80211_channel *chan;
1414 struct mwifiex_bss_info bss_info;
Amitkumar Karwaraa95a482011-11-07 21:41:12 -08001415 struct cfg80211_bss *bss;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -07001416 int ie_len;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001417 u8 ie_buf[IEEE80211_MAX_SSID_LEN + sizeof(struct ieee_types_header)];
Amitkumar Karwar4ed5d522011-09-21 21:43:24 -07001418 enum ieee80211_band band;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001419
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -07001420 if (mwifiex_get_bss_info(priv, &bss_info))
1421 return -1;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001422
1423 ie_buf[0] = WLAN_EID_SSID;
1424 ie_buf[1] = bss_info.ssid.ssid_len;
1425
1426 memcpy(&ie_buf[sizeof(struct ieee_types_header)],
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001427 &bss_info.ssid.ssid, bss_info.ssid.ssid_len);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001428 ie_len = ie_buf[1] + sizeof(struct ieee_types_header);
1429
Amitkumar Karwar4ed5d522011-09-21 21:43:24 -07001430 band = mwifiex_band_to_radio_type(priv->curr_bss_params.band);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001431 chan = __ieee80211_get_channel(priv->wdev->wiphy,
1432 ieee80211_channel_to_frequency(bss_info.bss_chan,
Amitkumar Karwar4ed5d522011-09-21 21:43:24 -07001433 band));
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001434
Amitkumar Karwaraa95a482011-11-07 21:41:12 -08001435 bss = cfg80211_inform_bss(priv->wdev->wiphy, chan,
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001436 bss_info.bssid, 0, WLAN_CAPABILITY_IBSS,
1437 0, ie_buf, ie_len, 0, GFP_KERNEL);
Amitkumar Karwaraa95a482011-11-07 21:41:12 -08001438 cfg80211_put_bss(bss);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001439 memcpy(priv->cfg_bssid, bss_info.bssid, ETH_ALEN);
1440
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -07001441 return 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001442}
1443
1444/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001445 * This function connects with a BSS.
1446 *
1447 * This function handles both Infra and Ad-Hoc modes. It also performs
1448 * validity checking on the provided parameters, disconnects from the
1449 * current BSS (if any), sets up the association/scan parameters,
1450 * including security settings, and performs specific SSID scan before
1451 * trying to connect.
1452 *
1453 * For Infra mode, the function returns failure if the specified SSID
1454 * is not found in scan table. However, for Ad-Hoc mode, it can create
1455 * the IBSS if it does not exist. On successful completion in either case,
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001456 * the function notifies the CFG802.11 subsystem of the new BSS connection.
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001457 */
1458static int
1459mwifiex_cfg80211_assoc(struct mwifiex_private *priv, size_t ssid_len, u8 *ssid,
1460 u8 *bssid, int mode, struct ieee80211_channel *channel,
1461 struct cfg80211_connect_params *sme, bool privacy)
1462{
Amitkumar Karwarb9be5f32012-02-27 22:04:14 -08001463 struct cfg80211_ssid req_ssid;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -07001464 int ret, auth_type = 0;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001465 struct cfg80211_bss *bss = NULL;
Amitkumar Karwar05910f42012-07-13 20:09:32 -07001466 u8 is_scanning_required = 0, config_bands = 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001467
Amitkumar Karwarb9be5f32012-02-27 22:04:14 -08001468 memset(&req_ssid, 0, sizeof(struct cfg80211_ssid));
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001469
1470 req_ssid.ssid_len = ssid_len;
1471 if (ssid_len > IEEE80211_MAX_SSID_LEN) {
1472 dev_err(priv->adapter->dev, "invalid SSID - aborting\n");
1473 return -EINVAL;
1474 }
1475
1476 memcpy(req_ssid.ssid, ssid, ssid_len);
1477 if (!req_ssid.ssid_len || req_ssid.ssid[0] < 0x20) {
1478 dev_err(priv->adapter->dev, "invalid SSID - aborting\n");
1479 return -EINVAL;
1480 }
1481
1482 /* disconnect before try to associate */
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001483 mwifiex_deauthenticate(priv, NULL);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001484
Amitkumar Karwar05910f42012-07-13 20:09:32 -07001485 if (channel) {
1486 if (mode == NL80211_IFTYPE_STATION) {
1487 if (channel->band == IEEE80211_BAND_2GHZ)
1488 config_bands = BAND_B | BAND_G | BAND_GN;
1489 else
1490 config_bands = BAND_A | BAND_AN;
1491
1492 if (!((config_bands | priv->adapter->fw_bands) &
1493 ~priv->adapter->fw_bands))
1494 priv->adapter->config_bands = config_bands;
1495 }
Amitkumar Karwar05910f42012-07-13 20:09:32 -07001496 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001497
Amitkumar Karwar6670f152012-02-09 18:32:22 -08001498 /* As this is new association, clear locally stored
1499 * keys and security related flags */
1500 priv->sec_info.wpa_enabled = false;
1501 priv->sec_info.wpa2_enabled = false;
1502 priv->wep_key_curr_index = 0;
Amitkumar Karwar00f157b2012-02-24 21:35:35 -08001503 priv->sec_info.encryption_mode = 0;
Amitkumar Karwara0f6d6c2012-02-24 21:36:05 -08001504 priv->sec_info.is_authtype_auto = 0;
Ying Luo53b11232012-08-03 18:06:13 -07001505 ret = mwifiex_set_encode(priv, NULL, NULL, 0, 0, NULL, 1);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001506
Bing Zhaoeecd8252011-03-28 17:55:41 -07001507 if (mode == NL80211_IFTYPE_ADHOC) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001508 /* "privacy" is set only for ad-hoc mode */
1509 if (privacy) {
1510 /*
Yogesh Ashok Powar2be50b82011-04-01 18:36:47 -07001511 * Keep WLAN_CIPHER_SUITE_WEP104 for now so that
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001512 * the firmware can find a matching network from the
1513 * scan. The cfg80211 does not give us the encryption
1514 * mode at this stage so just setting it to WEP here.
1515 */
Marc Yang203afec2011-03-24 20:49:39 -07001516 priv->sec_info.encryption_mode =
Yogesh Ashok Powar2be50b82011-04-01 18:36:47 -07001517 WLAN_CIPHER_SUITE_WEP104;
Marc Yang203afec2011-03-24 20:49:39 -07001518 priv->sec_info.authentication_mode =
Marc Yangf986b6d2011-03-28 17:55:42 -07001519 NL80211_AUTHTYPE_OPEN_SYSTEM;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001520 }
1521
1522 goto done;
1523 }
1524
1525 /* Now handle infra mode. "sme" is valid for infra mode only */
Amitkumar Karwara0f6d6c2012-02-24 21:36:05 -08001526 if (sme->auth_type == NL80211_AUTHTYPE_AUTOMATIC) {
Marc Yangf986b6d2011-03-28 17:55:42 -07001527 auth_type = NL80211_AUTHTYPE_OPEN_SYSTEM;
Amitkumar Karwara0f6d6c2012-02-24 21:36:05 -08001528 priv->sec_info.is_authtype_auto = 1;
1529 } else {
1530 auth_type = sme->auth_type;
1531 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001532
1533 if (sme->crypto.n_ciphers_pairwise) {
Yogesh Ashok Powar2be50b82011-04-01 18:36:47 -07001534 priv->sec_info.encryption_mode =
1535 sme->crypto.ciphers_pairwise[0];
Marc Yang203afec2011-03-24 20:49:39 -07001536 priv->sec_info.authentication_mode = auth_type;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001537 }
1538
1539 if (sme->crypto.cipher_group) {
Yogesh Ashok Powar2be50b82011-04-01 18:36:47 -07001540 priv->sec_info.encryption_mode = sme->crypto.cipher_group;
Marc Yang203afec2011-03-24 20:49:39 -07001541 priv->sec_info.authentication_mode = auth_type;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001542 }
1543 if (sme->ie)
1544 ret = mwifiex_set_gen_ie(priv, sme->ie, sme->ie_len);
1545
1546 if (sme->key) {
Amitkumar Karware6faada2011-07-07 17:33:19 -07001547 if (mwifiex_is_alg_wep(priv->sec_info.encryption_mode)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001548 dev_dbg(priv->adapter->dev,
1549 "info: setting wep encryption"
1550 " with key len %d\n", sme->key_len);
Amitkumar Karwar6670f152012-02-09 18:32:22 -08001551 priv->wep_key_curr_index = sme->key_idx;
Ying Luo53b11232012-08-03 18:06:13 -07001552 ret = mwifiex_set_encode(priv, NULL, sme->key,
1553 sme->key_len, sme->key_idx,
1554 NULL, 0);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001555 }
1556 }
1557done:
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001558 /*
1559 * Scan entries are valid for some time (15 sec). So we can save one
1560 * active scan time if we just try cfg80211_get_bss first. If it fails
1561 * then request scan and cfg80211_get_bss() again for final output.
1562 */
1563 while (1) {
1564 if (is_scanning_required) {
1565 /* Do specific SSID scanning */
1566 if (mwifiex_request_scan(priv, &req_ssid)) {
1567 dev_err(priv->adapter->dev, "scan error\n");
1568 return -EFAULT;
1569 }
1570 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001571
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001572 /* Find the BSS we want using available scan results */
1573 if (mode == NL80211_IFTYPE_ADHOC)
1574 bss = cfg80211_get_bss(priv->wdev->wiphy, channel,
1575 bssid, ssid, ssid_len,
1576 WLAN_CAPABILITY_IBSS,
1577 WLAN_CAPABILITY_IBSS);
1578 else
1579 bss = cfg80211_get_bss(priv->wdev->wiphy, channel,
1580 bssid, ssid, ssid_len,
1581 WLAN_CAPABILITY_ESS,
1582 WLAN_CAPABILITY_ESS);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001583
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001584 if (!bss) {
1585 if (is_scanning_required) {
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001586 dev_warn(priv->adapter->dev,
1587 "assoc: requested bss not found in scan results\n");
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001588 break;
1589 }
1590 is_scanning_required = 1;
1591 } else {
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001592 dev_dbg(priv->adapter->dev,
1593 "info: trying to associate to '%s' bssid %pM\n",
1594 (char *) req_ssid.ssid, bss->bssid);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001595 memcpy(&priv->cfg_bssid, bss->bssid, ETH_ALEN);
1596 break;
1597 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001598 }
1599
Amitkumar Karwar06975882012-10-05 20:21:42 -07001600 ret = mwifiex_bss_start(priv, bss, &req_ssid);
1601 if (ret)
1602 return ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001603
Bing Zhaoeecd8252011-03-28 17:55:41 -07001604 if (mode == NL80211_IFTYPE_ADHOC) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001605 /* Inform the BSS information to kernel, otherwise
1606 * kernel will give a panic after successful assoc */
1607 if (mwifiex_cfg80211_inform_ibss_bss(priv))
1608 return -EFAULT;
1609 }
1610
1611 return ret;
1612}
1613
1614/*
1615 * CFG802.11 operation handler for association request.
1616 *
1617 * This function does not work when the current mode is set to Ad-Hoc, or
1618 * when there is already an association procedure going on. The given BSS
1619 * information is used to associate.
1620 */
1621static int
1622mwifiex_cfg80211_connect(struct wiphy *wiphy, struct net_device *dev,
1623 struct cfg80211_connect_params *sme)
1624{
1625 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
1626 int ret = 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001627
Bing Zhaoeecd8252011-03-28 17:55:41 -07001628 if (priv->bss_mode == NL80211_IFTYPE_ADHOC) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001629 wiphy_err(wiphy, "received infra assoc request "
1630 "when station is in ibss mode\n");
1631 goto done;
1632 }
1633
Avinash Patile5686342012-05-08 18:30:25 -07001634 if (priv->bss_mode == NL80211_IFTYPE_AP) {
1635 wiphy_err(wiphy, "skip association request for AP interface\n");
1636 goto done;
1637 }
1638
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001639 wiphy_dbg(wiphy, "info: Trying to associate to %s and bssid %pM\n",
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001640 (char *) sme->ssid, sme->bssid);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001641
1642 ret = mwifiex_cfg80211_assoc(priv, sme->ssid_len, sme->ssid, sme->bssid,
Bing Zhaoeecd8252011-03-28 17:55:41 -07001643 priv->bss_mode, sme->channel, sme, 0);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001644done:
Amitkumar Karwar38c9d662011-12-13 20:43:17 -08001645 if (!ret) {
1646 cfg80211_connect_result(priv->netdev, priv->cfg_bssid, NULL, 0,
1647 NULL, 0, WLAN_STATUS_SUCCESS,
1648 GFP_KERNEL);
1649 dev_dbg(priv->adapter->dev,
1650 "info: associated to bssid %pM successfully\n",
1651 priv->cfg_bssid);
1652 } else {
1653 dev_dbg(priv->adapter->dev,
1654 "info: association to bssid %pM failed\n",
1655 priv->cfg_bssid);
1656 memset(priv->cfg_bssid, 0, ETH_ALEN);
Amitkumar Karwar06975882012-10-05 20:21:42 -07001657
1658 if (ret > 0)
1659 cfg80211_connect_result(priv->netdev, priv->cfg_bssid,
1660 NULL, 0, NULL, 0, ret,
1661 GFP_KERNEL);
1662 else
1663 cfg80211_connect_result(priv->netdev, priv->cfg_bssid,
1664 NULL, 0, NULL, 0,
1665 WLAN_STATUS_UNSPECIFIED_FAILURE,
1666 GFP_KERNEL);
Amitkumar Karwar38c9d662011-12-13 20:43:17 -08001667 }
1668
Amitkumar Karwar06975882012-10-05 20:21:42 -07001669 return 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001670}
1671
1672/*
Amitkumar Karwar05910f42012-07-13 20:09:32 -07001673 * This function sets following parameters for ibss network.
1674 * - channel
1675 * - start band
1676 * - 11n flag
1677 * - secondary channel offset
1678 */
1679static int mwifiex_set_ibss_params(struct mwifiex_private *priv,
1680 struct cfg80211_ibss_params *params)
1681{
1682 struct wiphy *wiphy = priv->wdev->wiphy;
1683 struct mwifiex_adapter *adapter = priv->adapter;
1684 int index = 0, i;
1685 u8 config_bands = 0;
1686
1687 if (params->channel->band == IEEE80211_BAND_2GHZ) {
1688 if (!params->basic_rates) {
1689 config_bands = BAND_B | BAND_G;
1690 } else {
1691 for (i = 0; i < mwifiex_band_2ghz.n_bitrates; i++) {
1692 /*
1693 * Rates below 6 Mbps in the table are CCK
1694 * rates; 802.11b and from 6 they are OFDM;
1695 * 802.11G
1696 */
1697 if (mwifiex_rates[i].bitrate == 60) {
1698 index = 1 << i;
1699 break;
1700 }
1701 }
1702
1703 if (params->basic_rates < index) {
1704 config_bands = BAND_B;
1705 } else {
1706 config_bands = BAND_G;
1707 if (params->basic_rates % index)
1708 config_bands |= BAND_B;
1709 }
1710 }
1711
1712 if (params->channel_type != NL80211_CHAN_NO_HT)
1713 config_bands |= BAND_GN;
1714 } else {
1715 if (params->channel_type == NL80211_CHAN_NO_HT)
1716 config_bands = BAND_A;
1717 else
1718 config_bands = BAND_AN | BAND_A;
1719 }
1720
1721 if (!((config_bands | adapter->fw_bands) & ~adapter->fw_bands)) {
1722 adapter->config_bands = config_bands;
1723 adapter->adhoc_start_band = config_bands;
1724
1725 if ((config_bands & BAND_GN) || (config_bands & BAND_AN))
1726 adapter->adhoc_11n_enabled = true;
1727 else
1728 adapter->adhoc_11n_enabled = false;
1729 }
1730
1731 adapter->sec_chan_offset =
1732 mwifiex_chan_type_to_sec_chan_offset(params->channel_type);
1733 priv->adhoc_channel =
1734 ieee80211_frequency_to_channel(params->channel->center_freq);
1735
1736 wiphy_dbg(wiphy, "info: set ibss band %d, chan %d, chan offset %d\n",
1737 config_bands, priv->adhoc_channel, adapter->sec_chan_offset);
1738
1739 return 0;
1740}
1741
1742/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001743 * CFG802.11 operation handler to join an IBSS.
1744 *
1745 * This function does not work in any mode other than Ad-Hoc, or if
1746 * a join operation is already in progress.
1747 */
1748static int
1749mwifiex_cfg80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
1750 struct cfg80211_ibss_params *params)
1751{
Yogesh Ashok Powarf540f9f2012-01-11 20:06:12 -08001752 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001753 int ret = 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001754
Bing Zhaoeecd8252011-03-28 17:55:41 -07001755 if (priv->bss_mode != NL80211_IFTYPE_ADHOC) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001756 wiphy_err(wiphy, "request to join ibss received "
1757 "when station is not in ibss mode\n");
1758 goto done;
1759 }
1760
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001761 wiphy_dbg(wiphy, "info: trying to join to %s and bssid %pM\n",
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001762 (char *) params->ssid, params->bssid);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001763
Amitkumar Karwar05910f42012-07-13 20:09:32 -07001764 mwifiex_set_ibss_params(priv, params);
1765
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001766 ret = mwifiex_cfg80211_assoc(priv, params->ssid_len, params->ssid,
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001767 params->bssid, priv->bss_mode,
1768 params->channel, NULL, params->privacy);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001769done:
Amitkumar Karwar38c9d662011-12-13 20:43:17 -08001770 if (!ret) {
1771 cfg80211_ibss_joined(priv->netdev, priv->cfg_bssid, GFP_KERNEL);
1772 dev_dbg(priv->adapter->dev,
1773 "info: joined/created adhoc network with bssid"
1774 " %pM successfully\n", priv->cfg_bssid);
1775 } else {
1776 dev_dbg(priv->adapter->dev,
1777 "info: failed creating/joining adhoc network\n");
1778 }
1779
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001780 return ret;
1781}
1782
1783/*
1784 * CFG802.11 operation handler to leave an IBSS.
1785 *
1786 * This function does not work if a leave operation is
1787 * already in progress.
1788 */
1789static int
1790mwifiex_cfg80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
1791{
Yogesh Ashok Powarf540f9f2012-01-11 20:06:12 -08001792 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001793
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001794 wiphy_dbg(wiphy, "info: disconnecting from essid %pM\n",
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001795 priv->cfg_bssid);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001796 if (mwifiex_deauthenticate(priv, NULL))
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001797 return -EFAULT;
1798
Amitkumar Karwar38c9d662011-12-13 20:43:17 -08001799 memset(priv->cfg_bssid, 0, ETH_ALEN);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001800
1801 return 0;
1802}
1803
1804/*
1805 * CFG802.11 operation handler for scan request.
1806 *
1807 * This function issues a scan request to the firmware based upon
1808 * the user specified scan configuration. On successfull completion,
1809 * it also informs the results.
1810 */
1811static int
Johannes Bergfd014282012-06-18 19:17:03 +02001812mwifiex_cfg80211_scan(struct wiphy *wiphy,
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001813 struct cfg80211_scan_request *request)
1814{
Johannes Bergfd014282012-06-18 19:17:03 +02001815 struct net_device *dev = request->wdev->netdev;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001816 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Bing Zhaoc2476332012-10-05 20:21:40 -07001817 int i, offset, ret;
Amitkumar Karwar38c9d662011-12-13 20:43:17 -08001818 struct ieee80211_channel *chan;
Stone Piaoea021f52012-09-25 20:23:38 -07001819 struct ieee_types_header *ie;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001820
1821 wiphy_dbg(wiphy, "info: received scan request on %s\n", dev->name);
1822
Amitkumar Karware45a8412012-10-19 19:19:15 -07001823 if ((request->flags & NL80211_SCAN_FLAG_LOW_PRIORITY) &&
1824 atomic_read(&priv->wmm.tx_pkts_queued) >=
Amitkumar Karwarde093642012-09-20 20:23:18 -07001825 MWIFIEX_MIN_TX_PENDING_TO_CANCEL_SCAN) {
1826 dev_dbg(priv->adapter->dev, "scan rejected due to traffic\n");
1827 return -EBUSY;
1828 }
1829
Amitkumar Karwarf162cac2012-10-19 19:19:16 -07001830 if (priv->user_scan_cfg) {
1831 dev_err(priv->adapter->dev, "cmd: Scan already in process..\n");
1832 return -EBUSY;
1833 }
1834
Amitkumar Karwar38c9d662011-12-13 20:43:17 -08001835 priv->user_scan_cfg = kzalloc(sizeof(struct mwifiex_user_scan_cfg),
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001836 GFP_KERNEL);
Amitkumar Karwar38c9d662011-12-13 20:43:17 -08001837 if (!priv->user_scan_cfg) {
1838 dev_err(priv->adapter->dev, "failed to alloc scan_req\n");
1839 return -ENOMEM;
1840 }
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -08001841
Bing Zhao6fcf2b12012-10-19 19:02:00 -07001842 priv->scan_request = request;
1843
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -08001844 priv->user_scan_cfg->num_ssids = request->n_ssids;
1845 priv->user_scan_cfg->ssid_list = request->ssids;
1846
Avinash Patil13d7ba72012-04-09 20:06:56 -07001847 if (request->ie && request->ie_len) {
Stone Piaoea021f52012-09-25 20:23:38 -07001848 offset = 0;
Avinash Patil13d7ba72012-04-09 20:06:56 -07001849 for (i = 0; i < MWIFIEX_MAX_VSIE_NUM; i++) {
1850 if (priv->vs_ie[i].mask != MWIFIEX_VSIE_MASK_CLEAR)
1851 continue;
1852 priv->vs_ie[i].mask = MWIFIEX_VSIE_MASK_SCAN;
Stone Piaoea021f52012-09-25 20:23:38 -07001853 ie = (struct ieee_types_header *)(request->ie + offset);
1854 memcpy(&priv->vs_ie[i].ie, ie, sizeof(*ie) + ie->len);
1855 offset += sizeof(*ie) + ie->len;
1856
1857 if (offset >= request->ie_len)
1858 break;
Avinash Patil13d7ba72012-04-09 20:06:56 -07001859 }
1860 }
1861
Amitkumar Karwar38c9d662011-12-13 20:43:17 -08001862 for (i = 0; i < request->n_channels; i++) {
1863 chan = request->channels[i];
1864 priv->user_scan_cfg->chan_list[i].chan_number = chan->hw_value;
1865 priv->user_scan_cfg->chan_list[i].radio_type = chan->band;
1866
1867 if (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN)
1868 priv->user_scan_cfg->chan_list[i].scan_type =
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001869 MWIFIEX_SCAN_TYPE_PASSIVE;
Amitkumar Karwar38c9d662011-12-13 20:43:17 -08001870 else
1871 priv->user_scan_cfg->chan_list[i].scan_type =
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001872 MWIFIEX_SCAN_TYPE_ACTIVE;
Amitkumar Karwar38c9d662011-12-13 20:43:17 -08001873
1874 priv->user_scan_cfg->chan_list[i].scan_time = 0;
1875 }
Bing Zhaoc2476332012-10-05 20:21:40 -07001876
1877 ret = mwifiex_scan_networks(priv, priv->user_scan_cfg);
1878 if (ret) {
1879 dev_err(priv->adapter->dev, "scan failed: %d\n", ret);
Bing Zhao6fcf2b12012-10-19 19:02:00 -07001880 priv->scan_request = NULL;
1881 kfree(priv->user_scan_cfg);
1882 priv->user_scan_cfg = NULL;
Bing Zhaoc2476332012-10-05 20:21:40 -07001883 return ret;
1884 }
Amitkumar Karwar38c9d662011-12-13 20:43:17 -08001885
Avinash Patil13d7ba72012-04-09 20:06:56 -07001886 if (request->ie && request->ie_len) {
1887 for (i = 0; i < MWIFIEX_MAX_VSIE_NUM; i++) {
1888 if (priv->vs_ie[i].mask == MWIFIEX_VSIE_MASK_SCAN) {
1889 priv->vs_ie[i].mask = MWIFIEX_VSIE_MASK_CLEAR;
1890 memset(&priv->vs_ie[i].ie, 0,
1891 MWIFIEX_MAX_VSIE_LEN);
1892 }
1893 }
1894 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001895 return 0;
1896}
1897
1898/*
1899 * This function sets up the CFG802.11 specific HT capability fields
1900 * with default values.
1901 *
1902 * The following default values are set -
1903 * - HT Supported = True
Amitkumar Karwara46b7b52011-04-27 19:13:12 -07001904 * - Maximum AMPDU length factor = IEEE80211_HT_MAX_AMPDU_64K
1905 * - Minimum AMPDU spacing = IEEE80211_HT_MPDU_DENSITY_NONE
1906 * - HT Capabilities supported by firmware
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001907 * - MCS information, Rx mask = 0xff
1908 * - MCD information, Tx parameters = IEEE80211_HT_MCS_TX_DEFINED (0x01)
1909 */
1910static void
1911mwifiex_setup_ht_caps(struct ieee80211_sta_ht_cap *ht_info,
1912 struct mwifiex_private *priv)
1913{
1914 int rx_mcs_supp;
1915 struct ieee80211_mcs_info mcs_set;
1916 u8 *mcs = (u8 *)&mcs_set;
1917 struct mwifiex_adapter *adapter = priv->adapter;
1918
1919 ht_info->ht_supported = true;
Amitkumar Karwara46b7b52011-04-27 19:13:12 -07001920 ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
1921 ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_NONE;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001922
1923 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001924
Amitkumar Karwara46b7b52011-04-27 19:13:12 -07001925 /* Fill HT capability information */
1926 if (ISSUPP_CHANWIDTH40(adapter->hw_dot_11n_dev_cap))
1927 ht_info->cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
1928 else
1929 ht_info->cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
1930
1931 if (ISSUPP_SHORTGI20(adapter->hw_dot_11n_dev_cap))
1932 ht_info->cap |= IEEE80211_HT_CAP_SGI_20;
1933 else
1934 ht_info->cap &= ~IEEE80211_HT_CAP_SGI_20;
1935
1936 if (ISSUPP_SHORTGI40(adapter->hw_dot_11n_dev_cap))
1937 ht_info->cap |= IEEE80211_HT_CAP_SGI_40;
1938 else
1939 ht_info->cap &= ~IEEE80211_HT_CAP_SGI_40;
1940
1941 if (ISSUPP_RXSTBC(adapter->hw_dot_11n_dev_cap))
1942 ht_info->cap |= 1 << IEEE80211_HT_CAP_RX_STBC_SHIFT;
1943 else
1944 ht_info->cap &= ~(3 << IEEE80211_HT_CAP_RX_STBC_SHIFT);
1945
1946 if (ISSUPP_TXSTBC(adapter->hw_dot_11n_dev_cap))
1947 ht_info->cap |= IEEE80211_HT_CAP_TX_STBC;
1948 else
1949 ht_info->cap &= ~IEEE80211_HT_CAP_TX_STBC;
1950
1951 ht_info->cap &= ~IEEE80211_HT_CAP_MAX_AMSDU;
1952 ht_info->cap |= IEEE80211_HT_CAP_SM_PS;
1953
1954 rx_mcs_supp = GET_RXMCSSUPP(adapter->hw_dev_mcs_support);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001955 /* Set MCS for 1x1 */
1956 memset(mcs, 0xff, rx_mcs_supp);
1957 /* Clear all the other values */
1958 memset(&mcs[rx_mcs_supp], 0,
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001959 sizeof(struct ieee80211_mcs_info) - rx_mcs_supp);
Bing Zhaoeecd8252011-03-28 17:55:41 -07001960 if (priv->bss_mode == NL80211_IFTYPE_STATION ||
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001961 ISSUPP_CHANWIDTH40(adapter->hw_dot_11n_dev_cap))
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001962 /* Set MCS32 for infra mode or ad-hoc mode with 40MHz support */
1963 SETHT_MCS32(mcs_set.rx_mask);
1964
1965 memcpy((u8 *) &ht_info->mcs, mcs, sizeof(struct ieee80211_mcs_info));
1966
1967 ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
1968}
1969
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07001970/*
1971 * create a new virtual interface with the given name
1972 */
Johannes Berg84efbb82012-06-16 00:00:26 +02001973struct wireless_dev *mwifiex_add_virtual_intf(struct wiphy *wiphy,
Johannes Berg552bff02012-09-19 09:26:06 +02001974 const char *name,
Johannes Berg84efbb82012-06-16 00:00:26 +02001975 enum nl80211_iftype type,
1976 u32 *flags,
1977 struct vif_params *params)
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07001978{
Avinash Patil67fdf392012-05-08 18:30:17 -07001979 struct mwifiex_adapter *adapter = mwifiex_cfg80211_get_adapter(wiphy);
1980 struct mwifiex_private *priv;
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07001981 struct net_device *dev;
1982 void *mdev_priv;
Avinash Patild6bffe82012-05-08 18:30:15 -07001983 struct wireless_dev *wdev;
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07001984
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07001985 if (!adapter)
Bing Zhao858faa52012-06-15 15:49:54 -07001986 return ERR_PTR(-EFAULT);
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07001987
1988 switch (type) {
1989 case NL80211_IFTYPE_UNSPECIFIED:
1990 case NL80211_IFTYPE_STATION:
1991 case NL80211_IFTYPE_ADHOC:
Avinash Patild6bffe82012-05-08 18:30:15 -07001992 priv = adapter->priv[MWIFIEX_BSS_TYPE_STA];
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07001993 if (priv->bss_mode) {
Avinash Patild6bffe82012-05-08 18:30:15 -07001994 wiphy_err(wiphy,
1995 "cannot create multiple sta/adhoc ifaces\n");
Bing Zhao858faa52012-06-15 15:49:54 -07001996 return ERR_PTR(-EINVAL);
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07001997 }
1998
Avinash Patild6bffe82012-05-08 18:30:15 -07001999 wdev = kzalloc(sizeof(struct wireless_dev), GFP_KERNEL);
2000 if (!wdev)
Bing Zhao858faa52012-06-15 15:49:54 -07002001 return ERR_PTR(-ENOMEM);
Avinash Patild6bffe82012-05-08 18:30:15 -07002002
2003 wdev->wiphy = wiphy;
2004 priv->wdev = wdev;
2005 wdev->iftype = NL80211_IFTYPE_STATION;
2006
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07002007 if (type == NL80211_IFTYPE_UNSPECIFIED)
2008 priv->bss_mode = NL80211_IFTYPE_STATION;
2009 else
2010 priv->bss_mode = type;
2011
2012 priv->bss_type = MWIFIEX_BSS_TYPE_STA;
2013 priv->frame_type = MWIFIEX_DATA_FRAME_TYPE_ETH_II;
Amitkumar Karwara458c0a2012-09-10 18:30:43 -07002014 priv->bss_priority = 0;
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07002015 priv->bss_role = MWIFIEX_BSS_ROLE_STA;
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07002016 priv->bss_num = 0;
2017
2018 break;
Avinash Patild6bffe82012-05-08 18:30:15 -07002019 case NL80211_IFTYPE_AP:
2020 priv = adapter->priv[MWIFIEX_BSS_TYPE_UAP];
2021
2022 if (priv->bss_mode) {
2023 wiphy_err(wiphy, "Can't create multiple AP interfaces");
Bing Zhao858faa52012-06-15 15:49:54 -07002024 return ERR_PTR(-EINVAL);
Avinash Patild6bffe82012-05-08 18:30:15 -07002025 }
2026
2027 wdev = kzalloc(sizeof(struct wireless_dev), GFP_KERNEL);
2028 if (!wdev)
Bing Zhao858faa52012-06-15 15:49:54 -07002029 return ERR_PTR(-ENOMEM);
Avinash Patild6bffe82012-05-08 18:30:15 -07002030
2031 priv->wdev = wdev;
2032 wdev->wiphy = wiphy;
2033 wdev->iftype = NL80211_IFTYPE_AP;
2034
2035 priv->bss_type = MWIFIEX_BSS_TYPE_UAP;
2036 priv->frame_type = MWIFIEX_DATA_FRAME_TYPE_ETH_II;
Amitkumar Karwara458c0a2012-09-10 18:30:43 -07002037 priv->bss_priority = 0;
Avinash Patild6bffe82012-05-08 18:30:15 -07002038 priv->bss_role = MWIFIEX_BSS_ROLE_UAP;
2039 priv->bss_started = 0;
2040 priv->bss_num = 0;
2041 priv->bss_mode = type;
2042
2043 break;
Stone Piao197f4a22012-09-25 20:23:40 -07002044 case NL80211_IFTYPE_P2P_CLIENT:
2045 priv = adapter->priv[MWIFIEX_BSS_TYPE_P2P];
2046
2047 if (priv->bss_mode) {
2048 wiphy_err(wiphy, "Can't create multiple P2P ifaces");
2049 return ERR_PTR(-EINVAL);
2050 }
2051
2052 wdev = kzalloc(sizeof(struct wireless_dev), GFP_KERNEL);
2053 if (!wdev)
2054 return ERR_PTR(-ENOMEM);
2055
2056 priv->wdev = wdev;
2057 wdev->wiphy = wiphy;
2058
2059 /* At start-up, wpa_supplicant tries to change the interface
2060 * to NL80211_IFTYPE_STATION if it is not managed mode.
2061 * So, we initialize it to STA mode.
2062 */
2063 wdev->iftype = NL80211_IFTYPE_STATION;
2064 priv->bss_mode = NL80211_IFTYPE_STATION;
2065
2066 /* Setting bss_type to P2P tells firmware that this interface
2067 * is receiving P2P peers found during find phase and doing
2068 * action frame handshake.
2069 */
2070 priv->bss_type = MWIFIEX_BSS_TYPE_P2P;
2071
2072 priv->frame_type = MWIFIEX_DATA_FRAME_TYPE_ETH_II;
2073 priv->bss_priority = MWIFIEX_BSS_ROLE_STA;
2074 priv->bss_role = MWIFIEX_BSS_ROLE_STA;
2075 priv->bss_started = 0;
2076 priv->bss_num = 0;
2077
2078 break;
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07002079 default:
2080 wiphy_err(wiphy, "type not supported\n");
Bing Zhao858faa52012-06-15 15:49:54 -07002081 return ERR_PTR(-EINVAL);
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07002082 }
2083
2084 dev = alloc_netdev_mq(sizeof(struct mwifiex_private *), name,
2085 ether_setup, 1);
2086 if (!dev) {
2087 wiphy_err(wiphy, "no memory available for netdevice\n");
Bing Zhao858faa52012-06-15 15:49:54 -07002088 priv->bss_mode = NL80211_IFTYPE_UNSPECIFIED;
2089 return ERR_PTR(-ENOMEM);
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07002090 }
2091
Avinash Patild6bffe82012-05-08 18:30:15 -07002092 mwifiex_init_priv_params(priv, dev);
2093 priv->netdev = dev;
2094
2095 mwifiex_setup_ht_caps(&wiphy->bands[IEEE80211_BAND_2GHZ]->ht_cap, priv);
2096
2097 if (adapter->config_bands & BAND_A)
2098 mwifiex_setup_ht_caps(
2099 &wiphy->bands[IEEE80211_BAND_5GHZ]->ht_cap, priv);
2100
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07002101 dev_net_set(dev, wiphy_net(wiphy));
2102 dev->ieee80211_ptr = priv->wdev;
2103 dev->ieee80211_ptr->iftype = priv->bss_mode;
2104 memcpy(dev->dev_addr, wiphy->perm_addr, ETH_ALEN);
2105 memcpy(dev->perm_addr, wiphy->perm_addr, ETH_ALEN);
2106 SET_NETDEV_DEV(dev, wiphy_dev(wiphy));
2107
2108 dev->flags |= IFF_BROADCAST | IFF_MULTICAST;
2109 dev->watchdog_timeo = MWIFIEX_DEFAULT_WATCHDOG_TIMEOUT;
2110 dev->hard_header_len += MWIFIEX_MIN_DATA_HEADER_LEN;
2111
2112 mdev_priv = netdev_priv(dev);
2113 *((unsigned long *) mdev_priv) = (unsigned long) priv;
2114
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07002115 SET_NETDEV_DEV(dev, adapter->dev);
2116
2117 /* Register network device */
2118 if (register_netdevice(dev)) {
2119 wiphy_err(wiphy, "cannot register virtual network device\n");
Bing Zhao858faa52012-06-15 15:49:54 -07002120 free_netdev(dev);
2121 priv->bss_mode = NL80211_IFTYPE_UNSPECIFIED;
2122 return ERR_PTR(-EFAULT);
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07002123 }
2124
2125 sema_init(&priv->async_sem, 1);
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07002126
2127 dev_dbg(adapter->dev, "info: %s: Marvell 802.11 Adapter\n", dev->name);
2128
2129#ifdef CONFIG_DEBUG_FS
2130 mwifiex_dev_debugfs_init(priv);
2131#endif
Johannes Berg84efbb82012-06-16 00:00:26 +02002132 return wdev;
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07002133}
2134EXPORT_SYMBOL_GPL(mwifiex_add_virtual_intf);
2135
2136/*
2137 * del_virtual_intf: remove the virtual interface determined by dev
2138 */
Johannes Berg84efbb82012-06-16 00:00:26 +02002139int mwifiex_del_virtual_intf(struct wiphy *wiphy, struct wireless_dev *wdev)
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07002140{
Johannes Berg84efbb82012-06-16 00:00:26 +02002141 struct mwifiex_private *priv = mwifiex_netdev_get_priv(wdev->netdev);
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07002142
2143#ifdef CONFIG_DEBUG_FS
2144 mwifiex_dev_debugfs_remove(priv);
2145#endif
2146
2147 if (!netif_queue_stopped(priv->netdev))
2148 netif_stop_queue(priv->netdev);
2149
2150 if (netif_carrier_ok(priv->netdev))
2151 netif_carrier_off(priv->netdev);
2152
Johannes Berg84efbb82012-06-16 00:00:26 +02002153 if (wdev->netdev->reg_state == NETREG_REGISTERED)
2154 unregister_netdevice(wdev->netdev);
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07002155
Johannes Berg84efbb82012-06-16 00:00:26 +02002156 if (wdev->netdev->reg_state == NETREG_UNREGISTERED)
2157 free_netdev(wdev->netdev);
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07002158
2159 /* Clear the priv in adapter */
2160 priv->netdev = NULL;
2161
2162 priv->media_connected = false;
2163
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07002164 priv->bss_mode = NL80211_IFTYPE_UNSPECIFIED;
2165
2166 return 0;
2167}
2168EXPORT_SYMBOL_GPL(mwifiex_del_virtual_intf);
2169
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002170/* station cfg80211 operations */
2171static struct cfg80211_ops mwifiex_cfg80211_ops = {
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07002172 .add_virtual_intf = mwifiex_add_virtual_intf,
2173 .del_virtual_intf = mwifiex_del_virtual_intf,
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002174 .change_virtual_intf = mwifiex_cfg80211_change_virtual_intf,
2175 .scan = mwifiex_cfg80211_scan,
2176 .connect = mwifiex_cfg80211_connect,
2177 .disconnect = mwifiex_cfg80211_disconnect,
2178 .get_station = mwifiex_cfg80211_get_station,
Amitkumar Karwarf85aae62012-03-15 20:51:48 -07002179 .dump_station = mwifiex_cfg80211_dump_station,
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002180 .set_wiphy_params = mwifiex_cfg80211_set_wiphy_params,
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002181 .join_ibss = mwifiex_cfg80211_join_ibss,
2182 .leave_ibss = mwifiex_cfg80211_leave_ibss,
2183 .add_key = mwifiex_cfg80211_add_key,
2184 .del_key = mwifiex_cfg80211_del_key,
Stone Piaoe39faa72012-09-25 20:23:32 -07002185 .mgmt_tx = mwifiex_cfg80211_mgmt_tx,
Stone Piao3cec6872012-09-25 20:23:34 -07002186 .mgmt_frame_register = mwifiex_cfg80211_mgmt_frame_register,
Stone Piao7feb4c42012-09-25 20:23:36 -07002187 .remain_on_channel = mwifiex_cfg80211_remain_on_channel,
2188 .cancel_remain_on_channel = mwifiex_cfg80211_cancel_remain_on_channel,
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002189 .set_default_key = mwifiex_cfg80211_set_default_key,
2190 .set_power_mgmt = mwifiex_cfg80211_set_power_mgmt,
2191 .set_tx_power = mwifiex_cfg80211_set_tx_power,
Yogesh Ashok Powar5d82c532011-07-11 20:04:44 -07002192 .set_bitrate_mask = mwifiex_cfg80211_set_bitrate_mask,
Avinash Patil12190c52012-05-08 18:30:24 -07002193 .start_ap = mwifiex_cfg80211_start_ap,
2194 .stop_ap = mwifiex_cfg80211_stop_ap,
Avinash Patil5370c832012-06-28 20:30:28 -07002195 .change_beacon = mwifiex_cfg80211_change_beacon,
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07002196 .set_cqm_rssi_config = mwifiex_cfg80211_set_cqm_rssi_config,
Amitkumar Karwar8a279d52012-07-02 19:32:33 -07002197 .set_antenna = mwifiex_cfg80211_set_antenna,
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002198};
2199
2200/*
2201 * This function registers the device with CFG802.11 subsystem.
2202 *
2203 * The function creates the wireless device/wiphy, populates it with
2204 * default parameters and handler function pointers, and finally
2205 * registers the device.
2206 */
Avinash Patild6bffe82012-05-08 18:30:15 -07002207
2208int mwifiex_register_cfg80211(struct mwifiex_adapter *adapter)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002209{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -07002210 int ret;
2211 void *wdev_priv;
Avinash Patild6bffe82012-05-08 18:30:15 -07002212 struct wiphy *wiphy;
2213 struct mwifiex_private *priv = adapter->priv[MWIFIEX_BSS_TYPE_STA];
Amitkumar Karwar9e04a7c2012-04-09 20:06:54 -07002214 u8 *country_code;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002215
Avinash Patild6bffe82012-05-08 18:30:15 -07002216 /* create a new wiphy for use with cfg80211 */
2217 wiphy = wiphy_new(&mwifiex_cfg80211_ops,
2218 sizeof(struct mwifiex_adapter *));
2219 if (!wiphy) {
2220 dev_err(adapter->dev, "%s: creating new wiphy\n", __func__);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002221 return -ENOMEM;
2222 }
Avinash Patild6bffe82012-05-08 18:30:15 -07002223 wiphy->max_scan_ssids = MWIFIEX_MAX_SSID_LIST_LENGTH;
2224 wiphy->max_scan_ie_len = MWIFIEX_MAX_VSIE_LEN;
Stone Piao83719be2012-09-25 20:23:33 -07002225 wiphy->mgmt_stypes = mwifiex_mgmt_stypes;
Stone Piao7feb4c42012-09-25 20:23:36 -07002226 wiphy->max_remain_on_channel_duration = 5000;
Avinash Patild6bffe82012-05-08 18:30:15 -07002227 wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
2228 BIT(NL80211_IFTYPE_ADHOC) |
Stone Piao197f4a22012-09-25 20:23:40 -07002229 BIT(NL80211_IFTYPE_P2P_CLIENT) |
2230 BIT(NL80211_IFTYPE_P2P_GO) |
Avinash Patild6bffe82012-05-08 18:30:15 -07002231 BIT(NL80211_IFTYPE_AP);
Amitkumar Karwaradc89592011-04-27 19:13:11 -07002232
Avinash Patild6bffe82012-05-08 18:30:15 -07002233 wiphy->bands[IEEE80211_BAND_2GHZ] = &mwifiex_band_2ghz;
2234 if (adapter->config_bands & BAND_A)
2235 wiphy->bands[IEEE80211_BAND_5GHZ] = &mwifiex_band_5ghz;
2236 else
2237 wiphy->bands[IEEE80211_BAND_5GHZ] = NULL;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002238
Avinash Patilcd8440d2012-05-08 18:30:16 -07002239 wiphy->iface_combinations = &mwifiex_iface_comb_ap_sta;
2240 wiphy->n_iface_combinations = 1;
2241
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002242 /* Initialize cipher suits */
Avinash Patild6bffe82012-05-08 18:30:15 -07002243 wiphy->cipher_suites = mwifiex_cipher_suites;
2244 wiphy->n_cipher_suites = ARRAY_SIZE(mwifiex_cipher_suites);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002245
Avinash Patild6bffe82012-05-08 18:30:15 -07002246 memcpy(wiphy->perm_addr, priv->curr_addr, ETH_ALEN);
2247 wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM;
Avinash Patil2dd2bd62012-06-28 20:30:29 -07002248 wiphy->flags |= WIPHY_FLAG_HAVE_AP_SME |
Amitkumar Karwarcc0ba0d2012-09-10 18:30:47 -07002249 WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD |
Stone Piao7feb4c42012-09-25 20:23:36 -07002250 WIPHY_FLAG_CUSTOM_REGULATORY |
2251 WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL;
Amitkumar Karwarcc0ba0d2012-09-10 18:30:47 -07002252
2253 wiphy_apply_custom_regulatory(wiphy, &mwifiex_world_regdom_custom);
Avinash Patil2dd2bd62012-06-28 20:30:29 -07002254
2255 wiphy->probe_resp_offload = NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS |
Stone Piaoe39faa72012-09-25 20:23:32 -07002256 NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2 |
2257 NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002258
Amitkumar Karwar8a279d52012-07-02 19:32:33 -07002259 wiphy->available_antennas_tx = BIT(adapter->number_of_antenna) - 1;
2260 wiphy->available_antennas_rx = BIT(adapter->number_of_antenna) - 1;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002261
Johannes Bergb2922192012-10-12 10:55:53 +02002262 wiphy->features |= NL80211_FEATURE_HT_IBSS |
Amitkumar Karware45a8412012-10-19 19:19:15 -07002263 NL80211_FEATURE_INACTIVITY_TIMER |
2264 NL80211_FEATURE_LOW_PRIORITY_SCAN;
Amitkumar Karwar05910f42012-07-13 20:09:32 -07002265
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -07002266 /* Reserve space for mwifiex specific private data for BSS */
Avinash Patild6bffe82012-05-08 18:30:15 -07002267 wiphy->bss_priv_size = sizeof(struct mwifiex_bss_priv);
Amitkumar Karwar5116f3c2011-09-21 21:43:23 -07002268
Avinash Patild6bffe82012-05-08 18:30:15 -07002269 wiphy->reg_notifier = mwifiex_reg_notifier;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002270
Avinash Patil67fdf392012-05-08 18:30:17 -07002271 /* Set struct mwifiex_adapter pointer in wiphy_priv */
Avinash Patild6bffe82012-05-08 18:30:15 -07002272 wdev_priv = wiphy_priv(wiphy);
Avinash Patil67fdf392012-05-08 18:30:17 -07002273 *(unsigned long *)wdev_priv = (unsigned long)adapter;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002274
Joe Perches2c208892012-06-04 12:44:17 +00002275 set_wiphy_dev(wiphy, priv->adapter->dev);
Yogesh Ashok Powara7b21162011-06-13 09:49:27 +05302276
Avinash Patild6bffe82012-05-08 18:30:15 -07002277 ret = wiphy_register(wiphy);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002278 if (ret < 0) {
Avinash Patild6bffe82012-05-08 18:30:15 -07002279 dev_err(adapter->dev,
2280 "%s: wiphy_register failed: %d\n", __func__, ret);
2281 wiphy_free(wiphy);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002282 return ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002283 }
Amitkumar Karwar9e04a7c2012-04-09 20:06:54 -07002284 country_code = mwifiex_11d_code_2_region(priv->adapter->region_code);
Bing Zhao77c8a142012-09-10 18:30:46 -07002285 if (country_code)
2286 dev_info(adapter->dev,
2287 "ignoring F/W country code %2.2s\n", country_code);
Amitkumar Karwar9e04a7c2012-04-09 20:06:54 -07002288
Avinash Patild6bffe82012-05-08 18:30:15 -07002289 adapter->wiphy = wiphy;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002290 return ret;
2291}