2 * Marvell Wireless LAN device driver: CFG80211
4 * Copyright (C) 2011, Marvell International Ltd.
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.
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.
23 static char *reg_alpha2
;
24 module_param(reg_alpha2
, charp
, 0);
26 static const struct ieee80211_iface_limit mwifiex_ap_sta_limits
[] = {
28 .max
= 2, .types
= BIT(NL80211_IFTYPE_STATION
) |
29 BIT(NL80211_IFTYPE_P2P_GO
) |
30 BIT(NL80211_IFTYPE_P2P_CLIENT
),
33 .max
= 1, .types
= BIT(NL80211_IFTYPE_AP
),
37 static const struct ieee80211_iface_combination mwifiex_iface_comb_ap_sta
= {
38 .limits
= mwifiex_ap_sta_limits
,
39 .num_different_channels
= 1,
40 .n_limits
= ARRAY_SIZE(mwifiex_ap_sta_limits
),
41 .max_interfaces
= MWIFIEX_MAX_BSS_NUM
,
42 .beacon_int_infra_match
= true,
45 static const struct ieee80211_regdomain mwifiex_world_regdom_custom
= {
50 REG_RULE(2412-10, 2462+10, 40, 3, 20, 0),
52 REG_RULE(2467-10, 2472+10, 20, 3, 20,
55 REG_RULE(2484-10, 2484+10, 20, 3, 20,
59 REG_RULE(5180-10, 5240+10, 40, 3, 20,
61 /* Channel 149 - 165 */
62 REG_RULE(5745-10, 5825+10, 40, 3, 20,
65 REG_RULE(5260-10, 5320+10, 40, 3, 30,
68 /* Channel 100 - 140 */
69 REG_RULE(5500-10, 5700+10, 40, 3, 30,
76 * This function maps the nl802.11 channel type into driver channel type.
78 * The mapping is as follows -
79 * NL80211_CHAN_NO_HT -> IEEE80211_HT_PARAM_CHA_SEC_NONE
80 * NL80211_CHAN_HT20 -> IEEE80211_HT_PARAM_CHA_SEC_NONE
81 * NL80211_CHAN_HT40PLUS -> IEEE80211_HT_PARAM_CHA_SEC_ABOVE
82 * NL80211_CHAN_HT40MINUS -> IEEE80211_HT_PARAM_CHA_SEC_BELOW
83 * Others -> IEEE80211_HT_PARAM_CHA_SEC_NONE
85 u8
mwifiex_chan_type_to_sec_chan_offset(enum nl80211_channel_type chan_type
)
88 case NL80211_CHAN_NO_HT
:
89 case NL80211_CHAN_HT20
:
90 return IEEE80211_HT_PARAM_CHA_SEC_NONE
;
91 case NL80211_CHAN_HT40PLUS
:
92 return IEEE80211_HT_PARAM_CHA_SEC_ABOVE
;
93 case NL80211_CHAN_HT40MINUS
:
94 return IEEE80211_HT_PARAM_CHA_SEC_BELOW
;
96 return IEEE80211_HT_PARAM_CHA_SEC_NONE
;
101 * This function checks whether WEP is set.
104 mwifiex_is_alg_wep(u32 cipher
)
107 case WLAN_CIPHER_SUITE_WEP40
:
108 case WLAN_CIPHER_SUITE_WEP104
:
118 * This function retrieves the private structure from kernel wiphy structure.
120 static void *mwifiex_cfg80211_get_adapter(struct wiphy
*wiphy
)
122 return (void *) (*(unsigned long *) wiphy_priv(wiphy
));
126 * CFG802.11 operation handler to delete a network key.
129 mwifiex_cfg80211_del_key(struct wiphy
*wiphy
, struct net_device
*netdev
,
130 u8 key_index
, bool pairwise
, const u8
*mac_addr
)
132 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(netdev
);
133 const u8 bc_mac
[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
134 const u8
*peer_mac
= pairwise
? mac_addr
: bc_mac
;
136 if (mwifiex_set_encode(priv
, NULL
, NULL
, 0, key_index
, peer_mac
, 1)) {
137 wiphy_err(wiphy
, "deleting the crypto keys\n");
141 wiphy_dbg(wiphy
, "info: crypto keys deleted\n");
146 * This function forms an skb for management frame.
149 mwifiex_form_mgmt_frame(struct sk_buff
*skb
, const u8
*buf
, size_t len
)
151 u8 addr
[ETH_ALEN
] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
153 u32 tx_control
= 0, pkt_type
= PKT_TYPE_MGMT
;
156 pkt_len
= len
+ ETH_ALEN
;
158 skb_reserve(skb
, MWIFIEX_MIN_DATA_HEADER_LEN
+
159 MWIFIEX_MGMT_FRAME_HEADER_SIZE
+ sizeof(pkt_len
));
160 memcpy(skb_push(skb
, sizeof(pkt_len
)), &pkt_len
, sizeof(pkt_len
));
162 memcpy(skb_push(skb
, sizeof(tx_control
)),
163 &tx_control
, sizeof(tx_control
));
165 memcpy(skb_push(skb
, sizeof(pkt_type
)), &pkt_type
, sizeof(pkt_type
));
167 /* Add packet data and address4 */
168 memcpy(skb_put(skb
, sizeof(struct ieee80211_hdr_3addr
)), buf
,
169 sizeof(struct ieee80211_hdr_3addr
));
170 memcpy(skb_put(skb
, ETH_ALEN
), addr
, ETH_ALEN
);
171 memcpy(skb_put(skb
, len
- sizeof(struct ieee80211_hdr_3addr
)),
172 buf
+ sizeof(struct ieee80211_hdr_3addr
),
173 len
- sizeof(struct ieee80211_hdr_3addr
));
175 skb
->priority
= LOW_PRIO_TID
;
176 do_gettimeofday(&tv
);
177 skb
->tstamp
= timeval_to_ktime(tv
);
183 * CFG802.11 operation handler to transmit a management frame.
186 mwifiex_cfg80211_mgmt_tx(struct wiphy
*wiphy
, struct wireless_dev
*wdev
,
187 struct cfg80211_mgmt_tx_params
*params
, u64
*cookie
)
189 const u8
*buf
= params
->buf
;
190 size_t len
= params
->len
;
193 const struct ieee80211_mgmt
*mgmt
;
194 struct mwifiex_txinfo
*tx_info
;
195 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(wdev
->netdev
);
198 wiphy_err(wiphy
, "invalid buffer and length\n");
202 mgmt
= (const struct ieee80211_mgmt
*)buf
;
203 if (GET_BSS_ROLE(priv
) != MWIFIEX_BSS_ROLE_STA
&&
204 ieee80211_is_probe_resp(mgmt
->frame_control
)) {
205 /* Since we support offload probe resp, we need to skip probe
206 * resp in AP or GO mode */
208 "info: skip to send probe resp in AP or GO mode\n");
212 pkt_len
= len
+ ETH_ALEN
;
213 skb
= dev_alloc_skb(MWIFIEX_MIN_DATA_HEADER_LEN
+
214 MWIFIEX_MGMT_FRAME_HEADER_SIZE
+
215 pkt_len
+ sizeof(pkt_len
));
218 wiphy_err(wiphy
, "allocate skb failed for management frame\n");
222 tx_info
= MWIFIEX_SKB_TXCB(skb
);
223 tx_info
->bss_num
= priv
->bss_num
;
224 tx_info
->bss_type
= priv
->bss_type
;
225 tx_info
->pkt_len
= pkt_len
;
227 mwifiex_form_mgmt_frame(skb
, buf
, len
);
228 mwifiex_queue_tx_pkt(priv
, skb
);
230 *cookie
= prandom_u32() | 1;
231 cfg80211_mgmt_tx_status(wdev
, *cookie
, buf
, len
, true, GFP_ATOMIC
);
233 wiphy_dbg(wiphy
, "info: management frame transmitted\n");
238 * CFG802.11 operation handler to register a mgmt frame.
241 mwifiex_cfg80211_mgmt_frame_register(struct wiphy
*wiphy
,
242 struct wireless_dev
*wdev
,
243 u16 frame_type
, bool reg
)
245 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(wdev
->netdev
);
249 mask
= priv
->mgmt_frame_mask
| BIT(frame_type
>> 4);
251 mask
= priv
->mgmt_frame_mask
& ~BIT(frame_type
>> 4);
253 if (mask
!= priv
->mgmt_frame_mask
) {
254 priv
->mgmt_frame_mask
= mask
;
255 mwifiex_send_cmd_async(priv
, HostCmd_CMD_MGMT_FRAME_REG
,
256 HostCmd_ACT_GEN_SET
, 0,
257 &priv
->mgmt_frame_mask
);
258 wiphy_dbg(wiphy
, "info: mgmt frame registered\n");
263 * CFG802.11 operation handler to remain on channel.
266 mwifiex_cfg80211_remain_on_channel(struct wiphy
*wiphy
,
267 struct wireless_dev
*wdev
,
268 struct ieee80211_channel
*chan
,
269 unsigned int duration
, u64
*cookie
)
271 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(wdev
->netdev
);
274 if (!chan
|| !cookie
) {
275 wiphy_err(wiphy
, "Invalid parameter for ROC\n");
279 if (priv
->roc_cfg
.cookie
) {
280 wiphy_dbg(wiphy
, "info: ongoing ROC, cookie = 0x%llu\n",
281 priv
->roc_cfg
.cookie
);
285 ret
= mwifiex_remain_on_chan_cfg(priv
, HostCmd_ACT_GEN_SET
, chan
,
289 *cookie
= prandom_u32() | 1;
290 priv
->roc_cfg
.cookie
= *cookie
;
291 priv
->roc_cfg
.chan
= *chan
;
293 cfg80211_ready_on_channel(wdev
, *cookie
, chan
,
294 duration
, GFP_ATOMIC
);
296 wiphy_dbg(wiphy
, "info: ROC, cookie = 0x%llx\n", *cookie
);
303 * CFG802.11 operation handler to cancel remain on channel.
306 mwifiex_cfg80211_cancel_remain_on_channel(struct wiphy
*wiphy
,
307 struct wireless_dev
*wdev
, u64 cookie
)
309 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(wdev
->netdev
);
312 if (cookie
!= priv
->roc_cfg
.cookie
)
315 ret
= mwifiex_remain_on_chan_cfg(priv
, HostCmd_ACT_GEN_REMOVE
,
316 &priv
->roc_cfg
.chan
, 0);
319 cfg80211_remain_on_channel_expired(wdev
, cookie
,
323 memset(&priv
->roc_cfg
, 0, sizeof(struct mwifiex_roc_cfg
));
325 wiphy_dbg(wiphy
, "info: cancel ROC, cookie = 0x%llx\n", cookie
);
332 * CFG802.11 operation handler to set Tx power.
335 mwifiex_cfg80211_set_tx_power(struct wiphy
*wiphy
,
336 struct wireless_dev
*wdev
,
337 enum nl80211_tx_power_setting type
,
340 struct mwifiex_adapter
*adapter
= mwifiex_cfg80211_get_adapter(wiphy
);
341 struct mwifiex_private
*priv
;
342 struct mwifiex_power_cfg power_cfg
;
343 int dbm
= MBM_TO_DBM(mbm
);
345 if (type
== NL80211_TX_POWER_FIXED
) {
346 power_cfg
.is_power_auto
= 0;
347 power_cfg
.power_level
= dbm
;
349 power_cfg
.is_power_auto
= 1;
352 priv
= mwifiex_get_priv(adapter
, MWIFIEX_BSS_ROLE_ANY
);
354 return mwifiex_set_tx_power(priv
, &power_cfg
);
358 * CFG802.11 operation handler to set Power Save option.
360 * The timeout value, if provided, is currently ignored.
363 mwifiex_cfg80211_set_power_mgmt(struct wiphy
*wiphy
,
364 struct net_device
*dev
,
365 bool enabled
, int timeout
)
367 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(dev
);
372 "info: ignore timeout value for IEEE Power Save\n");
376 return mwifiex_drv_set_power(priv
, &ps_mode
);
380 * CFG802.11 operation handler to set the default network key.
383 mwifiex_cfg80211_set_default_key(struct wiphy
*wiphy
, struct net_device
*netdev
,
384 u8 key_index
, bool unicast
,
387 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(netdev
);
389 /* Return if WEP key not configured */
390 if (!priv
->sec_info
.wep_enabled
)
393 if (priv
->bss_type
== MWIFIEX_BSS_TYPE_UAP
) {
394 priv
->wep_key_curr_index
= key_index
;
395 } else if (mwifiex_set_encode(priv
, NULL
, NULL
, 0, key_index
,
397 wiphy_err(wiphy
, "set default Tx key index\n");
405 * CFG802.11 operation handler to add a network key.
408 mwifiex_cfg80211_add_key(struct wiphy
*wiphy
, struct net_device
*netdev
,
409 u8 key_index
, bool pairwise
, const u8
*mac_addr
,
410 struct key_params
*params
)
412 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(netdev
);
413 struct mwifiex_wep_key
*wep_key
;
414 const u8 bc_mac
[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
415 const u8
*peer_mac
= pairwise
? mac_addr
: bc_mac
;
417 if (GET_BSS_ROLE(priv
) == MWIFIEX_BSS_ROLE_UAP
&&
418 (params
->cipher
== WLAN_CIPHER_SUITE_WEP40
||
419 params
->cipher
== WLAN_CIPHER_SUITE_WEP104
)) {
420 if (params
->key
&& params
->key_len
) {
421 wep_key
= &priv
->wep_key
[key_index
];
422 memset(wep_key
, 0, sizeof(struct mwifiex_wep_key
));
423 memcpy(wep_key
->key_material
, params
->key
,
425 wep_key
->key_index
= key_index
;
426 wep_key
->key_length
= params
->key_len
;
427 priv
->sec_info
.wep_enabled
= 1;
432 if (mwifiex_set_encode(priv
, params
, params
->key
, params
->key_len
,
433 key_index
, peer_mac
, 0)) {
434 wiphy_err(wiphy
, "crypto keys added\n");
442 * This function sends domain information to the firmware.
444 * The following information are passed to the firmware -
446 * - Sub bands (first channel, number of channels, maximum Tx power)
448 static int mwifiex_send_domain_info_cmd_fw(struct wiphy
*wiphy
)
450 u8 no_of_triplet
= 0;
451 struct ieee80211_country_ie_triplet
*t
;
452 u8 no_of_parsed_chan
= 0;
453 u8 first_chan
= 0, next_chan
= 0, max_pwr
= 0;
455 enum ieee80211_band band
;
456 struct ieee80211_supported_band
*sband
;
457 struct ieee80211_channel
*ch
;
458 struct mwifiex_adapter
*adapter
= mwifiex_cfg80211_get_adapter(wiphy
);
459 struct mwifiex_private
*priv
;
460 struct mwifiex_802_11d_domain_reg
*domain_info
= &adapter
->domain_reg
;
462 /* Set country code */
463 domain_info
->country_code
[0] = adapter
->country_code
[0];
464 domain_info
->country_code
[1] = adapter
->country_code
[1];
465 domain_info
->country_code
[2] = ' ';
467 band
= mwifiex_band_to_radio_type(adapter
->config_bands
);
468 if (!wiphy
->bands
[band
]) {
469 wiphy_err(wiphy
, "11D: setting domain info in FW\n");
473 sband
= wiphy
->bands
[band
];
475 for (i
= 0; i
< sband
->n_channels
; i
++) {
476 ch
= &sband
->channels
[i
];
477 if (ch
->flags
& IEEE80211_CHAN_DISABLED
)
482 first_chan
= (u32
) ch
->hw_value
;
483 next_chan
= first_chan
;
484 max_pwr
= ch
->max_power
;
485 no_of_parsed_chan
= 1;
489 if (ch
->hw_value
== next_chan
+ 1 &&
490 ch
->max_power
== max_pwr
) {
494 t
= &domain_info
->triplet
[no_of_triplet
];
495 t
->chans
.first_channel
= first_chan
;
496 t
->chans
.num_channels
= no_of_parsed_chan
;
497 t
->chans
.max_power
= max_pwr
;
499 first_chan
= (u32
) ch
->hw_value
;
500 next_chan
= first_chan
;
501 max_pwr
= ch
->max_power
;
502 no_of_parsed_chan
= 1;
507 t
= &domain_info
->triplet
[no_of_triplet
];
508 t
->chans
.first_channel
= first_chan
;
509 t
->chans
.num_channels
= no_of_parsed_chan
;
510 t
->chans
.max_power
= max_pwr
;
514 domain_info
->no_of_triplet
= no_of_triplet
;
516 priv
= mwifiex_get_priv(adapter
, MWIFIEX_BSS_ROLE_ANY
);
518 if (mwifiex_send_cmd_async(priv
, HostCmd_CMD_802_11D_DOMAIN_INFO
,
519 HostCmd_ACT_GEN_SET
, 0, NULL
)) {
520 wiphy_err(wiphy
, "11D: setting domain info in FW\n");
528 * CFG802.11 regulatory domain callback function.
530 * This function is called when the regulatory domain is changed due to the
531 * following reasons -
533 * - Set by system core
535 * - Set bt Country IE
537 static void mwifiex_reg_notifier(struct wiphy
*wiphy
,
538 struct regulatory_request
*request
)
540 struct mwifiex_adapter
*adapter
= mwifiex_cfg80211_get_adapter(wiphy
);
541 struct mwifiex_private
*priv
= mwifiex_get_priv(adapter
,
542 MWIFIEX_BSS_ROLE_ANY
);
544 wiphy_dbg(wiphy
, "info: cfg80211 regulatory domain callback for %c%c\n",
545 request
->alpha2
[0], request
->alpha2
[1]);
547 switch (request
->initiator
) {
548 case NL80211_REGDOM_SET_BY_DRIVER
:
549 case NL80211_REGDOM_SET_BY_CORE
:
550 case NL80211_REGDOM_SET_BY_USER
:
551 case NL80211_REGDOM_SET_BY_COUNTRY_IE
:
554 wiphy_err(wiphy
, "unknown regdom initiator: %d\n",
559 /* Don't send world or same regdom info to firmware */
560 if (strncmp(request
->alpha2
, "00", 2) &&
561 strncmp(request
->alpha2
, adapter
->country_code
,
562 sizeof(request
->alpha2
))) {
563 memcpy(adapter
->country_code
, request
->alpha2
,
564 sizeof(request
->alpha2
));
565 mwifiex_send_domain_info_cmd_fw(wiphy
);
566 mwifiex_dnld_txpwr_table(priv
);
571 * This function sets the fragmentation threshold.
573 * The fragmentation threshold value must lie between MWIFIEX_FRAG_MIN_VALUE
574 * and MWIFIEX_FRAG_MAX_VALUE.
577 mwifiex_set_frag(struct mwifiex_private
*priv
, u32 frag_thr
)
579 if (frag_thr
< MWIFIEX_FRAG_MIN_VALUE
||
580 frag_thr
> MWIFIEX_FRAG_MAX_VALUE
)
581 frag_thr
= MWIFIEX_FRAG_MAX_VALUE
;
583 return mwifiex_send_cmd_sync(priv
, HostCmd_CMD_802_11_SNMP_MIB
,
584 HostCmd_ACT_GEN_SET
, FRAG_THRESH_I
,
589 * This function sets the RTS threshold.
591 * The rts value must lie between MWIFIEX_RTS_MIN_VALUE
592 * and MWIFIEX_RTS_MAX_VALUE.
595 mwifiex_set_rts(struct mwifiex_private
*priv
, u32 rts_thr
)
597 if (rts_thr
< MWIFIEX_RTS_MIN_VALUE
|| rts_thr
> MWIFIEX_RTS_MAX_VALUE
)
598 rts_thr
= MWIFIEX_RTS_MAX_VALUE
;
600 return mwifiex_send_cmd_sync(priv
, HostCmd_CMD_802_11_SNMP_MIB
,
601 HostCmd_ACT_GEN_SET
, RTS_THRESH_I
,
606 * CFG802.11 operation handler to set wiphy parameters.
608 * This function can be used to set the RTS threshold and the
609 * Fragmentation threshold of the driver.
612 mwifiex_cfg80211_set_wiphy_params(struct wiphy
*wiphy
, u32 changed
)
614 struct mwifiex_adapter
*adapter
= mwifiex_cfg80211_get_adapter(wiphy
);
615 struct mwifiex_private
*priv
;
616 struct mwifiex_uap_bss_param
*bss_cfg
;
617 int ret
, bss_started
, i
;
619 for (i
= 0; i
< adapter
->priv_num
; i
++) {
620 priv
= adapter
->priv
[i
];
622 switch (priv
->bss_role
) {
623 case MWIFIEX_BSS_ROLE_UAP
:
624 bss_cfg
= kzalloc(sizeof(struct mwifiex_uap_bss_param
),
629 mwifiex_set_sys_config_invalid_data(bss_cfg
);
631 if (changed
& WIPHY_PARAM_RTS_THRESHOLD
)
632 bss_cfg
->rts_threshold
= wiphy
->rts_threshold
;
633 if (changed
& WIPHY_PARAM_FRAG_THRESHOLD
)
634 bss_cfg
->frag_threshold
= wiphy
->frag_threshold
;
635 if (changed
& WIPHY_PARAM_RETRY_LONG
)
636 bss_cfg
->retry_limit
= wiphy
->retry_long
;
638 bss_started
= priv
->bss_started
;
640 ret
= mwifiex_send_cmd_sync(priv
,
641 HostCmd_CMD_UAP_BSS_STOP
,
642 HostCmd_ACT_GEN_SET
, 0,
645 wiphy_err(wiphy
, "Failed to stop the BSS\n");
650 ret
= mwifiex_send_cmd_async(priv
,
651 HostCmd_CMD_UAP_SYS_CONFIG
,
653 UAP_BSS_PARAMS_I
, bss_cfg
);
658 wiphy_err(wiphy
, "Failed to set bss config\n");
665 ret
= mwifiex_send_cmd_async(priv
,
666 HostCmd_CMD_UAP_BSS_START
,
667 HostCmd_ACT_GEN_SET
, 0,
670 wiphy_err(wiphy
, "Failed to start BSS\n");
675 case MWIFIEX_BSS_ROLE_STA
:
676 if (changed
& WIPHY_PARAM_RTS_THRESHOLD
) {
677 ret
= mwifiex_set_rts(priv
,
678 wiphy
->rts_threshold
);
682 if (changed
& WIPHY_PARAM_FRAG_THRESHOLD
) {
683 ret
= mwifiex_set_frag(priv
,
684 wiphy
->frag_threshold
);
696 mwifiex_cfg80211_deinit_p2p(struct mwifiex_private
*priv
)
698 u16 mode
= P2P_MODE_DISABLE
;
700 if (GET_BSS_ROLE(priv
) != MWIFIEX_BSS_ROLE_STA
)
701 mwifiex_set_bss_role(priv
, MWIFIEX_BSS_ROLE_STA
);
703 if (mwifiex_send_cmd_sync(priv
, HostCmd_CMD_P2P_MODE_CFG
,
704 HostCmd_ACT_GEN_SET
, 0, &mode
))
711 * This function initializes the functionalities for P2P client.
712 * The P2P client initialization sequence is:
713 * disable -> device -> client
716 mwifiex_cfg80211_init_p2p_client(struct mwifiex_private
*priv
)
720 if (mwifiex_cfg80211_deinit_p2p(priv
))
723 mode
= P2P_MODE_DEVICE
;
724 if (mwifiex_send_cmd_sync(priv
, HostCmd_CMD_P2P_MODE_CFG
,
725 HostCmd_ACT_GEN_SET
, 0, &mode
))
728 mode
= P2P_MODE_CLIENT
;
729 if (mwifiex_send_cmd_sync(priv
, HostCmd_CMD_P2P_MODE_CFG
,
730 HostCmd_ACT_GEN_SET
, 0, &mode
))
737 * This function initializes the functionalities for P2P GO.
738 * The P2P GO initialization sequence is:
739 * disable -> device -> GO
742 mwifiex_cfg80211_init_p2p_go(struct mwifiex_private
*priv
)
746 if (mwifiex_cfg80211_deinit_p2p(priv
))
749 mode
= P2P_MODE_DEVICE
;
750 if (mwifiex_send_cmd_sync(priv
, HostCmd_CMD_P2P_MODE_CFG
,
751 HostCmd_ACT_GEN_SET
, 0, &mode
))
755 if (mwifiex_send_cmd_sync(priv
, HostCmd_CMD_P2P_MODE_CFG
,
756 HostCmd_ACT_GEN_SET
, 0, &mode
))
759 if (GET_BSS_ROLE(priv
) != MWIFIEX_BSS_ROLE_UAP
)
760 mwifiex_set_bss_role(priv
, MWIFIEX_BSS_ROLE_UAP
);
766 * CFG802.11 operation handler to change interface type.
769 mwifiex_cfg80211_change_virtual_intf(struct wiphy
*wiphy
,
770 struct net_device
*dev
,
771 enum nl80211_iftype type
, u32
*flags
,
772 struct vif_params
*params
)
775 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(dev
);
777 switch (dev
->ieee80211_ptr
->iftype
) {
778 case NL80211_IFTYPE_ADHOC
:
780 case NL80211_IFTYPE_STATION
:
782 case NL80211_IFTYPE_UNSPECIFIED
:
783 wiphy_warn(wiphy
, "%s: kept type as IBSS\n", dev
->name
);
784 case NL80211_IFTYPE_ADHOC
: /* This shouldn't happen */
786 case NL80211_IFTYPE_AP
:
788 wiphy_err(wiphy
, "%s: changing to %d not supported\n",
793 case NL80211_IFTYPE_STATION
:
795 case NL80211_IFTYPE_ADHOC
:
797 case NL80211_IFTYPE_P2P_CLIENT
:
798 if (mwifiex_cfg80211_init_p2p_client(priv
))
800 dev
->ieee80211_ptr
->iftype
= type
;
802 case NL80211_IFTYPE_P2P_GO
:
803 if (mwifiex_cfg80211_init_p2p_go(priv
))
805 dev
->ieee80211_ptr
->iftype
= type
;
807 case NL80211_IFTYPE_UNSPECIFIED
:
808 wiphy_warn(wiphy
, "%s: kept type as STA\n", dev
->name
);
809 case NL80211_IFTYPE_STATION
: /* This shouldn't happen */
811 case NL80211_IFTYPE_AP
:
813 wiphy_err(wiphy
, "%s: changing to %d not supported\n",
818 case NL80211_IFTYPE_AP
:
820 case NL80211_IFTYPE_UNSPECIFIED
:
821 wiphy_warn(wiphy
, "%s: kept type as AP\n", dev
->name
);
822 case NL80211_IFTYPE_AP
: /* This shouldn't happen */
824 case NL80211_IFTYPE_ADHOC
:
825 case NL80211_IFTYPE_STATION
:
827 wiphy_err(wiphy
, "%s: changing to %d not supported\n",
832 case NL80211_IFTYPE_P2P_CLIENT
:
833 case NL80211_IFTYPE_P2P_GO
:
835 case NL80211_IFTYPE_STATION
:
836 if (mwifiex_cfg80211_deinit_p2p(priv
))
838 dev
->ieee80211_ptr
->iftype
= type
;
845 wiphy_err(wiphy
, "%s: unknown iftype: %d\n",
846 dev
->name
, dev
->ieee80211_ptr
->iftype
);
850 dev
->ieee80211_ptr
->iftype
= type
;
851 priv
->bss_mode
= type
;
852 mwifiex_deauthenticate(priv
, NULL
);
854 priv
->sec_info
.authentication_mode
= NL80211_AUTHTYPE_OPEN_SYSTEM
;
856 ret
= mwifiex_send_cmd_sync(priv
, HostCmd_CMD_SET_BSS_MODE
,
857 HostCmd_ACT_GEN_SET
, 0, NULL
);
863 mwifiex_parse_htinfo(struct mwifiex_private
*priv
, u8 tx_htinfo
,
864 struct rate_info
*rate
)
866 struct mwifiex_adapter
*adapter
= priv
->adapter
;
868 if (adapter
->is_hw_11ac_capable
) {
869 /* bit[1-0]: 00=LG 01=HT 10=VHT */
870 if (tx_htinfo
& BIT(0)) {
872 rate
->mcs
= priv
->tx_rate
;
873 rate
->flags
|= RATE_INFO_FLAGS_MCS
;
875 if (tx_htinfo
& BIT(1)) {
877 rate
->mcs
= priv
->tx_rate
& 0x0F;
878 rate
->flags
|= RATE_INFO_FLAGS_VHT_MCS
;
881 if (tx_htinfo
& (BIT(1) | BIT(0))) {
883 switch (tx_htinfo
& (BIT(3) | BIT(2))) {
885 /* This will be 20MHz */
888 rate
->flags
|= RATE_INFO_FLAGS_40_MHZ_WIDTH
;
891 rate
->flags
|= RATE_INFO_FLAGS_80_MHZ_WIDTH
;
893 case (BIT(3) | BIT(2)):
894 rate
->flags
|= RATE_INFO_FLAGS_160_MHZ_WIDTH
;
898 if (tx_htinfo
& BIT(4))
899 rate
->flags
|= RATE_INFO_FLAGS_SHORT_GI
;
901 if ((priv
->tx_rate
>> 4) == 1)
908 * Bit 0 in tx_htinfo indicates that current Tx rate
909 * is 11n rate. Valid MCS index values for us are 0 to 15.
911 if ((tx_htinfo
& BIT(0)) && (priv
->tx_rate
< 16)) {
912 rate
->mcs
= priv
->tx_rate
;
913 rate
->flags
|= RATE_INFO_FLAGS_MCS
;
914 if (tx_htinfo
& BIT(1))
915 rate
->flags
|= RATE_INFO_FLAGS_40_MHZ_WIDTH
;
916 if (tx_htinfo
& BIT(2))
917 rate
->flags
|= RATE_INFO_FLAGS_SHORT_GI
;
923 * This function dumps the station information on a buffer.
925 * The following information are shown -
926 * - Total bytes transmitted
927 * - Total bytes received
928 * - Total packets transmitted
929 * - Total packets received
930 * - Signal quality level
931 * - Transmission rate
934 mwifiex_dump_station_info(struct mwifiex_private
*priv
,
935 struct station_info
*sinfo
)
939 sinfo
->filled
= STATION_INFO_RX_BYTES
| STATION_INFO_TX_BYTES
|
940 STATION_INFO_RX_PACKETS
| STATION_INFO_TX_PACKETS
|
941 STATION_INFO_TX_BITRATE
|
942 STATION_INFO_SIGNAL
| STATION_INFO_SIGNAL_AVG
;
944 /* Get signal information from the firmware */
945 if (mwifiex_send_cmd_sync(priv
, HostCmd_CMD_RSSI_INFO
,
946 HostCmd_ACT_GEN_GET
, 0, NULL
)) {
947 dev_err(priv
->adapter
->dev
, "failed to get signal information\n");
951 if (mwifiex_drv_get_data_rate(priv
, &rate
)) {
952 dev_err(priv
->adapter
->dev
, "getting data rate\n");
956 /* Get DTIM period information from firmware */
957 mwifiex_send_cmd_sync(priv
, HostCmd_CMD_802_11_SNMP_MIB
,
958 HostCmd_ACT_GEN_GET
, DTIM_PERIOD_I
,
961 mwifiex_parse_htinfo(priv
, priv
->tx_htinfo
, &sinfo
->txrate
);
963 sinfo
->signal_avg
= priv
->bcn_rssi_avg
;
964 sinfo
->rx_bytes
= priv
->stats
.rx_bytes
;
965 sinfo
->tx_bytes
= priv
->stats
.tx_bytes
;
966 sinfo
->rx_packets
= priv
->stats
.rx_packets
;
967 sinfo
->tx_packets
= priv
->stats
.tx_packets
;
968 sinfo
->signal
= priv
->bcn_rssi_avg
;
969 /* bit rate is in 500 kb/s units. Convert it to 100kb/s units */
970 sinfo
->txrate
.legacy
= rate
* 5;
972 if (priv
->bss_mode
== NL80211_IFTYPE_STATION
) {
973 sinfo
->filled
|= STATION_INFO_BSS_PARAM
;
974 sinfo
->bss_param
.flags
= 0;
975 if (priv
->curr_bss_params
.bss_descriptor
.cap_info_bitmap
&
976 WLAN_CAPABILITY_SHORT_PREAMBLE
)
977 sinfo
->bss_param
.flags
|=
978 BSS_PARAM_FLAGS_SHORT_PREAMBLE
;
979 if (priv
->curr_bss_params
.bss_descriptor
.cap_info_bitmap
&
980 WLAN_CAPABILITY_SHORT_SLOT_TIME
)
981 sinfo
->bss_param
.flags
|=
982 BSS_PARAM_FLAGS_SHORT_SLOT_TIME
;
983 sinfo
->bss_param
.dtim_period
= priv
->dtim_period
;
984 sinfo
->bss_param
.beacon_interval
=
985 priv
->curr_bss_params
.bss_descriptor
.beacon_period
;
992 * CFG802.11 operation handler to get station information.
994 * This function only works in connected mode, and dumps the
995 * requested station information, if available.
998 mwifiex_cfg80211_get_station(struct wiphy
*wiphy
, struct net_device
*dev
,
999 u8
*mac
, struct station_info
*sinfo
)
1001 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(dev
);
1003 if (!priv
->media_connected
)
1005 if (memcmp(mac
, priv
->cfg_bssid
, ETH_ALEN
))
1008 return mwifiex_dump_station_info(priv
, sinfo
);
1012 * CFG802.11 operation handler to dump station information.
1015 mwifiex_cfg80211_dump_station(struct wiphy
*wiphy
, struct net_device
*dev
,
1016 int idx
, u8
*mac
, struct station_info
*sinfo
)
1018 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(dev
);
1020 if (!priv
->media_connected
|| idx
)
1023 memcpy(mac
, priv
->cfg_bssid
, ETH_ALEN
);
1025 return mwifiex_dump_station_info(priv
, sinfo
);
1028 /* Supported rates to be advertised to the cfg80211 */
1029 static struct ieee80211_rate mwifiex_rates
[] = {
1030 {.bitrate
= 10, .hw_value
= 2, },
1031 {.bitrate
= 20, .hw_value
= 4, },
1032 {.bitrate
= 55, .hw_value
= 11, },
1033 {.bitrate
= 110, .hw_value
= 22, },
1034 {.bitrate
= 60, .hw_value
= 12, },
1035 {.bitrate
= 90, .hw_value
= 18, },
1036 {.bitrate
= 120, .hw_value
= 24, },
1037 {.bitrate
= 180, .hw_value
= 36, },
1038 {.bitrate
= 240, .hw_value
= 48, },
1039 {.bitrate
= 360, .hw_value
= 72, },
1040 {.bitrate
= 480, .hw_value
= 96, },
1041 {.bitrate
= 540, .hw_value
= 108, },
1044 /* Channel definitions to be advertised to cfg80211 */
1045 static struct ieee80211_channel mwifiex_channels_2ghz
[] = {
1046 {.center_freq
= 2412, .hw_value
= 1, },
1047 {.center_freq
= 2417, .hw_value
= 2, },
1048 {.center_freq
= 2422, .hw_value
= 3, },
1049 {.center_freq
= 2427, .hw_value
= 4, },
1050 {.center_freq
= 2432, .hw_value
= 5, },
1051 {.center_freq
= 2437, .hw_value
= 6, },
1052 {.center_freq
= 2442, .hw_value
= 7, },
1053 {.center_freq
= 2447, .hw_value
= 8, },
1054 {.center_freq
= 2452, .hw_value
= 9, },
1055 {.center_freq
= 2457, .hw_value
= 10, },
1056 {.center_freq
= 2462, .hw_value
= 11, },
1057 {.center_freq
= 2467, .hw_value
= 12, },
1058 {.center_freq
= 2472, .hw_value
= 13, },
1059 {.center_freq
= 2484, .hw_value
= 14, },
1062 static struct ieee80211_supported_band mwifiex_band_2ghz
= {
1063 .channels
= mwifiex_channels_2ghz
,
1064 .n_channels
= ARRAY_SIZE(mwifiex_channels_2ghz
),
1065 .bitrates
= mwifiex_rates
,
1066 .n_bitrates
= ARRAY_SIZE(mwifiex_rates
),
1069 static struct ieee80211_channel mwifiex_channels_5ghz
[] = {
1070 {.center_freq
= 5040, .hw_value
= 8, },
1071 {.center_freq
= 5060, .hw_value
= 12, },
1072 {.center_freq
= 5080, .hw_value
= 16, },
1073 {.center_freq
= 5170, .hw_value
= 34, },
1074 {.center_freq
= 5190, .hw_value
= 38, },
1075 {.center_freq
= 5210, .hw_value
= 42, },
1076 {.center_freq
= 5230, .hw_value
= 46, },
1077 {.center_freq
= 5180, .hw_value
= 36, },
1078 {.center_freq
= 5200, .hw_value
= 40, },
1079 {.center_freq
= 5220, .hw_value
= 44, },
1080 {.center_freq
= 5240, .hw_value
= 48, },
1081 {.center_freq
= 5260, .hw_value
= 52, },
1082 {.center_freq
= 5280, .hw_value
= 56, },
1083 {.center_freq
= 5300, .hw_value
= 60, },
1084 {.center_freq
= 5320, .hw_value
= 64, },
1085 {.center_freq
= 5500, .hw_value
= 100, },
1086 {.center_freq
= 5520, .hw_value
= 104, },
1087 {.center_freq
= 5540, .hw_value
= 108, },
1088 {.center_freq
= 5560, .hw_value
= 112, },
1089 {.center_freq
= 5580, .hw_value
= 116, },
1090 {.center_freq
= 5600, .hw_value
= 120, },
1091 {.center_freq
= 5620, .hw_value
= 124, },
1092 {.center_freq
= 5640, .hw_value
= 128, },
1093 {.center_freq
= 5660, .hw_value
= 132, },
1094 {.center_freq
= 5680, .hw_value
= 136, },
1095 {.center_freq
= 5700, .hw_value
= 140, },
1096 {.center_freq
= 5745, .hw_value
= 149, },
1097 {.center_freq
= 5765, .hw_value
= 153, },
1098 {.center_freq
= 5785, .hw_value
= 157, },
1099 {.center_freq
= 5805, .hw_value
= 161, },
1100 {.center_freq
= 5825, .hw_value
= 165, },
1103 static struct ieee80211_supported_band mwifiex_band_5ghz
= {
1104 .channels
= mwifiex_channels_5ghz
,
1105 .n_channels
= ARRAY_SIZE(mwifiex_channels_5ghz
),
1106 .bitrates
= mwifiex_rates
+ 4,
1107 .n_bitrates
= ARRAY_SIZE(mwifiex_rates
) - 4,
1111 /* Supported crypto cipher suits to be advertised to cfg80211 */
1112 static const u32 mwifiex_cipher_suites
[] = {
1113 WLAN_CIPHER_SUITE_WEP40
,
1114 WLAN_CIPHER_SUITE_WEP104
,
1115 WLAN_CIPHER_SUITE_TKIP
,
1116 WLAN_CIPHER_SUITE_CCMP
,
1117 WLAN_CIPHER_SUITE_AES_CMAC
,
1120 /* Supported mgmt frame types to be advertised to cfg80211 */
1121 static const struct ieee80211_txrx_stypes
1122 mwifiex_mgmt_stypes
[NUM_NL80211_IFTYPES
] = {
1123 [NL80211_IFTYPE_STATION
] = {
1124 .tx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
1125 BIT(IEEE80211_STYPE_PROBE_RESP
>> 4),
1126 .rx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
1127 BIT(IEEE80211_STYPE_PROBE_REQ
>> 4),
1129 [NL80211_IFTYPE_AP
] = {
1130 .tx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
1131 BIT(IEEE80211_STYPE_PROBE_RESP
>> 4),
1132 .rx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
1133 BIT(IEEE80211_STYPE_PROBE_REQ
>> 4),
1135 [NL80211_IFTYPE_P2P_CLIENT
] = {
1136 .tx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
1137 BIT(IEEE80211_STYPE_PROBE_RESP
>> 4),
1138 .rx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
1139 BIT(IEEE80211_STYPE_PROBE_REQ
>> 4),
1141 [NL80211_IFTYPE_P2P_GO
] = {
1142 .tx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
1143 BIT(IEEE80211_STYPE_PROBE_RESP
>> 4),
1144 .rx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
1145 BIT(IEEE80211_STYPE_PROBE_REQ
>> 4),
1150 * CFG802.11 operation handler for setting bit rates.
1152 * Function configures data rates to firmware using bitrate mask
1153 * provided by cfg80211.
1155 static int mwifiex_cfg80211_set_bitrate_mask(struct wiphy
*wiphy
,
1156 struct net_device
*dev
,
1158 const struct cfg80211_bitrate_mask
*mask
)
1160 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(dev
);
1161 u16 bitmap_rates
[MAX_BITMAP_RATES_SIZE
];
1162 enum ieee80211_band band
;
1164 if (!priv
->media_connected
) {
1165 dev_err(priv
->adapter
->dev
,
1166 "Can not set Tx data rate in disconnected state\n");
1170 band
= mwifiex_band_to_radio_type(priv
->curr_bss_params
.band
);
1172 memset(bitmap_rates
, 0, sizeof(bitmap_rates
));
1174 /* Fill HR/DSSS rates. */
1175 if (band
== IEEE80211_BAND_2GHZ
)
1176 bitmap_rates
[0] = mask
->control
[band
].legacy
& 0x000f;
1178 /* Fill OFDM rates */
1179 if (band
== IEEE80211_BAND_2GHZ
)
1180 bitmap_rates
[1] = (mask
->control
[band
].legacy
& 0x0ff0) >> 4;
1182 bitmap_rates
[1] = mask
->control
[band
].legacy
;
1184 /* Fill HT MCS rates */
1185 bitmap_rates
[2] = mask
->control
[band
].ht_mcs
[0];
1186 if (priv
->adapter
->hw_dev_mcs_support
== HT_STREAM_2X2
)
1187 bitmap_rates
[2] |= mask
->control
[band
].ht_mcs
[1] << 8;
1189 return mwifiex_send_cmd_sync(priv
, HostCmd_CMD_TX_RATE_CFG
,
1190 HostCmd_ACT_GEN_SET
, 0, bitmap_rates
);
1194 * CFG802.11 operation handler for connection quality monitoring.
1196 * This function subscribes/unsubscribes HIGH_RSSI and LOW_RSSI
1199 static int mwifiex_cfg80211_set_cqm_rssi_config(struct wiphy
*wiphy
,
1200 struct net_device
*dev
,
1201 s32 rssi_thold
, u32 rssi_hyst
)
1203 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(dev
);
1204 struct mwifiex_ds_misc_subsc_evt subsc_evt
;
1206 priv
->cqm_rssi_thold
= rssi_thold
;
1207 priv
->cqm_rssi_hyst
= rssi_hyst
;
1209 memset(&subsc_evt
, 0x00, sizeof(struct mwifiex_ds_misc_subsc_evt
));
1210 subsc_evt
.events
= BITMASK_BCN_RSSI_LOW
| BITMASK_BCN_RSSI_HIGH
;
1212 /* Subscribe/unsubscribe low and high rssi events */
1213 if (rssi_thold
&& rssi_hyst
) {
1214 subsc_evt
.action
= HostCmd_ACT_BITWISE_SET
;
1215 subsc_evt
.bcn_l_rssi_cfg
.abs_value
= abs(rssi_thold
);
1216 subsc_evt
.bcn_h_rssi_cfg
.abs_value
= abs(rssi_thold
);
1217 subsc_evt
.bcn_l_rssi_cfg
.evt_freq
= 1;
1218 subsc_evt
.bcn_h_rssi_cfg
.evt_freq
= 1;
1219 return mwifiex_send_cmd_sync(priv
,
1220 HostCmd_CMD_802_11_SUBSCRIBE_EVENT
,
1223 subsc_evt
.action
= HostCmd_ACT_BITWISE_CLR
;
1224 return mwifiex_send_cmd_sync(priv
,
1225 HostCmd_CMD_802_11_SUBSCRIBE_EVENT
,
1232 /* cfg80211 operation handler for change_beacon.
1233 * Function retrieves and sets modified management IEs to FW.
1235 static int mwifiex_cfg80211_change_beacon(struct wiphy
*wiphy
,
1236 struct net_device
*dev
,
1237 struct cfg80211_beacon_data
*data
)
1239 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(dev
);
1241 if (GET_BSS_ROLE(priv
) != MWIFIEX_BSS_ROLE_UAP
) {
1242 wiphy_err(wiphy
, "%s: bss_type mismatched\n", __func__
);
1246 if (!priv
->bss_started
) {
1247 wiphy_err(wiphy
, "%s: bss not started\n", __func__
);
1251 if (mwifiex_set_mgmt_ies(priv
, data
)) {
1252 wiphy_err(wiphy
, "%s: setting mgmt ies failed\n", __func__
);
1259 /* cfg80211 operation handler for del_station.
1260 * Function deauthenticates station which value is provided in mac parameter.
1261 * If mac is NULL/broadcast, all stations in associated station list are
1262 * deauthenticated. If bss is not started or there are no stations in
1263 * associated stations list, no action is taken.
1266 mwifiex_cfg80211_del_station(struct wiphy
*wiphy
, struct net_device
*dev
,
1269 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(dev
);
1270 struct mwifiex_sta_node
*sta_node
;
1271 unsigned long flags
;
1273 if (list_empty(&priv
->sta_list
) || !priv
->bss_started
)
1276 if (!mac
|| is_broadcast_ether_addr(mac
)) {
1277 wiphy_dbg(wiphy
, "%s: NULL/broadcast mac address\n", __func__
);
1278 list_for_each_entry(sta_node
, &priv
->sta_list
, list
) {
1279 if (mwifiex_send_cmd_sync(priv
,
1280 HostCmd_CMD_UAP_STA_DEAUTH
,
1281 HostCmd_ACT_GEN_SET
, 0,
1282 sta_node
->mac_addr
))
1284 mwifiex_uap_del_sta_data(priv
, sta_node
);
1287 wiphy_dbg(wiphy
, "%s: mac address %pM\n", __func__
, mac
);
1288 spin_lock_irqsave(&priv
->sta_list_spinlock
, flags
);
1289 sta_node
= mwifiex_get_sta_entry(priv
, mac
);
1290 spin_unlock_irqrestore(&priv
->sta_list_spinlock
, flags
);
1292 if (mwifiex_send_cmd_sync(priv
,
1293 HostCmd_CMD_UAP_STA_DEAUTH
,
1294 HostCmd_ACT_GEN_SET
, 0,
1295 sta_node
->mac_addr
))
1297 mwifiex_uap_del_sta_data(priv
, sta_node
);
1305 mwifiex_cfg80211_set_antenna(struct wiphy
*wiphy
, u32 tx_ant
, u32 rx_ant
)
1307 struct mwifiex_adapter
*adapter
= mwifiex_cfg80211_get_adapter(wiphy
);
1308 struct mwifiex_private
*priv
= mwifiex_get_priv(adapter
,
1309 MWIFIEX_BSS_ROLE_ANY
);
1310 struct mwifiex_ds_ant_cfg ant_cfg
;
1312 if (!tx_ant
|| !rx_ant
)
1315 if (adapter
->hw_dev_mcs_support
!= HT_STREAM_2X2
) {
1316 /* Not a MIMO chip. User should provide specific antenna number
1317 * for Tx/Rx path or enable all antennas for diversity
1319 if (tx_ant
!= rx_ant
)
1322 if ((tx_ant
& (tx_ant
- 1)) &&
1323 (tx_ant
!= BIT(adapter
->number_of_antenna
) - 1))
1326 if ((tx_ant
== BIT(adapter
->number_of_antenna
) - 1) &&
1327 (priv
->adapter
->number_of_antenna
> 1)) {
1328 tx_ant
= RF_ANTENNA_AUTO
;
1329 rx_ant
= RF_ANTENNA_AUTO
;
1333 ant_cfg
.tx_ant
= tx_ant
;
1334 ant_cfg
.rx_ant
= rx_ant
;
1336 return mwifiex_send_cmd_sync(priv
, HostCmd_CMD_RF_ANTENNA
,
1337 HostCmd_ACT_GEN_SET
, 0, &ant_cfg
);
1340 /* cfg80211 operation handler for stop ap.
1341 * Function stops BSS running at uAP interface.
1343 static int mwifiex_cfg80211_stop_ap(struct wiphy
*wiphy
, struct net_device
*dev
)
1345 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(dev
);
1347 if (mwifiex_del_mgmt_ies(priv
))
1348 wiphy_err(wiphy
, "Failed to delete mgmt IEs!\n");
1350 priv
->ap_11n_enabled
= 0;
1352 if (mwifiex_send_cmd_sync(priv
, HostCmd_CMD_UAP_BSS_STOP
,
1353 HostCmd_ACT_GEN_SET
, 0, NULL
)) {
1354 wiphy_err(wiphy
, "Failed to stop the BSS\n");
1361 /* cfg80211 operation handler for start_ap.
1362 * Function sets beacon period, DTIM period, SSID and security into
1363 * AP config structure.
1364 * AP is configured with these settings and BSS is started.
1366 static int mwifiex_cfg80211_start_ap(struct wiphy
*wiphy
,
1367 struct net_device
*dev
,
1368 struct cfg80211_ap_settings
*params
)
1370 struct mwifiex_uap_bss_param
*bss_cfg
;
1371 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(dev
);
1372 u8 config_bands
= 0;
1374 if (GET_BSS_ROLE(priv
) != MWIFIEX_BSS_ROLE_UAP
)
1376 if (mwifiex_set_mgmt_ies(priv
, ¶ms
->beacon
))
1379 bss_cfg
= kzalloc(sizeof(struct mwifiex_uap_bss_param
), GFP_KERNEL
);
1383 mwifiex_set_sys_config_invalid_data(bss_cfg
);
1385 if (params
->beacon_interval
)
1386 bss_cfg
->beacon_period
= params
->beacon_interval
;
1387 if (params
->dtim_period
)
1388 bss_cfg
->dtim_period
= params
->dtim_period
;
1390 if (params
->ssid
&& params
->ssid_len
) {
1391 memcpy(bss_cfg
->ssid
.ssid
, params
->ssid
, params
->ssid_len
);
1392 bss_cfg
->ssid
.ssid_len
= params
->ssid_len
;
1395 switch (params
->hidden_ssid
) {
1396 case NL80211_HIDDEN_SSID_NOT_IN_USE
:
1397 bss_cfg
->bcast_ssid_ctl
= 1;
1399 case NL80211_HIDDEN_SSID_ZERO_LEN
:
1400 bss_cfg
->bcast_ssid_ctl
= 0;
1402 case NL80211_HIDDEN_SSID_ZERO_CONTENTS
:
1403 /* firmware doesn't support this type of hidden SSID */
1409 bss_cfg
->channel
= ieee80211_frequency_to_channel(
1410 params
->chandef
.chan
->center_freq
);
1412 /* Set appropriate bands */
1413 if (params
->chandef
.chan
->band
== IEEE80211_BAND_2GHZ
) {
1414 bss_cfg
->band_cfg
= BAND_CONFIG_BG
;
1415 config_bands
= BAND_B
| BAND_G
;
1417 if (params
->chandef
.width
> NL80211_CHAN_WIDTH_20_NOHT
)
1418 config_bands
|= BAND_GN
;
1420 if (params
->chandef
.width
> NL80211_CHAN_WIDTH_40
)
1421 config_bands
|= BAND_GAC
;
1423 bss_cfg
->band_cfg
= BAND_CONFIG_A
;
1424 config_bands
= BAND_A
;
1426 if (params
->chandef
.width
> NL80211_CHAN_WIDTH_20_NOHT
)
1427 config_bands
|= BAND_AN
;
1429 if (params
->chandef
.width
> NL80211_CHAN_WIDTH_40
)
1430 config_bands
|= BAND_AAC
;
1433 if (!((config_bands
| priv
->adapter
->fw_bands
) &
1434 ~priv
->adapter
->fw_bands
))
1435 priv
->adapter
->config_bands
= config_bands
;
1437 mwifiex_set_uap_rates(bss_cfg
, params
);
1438 mwifiex_send_domain_info_cmd_fw(wiphy
);
1440 if (mwifiex_set_secure_params(priv
, bss_cfg
, params
)) {
1442 wiphy_err(wiphy
, "Failed to parse secuirty parameters!\n");
1446 mwifiex_set_ht_params(priv
, bss_cfg
, params
);
1448 if (priv
->adapter
->is_hw_11ac_capable
) {
1449 mwifiex_set_vht_params(priv
, bss_cfg
, params
);
1450 mwifiex_set_vht_width(priv
, params
->chandef
.width
,
1451 priv
->ap_11ac_enabled
);
1454 if (priv
->ap_11ac_enabled
)
1455 mwifiex_set_11ac_ba_params(priv
);
1457 mwifiex_set_ba_params(priv
);
1459 mwifiex_set_wmm_params(priv
, bss_cfg
, params
);
1461 if (params
->inactivity_timeout
> 0) {
1462 /* sta_ao_timer/ps_sta_ao_timer is in unit of 100ms */
1463 bss_cfg
->sta_ao_timer
= 10 * params
->inactivity_timeout
;
1464 bss_cfg
->ps_sta_ao_timer
= 10 * params
->inactivity_timeout
;
1467 if (mwifiex_send_cmd_sync(priv
, HostCmd_CMD_UAP_BSS_STOP
,
1468 HostCmd_ACT_GEN_SET
, 0, NULL
)) {
1469 wiphy_err(wiphy
, "Failed to stop the BSS\n");
1474 if (mwifiex_send_cmd_async(priv
, HostCmd_CMD_UAP_SYS_CONFIG
,
1475 HostCmd_ACT_GEN_SET
,
1476 UAP_BSS_PARAMS_I
, bss_cfg
)) {
1477 wiphy_err(wiphy
, "Failed to set the SSID\n");
1484 if (mwifiex_send_cmd_async(priv
, HostCmd_CMD_UAP_BSS_START
,
1485 HostCmd_ACT_GEN_SET
, 0, NULL
)) {
1486 wiphy_err(wiphy
, "Failed to start the BSS\n");
1490 if (priv
->sec_info
.wep_enabled
)
1491 priv
->curr_pkt_filter
|= HostCmd_ACT_MAC_WEP_ENABLE
;
1493 priv
->curr_pkt_filter
&= ~HostCmd_ACT_MAC_WEP_ENABLE
;
1495 if (mwifiex_send_cmd_sync(priv
, HostCmd_CMD_MAC_CONTROL
,
1496 HostCmd_ACT_GEN_SET
, 0,
1497 &priv
->curr_pkt_filter
))
1504 * CFG802.11 operation handler for disconnection request.
1506 * This function does not work when there is already a disconnection
1507 * procedure going on.
1510 mwifiex_cfg80211_disconnect(struct wiphy
*wiphy
, struct net_device
*dev
,
1513 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(dev
);
1515 if (mwifiex_deauthenticate(priv
, NULL
))
1518 wiphy_dbg(wiphy
, "info: successfully disconnected from %pM:"
1519 " reason code %d\n", priv
->cfg_bssid
, reason_code
);
1521 memset(priv
->cfg_bssid
, 0, ETH_ALEN
);
1522 priv
->hs2_enabled
= false;
1528 * This function informs the CFG802.11 subsystem of a new IBSS.
1530 * The following information are sent to the CFG802.11 subsystem
1531 * to register the new IBSS. If we do not register the new IBSS,
1532 * a kernel panic will result.
1538 static int mwifiex_cfg80211_inform_ibss_bss(struct mwifiex_private
*priv
)
1540 struct ieee80211_channel
*chan
;
1541 struct mwifiex_bss_info bss_info
;
1542 struct cfg80211_bss
*bss
;
1544 u8 ie_buf
[IEEE80211_MAX_SSID_LEN
+ sizeof(struct ieee_types_header
)];
1545 enum ieee80211_band band
;
1547 if (mwifiex_get_bss_info(priv
, &bss_info
))
1550 ie_buf
[0] = WLAN_EID_SSID
;
1551 ie_buf
[1] = bss_info
.ssid
.ssid_len
;
1553 memcpy(&ie_buf
[sizeof(struct ieee_types_header
)],
1554 &bss_info
.ssid
.ssid
, bss_info
.ssid
.ssid_len
);
1555 ie_len
= ie_buf
[1] + sizeof(struct ieee_types_header
);
1557 band
= mwifiex_band_to_radio_type(priv
->curr_bss_params
.band
);
1558 chan
= __ieee80211_get_channel(priv
->wdev
->wiphy
,
1559 ieee80211_channel_to_frequency(bss_info
.bss_chan
,
1562 bss
= cfg80211_inform_bss(priv
->wdev
->wiphy
, chan
,
1563 bss_info
.bssid
, 0, WLAN_CAPABILITY_IBSS
,
1564 0, ie_buf
, ie_len
, 0, GFP_KERNEL
);
1565 cfg80211_put_bss(priv
->wdev
->wiphy
, bss
);
1566 memcpy(priv
->cfg_bssid
, bss_info
.bssid
, ETH_ALEN
);
1572 * This function connects with a BSS.
1574 * This function handles both Infra and Ad-Hoc modes. It also performs
1575 * validity checking on the provided parameters, disconnects from the
1576 * current BSS (if any), sets up the association/scan parameters,
1577 * including security settings, and performs specific SSID scan before
1578 * trying to connect.
1580 * For Infra mode, the function returns failure if the specified SSID
1581 * is not found in scan table. However, for Ad-Hoc mode, it can create
1582 * the IBSS if it does not exist. On successful completion in either case,
1583 * the function notifies the CFG802.11 subsystem of the new BSS connection.
1586 mwifiex_cfg80211_assoc(struct mwifiex_private
*priv
, size_t ssid_len
, u8
*ssid
,
1587 u8
*bssid
, int mode
, struct ieee80211_channel
*channel
,
1588 struct cfg80211_connect_params
*sme
, bool privacy
)
1590 struct cfg80211_ssid req_ssid
;
1591 int ret
, auth_type
= 0;
1592 struct cfg80211_bss
*bss
= NULL
;
1593 u8 is_scanning_required
= 0;
1595 memset(&req_ssid
, 0, sizeof(struct cfg80211_ssid
));
1597 req_ssid
.ssid_len
= ssid_len
;
1598 if (ssid_len
> IEEE80211_MAX_SSID_LEN
) {
1599 dev_err(priv
->adapter
->dev
, "invalid SSID - aborting\n");
1603 memcpy(req_ssid
.ssid
, ssid
, ssid_len
);
1604 if (!req_ssid
.ssid_len
|| req_ssid
.ssid
[0] < 0x20) {
1605 dev_err(priv
->adapter
->dev
, "invalid SSID - aborting\n");
1609 /* disconnect before try to associate */
1610 mwifiex_deauthenticate(priv
, NULL
);
1612 /* As this is new association, clear locally stored
1613 * keys and security related flags */
1614 priv
->sec_info
.wpa_enabled
= false;
1615 priv
->sec_info
.wpa2_enabled
= false;
1616 priv
->wep_key_curr_index
= 0;
1617 priv
->sec_info
.encryption_mode
= 0;
1618 priv
->sec_info
.is_authtype_auto
= 0;
1619 ret
= mwifiex_set_encode(priv
, NULL
, NULL
, 0, 0, NULL
, 1);
1621 if (mode
== NL80211_IFTYPE_ADHOC
) {
1622 /* "privacy" is set only for ad-hoc mode */
1625 * Keep WLAN_CIPHER_SUITE_WEP104 for now so that
1626 * the firmware can find a matching network from the
1627 * scan. The cfg80211 does not give us the encryption
1628 * mode at this stage so just setting it to WEP here.
1630 priv
->sec_info
.encryption_mode
=
1631 WLAN_CIPHER_SUITE_WEP104
;
1632 priv
->sec_info
.authentication_mode
=
1633 NL80211_AUTHTYPE_OPEN_SYSTEM
;
1639 /* Now handle infra mode. "sme" is valid for infra mode only */
1640 if (sme
->auth_type
== NL80211_AUTHTYPE_AUTOMATIC
) {
1641 auth_type
= NL80211_AUTHTYPE_OPEN_SYSTEM
;
1642 priv
->sec_info
.is_authtype_auto
= 1;
1644 auth_type
= sme
->auth_type
;
1647 if (sme
->crypto
.n_ciphers_pairwise
) {
1648 priv
->sec_info
.encryption_mode
=
1649 sme
->crypto
.ciphers_pairwise
[0];
1650 priv
->sec_info
.authentication_mode
= auth_type
;
1653 if (sme
->crypto
.cipher_group
) {
1654 priv
->sec_info
.encryption_mode
= sme
->crypto
.cipher_group
;
1655 priv
->sec_info
.authentication_mode
= auth_type
;
1658 ret
= mwifiex_set_gen_ie(priv
, sme
->ie
, sme
->ie_len
);
1661 if (mwifiex_is_alg_wep(priv
->sec_info
.encryption_mode
)) {
1662 dev_dbg(priv
->adapter
->dev
,
1663 "info: setting wep encryption"
1664 " with key len %d\n", sme
->key_len
);
1665 priv
->wep_key_curr_index
= sme
->key_idx
;
1666 ret
= mwifiex_set_encode(priv
, NULL
, sme
->key
,
1667 sme
->key_len
, sme
->key_idx
,
1673 * Scan entries are valid for some time (15 sec). So we can save one
1674 * active scan time if we just try cfg80211_get_bss first. If it fails
1675 * then request scan and cfg80211_get_bss() again for final output.
1678 if (is_scanning_required
) {
1679 /* Do specific SSID scanning */
1680 if (mwifiex_request_scan(priv
, &req_ssid
)) {
1681 dev_err(priv
->adapter
->dev
, "scan error\n");
1686 /* Find the BSS we want using available scan results */
1687 if (mode
== NL80211_IFTYPE_ADHOC
)
1688 bss
= cfg80211_get_bss(priv
->wdev
->wiphy
, channel
,
1689 bssid
, ssid
, ssid_len
,
1690 WLAN_CAPABILITY_IBSS
,
1691 WLAN_CAPABILITY_IBSS
);
1693 bss
= cfg80211_get_bss(priv
->wdev
->wiphy
, channel
,
1694 bssid
, ssid
, ssid_len
,
1695 WLAN_CAPABILITY_ESS
,
1696 WLAN_CAPABILITY_ESS
);
1699 if (is_scanning_required
) {
1700 dev_warn(priv
->adapter
->dev
,
1701 "assoc: requested bss not found in scan results\n");
1704 is_scanning_required
= 1;
1706 dev_dbg(priv
->adapter
->dev
,
1707 "info: trying to associate to '%s' bssid %pM\n",
1708 (char *) req_ssid
.ssid
, bss
->bssid
);
1709 memcpy(&priv
->cfg_bssid
, bss
->bssid
, ETH_ALEN
);
1714 ret
= mwifiex_bss_start(priv
, bss
, &req_ssid
);
1718 if (mode
== NL80211_IFTYPE_ADHOC
) {
1719 /* Inform the BSS information to kernel, otherwise
1720 * kernel will give a panic after successful assoc */
1721 if (mwifiex_cfg80211_inform_ibss_bss(priv
))
1729 * CFG802.11 operation handler for association request.
1731 * This function does not work when the current mode is set to Ad-Hoc, or
1732 * when there is already an association procedure going on. The given BSS
1733 * information is used to associate.
1736 mwifiex_cfg80211_connect(struct wiphy
*wiphy
, struct net_device
*dev
,
1737 struct cfg80211_connect_params
*sme
)
1739 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(dev
);
1742 if (GET_BSS_ROLE(priv
) != MWIFIEX_BSS_ROLE_STA
) {
1744 "%s: reject infra assoc request in non-STA role\n",
1749 wiphy_dbg(wiphy
, "info: Trying to associate to %s and bssid %pM\n",
1750 (char *) sme
->ssid
, sme
->bssid
);
1752 ret
= mwifiex_cfg80211_assoc(priv
, sme
->ssid_len
, sme
->ssid
, sme
->bssid
,
1753 priv
->bss_mode
, sme
->channel
, sme
, 0);
1755 cfg80211_connect_result(priv
->netdev
, priv
->cfg_bssid
, NULL
, 0,
1756 NULL
, 0, WLAN_STATUS_SUCCESS
,
1758 dev_dbg(priv
->adapter
->dev
,
1759 "info: associated to bssid %pM successfully\n",
1762 dev_dbg(priv
->adapter
->dev
,
1763 "info: association to bssid %pM failed\n",
1765 memset(priv
->cfg_bssid
, 0, ETH_ALEN
);
1768 cfg80211_connect_result(priv
->netdev
, priv
->cfg_bssid
,
1769 NULL
, 0, NULL
, 0, ret
,
1772 cfg80211_connect_result(priv
->netdev
, priv
->cfg_bssid
,
1774 WLAN_STATUS_UNSPECIFIED_FAILURE
,
1782 * This function sets following parameters for ibss network.
1786 * - secondary channel offset
1788 static int mwifiex_set_ibss_params(struct mwifiex_private
*priv
,
1789 struct cfg80211_ibss_params
*params
)
1791 struct wiphy
*wiphy
= priv
->wdev
->wiphy
;
1792 struct mwifiex_adapter
*adapter
= priv
->adapter
;
1794 u8 config_bands
= 0;
1796 if (params
->chandef
.chan
->band
== IEEE80211_BAND_2GHZ
) {
1797 if (!params
->basic_rates
) {
1798 config_bands
= BAND_B
| BAND_G
;
1800 for (i
= 0; i
< mwifiex_band_2ghz
.n_bitrates
; i
++) {
1802 * Rates below 6 Mbps in the table are CCK
1803 * rates; 802.11b and from 6 they are OFDM;
1806 if (mwifiex_rates
[i
].bitrate
== 60) {
1812 if (params
->basic_rates
< index
) {
1813 config_bands
= BAND_B
;
1815 config_bands
= BAND_G
;
1816 if (params
->basic_rates
% index
)
1817 config_bands
|= BAND_B
;
1821 if (cfg80211_get_chandef_type(¶ms
->chandef
) !=
1823 config_bands
|= BAND_G
| BAND_GN
;
1825 if (cfg80211_get_chandef_type(¶ms
->chandef
) ==
1827 config_bands
= BAND_A
;
1829 config_bands
= BAND_AN
| BAND_A
;
1832 if (!((config_bands
| adapter
->fw_bands
) & ~adapter
->fw_bands
)) {
1833 adapter
->config_bands
= config_bands
;
1834 adapter
->adhoc_start_band
= config_bands
;
1836 if ((config_bands
& BAND_GN
) || (config_bands
& BAND_AN
))
1837 adapter
->adhoc_11n_enabled
= true;
1839 adapter
->adhoc_11n_enabled
= false;
1842 adapter
->sec_chan_offset
=
1843 mwifiex_chan_type_to_sec_chan_offset(
1844 cfg80211_get_chandef_type(¶ms
->chandef
));
1845 priv
->adhoc_channel
= ieee80211_frequency_to_channel(
1846 params
->chandef
.chan
->center_freq
);
1848 wiphy_dbg(wiphy
, "info: set ibss band %d, chan %d, chan offset %d\n",
1849 config_bands
, priv
->adhoc_channel
, adapter
->sec_chan_offset
);
1855 * CFG802.11 operation handler to join an IBSS.
1857 * This function does not work in any mode other than Ad-Hoc, or if
1858 * a join operation is already in progress.
1861 mwifiex_cfg80211_join_ibss(struct wiphy
*wiphy
, struct net_device
*dev
,
1862 struct cfg80211_ibss_params
*params
)
1864 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(dev
);
1867 if (priv
->bss_mode
!= NL80211_IFTYPE_ADHOC
) {
1868 wiphy_err(wiphy
, "request to join ibss received "
1869 "when station is not in ibss mode\n");
1873 wiphy_dbg(wiphy
, "info: trying to join to %s and bssid %pM\n",
1874 (char *) params
->ssid
, params
->bssid
);
1876 mwifiex_set_ibss_params(priv
, params
);
1878 ret
= mwifiex_cfg80211_assoc(priv
, params
->ssid_len
, params
->ssid
,
1879 params
->bssid
, priv
->bss_mode
,
1880 params
->chandef
.chan
, NULL
,
1884 cfg80211_ibss_joined(priv
->netdev
, priv
->cfg_bssid
, GFP_KERNEL
);
1885 dev_dbg(priv
->adapter
->dev
,
1886 "info: joined/created adhoc network with bssid"
1887 " %pM successfully\n", priv
->cfg_bssid
);
1889 dev_dbg(priv
->adapter
->dev
,
1890 "info: failed creating/joining adhoc network\n");
1897 * CFG802.11 operation handler to leave an IBSS.
1899 * This function does not work if a leave operation is
1900 * already in progress.
1903 mwifiex_cfg80211_leave_ibss(struct wiphy
*wiphy
, struct net_device
*dev
)
1905 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(dev
);
1907 wiphy_dbg(wiphy
, "info: disconnecting from essid %pM\n",
1909 if (mwifiex_deauthenticate(priv
, NULL
))
1912 memset(priv
->cfg_bssid
, 0, ETH_ALEN
);
1918 * CFG802.11 operation handler for scan request.
1920 * This function issues a scan request to the firmware based upon
1921 * the user specified scan configuration. On successfull completion,
1922 * it also informs the results.
1925 mwifiex_cfg80211_scan(struct wiphy
*wiphy
,
1926 struct cfg80211_scan_request
*request
)
1928 struct net_device
*dev
= request
->wdev
->netdev
;
1929 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(dev
);
1931 struct ieee80211_channel
*chan
;
1932 struct ieee_types_header
*ie
;
1933 struct mwifiex_user_scan_cfg
*user_scan_cfg
;
1935 wiphy_dbg(wiphy
, "info: received scan request on %s\n", dev
->name
);
1937 if ((request
->flags
& NL80211_SCAN_FLAG_LOW_PRIORITY
) &&
1938 atomic_read(&priv
->wmm
.tx_pkts_queued
) >=
1939 MWIFIEX_MIN_TX_PENDING_TO_CANCEL_SCAN
) {
1940 dev_dbg(priv
->adapter
->dev
, "scan rejected due to traffic\n");
1944 /* Block scan request if scan operation or scan cleanup when interface
1945 * is disabled is in process
1947 if (priv
->scan_request
|| priv
->scan_aborting
) {
1948 dev_err(priv
->adapter
->dev
, "cmd: Scan already in process..\n");
1952 user_scan_cfg
= kzalloc(sizeof(*user_scan_cfg
), GFP_KERNEL
);
1956 priv
->scan_request
= request
;
1958 user_scan_cfg
->num_ssids
= request
->n_ssids
;
1959 user_scan_cfg
->ssid_list
= request
->ssids
;
1961 if (request
->ie
&& request
->ie_len
) {
1963 for (i
= 0; i
< MWIFIEX_MAX_VSIE_NUM
; i
++) {
1964 if (priv
->vs_ie
[i
].mask
!= MWIFIEX_VSIE_MASK_CLEAR
)
1966 priv
->vs_ie
[i
].mask
= MWIFIEX_VSIE_MASK_SCAN
;
1967 ie
= (struct ieee_types_header
*)(request
->ie
+ offset
);
1968 memcpy(&priv
->vs_ie
[i
].ie
, ie
, sizeof(*ie
) + ie
->len
);
1969 offset
+= sizeof(*ie
) + ie
->len
;
1971 if (offset
>= request
->ie_len
)
1976 for (i
= 0; i
< min_t(u32
, request
->n_channels
,
1977 MWIFIEX_USER_SCAN_CHAN_MAX
); i
++) {
1978 chan
= request
->channels
[i
];
1979 user_scan_cfg
->chan_list
[i
].chan_number
= chan
->hw_value
;
1980 user_scan_cfg
->chan_list
[i
].radio_type
= chan
->band
;
1982 if (chan
->flags
& IEEE80211_CHAN_NO_IR
)
1983 user_scan_cfg
->chan_list
[i
].scan_type
=
1984 MWIFIEX_SCAN_TYPE_PASSIVE
;
1986 user_scan_cfg
->chan_list
[i
].scan_type
=
1987 MWIFIEX_SCAN_TYPE_ACTIVE
;
1989 user_scan_cfg
->chan_list
[i
].scan_time
= 0;
1992 ret
= mwifiex_scan_networks(priv
, user_scan_cfg
);
1993 kfree(user_scan_cfg
);
1995 dev_err(priv
->adapter
->dev
, "scan failed: %d\n", ret
);
1996 priv
->scan_aborting
= false;
1997 priv
->scan_request
= NULL
;
2001 if (request
->ie
&& request
->ie_len
) {
2002 for (i
= 0; i
< MWIFIEX_MAX_VSIE_NUM
; i
++) {
2003 if (priv
->vs_ie
[i
].mask
== MWIFIEX_VSIE_MASK_SCAN
) {
2004 priv
->vs_ie
[i
].mask
= MWIFIEX_VSIE_MASK_CLEAR
;
2005 memset(&priv
->vs_ie
[i
].ie
, 0,
2006 MWIFIEX_MAX_VSIE_LEN
);
2013 static void mwifiex_setup_vht_caps(struct ieee80211_sta_vht_cap
*vht_info
,
2014 struct mwifiex_private
*priv
)
2016 struct mwifiex_adapter
*adapter
= priv
->adapter
;
2018 vht_info
->vht_supported
= true;
2020 vht_info
->cap
= adapter
->hw_dot_11ac_dev_cap
;
2021 /* Update MCS support for VHT */
2022 vht_info
->vht_mcs
.rx_mcs_map
= cpu_to_le16(
2023 adapter
->hw_dot_11ac_mcs_support
& 0xFFFF);
2024 vht_info
->vht_mcs
.rx_highest
= 0;
2025 vht_info
->vht_mcs
.tx_mcs_map
= cpu_to_le16(
2026 adapter
->hw_dot_11ac_mcs_support
>> 16);
2027 vht_info
->vht_mcs
.tx_highest
= 0;
2031 * This function sets up the CFG802.11 specific HT capability fields
2032 * with default values.
2034 * The following default values are set -
2035 * - HT Supported = True
2036 * - Maximum AMPDU length factor = IEEE80211_HT_MAX_AMPDU_64K
2037 * - Minimum AMPDU spacing = IEEE80211_HT_MPDU_DENSITY_NONE
2038 * - HT Capabilities supported by firmware
2039 * - MCS information, Rx mask = 0xff
2040 * - MCD information, Tx parameters = IEEE80211_HT_MCS_TX_DEFINED (0x01)
2043 mwifiex_setup_ht_caps(struct ieee80211_sta_ht_cap
*ht_info
,
2044 struct mwifiex_private
*priv
)
2047 struct ieee80211_mcs_info mcs_set
;
2048 u8
*mcs
= (u8
*)&mcs_set
;
2049 struct mwifiex_adapter
*adapter
= priv
->adapter
;
2051 ht_info
->ht_supported
= true;
2052 ht_info
->ampdu_factor
= IEEE80211_HT_MAX_AMPDU_64K
;
2053 ht_info
->ampdu_density
= IEEE80211_HT_MPDU_DENSITY_NONE
;
2055 memset(&ht_info
->mcs
, 0, sizeof(ht_info
->mcs
));
2057 /* Fill HT capability information */
2058 if (ISSUPP_CHANWIDTH40(adapter
->hw_dot_11n_dev_cap
))
2059 ht_info
->cap
|= IEEE80211_HT_CAP_SUP_WIDTH_20_40
;
2061 ht_info
->cap
&= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40
;
2063 if (ISSUPP_SHORTGI20(adapter
->hw_dot_11n_dev_cap
))
2064 ht_info
->cap
|= IEEE80211_HT_CAP_SGI_20
;
2066 ht_info
->cap
&= ~IEEE80211_HT_CAP_SGI_20
;
2068 if (ISSUPP_SHORTGI40(adapter
->hw_dot_11n_dev_cap
))
2069 ht_info
->cap
|= IEEE80211_HT_CAP_SGI_40
;
2071 ht_info
->cap
&= ~IEEE80211_HT_CAP_SGI_40
;
2073 if (ISSUPP_RXSTBC(adapter
->hw_dot_11n_dev_cap
))
2074 ht_info
->cap
|= 1 << IEEE80211_HT_CAP_RX_STBC_SHIFT
;
2076 ht_info
->cap
&= ~(3 << IEEE80211_HT_CAP_RX_STBC_SHIFT
);
2078 if (ISSUPP_TXSTBC(adapter
->hw_dot_11n_dev_cap
))
2079 ht_info
->cap
|= IEEE80211_HT_CAP_TX_STBC
;
2081 ht_info
->cap
&= ~IEEE80211_HT_CAP_TX_STBC
;
2083 if (ISSUPP_GREENFIELD(adapter
->hw_dot_11n_dev_cap
))
2084 ht_info
->cap
|= IEEE80211_HT_CAP_GRN_FLD
;
2086 ht_info
->cap
&= ~IEEE80211_HT_CAP_GRN_FLD
;
2088 if (ISENABLED_40MHZ_INTOLERANT(adapter
->hw_dot_11n_dev_cap
))
2089 ht_info
->cap
|= IEEE80211_HT_CAP_40MHZ_INTOLERANT
;
2091 ht_info
->cap
&= ~IEEE80211_HT_CAP_40MHZ_INTOLERANT
;
2093 if (ISSUPP_RXLDPC(adapter
->hw_dot_11n_dev_cap
))
2094 ht_info
->cap
|= IEEE80211_HT_CAP_LDPC_CODING
;
2096 ht_info
->cap
&= ~IEEE80211_HT_CAP_LDPC_CODING
;
2098 ht_info
->cap
&= ~IEEE80211_HT_CAP_MAX_AMSDU
;
2099 ht_info
->cap
|= IEEE80211_HT_CAP_SM_PS
;
2101 rx_mcs_supp
= GET_RXMCSSUPP(adapter
->hw_dev_mcs_support
);
2102 /* Set MCS for 1x1 */
2103 memset(mcs
, 0xff, rx_mcs_supp
);
2104 /* Clear all the other values */
2105 memset(&mcs
[rx_mcs_supp
], 0,
2106 sizeof(struct ieee80211_mcs_info
) - rx_mcs_supp
);
2107 if (priv
->bss_mode
== NL80211_IFTYPE_STATION
||
2108 ISSUPP_CHANWIDTH40(adapter
->hw_dot_11n_dev_cap
))
2109 /* Set MCS32 for infra mode or ad-hoc mode with 40MHz support */
2110 SETHT_MCS32(mcs_set
.rx_mask
);
2112 memcpy((u8
*) &ht_info
->mcs
, mcs
, sizeof(struct ieee80211_mcs_info
));
2114 ht_info
->mcs
.tx_params
= IEEE80211_HT_MCS_TX_DEFINED
;
2118 * create a new virtual interface with the given name
2120 struct wireless_dev
*mwifiex_add_virtual_intf(struct wiphy
*wiphy
,
2122 enum nl80211_iftype type
,
2124 struct vif_params
*params
)
2126 struct mwifiex_adapter
*adapter
= mwifiex_cfg80211_get_adapter(wiphy
);
2127 struct mwifiex_private
*priv
;
2128 struct net_device
*dev
;
2130 struct wireless_dev
*wdev
;
2133 return ERR_PTR(-EFAULT
);
2136 case NL80211_IFTYPE_UNSPECIFIED
:
2137 case NL80211_IFTYPE_STATION
:
2138 case NL80211_IFTYPE_ADHOC
:
2139 priv
= adapter
->priv
[MWIFIEX_BSS_TYPE_STA
];
2140 if (priv
->bss_mode
) {
2142 "cannot create multiple sta/adhoc ifaces\n");
2143 return ERR_PTR(-EINVAL
);
2146 wdev
= kzalloc(sizeof(struct wireless_dev
), GFP_KERNEL
);
2148 return ERR_PTR(-ENOMEM
);
2150 wdev
->wiphy
= wiphy
;
2152 wdev
->iftype
= NL80211_IFTYPE_STATION
;
2154 if (type
== NL80211_IFTYPE_UNSPECIFIED
)
2155 priv
->bss_mode
= NL80211_IFTYPE_STATION
;
2157 priv
->bss_mode
= type
;
2159 priv
->bss_type
= MWIFIEX_BSS_TYPE_STA
;
2160 priv
->frame_type
= MWIFIEX_DATA_FRAME_TYPE_ETH_II
;
2161 priv
->bss_priority
= 0;
2162 priv
->bss_role
= MWIFIEX_BSS_ROLE_STA
;
2166 case NL80211_IFTYPE_AP
:
2167 priv
= adapter
->priv
[MWIFIEX_BSS_TYPE_UAP
];
2169 if (priv
->bss_mode
) {
2170 wiphy_err(wiphy
, "Can't create multiple AP interfaces");
2171 return ERR_PTR(-EINVAL
);
2174 wdev
= kzalloc(sizeof(struct wireless_dev
), GFP_KERNEL
);
2176 return ERR_PTR(-ENOMEM
);
2179 wdev
->wiphy
= wiphy
;
2180 wdev
->iftype
= NL80211_IFTYPE_AP
;
2182 priv
->bss_type
= MWIFIEX_BSS_TYPE_UAP
;
2183 priv
->frame_type
= MWIFIEX_DATA_FRAME_TYPE_ETH_II
;
2184 priv
->bss_priority
= 0;
2185 priv
->bss_role
= MWIFIEX_BSS_ROLE_UAP
;
2186 priv
->bss_started
= 0;
2188 priv
->bss_mode
= type
;
2191 case NL80211_IFTYPE_P2P_CLIENT
:
2192 priv
= adapter
->priv
[MWIFIEX_BSS_TYPE_P2P
];
2194 if (priv
->bss_mode
) {
2195 wiphy_err(wiphy
, "Can't create multiple P2P ifaces");
2196 return ERR_PTR(-EINVAL
);
2199 wdev
= kzalloc(sizeof(struct wireless_dev
), GFP_KERNEL
);
2201 return ERR_PTR(-ENOMEM
);
2204 wdev
->wiphy
= wiphy
;
2206 /* At start-up, wpa_supplicant tries to change the interface
2207 * to NL80211_IFTYPE_STATION if it is not managed mode.
2209 wdev
->iftype
= NL80211_IFTYPE_P2P_CLIENT
;
2210 priv
->bss_mode
= NL80211_IFTYPE_P2P_CLIENT
;
2212 /* Setting bss_type to P2P tells firmware that this interface
2213 * is receiving P2P peers found during find phase and doing
2214 * action frame handshake.
2216 priv
->bss_type
= MWIFIEX_BSS_TYPE_P2P
;
2218 priv
->frame_type
= MWIFIEX_DATA_FRAME_TYPE_ETH_II
;
2219 priv
->bss_priority
= MWIFIEX_BSS_ROLE_STA
;
2220 priv
->bss_role
= MWIFIEX_BSS_ROLE_STA
;
2221 priv
->bss_started
= 0;
2224 if (mwifiex_cfg80211_init_p2p_client(priv
)) {
2225 wdev
= ERR_PTR(-EFAULT
);
2231 wiphy_err(wiphy
, "type not supported\n");
2232 return ERR_PTR(-EINVAL
);
2235 dev
= alloc_netdev_mqs(sizeof(struct mwifiex_private
*), name
,
2236 ether_setup
, IEEE80211_NUM_ACS
, 1);
2238 wiphy_err(wiphy
, "no memory available for netdevice\n");
2239 priv
->bss_mode
= NL80211_IFTYPE_UNSPECIFIED
;
2240 wdev
= ERR_PTR(-ENOMEM
);
2244 mwifiex_init_priv_params(priv
, dev
);
2247 mwifiex_setup_ht_caps(&wiphy
->bands
[IEEE80211_BAND_2GHZ
]->ht_cap
, priv
);
2248 if (adapter
->is_hw_11ac_capable
)
2249 mwifiex_setup_vht_caps(
2250 &wiphy
->bands
[IEEE80211_BAND_2GHZ
]->vht_cap
, priv
);
2252 if (adapter
->config_bands
& BAND_A
)
2253 mwifiex_setup_ht_caps(
2254 &wiphy
->bands
[IEEE80211_BAND_5GHZ
]->ht_cap
, priv
);
2256 if ((adapter
->config_bands
& BAND_A
) && adapter
->is_hw_11ac_capable
)
2257 mwifiex_setup_vht_caps(
2258 &wiphy
->bands
[IEEE80211_BAND_5GHZ
]->vht_cap
, priv
);
2260 dev_net_set(dev
, wiphy_net(wiphy
));
2261 dev
->ieee80211_ptr
= priv
->wdev
;
2262 dev
->ieee80211_ptr
->iftype
= priv
->bss_mode
;
2263 memcpy(dev
->dev_addr
, wiphy
->perm_addr
, ETH_ALEN
);
2264 SET_NETDEV_DEV(dev
, wiphy_dev(wiphy
));
2266 dev
->flags
|= IFF_BROADCAST
| IFF_MULTICAST
;
2267 dev
->watchdog_timeo
= MWIFIEX_DEFAULT_WATCHDOG_TIMEOUT
;
2268 dev
->hard_header_len
+= MWIFIEX_MIN_DATA_HEADER_LEN
;
2269 dev
->ethtool_ops
= &mwifiex_ethtool_ops
;
2271 mdev_priv
= netdev_priv(dev
);
2272 *((unsigned long *) mdev_priv
) = (unsigned long) priv
;
2274 SET_NETDEV_DEV(dev
, adapter
->dev
);
2276 /* Register network device */
2277 if (register_netdevice(dev
)) {
2278 wiphy_err(wiphy
, "cannot register virtual network device\n");
2280 priv
->bss_mode
= NL80211_IFTYPE_UNSPECIFIED
;
2281 priv
->netdev
= NULL
;
2282 wdev
= ERR_PTR(-EFAULT
);
2286 sema_init(&priv
->async_sem
, 1);
2288 dev_dbg(adapter
->dev
, "info: %s: Marvell 802.11 Adapter\n", dev
->name
);
2290 #ifdef CONFIG_DEBUG_FS
2291 mwifiex_dev_debugfs_init(priv
);
2302 EXPORT_SYMBOL_GPL(mwifiex_add_virtual_intf
);
2305 * del_virtual_intf: remove the virtual interface determined by dev
2307 int mwifiex_del_virtual_intf(struct wiphy
*wiphy
, struct wireless_dev
*wdev
)
2309 struct mwifiex_private
*priv
= mwifiex_netdev_get_priv(wdev
->netdev
);
2311 #ifdef CONFIG_DEBUG_FS
2312 mwifiex_dev_debugfs_remove(priv
);
2315 mwifiex_stop_net_dev_queue(priv
->netdev
, priv
->adapter
);
2317 if (netif_carrier_ok(priv
->netdev
))
2318 netif_carrier_off(priv
->netdev
);
2320 if (wdev
->netdev
->reg_state
== NETREG_REGISTERED
)
2321 unregister_netdevice(wdev
->netdev
);
2323 /* Clear the priv in adapter */
2324 priv
->netdev
->ieee80211_ptr
= NULL
;
2325 priv
->netdev
= NULL
;
2329 priv
->media_connected
= false;
2331 priv
->bss_mode
= NL80211_IFTYPE_UNSPECIFIED
;
2335 EXPORT_SYMBOL_GPL(mwifiex_del_virtual_intf
);
2338 mwifiex_is_pattern_supported(struct cfg80211_pkt_pattern
*pat
, s8
*byte_seq
,
2341 int j
, k
, valid_byte_cnt
= 0;
2342 bool dont_care_byte
= false;
2344 for (j
= 0; j
< DIV_ROUND_UP(pat
->pattern_len
, 8); j
++) {
2345 for (k
= 0; k
< 8; k
++) {
2346 if (pat
->mask
[j
] & 1 << k
) {
2347 memcpy(byte_seq
+ valid_byte_cnt
,
2348 &pat
->pattern
[j
* 8 + k
], 1);
2354 dont_care_byte
= true;
2357 if (valid_byte_cnt
> max_byte_seq
)
2362 byte_seq
[max_byte_seq
] = valid_byte_cnt
;
2368 static int mwifiex_cfg80211_suspend(struct wiphy
*wiphy
,
2369 struct cfg80211_wowlan
*wowlan
)
2371 struct mwifiex_adapter
*adapter
= mwifiex_cfg80211_get_adapter(wiphy
);
2372 struct mwifiex_ds_mef_cfg mef_cfg
;
2373 struct mwifiex_mef_entry
*mef_entry
;
2374 int i
, filt_num
= 0, ret
;
2375 bool first_pat
= true;
2376 u8 byte_seq
[MWIFIEX_MEF_MAX_BYTESEQ
+ 1];
2377 const u8 ipv4_mc_mac
[] = {0x33, 0x33};
2378 const u8 ipv6_mc_mac
[] = {0x01, 0x00, 0x5e};
2379 struct mwifiex_private
*priv
=
2380 mwifiex_get_priv(adapter
, MWIFIEX_BSS_ROLE_STA
);
2383 dev_warn(adapter
->dev
, "None of the WOWLAN triggers enabled\n");
2387 if (!priv
->media_connected
) {
2388 dev_warn(adapter
->dev
,
2389 "Can not configure WOWLAN in disconnected state\n");
2393 mef_entry
= kzalloc(sizeof(*mef_entry
), GFP_KERNEL
);
2397 memset(&mef_cfg
, 0, sizeof(mef_cfg
));
2398 mef_cfg
.num_entries
= 1;
2399 mef_cfg
.mef_entry
= mef_entry
;
2400 mef_entry
->mode
= MEF_MODE_HOST_SLEEP
;
2401 mef_entry
->action
= MEF_ACTION_ALLOW_AND_WAKEUP_HOST
;
2403 for (i
= 0; i
< wowlan
->n_patterns
; i
++) {
2404 memset(byte_seq
, 0, sizeof(byte_seq
));
2405 if (!mwifiex_is_pattern_supported(&wowlan
->patterns
[i
],
2407 MWIFIEX_MEF_MAX_BYTESEQ
)) {
2408 wiphy_err(wiphy
, "Pattern not supported\n");
2413 if (!wowlan
->patterns
[i
].pkt_offset
) {
2414 if (!(byte_seq
[0] & 0x01) &&
2415 (byte_seq
[MWIFIEX_MEF_MAX_BYTESEQ
] == 1)) {
2416 mef_cfg
.criteria
|= MWIFIEX_CRITERIA_UNICAST
;
2418 } else if (is_broadcast_ether_addr(byte_seq
)) {
2419 mef_cfg
.criteria
|= MWIFIEX_CRITERIA_BROADCAST
;
2421 } else if ((!memcmp(byte_seq
, ipv4_mc_mac
, 2) &&
2422 (byte_seq
[MWIFIEX_MEF_MAX_BYTESEQ
] == 2)) ||
2423 (!memcmp(byte_seq
, ipv6_mc_mac
, 3) &&
2424 (byte_seq
[MWIFIEX_MEF_MAX_BYTESEQ
] == 3))) {
2425 mef_cfg
.criteria
|= MWIFIEX_CRITERIA_MULTICAST
;
2430 mef_entry
->filter
[filt_num
].repeat
= 1;
2431 mef_entry
->filter
[filt_num
].offset
=
2432 wowlan
->patterns
[i
].pkt_offset
;
2433 memcpy(mef_entry
->filter
[filt_num
].byte_seq
, byte_seq
,
2435 mef_entry
->filter
[filt_num
].filt_type
= TYPE_EQ
;
2440 mef_entry
->filter
[filt_num
].filt_action
= TYPE_AND
;
2445 if (wowlan
->magic_pkt
) {
2446 mef_cfg
.criteria
|= MWIFIEX_CRITERIA_UNICAST
;
2447 mef_entry
->filter
[filt_num
].repeat
= 16;
2448 memcpy(mef_entry
->filter
[filt_num
].byte_seq
, priv
->curr_addr
,
2450 mef_entry
->filter
[filt_num
].byte_seq
[MWIFIEX_MEF_MAX_BYTESEQ
] =
2452 mef_entry
->filter
[filt_num
].offset
= 28;
2453 mef_entry
->filter
[filt_num
].filt_type
= TYPE_EQ
;
2455 mef_entry
->filter
[filt_num
].filt_action
= TYPE_OR
;
2458 if (!mef_cfg
.criteria
)
2459 mef_cfg
.criteria
= MWIFIEX_CRITERIA_BROADCAST
|
2460 MWIFIEX_CRITERIA_UNICAST
|
2461 MWIFIEX_CRITERIA_MULTICAST
;
2463 ret
= mwifiex_send_cmd_sync(priv
, HostCmd_CMD_MEF_CFG
,
2464 HostCmd_ACT_GEN_SET
, 0,
2471 static int mwifiex_cfg80211_resume(struct wiphy
*wiphy
)
2476 static void mwifiex_cfg80211_set_wakeup(struct wiphy
*wiphy
,
2479 struct mwifiex_adapter
*adapter
= mwifiex_cfg80211_get_adapter(wiphy
);
2481 device_set_wakeup_enable(adapter
->dev
, enabled
);
2485 static int mwifiex_get_coalesce_pkt_type(u8
*byte_seq
)
2487 const u8 ipv4_mc_mac
[] = {0x33, 0x33};
2488 const u8 ipv6_mc_mac
[] = {0x01, 0x00, 0x5e};
2489 const u8 bc_mac
[] = {0xff, 0xff, 0xff, 0xff};
2491 if ((byte_seq
[0] & 0x01) &&
2492 (byte_seq
[MWIFIEX_COALESCE_MAX_BYTESEQ
] == 1))
2493 return PACKET_TYPE_UNICAST
;
2494 else if (!memcmp(byte_seq
, bc_mac
, 4))
2495 return PACKET_TYPE_BROADCAST
;
2496 else if ((!memcmp(byte_seq
, ipv4_mc_mac
, 2) &&
2497 byte_seq
[MWIFIEX_COALESCE_MAX_BYTESEQ
] == 2) ||
2498 (!memcmp(byte_seq
, ipv6_mc_mac
, 3) &&
2499 byte_seq
[MWIFIEX_COALESCE_MAX_BYTESEQ
] == 3))
2500 return PACKET_TYPE_MULTICAST
;
2506 mwifiex_fill_coalesce_rule_info(struct mwifiex_private
*priv
,
2507 struct cfg80211_coalesce_rules
*crule
,
2508 struct mwifiex_coalesce_rule
*mrule
)
2510 u8 byte_seq
[MWIFIEX_COALESCE_MAX_BYTESEQ
+ 1];
2511 struct filt_field_param
*param
;
2514 mrule
->max_coalescing_delay
= crule
->delay
;
2516 param
= mrule
->params
;
2518 for (i
= 0; i
< crule
->n_patterns
; i
++) {
2519 memset(byte_seq
, 0, sizeof(byte_seq
));
2520 if (!mwifiex_is_pattern_supported(&crule
->patterns
[i
],
2522 MWIFIEX_COALESCE_MAX_BYTESEQ
)) {
2523 dev_err(priv
->adapter
->dev
, "Pattern not supported\n");
2527 if (!crule
->patterns
[i
].pkt_offset
) {
2530 pkt_type
= mwifiex_get_coalesce_pkt_type(byte_seq
);
2531 if (pkt_type
&& mrule
->pkt_type
) {
2532 dev_err(priv
->adapter
->dev
,
2533 "Multiple packet types not allowed\n");
2535 } else if (pkt_type
) {
2536 mrule
->pkt_type
= pkt_type
;
2541 if (crule
->condition
== NL80211_COALESCE_CONDITION_MATCH
)
2542 param
->operation
= RECV_FILTER_MATCH_TYPE_EQ
;
2544 param
->operation
= RECV_FILTER_MATCH_TYPE_NE
;
2546 param
->operand_len
= byte_seq
[MWIFIEX_COALESCE_MAX_BYTESEQ
];
2547 memcpy(param
->operand_byte_stream
, byte_seq
,
2548 param
->operand_len
);
2549 param
->offset
= crule
->patterns
[i
].pkt_offset
;
2552 mrule
->num_of_fields
++;
2555 if (!mrule
->pkt_type
) {
2556 dev_err(priv
->adapter
->dev
,
2557 "Packet type can not be determined\n");
2564 static int mwifiex_cfg80211_set_coalesce(struct wiphy
*wiphy
,
2565 struct cfg80211_coalesce
*coalesce
)
2567 struct mwifiex_adapter
*adapter
= mwifiex_cfg80211_get_adapter(wiphy
);
2569 struct mwifiex_ds_coalesce_cfg coalesce_cfg
;
2570 struct mwifiex_private
*priv
=
2571 mwifiex_get_priv(adapter
, MWIFIEX_BSS_ROLE_STA
);
2573 memset(&coalesce_cfg
, 0, sizeof(coalesce_cfg
));
2575 dev_dbg(adapter
->dev
,
2576 "Disable coalesce and reset all previous rules\n");
2577 return mwifiex_send_cmd_sync(priv
, HostCmd_CMD_COALESCE_CFG
,
2578 HostCmd_ACT_GEN_SET
, 0,
2582 coalesce_cfg
.num_of_rules
= coalesce
->n_rules
;
2583 for (i
= 0; i
< coalesce
->n_rules
; i
++) {
2584 ret
= mwifiex_fill_coalesce_rule_info(priv
, &coalesce
->rules
[i
],
2585 &coalesce_cfg
.rule
[i
]);
2587 dev_err(priv
->adapter
->dev
,
2588 "Recheck the patterns provided for rule %d\n",
2594 return mwifiex_send_cmd_sync(priv
, HostCmd_CMD_COALESCE_CFG
,
2595 HostCmd_ACT_GEN_SET
, 0, &coalesce_cfg
);
2598 /* station cfg80211 operations */
2599 static struct cfg80211_ops mwifiex_cfg80211_ops
= {
2600 .add_virtual_intf
= mwifiex_add_virtual_intf
,
2601 .del_virtual_intf
= mwifiex_del_virtual_intf
,
2602 .change_virtual_intf
= mwifiex_cfg80211_change_virtual_intf
,
2603 .scan
= mwifiex_cfg80211_scan
,
2604 .connect
= mwifiex_cfg80211_connect
,
2605 .disconnect
= mwifiex_cfg80211_disconnect
,
2606 .get_station
= mwifiex_cfg80211_get_station
,
2607 .dump_station
= mwifiex_cfg80211_dump_station
,
2608 .set_wiphy_params
= mwifiex_cfg80211_set_wiphy_params
,
2609 .join_ibss
= mwifiex_cfg80211_join_ibss
,
2610 .leave_ibss
= mwifiex_cfg80211_leave_ibss
,
2611 .add_key
= mwifiex_cfg80211_add_key
,
2612 .del_key
= mwifiex_cfg80211_del_key
,
2613 .mgmt_tx
= mwifiex_cfg80211_mgmt_tx
,
2614 .mgmt_frame_register
= mwifiex_cfg80211_mgmt_frame_register
,
2615 .remain_on_channel
= mwifiex_cfg80211_remain_on_channel
,
2616 .cancel_remain_on_channel
= mwifiex_cfg80211_cancel_remain_on_channel
,
2617 .set_default_key
= mwifiex_cfg80211_set_default_key
,
2618 .set_power_mgmt
= mwifiex_cfg80211_set_power_mgmt
,
2619 .set_tx_power
= mwifiex_cfg80211_set_tx_power
,
2620 .set_bitrate_mask
= mwifiex_cfg80211_set_bitrate_mask
,
2621 .start_ap
= mwifiex_cfg80211_start_ap
,
2622 .stop_ap
= mwifiex_cfg80211_stop_ap
,
2623 .change_beacon
= mwifiex_cfg80211_change_beacon
,
2624 .set_cqm_rssi_config
= mwifiex_cfg80211_set_cqm_rssi_config
,
2625 .set_antenna
= mwifiex_cfg80211_set_antenna
,
2626 .del_station
= mwifiex_cfg80211_del_station
,
2628 .suspend
= mwifiex_cfg80211_suspend
,
2629 .resume
= mwifiex_cfg80211_resume
,
2630 .set_wakeup
= mwifiex_cfg80211_set_wakeup
,
2632 .set_coalesce
= mwifiex_cfg80211_set_coalesce
,
2636 static const struct wiphy_wowlan_support mwifiex_wowlan_support
= {
2637 .flags
= WIPHY_WOWLAN_MAGIC_PKT
,
2638 .n_patterns
= MWIFIEX_MEF_MAX_FILTERS
,
2639 .pattern_min_len
= 1,
2640 .pattern_max_len
= MWIFIEX_MAX_PATTERN_LEN
,
2641 .max_pkt_offset
= MWIFIEX_MAX_OFFSET_LEN
,
2645 static bool mwifiex_is_valid_alpha2(const char *alpha2
)
2647 if (!alpha2
|| strlen(alpha2
) != 2)
2650 if (isalpha(alpha2
[0]) && isalpha(alpha2
[1]))
2656 static const struct wiphy_coalesce_support mwifiex_coalesce_support
= {
2657 .n_rules
= MWIFIEX_COALESCE_MAX_RULES
,
2658 .max_delay
= MWIFIEX_MAX_COALESCING_DELAY
,
2659 .n_patterns
= MWIFIEX_COALESCE_MAX_FILTERS
,
2660 .pattern_min_len
= 1,
2661 .pattern_max_len
= MWIFIEX_MAX_PATTERN_LEN
,
2662 .max_pkt_offset
= MWIFIEX_MAX_OFFSET_LEN
,
2666 * This function registers the device with CFG802.11 subsystem.
2668 * The function creates the wireless device/wiphy, populates it with
2669 * default parameters and handler function pointers, and finally
2670 * registers the device.
2673 int mwifiex_register_cfg80211(struct mwifiex_adapter
*adapter
)
2677 struct wiphy
*wiphy
;
2678 struct mwifiex_private
*priv
= adapter
->priv
[MWIFIEX_BSS_TYPE_STA
];
2682 /* create a new wiphy for use with cfg80211 */
2683 wiphy
= wiphy_new(&mwifiex_cfg80211_ops
,
2684 sizeof(struct mwifiex_adapter
*));
2686 dev_err(adapter
->dev
, "%s: creating new wiphy\n", __func__
);
2689 wiphy
->max_scan_ssids
= MWIFIEX_MAX_SSID_LIST_LENGTH
;
2690 wiphy
->max_scan_ie_len
= MWIFIEX_MAX_VSIE_LEN
;
2691 wiphy
->mgmt_stypes
= mwifiex_mgmt_stypes
;
2692 wiphy
->max_remain_on_channel_duration
= 5000;
2693 wiphy
->interface_modes
= BIT(NL80211_IFTYPE_STATION
) |
2694 BIT(NL80211_IFTYPE_ADHOC
) |
2695 BIT(NL80211_IFTYPE_P2P_CLIENT
) |
2696 BIT(NL80211_IFTYPE_P2P_GO
) |
2697 BIT(NL80211_IFTYPE_AP
);
2699 wiphy
->bands
[IEEE80211_BAND_2GHZ
] = &mwifiex_band_2ghz
;
2700 if (adapter
->config_bands
& BAND_A
)
2701 wiphy
->bands
[IEEE80211_BAND_5GHZ
] = &mwifiex_band_5ghz
;
2703 wiphy
->bands
[IEEE80211_BAND_5GHZ
] = NULL
;
2705 wiphy
->iface_combinations
= &mwifiex_iface_comb_ap_sta
;
2706 wiphy
->n_iface_combinations
= 1;
2708 /* Initialize cipher suits */
2709 wiphy
->cipher_suites
= mwifiex_cipher_suites
;
2710 wiphy
->n_cipher_suites
= ARRAY_SIZE(mwifiex_cipher_suites
);
2712 memcpy(wiphy
->perm_addr
, priv
->curr_addr
, ETH_ALEN
);
2713 wiphy
->signal_type
= CFG80211_SIGNAL_TYPE_MBM
;
2714 wiphy
->flags
|= WIPHY_FLAG_HAVE_AP_SME
|
2715 WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD
|
2716 WIPHY_FLAG_AP_UAPSD
|
2717 WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL
;
2718 wiphy
->regulatory_flags
|=
2719 REGULATORY_CUSTOM_REG
|
2720 REGULATORY_STRICT_REG
;
2722 wiphy_apply_custom_regulatory(wiphy
, &mwifiex_world_regdom_custom
);
2725 wiphy
->wowlan
= &mwifiex_wowlan_support
;
2728 wiphy
->coalesce
= &mwifiex_coalesce_support
;
2730 wiphy
->probe_resp_offload
= NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS
|
2731 NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2
|
2732 NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P
;
2734 wiphy
->available_antennas_tx
= BIT(adapter
->number_of_antenna
) - 1;
2735 wiphy
->available_antennas_rx
= BIT(adapter
->number_of_antenna
) - 1;
2737 wiphy
->features
|= NL80211_FEATURE_HT_IBSS
|
2738 NL80211_FEATURE_INACTIVITY_TIMER
|
2739 NL80211_FEATURE_LOW_PRIORITY_SCAN
;
2741 /* Reserve space for mwifiex specific private data for BSS */
2742 wiphy
->bss_priv_size
= sizeof(struct mwifiex_bss_priv
);
2744 wiphy
->reg_notifier
= mwifiex_reg_notifier
;
2746 /* Set struct mwifiex_adapter pointer in wiphy_priv */
2747 wdev_priv
= wiphy_priv(wiphy
);
2748 *(unsigned long *)wdev_priv
= (unsigned long)adapter
;
2750 set_wiphy_dev(wiphy
, priv
->adapter
->dev
);
2752 ret
= wiphy_register(wiphy
);
2754 dev_err(adapter
->dev
,
2755 "%s: wiphy_register failed: %d\n", __func__
, ret
);
2760 if (reg_alpha2
&& mwifiex_is_valid_alpha2(reg_alpha2
)) {
2761 wiphy_info(wiphy
, "driver hint alpha2: %2.2s\n", reg_alpha2
);
2762 regulatory_hint(wiphy
, reg_alpha2
);
2764 country_code
= mwifiex_11d_code_2_region(adapter
->region_code
);
2766 wiphy_info(wiphy
, "ignoring F/W country code %2.2s\n",
2770 mwifiex_send_cmd_sync(priv
, HostCmd_CMD_802_11_SNMP_MIB
,
2771 HostCmd_ACT_GEN_GET
, FRAG_THRESH_I
, &thr
);
2772 wiphy
->frag_threshold
= thr
;
2773 mwifiex_send_cmd_sync(priv
, HostCmd_CMD_802_11_SNMP_MIB
,
2774 HostCmd_ACT_GEN_GET
, RTS_THRESH_I
, &thr
);
2775 wiphy
->rts_threshold
= thr
;
2776 mwifiex_send_cmd_sync(priv
, HostCmd_CMD_802_11_SNMP_MIB
,
2777 HostCmd_ACT_GEN_GET
, SHORT_RETRY_LIM_I
, &retry
);
2778 wiphy
->retry_short
= (u8
) retry
;
2779 mwifiex_send_cmd_sync(priv
, HostCmd_CMD_802_11_SNMP_MIB
,
2780 HostCmd_ACT_GEN_GET
, LONG_RETRY_LIM_I
, &retry
);
2781 wiphy
->retry_long
= (u8
) retry
;
2783 adapter
->wiphy
= wiphy
;